@syncfusion/ej2-dropdowns 20.2.39 → 20.2.43-1234
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/.eslintrc.json +16 -1
- package/CHANGELOG.md +123 -2
- package/GitLeaksReport.json +1 -0
- package/{README.md → ReadMe.md} +1 -1
- package/dist/ej2-dropdowns.min.js +1 -0
- 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 +2260 -446
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2303 -459
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/gitleaks-ci/gitleaks +0 -0
- package/gitleaks-ci.tar.gz +0 -0
- package/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +76 -76
- package/src/auto-complete/auto-complete-model.d.ts +12 -11
- package/src/auto-complete/auto-complete.d.ts +20 -18
- package/src/auto-complete/auto-complete.js +67 -37
- package/src/combo-box/combo-box-model.d.ts +17 -17
- package/src/combo-box/combo-box.d.ts +33 -33
- package/src/combo-box/combo-box.js +33 -29
- package/src/common/incremental-search.d.ts +3 -4
- package/src/common/incremental-search.js +22 -7
- package/src/drop-down-base/drop-down-base-model.d.ts +13 -31
- package/src/drop-down-base/drop-down-base.d.ts +22 -41
- package/src/drop-down-base/drop-down-base.js +75 -59
- package/src/drop-down-list/drop-down-list-model.d.ts +19 -1
- package/src/drop-down-list/drop-down-list.d.ts +35 -11
- package/src/drop-down-list/drop-down-list.js +196 -90
- package/src/drop-down-tree/drop-down-tree-model.d.ts +16 -2
- package/src/drop-down-tree/drop-down-tree.d.ts +15 -1
- package/src/drop-down-tree/drop-down-tree.js +51 -15
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +18 -0
- package/src/list-box/list-box.d.ts +22 -0
- package/src/list-box/list-box.js +86 -31
- package/src/mention/index.d.ts +5 -0
- package/src/mention/index.js +4 -0
- package/src/mention/mention-model.d.ts +285 -0
- package/src/mention/mention.d.ts +457 -0
- package/src/mention/mention.js +1465 -0
- package/src/multi-select/checkbox-selection.js +11 -12
- package/src/multi-select/float-label.js +4 -2
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +10 -5
- package/src/multi-select/multi-select.js +313 -189
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bootstrap-dark-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap4-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5-definition.scss +1 -1
- package/styles/auto-complete/_fabric-dark-definition.scss +1 -1
- package/styles/auto-complete/_fabric-definition.scss +1 -1
- package/styles/auto-complete/_fluent-definition.scss +1 -1
- package/styles/auto-complete/_fusionnew-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-light-definition.scss +1 -1
- package/styles/auto-complete/_material-dark-definition.scss +1 -1
- package/styles/auto-complete/_material-definition.scss +1 -1
- package/styles/auto-complete/_material3-definition.scss +1 -1
- package/styles/auto-complete/_tailwind-definition.scss +1 -1
- package/styles/auto-complete/bootstrap-dark.css +3 -1
- package/styles/auto-complete/bootstrap.css +3 -1
- package/styles/auto-complete/bootstrap4.css +3 -1
- package/styles/auto-complete/bootstrap5-dark.css +3 -1
- package/styles/auto-complete/bootstrap5.css +3 -1
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +3 -1
- package/styles/auto-complete/fluent.css +3 -1
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +3 -1
- package/styles/auto-complete/material.css +3 -1
- package/styles/auto-complete/tailwind-dark.css +3 -1
- package/styles/auto-complete/tailwind.css +3 -1
- package/styles/bootstrap-dark.css +121 -44
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +121 -44
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +134 -55
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +135 -50
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +135 -50
- package/styles/bootstrap5.scss +1 -0
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bootstrap-dark-definition.scss +1 -1
- package/styles/combo-box/_bootstrap-definition.scss +1 -1
- package/styles/combo-box/_bootstrap4-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5-definition.scss +1 -1
- package/styles/combo-box/_fabric-dark-definition.scss +1 -1
- package/styles/combo-box/_fabric-definition.scss +1 -1
- package/styles/combo-box/_fluent-definition.scss +1 -1
- package/styles/combo-box/_fusionnew-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-light-definition.scss +1 -1
- package/styles/combo-box/_material-dark-definition.scss +1 -1
- package/styles/combo-box/_material-definition.scss +1 -1
- package/styles/combo-box/_material3-definition.scss +1 -1
- package/styles/combo-box/_tailwind-definition.scss +1 -1
- package/styles/combo-box/bootstrap-dark.css +3 -1
- package/styles/combo-box/bootstrap.css +3 -1
- package/styles/combo-box/bootstrap4.css +3 -1
- package/styles/combo-box/bootstrap5-dark.css +3 -1
- package/styles/combo-box/bootstrap5.css +3 -1
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +3 -1
- package/styles/combo-box/fluent.css +3 -1
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +3 -1
- package/styles/combo-box/material.css +3 -1
- package/styles/combo-box/tailwind-dark.css +3 -1
- package/styles/combo-box/tailwind.css +3 -1
- package/styles/drop-down-base/_all.scss +1 -1
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +9 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +7 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +7 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +9 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +7 -1
- package/styles/drop-down-base/_fabric-definition.scss +7 -1
- package/styles/drop-down-base/_fluent-definition.scss +9 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +9 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +17 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +19 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +8 -1
- package/styles/drop-down-base/_material-definition.scss +7 -0
- package/styles/drop-down-base/_material3-definition.scss +9 -3
- package/styles/drop-down-base/_tailwind-definition.scss +9 -3
- package/styles/drop-down-base/_theme.scss +4 -4
- package/styles/drop-down-base/bootstrap-dark.css +42 -1
- package/styles/drop-down-base/bootstrap.css +42 -1
- package/styles/drop-down-base/bootstrap4.css +42 -1
- package/styles/drop-down-base/bootstrap5-dark.css +42 -1
- package/styles/drop-down-base/bootstrap5.css +42 -1
- package/styles/drop-down-base/fabric-dark.css +42 -1
- package/styles/drop-down-base/fabric.css +42 -1
- package/styles/drop-down-base/fluent-dark.css +42 -1
- package/styles/drop-down-base/fluent.css +42 -1
- package/styles/drop-down-base/highcontrast-light.css +42 -1
- package/styles/drop-down-base/highcontrast.css +42 -1
- package/styles/drop-down-base/material-dark.css +42 -1
- package/styles/drop-down-base/material.css +42 -1
- package/styles/drop-down-base/tailwind-dark.css +42 -1
- package/styles/drop-down-base/tailwind.css +42 -1
- package/styles/drop-down-list/_all.scss +2 -1
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap4-definition.scss +3 -1
- package/styles/drop-down-list/_bootstrap5-definition.scss +3 -3
- package/styles/drop-down-list/_fabric-dark-definition.scss +2 -1
- package/styles/drop-down-list/_fabric-definition.scss +2 -0
- package/styles/drop-down-list/_fluent-definition.scss +2 -1
- package/styles/drop-down-list/_fusionnew-definition.scss +3 -3
- package/styles/drop-down-list/_highcontrast-definition.scss +21 -10
- package/styles/drop-down-list/_highcontrast-light-definition.scss +22 -11
- package/styles/drop-down-list/_layout.scss +11 -9
- package/styles/drop-down-list/_material-dark-definition.scss +2 -2
- package/styles/drop-down-list/_material-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +3 -3
- package/styles/drop-down-list/_tailwind-definition.scss +1 -0
- package/styles/drop-down-list/_theme.scss +3 -3
- package/styles/drop-down-list/bootstrap-dark.css +8 -0
- package/styles/drop-down-list/bootstrap.css +8 -0
- package/styles/drop-down-list/bootstrap4.css +8 -0
- package/styles/drop-down-list/bootstrap5-dark.css +9 -0
- package/styles/drop-down-list/bootstrap5.css +9 -0
- package/styles/drop-down-list/fabric-dark.css +8 -0
- package/styles/drop-down-list/fabric.css +8 -0
- package/styles/drop-down-list/fluent-dark.css +9 -0
- package/styles/drop-down-list/fluent.css +9 -0
- package/styles/drop-down-list/highcontrast-light.css +8 -0
- package/styles/drop-down-list/highcontrast.css +8 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-list/icons/_fabric.scss +0 -1
- package/styles/drop-down-list/icons/_material.scss +0 -1
- package/styles/drop-down-list/material-dark.css +8 -0
- package/styles/drop-down-list/material.css +8 -0
- package/styles/drop-down-list/tailwind-dark.css +9 -0
- package/styles/drop-down-list/tailwind.css +9 -0
- package/styles/drop-down-tree/_all.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap5-definition.scss +2 -2
- package/styles/drop-down-tree/_fabric-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_fabric-definition.scss +2 -2
- package/styles/drop-down-tree/_fluent-definition.scss +2 -2
- package/styles/drop-down-tree/_fusionnew-definition.scss +2 -2
- package/styles/drop-down-tree/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +1 -1
- package/styles/drop-down-tree/_layout.scss +10 -3
- package/styles/drop-down-tree/_material-dark-definition.scss +2 -2
- package/styles/drop-down-tree/_material-definition.scss +2 -2
- package/styles/drop-down-tree/_material3-definition.scss +2 -2
- package/styles/drop-down-tree/_tailwind-definition.scss +2 -2
- 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 +9 -1
- package/styles/drop-down-tree/bootstrap5.css +9 -1
- 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 +5 -0
- package/styles/drop-down-tree/fluent.css +5 -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/_bootstrap.scss +0 -1
- package/styles/drop-down-tree/icons/_bootstrap4.scss +0 -1
- package/styles/drop-down-tree/icons/_fabric.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast.scss +0 -1
- package/styles/drop-down-tree/icons/_material-dark.scss +0 -1
- package/styles/drop-down-tree/icons/_material.scss +0 -1
- package/styles/drop-down-tree/material-dark.css +4 -0
- package/styles/drop-down-tree/material.css +4 -0
- package/styles/drop-down-tree/tailwind-dark.css +5 -0
- package/styles/drop-down-tree/tailwind.css +5 -0
- package/styles/fabric-dark.css +129 -52
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +129 -52
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +129 -47
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +129 -47
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +124 -44
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +133 -53
- package/styles/highcontrast.scss +1 -0
- package/styles/list-box/_all.scss +1 -1
- package/styles/list-box/_bootstrap-dark-definition.scss +2 -0
- package/styles/list-box/_bootstrap-definition.scss +1 -0
- package/styles/list-box/_bootstrap4-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +3 -0
- package/styles/list-box/_fabric-dark-definition.scss +3 -1
- package/styles/list-box/_fabric-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +3 -0
- package/styles/list-box/_fusionnew-definition.scss +1 -0
- package/styles/list-box/_highcontrast-definition.scss +1 -0
- package/styles/list-box/_highcontrast-light-definition.scss +3 -1
- package/styles/list-box/_layout.scss +8 -17
- package/styles/list-box/_material-dark-definition.scss +2 -0
- package/styles/list-box/_material-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +3 -0
- package/styles/list-box/_theme.scss +11 -25
- package/styles/list-box/bootstrap-dark.css +12 -33
- package/styles/list-box/bootstrap.css +14 -35
- package/styles/list-box/bootstrap4.css +14 -35
- package/styles/list-box/bootstrap5-dark.css +15 -36
- package/styles/list-box/bootstrap5.css +15 -36
- package/styles/list-box/fabric-dark.css +12 -33
- package/styles/list-box/fabric.css +14 -35
- package/styles/list-box/fluent-dark.css +15 -36
- package/styles/list-box/fluent.css +15 -36
- package/styles/list-box/highcontrast-light.css +12 -33
- package/styles/list-box/highcontrast.css +14 -35
- package/styles/list-box/icons/_bootstrap-dark.scss +2 -2
- package/styles/list-box/icons/_bootstrap.scss +1 -1
- package/styles/list-box/icons/_bootstrap4.scss +1 -1
- package/styles/list-box/icons/_bootstrap5.scss +1 -1
- package/styles/list-box/icons/_fabric-dark.scss +1 -1
- package/styles/list-box/icons/_fabric.scss +1 -1
- package/styles/list-box/icons/_fluent.scss +1 -1
- package/styles/list-box/icons/_fusionnew.scss +1 -1
- package/styles/list-box/icons/_highcontrast-light.scss +1 -1
- package/styles/list-box/icons/_highcontrast.scss +1 -1
- package/styles/list-box/icons/_material-dark.scss +1 -1
- package/styles/list-box/icons/_material.scss +2 -2
- package/styles/list-box/icons/_material3.scss +1 -1
- package/styles/list-box/icons/_tailwind-dark.scss +1 -1
- package/styles/list-box/icons/_tailwind.scss +1 -1
- package/styles/list-box/material-dark.css +12 -33
- package/styles/list-box/material.css +14 -35
- package/styles/list-box/tailwind-dark.css +15 -36
- package/styles/list-box/tailwind.css +15 -36
- package/styles/material-dark.css +120 -43
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +120 -43
- package/styles/material.scss +1 -0
- package/styles/mention/_all.scss +1 -0
- package/styles/mention/_bootstrap-dark-definition.scss +3 -0
- package/styles/mention/_bootstrap-definition.scss +3 -0
- package/styles/mention/_bootstrap4-definition.scss +3 -0
- package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
- package/styles/mention/_bootstrap5-definition.scss +1 -0
- package/styles/mention/_fabric-dark-definition.scss +2 -0
- package/styles/mention/_fabric-definition.scss +3 -0
- package/styles/mention/_fluent-dark-definition.scss +1 -0
- package/styles/mention/_fluent-definition.scss +1 -0
- package/styles/mention/_fusionnew-definition.scss +1 -0
- package/styles/mention/_highcontrast-definition.scss +3 -0
- package/styles/mention/_highcontrast-light-definition.scss +3 -0
- package/styles/mention/_layout.scss +6 -0
- package/styles/mention/_material-dark-definition.scss +3 -0
- package/styles/mention/_material-definition.scss +3 -0
- package/styles/mention/_material3-definition.scss +1 -0
- package/styles/mention/_tailwind-dark-definition.scss +1 -0
- package/styles/mention/_tailwind-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +29 -0
- package/styles/mention/bootstrap-dark.scss +6 -0
- package/styles/mention/bootstrap.css +29 -0
- package/styles/mention/bootstrap.scss +6 -0
- package/styles/mention/bootstrap4.css +47 -0
- package/styles/mention/bootstrap4.scss +6 -0
- package/styles/mention/bootstrap5-dark.css +58 -0
- package/styles/mention/bootstrap5-dark.scss +6 -0
- package/styles/mention/bootstrap5.css +58 -0
- package/styles/mention/bootstrap5.scss +6 -0
- package/styles/mention/fabric-dark.css +29 -0
- package/styles/mention/fabric-dark.scss +6 -0
- package/styles/mention/fabric.css +29 -0
- package/styles/mention/fabric.scss +6 -0
- package/styles/mention/fluent-dark.css +58 -0
- package/styles/mention/fluent-dark.scss +6 -0
- package/styles/mention/fluent.css +58 -0
- package/styles/mention/fluent.scss +6 -0
- package/styles/mention/highcontrast-light.css +43 -0
- package/styles/mention/highcontrast-light.scss +6 -0
- package/styles/mention/highcontrast.css +43 -0
- package/styles/mention/highcontrast.scss +6 -0
- package/styles/mention/material-dark.css +29 -0
- package/styles/mention/material-dark.scss +6 -0
- package/styles/mention/material.css +29 -0
- package/styles/mention/material.scss +6 -0
- package/styles/mention/tailwind-dark.css +68 -0
- package/styles/mention/tailwind-dark.scss +6 -0
- package/styles/mention/tailwind.css +68 -0
- package/styles/mention/tailwind.scss +6 -0
- package/styles/multi-select/_all.scss +1 -1
- package/styles/multi-select/_bootstrap-dark-definition.scss +11 -1
- package/styles/multi-select/_bootstrap-definition.scss +9 -0
- package/styles/multi-select/_bootstrap4-definition.scss +20 -9
- package/styles/multi-select/_bootstrap5-definition.scss +11 -3
- package/styles/multi-select/_fabric-dark-definition.scss +16 -7
- package/styles/multi-select/_fabric-definition.scss +15 -6
- package/styles/multi-select/_fluent-definition.scss +11 -2
- package/styles/multi-select/_fusionnew-definition.scss +10 -2
- package/styles/multi-select/_highcontrast-definition.scss +59 -29
- package/styles/multi-select/_highcontrast-light-definition.scss +55 -25
- package/styles/multi-select/_layout.scss +91 -78
- package/styles/multi-select/_material-dark-definition.scss +10 -1
- package/styles/multi-select/_material-definition.scss +8 -0
- package/styles/multi-select/_material3-definition.scss +9 -2
- package/styles/multi-select/_tailwind-definition.scss +11 -4
- package/styles/multi-select/_theme.scss +20 -21
- package/styles/multi-select/bootstrap-dark.css +34 -8
- package/styles/multi-select/bootstrap.css +34 -8
- package/styles/multi-select/bootstrap4.css +46 -19
- package/styles/multi-select/bootstrap5-dark.css +38 -11
- package/styles/multi-select/bootstrap5.css +38 -11
- package/styles/multi-select/fabric-dark.css +42 -16
- package/styles/multi-select/fabric.css +42 -16
- package/styles/multi-select/fluent-dark.css +36 -9
- package/styles/multi-select/fluent.css +36 -9
- package/styles/multi-select/highcontrast-light.css +37 -8
- package/styles/multi-select/highcontrast.css +46 -17
- package/styles/multi-select/icons/_bootstrap5.scss +0 -1
- package/styles/multi-select/icons/_fluent.scss +0 -1
- package/styles/multi-select/icons/_fusionnew.scss +0 -1
- package/styles/multi-select/icons/_material-dark.scss +53 -54
- package/styles/multi-select/icons/_material.scss +53 -54
- package/styles/multi-select/icons/_material3.scss +0 -1
- package/styles/multi-select/icons/_tailwind.scss +0 -1
- package/styles/multi-select/material-dark.css +33 -7
- package/styles/multi-select/material.css +33 -7
- package/styles/multi-select/tailwind-dark.css +38 -9
- package/styles/multi-select/tailwind.css +38 -9
- package/styles/tailwind-dark.css +132 -47
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +132 -47
- package/styles/tailwind.scss +1 -0
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
/* stylelint-disable-line no-empty-source */
|
|
4
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
5
|
@keyframes material-spinner-rotate {
|
|
3
6
|
0% {
|
|
4
7
|
transform: rotate(0);
|
|
@@ -221,6 +224,7 @@
|
|
|
221
224
|
-ms-flex-direction: row;
|
|
222
225
|
flex-direction: row;
|
|
223
226
|
margin-top: -2em;
|
|
227
|
+
margin-top: -1.45em;
|
|
224
228
|
outline: 0;
|
|
225
229
|
padding: 0;
|
|
226
230
|
position: absolute;
|
|
@@ -366,6 +370,10 @@
|
|
|
366
370
|
width: 16px;
|
|
367
371
|
}
|
|
368
372
|
|
|
373
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
374
|
+
margin: 0 0 0;
|
|
375
|
+
}
|
|
376
|
+
|
|
369
377
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
370
378
|
margin: 3px 0 0;
|
|
371
379
|
}
|
|
@@ -401,6 +409,7 @@
|
|
|
401
409
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
402
410
|
margin-top: -1.62em;
|
|
403
411
|
height: 36px;
|
|
412
|
+
margin-top: -2em;
|
|
404
413
|
width: 40px;
|
|
405
414
|
}
|
|
406
415
|
|
|
@@ -416,12 +425,12 @@
|
|
|
416
425
|
border: 0;
|
|
417
426
|
font-family: "Inter";
|
|
418
427
|
font-size: 14px;
|
|
419
|
-
font-weight:
|
|
428
|
+
font-weight: normal;
|
|
420
429
|
height: 28px;
|
|
421
430
|
min-height: 28px;
|
|
422
431
|
outline: none;
|
|
423
|
-
padding: 0;
|
|
424
|
-
text-indent:
|
|
432
|
+
padding: 4px 0 4px 12px;
|
|
433
|
+
text-indent: 0;
|
|
425
434
|
}
|
|
426
435
|
|
|
427
436
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -430,7 +439,7 @@
|
|
|
430
439
|
color: inherit;
|
|
431
440
|
font-family: "Inter";
|
|
432
441
|
font-size: 14px;
|
|
433
|
-
font-weight:
|
|
442
|
+
font-weight: normal;
|
|
434
443
|
height: 28px;
|
|
435
444
|
min-height: 28px;
|
|
436
445
|
outline: none;
|
|
@@ -454,6 +463,7 @@
|
|
|
454
463
|
min-height: 36px;
|
|
455
464
|
}
|
|
456
465
|
|
|
466
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
457
467
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
458
468
|
display: none;
|
|
459
469
|
}
|
|
@@ -470,7 +480,7 @@
|
|
|
470
480
|
|
|
471
481
|
.e-bigger .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
|
|
472
482
|
.e-bigger.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
|
|
473
|
-
width: calc(100% -
|
|
483
|
+
width: calc(100% - 50px);
|
|
474
484
|
}
|
|
475
485
|
|
|
476
486
|
.e-small .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
|
|
@@ -1104,6 +1114,20 @@ ejs-multiselect {
|
|
|
1104
1114
|
display: none;
|
|
1105
1115
|
}
|
|
1106
1116
|
|
|
1117
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1118
|
+
margin-right: 0;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1122
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1123
|
+
cursor: not-allowed;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1127
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
1128
|
+
cursor: pointer;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1107
1131
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1108
1132
|
color: #fff;
|
|
1109
1133
|
}
|
|
@@ -1120,6 +1144,7 @@ ejs-multiselect {
|
|
|
1120
1144
|
box-sizing: border-box;
|
|
1121
1145
|
}
|
|
1122
1146
|
|
|
1147
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1123
1148
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1124
1149
|
-webkit-text-fill-color: #fff;
|
|
1125
1150
|
color: #fff;
|
|
@@ -1231,19 +1256,19 @@ ejs-multiselect {
|
|
|
1231
1256
|
border: 0 solid transparent;
|
|
1232
1257
|
}
|
|
1233
1258
|
|
|
1234
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1259
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1235
1260
|
color: #6b7280;
|
|
1236
1261
|
}
|
|
1237
1262
|
|
|
1238
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1263
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1239
1264
|
color: #6b7280;
|
|
1240
1265
|
}
|
|
1241
1266
|
|
|
1242
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1267
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1243
1268
|
color: #6b7280;
|
|
1244
1269
|
}
|
|
1245
1270
|
|
|
1246
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1271
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1247
1272
|
color: #6b7280;
|
|
1248
1273
|
}
|
|
1249
1274
|
|
|
@@ -1284,6 +1309,10 @@ ejs-multiselect {
|
|
|
1284
1309
|
left: 6px;
|
|
1285
1310
|
}
|
|
1286
1311
|
|
|
1312
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1313
|
+
left: 6px;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1287
1316
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1288
1317
|
height: 26px;
|
|
1289
1318
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
/* stylelint-disable-line no-empty-source */
|
|
4
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
5
|
@keyframes material-spinner-rotate {
|
|
3
6
|
0% {
|
|
4
7
|
transform: rotate(0);
|
|
@@ -221,6 +224,7 @@
|
|
|
221
224
|
-ms-flex-direction: row;
|
|
222
225
|
flex-direction: row;
|
|
223
226
|
margin-top: -2em;
|
|
227
|
+
margin-top: -1.45em;
|
|
224
228
|
outline: 0;
|
|
225
229
|
padding: 0;
|
|
226
230
|
position: absolute;
|
|
@@ -366,6 +370,10 @@
|
|
|
366
370
|
width: 16px;
|
|
367
371
|
}
|
|
368
372
|
|
|
373
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
374
|
+
margin: 0 0 0;
|
|
375
|
+
}
|
|
376
|
+
|
|
369
377
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
370
378
|
margin: 3px 0 0;
|
|
371
379
|
}
|
|
@@ -401,6 +409,7 @@
|
|
|
401
409
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
402
410
|
margin-top: -1.62em;
|
|
403
411
|
height: 36px;
|
|
412
|
+
margin-top: -2em;
|
|
404
413
|
width: 40px;
|
|
405
414
|
}
|
|
406
415
|
|
|
@@ -416,12 +425,12 @@
|
|
|
416
425
|
border: 0;
|
|
417
426
|
font-family: "Inter";
|
|
418
427
|
font-size: 14px;
|
|
419
|
-
font-weight:
|
|
428
|
+
font-weight: normal;
|
|
420
429
|
height: 28px;
|
|
421
430
|
min-height: 28px;
|
|
422
431
|
outline: none;
|
|
423
|
-
padding: 0;
|
|
424
|
-
text-indent:
|
|
432
|
+
padding: 4px 0 4px 12px;
|
|
433
|
+
text-indent: 0;
|
|
425
434
|
}
|
|
426
435
|
|
|
427
436
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -430,7 +439,7 @@
|
|
|
430
439
|
color: inherit;
|
|
431
440
|
font-family: "Inter";
|
|
432
441
|
font-size: 14px;
|
|
433
|
-
font-weight:
|
|
442
|
+
font-weight: normal;
|
|
434
443
|
height: 28px;
|
|
435
444
|
min-height: 28px;
|
|
436
445
|
outline: none;
|
|
@@ -454,6 +463,7 @@
|
|
|
454
463
|
min-height: 36px;
|
|
455
464
|
}
|
|
456
465
|
|
|
466
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
457
467
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
458
468
|
display: none;
|
|
459
469
|
}
|
|
@@ -470,7 +480,7 @@
|
|
|
470
480
|
|
|
471
481
|
.e-bigger .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
|
|
472
482
|
.e-bigger.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
|
|
473
|
-
width: calc(100% -
|
|
483
|
+
width: calc(100% - 50px);
|
|
474
484
|
}
|
|
475
485
|
|
|
476
486
|
.e-small .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
|
|
@@ -1104,6 +1114,20 @@ ejs-multiselect {
|
|
|
1104
1114
|
display: none;
|
|
1105
1115
|
}
|
|
1106
1116
|
|
|
1117
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1118
|
+
margin-right: 0;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1122
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1123
|
+
cursor: not-allowed;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1127
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
1128
|
+
cursor: pointer;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1107
1131
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1108
1132
|
color: #111827;
|
|
1109
1133
|
}
|
|
@@ -1120,6 +1144,7 @@ ejs-multiselect {
|
|
|
1120
1144
|
box-sizing: border-box;
|
|
1121
1145
|
}
|
|
1122
1146
|
|
|
1147
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1123
1148
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1124
1149
|
-webkit-text-fill-color: #111827;
|
|
1125
1150
|
color: #111827;
|
|
@@ -1231,19 +1256,19 @@ ejs-multiselect {
|
|
|
1231
1256
|
border: 0 solid transparent;
|
|
1232
1257
|
}
|
|
1233
1258
|
|
|
1234
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1259
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1235
1260
|
color: #6b7280;
|
|
1236
1261
|
}
|
|
1237
1262
|
|
|
1238
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1263
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1239
1264
|
color: #6b7280;
|
|
1240
1265
|
}
|
|
1241
1266
|
|
|
1242
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1267
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1243
1268
|
color: #6b7280;
|
|
1244
1269
|
}
|
|
1245
1270
|
|
|
1246
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1271
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1247
1272
|
color: #6b7280;
|
|
1248
1273
|
}
|
|
1249
1274
|
|
|
@@ -1284,6 +1309,10 @@ ejs-multiselect {
|
|
|
1284
1309
|
left: 6px;
|
|
1285
1310
|
}
|
|
1286
1311
|
|
|
1312
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1313
|
+
left: 6px;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1287
1316
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1288
1317
|
height: 26px;
|
|
1289
1318
|
}
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
6
6
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
7
7
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
8
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
8
9
|
.e-dropdownbase .e-list-item.e-active,
|
|
9
10
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
10
11
|
font-weight: 500;
|
|
@@ -118,7 +119,8 @@
|
|
|
118
119
|
position: relative;
|
|
119
120
|
}
|
|
120
121
|
|
|
121
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
122
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
123
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
122
124
|
color: #fff;
|
|
123
125
|
cursor: default;
|
|
124
126
|
font-family: "Inter";
|
|
@@ -127,6 +129,45 @@
|
|
|
127
129
|
text-align: center;
|
|
128
130
|
}
|
|
129
131
|
|
|
132
|
+
.e-mention.e-popup {
|
|
133
|
+
background: #1f2937;
|
|
134
|
+
border: 0;
|
|
135
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
136
|
+
margin-top: 2px;
|
|
137
|
+
position: absolute;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
141
|
+
display: inline;
|
|
142
|
+
font-weight: bold;
|
|
143
|
+
vertical-align: baseline;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-mention .e-mention-chip,
|
|
147
|
+
.e-mention .e-mention-chip:hover {
|
|
148
|
+
background: #374151;
|
|
149
|
+
border-radius: 2px;
|
|
150
|
+
border: none;
|
|
151
|
+
color: #22d3ee;
|
|
152
|
+
cursor: default;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-mention .e-mention-chip::selection {
|
|
156
|
+
color: #fff;
|
|
157
|
+
background: #22d3ee;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-mention.e-editable-element {
|
|
161
|
+
border: 2px solid #4b5563;
|
|
162
|
+
height: auto;
|
|
163
|
+
min-height: 120px;
|
|
164
|
+
width: 100%;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-form-mirror-div {
|
|
168
|
+
white-space: pre-wrap;
|
|
169
|
+
}
|
|
170
|
+
|
|
130
171
|
.e-bigger.e-ddl .e-dropdownbase.e-nodata,
|
|
131
172
|
.e-bigger .e-ddl .e-dropdownbase.e-nodata {
|
|
132
173
|
font-size: 16px;
|
|
@@ -260,6 +301,7 @@
|
|
|
260
301
|
border-color: #4b5563;
|
|
261
302
|
}
|
|
262
303
|
.e-dropdownbase .e-list-item {
|
|
304
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
263
305
|
-webkit-tap-highlight-color: transparent;
|
|
264
306
|
background-color: #374151;
|
|
265
307
|
border-bottom: 0;
|
|
@@ -449,6 +491,9 @@
|
|
|
449
491
|
color: #d1d5db;
|
|
450
492
|
}
|
|
451
493
|
|
|
494
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
495
|
+
/* stylelint-disable-line no-empty-source */
|
|
496
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
452
497
|
@keyframes material-spinner-rotate {
|
|
453
498
|
0% {
|
|
454
499
|
transform: rotate(0);
|
|
@@ -594,6 +639,9 @@
|
|
|
594
639
|
.e-popup-full-page .e-popup-full-page.e-ddl.e-popup.e-ddl-device-filter {
|
|
595
640
|
margin: 0;
|
|
596
641
|
}
|
|
642
|
+
.e-popup-full-page .e-popup-full-page.e-ios {
|
|
643
|
+
position: fixed;
|
|
644
|
+
}
|
|
597
645
|
|
|
598
646
|
.e-ddl.e-control-wrapper .e-ddl-disable-icon {
|
|
599
647
|
position: relative;
|
|
@@ -607,6 +655,7 @@
|
|
|
607
655
|
background-color: #374151;
|
|
608
656
|
}
|
|
609
657
|
|
|
658
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
610
659
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
611
660
|
display: none;
|
|
612
661
|
pointer-events: none;
|
|
@@ -615,6 +664,7 @@
|
|
|
615
664
|
visibility: hidden;
|
|
616
665
|
}
|
|
617
666
|
|
|
667
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
618
668
|
.e-filter-parent {
|
|
619
669
|
border: 0;
|
|
620
670
|
border-top-width: 0;
|
|
@@ -654,6 +704,7 @@
|
|
|
654
704
|
cursor: default;
|
|
655
705
|
}
|
|
656
706
|
|
|
707
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
657
708
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
658
709
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
659
710
|
-webkit-appearance: initial;
|
|
@@ -776,6 +827,9 @@ ejs-dropdownlist {
|
|
|
776
827
|
color: #fff;
|
|
777
828
|
}
|
|
778
829
|
|
|
830
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
831
|
+
/* stylelint-disable-line no-empty-source */
|
|
832
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
779
833
|
@keyframes material-spinner-rotate {
|
|
780
834
|
0% {
|
|
781
835
|
transform: rotate(0);
|
|
@@ -793,6 +847,8 @@ ejs-dropdownlist {
|
|
|
793
847
|
}
|
|
794
848
|
}
|
|
795
849
|
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
850
|
+
/* stylelint-disable */
|
|
851
|
+
/* stylelint-disable */
|
|
796
852
|
.e-ddt .e-ddt-icon::before {
|
|
797
853
|
content: "\e734";
|
|
798
854
|
}
|
|
@@ -1252,6 +1308,10 @@ ejs-dropdownlist {
|
|
|
1252
1308
|
color: #fff;
|
|
1253
1309
|
}
|
|
1254
1310
|
|
|
1311
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1312
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1313
|
+
/* stylelint-disable-line no-empty-source */
|
|
1314
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1255
1315
|
@keyframes material-spinner-rotate {
|
|
1256
1316
|
0% {
|
|
1257
1317
|
transform: rotate(0);
|
|
@@ -1426,6 +1486,7 @@ ejs-dropdownlist {
|
|
|
1426
1486
|
-ms-flex-direction: row;
|
|
1427
1487
|
flex-direction: row;
|
|
1428
1488
|
margin-top: -2em;
|
|
1489
|
+
margin-top: -1.45em;
|
|
1429
1490
|
outline: 0;
|
|
1430
1491
|
padding: 0;
|
|
1431
1492
|
position: absolute;
|
|
@@ -1571,6 +1632,10 @@ ejs-dropdownlist {
|
|
|
1571
1632
|
width: 16px;
|
|
1572
1633
|
}
|
|
1573
1634
|
|
|
1635
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
1636
|
+
margin: 0 0 0;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1574
1639
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
1575
1640
|
margin: 3px 0 0;
|
|
1576
1641
|
}
|
|
@@ -1606,6 +1671,7 @@ ejs-dropdownlist {
|
|
|
1606
1671
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
1607
1672
|
margin-top: -1.62em;
|
|
1608
1673
|
height: 36px;
|
|
1674
|
+
margin-top: -2em;
|
|
1609
1675
|
width: 40px;
|
|
1610
1676
|
}
|
|
1611
1677
|
|
|
@@ -1621,12 +1687,12 @@ ejs-dropdownlist {
|
|
|
1621
1687
|
border: 0;
|
|
1622
1688
|
font-family: "Inter";
|
|
1623
1689
|
font-size: 14px;
|
|
1624
|
-
font-weight:
|
|
1690
|
+
font-weight: normal;
|
|
1625
1691
|
height: 28px;
|
|
1626
1692
|
min-height: 28px;
|
|
1627
1693
|
outline: none;
|
|
1628
|
-
padding: 0;
|
|
1629
|
-
text-indent:
|
|
1694
|
+
padding: 4px 0 4px 12px;
|
|
1695
|
+
text-indent: 0;
|
|
1630
1696
|
}
|
|
1631
1697
|
|
|
1632
1698
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -1635,7 +1701,7 @@ ejs-dropdownlist {
|
|
|
1635
1701
|
color: inherit;
|
|
1636
1702
|
font-family: "Inter";
|
|
1637
1703
|
font-size: 14px;
|
|
1638
|
-
font-weight:
|
|
1704
|
+
font-weight: normal;
|
|
1639
1705
|
height: 28px;
|
|
1640
1706
|
min-height: 28px;
|
|
1641
1707
|
outline: none;
|
|
@@ -1659,6 +1725,7 @@ ejs-dropdownlist {
|
|
|
1659
1725
|
min-height: 36px;
|
|
1660
1726
|
}
|
|
1661
1727
|
|
|
1728
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1662
1729
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1663
1730
|
display: none;
|
|
1664
1731
|
}
|
|
@@ -1675,7 +1742,7 @@ ejs-dropdownlist {
|
|
|
1675
1742
|
|
|
1676
1743
|
.e-bigger .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
|
|
1677
1744
|
.e-bigger.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
|
|
1678
|
-
width: calc(100% -
|
|
1745
|
+
width: calc(100% - 50px);
|
|
1679
1746
|
}
|
|
1680
1747
|
|
|
1681
1748
|
.e-small .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
|
|
@@ -2309,6 +2376,20 @@ ejs-multiselect {
|
|
|
2309
2376
|
display: none;
|
|
2310
2377
|
}
|
|
2311
2378
|
|
|
2379
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
2380
|
+
margin-right: 0;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
2384
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
2385
|
+
cursor: not-allowed;
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
2389
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
2390
|
+
cursor: pointer;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2312
2393
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2313
2394
|
color: #fff;
|
|
2314
2395
|
}
|
|
@@ -2325,6 +2406,7 @@ ejs-multiselect {
|
|
|
2325
2406
|
box-sizing: border-box;
|
|
2326
2407
|
}
|
|
2327
2408
|
|
|
2409
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2328
2410
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2329
2411
|
-webkit-text-fill-color: #fff;
|
|
2330
2412
|
color: #fff;
|
|
@@ -2436,19 +2518,19 @@ ejs-multiselect {
|
|
|
2436
2518
|
border: 0 solid transparent;
|
|
2437
2519
|
}
|
|
2438
2520
|
|
|
2439
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2521
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2440
2522
|
color: #6b7280;
|
|
2441
2523
|
}
|
|
2442
2524
|
|
|
2443
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2525
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2444
2526
|
color: #6b7280;
|
|
2445
2527
|
}
|
|
2446
2528
|
|
|
2447
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2529
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2448
2530
|
color: #6b7280;
|
|
2449
2531
|
}
|
|
2450
2532
|
|
|
2451
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2533
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2452
2534
|
color: #6b7280;
|
|
2453
2535
|
}
|
|
2454
2536
|
|
|
@@ -2489,6 +2571,10 @@ ejs-multiselect {
|
|
|
2489
2571
|
left: 6px;
|
|
2490
2572
|
}
|
|
2491
2573
|
|
|
2574
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
2575
|
+
left: 6px;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2492
2578
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
2493
2579
|
height: 26px;
|
|
2494
2580
|
}
|
|
@@ -2530,6 +2616,7 @@ ejs-multiselect {
|
|
|
2530
2616
|
content: "\e744";
|
|
2531
2617
|
}
|
|
2532
2618
|
|
|
2619
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2533
2620
|
.e-listbox-wrapper,
|
|
2534
2621
|
.e-listbox-container {
|
|
2535
2622
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2548,7 +2635,7 @@ ejs-multiselect {
|
|
|
2548
2635
|
}
|
|
2549
2636
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2550
2637
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2551
|
-
width: 84% !important;
|
|
2638
|
+
width: 84% !important; /* stylelint-disable-line declaration-no-important */
|
|
2552
2639
|
}
|
|
2553
2640
|
.e-listbox-wrapper:focus,
|
|
2554
2641
|
.e-listbox-container:focus {
|
|
@@ -2907,16 +2994,6 @@ ejs-listbox {
|
|
|
2907
2994
|
top: 30%;
|
|
2908
2995
|
}
|
|
2909
2996
|
|
|
2910
|
-
.e-listboxtool-container .e-left {
|
|
2911
|
-
-ms-flex-direction: row-reverse;
|
|
2912
|
-
flex-direction: row-reverse;
|
|
2913
|
-
}
|
|
2914
|
-
|
|
2915
|
-
.e-listboxtool-wrapper .e-left {
|
|
2916
|
-
-ms-flex-direction: column-reverse;
|
|
2917
|
-
flex-direction: column-reverse;
|
|
2918
|
-
}
|
|
2919
|
-
|
|
2920
2997
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2921
2998
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2922
2999
|
margin-right: 15px;
|
|
@@ -2930,7 +3007,7 @@ ejs-listbox {
|
|
|
2930
3007
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2931
3008
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2932
3009
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2933
|
-
width: 80% !important;
|
|
3010
|
+
width: 80% !important; /* stylelint-disable-line declaration-no-important */
|
|
2934
3011
|
}
|
|
2935
3012
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2936
3013
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -3019,28 +3096,14 @@ ejs-listbox {
|
|
|
3019
3096
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
3020
3097
|
font-size: 14px;
|
|
3021
3098
|
}
|
|
3022
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3023
|
-
|
|
3024
|
-
}
|
|
3025
|
-
|
|
3026
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3027
|
-
height: calc(100% - 38px) !important;
|
|
3028
|
-
}
|
|
3029
|
-
|
|
3030
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3099
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3100
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3031
3101
|
height: calc(100% - 45px);
|
|
3032
3102
|
}
|
|
3033
3103
|
|
|
3034
|
-
.e-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3039
|
-
height: calc(100% - 46px);
|
|
3040
|
-
}
|
|
3041
|
-
|
|
3042
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3043
|
-
height: calc(100% - 46px) !important;
|
|
3104
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3105
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3106
|
+
height: calc(100% - 55px);
|
|
3044
3107
|
}
|
|
3045
3108
|
|
|
3046
3109
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
@@ -3053,14 +3116,11 @@ ejs-listbox {
|
|
|
3053
3116
|
height: calc(100% - 48px);
|
|
3054
3117
|
}
|
|
3055
3118
|
|
|
3056
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3119
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3120
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3057
3121
|
height: calc(100% - 45px);
|
|
3058
3122
|
}
|
|
3059
3123
|
|
|
3060
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3061
|
-
height: calc(100% - 45px) !important;
|
|
3062
|
-
}
|
|
3063
|
-
|
|
3064
3124
|
.e-listbox-wrapper,
|
|
3065
3125
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3066
3126
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3090,6 +3150,11 @@ ejs-listbox {
|
|
|
3090
3150
|
font-size: 12px;
|
|
3091
3151
|
}
|
|
3092
3152
|
|
|
3153
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3154
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3155
|
+
height: calc(100% - 47px);
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3093
3158
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3094
3159
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3095
3160
|
height: calc(100% - 76px);
|
|
@@ -3325,4 +3390,24 @@ ejs-listbox {
|
|
|
3325
3390
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3326
3391
|
padding-left: 10px;
|
|
3327
3392
|
padding-right: 16px;
|
|
3328
|
-
}
|
|
3393
|
+
}
|
|
3394
|
+
|
|
3395
|
+
/* stylelint-disable-line no-empty-source */
|
|
3396
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3397
|
+
@keyframes material-spinner-rotate {
|
|
3398
|
+
0% {
|
|
3399
|
+
transform: rotate(0);
|
|
3400
|
+
}
|
|
3401
|
+
100% {
|
|
3402
|
+
transform: rotate(360deg);
|
|
3403
|
+
}
|
|
3404
|
+
}
|
|
3405
|
+
@keyframes fabric-spinner-rotate {
|
|
3406
|
+
0% {
|
|
3407
|
+
transform: rotate(0);
|
|
3408
|
+
}
|
|
3409
|
+
100% {
|
|
3410
|
+
transform: rotate(360deg);
|
|
3411
|
+
}
|
|
3412
|
+
}
|
|
3413
|
+
/* stylelint-disable-line no-empty-source */
|