Skip to content

Commit 4ba5365

Browse files
authored
Merge branch 'coreui:main' into main
2 parents c6a99d4 + 102555d commit 4ba5365

File tree

5 files changed

+23
-17
lines changed

5 files changed

+23
-17
lines changed

.bundlewatch.config.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,59 @@
22
"files": [
33
{
44
"path": "./dist/css/coreui-grid.css",
5-
"maxSize": "7.5 kB"
5+
"maxSize": "7.50 kB"
66
},
77
{
88
"path": "./dist/css/coreui-grid.min.css",
99
"maxSize": "6.55 kB"
1010
},
1111
{
1212
"path": "./dist/css/coreui-reboot.css",
13-
"maxSize": "3.55 kB"
13+
"maxSize": "3.75 kB"
1414
},
1515
{
1616
"path": "./dist/css/coreui-reboot.min.css",
17-
"maxSize": "3.4 kB"
17+
"maxSize": "3.60 kB"
1818
},
1919
{
2020
"path": "./dist/css/coreui-utilities.css",
21-
"maxSize": "12.90 kB"
21+
"maxSize": "13.85 kB"
2222
},
2323
{
2424
"path": "./dist/css/coreui-utilities.min.css",
25-
"maxSize": "11.90 kB"
25+
"maxSize": "13.25 kB"
2626
},
2727
{
2828
"path": "./dist/css/coreui.css",
29-
"maxSize": "39.70 kB"
29+
"maxSize": "50.00 kB"
3030
},
3131
{
3232
"path": "./dist/css/coreui.min.css",
33-
"maxSize": "37.05 kB"
33+
"maxSize": "47.20 kB"
3434
},
3535
{
3636
"path": "./dist/js/coreui.bundle.js",
37-
"maxSize": "45.85 kB"
37+
"maxSize": "76.05 kB"
3838
},
3939
{
4040
"path": "./dist/js/coreui.bundle.min.js",
41-
"maxSize": "24.75 kB"
41+
"maxSize": "44.00 kB"
4242
},
4343
{
4444
"path": "./dist/js/coreui.esm.js",
45-
"maxSize": "30.80 kB"
45+
"maxSize": "60.80 kB"
4646
},
4747
{
4848
"path": "./dist/js/coreui.esm.min.js",
49-
"maxSize": "19.75 kB"
49+
"maxSize": "41.10 kB"
5050
},
5151
{
5252
"path": "./dist/js/coreui.js",
53-
"maxSize": "31.55 kB"
53+
"maxSize": "62.00 kB"
5454
},
5555
{
5656
"path": "./dist/js/coreui.min.js",
57-
"maxSize": "17.65 kB"
57+
"maxSize": "37.00 kB"
5858
}
5959
],
6060
"ci": {

.github/codeql/codeql-config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name: "CodeQL config"
2+
paths-ignore:
3+
- dist

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Docs
33
on:
44
push:
55
branches:
6-
- v5
6+
- main
77
pull_request:
88
workflow_dispatch:
99

@@ -44,7 +44,7 @@ jobs:
4444
- name: Run linkinator
4545
uses: JustinBeckwith/linkinator-action@v1
4646
with:
47-
paths: _gh-pages
47+
paths: _gh_pages
4848
recurse: true
4949
verbosity: error
5050
skip: "^(?!http://localhost)"

.github/workflows/node-sass.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
with:
3030
node-version: "${{ env.NODE }}"
3131

32+
- name: Install npm dependencies
33+
run: npm ci
34+
3235
- name: Build CSS with node-sass
3336
run: |
3437
npx --package node-sass@latest node-sass --version

js/tests/unit/popover.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ describe('Popover', () => {
109109
}
110110
})
111111

112-
popoverEl.addEventListener('shown.bs.popover', () => {
112+
popoverEl.addEventListener('shown.coreui.popover', () => {
113113
const popoverDisplayed = document.querySelector('.popover')
114114

115115
expect(popoverDisplayed).not.toBeNull()
@@ -136,7 +136,7 @@ describe('Popover', () => {
136136
}
137137
})
138138

139-
popoverEl.addEventListener('shown.bs.popover', () => {
139+
popoverEl.addEventListener('shown.coreui.popover', () => {
140140
const popoverDisplayed = document.querySelector('.popover')
141141

142142
expect(popoverDisplayed).not.toBeNull()

0 commit comments

Comments
 (0)