File tree Expand file tree Collapse file tree 9 files changed +549
-472
lines changed Expand file tree Collapse file tree 9 files changed +549
-472
lines changed Original file line number Diff line number Diff line change 73
73
"suspicious" : {
74
74
"noAssignInExpressions" : " off" ,
75
75
"noExplicitAny" : " off" ,
76
- "noPrototypeBuiltins" : " off"
76
+ "noPrototypeBuiltins" : " off" ,
77
+ "useIterableCallbackReturn" : " off"
77
78
},
78
79
"style" : {
79
80
"noNonNullAssertion" : " off" ,
Original file line number Diff line number Diff line change 61
61
"pnpm" : " 10.x"
62
62
},
63
63
"devDependencies" : {
64
- "@biomejs/biome" : " ^2.1 .3" ,
65
- "@lerna-lite/cli" : " ^4.6.2 " ,
66
- "@lerna-lite/publish" : " ^4.6.2 " ,
67
- "@lerna-lite/watch" : " ^4.6.2 " ,
64
+ "@biomejs/biome" : " ^2.2 .3" ,
65
+ "@lerna-lite/cli" : " ^4.7.3 " ,
66
+ "@lerna-lite/publish" : " ^4.7.3 " ,
67
+ "@lerna-lite/watch" : " ^4.7.3 " ,
68
68
"@playwright/test" : " ^1.52.0" ,
69
- "@types/node" : " ^24.1.0 " ,
69
+ "@types/node" : " ^24.3.1 " ,
70
70
"conventional-changelog-conventionalcommits" : " ^9.1.0" ,
71
71
"cross-env" : " catalog:" ,
72
72
"npm-run-all2" : " ^8.0.4" ,
Original file line number Diff line number Diff line change 20
20
},
21
21
"dependencies" : {
22
22
"@popperjs/core" : " ^2.11.8" ,
23
- "bootstrap" : " ^5.3.7 " ,
23
+ "bootstrap" : " ^5.3.8 " ,
24
24
"dompurify" : " ^3.2.6" ,
25
25
"font-awesome" : " ^4.7.0" ,
26
26
"multiple-select-vanilla" : " workspace:*"
27
27
},
28
28
"devDependencies" : {
29
29
"sass" : " catalog:" ,
30
30
"typescript" : " catalog:" ,
31
- "vite" : " ^7.0.6 "
31
+ "vite" : " ^7.1.5 "
32
32
}
33
33
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ <h2 class="bd-title">
16
16
</ span >
17
17
</ h2 >
18
18
< div class ="demo-subtitle ">
19
- Use < code > multipleSelect('select').refreshOptions({ filter: false })</ code > to refresh the options object.
19
+ Use < code > multipleSelect('select').refreshOptions( { filter: false })</ code > to refresh the options object.
20
20
</ div >
21
21
</ div >
22
22
</ div >
Original file line number Diff line number Diff line change @@ -84,4 +84,4 @@ <h2 class="bd-title">
84
84
</ select >
85
85
</ div >
86
86
</ div >
87
- </ div > </ div >
87
+ </ div >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export default class Example {
21
21
preSort : ( item1 , item2 ) => {
22
22
// sort by value in reverse order
23
23
const direction = - 1 ; // reverse order
24
- // @ts -ignore
24
+ // @ts -expect-error
25
25
if ( direction === 1 ) {
26
26
return ( item1 as OptGroupRowData ) . label < ( item2 as OptGroupRowData ) . label ? - 1 : 1 ;
27
27
}
@@ -130,7 +130,7 @@ export default class Example {
130
130
preSort : ( item1 , item2 ) => {
131
131
// sort by value in reverse order
132
132
const direction = - 1 ; // reverse order
133
- // @ts -ignore
133
+ // @ts -expect-error
134
134
if ( direction === 1 ) {
135
135
return ( item1 as OptGroupRowData ) . label < ( item2 as OptGroupRowData ) . label ? - 1 : 1 ;
136
136
}
Original file line number Diff line number Diff line change 71
71
"devDependencies" : {
72
72
"autoprefixer" : " ^10.4.21" ,
73
73
"cross-env" : " catalog:" ,
74
- "cssnano" : " ^7.1.0 " ,
75
- "esbuild" : " ^0.25.8 " ,
74
+ "cssnano" : " ^7.1.1 " ,
75
+ "esbuild" : " ^0.25.9 " ,
76
76
"native-copyfiles" : " ^1.3.5" ,
77
77
"postcss" : " ^8.5.6" ,
78
78
"postcss-cli" : " ^11.0.1" ,
79
79
"remove-glob" : " catalog:" ,
80
80
"sass" : " catalog:" ,
81
- "tinyglobby" : " ^0.2.14 " ,
81
+ "tinyglobby" : " ^0.2.15 " ,
82
82
"typescript" : " catalog:"
83
83
}
84
84
}
You can’t perform that action at this time.
0 commit comments