@syncfusion/ej2-angular-dropdowns 23.1.39-ngcc → 23.1.39
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 +129 -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 +129 -0
- package/esm2020/src/combo-box/combobox.module.mjs +25 -0
- package/esm2020/src/drop-down-list/dropdownlist-all.module.mjs +29 -0
- package/esm2020/src/drop-down-list/dropdownlist.component.mjs +135 -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 +116 -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 +104 -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 +135 -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 +1084 -0
- package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +1084 -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-dark-definition.scss +1 -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/material3-dark.scss +4 -1
- package/styles/auto-complete/material3.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 +8 -82
- package/styles/bootstrap.css +8 -82
- package/styles/bootstrap4.css +9 -83
- package/styles/bootstrap5-dark.css +9 -83
- package/styles/bootstrap5.css +9 -83
- 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-dark-definition.scss +1 -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/material3-dark.scss +4 -1
- package/styles/combo-box/material3.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 +83 -0
- package/styles/drop-down-base/_bootstrap-definition.scss +83 -0
- package/styles/drop-down-base/_bootstrap4-definition.scss +90 -0
- package/styles/drop-down-base/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-base/_bootstrap5-definition.scss +117 -0
- package/styles/drop-down-base/_definition.scss +23 -0
- package/styles/drop-down-base/_fabric-dark-definition.scss +86 -0
- package/styles/drop-down-base/_fabric-definition.scss +84 -0
- package/styles/drop-down-base/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-base/_fluent-definition.scss +121 -0
- package/styles/drop-down-base/_fusionnew-definition.scss +117 -0
- package/styles/drop-down-base/_highcontrast-definition.scss +105 -0
- package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -0
- package/styles/drop-down-base/_layout.scss +195 -0
- package/styles/drop-down-base/_material-dark-definition.scss +86 -0
- package/styles/drop-down-base/_material-definition.scss +85 -0
- package/styles/drop-down-base/_material3-dark-definition.scss +1 -0
- package/styles/drop-down-base/_material3-definition.scss +87 -0
- package/styles/drop-down-base/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-base/_tailwind-definition.scss +129 -0
- package/styles/drop-down-base/_theme.scss +391 -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.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.scss +3 -1
- package/styles/drop-down-base/material.scss +3 -1
- package/styles/drop-down-base/material3-dark.scss +3 -1
- package/styles/drop-down-base/material3.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 +310 -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-dark-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +180 -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 +9 -1
- package/styles/drop-down-list/bootstrap.scss +9 -1
- package/styles/drop-down-list/bootstrap4.scss +9 -1
- package/styles/drop-down-list/bootstrap5-dark.scss +9 -1
- package/styles/drop-down-list/bootstrap5.scss +9 -1
- package/styles/drop-down-list/fabric-dark.scss +9 -1
- package/styles/drop-down-list/fabric.scss +9 -1
- package/styles/drop-down-list/fluent-dark.scss +9 -1
- package/styles/drop-down-list/fluent.scss +9 -1
- package/styles/drop-down-list/highcontrast-light.scss +9 -1
- package/styles/drop-down-list/highcontrast.scss +9 -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-dark.scss +1 -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 +9 -1
- package/styles/drop-down-list/material.scss +9 -1
- package/styles/drop-down-list/material3-dark.scss +9 -1
- package/styles/drop-down-list/material3.scss +9 -1
- package/styles/drop-down-list/tailwind-dark.scss +9 -1
- package/styles/drop-down-list/tailwind.scss +9 -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 +1412 -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-dark-definition.scss +1 -0
- package/styles/drop-down-tree/_material3-definition.scss +76 -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 +132 -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.scss +9 -1
- 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-dark.scss +1 -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/material3-dark.scss +9 -1
- package/styles/drop-down-tree/material3.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 +9 -83
- package/styles/fabric.css +9 -83
- package/styles/fluent-dark.css +8 -82
- package/styles/fluent.css +8 -82
- package/styles/highcontrast-light.css +8 -82
- package/styles/highcontrast.css +8 -82
- package/styles/list-box/_all.scss +2 -0
- package/styles/list-box/_bootstrap-dark-definition.scss +122 -0
- package/styles/list-box/_bootstrap-definition.scss +115 -0
- package/styles/list-box/_bootstrap4-definition.scss +120 -0
- package/styles/list-box/_bootstrap5-dark-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +118 -0
- package/styles/list-box/_fabric-dark-definition.scss +122 -0
- package/styles/list-box/_fabric-definition.scss +115 -0
- package/styles/list-box/_fluent-dark-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +118 -0
- package/styles/list-box/_fusionnew-definition.scss +111 -0
- package/styles/list-box/_highcontrast-definition.scss +115 -0
- package/styles/list-box/_highcontrast-light-definition.scss +122 -0
- package/styles/list-box/_layout.scss +542 -0
- package/styles/list-box/_material-dark-definition.scss +122 -0
- package/styles/list-box/_material-definition.scss +115 -0
- package/styles/list-box/_material3-dark-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +117 -0
- package/styles/list-box/_tailwind-dark-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +117 -0
- package/styles/list-box/_theme.scss +317 -0
- package/styles/list-box/bootstrap-dark.css +7 -70
- package/styles/list-box/bootstrap-dark.scss +5 -1
- package/styles/list-box/bootstrap.css +7 -70
- package/styles/list-box/bootstrap.scss +5 -1
- package/styles/list-box/bootstrap4.css +8 -71
- package/styles/list-box/bootstrap4.scss +5 -1
- package/styles/list-box/bootstrap5-dark.css +8 -71
- package/styles/list-box/bootstrap5-dark.scss +5 -1
- package/styles/list-box/bootstrap5.css +8 -71
- package/styles/list-box/bootstrap5.scss +5 -1
- package/styles/list-box/fabric-dark.css +7 -70
- package/styles/list-box/fabric-dark.scss +5 -1
- package/styles/list-box/fabric.css +7 -70
- package/styles/list-box/fabric.scss +5 -1
- package/styles/list-box/fluent-dark.css +7 -70
- package/styles/list-box/fluent-dark.scss +5 -1
- package/styles/list-box/fluent.css +7 -70
- package/styles/list-box/fluent.scss +5 -1
- package/styles/list-box/highcontrast-light.css +7 -70
- package/styles/list-box/highcontrast-light.scss +5 -1
- package/styles/list-box/highcontrast.css +7 -70
- 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-dark.scss +1 -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.css +8 -71
- package/styles/list-box/material-dark.scss +5 -1
- package/styles/list-box/material.css +8 -71
- package/styles/list-box/material.scss +5 -1
- package/styles/list-box/material3-dark.css +8 -71
- package/styles/list-box/material3-dark.scss +5 -1
- package/styles/list-box/material3.css +8 -71
- package/styles/list-box/material3.scss +5 -1
- package/styles/list-box/tailwind-dark.css +8 -71
- package/styles/list-box/tailwind-dark.scss +5 -1
- package/styles/list-box/tailwind.css +8 -71
- package/styles/list-box/tailwind.scss +5 -1
- package/styles/material-dark.css +9 -83
- package/styles/material.css +9 -83
- package/styles/material3-dark.css +9 -468
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +92 -943
- package/styles/material3.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-dark-definition.scss +1 -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/material3-dark.scss +6 -1
- package/styles/mention/material3.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 +196 -0
- package/styles/multi-select/_bootstrap-definition.scss +190 -0
- package/styles/multi-select/_bootstrap4-definition.scss +257 -0
- package/styles/multi-select/_bootstrap5-dark-definition.scss +1 -0
- package/styles/multi-select/_bootstrap5-definition.scss +227 -0
- package/styles/multi-select/_fabric-dark-definition.scss +185 -0
- package/styles/multi-select/_fabric-definition.scss +181 -0
- package/styles/multi-select/_fluent-dark-definition.scss +1 -0
- package/styles/multi-select/_fluent-definition.scss +238 -0
- package/styles/multi-select/_fusionnew-definition.scss +227 -0
- package/styles/multi-select/_highcontrast-definition.scss +296 -0
- package/styles/multi-select/_highcontrast-light-definition.scss +295 -0
- package/styles/multi-select/_layout.scss +2188 -0
- package/styles/multi-select/_material-dark-definition.scss +228 -0
- package/styles/multi-select/_material-definition.scss +221 -0
- package/styles/multi-select/_material3-dark-definition.scss +1 -0
- package/styles/multi-select/_material3-definition.scss +246 -0
- package/styles/multi-select/_tailwind-dark-definition.scss +1 -0
- package/styles/multi-select/_tailwind-definition.scss +232 -0
- package/styles/multi-select/_theme.scss +586 -0
- package/styles/multi-select/bootstrap-dark.css +1 -12
- package/styles/multi-select/bootstrap-dark.scss +9 -1
- package/styles/multi-select/bootstrap.css +1 -12
- package/styles/multi-select/bootstrap.scss +9 -1
- package/styles/multi-select/bootstrap4.css +1 -12
- package/styles/multi-select/bootstrap4.scss +9 -1
- package/styles/multi-select/bootstrap5-dark.css +1 -12
- package/styles/multi-select/bootstrap5-dark.scss +9 -1
- package/styles/multi-select/bootstrap5.css +1 -12
- package/styles/multi-select/bootstrap5.scss +9 -1
- package/styles/multi-select/fabric-dark.css +2 -13
- package/styles/multi-select/fabric-dark.scss +9 -1
- package/styles/multi-select/fabric.css +2 -13
- package/styles/multi-select/fabric.scss +9 -1
- package/styles/multi-select/fluent-dark.css +1 -12
- package/styles/multi-select/fluent-dark.scss +9 -1
- package/styles/multi-select/fluent.css +1 -12
- package/styles/multi-select/fluent.scss +9 -1
- package/styles/multi-select/highcontrast-light.css +1 -12
- package/styles/multi-select/highcontrast-light.scss +9 -1
- package/styles/multi-select/highcontrast.css +1 -12
- 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-dark.scss +1 -0
- package/styles/multi-select/icons/_material3.scss +692 -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 +1 -12
- package/styles/multi-select/material-dark.scss +9 -1
- package/styles/multi-select/material.css +1 -12
- package/styles/multi-select/material.scss +9 -1
- package/styles/multi-select/material3-dark.css +0 -10
- package/styles/multi-select/material3-dark.scss +9 -1
- package/styles/multi-select/material3.css +0 -10
- package/styles/multi-select/material3.scss +9 -1
- package/styles/multi-select/tailwind-dark.css +1 -12
- package/styles/multi-select/tailwind-dark.scss +9 -1
- package/styles/multi-select/tailwind.css +1 -12
- package/styles/multi-select/tailwind.scss +9 -1
- package/styles/tailwind-dark.css +9 -83
- package/styles/tailwind.css +9 -83
- package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
- package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1475
- package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-dropdowns.js +0 -1390
- package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
- package/CHANGELOG.md +0 -2378
- package/dist/ej2-angular-dropdowns.umd.js +0 -1545
- 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
|
@@ -437,61 +437,6 @@
|
|
|
437
437
|
background-color: rgba(var(--color-sf-on-surface), 0.05);
|
|
438
438
|
}
|
|
439
439
|
|
|
440
|
-
:root {
|
|
441
|
-
--color-sf-black: 0, 0, 0;
|
|
442
|
-
--color-sf-white: 255, 255, 255;
|
|
443
|
-
--color-sf-primary: 208, 188, 255;
|
|
444
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
445
|
-
--color-sf-secondary: 204, 194, 220;
|
|
446
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
447
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
448
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
449
|
-
--color-sf-surface: 28, 27, 31;
|
|
450
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
451
|
-
--color-sf-background: var(--color-sf-surface);
|
|
452
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
453
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
454
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
455
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
456
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
457
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
458
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
459
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
460
|
-
--color-sf-on-background: 230, 225, 229;
|
|
461
|
-
--color-sf-outline: 147, 143, 153;
|
|
462
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
463
|
-
--color-sf-shadow: 0, 0, 0;
|
|
464
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
465
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
466
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
467
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
468
|
-
--color-sf-scrim: 0, 0, 0;
|
|
469
|
-
--color-sf-error: 242, 184, 181;
|
|
470
|
-
--color-sf-error-container: 140, 29, 24;
|
|
471
|
-
--color-sf-on-error: 96, 20, 16;
|
|
472
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
473
|
-
--color-sf-success: 83, 202, 23;
|
|
474
|
-
--color-sf-success-container: 22, 62, 2;
|
|
475
|
-
--color-sf-on-success: 13, 39, 0;
|
|
476
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
477
|
-
--color-sf-info: 71, 172, 251;
|
|
478
|
-
--color-sf-info-container: 0, 67, 120;
|
|
479
|
-
--color-sf-on-info: 0, 51, 91;
|
|
480
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
481
|
-
--color-sf-warning: 245, 180, 130;
|
|
482
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
483
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
484
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
485
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
486
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
487
|
-
--color-sf-success-text: 0, 0, 0;
|
|
488
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
489
|
-
--color-sf-info-text: 0, 0, 0;
|
|
490
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
491
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
492
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
440
|
/* stylelint-disable property-no-vendor-prefix */
|
|
496
441
|
@keyframes e-input-ripple {
|
|
497
442
|
100% {
|
|
@@ -928,61 +873,6 @@ ejs-dropdownlist {
|
|
|
928
873
|
color: rgba(var(--color-sf-on-surface));
|
|
929
874
|
}
|
|
930
875
|
|
|
931
|
-
:root {
|
|
932
|
-
--color-sf-black: 0, 0, 0;
|
|
933
|
-
--color-sf-white: 255, 255, 255;
|
|
934
|
-
--color-sf-primary: 208, 188, 255;
|
|
935
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
936
|
-
--color-sf-secondary: 204, 194, 220;
|
|
937
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
938
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
939
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
940
|
-
--color-sf-surface: 28, 27, 31;
|
|
941
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
942
|
-
--color-sf-background: var(--color-sf-surface);
|
|
943
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
944
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
945
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
946
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
947
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
948
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
949
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
950
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
951
|
-
--color-sf-on-background: 230, 225, 229;
|
|
952
|
-
--color-sf-outline: 147, 143, 153;
|
|
953
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
954
|
-
--color-sf-shadow: 0, 0, 0;
|
|
955
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
956
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
957
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
958
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
959
|
-
--color-sf-scrim: 0, 0, 0;
|
|
960
|
-
--color-sf-error: 242, 184, 181;
|
|
961
|
-
--color-sf-error-container: 140, 29, 24;
|
|
962
|
-
--color-sf-on-error: 96, 20, 16;
|
|
963
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
964
|
-
--color-sf-success: 83, 202, 23;
|
|
965
|
-
--color-sf-success-container: 22, 62, 2;
|
|
966
|
-
--color-sf-on-success: 13, 39, 0;
|
|
967
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
968
|
-
--color-sf-info: 71, 172, 251;
|
|
969
|
-
--color-sf-info-container: 0, 67, 120;
|
|
970
|
-
--color-sf-on-info: 0, 51, 91;
|
|
971
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
972
|
-
--color-sf-warning: 245, 180, 130;
|
|
973
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
974
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
975
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
976
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
977
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
978
|
-
--color-sf-success-text: 0, 0, 0;
|
|
979
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
980
|
-
--color-sf-info-text: 0, 0, 0;
|
|
981
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
982
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
983
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
984
|
-
}
|
|
985
|
-
|
|
986
876
|
/* stylelint-disable property-no-vendor-prefix */
|
|
987
877
|
@keyframes e-input-ripple {
|
|
988
878
|
100% {
|
|
@@ -1382,173 +1272,7 @@ ejs-dropdownlist {
|
|
|
1382
1272
|
color: rgba(var(--color-sf-on-surface));
|
|
1383
1273
|
}
|
|
1384
1274
|
|
|
1385
|
-
|
|
1386
|
-
--color-sf-black: 0, 0, 0;
|
|
1387
|
-
--color-sf-white: 255, 255, 255;
|
|
1388
|
-
--color-sf-primary: 208, 188, 255;
|
|
1389
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1390
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1391
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1392
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1393
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1394
|
-
--color-sf-surface: 28, 27, 31;
|
|
1395
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1396
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1397
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1398
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1399
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1400
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1401
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1402
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1403
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1404
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1405
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1406
|
-
--color-sf-outline: 147, 143, 153;
|
|
1407
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1408
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1409
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1410
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1411
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1412
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1413
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1414
|
-
--color-sf-error: 242, 184, 181;
|
|
1415
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1416
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1417
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1418
|
-
--color-sf-success: 83, 202, 23;
|
|
1419
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1420
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1421
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1422
|
-
--color-sf-info: 71, 172, 251;
|
|
1423
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1424
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1425
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1426
|
-
--color-sf-warning: 245, 180, 130;
|
|
1427
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1428
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1429
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1430
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1431
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1432
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1433
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1434
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1435
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1436
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1437
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
/* stylelint-disable-line no-empty-source */
|
|
1441
|
-
:root {
|
|
1442
|
-
--color-sf-black: 0, 0, 0;
|
|
1443
|
-
--color-sf-white: 255, 255, 255;
|
|
1444
|
-
--color-sf-primary: 208, 188, 255;
|
|
1445
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1446
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1447
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1448
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1449
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1450
|
-
--color-sf-surface: 28, 27, 31;
|
|
1451
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1452
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1453
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1454
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1455
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1456
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1457
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1458
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1459
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1460
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1461
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1462
|
-
--color-sf-outline: 147, 143, 153;
|
|
1463
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1464
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1465
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1466
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1467
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1468
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1469
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1470
|
-
--color-sf-error: 242, 184, 181;
|
|
1471
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1472
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1473
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1474
|
-
--color-sf-success: 83, 202, 23;
|
|
1475
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1476
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1477
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1478
|
-
--color-sf-info: 71, 172, 251;
|
|
1479
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1480
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1481
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1482
|
-
--color-sf-warning: 245, 180, 130;
|
|
1483
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1484
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1485
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1486
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1487
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1488
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1489
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1490
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1491
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1492
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1493
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1494
|
-
}
|
|
1495
|
-
|
|
1496
|
-
/* stylelint-disable-line no-empty-source */
|
|
1497
|
-
:root {
|
|
1498
|
-
--color-sf-black: 0, 0, 0;
|
|
1499
|
-
--color-sf-white: 255, 255, 255;
|
|
1500
|
-
--color-sf-primary: 208, 188, 255;
|
|
1501
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1502
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1503
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1504
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1505
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1506
|
-
--color-sf-surface: 28, 27, 31;
|
|
1507
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1508
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1509
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1510
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1511
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1512
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1513
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1514
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1515
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1516
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1517
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1518
|
-
--color-sf-outline: 147, 143, 153;
|
|
1519
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1520
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1521
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1522
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1523
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1524
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1525
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1526
|
-
--color-sf-error: 242, 184, 181;
|
|
1527
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1528
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1529
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1530
|
-
--color-sf-success: 83, 202, 23;
|
|
1531
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1532
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1533
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1534
|
-
--color-sf-info: 71, 172, 251;
|
|
1535
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1536
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1537
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1538
|
-
--color-sf-warning: 245, 180, 130;
|
|
1539
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1540
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1541
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1542
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1543
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1544
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1545
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1546
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1547
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1548
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1549
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1275
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1552
1276
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1553
1277
|
@keyframes e-input-ripple {
|
|
1554
1278
|
100% {
|
|
@@ -2942,11 +2666,6 @@ ejs-multiselect {
|
|
|
2942
2666
|
margin-top: -1.4em;
|
|
2943
2667
|
}
|
|
2944
2668
|
|
|
2945
|
-
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2946
|
-
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2947
|
-
margin-top: -1.4em;
|
|
2948
|
-
}
|
|
2949
|
-
|
|
2950
2669
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
2951
2670
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
2952
2671
|
line-height: 40px;
|
|
@@ -2958,11 +2677,6 @@ ejs-multiselect {
|
|
|
2958
2677
|
top: 100%;
|
|
2959
2678
|
}
|
|
2960
2679
|
|
|
2961
|
-
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2962
|
-
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2963
|
-
margin-top: -1.7em;
|
|
2964
|
-
}
|
|
2965
|
-
|
|
2966
2680
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
2967
2681
|
height: 16px;
|
|
2968
2682
|
width: 16px;
|
|
@@ -4033,61 +3747,6 @@ ejs-multiselect {
|
|
|
4033
3747
|
color: #fff;
|
|
4034
3748
|
}
|
|
4035
3749
|
|
|
4036
|
-
:root {
|
|
4037
|
-
--color-sf-black: 0, 0, 0;
|
|
4038
|
-
--color-sf-white: 255, 255, 255;
|
|
4039
|
-
--color-sf-primary: 208, 188, 255;
|
|
4040
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
4041
|
-
--color-sf-secondary: 204, 194, 220;
|
|
4042
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
4043
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
4044
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
4045
|
-
--color-sf-surface: 28, 27, 31;
|
|
4046
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
4047
|
-
--color-sf-background: var(--color-sf-surface);
|
|
4048
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
4049
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
4050
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
4051
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
4052
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
4053
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
4054
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
4055
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
4056
|
-
--color-sf-on-background: 230, 225, 229;
|
|
4057
|
-
--color-sf-outline: 147, 143, 153;
|
|
4058
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
4059
|
-
--color-sf-shadow: 0, 0, 0;
|
|
4060
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
4061
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
4062
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
4063
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
4064
|
-
--color-sf-scrim: 0, 0, 0;
|
|
4065
|
-
--color-sf-error: 242, 184, 181;
|
|
4066
|
-
--color-sf-error-container: 140, 29, 24;
|
|
4067
|
-
--color-sf-on-error: 96, 20, 16;
|
|
4068
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
4069
|
-
--color-sf-success: 83, 202, 23;
|
|
4070
|
-
--color-sf-success-container: 22, 62, 2;
|
|
4071
|
-
--color-sf-on-success: 13, 39, 0;
|
|
4072
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
4073
|
-
--color-sf-info: 71, 172, 251;
|
|
4074
|
-
--color-sf-info-container: 0, 67, 120;
|
|
4075
|
-
--color-sf-on-info: 0, 51, 91;
|
|
4076
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
4077
|
-
--color-sf-warning: 245, 180, 130;
|
|
4078
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
4079
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
4080
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
4081
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
4082
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
4083
|
-
--color-sf-success-text: 0, 0, 0;
|
|
4084
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
4085
|
-
--color-sf-info-text: 0, 0, 0;
|
|
4086
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
4087
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
4088
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
4089
|
-
}
|
|
4090
|
-
|
|
4091
3750
|
.e-listbox-tool .e-moveup::before {
|
|
4092
3751
|
content: "\e776";
|
|
4093
3752
|
}
|
|
@@ -4640,66 +4299,27 @@ ejs-listbox {
|
|
|
4640
4299
|
}
|
|
4641
4300
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4642
4301
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
4643
|
-
height: calc(100% - 35px)
|
|
4644
|
-
}
|
|
4645
|
-
|
|
4646
|
-
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
4647
|
-
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4648
|
-
}
|
|
4649
|
-
|
|
4650
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4651
|
-
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4302
|
+
height: calc(100% - 35px);
|
|
4652
4303
|
}
|
|
4653
4304
|
|
|
4305
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4654
4306
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4655
|
-
height: 100
|
|
4307
|
+
height: calc(100% - 48px);
|
|
4656
4308
|
}
|
|
4657
4309
|
|
|
4658
4310
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4659
4311
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4660
|
-
height: calc(100% -
|
|
4661
|
-
}
|
|
4662
|
-
|
|
4663
|
-
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4664
|
-
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4665
|
-
}
|
|
4666
|
-
|
|
4667
|
-
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
4668
|
-
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4669
|
-
}
|
|
4670
|
-
|
|
4671
|
-
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
4672
|
-
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4673
|
-
}
|
|
4674
|
-
|
|
4675
|
-
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4676
|
-
height: 100%;
|
|
4312
|
+
height: calc(100% - 98px);
|
|
4677
4313
|
}
|
|
4678
4314
|
|
|
4679
4315
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4680
|
-
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
4681
|
-
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4682
|
-
}
|
|
4683
|
-
|
|
4684
4316
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
4685
|
-
height: 100
|
|
4317
|
+
height: calc(100% - 48px);
|
|
4686
4318
|
}
|
|
4687
4319
|
|
|
4688
4320
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4689
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4690
|
-
height: calc(100% - 37px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4691
|
-
}
|
|
4692
|
-
|
|
4693
|
-
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
4694
|
-
height: calc(100% - 76px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4695
|
-
}
|
|
4696
|
-
|
|
4697
|
-
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
4698
|
-
height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4699
|
-
}
|
|
4700
|
-
|
|
4701
4321
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4702
|
-
height: 100
|
|
4322
|
+
height: calc(100% - 37px);
|
|
4703
4323
|
}
|
|
4704
4324
|
|
|
4705
4325
|
.e-listbox-wrapper,
|
|
@@ -4726,13 +4346,13 @@ ejs-listbox {
|
|
|
4726
4346
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4727
4347
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
4728
4348
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
4729
|
-
height: calc(100% -
|
|
4349
|
+
height: calc(100% - 40px);
|
|
4730
4350
|
}
|
|
4731
4351
|
|
|
4732
4352
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4733
4353
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4734
4354
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4735
|
-
height: calc(100% -
|
|
4355
|
+
height: calc(100% - 79px);
|
|
4736
4356
|
}
|
|
4737
4357
|
|
|
4738
4358
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -5008,85 +4628,6 @@ ejs-listbox {
|
|
|
5008
4628
|
padding-right: 16px;
|
|
5009
4629
|
}
|
|
5010
4630
|
|
|
5011
|
-
.e-listbox-container.e-filter-list .e-list-parent {
|
|
5012
|
-
height: 100%;
|
|
5013
|
-
}
|
|
5014
|
-
|
|
5015
|
-
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5016
|
-
height: 100%;
|
|
5017
|
-
}
|
|
5018
|
-
|
|
5019
|
-
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
5020
|
-
height: 100%;
|
|
5021
|
-
}
|
|
5022
|
-
|
|
5023
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
5024
|
-
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5025
|
-
}
|
|
5026
|
-
|
|
5027
|
-
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
5028
|
-
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5029
|
-
}
|
|
5030
|
-
|
|
5031
|
-
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
5032
|
-
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5033
|
-
}
|
|
5034
|
-
|
|
5035
|
-
:root {
|
|
5036
|
-
--color-sf-black: 0, 0, 0;
|
|
5037
|
-
--color-sf-white: 255, 255, 255;
|
|
5038
|
-
--color-sf-primary: 208, 188, 255;
|
|
5039
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
5040
|
-
--color-sf-secondary: 204, 194, 220;
|
|
5041
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
5042
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
5043
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
5044
|
-
--color-sf-surface: 28, 27, 31;
|
|
5045
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
5046
|
-
--color-sf-background: var(--color-sf-surface);
|
|
5047
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
5048
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
5049
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
5050
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
5051
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
5052
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
5053
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
5054
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
5055
|
-
--color-sf-on-background: 230, 225, 229;
|
|
5056
|
-
--color-sf-outline: 147, 143, 153;
|
|
5057
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
5058
|
-
--color-sf-shadow: 0, 0, 0;
|
|
5059
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
5060
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
5061
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
5062
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
5063
|
-
--color-sf-scrim: 0, 0, 0;
|
|
5064
|
-
--color-sf-error: 242, 184, 181;
|
|
5065
|
-
--color-sf-error-container: 140, 29, 24;
|
|
5066
|
-
--color-sf-on-error: 96, 20, 16;
|
|
5067
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
5068
|
-
--color-sf-success: 83, 202, 23;
|
|
5069
|
-
--color-sf-success-container: 22, 62, 2;
|
|
5070
|
-
--color-sf-on-success: 13, 39, 0;
|
|
5071
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
5072
|
-
--color-sf-info: 71, 172, 251;
|
|
5073
|
-
--color-sf-info-container: 0, 67, 120;
|
|
5074
|
-
--color-sf-on-info: 0, 51, 91;
|
|
5075
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
5076
|
-
--color-sf-warning: 245, 180, 130;
|
|
5077
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
5078
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
5079
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
5080
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
5081
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
5082
|
-
--color-sf-success-text: 0, 0, 0;
|
|
5083
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
5084
|
-
--color-sf-info-text: 0, 0, 0;
|
|
5085
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
5086
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
5087
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
5088
|
-
}
|
|
5089
|
-
|
|
5090
4631
|
/* stylelint-disable-line no-empty-source */
|
|
5091
4632
|
/* stylelint-disable property-no-vendor-prefix */
|
|
5092
4633
|
@keyframes material-spinner-rotate {
|