@syncfusion/ej2-dropdowns 23.2.7 → 24.1.41-566987
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2040 -2150
- package/{README.md → ReadMe.md} +217 -217
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +710 -172
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +871 -332
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/helpers/e2e/autocomplete.js +13 -13
- package/helpers/e2e/combobox.js +13 -13
- package/helpers/e2e/dropdownlist.js +13 -13
- package/helpers/e2e/index.js +3 -3
- package/helpers/e2e/listboxHelper.js +13 -13
- package/helpers/e2e/multiselect.js +13 -13
- package/license +2 -2
- package/package.json +80 -80
- package/src/auto-complete/auto-complete-model.d.ts +188 -188
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +30 -25
- package/src/combo-box/combo-box-model.d.ts +224 -224
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +103 -31
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +50 -7
- package/src/common/interface.d.ts +2 -0
- package/src/common/virtual-scroll.js +68 -47
- package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
- package/src/drop-down-base/drop-down-base.d.ts +38 -18
- package/src/drop-down-base/drop-down-base.js +174 -60
- package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
- package/src/drop-down-list/drop-down-list.d.ts +14 -7
- package/src/drop-down-list/drop-down-list.js +325 -61
- package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
- package/src/drop-down-tree/drop-down-tree.js +43 -39
- package/src/list-box/list-box-model.d.ts +193 -193
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +27 -20
- package/src/mention/mention-model.d.ts +261 -261
- package/src/mention/mention.js +24 -20
- package/src/multi-select/checkbox-selection.js +4 -1
- package/src/multi-select/multi-select-model.d.ts +512 -512
- package/src/multi-select/multi-select.js +23 -21
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bds-definition.scss +2 -0
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_fabric-definition.scss +2 -2
- package/styles/auto-complete/_fluent-definition.scss +2 -2
- package/styles/auto-complete/_fusionnew-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/auto-complete/_material-definition.scss +2 -2
- package/styles/auto-complete/_material3-definition.scss +2 -2
- package/styles/auto-complete/_tailwind-definition.scss +2 -2
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/bootstrap-dark.css +16 -9
- package/styles/bootstrap.css +16 -9
- package/styles/bootstrap4.css +11 -9
- package/styles/bootstrap5-dark.css +11 -9
- package/styles/bootstrap5.css +11 -9
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bds-definition.scss +2 -0
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_bootstrap5-definition.scss +2 -2
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_fabric-definition.scss +2 -2
- package/styles/combo-box/_fluent-definition.scss +2 -2
- package/styles/combo-box/_fusionnew-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/combo-box/_material-definition.scss +2 -2
- package/styles/combo-box/_material3-definition.scss +2 -2
- package/styles/combo-box/_tailwind-definition.scss +2 -2
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bds-definition.scss +134 -0
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
- package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
- package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
- package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
- package/styles/drop-down-base/_fabric-definition.scss +84 -84
- package/styles/drop-down-base/_fluent-definition.scss +121 -121
- package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
- package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
- package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
- package/styles/drop-down-base/_layout.scss +187 -195
- package/styles/drop-down-base/_material-dark-definition.scss +86 -86
- package/styles/drop-down-base/_material-definition.scss +85 -85
- package/styles/drop-down-base/_material3-definition.scss +87 -87
- package/styles/drop-down-base/_tailwind-definition.scss +129 -129
- package/styles/drop-down-base/_theme.scss +391 -391
- package/styles/drop-down-base/bootstrap-dark.css +0 -8
- package/styles/drop-down-base/bootstrap.css +0 -8
- package/styles/drop-down-base/bootstrap4.css +0 -8
- package/styles/drop-down-base/bootstrap5-dark.css +0 -8
- package/styles/drop-down-base/bootstrap5.css +0 -8
- package/styles/drop-down-base/fabric-dark.css +0 -8
- package/styles/drop-down-base/fabric.css +0 -8
- package/styles/drop-down-base/fluent-dark.css +0 -8
- package/styles/drop-down-base/fluent.css +0 -8
- package/styles/drop-down-base/highcontrast-light.css +0 -8
- package/styles/drop-down-base/highcontrast.css +0 -8
- package/styles/drop-down-base/material-dark.css +0 -8
- package/styles/drop-down-base/material.css +0 -8
- package/styles/drop-down-base/material3-dark.css +0 -8
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.css +0 -8
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-base/tailwind-dark.css +0 -8
- package/styles/drop-down-base/tailwind.css +0 -8
- package/styles/drop-down-list/_all.scss +3 -3
- package/styles/drop-down-list/_bds-definition.scss +134 -0
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +202 -202
- package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
- package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
- package/styles/drop-down-list/_fabric-definition.scss +124 -124
- package/styles/drop-down-list/_fluent-definition.scss +185 -185
- package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
- package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
- package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
- package/styles/drop-down-list/_layout.scss +315 -310
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +167 -167
- package/styles/drop-down-list/_material3-definition.scss +180 -180
- package/styles/drop-down-list/_tailwind-definition.scss +134 -134
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/bootstrap-dark.css +5 -0
- package/styles/drop-down-list/bootstrap.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +5 -0
- package/styles/drop-down-list/bootstrap5.css +5 -0
- package/styles/drop-down-list/fabric-dark.css +5 -0
- package/styles/drop-down-list/fabric.css +5 -0
- package/styles/drop-down-list/fluent-dark.css +5 -0
- package/styles/drop-down-list/fluent.css +5 -0
- package/styles/drop-down-list/highcontrast-light.css +5 -0
- package/styles/drop-down-list/highcontrast.css +5 -0
- package/styles/drop-down-list/icons/_bds.scss +14 -0
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_fluent.scss +14 -14
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/icons/_material3.scss +14 -14
- package/styles/drop-down-list/icons/_tailwind.scss +14 -14
- package/styles/drop-down-list/material-dark.css +5 -0
- package/styles/drop-down-list/material.css +5 -0
- package/styles/drop-down-list/material3-dark.css +5 -0
- package/styles/drop-down-list/material3-dark.scss +1 -1
- package/styles/drop-down-list/material3.css +5 -0
- package/styles/drop-down-list/material3.scss +1 -1
- package/styles/drop-down-list/tailwind-dark.css +5 -0
- package/styles/drop-down-list/tailwind.css +5 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bds-definition.scss +61 -0
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
- package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
- package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
- package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
- package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
- package/styles/drop-down-tree/_fabric-definition.scss +71 -71
- package/styles/drop-down-tree/_fluent-definition.scss +65 -65
- package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
- package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
- package/styles/drop-down-tree/_layout.scss +1423 -1412
- package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
- package/styles/drop-down-tree/_material-definition.scss +72 -72
- package/styles/drop-down-tree/_material3-definition.scss +76 -76
- package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
- package/styles/drop-down-tree/_theme.scss +132 -132
- package/styles/drop-down-tree/bootstrap-dark.css +4 -0
- package/styles/drop-down-tree/bootstrap.css +4 -0
- package/styles/drop-down-tree/bootstrap4.css +4 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +4 -0
- package/styles/drop-down-tree/bootstrap5.css +4 -0
- package/styles/drop-down-tree/fabric-dark.css +4 -0
- package/styles/drop-down-tree/fabric.css +4 -0
- package/styles/drop-down-tree/fluent-dark.css +6 -0
- package/styles/drop-down-tree/fluent.css +6 -0
- package/styles/drop-down-tree/highcontrast-light.css +4 -0
- package/styles/drop-down-tree/highcontrast.css +4 -0
- package/styles/drop-down-tree/icons/_bds.scss +11 -0
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent.scss +11 -11
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/icons/_material3.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
- package/styles/drop-down-tree/material-dark.css +4 -0
- package/styles/drop-down-tree/material.css +4 -0
- package/styles/drop-down-tree/material3-dark.css +4 -0
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.css +4 -0
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/drop-down-tree/tailwind-dark.css +4 -0
- package/styles/drop-down-tree/tailwind.css +4 -0
- package/styles/fabric-dark.css +12 -9
- package/styles/fabric.css +12 -9
- package/styles/fluent-dark.css +18 -9
- package/styles/fluent.css +18 -9
- package/styles/highcontrast-light.css +12 -9
- package/styles/highcontrast.css +12 -9
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bds-definition.scss +136 -0
- package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
- package/styles/list-box/_bootstrap-definition.scss +119 -119
- package/styles/list-box/_bootstrap4-definition.scss +124 -124
- package/styles/list-box/_bootstrap5-definition.scss +120 -120
- package/styles/list-box/_fabric-dark-definition.scss +126 -126
- package/styles/list-box/_fabric-definition.scss +119 -119
- package/styles/list-box/_fluent-definition.scss +120 -120
- package/styles/list-box/_fusionnew-definition.scss +111 -111
- package/styles/list-box/_highcontrast-definition.scss +119 -119
- package/styles/list-box/_highcontrast-light-definition.scss +126 -126
- package/styles/list-box/_layout.scss +542 -542
- package/styles/list-box/_material-dark-definition.scss +126 -126
- package/styles/list-box/_material-definition.scss +119 -119
- package/styles/list-box/_material3-definition.scss +119 -119
- package/styles/list-box/_tailwind-definition.scss +119 -119
- package/styles/list-box/_theme.scss +382 -382
- package/styles/list-box/icons/_bds.scss +25 -0
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_bootstrap5.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_fluent.scss +25 -25
- package/styles/list-box/icons/_fusionnew.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/icons/_material3.scss +25 -25
- package/styles/list-box/icons/_tailwind-dark.scss +25 -25
- package/styles/list-box/icons/_tailwind.scss +25 -25
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.scss +1 -1
- package/styles/material-dark.css +11 -9
- package/styles/material.css +11 -9
- package/styles/material3-dark.css +11 -9
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +11 -9
- package/styles/material3.scss +1 -1
- package/styles/mention/_all.scss +1 -1
- package/styles/mention/_bds-definition.scss +1 -0
- package/styles/mention/_bootstrap-dark-definition.scss +3 -3
- package/styles/mention/_bootstrap-definition.scss +3 -3
- package/styles/mention/_bootstrap4-definition.scss +3 -3
- package/styles/mention/_bootstrap5-definition.scss +1 -1
- package/styles/mention/_fabric-dark-definition.scss +2 -2
- package/styles/mention/_fabric-definition.scss +3 -3
- package/styles/mention/_fluent-definition.scss +1 -1
- package/styles/mention/_fusionnew-definition.scss +1 -1
- package/styles/mention/_highcontrast-definition.scss +3 -3
- package/styles/mention/_highcontrast-light-definition.scss +3 -3
- package/styles/mention/_layout.scss +6 -6
- package/styles/mention/_material-dark-definition.scss +3 -3
- package/styles/mention/_material-definition.scss +3 -3
- package/styles/mention/_material3-definition.scss +1 -1
- package/styles/mention/_tailwind-definition.scss +1 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bds-definition.scss +235 -0
- package/styles/multi-select/_bootstrap-dark-definition.scss +207 -203
- package/styles/multi-select/_bootstrap-definition.scss +196 -192
- package/styles/multi-select/_bootstrap4-definition.scss +278 -278
- package/styles/multi-select/_bootstrap5-definition.scss +230 -230
- package/styles/multi-select/_fabric-dark-definition.scss +192 -192
- package/styles/multi-select/_fabric-definition.scss +183 -183
- package/styles/multi-select/_fluent-definition.scss +246 -241
- package/styles/multi-select/_fusionnew-definition.scss +227 -227
- package/styles/multi-select/_highcontrast-definition.scss +303 -303
- package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
- package/styles/multi-select/_layout.scss +2206 -2199
- package/styles/multi-select/_material-dark-definition.scss +230 -230
- package/styles/multi-select/_material-definition.scss +223 -223
- package/styles/multi-select/_material3-definition.scss +246 -246
- package/styles/multi-select/_tailwind-definition.scss +235 -235
- package/styles/multi-select/_theme.scss +586 -586
- package/styles/multi-select/bootstrap-dark.css +7 -1
- package/styles/multi-select/bootstrap.css +7 -1
- package/styles/multi-select/bootstrap4.css +2 -1
- package/styles/multi-select/bootstrap5-dark.css +2 -1
- package/styles/multi-select/bootstrap5.css +2 -1
- package/styles/multi-select/fabric-dark.css +3 -1
- package/styles/multi-select/fabric.css +3 -1
- package/styles/multi-select/fluent-dark.css +7 -1
- package/styles/multi-select/fluent.css +7 -1
- package/styles/multi-select/highcontrast-light.css +3 -1
- package/styles/multi-select/highcontrast.css +3 -1
- package/styles/multi-select/icons/_bds.scss +26 -0
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_bootstrap5.scss +26 -26
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_fluent.scss +55 -55
- package/styles/multi-select/icons/_fusionnew.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +693 -693
- package/styles/multi-select/icons/_material.scss +693 -693
- package/styles/multi-select/icons/_material3.scss +692 -692
- package/styles/multi-select/icons/_tailwind.scss +26 -26
- package/styles/multi-select/material-dark.css +2 -1
- package/styles/multi-select/material.css +2 -1
- package/styles/multi-select/material3-dark.css +2 -1
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.css +2 -1
- package/styles/multi-select/material3.scss +1 -1
- package/styles/multi-select/tailwind-dark.css +2 -1
- package/styles/multi-select/tailwind.css +2 -1
- package/styles/tailwind-dark.css +11 -9
- package/styles/tailwind.css +11 -9
- package/.eslintrc.json +0 -260
- package/dist/ej2-dropdowns.min.js +0 -10
- package/dist/global/ej2-dropdowns.min.js +0 -11
- package/dist/global/ej2-dropdowns.min.js.map +0 -1
- package/dist/global/index.d.ts +0 -14
- package/tslint.json +0 -111
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
@include export-module('list-box-material3-icons') {
|
|
2
|
-
.e-listbox-tool .e-moveup::before {
|
|
3
|
-
content: '\e776';
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.e-listbox-tool .e-movedown::before {
|
|
7
|
-
content: '\e729';
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.e-listbox-tool .e-moveto::before {
|
|
11
|
-
content: '\e748';
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.e-listbox-tool .e-movefrom::before {
|
|
15
|
-
content: '\e765';
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.e-listbox-tool .e-moveallto::before {
|
|
19
|
-
content: '\e7a9';
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.e-listbox-tool .e-moveallfrom::before {
|
|
23
|
-
content: '\e744';
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
@include export-module('list-box-material3-icons') {
|
|
2
|
+
.e-listbox-tool .e-moveup::before {
|
|
3
|
+
content: '\e776';
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.e-listbox-tool .e-movedown::before {
|
|
7
|
+
content: '\e729';
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-listbox-tool .e-moveto::before {
|
|
11
|
+
content: '\e748';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-listbox-tool .e-movefrom::before {
|
|
15
|
+
content: '\e765';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-listbox-tool .e-moveallto::before {
|
|
19
|
+
content: '\e7a9';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-listbox-tool .e-moveallfrom::before {
|
|
23
|
+
content: '\e744';
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
@include export-module('list-box-tailwind-dark-icons') {
|
|
2
|
-
.e-listbox-tool .e-moveup::before {
|
|
3
|
-
content: '\e776';
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.e-listbox-tool .e-movedown::before {
|
|
7
|
-
content: '\e729';
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.e-listbox-tool .e-moveto::before {
|
|
11
|
-
content: '\e748';
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.e-listbox-tool .e-movefrom::before {
|
|
15
|
-
content: '\e765';
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.e-listbox-tool .e-moveallto::before {
|
|
19
|
-
content: '\e7a9';
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.e-listbox-tool .e-moveallfrom::before {
|
|
23
|
-
content: '\e744';
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
@include export-module('list-box-tailwind-dark-icons') {
|
|
2
|
+
.e-listbox-tool .e-moveup::before {
|
|
3
|
+
content: '\e776';
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.e-listbox-tool .e-movedown::before {
|
|
7
|
+
content: '\e729';
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-listbox-tool .e-moveto::before {
|
|
11
|
+
content: '\e748';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-listbox-tool .e-movefrom::before {
|
|
15
|
+
content: '\e765';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-listbox-tool .e-moveallto::before {
|
|
19
|
+
content: '\e7a9';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-listbox-tool .e-moveallfrom::before {
|
|
23
|
+
content: '\e744';
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
@include export-module('list-box-tailwind-icons') {
|
|
2
|
-
.e-listbox-tool .e-moveup::before {
|
|
3
|
-
content: '\e776';
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.e-listbox-tool .e-movedown::before {
|
|
7
|
-
content: '\e729';
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.e-listbox-tool .e-moveto::before {
|
|
11
|
-
content: '\e748';
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.e-listbox-tool .e-movefrom::before {
|
|
15
|
-
content: '\e765';
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.e-listbox-tool .e-moveallto::before {
|
|
19
|
-
content: '\e7a9';
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.e-listbox-tool .e-moveallfrom::before {
|
|
23
|
-
content: '\e744';
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
@include export-module('list-box-tailwind-icons') {
|
|
2
|
+
.e-listbox-tool .e-moveup::before {
|
|
3
|
+
content: '\e776';
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.e-listbox-tool .e-movedown::before {
|
|
7
|
+
content: '\e729';
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-listbox-tool .e-moveto::before {
|
|
11
|
+
content: '\e748';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-listbox-tool .e-movefrom::before {
|
|
15
|
+
content: '\e765';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-listbox-tool .e-moveallto::before {
|
|
19
|
+
content: '\e7a9';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-listbox-tool .e-moveallfrom::before {
|
|
23
|
+
content: '\e744';
|
|
24
|
+
}
|
|
25
|
+
}
|
package/styles/material-dark.css
CHANGED
|
@@ -67,9 +67,6 @@
|
|
|
67
67
|
position: absolute;
|
|
68
68
|
top: 0;
|
|
69
69
|
}
|
|
70
|
-
.e-rtl .e-dropdownbase .e-fixed-head {
|
|
71
|
-
left: 33px;
|
|
72
|
-
}
|
|
73
70
|
|
|
74
71
|
.e-dropdownbase.e-content {
|
|
75
72
|
overflow: auto;
|
|
@@ -109,11 +106,6 @@
|
|
|
109
106
|
cursor: default;
|
|
110
107
|
}
|
|
111
108
|
|
|
112
|
-
.e-mention .e-mention-chip::selection {
|
|
113
|
-
color: #000;
|
|
114
|
-
background: #00b0ff;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
109
|
.e-mention.e-editable-element {
|
|
118
110
|
border: 2px solid transparent;
|
|
119
111
|
height: auto;
|
|
@@ -545,6 +537,11 @@
|
|
|
545
537
|
padding: 4px 0;
|
|
546
538
|
}
|
|
547
539
|
|
|
540
|
+
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
541
|
+
display: block;
|
|
542
|
+
visibility: hidden;
|
|
543
|
+
}
|
|
544
|
+
|
|
548
545
|
.e-popup-full-page {
|
|
549
546
|
bottom: 0;
|
|
550
547
|
left: 0;
|
|
@@ -848,6 +845,10 @@ ejs-dropdownlist {
|
|
|
848
845
|
padding-left: 0;
|
|
849
846
|
padding-right: 0;
|
|
850
847
|
}
|
|
848
|
+
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
849
|
+
display: -ms-flexbox;
|
|
850
|
+
display: flex;
|
|
851
|
+
}
|
|
851
852
|
.e-ddt .e-chips-wrapper {
|
|
852
853
|
width: 100%;
|
|
853
854
|
}
|
|
@@ -2387,7 +2388,8 @@ ejs-dropdownlist {
|
|
|
2387
2388
|
margin-top: -3em;
|
|
2388
2389
|
}
|
|
2389
2390
|
|
|
2390
|
-
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon
|
|
2391
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
|
|
2392
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
2391
2393
|
margin-top: -3em;
|
|
2392
2394
|
}
|
|
2393
2395
|
|
package/styles/material.css
CHANGED
|
@@ -67,9 +67,6 @@
|
|
|
67
67
|
position: absolute;
|
|
68
68
|
top: 0;
|
|
69
69
|
}
|
|
70
|
-
.e-rtl .e-dropdownbase .e-fixed-head {
|
|
71
|
-
left: 33px;
|
|
72
|
-
}
|
|
73
70
|
|
|
74
71
|
.e-dropdownbase.e-content {
|
|
75
72
|
overflow: auto;
|
|
@@ -109,11 +106,6 @@
|
|
|
109
106
|
cursor: default;
|
|
110
107
|
}
|
|
111
108
|
|
|
112
|
-
.e-mention .e-mention-chip::selection {
|
|
113
|
-
color: #fff;
|
|
114
|
-
background: #e3165b;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
109
|
.e-mention.e-editable-element {
|
|
118
110
|
border: 2px solid #e0e0e0;
|
|
119
111
|
height: auto;
|
|
@@ -578,6 +570,11 @@
|
|
|
578
570
|
padding: 4px 0;
|
|
579
571
|
}
|
|
580
572
|
|
|
573
|
+
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
574
|
+
display: block;
|
|
575
|
+
visibility: hidden;
|
|
576
|
+
}
|
|
577
|
+
|
|
581
578
|
.e-popup-full-page {
|
|
582
579
|
bottom: 0;
|
|
583
580
|
left: 0;
|
|
@@ -889,6 +886,10 @@ ejs-dropdownlist {
|
|
|
889
886
|
padding-left: 0;
|
|
890
887
|
padding-right: 0;
|
|
891
888
|
}
|
|
889
|
+
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
890
|
+
display: -ms-flexbox;
|
|
891
|
+
display: flex;
|
|
892
|
+
}
|
|
892
893
|
.e-ddt .e-chips-wrapper {
|
|
893
894
|
width: 100%;
|
|
894
895
|
}
|
|
@@ -2442,7 +2443,8 @@ ejs-dropdownlist {
|
|
|
2442
2443
|
margin-top: -3em;
|
|
2443
2444
|
}
|
|
2444
2445
|
|
|
2445
|
-
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon
|
|
2446
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
|
|
2447
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
2446
2448
|
margin-top: -3em;
|
|
2447
2449
|
}
|
|
2448
2450
|
|
|
@@ -122,9 +122,6 @@
|
|
|
122
122
|
position: absolute;
|
|
123
123
|
top: 0;
|
|
124
124
|
}
|
|
125
|
-
.e-rtl .e-dropdownbase .e-fixed-head {
|
|
126
|
-
left: 33px;
|
|
127
|
-
}
|
|
128
125
|
|
|
129
126
|
.e-dropdownbase.e-content {
|
|
130
127
|
overflow: auto;
|
|
@@ -163,11 +160,6 @@
|
|
|
163
160
|
cursor: default;
|
|
164
161
|
}
|
|
165
162
|
|
|
166
|
-
.e-mention .e-mention-chip::selection {
|
|
167
|
-
color: rgba(var(--color-sf-surface));
|
|
168
|
-
background: rgba(var(--color-sf-primary));
|
|
169
|
-
}
|
|
170
|
-
|
|
171
163
|
.e-mention.e-editable-element {
|
|
172
164
|
border: 2px solid #e0e0e0;
|
|
173
165
|
height: auto;
|
|
@@ -652,6 +644,11 @@
|
|
|
652
644
|
padding: 4px 0;
|
|
653
645
|
}
|
|
654
646
|
|
|
647
|
+
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
648
|
+
display: block;
|
|
649
|
+
visibility: hidden;
|
|
650
|
+
}
|
|
651
|
+
|
|
655
652
|
.e-popup-full-page {
|
|
656
653
|
bottom: 0;
|
|
657
654
|
left: 0;
|
|
@@ -973,6 +970,10 @@ ejs-dropdownlist {
|
|
|
973
970
|
padding-left: 0;
|
|
974
971
|
padding-right: 0;
|
|
975
972
|
}
|
|
973
|
+
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
974
|
+
display: -ms-flexbox;
|
|
975
|
+
display: flex;
|
|
976
|
+
}
|
|
976
977
|
.e-ddt .e-chips-wrapper {
|
|
977
978
|
width: 100%;
|
|
978
979
|
}
|
|
@@ -2203,7 +2204,8 @@ ejs-dropdownlist {
|
|
|
2203
2204
|
height: 38px;
|
|
2204
2205
|
}
|
|
2205
2206
|
|
|
2206
|
-
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon
|
|
2207
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
|
|
2208
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
2207
2209
|
margin-top: -2.5em;
|
|
2208
2210
|
}
|
|
2209
2211
|
|
package/styles/material3.css
CHANGED
|
@@ -178,9 +178,6 @@
|
|
|
178
178
|
position: absolute;
|
|
179
179
|
top: 0;
|
|
180
180
|
}
|
|
181
|
-
.e-rtl .e-dropdownbase .e-fixed-head {
|
|
182
|
-
left: 33px;
|
|
183
|
-
}
|
|
184
181
|
|
|
185
182
|
.e-dropdownbase.e-content {
|
|
186
183
|
overflow: auto;
|
|
@@ -219,11 +216,6 @@
|
|
|
219
216
|
cursor: default;
|
|
220
217
|
}
|
|
221
218
|
|
|
222
|
-
.e-mention .e-mention-chip::selection {
|
|
223
|
-
color: rgba(var(--color-sf-surface));
|
|
224
|
-
background: rgba(var(--color-sf-primary));
|
|
225
|
-
}
|
|
226
|
-
|
|
227
219
|
.e-mention.e-editable-element {
|
|
228
220
|
border: 2px solid #e0e0e0;
|
|
229
221
|
height: auto;
|
|
@@ -708,6 +700,11 @@
|
|
|
708
700
|
padding: 4px 0;
|
|
709
701
|
}
|
|
710
702
|
|
|
703
|
+
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
704
|
+
display: block;
|
|
705
|
+
visibility: hidden;
|
|
706
|
+
}
|
|
707
|
+
|
|
711
708
|
.e-popup-full-page {
|
|
712
709
|
bottom: 0;
|
|
713
710
|
left: 0;
|
|
@@ -1029,6 +1026,10 @@ ejs-dropdownlist {
|
|
|
1029
1026
|
padding-left: 0;
|
|
1030
1027
|
padding-right: 0;
|
|
1031
1028
|
}
|
|
1029
|
+
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
1030
|
+
display: -ms-flexbox;
|
|
1031
|
+
display: flex;
|
|
1032
|
+
}
|
|
1032
1033
|
.e-ddt .e-chips-wrapper {
|
|
1033
1034
|
width: 100%;
|
|
1034
1035
|
}
|
|
@@ -2259,7 +2260,8 @@ ejs-dropdownlist {
|
|
|
2259
2260
|
height: 38px;
|
|
2260
2261
|
}
|
|
2261
2262
|
|
|
2262
|
-
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon
|
|
2263
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
|
|
2264
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
2263
2265
|
margin-top: -2.5em;
|
|
2264
2266
|
}
|
|
2265
2267
|
|
package/styles/material3.scss
CHANGED
package/styles/mention/_all.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import 'layout.scss';
|
|
1
|
+
@import 'layout.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* stylelint-disable-line no-empty-source */
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* stylelint-disable-line no-empty-source */
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* stylelint-disable-line no-empty-source */
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@include export-module('mention-layout') {
|
|
2
|
-
|
|
3
|
-
//default
|
|
4
|
-
//undefined
|
|
5
|
-
//enddefault
|
|
6
|
-
}
|
|
1
|
+
@include export-module('mention-layout') {
|
|
2
|
+
|
|
3
|
+
//default
|
|
4
|
+
//undefined
|
|
5
|
+
//enddefault
|
|
6
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* stylelint-disable-line no-empty-source */
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* stylelint-disable-line no-empty-source */
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'layout.scss';
|
|
2
|
-
@import 'theme.scss';
|
|
1
|
+
@import 'layout.scss';
|
|
2
|
+
@import 'theme.scss';
|