@syncfusion/ej2-angular-dropdowns 20.4.38-ngcc → 20.4.38
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/auto-complete/autocomplete-all.module.mjs +23 -0
- package/esm2020/src/auto-complete/autocomplete.component.mjs +121 -0
- package/esm2020/src/auto-complete/autocomplete.module.mjs +25 -0
- package/esm2020/src/combo-box/combobox-all.module.mjs +23 -0
- package/esm2020/src/combo-box/combobox.component.mjs +121 -0
- package/esm2020/src/combo-box/combobox.module.mjs +25 -0
- package/esm2020/src/drop-down-list/dropdownlist-all.module.mjs +23 -0
- package/esm2020/src/drop-down-list/dropdownlist.component.mjs +127 -0
- package/esm2020/src/drop-down-list/dropdownlist.module.mjs +25 -0
- package/esm2020/src/drop-down-tree/dropdowntree-all.module.mjs +23 -0
- package/esm2020/src/drop-down-tree/dropdowntree.component.mjs +115 -0
- package/esm2020/src/drop-down-tree/dropdowntree.module.mjs +25 -0
- package/esm2020/src/index.mjs +23 -0
- package/esm2020/src/list-box/listbox-all.module.mjs +23 -0
- package/esm2020/src/list-box/listbox.component.mjs +103 -0
- package/esm2020/src/list-box/listbox.module.mjs +25 -0
- package/esm2020/src/mention/mention-all.module.mjs +23 -0
- package/esm2020/src/mention/mention.component.mjs +84 -0
- package/esm2020/src/mention/mention.module.mjs +25 -0
- package/esm2020/src/multi-select/multiselect-all.module.mjs +29 -0
- package/esm2020/src/multi-select/multiselect.component.mjs +134 -0
- package/esm2020/src/multi-select/multiselect.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-dropdowns.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +1052 -0
- package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +1052 -0
- package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/auto-complete/autocomplete-all.module.d.ts +6 -0
- package/src/auto-complete/autocomplete.component.d.ts +7 -4
- package/src/auto-complete/autocomplete.module.d.ts +6 -0
- package/src/combo-box/combobox-all.module.d.ts +6 -0
- package/src/combo-box/combobox.component.d.ts +7 -4
- package/src/combo-box/combobox.module.d.ts +6 -0
- package/src/drop-down-list/dropdownlist-all.module.d.ts +6 -0
- package/src/drop-down-list/dropdownlist.component.d.ts +5 -2
- package/src/drop-down-list/dropdownlist.module.d.ts +6 -0
- package/src/drop-down-tree/dropdowntree-all.module.d.ts +6 -0
- package/src/drop-down-tree/dropdowntree.component.d.ts +3 -0
- package/src/drop-down-tree/dropdowntree.module.d.ts +6 -0
- package/src/list-box/listbox-all.module.d.ts +6 -0
- package/src/list-box/listbox.component.d.ts +4 -1
- package/src/list-box/listbox.module.d.ts +6 -0
- package/src/mention/mention-all.module.d.ts +6 -0
- package/src/mention/mention.component.d.ts +3 -0
- package/src/mention/mention.module.d.ts +6 -0
- package/src/multi-select/multiselect-all.module.d.ts +6 -0
- package/src/multi-select/multiselect.component.d.ts +3 -0
- package/src/multi-select/multiselect.module.d.ts +6 -0
- package/styles/auto-complete/_all.scss +1 -0
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -0
- package/styles/auto-complete/_bootstrap-definition.scss +2 -0
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -0
- package/styles/auto-complete/_bootstrap5-dark-definition.scss +1 -0
- package/styles/auto-complete/_bootstrap5-definition.scss +2 -0
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -0
- package/styles/auto-complete/_fabric-definition.scss +2 -0
- package/styles/auto-complete/_fluent-dark-definition.scss +1 -0
- package/styles/auto-complete/_fluent-definition.scss +2 -0
- package/styles/auto-complete/_fusionnew-definition.scss +2 -0
- package/styles/auto-complete/_highcontrast-definition.scss +2 -0
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -0
- package/styles/auto-complete/_material-dark-definition.scss +2 -0
- package/styles/auto-complete/_material-definition.scss +2 -0
- package/styles/auto-complete/_material3-definition.scss +2 -0
- package/styles/auto-complete/_tailwind-dark-definition.scss +1 -0
- package/styles/auto-complete/_tailwind-definition.scss +2 -0
- package/styles/auto-complete/bootstrap-dark.scss +4 -1
- package/styles/auto-complete/bootstrap.scss +4 -1
- package/styles/auto-complete/bootstrap4.scss +4 -1
- package/styles/auto-complete/bootstrap5-dark.scss +4 -1
- package/styles/auto-complete/bootstrap5.scss +4 -1
- package/styles/auto-complete/fabric-dark.scss +4 -1
- package/styles/auto-complete/fabric.scss +4 -1
- package/styles/auto-complete/fluent-dark.scss +4 -1
- package/styles/auto-complete/fluent.scss +4 -1
- package/styles/auto-complete/highcontrast-light.scss +4 -1
- package/styles/auto-complete/highcontrast.scss +4 -1
- package/styles/auto-complete/material-dark.scss +4 -1
- package/styles/auto-complete/material.scss +4 -1
- package/styles/auto-complete/tailwind-dark.scss +4 -1
- package/styles/auto-complete/tailwind.scss +4 -1
- package/styles/bootstrap-dark.css +0 -12
- package/styles/bootstrap.css +0 -12
- package/styles/bootstrap4.css +11 -24
- package/styles/bootstrap5-dark.css +1 -16
- package/styles/bootstrap5.css +1 -16
- package/styles/combo-box/_all.scss +1 -0
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -0
- package/styles/combo-box/_bootstrap-definition.scss +2 -0
- package/styles/combo-box/_bootstrap4-definition.scss +11 -0
- package/styles/combo-box/_bootstrap5-dark-definition.scss +1 -0
- package/styles/combo-box/_bootstrap5-definition.scss +2 -0
- package/styles/combo-box/_fabric-dark-definition.scss +2 -0
- package/styles/combo-box/_fabric-definition.scss +2 -0
- package/styles/combo-box/_fluent-dark-definition.scss +1 -0
- package/styles/combo-box/_fluent-definition.scss +2 -0
- package/styles/combo-box/_fusionnew-definition.scss +2 -0
- package/styles/combo-box/_highcontrast-definition.scss +2 -0
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -0
- package/styles/combo-box/_material-dark-definition.scss +2 -0
- package/styles/combo-box/_material-definition.scss +2 -0
- package/styles/combo-box/_material3-definition.scss +2 -0
- package/styles/combo-box/_tailwind-dark-definition.scss +1 -0
- package/styles/combo-box/_tailwind-definition.scss +2 -0
- package/styles/combo-box/bootstrap-dark.scss +4 -1
- package/styles/combo-box/bootstrap.scss +4 -1
- package/styles/combo-box/bootstrap4.scss +4 -1
- package/styles/combo-box/bootstrap5-dark.scss +4 -1
- package/styles/combo-box/bootstrap5.scss +4 -1
- package/styles/combo-box/fabric-dark.scss +4 -1
- package/styles/combo-box/fabric.scss +4 -1
- package/styles/combo-box/fluent-dark.scss +4 -1
- package/styles/combo-box/fluent.scss +4 -1
- package/styles/combo-box/highcontrast-light.scss +4 -1
- package/styles/combo-box/highcontrast.scss +4 -1
- package/styles/combo-box/material-dark.scss +4 -1
- package/styles/combo-box/material.scss +4 -1
- package/styles/combo-box/tailwind-dark.scss +4 -1
- package/styles/combo-box/tailwind.scss +4 -1
- package/styles/drop-down-base/_all.scss +2 -0
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +82 -0
- package/styles/drop-down-base/_bootstrap-definition.scss +82 -0
- package/styles/drop-down-base/_bootstrap4-definition.scss +97 -0
- package/styles/drop-down-base/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-base/_bootstrap5-definition.scss +116 -0
- package/styles/drop-down-base/_definition.scss +23 -0
- package/styles/drop-down-base/_fabric-dark-definition.scss +85 -0
- package/styles/drop-down-base/_fabric-definition.scss +83 -0
- package/styles/drop-down-base/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-base/_fluent-definition.scss +120 -0
- package/styles/drop-down-base/_fusionnew-definition.scss +116 -0
- package/styles/drop-down-base/_highcontrast-definition.scss +104 -0
- package/styles/drop-down-base/_highcontrast-light-definition.scss +104 -0
- package/styles/drop-down-base/_layout.scss +193 -0
- package/styles/drop-down-base/_material-dark-definition.scss +85 -0
- package/styles/drop-down-base/_material-definition.scss +84 -0
- package/styles/drop-down-base/_material3-definition.scss +116 -0
- package/styles/drop-down-base/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-base/_tailwind-definition.scss +128 -0
- package/styles/drop-down-base/_theme.scss +328 -0
- package/styles/drop-down-base/bootstrap-dark.scss +3 -1
- package/styles/drop-down-base/bootstrap.scss +3 -1
- package/styles/drop-down-base/bootstrap4.scss +3 -1
- package/styles/drop-down-base/bootstrap5-dark.scss +3 -1
- package/styles/drop-down-base/bootstrap5.scss +3 -1
- package/styles/drop-down-base/fabric-dark.scss +3 -1
- package/styles/drop-down-base/fabric.css +1 -1
- package/styles/drop-down-base/fabric.scss +3 -1
- package/styles/drop-down-base/fluent-dark.scss +3 -1
- package/styles/drop-down-base/fluent.scss +3 -1
- package/styles/drop-down-base/highcontrast-light.scss +3 -1
- package/styles/drop-down-base/highcontrast.scss +3 -1
- package/styles/drop-down-base/material-dark.css +1 -1
- package/styles/drop-down-base/material-dark.scss +3 -1
- package/styles/drop-down-base/material.scss +3 -1
- package/styles/drop-down-base/tailwind-dark.scss +3 -1
- package/styles/drop-down-base/tailwind.scss +3 -1
- package/styles/drop-down-list/_all.scss +3 -0
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -0
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -0
- package/styles/drop-down-list/_bootstrap4-definition.scss +191 -0
- package/styles/drop-down-list/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-list/_bootstrap5-definition.scss +201 -0
- package/styles/drop-down-list/_fabric-dark-definition.scss +128 -0
- package/styles/drop-down-list/_fabric-definition.scss +124 -0
- package/styles/drop-down-list/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-list/_fluent-definition.scss +185 -0
- package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
- package/styles/drop-down-list/_highcontrast-definition.scss +142 -0
- package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -0
- package/styles/drop-down-list/_layout.scss +296 -0
- package/styles/drop-down-list/_material-dark-definition.scss +143 -0
- package/styles/drop-down-list/_material-definition.scss +167 -0
- package/styles/drop-down-list/_material3-definition.scss +201 -0
- package/styles/drop-down-list/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-list/_tailwind-definition.scss +134 -0
- package/styles/drop-down-list/_theme.scss +10 -0
- package/styles/drop-down-list/bootstrap-dark.scss +8 -1
- package/styles/drop-down-list/bootstrap.scss +8 -1
- package/styles/drop-down-list/bootstrap4.scss +8 -1
- package/styles/drop-down-list/bootstrap5-dark.scss +8 -1
- package/styles/drop-down-list/bootstrap5.scss +8 -1
- package/styles/drop-down-list/fabric-dark.scss +8 -1
- package/styles/drop-down-list/fabric.scss +8 -1
- package/styles/drop-down-list/fluent-dark.scss +8 -1
- package/styles/drop-down-list/fluent.scss +8 -1
- package/styles/drop-down-list/highcontrast-light.scss +8 -1
- package/styles/drop-down-list/highcontrast.scss +8 -1
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -0
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -0
- package/styles/drop-down-list/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-list/icons/_bootstrap5.scss +14 -0
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -0
- package/styles/drop-down-list/icons/_fabric.scss +14 -0
- package/styles/drop-down-list/icons/_fluent-dark.scss +1 -0
- package/styles/drop-down-list/icons/_fluent.scss +14 -0
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -0
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -0
- package/styles/drop-down-list/icons/_material-dark.scss +14 -0
- package/styles/drop-down-list/icons/_material.scss +14 -0
- package/styles/drop-down-list/icons/_material3.scss +14 -0
- package/styles/drop-down-list/icons/_tailwind-dark.scss +1 -0
- package/styles/drop-down-list/icons/_tailwind.scss +14 -0
- package/styles/drop-down-list/material-dark.scss +8 -1
- package/styles/drop-down-list/material.scss +8 -1
- package/styles/drop-down-list/tailwind-dark.scss +8 -1
- package/styles/drop-down-list/tailwind.scss +8 -1
- package/styles/drop-down-tree/_all.scss +2 -0
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +72 -0
- package/styles/drop-down-tree/_bootstrap-definition.scss +71 -0
- package/styles/drop-down-tree/_bootstrap4-definition.scss +72 -0
- package/styles/drop-down-tree/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-tree/_bootstrap5-definition.scss +60 -0
- package/styles/drop-down-tree/_fabric-dark-definition.scss +72 -0
- package/styles/drop-down-tree/_fabric-definition.scss +72 -0
- package/styles/drop-down-tree/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-tree/_fluent-definition.scss +66 -0
- package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
- package/styles/drop-down-tree/_highcontrast-definition.scss +72 -0
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +72 -0
- package/styles/drop-down-tree/_layout.scss +1378 -0
- package/styles/drop-down-tree/_material-dark-definition.scss +73 -0
- package/styles/drop-down-tree/_material-definition.scss +73 -0
- package/styles/drop-down-tree/_material3-definition.scss +60 -0
- package/styles/drop-down-tree/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-tree/_tailwind-definition.scss +61 -0
- package/styles/drop-down-tree/_theme.scss +120 -0
- package/styles/drop-down-tree/bootstrap-dark.scss +9 -1
- package/styles/drop-down-tree/bootstrap.scss +9 -1
- package/styles/drop-down-tree/bootstrap4.scss +9 -1
- package/styles/drop-down-tree/bootstrap5-dark.css +1 -4
- package/styles/drop-down-tree/bootstrap5-dark.scss +9 -1
- package/styles/drop-down-tree/bootstrap5.css +1 -4
- package/styles/drop-down-tree/bootstrap5.scss +9 -1
- package/styles/drop-down-tree/fabric-dark.scss +9 -1
- package/styles/drop-down-tree/fabric.scss +9 -1
- package/styles/drop-down-tree/fluent-dark.scss +9 -1
- package/styles/drop-down-tree/fluent.scss +9 -1
- package/styles/drop-down-tree/highcontrast-light.scss +9 -1
- package/styles/drop-down-tree/highcontrast.scss +9 -1
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -0
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -0
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -0
- package/styles/drop-down-tree/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -0
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -0
- package/styles/drop-down-tree/icons/_fabric.scss +11 -0
- package/styles/drop-down-tree/icons/_fluent-dark.scss +1 -0
- package/styles/drop-down-tree/icons/_fluent.scss +11 -0
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -0
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -0
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -0
- package/styles/drop-down-tree/icons/_material.scss +11 -0
- package/styles/drop-down-tree/icons/_material3.scss +11 -0
- package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -0
- package/styles/drop-down-tree/icons/_tailwind.scss +11 -0
- package/styles/drop-down-tree/material-dark.scss +9 -1
- package/styles/drop-down-tree/material.scss +9 -1
- package/styles/drop-down-tree/tailwind-dark.scss +9 -1
- package/styles/drop-down-tree/tailwind.scss +9 -1
- package/styles/fabric-dark.css +8 -20
- package/styles/fabric.css +9 -21
- package/styles/fluent-dark.css +1 -13
- package/styles/fluent.css +1 -13
- package/styles/highcontrast-light.css +0 -12
- package/styles/highcontrast.css +9 -21
- package/styles/list-box/_all.scss +2 -0
- package/styles/list-box/_bootstrap-dark-definition.scss +125 -0
- package/styles/list-box/_bootstrap-definition.scss +118 -0
- package/styles/list-box/_bootstrap4-definition.scss +123 -0
- package/styles/list-box/_bootstrap5-dark-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +121 -0
- package/styles/list-box/_fabric-dark-definition.scss +125 -0
- package/styles/list-box/_fabric-definition.scss +118 -0
- package/styles/list-box/_fluent-dark-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +121 -0
- package/styles/list-box/_fusionnew-definition.scss +114 -0
- package/styles/list-box/_highcontrast-definition.scss +118 -0
- package/styles/list-box/_highcontrast-light-definition.scss +125 -0
- package/styles/list-box/_layout.scss +534 -0
- package/styles/list-box/_material-dark-definition.scss +125 -0
- package/styles/list-box/_material-definition.scss +118 -0
- package/styles/list-box/_material3-definition.scss +120 -0
- package/styles/list-box/_tailwind-dark-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +120 -0
- package/styles/list-box/_theme.scss +316 -0
- package/styles/list-box/bootstrap-dark.scss +5 -1
- package/styles/list-box/bootstrap.scss +5 -1
- package/styles/list-box/bootstrap4.scss +5 -1
- package/styles/list-box/bootstrap5-dark.scss +5 -1
- package/styles/list-box/bootstrap5.scss +5 -1
- package/styles/list-box/fabric-dark.scss +5 -1
- package/styles/list-box/fabric.scss +5 -1
- package/styles/list-box/fluent-dark.scss +5 -1
- package/styles/list-box/fluent.scss +5 -1
- package/styles/list-box/highcontrast-light.scss +5 -1
- package/styles/list-box/highcontrast.scss +5 -1
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -0
- package/styles/list-box/icons/_bootstrap.scss +25 -0
- package/styles/list-box/icons/_bootstrap4.scss +25 -0
- package/styles/list-box/icons/_bootstrap5-dark.scss +1 -0
- package/styles/list-box/icons/_bootstrap5.scss +25 -0
- package/styles/list-box/icons/_fabric-dark.scss +25 -0
- package/styles/list-box/icons/_fabric.scss +25 -0
- package/styles/list-box/icons/_fluent-dark.scss +1 -0
- package/styles/list-box/icons/_fluent.scss +25 -0
- package/styles/list-box/icons/_fusionnew.scss +25 -0
- package/styles/list-box/icons/_highcontrast-light.scss +25 -0
- package/styles/list-box/icons/_highcontrast.scss +25 -0
- package/styles/list-box/icons/_material-dark.scss +25 -0
- package/styles/list-box/icons/_material.scss +25 -0
- package/styles/list-box/icons/_material3.scss +25 -0
- package/styles/list-box/icons/_tailwind-dark.scss +25 -0
- package/styles/list-box/icons/_tailwind.scss +25 -0
- package/styles/list-box/material-dark.scss +5 -1
- package/styles/list-box/material.scss +5 -1
- package/styles/list-box/tailwind-dark.scss +5 -1
- package/styles/list-box/tailwind.scss +5 -1
- package/styles/material-dark.css +1 -13
- package/styles/material.css +0 -12
- 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.scss +6 -1
- package/styles/mention/bootstrap.scss +6 -1
- package/styles/mention/bootstrap4.scss +6 -1
- package/styles/mention/bootstrap5-dark.scss +6 -1
- package/styles/mention/bootstrap5.scss +6 -1
- package/styles/mention/fabric-dark.scss +6 -1
- package/styles/mention/fabric.scss +6 -1
- package/styles/mention/fluent-dark.scss +6 -1
- package/styles/mention/fluent.scss +6 -1
- package/styles/mention/highcontrast-light.scss +6 -1
- package/styles/mention/highcontrast.scss +6 -1
- package/styles/mention/material-dark.scss +6 -1
- package/styles/mention/material.scss +6 -1
- package/styles/mention/tailwind-dark.scss +6 -1
- package/styles/mention/tailwind.scss +6 -1
- package/styles/multi-select/_all.scss +2 -0
- package/styles/multi-select/_bootstrap-dark-definition.scss +189 -0
- package/styles/multi-select/_bootstrap-definition.scss +183 -0
- package/styles/multi-select/_bootstrap4-definition.scss +249 -0
- package/styles/multi-select/_bootstrap5-dark-definition.scss +1 -0
- package/styles/multi-select/_bootstrap5-definition.scss +219 -0
- package/styles/multi-select/_fabric-dark-definition.scss +178 -0
- package/styles/multi-select/_fabric-definition.scss +174 -0
- package/styles/multi-select/_fluent-dark-definition.scss +1 -0
- package/styles/multi-select/_fluent-definition.scss +230 -0
- package/styles/multi-select/_fusionnew-definition.scss +219 -0
- package/styles/multi-select/_highcontrast-definition.scss +287 -0
- package/styles/multi-select/_highcontrast-light-definition.scss +286 -0
- package/styles/multi-select/_layout.scss +1995 -0
- package/styles/multi-select/_material-dark-definition.scss +221 -0
- package/styles/multi-select/_material-definition.scss +214 -0
- package/styles/multi-select/_material3-definition.scss +219 -0
- package/styles/multi-select/_tailwind-dark-definition.scss +1 -0
- package/styles/multi-select/_tailwind-definition.scss +224 -0
- package/styles/multi-select/_theme.scss +488 -0
- package/styles/multi-select/bootstrap-dark.css +0 -12
- package/styles/multi-select/bootstrap-dark.scss +9 -1
- package/styles/multi-select/bootstrap.css +0 -12
- package/styles/multi-select/bootstrap.scss +9 -1
- package/styles/multi-select/bootstrap4.css +11 -24
- package/styles/multi-select/bootstrap4.scss +9 -1
- package/styles/multi-select/bootstrap5-dark.css +0 -12
- package/styles/multi-select/bootstrap5-dark.scss +9 -1
- package/styles/multi-select/bootstrap5.css +0 -12
- package/styles/multi-select/bootstrap5.scss +9 -1
- package/styles/multi-select/fabric-dark.css +8 -20
- package/styles/multi-select/fabric-dark.scss +9 -1
- package/styles/multi-select/fabric.css +8 -20
- package/styles/multi-select/fabric.scss +9 -1
- package/styles/multi-select/fluent-dark.css +1 -13
- package/styles/multi-select/fluent-dark.scss +9 -1
- package/styles/multi-select/fluent.css +1 -13
- package/styles/multi-select/fluent.scss +9 -1
- package/styles/multi-select/highcontrast-light.css +0 -12
- package/styles/multi-select/highcontrast-light.scss +9 -1
- package/styles/multi-select/highcontrast.css +9 -21
- package/styles/multi-select/highcontrast.scss +9 -1
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -0
- package/styles/multi-select/icons/_bootstrap.scss +26 -0
- package/styles/multi-select/icons/_bootstrap4.scss +37 -0
- package/styles/multi-select/icons/_bootstrap5-dark.scss +1 -0
- package/styles/multi-select/icons/_bootstrap5.scss +26 -0
- package/styles/multi-select/icons/_fabric-dark.scss +26 -0
- package/styles/multi-select/icons/_fabric.scss +26 -0
- package/styles/multi-select/icons/_fluent-dark.scss +1 -0
- package/styles/multi-select/icons/_fluent.scss +55 -0
- package/styles/multi-select/icons/_fusionnew.scss +26 -0
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -0
- package/styles/multi-select/icons/_highcontrast.scss +26 -0
- package/styles/multi-select/icons/_material-dark.scss +693 -0
- package/styles/multi-select/icons/_material.scss +693 -0
- package/styles/multi-select/icons/_material3.scss +26 -0
- package/styles/multi-select/icons/_tailwind-dark.scss +1 -0
- package/styles/multi-select/icons/_tailwind.scss +26 -0
- package/styles/multi-select/material-dark.css +0 -12
- package/styles/multi-select/material-dark.scss +9 -1
- package/styles/multi-select/material.css +0 -12
- package/styles/multi-select/material.scss +9 -1
- package/styles/multi-select/tailwind-dark.css +0 -12
- package/styles/multi-select/tailwind-dark.scss +9 -1
- package/styles/multi-select/tailwind.css +0 -12
- package/styles/multi-select/tailwind.scss +9 -1
- package/styles/tailwind-dark.css +0 -12
- package/styles/tailwind.css +0 -12
- package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
- package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1427
- package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-dropdowns.js +0 -1342
- package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
- package/CHANGELOG.md +0 -2334
- package/dist/ej2-angular-dropdowns.umd.js +0 -1495
- package/dist/ej2-angular-dropdowns.umd.js.map +0 -1
- package/dist/ej2-angular-dropdowns.umd.min.js +0 -11
- package/dist/ej2-angular-dropdowns.umd.min.js.map +0 -1
- package/ej2-angular-dropdowns.d.ts +0 -11
- package/ej2-angular-dropdowns.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -363,10 +363,6 @@
|
|
|
363
363
|
width: 14px;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
367
|
-
margin: 0 0 0;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
366
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
371
367
|
margin: 3px 0 0;
|
|
372
368
|
}
|
|
@@ -1106,10 +1102,6 @@ ejs-multiselect {
|
|
|
1106
1102
|
display: none;
|
|
1107
1103
|
}
|
|
1108
1104
|
|
|
1109
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1110
|
-
margin-right: 0;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
1105
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1114
1106
|
color: #fff;
|
|
1115
1107
|
}
|
|
@@ -1305,10 +1297,6 @@ ejs-multiselect {
|
|
|
1305
1297
|
left: 0;
|
|
1306
1298
|
}
|
|
1307
1299
|
|
|
1308
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1309
|
-
left: 0;
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
1300
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1313
1301
|
height: 26px;
|
|
1314
1302
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import '../drop-down-base/bootstrap5-dark-definition.scss';
|
|
7
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'icons/bootstrap5-dark.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -363,10 +363,6 @@
|
|
|
363
363
|
width: 14px;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
367
|
-
margin: 0 0 0;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
366
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
371
367
|
margin: 3px 0 0;
|
|
372
368
|
}
|
|
@@ -1106,10 +1102,6 @@ ejs-multiselect {
|
|
|
1106
1102
|
display: none;
|
|
1107
1103
|
}
|
|
1108
1104
|
|
|
1109
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1110
|
-
margin-right: 0;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
1105
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1114
1106
|
color: #212529;
|
|
1115
1107
|
}
|
|
@@ -1305,10 +1297,6 @@ ejs-multiselect {
|
|
|
1305
1297
|
left: 0;
|
|
1306
1298
|
}
|
|
1307
1299
|
|
|
1308
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1309
|
-
left: 0;
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
1300
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1313
1301
|
height: 26px;
|
|
1314
1302
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-definition.scss';
|
|
6
|
+
@import '../drop-down-base/bootstrap5-definition.scss';
|
|
7
|
+
@import 'bootstrap5-definition.scss';
|
|
8
|
+
@import 'icons/bootstrap5.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
57
57
|
content: "\e7a7";
|
|
58
58
|
cursor: pointer;
|
|
59
|
-
left:
|
|
59
|
+
left: 8px;
|
|
60
60
|
position: relative;
|
|
61
61
|
top: 8px;
|
|
62
62
|
}
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
65
65
|
content: "\e7a7";
|
|
66
66
|
cursor: pointer;
|
|
67
|
-
left:
|
|
67
|
+
left: 10px;
|
|
68
68
|
position: relative;
|
|
69
69
|
top: 10px;
|
|
70
70
|
}
|
|
@@ -311,12 +311,8 @@
|
|
|
311
311
|
float: right;
|
|
312
312
|
font-family: "e-icons";
|
|
313
313
|
height: 26px;
|
|
314
|
-
margin:
|
|
315
|
-
width:
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
319
|
-
margin: 8px 0 8px 20px;
|
|
314
|
+
margin: 0;
|
|
315
|
+
width: 26px;
|
|
320
316
|
}
|
|
321
317
|
|
|
322
318
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -331,7 +327,7 @@
|
|
|
331
327
|
position: absolute;
|
|
332
328
|
right: 0;
|
|
333
329
|
top: 100%;
|
|
334
|
-
width:
|
|
330
|
+
width: 30px;
|
|
335
331
|
}
|
|
336
332
|
|
|
337
333
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -745,7 +741,7 @@ ejs-multiselect {
|
|
|
745
741
|
|
|
746
742
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
747
743
|
height: 22px;
|
|
748
|
-
width:
|
|
744
|
+
width: 22px;
|
|
749
745
|
}
|
|
750
746
|
|
|
751
747
|
.e-small .e-multi-select-wrapper {
|
|
@@ -764,7 +760,7 @@ ejs-multiselect {
|
|
|
764
760
|
|
|
765
761
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
766
762
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
767
|
-
margin-top: -
|
|
763
|
+
margin-top: -2.8em;
|
|
768
764
|
}
|
|
769
765
|
|
|
770
766
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -774,7 +770,7 @@ ejs-multiselect {
|
|
|
774
770
|
|
|
775
771
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
776
772
|
height: 26px;
|
|
777
|
-
width:
|
|
773
|
+
width: 26px;
|
|
778
774
|
}
|
|
779
775
|
|
|
780
776
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -1028,10 +1024,6 @@ ejs-multiselect {
|
|
|
1028
1024
|
display: none;
|
|
1029
1025
|
}
|
|
1030
1026
|
|
|
1031
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1032
|
-
margin-right: 0;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
1027
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1036
1028
|
color: #fff;
|
|
1037
1029
|
}
|
|
@@ -1226,10 +1218,6 @@ ejs-multiselect {
|
|
|
1226
1218
|
left: 7px;
|
|
1227
1219
|
}
|
|
1228
1220
|
|
|
1229
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1230
|
-
left: -35px;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
1221
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1234
1222
|
height: 26px;
|
|
1235
1223
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/fabric-dark-definition.scss';
|
|
6
|
+
@import '../drop-down-base/fabric-dark-definition.scss';
|
|
7
|
+
@import 'fabric-dark-definition.scss';
|
|
8
|
+
@import 'icons/fabric-dark.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
57
57
|
content: "\e7a7";
|
|
58
58
|
cursor: pointer;
|
|
59
|
-
left:
|
|
59
|
+
left: 8px;
|
|
60
60
|
position: relative;
|
|
61
61
|
top: 8px;
|
|
62
62
|
}
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
65
65
|
content: "\e7a7";
|
|
66
66
|
cursor: pointer;
|
|
67
|
-
left:
|
|
67
|
+
left: 10px;
|
|
68
68
|
position: relative;
|
|
69
69
|
top: 10px;
|
|
70
70
|
}
|
|
@@ -311,12 +311,8 @@
|
|
|
311
311
|
float: right;
|
|
312
312
|
font-family: "e-icons";
|
|
313
313
|
height: 26px;
|
|
314
|
-
margin:
|
|
315
|
-
width:
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
319
|
-
margin: 8px 0 8px 20px;
|
|
314
|
+
margin: 0;
|
|
315
|
+
width: 26px;
|
|
320
316
|
}
|
|
321
317
|
|
|
322
318
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -331,7 +327,7 @@
|
|
|
331
327
|
position: absolute;
|
|
332
328
|
right: 0;
|
|
333
329
|
top: 100%;
|
|
334
|
-
width:
|
|
330
|
+
width: 30px;
|
|
335
331
|
}
|
|
336
332
|
|
|
337
333
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -745,7 +741,7 @@ ejs-multiselect {
|
|
|
745
741
|
|
|
746
742
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
747
743
|
height: 22px;
|
|
748
|
-
width:
|
|
744
|
+
width: 22px;
|
|
749
745
|
}
|
|
750
746
|
|
|
751
747
|
.e-small .e-multi-select-wrapper {
|
|
@@ -764,7 +760,7 @@ ejs-multiselect {
|
|
|
764
760
|
|
|
765
761
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
766
762
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
767
|
-
margin-top: -
|
|
763
|
+
margin-top: -2.8em;
|
|
768
764
|
}
|
|
769
765
|
|
|
770
766
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -774,7 +770,7 @@ ejs-multiselect {
|
|
|
774
770
|
|
|
775
771
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
776
772
|
height: 26px;
|
|
777
|
-
width:
|
|
773
|
+
width: 26px;
|
|
778
774
|
}
|
|
779
775
|
|
|
780
776
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -1028,10 +1024,6 @@ ejs-multiselect {
|
|
|
1028
1024
|
display: none;
|
|
1029
1025
|
}
|
|
1030
1026
|
|
|
1031
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1032
|
-
margin-right: 0;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
1027
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1036
1028
|
color: #666;
|
|
1037
1029
|
}
|
|
@@ -1226,10 +1218,6 @@ ejs-multiselect {
|
|
|
1226
1218
|
left: 7px;
|
|
1227
1219
|
}
|
|
1228
1220
|
|
|
1229
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1230
|
-
left: -35px;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
1221
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1234
1222
|
height: 26px;
|
|
1235
1223
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/fabric-definition.scss';
|
|
6
|
+
@import '../drop-down-base/fabric-definition.scss';
|
|
7
|
+
@import 'fabric-definition.scss';
|
|
8
|
+
@import 'icons/fabric.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -385,10 +385,6 @@
|
|
|
385
385
|
width: 14px;
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
389
|
-
margin: 0 0 0;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
388
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
393
389
|
margin: 3px 0 0;
|
|
394
390
|
}
|
|
@@ -1146,10 +1142,6 @@ ejs-multiselect {
|
|
|
1146
1142
|
display: none;
|
|
1147
1143
|
}
|
|
1148
1144
|
|
|
1149
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1150
|
-
margin-right: 0;
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
1145
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1154
1146
|
color: #f3f2f1;
|
|
1155
1147
|
}
|
|
@@ -1354,7 +1346,7 @@ ejs-multiselect {
|
|
|
1354
1346
|
}
|
|
1355
1347
|
|
|
1356
1348
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1357
|
-
left:
|
|
1349
|
+
left: 6px;
|
|
1358
1350
|
top: 2px;
|
|
1359
1351
|
font-size: 8px;
|
|
1360
1352
|
}
|
|
@@ -1363,10 +1355,6 @@ ejs-multiselect {
|
|
|
1363
1355
|
left: 0;
|
|
1364
1356
|
}
|
|
1365
1357
|
|
|
1366
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1367
|
-
left: 0;
|
|
1368
|
-
}
|
|
1369
|
-
|
|
1370
1358
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
1371
1359
|
left: -2px;
|
|
1372
1360
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/fluent-dark-definition.scss';
|
|
6
|
+
@import '../drop-down-base/fluent-dark-definition.scss';
|
|
7
|
+
@import 'fluent-dark-definition.scss';
|
|
8
|
+
@import 'icons/fluent-dark.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -385,10 +385,6 @@
|
|
|
385
385
|
width: 14px;
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
389
|
-
margin: 0 0 0;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
388
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
393
389
|
margin: 3px 0 0;
|
|
394
390
|
}
|
|
@@ -1146,10 +1142,6 @@ ejs-multiselect {
|
|
|
1146
1142
|
display: none;
|
|
1147
1143
|
}
|
|
1148
1144
|
|
|
1149
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1150
|
-
margin-right: 0;
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
1145
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1154
1146
|
color: #201f1e;
|
|
1155
1147
|
}
|
|
@@ -1354,7 +1346,7 @@ ejs-multiselect {
|
|
|
1354
1346
|
}
|
|
1355
1347
|
|
|
1356
1348
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1357
|
-
left:
|
|
1349
|
+
left: 6px;
|
|
1358
1350
|
top: 2px;
|
|
1359
1351
|
font-size: 8px;
|
|
1360
1352
|
}
|
|
@@ -1363,10 +1355,6 @@ ejs-multiselect {
|
|
|
1363
1355
|
left: 0;
|
|
1364
1356
|
}
|
|
1365
1357
|
|
|
1366
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1367
|
-
left: 0;
|
|
1368
|
-
}
|
|
1369
|
-
|
|
1370
1358
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
1371
1359
|
left: -2px;
|
|
1372
1360
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fluent-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/fluent-definition.scss';
|
|
6
|
+
@import '../drop-down-base/fluent-definition.scss';
|
|
7
|
+
@import 'fluent-definition.scss';
|
|
8
|
+
@import 'icons/fluent.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -409,10 +409,6 @@
|
|
|
409
409
|
width: 26px;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
413
|
-
margin: 0;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
412
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
417
413
|
margin: 3px 0 0;
|
|
418
414
|
}
|
|
@@ -1129,10 +1125,6 @@ ejs-multiselect {
|
|
|
1129
1125
|
display: none;
|
|
1130
1126
|
}
|
|
1131
1127
|
|
|
1132
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1133
|
-
margin-right: 0;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
1128
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1137
1129
|
color: #fff;
|
|
1138
1130
|
}
|
|
@@ -1335,10 +1327,6 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
1335
1327
|
left: 7px;
|
|
1336
1328
|
}
|
|
1337
1329
|
|
|
1338
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1339
|
-
left: 7px;
|
|
1340
|
-
}
|
|
1341
|
-
|
|
1342
1330
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1343
1331
|
height: 26px;
|
|
1344
1332
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-light-definition.scss';
|
|
6
|
+
@import '../drop-down-base/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'highcontrast-light-definition.scss';
|
|
8
|
+
@import 'icons/highcontrast-light.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
153
153
|
content: "\e7a7";
|
|
154
154
|
cursor: pointer;
|
|
155
|
-
left:
|
|
155
|
+
left: 8px;
|
|
156
156
|
position: relative;
|
|
157
157
|
top: 8px;
|
|
158
158
|
}
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
161
161
|
content: "\e7a7";
|
|
162
162
|
cursor: pointer;
|
|
163
|
-
left:
|
|
163
|
+
left: 10px;
|
|
164
164
|
position: relative;
|
|
165
165
|
top: 10px;
|
|
166
166
|
}
|
|
@@ -407,12 +407,8 @@
|
|
|
407
407
|
float: right;
|
|
408
408
|
font-family: "e-icons";
|
|
409
409
|
height: 26px;
|
|
410
|
-
margin:
|
|
411
|
-
width:
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
415
|
-
margin: 8px 0 8px 20px;
|
|
410
|
+
margin: 0;
|
|
411
|
+
width: 26px;
|
|
416
412
|
}
|
|
417
413
|
|
|
418
414
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -427,7 +423,7 @@
|
|
|
427
423
|
position: absolute;
|
|
428
424
|
right: 0;
|
|
429
425
|
top: 100%;
|
|
430
|
-
width:
|
|
426
|
+
width: 30px;
|
|
431
427
|
}
|
|
432
428
|
|
|
433
429
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -848,7 +844,7 @@ ejs-multiselect {
|
|
|
848
844
|
|
|
849
845
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
850
846
|
height: 22px;
|
|
851
|
-
width:
|
|
847
|
+
width: 22px;
|
|
852
848
|
}
|
|
853
849
|
|
|
854
850
|
.e-small .e-multi-select-wrapper {
|
|
@@ -867,7 +863,7 @@ ejs-multiselect {
|
|
|
867
863
|
|
|
868
864
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
869
865
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
870
|
-
margin-top: -
|
|
866
|
+
margin-top: -2.9em;
|
|
871
867
|
}
|
|
872
868
|
|
|
873
869
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -877,7 +873,7 @@ ejs-multiselect {
|
|
|
877
873
|
|
|
878
874
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
879
875
|
height: 26px;
|
|
880
|
-
width:
|
|
876
|
+
width: 26px;
|
|
881
877
|
}
|
|
882
878
|
|
|
883
879
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -896,7 +892,7 @@ ejs-multiselect {
|
|
|
896
892
|
|
|
897
893
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
898
894
|
.e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
899
|
-
margin-top: -3.
|
|
895
|
+
margin-top: -3.2em;
|
|
900
896
|
right: 0;
|
|
901
897
|
}
|
|
902
898
|
|
|
@@ -1131,10 +1127,6 @@ ejs-multiselect {
|
|
|
1131
1127
|
display: none;
|
|
1132
1128
|
}
|
|
1133
1129
|
|
|
1134
|
-
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1135
|
-
margin-right: 0;
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
1130
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1139
1131
|
color: #000;
|
|
1140
1132
|
}
|
|
@@ -1337,10 +1329,6 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
1337
1329
|
left: 7px;
|
|
1338
1330
|
}
|
|
1339
1331
|
|
|
1340
|
-
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1341
|
-
left: -35px;
|
|
1342
|
-
}
|
|
1343
|
-
|
|
1344
1332
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1345
1333
|
height: 26px;
|
|
1346
1334
|
}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-definition.scss';
|
|
6
|
+
@import '../drop-down-base/highcontrast-definition.scss';
|
|
7
|
+
@import 'highcontrast-definition.scss';
|
|
8
|
+
@import 'icons/highcontrast.scss';
|
|
9
|
+
@import 'all.scss';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@include export-module('multiselect-bootstrap-icons') {
|
|
2
|
+
.e-multiselect.e-input-group .e-ddl-icon::before {
|
|
3
|
+
content: '\e969';
|
|
4
|
+
font-family: 'e-icons';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
8
|
+
content: '\e842';
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
left: $ddl-chip-close-left;
|
|
11
|
+
position: relative;
|
|
12
|
+
top: $ddl-chip-close-top;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-multi-select-wrapper .e-close-hooker::before {
|
|
16
|
+
content: '\e842';
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
left: $ddl-overall-close-left;
|
|
19
|
+
position: relative;
|
|
20
|
+
top: $ddl-overall-close-top;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-multiselect.e-input-group .e-ddl-disable-icon::before {
|
|
24
|
+
content: '';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@include export-module('multiselect-bootstrap-icons') {
|
|
2
|
+
.e-multiselect.e-input-group .e-ddl-icon::before {
|
|
3
|
+
content: '\e969';
|
|
4
|
+
font-family: 'e-icons';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
8
|
+
content: '\e842';
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
left: $ddl-chip-close-left;
|
|
11
|
+
position: relative;
|
|
12
|
+
top: $ddl-chip-close-top;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-multi-select-wrapper .e-close-hooker::before {
|
|
16
|
+
content: '\e842';
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
left: $ddl-overall-close-left;
|
|
19
|
+
position: relative;
|
|
20
|
+
top: $ddl-overall-close-top;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-multiselect.e-input-group .e-ddl-disable-icon::before {
|
|
24
|
+
content: '';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
@include export-module('multiselect-bootstrap4-icons') {
|
|
2
|
+
.e-multiselect.e-input-group .e-ddl-icon::before {
|
|
3
|
+
content: '\e744';
|
|
4
|
+
font-family: 'e-icons';
|
|
5
|
+
font-size: 8px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.e-bigger .e-multiselect.e-input-group .e-ddl-icon::before {
|
|
9
|
+
font-size: 10px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
13
|
+
content: '\e745';
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
left: $ddl-chip-close-left;
|
|
16
|
+
position: relative;
|
|
17
|
+
top: $ddl-chip-close-top;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e-multi-select-wrapper .e-close-hooker::before {
|
|
21
|
+
content: '\e745';
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
height: $ddl-overall-close-top;
|
|
24
|
+
left: $ddl-overall-close-left;
|
|
25
|
+
position: relative;
|
|
26
|
+
top: $ddl-overall-close-top;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-bigger .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
30
|
+
font-size: 12px;
|
|
31
|
+
top: $ddl-bigger-close-top;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-multiselect.e-input-group .e-ddl-disable-icon::before {
|
|
35
|
+
content: '';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5.scss';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@include export-module('multiselect-bootstrap5-icons') {
|
|
2
|
+
.e-multiselect.e-input-group .e-ddl-icon::before {
|
|
3
|
+
content: '\e729';
|
|
4
|
+
font-family: 'e-icons';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
8
|
+
content: '\e7e7';
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
left: $ddl-chip-close-left;
|
|
11
|
+
position: relative;
|
|
12
|
+
top: $ddl-chip-close-top;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-multi-select-wrapper .e-close-hooker::before {
|
|
16
|
+
content: '\e7e7';
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
left: $ddl-overall-close-left;
|
|
19
|
+
position: relative;
|
|
20
|
+
top: $ddl-overall-close-top;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-multiselect.e-input-group .e-ddl-disable-icon::before {
|
|
24
|
+
content: '';
|
|
25
|
+
}
|
|
26
|
+
}
|