@syncfusion/ej2-navigations 28.1.41 → 28.2.3-1479479
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +243 -260
- package/README.md +301 -301
- package/blazorGlobalSrc/accordion/accordion-model.d.ts +285 -0
- package/blazorGlobalSrc/accordion/accordion.d.ts +458 -0
- package/blazorGlobalSrc/accordion/accordion.js +1411 -0
- package/blazorGlobalSrc/accordion/index.d.ts +5 -0
- package/blazorGlobalSrc/accordion/index.js +4 -0
- package/blazorGlobalSrc/appbar/appbar-model.d.ts +76 -0
- package/blazorGlobalSrc/appbar/appbar.d.ts +115 -0
- package/blazorGlobalSrc/appbar/appbar.js +221 -0
- package/blazorGlobalSrc/appbar/index.d.ts +3 -0
- package/blazorGlobalSrc/appbar/index.js +2 -0
- package/blazorGlobalSrc/breadcrumb/breadcrumb-model.d.ts +170 -0
- package/blazorGlobalSrc/breadcrumb/breadcrumb.d.ts +297 -0
- package/blazorGlobalSrc/breadcrumb/breadcrumb.js +833 -0
- package/blazorGlobalSrc/breadcrumb/index.d.ts +5 -0
- package/blazorGlobalSrc/breadcrumb/index.js +4 -0
- package/blazorGlobalSrc/carousel/carousel-model.d.ts +282 -0
- package/blazorGlobalSrc/carousel/carousel.d.ts +439 -0
- package/blazorGlobalSrc/carousel/carousel.js +1353 -0
- package/blazorGlobalSrc/carousel/index.d.ts +3 -0
- package/blazorGlobalSrc/carousel/index.js +2 -0
- package/blazorGlobalSrc/common/h-scroll-model.d.ts +16 -0
- package/blazorGlobalSrc/common/h-scroll.d.ts +105 -0
- package/blazorGlobalSrc/common/h-scroll.js +499 -0
- package/blazorGlobalSrc/common/index.d.ts +9 -0
- package/blazorGlobalSrc/common/index.js +8 -0
- package/blazorGlobalSrc/common/menu-base-model.d.ts +308 -0
- package/blazorGlobalSrc/common/menu-base.d.ts +553 -0
- package/blazorGlobalSrc/common/menu-base.js +2502 -0
- package/blazorGlobalSrc/common/menu-scroll.d.ts +29 -0
- package/blazorGlobalSrc/common/menu-scroll.js +103 -0
- package/blazorGlobalSrc/common/v-scroll-model.d.ts +16 -0
- package/blazorGlobalSrc/common/v-scroll.d.ts +106 -0
- package/blazorGlobalSrc/common/v-scroll.js +471 -0
- package/blazorGlobalSrc/context-menu/context-menu-model.d.ts +47 -0
- package/blazorGlobalSrc/context-menu/context-menu.d.ts +101 -0
- package/blazorGlobalSrc/context-menu/context-menu.js +143 -0
- package/blazorGlobalSrc/context-menu/index.d.ts +5 -0
- package/blazorGlobalSrc/context-menu/index.js +4 -0
- package/blazorGlobalSrc/global.js +1 -0
- package/blazorGlobalSrc/index.d.ts +16 -0
- package/blazorGlobalSrc/index.js +16 -0
- package/blazorGlobalSrc/menu/index.d.ts +5 -0
- package/blazorGlobalSrc/menu/index.js +4 -0
- package/blazorGlobalSrc/menu/menu-model.d.ts +70 -0
- package/blazorGlobalSrc/menu/menu.d.ts +127 -0
- package/blazorGlobalSrc/menu/menu.js +288 -0
- package/blazorGlobalSrc/sidebar/index.d.ts +5 -0
- package/blazorGlobalSrc/sidebar/index.js +4 -0
- package/blazorGlobalSrc/sidebar/sidebar-model.d.ts +200 -0
- package/blazorGlobalSrc/sidebar/sidebar.d.ts +335 -0
- package/blazorGlobalSrc/sidebar/sidebar.js +729 -0
- package/blazorGlobalSrc/stepper/index.d.ts +3 -0
- package/blazorGlobalSrc/stepper/index.js +2 -0
- package/blazorGlobalSrc/stepper/stepper-model.d.ts +159 -0
- package/blazorGlobalSrc/stepper/stepper.d.ts +381 -0
- package/blazorGlobalSrc/stepper/stepper.js +1305 -0
- package/blazorGlobalSrc/stepper-base/index.d.ts +5 -0
- package/blazorGlobalSrc/stepper-base/index.js +4 -0
- package/blazorGlobalSrc/stepper-base/stepper-base-model.d.ts +121 -0
- package/blazorGlobalSrc/stepper-base/stepper-base.d.ts +184 -0
- package/blazorGlobalSrc/stepper-base/stepper-base.js +230 -0
- package/blazorGlobalSrc/tab/index.d.ts +5 -0
- package/blazorGlobalSrc/tab/index.js +4 -0
- package/blazorGlobalSrc/tab/tab-model.d.ts +408 -0
- package/blazorGlobalSrc/tab/tab.d.ts +715 -0
- package/blazorGlobalSrc/tab/tab.js +2564 -0
- package/blazorGlobalSrc/toolbar/index.d.ts +5 -0
- package/blazorGlobalSrc/toolbar/index.js +4 -0
- package/blazorGlobalSrc/toolbar/toolbar-model.d.ts +287 -0
- package/blazorGlobalSrc/toolbar/toolbar.d.ts +522 -0
- package/blazorGlobalSrc/toolbar/toolbar.js +2408 -0
- package/blazorGlobalSrc/treeview/index.d.ts +5 -0
- package/blazorGlobalSrc/treeview/index.js +4 -0
- package/blazorGlobalSrc/treeview/treeview-model.d.ts +630 -0
- package/blazorGlobalSrc/treeview/treeview.d.ts +1509 -0
- package/blazorGlobalSrc/treeview/treeview.js +5766 -0
- package/dist/ej2-navigations.min.js +1 -10
- package/dist/ej2-navigations.umd.min.js +1 -10
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +107 -96
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +301 -290
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +1 -10
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/undefined +285 -0
- package/license +10 -10
- package/package.json +166 -166
- package/src/accordion/accordion-model.d.ts +199 -199
- package/src/accordion/accordion.js +19 -19
- package/src/appbar/appbar-model.d.ts +51 -51
- package/src/appbar/appbar.js +19 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +114 -114
- package/src/breadcrumb/breadcrumb.js +19 -19
- package/src/carousel/carousel-model.d.ts +204 -204
- package/src/carousel/carousel.js +19 -19
- package/src/common/h-scroll-model.d.ts +6 -6
- package/src/common/h-scroll.js +19 -19
- package/src/common/menu-base-model.d.ts +234 -234
- package/src/common/menu-base.js +26 -19
- package/src/common/v-scroll-model.d.ts +6 -6
- package/src/common/v-scroll.js +19 -19
- package/src/context-menu/context-menu-model.d.ts +29 -29
- package/src/context-menu/context-menu.js +19 -19
- package/src/menu/menu-model.d.ts +45 -45
- package/src/menu/menu.js +19 -19
- package/src/sidebar/sidebar-model.d.ts +189 -189
- package/src/sidebar/sidebar.js +19 -19
- package/src/stepper/stepper.js +19 -19
- package/src/stepper-base/stepper-base.js +19 -19
- package/src/tab/tab-model.d.ts +305 -305
- package/src/tab/tab.js +19 -19
- package/src/toolbar/toolbar-model.d.ts +209 -209
- package/src/toolbar/toolbar.js +19 -19
- package/src/treeview/treeview-model.d.ts +520 -520
- package/src/treeview/treeview.d.ts +2 -1
- package/src/treeview/treeview.js +28 -24
- package/styles/accordion/_all.scss +2 -2
- package/styles/accordion/_bds-definition.scss +167 -167
- package/styles/accordion/_bigger.scss +121 -121
- package/styles/accordion/_bootstrap-dark-definition.scss +169 -167
- package/styles/accordion/_bootstrap-definition.scss +167 -167
- package/styles/accordion/_bootstrap4-definition.scss +177 -175
- package/styles/accordion/_bootstrap5-definition.scss +168 -168
- package/styles/accordion/_bootstrap5.3-definition.scss +168 -168
- package/styles/accordion/_fabric-dark-definition.scss +171 -171
- package/styles/accordion/_fabric-definition.scss +171 -171
- package/styles/accordion/_fluent-definition.scss +168 -168
- package/styles/accordion/_fluent2-definition.scss +167 -167
- package/styles/accordion/_fusionnew-definition.scss +168 -168
- package/styles/accordion/_highcontrast-definition.scss +193 -193
- package/styles/accordion/_highcontrast-light-definition.scss +193 -193
- package/styles/accordion/_layout.scss +236 -236
- package/styles/accordion/_material-dark-definition.scss +171 -171
- package/styles/accordion/_material-definition.scss +165 -165
- package/styles/accordion/_material3-definition.scss +168 -168
- package/styles/accordion/_tailwind-definition.scss +167 -167
- package/styles/accordion/_tailwind3-definition.scss +168 -168
- package/styles/accordion/_theme.scss +418 -418
- package/styles/accordion/bootstrap-dark.css +12 -12
- package/styles/accordion/bootstrap4.css +4 -4
- package/styles/accordion/bootstrap5-dark.css +37 -37
- package/styles/accordion/bootstrap5.css +16 -16
- package/styles/accordion/fabric.css +11 -11
- package/styles/accordion/icons/_bds.scss +15 -15
- package/styles/accordion/icons/_bootstrap-dark.scss +15 -15
- package/styles/accordion/icons/_bootstrap.scss +15 -15
- package/styles/accordion/icons/_bootstrap4.scss +15 -15
- package/styles/accordion/icons/_bootstrap5.3.scss +15 -15
- package/styles/accordion/icons/_bootstrap5.scss +15 -15
- package/styles/accordion/icons/_fabric-dark.scss +15 -15
- package/styles/accordion/icons/_fabric.scss +15 -15
- package/styles/accordion/icons/_fluent.scss +15 -15
- package/styles/accordion/icons/_fluent2.scss +15 -15
- package/styles/accordion/icons/_fusionnew.scss +15 -15
- package/styles/accordion/icons/_highcontrast-light.scss +15 -15
- package/styles/accordion/icons/_highcontrast.scss +15 -15
- package/styles/accordion/icons/_material-dark.scss +15 -15
- package/styles/accordion/icons/_material.scss +15 -15
- package/styles/accordion/icons/_material3.scss +15 -15
- package/styles/accordion/icons/_tailwind.scss +15 -15
- package/styles/accordion/icons/_tailwind3.scss +15 -15
- package/styles/accordion/material3-dark.scss +1 -1
- package/styles/accordion/material3.scss +1 -1
- package/styles/accordion/tailwind-dark.css +2 -2
- package/styles/appbar/_all.scss +2 -2
- package/styles/appbar/_bds-definition.scss +24 -24
- package/styles/appbar/_bigger.scss +15 -15
- package/styles/appbar/_bootstrap-dark-definition.scss +6 -6
- package/styles/appbar/_bootstrap-definition.scss +6 -6
- package/styles/appbar/_bootstrap4-definition.scss +6 -6
- package/styles/appbar/_bootstrap5-definition.scss +6 -6
- package/styles/appbar/_bootstrap5.3-definition.scss +6 -6
- package/styles/appbar/_fabric-dark-definition.scss +6 -6
- package/styles/appbar/_fabric-definition.scss +6 -6
- package/styles/appbar/_fluent-definition.scss +6 -6
- package/styles/appbar/_fluent2-definition.scss +23 -23
- package/styles/appbar/_fusionnew-definition.scss +6 -6
- package/styles/appbar/_highcontrast-definition.scss +6 -6
- package/styles/appbar/_highcontrast-light-definition.scss +6 -6
- package/styles/appbar/_layout.scss +76 -76
- package/styles/appbar/_material-dark-definition.scss +6 -6
- package/styles/appbar/_material-definition.scss +6 -6
- package/styles/appbar/_material3-definition.scss +6 -6
- package/styles/appbar/_tailwind-definition.scss +6 -6
- package/styles/appbar/_tailwind3-definition.scss +6 -6
- package/styles/appbar/_theme.scss +216 -216
- package/styles/appbar/material3-dark.scss +1 -1
- package/styles/appbar/material3.scss +1 -1
- package/styles/bds-lite.css +70 -5
- package/styles/bds.css +72 -7
- package/styles/bootstrap-dark-lite.css +120 -55
- package/styles/bootstrap-dark.css +124 -59
- package/styles/bootstrap-lite.css +72 -7
- package/styles/bootstrap.css +76 -11
- package/styles/bootstrap4-lite.css +153 -88
- package/styles/bootstrap4.css +156 -91
- package/styles/bootstrap5-dark-lite.css +288 -229
- package/styles/bootstrap5-dark.css +291 -232
- package/styles/bootstrap5-lite.css +150 -91
- package/styles/bootstrap5.3-lite.css +88 -27
- package/styles/bootstrap5.3.css +96 -29
- package/styles/bootstrap5.css +153 -94
- package/styles/breadcrumb/_all.scss +2 -2
- package/styles/breadcrumb/_bds-definition.scss +60 -60
- package/styles/breadcrumb/_bigger.scss +168 -166
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -54
- package/styles/breadcrumb/_bootstrap-definition.scss +54 -54
- package/styles/breadcrumb/_bootstrap4-definition.scss +56 -54
- package/styles/breadcrumb/_bootstrap5-definition.scss +65 -63
- package/styles/breadcrumb/_bootstrap5.3-definition.scss +61 -61
- package/styles/breadcrumb/_fabric-dark-definition.scss +59 -59
- package/styles/breadcrumb/_fabric-definition.scss +59 -59
- package/styles/breadcrumb/_fluent-definition.scss +63 -63
- package/styles/breadcrumb/_fluent2-definition.scss +61 -61
- package/styles/breadcrumb/_fusionnew-definition.scss +65 -59
- package/styles/breadcrumb/_highcontrast-definition.scss +61 -61
- package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -61
- package/styles/breadcrumb/_layout.scss +465 -449
- package/styles/breadcrumb/_material-dark-definition.scss +50 -50
- package/styles/breadcrumb/_material-definition.scss +50 -50
- package/styles/breadcrumb/_material3-definition.scss +60 -60
- package/styles/breadcrumb/_tailwind-definition.scss +60 -60
- package/styles/breadcrumb/_tailwind3-definition.scss +61 -61
- package/styles/breadcrumb/_theme.scss +296 -296
- package/styles/breadcrumb/bds.css +15 -0
- package/styles/breadcrumb/bootstrap-dark.css +17 -2
- package/styles/breadcrumb/bootstrap.css +15 -0
- package/styles/breadcrumb/bootstrap4.css +19 -4
- package/styles/breadcrumb/bootstrap5-dark.css +27 -12
- package/styles/breadcrumb/bootstrap5.3.css +15 -0
- package/styles/breadcrumb/bootstrap5.css +18 -3
- package/styles/breadcrumb/fabric-dark.css +18 -3
- package/styles/breadcrumb/fabric.css +15 -0
- package/styles/breadcrumb/fluent-dark.css +15 -0
- package/styles/breadcrumb/fluent.css +15 -0
- package/styles/breadcrumb/fluent2.css +15 -0
- package/styles/breadcrumb/highcontrast-light.css +15 -0
- package/styles/breadcrumb/highcontrast.css +15 -0
- package/styles/breadcrumb/icons/_bds.scss +23 -23
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +12 -12
- package/styles/breadcrumb/icons/_bootstrap.scss +12 -12
- package/styles/breadcrumb/icons/_bootstrap4.scss +12 -12
- package/styles/breadcrumb/icons/_bootstrap5.3.scss +23 -23
- package/styles/breadcrumb/icons/_bootstrap5.scss +23 -23
- package/styles/breadcrumb/icons/_fabric-dark.scss +12 -12
- package/styles/breadcrumb/icons/_fabric.scss +12 -12
- package/styles/breadcrumb/icons/_fluent.scss +23 -23
- package/styles/breadcrumb/icons/_fluent2.scss +23 -23
- package/styles/breadcrumb/icons/_fusionnew.scss +23 -23
- package/styles/breadcrumb/icons/_highcontrast-light.scss +12 -12
- package/styles/breadcrumb/icons/_highcontrast.scss +12 -12
- package/styles/breadcrumb/icons/_material-dark.scss +23 -23
- package/styles/breadcrumb/icons/_material.scss +23 -23
- package/styles/breadcrumb/icons/_material3.scss +12 -12
- package/styles/breadcrumb/icons/_tailwind-dark.scss +23 -23
- package/styles/breadcrumb/icons/_tailwind.scss +23 -23
- package/styles/breadcrumb/icons/_tailwind3.scss +23 -23
- package/styles/breadcrumb/material-dark.css +15 -0
- package/styles/breadcrumb/material.css +15 -0
- package/styles/breadcrumb/material3-dark.css +15 -0
- package/styles/breadcrumb/material3-dark.scss +1 -1
- package/styles/breadcrumb/material3.css +15 -0
- package/styles/breadcrumb/material3.scss +1 -1
- package/styles/breadcrumb/tailwind-dark.css +15 -0
- package/styles/breadcrumb/tailwind.css +15 -0
- package/styles/breadcrumb/tailwind3.css +15 -0
- package/styles/carousel/_all.scss +2 -2
- package/styles/carousel/_bds-definition.scss +20 -20
- package/styles/carousel/_bootstrap-dark-definition.scss +20 -20
- package/styles/carousel/_bootstrap-definition.scss +20 -20
- package/styles/carousel/_bootstrap4-definition.scss +20 -20
- package/styles/carousel/_bootstrap5-definition.scss +20 -20
- package/styles/carousel/_bootstrap5.3-definition.scss +20 -20
- package/styles/carousel/_fabric-dark-definition.scss +20 -20
- package/styles/carousel/_fabric-definition.scss +20 -20
- package/styles/carousel/_fluent-definition.scss +20 -20
- package/styles/carousel/_fluent2-definition.scss +23 -23
- package/styles/carousel/_fusionnew-definition.scss +20 -20
- package/styles/carousel/_highcontrast-definition.scss +20 -20
- package/styles/carousel/_highcontrast-light-definition.scss +20 -20
- package/styles/carousel/_layout.scss +257 -257
- package/styles/carousel/_material-dark-definition.scss +20 -20
- package/styles/carousel/_material-definition.scss +20 -20
- package/styles/carousel/_material3-definition.scss +21 -21
- package/styles/carousel/_tailwind-definition.scss +20 -20
- package/styles/carousel/_tailwind3-definition.scss +24 -24
- package/styles/carousel/_theme.scss +108 -108
- package/styles/carousel/icons/_bds.scss +30 -30
- package/styles/carousel/icons/_bootstrap-dark.scss +30 -30
- package/styles/carousel/icons/_bootstrap.scss +30 -30
- package/styles/carousel/icons/_bootstrap4.scss +30 -30
- package/styles/carousel/icons/_bootstrap5.3.scss +30 -30
- package/styles/carousel/icons/_bootstrap5.scss +30 -30
- package/styles/carousel/icons/_fabric-dark.scss +30 -30
- package/styles/carousel/icons/_fabric.scss +30 -30
- package/styles/carousel/icons/_fluent.scss +30 -30
- package/styles/carousel/icons/_fluent2.scss +30 -30
- package/styles/carousel/icons/_fusionnew.scss +30 -30
- package/styles/carousel/icons/_highcontrast-light.scss +30 -30
- package/styles/carousel/icons/_highcontrast.scss +30 -30
- package/styles/carousel/icons/_material-dark.scss +30 -30
- package/styles/carousel/icons/_material.scss +30 -30
- package/styles/carousel/icons/_material3.scss +30 -30
- package/styles/carousel/icons/_tailwind.scss +30 -30
- package/styles/carousel/icons/_tailwind3.scss +30 -30
- package/styles/carousel/material3-dark.scss +1 -1
- package/styles/carousel/material3.scss +1 -1
- package/styles/context-menu/_all.scss +2 -2
- package/styles/context-menu/_bds-definition.scss +67 -67
- package/styles/context-menu/_bigger.scss +111 -111
- package/styles/context-menu/_bootstrap-dark-definition.scss +50 -50
- package/styles/context-menu/_bootstrap-definition.scss +50 -50
- package/styles/context-menu/_bootstrap4-definition.scss +52 -50
- package/styles/context-menu/_bootstrap5-definition.scss +52 -52
- package/styles/context-menu/_bootstrap5.3-definition.scss +52 -52
- package/styles/context-menu/_fabric-dark-definition.scss +50 -50
- package/styles/context-menu/_fabric-definition.scss +50 -50
- package/styles/context-menu/_fluent-definition.scss +51 -51
- package/styles/context-menu/_fluent2-definition.scss +52 -52
- package/styles/context-menu/_fusionnew-definition.scss +52 -51
- package/styles/context-menu/_highcontrast-definition.scss +50 -50
- package/styles/context-menu/_highcontrast-light-definition.scss +50 -50
- package/styles/context-menu/_layout-mixin.scss +140 -140
- package/styles/context-menu/_layout.scss +179 -174
- package/styles/context-menu/_material-dark-definition.scss +50 -50
- package/styles/context-menu/_material-definition.scss +50 -50
- package/styles/context-menu/_material3-definition.scss +51 -51
- package/styles/context-menu/_tailwind-definition.scss +52 -52
- package/styles/context-menu/_tailwind3-definition.scss +55 -55
- package/styles/context-menu/_theme-mixin.scss +91 -91
- package/styles/context-menu/_theme.scss +77 -69
- package/styles/context-menu/bds.css +7 -1
- package/styles/context-menu/bootstrap-dark.css +7 -1
- package/styles/context-menu/bootstrap.css +7 -1
- package/styles/context-menu/bootstrap4.css +8 -2
- package/styles/context-menu/bootstrap5-dark.css +14 -8
- package/styles/context-menu/bootstrap5.3.css +7 -1
- package/styles/context-menu/bootstrap5.css +7 -1
- package/styles/context-menu/fabric-dark.css +7 -1
- package/styles/context-menu/fabric.css +7 -1
- package/styles/context-menu/fluent-dark.css +7 -1
- package/styles/context-menu/fluent.css +7 -1
- package/styles/context-menu/fluent2.css +7 -1
- package/styles/context-menu/highcontrast-light.css +7 -1
- package/styles/context-menu/highcontrast.css +7 -1
- package/styles/context-menu/icons/_bds.scss +31 -31
- package/styles/context-menu/icons/_bootstrap-dark.scss +31 -31
- package/styles/context-menu/icons/_bootstrap.scss +31 -31
- package/styles/context-menu/icons/_bootstrap4.scss +31 -31
- package/styles/context-menu/icons/_bootstrap5.3.scss +31 -31
- package/styles/context-menu/icons/_bootstrap5.scss +31 -31
- package/styles/context-menu/icons/_fabric-dark.scss +31 -31
- package/styles/context-menu/icons/_fabric.scss +31 -31
- package/styles/context-menu/icons/_fluent.scss +31 -31
- package/styles/context-menu/icons/_fluent2.scss +31 -31
- package/styles/context-menu/icons/_fusionnew.scss +31 -31
- package/styles/context-menu/icons/_highcontrast-light.scss +31 -31
- package/styles/context-menu/icons/_highcontrast.scss +31 -31
- package/styles/context-menu/icons/_material-dark.scss +31 -31
- package/styles/context-menu/icons/_material.scss +31 -31
- package/styles/context-menu/icons/_material3.scss +31 -31
- package/styles/context-menu/icons/_tailwind-dark.scss +31 -31
- package/styles/context-menu/icons/_tailwind.scss +31 -31
- package/styles/context-menu/icons/_tailwind3.scss +31 -31
- package/styles/context-menu/material-dark.css +8 -1
- package/styles/context-menu/material.css +7 -1
- package/styles/context-menu/material3-dark.css +8 -1
- package/styles/context-menu/material3-dark.scss +1 -1
- package/styles/context-menu/material3.css +8 -1
- package/styles/context-menu/material3.scss +1 -1
- package/styles/context-menu/tailwind-dark.css +7 -1
- package/styles/context-menu/tailwind.css +7 -1
- package/styles/context-menu/tailwind3.css +7 -1
- package/styles/fabric-dark-lite.css +76 -11
- package/styles/fabric-dark.css +78 -13
- package/styles/fabric-lite.css +108 -43
- package/styles/fabric.css +110 -45
- package/styles/fluent-dark-lite.css +88 -25
- package/styles/fluent-dark.css +91 -28
- package/styles/fluent-lite.css +88 -25
- package/styles/fluent.css +91 -28
- package/styles/fluent2-lite.css +91 -36
- package/styles/fluent2.css +93 -38
- package/styles/h-scroll/_all.scss +2 -2
- package/styles/h-scroll/_bds-definition.scss +83 -83
- package/styles/h-scroll/_bigger.scss +39 -39
- package/styles/h-scroll/_bootstrap-dark-definition.scss +57 -57
- package/styles/h-scroll/_bootstrap-definition.scss +56 -56
- package/styles/h-scroll/_bootstrap4-definition.scss +58 -56
- package/styles/h-scroll/_bootstrap5-definition.scss +83 -83
- package/styles/h-scroll/_bootstrap5.3-definition.scss +83 -83
- package/styles/h-scroll/_fabric-dark-definition.scss +58 -58
- package/styles/h-scroll/_fabric-definition.scss +55 -55
- package/styles/h-scroll/_fluent-definition.scss +83 -83
- package/styles/h-scroll/_fluent2-definition.scss +83 -83
- package/styles/h-scroll/_fusionnew-definition.scss +83 -83
- package/styles/h-scroll/_highcontrast-definition.scss +56 -56
- package/styles/h-scroll/_highcontrast-light-definition.scss +59 -59
- package/styles/h-scroll/_layout.scss +160 -160
- package/styles/h-scroll/_material-dark-definition.scss +85 -85
- package/styles/h-scroll/_material-definition.scss +82 -82
- package/styles/h-scroll/_material3-definition.scss +83 -83
- package/styles/h-scroll/_tailwind-definition.scss +83 -83
- package/styles/h-scroll/_tailwind3-definition.scss +83 -83
- package/styles/h-scroll/_theme.scss +146 -146
- package/styles/h-scroll/bds.css +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +6 -6
- package/styles/h-scroll/bootstrap5-dark.css +7 -7
- package/styles/h-scroll/bootstrap5.3.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +2 -2
- package/styles/h-scroll/fluent-dark.css +1 -1
- package/styles/h-scroll/fluent.css +1 -1
- package/styles/h-scroll/fluent2.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_bds.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap5.3.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -49
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
- package/styles/h-scroll/icons/_fabric.scss +49 -49
- package/styles/h-scroll/icons/_fluent.scss +49 -49
- package/styles/h-scroll/icons/_fluent2.scss +49 -49
- package/styles/h-scroll/icons/_fusionnew.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast.scss +49 -49
- package/styles/h-scroll/icons/_material-dark.scss +49 -49
- package/styles/h-scroll/icons/_material.scss +49 -49
- package/styles/h-scroll/icons/_material3.scss +49 -49
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/icons/_tailwind3.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/material3-dark.css +1 -1
- package/styles/h-scroll/material3-dark.scss +1 -1
- package/styles/h-scroll/material3.css +1 -1
- package/styles/h-scroll/material3.scss +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/h-scroll/tailwind3.css +1 -1
- package/styles/highcontrast-light-lite.css +70 -5
- package/styles/highcontrast-light.css +72 -7
- package/styles/highcontrast-lite.css +73 -8
- package/styles/highcontrast.css +75 -10
- package/styles/material-dark-lite.css +75 -9
- package/styles/material-dark.css +77 -11
- package/styles/material-lite.css +81 -16
- package/styles/material.css +83 -18
- package/styles/material3-dark-lite.css +81 -15
- package/styles/material3-dark.css +91 -20
- package/styles/material3-dark.scss +1 -1
- package/styles/material3-lite.css +81 -15
- package/styles/material3.css +91 -20
- package/styles/material3.scss +1 -1
- package/styles/menu/_all.scss +2 -2
- package/styles/menu/_bds-definition.scss +65 -65
- package/styles/menu/_bigger.scss +381 -381
- package/styles/menu/_bootstrap-dark-definition.scss +61 -61
- package/styles/menu/_bootstrap-definition.scss +65 -65
- package/styles/menu/_bootstrap4-definition.scss +66 -64
- package/styles/menu/_bootstrap5-definition.scss +66 -66
- package/styles/menu/_bootstrap5.3-definition.scss +66 -66
- package/styles/menu/_fabric-dark-definition.scss +61 -61
- package/styles/menu/_fabric-definition.scss +64 -64
- package/styles/menu/_fluent-definition.scss +66 -66
- package/styles/menu/_fluent2-definition.scss +67 -67
- package/styles/menu/_fusionnew-definition.scss +66 -66
- package/styles/menu/_highcontrast-definition.scss +65 -65
- package/styles/menu/_highcontrast-light-definition.scss +61 -61
- package/styles/menu/_layout.scss +501 -501
- package/styles/menu/_material-dark-definition.scss +61 -61
- package/styles/menu/_material-definition.scss +64 -64
- package/styles/menu/_material3-definition.scss +66 -66
- package/styles/menu/_tailwind-definition.scss +65 -65
- package/styles/menu/_tailwind3-definition.scss +66 -66
- package/styles/menu/_theme.scss +428 -418
- package/styles/menu/bootstrap4.css +13 -13
- package/styles/menu/bootstrap5-dark.css +14 -14
- package/styles/menu/fluent2.css +12 -3
- package/styles/menu/icons/_bds.scss +104 -104
- package/styles/menu/icons/_bootstrap-dark.scss +105 -105
- package/styles/menu/icons/_bootstrap.scss +104 -104
- package/styles/menu/icons/_bootstrap4.scss +104 -104
- package/styles/menu/icons/_bootstrap5.3.scss +104 -104
- package/styles/menu/icons/_bootstrap5.scss +104 -104
- package/styles/menu/icons/_fabric-dark.scss +104 -104
- package/styles/menu/icons/_fabric.scss +104 -104
- package/styles/menu/icons/_fluent.scss +104 -104
- package/styles/menu/icons/_fluent2.scss +104 -104
- package/styles/menu/icons/_fusionnew.scss +104 -104
- package/styles/menu/icons/_highcontrast-light.scss +104 -104
- package/styles/menu/icons/_highcontrast.scss +104 -104
- package/styles/menu/icons/_material-dark.scss +104 -104
- package/styles/menu/icons/_material.scss +104 -104
- package/styles/menu/icons/_material3.scss +104 -104
- package/styles/menu/icons/_tailwind-dark.scss +104 -104
- package/styles/menu/icons/_tailwind.scss +104 -104
- package/styles/menu/icons/_tailwind3.scss +104 -104
- package/styles/menu/material3-dark.scss +1 -1
- package/styles/menu/material3.scss +1 -1
- package/styles/pager/_all.scss +2 -2
- package/styles/pager/_bds-definition.scss +152 -152
- package/styles/pager/_bigger.scss +364 -363
- package/styles/pager/_bootstrap-dark-definition.scss +152 -151
- package/styles/pager/_bootstrap-definition.scss +151 -151
- package/styles/pager/_bootstrap4-definition.scss +152 -151
- package/styles/pager/_bootstrap5-definition.scss +166 -166
- package/styles/pager/_bootstrap5.3-definition.scss +166 -166
- package/styles/pager/_fabric-dark-definition.scss +149 -149
- package/styles/pager/_fabric-definition.scss +149 -149
- package/styles/pager/_fluent-definition.scss +153 -153
- package/styles/pager/_fluent2-definition.scss +152 -152
- package/styles/pager/_fusionnew-definition.scss +166 -166
- package/styles/pager/_highcontrast-definition.scss +149 -149
- package/styles/pager/_highcontrast-light-definition.scss +149 -149
- package/styles/pager/_layout.scss +776 -768
- package/styles/pager/_material-dark-definition.scss +150 -150
- package/styles/pager/_material-definition.scss +150 -150
- package/styles/pager/_material3-definition.scss +166 -166
- package/styles/pager/_tailwind-definition.scss +152 -152
- package/styles/pager/_tailwind3-definition.scss +166 -166
- package/styles/pager/_theme.scss +189 -189
- package/styles/pager/bds.css +13 -3
- package/styles/pager/bootstrap-dark.css +17 -7
- package/styles/pager/bootstrap.css +13 -3
- package/styles/pager/bootstrap4.css +14 -4
- package/styles/pager/bootstrap5-dark.css +21 -17
- package/styles/pager/bootstrap5.3.css +7 -3
- package/styles/pager/bootstrap5.css +12 -8
- package/styles/pager/fabric-dark.css +13 -3
- package/styles/pager/fabric.css +15 -5
- package/styles/pager/fluent-dark.css +14 -4
- package/styles/pager/fluent.css +14 -4
- package/styles/pager/fluent2.css +13 -3
- package/styles/pager/highcontrast-light.css +13 -3
- package/styles/pager/highcontrast.css +13 -3
- package/styles/pager/icons/_bds.scss +50 -50
- package/styles/pager/icons/_bootstrap-dark.scss +50 -50
- package/styles/pager/icons/_bootstrap.scss +50 -50
- package/styles/pager/icons/_bootstrap4.scss +50 -50
- package/styles/pager/icons/_bootstrap5.3.scss +50 -50
- package/styles/pager/icons/_bootstrap5.scss +50 -50
- package/styles/pager/icons/_fabric-dark.scss +50 -50
- package/styles/pager/icons/_fabric.scss +50 -50
- package/styles/pager/icons/_fluent.scss +50 -50
- package/styles/pager/icons/_fluent2.scss +50 -50
- package/styles/pager/icons/_fusionnew.scss +50 -50
- package/styles/pager/icons/_highcontrast-light.scss +50 -50
- package/styles/pager/icons/_highcontrast.scss +46 -46
- package/styles/pager/icons/_material-dark.scss +50 -50
- package/styles/pager/icons/_material.scss +46 -46
- package/styles/pager/icons/_material3.scss +50 -50
- package/styles/pager/icons/_tailwind.scss +50 -50
- package/styles/pager/icons/_tailwind3.scss +50 -50
- package/styles/pager/material-dark.css +13 -3
- package/styles/pager/material.css +13 -3
- package/styles/pager/material3-dark.css +20 -5
- package/styles/pager/material3-dark.scss +1 -1
- package/styles/pager/material3.css +20 -5
- package/styles/pager/material3.scss +1 -1
- package/styles/pager/tailwind-dark.css +13 -3
- package/styles/pager/tailwind.css +13 -3
- package/styles/pager/tailwind3.css +14 -4
- package/styles/sidebar/_all.scss +3 -3
- package/styles/sidebar/_bds-definition.scss +53 -53
- package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
- package/styles/sidebar/_bootstrap-definition.scss +4 -4
- package/styles/sidebar/_bootstrap4-definition.scss +4 -4
- package/styles/sidebar/_bootstrap5-definition.scss +6 -6
- package/styles/sidebar/_bootstrap5.3-definition.scss +6 -6
- package/styles/sidebar/_fabric-dark-definition.scss +4 -4
- package/styles/sidebar/_fabric-definition.scss +4 -4
- package/styles/sidebar/_fluent-definition.scss +6 -6
- package/styles/sidebar/_fluent2-definition.scss +8 -8
- package/styles/sidebar/_fusionnew-definition.scss +6 -6
- package/styles/sidebar/_highcontrast-definition.scss +4 -4
- package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -1
- package/styles/sidebar/_material-dark-definition.scss +4 -4
- package/styles/sidebar/_material-definition.scss +6 -6
- package/styles/sidebar/_material3-definition.scss +4 -4
- package/styles/sidebar/_tailwind-definition.scss +6 -6
- package/styles/sidebar/_tailwind3-definition.scss +6 -6
- package/styles/sidebar/_theme.scss +251 -251
- package/styles/sidebar/bootstrap5-dark.css +1 -1
- package/styles/sidebar/material3-dark.scss +1 -1
- package/styles/sidebar/material3.scss +1 -1
- package/styles/stepper/_bds-definition.scss +72 -72
- package/styles/stepper/_bigger.scss +53 -53
- package/styles/stepper/_bootstrap4-definition.scss +4 -2
- package/styles/stepper/_bootstrap5.3-definition.scss +72 -72
- package/styles/stepper/_fluent2-definition.scss +72 -72
- package/styles/stepper/_material-dark-definition.scss +4 -2
- package/styles/stepper/_material-definition.scss +7 -5
- package/styles/stepper/_tailwind3-definition.scss +72 -72
- package/styles/stepper/bootstrap-dark.css +2 -2
- package/styles/stepper/bootstrap4.css +2 -2
- package/styles/stepper/bootstrap5-dark.css +20 -20
- package/styles/stepper/bootstrap5.css +2 -2
- package/styles/stepper/fabric-dark.css +2 -2
- package/styles/stepper/fabric.css +2 -2
- package/styles/stepper/fluent-dark.css +1 -1
- package/styles/stepper/fluent.css +1 -1
- package/styles/stepper/icons/_bds.scss +5 -5
- package/styles/stepper/icons/_bootstrap5.3.scss +5 -5
- package/styles/stepper/icons/_fluent2.scss +5 -5
- package/styles/stepper/icons/_tailwind3.scss +5 -5
- package/styles/stepper/material-dark.css +2 -2
- package/styles/stepper/material.css +8 -8
- package/styles/stepper/material3-dark.scss +1 -1
- package/styles/stepper/material3.scss +1 -1
- package/styles/tab/_all.scss +2 -2
- package/styles/tab/_bds-definition.scss +661 -661
- package/styles/tab/_bigger.scss +1276 -1276
- package/styles/tab/_bootstrap-dark-definition.scss +630 -628
- package/styles/tab/_bootstrap-definition.scss +629 -629
- package/styles/tab/_bootstrap4-definition.scss +637 -635
- package/styles/tab/_bootstrap5-definition.scss +635 -633
- package/styles/tab/_bootstrap5.3-definition.scss +636 -634
- package/styles/tab/_fabric-dark-definition.scss +641 -641
- package/styles/tab/_fabric-definition.scss +643 -643
- package/styles/tab/_fluent-definition.scss +637 -635
- package/styles/tab/_fluent2-definition.scss +664 -664
- package/styles/tab/_fusionnew-definition.scss +632 -632
- package/styles/tab/_highcontrast-definition.scss +667 -667
- package/styles/tab/_highcontrast-light-definition.scss +666 -666
- package/styles/tab/_icons.scss +34 -34
- package/styles/tab/_layout.scss +2191 -2187
- package/styles/tab/_material-dark-definition.scss +646 -646
- package/styles/tab/_material-definition.scss +645 -645
- package/styles/tab/_material3-definition.scss +634 -634
- package/styles/tab/_tailwind-definition.scss +648 -648
- package/styles/tab/_tailwind3-definition.scss +634 -634
- package/styles/tab/_theme.scss +1580 -1580
- package/styles/tab/bds.css +5 -0
- package/styles/tab/bootstrap-dark.css +35 -30
- package/styles/tab/bootstrap.css +7 -2
- package/styles/tab/bootstrap4.css +38 -33
- package/styles/tab/bootstrap5-dark.css +60 -55
- package/styles/tab/bootstrap5.3.css +18 -13
- package/styles/tab/bootstrap5.css +40 -35
- package/styles/tab/fabric-dark.css +5 -0
- package/styles/tab/fabric.css +10 -5
- package/styles/tab/fluent-dark.css +19 -14
- package/styles/tab/fluent.css +19 -14
- package/styles/tab/fluent2.css +7 -2
- package/styles/tab/highcontrast-light.css +5 -0
- package/styles/tab/highcontrast.css +6 -1
- package/styles/tab/icons/_bds.scss +90 -90
- package/styles/tab/icons/_bootstrap-dark.scss +98 -98
- package/styles/tab/icons/_bootstrap.scss +98 -98
- package/styles/tab/icons/_bootstrap4.scss +101 -101
- package/styles/tab/icons/_bootstrap5.3.scss +90 -90
- package/styles/tab/icons/_bootstrap5.scss +90 -90
- package/styles/tab/icons/_fabric-dark.scss +98 -98
- package/styles/tab/icons/_fabric.scss +98 -98
- package/styles/tab/icons/_fluent.scss +98 -98
- package/styles/tab/icons/_fluent2.scss +98 -98
- package/styles/tab/icons/_fusionnew.scss +90 -90
- package/styles/tab/icons/_highcontrast-light.scss +90 -90
- package/styles/tab/icons/_highcontrast.scss +101 -101
- package/styles/tab/icons/_material-dark.scss +90 -90
- package/styles/tab/icons/_material.scss +90 -90
- package/styles/tab/icons/_material3.scss +90 -90
- package/styles/tab/icons/_tailwind.scss +90 -90
- package/styles/tab/icons/_tailwind3.scss +90 -90
- package/styles/tab/material-dark.css +5 -0
- package/styles/tab/material.css +6 -1
- package/styles/tab/material3-dark.css +15 -10
- package/styles/tab/material3-dark.scss +1 -1
- package/styles/tab/material3.css +15 -10
- package/styles/tab/material3.scss +1 -1
- package/styles/tab/tailwind-dark.css +13 -8
- package/styles/tab/tailwind.css +13 -8
- package/styles/tab/tailwind3.css +32 -26
- package/styles/tailwind-dark-lite.css +80 -15
- package/styles/tailwind-dark.css +84 -19
- package/styles/tailwind-lite.css +78 -13
- package/styles/tailwind.css +82 -17
- package/styles/tailwind3-lite.css +105 -58
- package/styles/tailwind3.css +109 -61
- package/styles/toolbar/_all.scss +2 -2
- package/styles/toolbar/_bds-definition.scss +197 -197
- package/styles/toolbar/_bigger.scss +323 -323
- package/styles/toolbar/_bootstrap-dark-definition.scss +193 -193
- package/styles/toolbar/_bootstrap-definition.scss +203 -203
- package/styles/toolbar/_bootstrap4-definition.scss +200 -198
- package/styles/toolbar/_bootstrap5-definition.scss +198 -198
- package/styles/toolbar/_bootstrap5.3-definition.scss +198 -198
- package/styles/toolbar/_fabric-dark-definition.scss +207 -207
- package/styles/toolbar/_fabric-definition.scss +195 -195
- package/styles/toolbar/_fluent-definition.scss +197 -197
- package/styles/toolbar/_fluent2-definition.scss +198 -198
- package/styles/toolbar/_fusionnew-definition.scss +198 -198
- package/styles/toolbar/_highcontrast-definition.scss +204 -204
- package/styles/toolbar/_highcontrast-light-definition.scss +218 -218
- package/styles/toolbar/_layout.scss +781 -748
- package/styles/toolbar/_material-dark-definition.scss +233 -231
- package/styles/toolbar/_material-definition.scss +221 -219
- package/styles/toolbar/_material3-definition.scss +199 -199
- package/styles/toolbar/_tailwind-definition.scss +197 -197
- package/styles/toolbar/_tailwind3-definition.scss +199 -199
- package/styles/toolbar/_theme.scss +410 -436
- package/styles/toolbar/bds.css +23 -2
- package/styles/toolbar/bootstrap-dark.css +25 -4
- package/styles/toolbar/bootstrap.css +25 -4
- package/styles/toolbar/bootstrap4.css +35 -14
- package/styles/toolbar/bootstrap5-dark.css +70 -49
- package/styles/toolbar/bootstrap5.3.css +33 -4
- package/styles/toolbar/bootstrap5.css +46 -25
- package/styles/toolbar/fabric-dark.css +23 -2
- package/styles/toolbar/fabric.css +32 -11
- package/styles/toolbar/fluent-dark.css +23 -2
- package/styles/toolbar/fluent.css +23 -2
- package/styles/toolbar/fluent2.css +30 -28
- package/styles/toolbar/highcontrast-light.css +23 -2
- package/styles/toolbar/highcontrast.css +25 -4
- package/styles/toolbar/icons/_bds.scss +14 -14
- package/styles/toolbar/icons/_bootstrap-dark.scss +14 -14
- package/styles/toolbar/icons/_bootstrap.scss +14 -14
- package/styles/toolbar/icons/_bootstrap4.scss +14 -14
- package/styles/toolbar/icons/_bootstrap5.3.scss +14 -14
- package/styles/toolbar/icons/_bootstrap5.scss +14 -14
- package/styles/toolbar/icons/_fabric-dark.scss +14 -14
- package/styles/toolbar/icons/_fabric.scss +14 -14
- package/styles/toolbar/icons/_fluent.scss +14 -14
- package/styles/toolbar/icons/_fluent2.scss +14 -14
- package/styles/toolbar/icons/_fusionnew.scss +14 -14
- package/styles/toolbar/icons/_highcontrast-light.scss +14 -14
- package/styles/toolbar/icons/_highcontrast.scss +14 -14
- package/styles/toolbar/icons/_material-dark.scss +14 -14
- package/styles/toolbar/icons/_material.scss +14 -14
- package/styles/toolbar/icons/_material3.scss +14 -14
- package/styles/toolbar/icons/_tailwind.scss +14 -14
- package/styles/toolbar/icons/_tailwind3.scss +14 -14
- package/styles/toolbar/material-dark.css +25 -4
- package/styles/toolbar/material.css +25 -4
- package/styles/toolbar/material3-dark.css +23 -2
- package/styles/toolbar/material3-dark.scss +1 -1
- package/styles/toolbar/material3.css +23 -2
- package/styles/toolbar/material3.scss +1 -1
- package/styles/toolbar/tailwind-dark.css +23 -2
- package/styles/toolbar/tailwind.css +23 -2
- package/styles/toolbar/tailwind3.css +30 -28
- package/styles/treeview/_all.scss +2 -2
- package/styles/treeview/_bds-definition.scss +131 -131
- package/styles/treeview/_bigger.scss +410 -406
- package/styles/treeview/_bootstrap-dark-definition.scss +118 -118
- package/styles/treeview/_bootstrap-definition.scss +113 -113
- package/styles/treeview/_bootstrap4-definition.scss +143 -141
- package/styles/treeview/_bootstrap5-definition.scss +122 -120
- package/styles/treeview/_bootstrap5.3-definition.scss +119 -119
- package/styles/treeview/_fabric-dark-definition.scss +116 -116
- package/styles/treeview/_fabric-definition.scss +112 -112
- package/styles/treeview/_fluent-definition.scss +122 -120
- package/styles/treeview/_fluent2-definition.scss +128 -128
- package/styles/treeview/_fusionnew-definition.scss +120 -120
- package/styles/treeview/_highcontrast-definition.scss +118 -118
- package/styles/treeview/_highcontrast-light-definition.scss +123 -123
- package/styles/treeview/_layout.scss +769 -761
- package/styles/treeview/_material-dark-definition.scss +114 -114
- package/styles/treeview/_material-definition.scss +112 -112
- package/styles/treeview/_material3-definition.scss +110 -110
- package/styles/treeview/_tailwind-definition.scss +126 -124
- package/styles/treeview/_tailwind3-definition.scss +126 -126
- package/styles/treeview/_theme.scss +352 -350
- package/styles/treeview/bds.css +8 -0
- package/styles/treeview/bootstrap-dark.css +8 -0
- package/styles/treeview/bootstrap.css +8 -0
- package/styles/treeview/bootstrap4.css +17 -9
- package/styles/treeview/bootstrap5-dark.css +20 -12
- package/styles/treeview/bootstrap5.3.css +15 -7
- package/styles/treeview/bootstrap5.css +11 -3
- package/styles/treeview/fabric-dark.css +8 -0
- package/styles/treeview/fabric.css +15 -7
- package/styles/treeview/fluent-dark.css +11 -5
- package/styles/treeview/fluent.css +11 -5
- package/styles/treeview/fluent2.css +8 -0
- package/styles/treeview/highcontrast-light.css +8 -0
- package/styles/treeview/highcontrast.css +8 -0
- package/styles/treeview/icons/_bds.scss +44 -44
- package/styles/treeview/icons/_bootstrap-dark.scss +40 -40
- package/styles/treeview/icons/_bootstrap.scss +40 -40
- package/styles/treeview/icons/_bootstrap4.scss +40 -40
- package/styles/treeview/icons/_bootstrap5.3.scss +44 -44
- package/styles/treeview/icons/_bootstrap5.scss +44 -44
- package/styles/treeview/icons/_fabric-dark.scss +44 -44
- package/styles/treeview/icons/_fabric.scss +44 -44
- package/styles/treeview/icons/_fluent.scss +44 -44
- package/styles/treeview/icons/_fluent2.scss +44 -44
- package/styles/treeview/icons/_fusionnew.scss +44 -44
- package/styles/treeview/icons/_highcontrast-light.scss +44 -44
- package/styles/treeview/icons/_highcontrast.scss +44 -44
- package/styles/treeview/icons/_material-dark.scss +44 -44
- package/styles/treeview/icons/_material.scss +44 -44
- package/styles/treeview/icons/_material3.scss +44 -44
- package/styles/treeview/icons/_tailwind-dark.scss +44 -44
- package/styles/treeview/icons/_tailwind.scss +44 -44
- package/styles/treeview/icons/_tailwind3.scss +44 -44
- package/styles/treeview/material-dark.css +8 -0
- package/styles/treeview/material.css +8 -0
- package/styles/treeview/material3-dark.css +9 -1
- package/styles/treeview/material3-dark.scss +1 -1
- package/styles/treeview/material3.css +9 -1
- package/styles/treeview/material3.scss +1 -1
- package/styles/treeview/tailwind-dark.css +10 -2
- package/styles/treeview/tailwind.css +10 -2
- package/styles/treeview/tailwind3.css +10 -1
- package/styles/v-scroll/_all.scss +2 -2
- package/styles/v-scroll/_bds-definition.scss +49 -49
- package/styles/v-scroll/_bigger.scss +28 -28
- package/styles/v-scroll/_bootstrap-dark-definition.scss +51 -51
- package/styles/v-scroll/_bootstrap-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap5.3-definition.scss +49 -49
- package/styles/v-scroll/_fabric-dark-definition.scss +52 -52
- package/styles/v-scroll/_fabric-definition.scss +50 -50
- package/styles/v-scroll/_fluent-definition.scss +49 -49
- package/styles/v-scroll/_fluent2-definition.scss +49 -49
- package/styles/v-scroll/_fusionnew-definition.scss +49 -49
- package/styles/v-scroll/_highcontrast-definition.scss +50 -50
- package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
- package/styles/v-scroll/_layout.scss +135 -135
- package/styles/v-scroll/_material-dark-definition.scss +79 -79
- package/styles/v-scroll/_material-definition.scss +77 -77
- package/styles/v-scroll/_material3-definition.scss +49 -49
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/_tailwind3-definition.scss +49 -49
- package/styles/v-scroll/_theme.scss +114 -114
- package/styles/v-scroll/fabric-dark.css +1 -1
- package/styles/v-scroll/fabric.css +1 -1
- package/styles/v-scroll/icons/_bds.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap4.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap5.3.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -27
- package/styles/v-scroll/icons/_fabric-dark.scss +27 -27
- package/styles/v-scroll/icons/_fabric.scss +27 -27
- package/styles/v-scroll/icons/_fluent.scss +27 -27
- package/styles/v-scroll/icons/_fluent2.scss +27 -27
- package/styles/v-scroll/icons/_fusionnew.scss +27 -27
- package/styles/v-scroll/icons/_highcontrast-light.scss +27 -27
- package/styles/v-scroll/icons/_highcontrast.scss +27 -27
- package/styles/v-scroll/icons/_material-dark.scss +27 -27
- package/styles/v-scroll/icons/_material.scss +27 -27
- package/styles/v-scroll/icons/_material3.scss +27 -27
- package/styles/v-scroll/icons/_tailwind.scss +27 -27
- package/styles/v-scroll/icons/_tailwind3.scss +27 -27
- package/styles/v-scroll/material3-dark.scss +1 -1
- package/styles/v-scroll/material3.scss +1 -1
- package/tslint.json +111 -111
- package/helpers/e2e/accordionHelper.d.ts +0 -56
- package/helpers/e2e/accordionHelper.js +0 -71
- package/helpers/e2e/contextmenuHelper.d.ts +0 -37
- package/helpers/e2e/contextmenuHelper.js +0 -53
- package/helpers/e2e/index.d.ts +0 -7
- package/helpers/e2e/index.js +0 -14
- package/helpers/e2e/menuHelper.d.ts +0 -37
- package/helpers/e2e/menuHelper.js +0 -53
- package/helpers/e2e/sidebarHelper.d.ts +0 -94
- package/helpers/e2e/sidebarHelper.js +0 -110
- package/helpers/e2e/tabHelper.d.ts +0 -60
- package/helpers/e2e/tabHelper.js +0 -74
- package/helpers/e2e/toolbarHelper.d.ts +0 -60
- package/helpers/e2e/toolbarHelper.js +0 -74
- package/helpers/e2e/treeview.d.ts +0 -50
- package/helpers/e2e/treeview.js +0 -80
package/styles/bootstrap5.css
CHANGED
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
padding-right: 0;
|
|
68
68
|
padding-top: 8px;
|
|
69
69
|
}
|
|
70
|
+
.e-pager div.e-parentmsgbar span.e-rightalign {
|
|
71
|
+
text-align: right;
|
|
72
|
+
}
|
|
70
73
|
.e-pager .e-pagesizes {
|
|
71
74
|
display: inline;
|
|
72
75
|
}
|
|
@@ -122,7 +125,7 @@
|
|
|
122
125
|
text-decoration: none;
|
|
123
126
|
}
|
|
124
127
|
.e-pager .e-currentitem {
|
|
125
|
-
border: 3px solid
|
|
128
|
+
border: 3px solid rgb(134, 182.5, 254);
|
|
126
129
|
font-style: normal;
|
|
127
130
|
font-variant: normal;
|
|
128
131
|
font-weight: 400;
|
|
@@ -354,7 +357,7 @@
|
|
|
354
357
|
padding: 7px 10.5px 8px 9.5px;
|
|
355
358
|
}
|
|
356
359
|
.e-pager.e-rtl .e-numericitem.e-currentitem {
|
|
357
|
-
border-left-color:
|
|
360
|
+
border-left-color: rgb(134, 182.5, 254);
|
|
358
361
|
border-left-style: solid;
|
|
359
362
|
border-left-width: 3px;
|
|
360
363
|
}
|
|
@@ -477,7 +480,8 @@
|
|
|
477
480
|
.e-pager.e-rtl.e-rtl div.e-parentmsgbar {
|
|
478
481
|
float: initial;
|
|
479
482
|
margin-left: 0;
|
|
480
|
-
margin-top:
|
|
483
|
+
margin-top: 0;
|
|
484
|
+
padding-top: 0;
|
|
481
485
|
}
|
|
482
486
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
483
487
|
float: right;
|
|
@@ -572,7 +576,7 @@
|
|
|
572
576
|
}
|
|
573
577
|
.e-pager .e-currentitem,
|
|
574
578
|
.e-pager .e-currentitem:hover {
|
|
575
|
-
border-right-color:
|
|
579
|
+
border-right-color: rgb(134, 182.5, 254);
|
|
576
580
|
background: #e9ecef;
|
|
577
581
|
color: #0d6efd;
|
|
578
582
|
opacity: 1;
|
|
@@ -586,7 +590,7 @@
|
|
|
586
590
|
.e-pager .e-mprev.e-focused,
|
|
587
591
|
.e-pager .e-mnext.e-focused,
|
|
588
592
|
.e-pager .e-mlast.e-focused {
|
|
589
|
-
background-color:
|
|
593
|
+
background-color: rgb(239.075, 241.35, 243.625);
|
|
590
594
|
}
|
|
591
595
|
.e-pager .e-currentitem.e-numericitem.e-focused {
|
|
592
596
|
background: #e9ecef;
|
|
@@ -743,14 +747,14 @@
|
|
|
743
747
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
744
748
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
745
749
|
margin-left: 0;
|
|
746
|
-
margin-top:
|
|
750
|
+
margin-top: 0;
|
|
747
751
|
}
|
|
748
752
|
}
|
|
749
753
|
@media (max-width: 769px) {
|
|
750
754
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
751
755
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
752
756
|
margin-left: 0;
|
|
753
|
-
margin-top:
|
|
757
|
+
margin-top: 0;
|
|
754
758
|
}
|
|
755
759
|
}
|
|
756
760
|
.e-bigger .e-pager.e-rtl .e-numericitem.e-currentitem,
|
|
@@ -811,7 +815,7 @@
|
|
|
811
815
|
}
|
|
812
816
|
.e-bigger .e-pager.e-adaptive div.e-parentmsgbar,
|
|
813
817
|
.e-pager.e-bigger.e-adaptive div.e-parentmsgbar {
|
|
814
|
-
margin-top:
|
|
818
|
+
margin-top: 0;
|
|
815
819
|
}
|
|
816
820
|
.e-bigger .e-pager.e-adaptive .e-pagerdropdown,
|
|
817
821
|
.e-pager.e-bigger.e-adaptive .e-pagerdropdown {
|
|
@@ -882,7 +886,7 @@
|
|
|
882
886
|
.e-hscroll {
|
|
883
887
|
display: block;
|
|
884
888
|
position: relative;
|
|
885
|
-
width:
|
|
889
|
+
width: 100%;
|
|
886
890
|
}
|
|
887
891
|
.e-hscroll.e-rtl.e-scroll-device {
|
|
888
892
|
padding-left: 40px;
|
|
@@ -1561,6 +1565,9 @@
|
|
|
1561
1565
|
min-width: 28px;
|
|
1562
1566
|
padding: 4px;
|
|
1563
1567
|
}
|
|
1568
|
+
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
|
|
1569
|
+
pointer-events: none;
|
|
1570
|
+
}
|
|
1564
1571
|
.e-toolbar .e-toolbar-item.e-separator {
|
|
1565
1572
|
margin: 5px 10px;
|
|
1566
1573
|
min-height: 24px;
|
|
@@ -1576,6 +1583,9 @@
|
|
|
1576
1583
|
.e-toolbar .e-toolbar-item > * {
|
|
1577
1584
|
text-overflow: ellipsis;
|
|
1578
1585
|
}
|
|
1586
|
+
.e-toolbar .e-toolbar-item:not(.e-overlay) > * {
|
|
1587
|
+
pointer-events: auto;
|
|
1588
|
+
}
|
|
1579
1589
|
.e-toolbar .e-toolbar-item.e-hidden {
|
|
1580
1590
|
display: none;
|
|
1581
1591
|
}
|
|
@@ -1738,6 +1748,9 @@
|
|
|
1738
1748
|
min-width: 100%;
|
|
1739
1749
|
text-overflow: ellipsis;
|
|
1740
1750
|
}
|
|
1751
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1752
|
+
pointer-events: auto;
|
|
1753
|
+
}
|
|
1741
1754
|
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
1742
1755
|
min-width: 100%;
|
|
1743
1756
|
}
|
|
@@ -1851,6 +1864,9 @@
|
|
|
1851
1864
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1852
1865
|
height: auto;
|
|
1853
1866
|
}
|
|
1867
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1868
|
+
pointer-events: auto;
|
|
1869
|
+
}
|
|
1854
1870
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1855
1871
|
-ms-flex-item-align: center;
|
|
1856
1872
|
align-self: center;
|
|
@@ -1864,12 +1880,18 @@
|
|
|
1864
1880
|
display: -ms-inline-flexbox;
|
|
1865
1881
|
display: inline-flex;
|
|
1866
1882
|
}
|
|
1883
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
|
|
1884
|
+
pointer-events: auto;
|
|
1885
|
+
}
|
|
1867
1886
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1868
1887
|
display: table;
|
|
1869
1888
|
}
|
|
1870
1889
|
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1871
1890
|
margin-right: 8px;
|
|
1872
1891
|
}
|
|
1892
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1893
|
+
margin-left: 8px;
|
|
1894
|
+
}
|
|
1873
1895
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1874
1896
|
padding: 4px;
|
|
1875
1897
|
}
|
|
@@ -1900,6 +1922,7 @@
|
|
|
1900
1922
|
}
|
|
1901
1923
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1902
1924
|
margin-left: 0;
|
|
1925
|
+
margin-right: 8px;
|
|
1903
1926
|
}
|
|
1904
1927
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
1905
1928
|
margin-left: 8px;
|
|
@@ -1907,11 +1930,13 @@
|
|
|
1907
1930
|
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1908
1931
|
margin-left: 0;
|
|
1909
1932
|
}
|
|
1910
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child
|
|
1933
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child {
|
|
1934
|
+
margin-right: 0;
|
|
1935
|
+
}
|
|
1911
1936
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1912
1937
|
margin-right: 0;
|
|
1938
|
+
margin-left: 8px;
|
|
1913
1939
|
}
|
|
1914
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
1915
1940
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
1916
1941
|
margin-right: 8px;
|
|
1917
1942
|
}
|
|
@@ -1965,7 +1990,7 @@
|
|
|
1965
1990
|
color: #212529;
|
|
1966
1991
|
}
|
|
1967
1992
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active {
|
|
1968
|
-
background:
|
|
1993
|
+
background: rgb(86.4, 93.6, 100);
|
|
1969
1994
|
-webkit-box-shadow: none;
|
|
1970
1995
|
box-shadow: none;
|
|
1971
1996
|
}
|
|
@@ -1973,18 +1998,18 @@
|
|
|
1973
1998
|
color: #fff;
|
|
1974
1999
|
}
|
|
1975
2000
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active:focus {
|
|
1976
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
1977
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
2001
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
2002
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1978
2003
|
}
|
|
1979
2004
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
1980
|
-
background:
|
|
2005
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1981
2006
|
border-radius: 4px;
|
|
1982
2007
|
color: #6c757d;
|
|
1983
2008
|
border-color: #6c757d;
|
|
1984
2009
|
border-style: solid;
|
|
1985
2010
|
border-width: 0;
|
|
1986
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
1987
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
2011
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
2012
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1988
2013
|
}
|
|
1989
2014
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
1990
2015
|
color: #fff;
|
|
@@ -1994,7 +2019,7 @@
|
|
|
1994
2019
|
color: #fff;
|
|
1995
2020
|
}
|
|
1996
2021
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
1997
|
-
background:
|
|
2022
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1998
2023
|
border-color: #6c757d;
|
|
1999
2024
|
border-style: solid;
|
|
2000
2025
|
border-width: 0;
|
|
@@ -2015,7 +2040,7 @@
|
|
|
2015
2040
|
color: #fff;
|
|
2016
2041
|
}
|
|
2017
2042
|
.e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
2018
|
-
background:
|
|
2043
|
+
background: rgb(86.4, 93.6, 100);
|
|
2019
2044
|
border-color: #dee2e6;
|
|
2020
2045
|
border-style: solid;
|
|
2021
2046
|
border-width: 0;
|
|
@@ -2081,7 +2106,7 @@
|
|
|
2081
2106
|
content: "";
|
|
2082
2107
|
}
|
|
2083
2108
|
.e-toolbar .e-hor-nav:hover {
|
|
2084
|
-
background:
|
|
2109
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2085
2110
|
border-left: 0;
|
|
2086
2111
|
color: #fff;
|
|
2087
2112
|
}
|
|
@@ -2094,13 +2119,13 @@
|
|
|
2094
2119
|
border-width: 0;
|
|
2095
2120
|
}
|
|
2096
2121
|
.e-toolbar .e-hor-nav:hover:active {
|
|
2097
|
-
background:
|
|
2122
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2098
2123
|
border-color: #dee2e6;
|
|
2099
2124
|
border-style: solid;
|
|
2100
2125
|
border-width: 0;
|
|
2101
2126
|
}
|
|
2102
2127
|
.e-toolbar .e-hor-nav:focus {
|
|
2103
|
-
background:
|
|
2128
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2104
2129
|
color: #fff;
|
|
2105
2130
|
border-color: #6c757d;
|
|
2106
2131
|
border-style: solid;
|
|
@@ -2111,16 +2136,16 @@
|
|
|
2111
2136
|
}
|
|
2112
2137
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
2113
2138
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
2114
|
-
background:
|
|
2139
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2115
2140
|
-webkit-box-shadow: none;
|
|
2116
2141
|
box-shadow: none;
|
|
2117
|
-
border-color:
|
|
2142
|
+
border-color: rgb(91.8, 99.45, 106.25);
|
|
2118
2143
|
border-style: solid;
|
|
2119
2144
|
border-width: 0;
|
|
2120
2145
|
}
|
|
2121
2146
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:focus,
|
|
2122
2147
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav):focus {
|
|
2123
|
-
border-color:
|
|
2148
|
+
border-color: rgb(91.8, 99.45, 106.25);
|
|
2124
2149
|
border-style: solid;
|
|
2125
2150
|
border-width: 0;
|
|
2126
2151
|
}
|
|
@@ -2142,7 +2167,7 @@
|
|
|
2142
2167
|
background: transparent;
|
|
2143
2168
|
}
|
|
2144
2169
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:hover {
|
|
2145
|
-
background:
|
|
2170
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2146
2171
|
-webkit-box-shadow: none;
|
|
2147
2172
|
box-shadow: none;
|
|
2148
2173
|
border-color: #6c757d;
|
|
@@ -2150,7 +2175,7 @@
|
|
|
2150
2175
|
border-width: 0;
|
|
2151
2176
|
}
|
|
2152
2177
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:active {
|
|
2153
|
-
background:
|
|
2178
|
+
background: rgb(86.4, 93.6, 100);
|
|
2154
2179
|
-webkit-box-shadow: none;
|
|
2155
2180
|
box-shadow: none;
|
|
2156
2181
|
border-color: #dee2e6;
|
|
@@ -2158,7 +2183,7 @@
|
|
|
2158
2183
|
border-width: 0;
|
|
2159
2184
|
}
|
|
2160
2185
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:focus {
|
|
2161
|
-
background:
|
|
2186
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2162
2187
|
border-color: #6c757d;
|
|
2163
2188
|
border-style: solid;
|
|
2164
2189
|
border-width: 0;
|
|
@@ -2178,23 +2203,23 @@
|
|
|
2178
2203
|
border: none;
|
|
2179
2204
|
}
|
|
2180
2205
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
2181
|
-
background:
|
|
2206
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2182
2207
|
border-radius: 4px;
|
|
2183
2208
|
border-color: #6c757d;
|
|
2184
2209
|
border-style: solid;
|
|
2185
2210
|
border-width: 0;
|
|
2186
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
2187
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
2211
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
2212
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
2188
2213
|
}
|
|
2189
2214
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
2190
|
-
background:
|
|
2215
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2191
2216
|
border-radius: 4px;
|
|
2192
2217
|
border-color: #6c757d;
|
|
2193
2218
|
border-style: solid;
|
|
2194
2219
|
border-width: 0;
|
|
2195
2220
|
}
|
|
2196
2221
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
2197
|
-
background:
|
|
2222
|
+
background: rgb(86.4, 93.6, 100);
|
|
2198
2223
|
border-radius: 4px;
|
|
2199
2224
|
-webkit-box-shadow: none;
|
|
2200
2225
|
box-shadow: none;
|
|
@@ -2218,7 +2243,7 @@
|
|
|
2218
2243
|
border-width: 0 0 0 0;
|
|
2219
2244
|
}
|
|
2220
2245
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
2221
|
-
background:
|
|
2246
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
2222
2247
|
color: #6c757d;
|
|
2223
2248
|
border: solid #dee2e6;
|
|
2224
2249
|
border-width: 0 0 0 0;
|
|
@@ -2710,7 +2735,7 @@
|
|
|
2710
2735
|
border-width: 0 0 1px 0;
|
|
2711
2736
|
}
|
|
2712
2737
|
.e-accordion .e-acrdn-item.e-item-focus.e-select.e-selected.e-expand-state .e-acrdn-header:hover:focus {
|
|
2713
|
-
background:
|
|
2738
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2714
2739
|
}
|
|
2715
2740
|
.e-accordion .e-acrdn-item.e-item-focus.e-select.e-selected.e-expand-state .e-acrdn-header:hover:focus .e-acrdn-header-content {
|
|
2716
2741
|
color: #0d6efd;
|
|
@@ -2754,13 +2779,13 @@
|
|
|
2754
2779
|
border-color: #dee2e6;
|
|
2755
2780
|
border-style: solid;
|
|
2756
2781
|
border-width: 0 0 1px 0;
|
|
2757
|
-
background:
|
|
2782
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2758
2783
|
}
|
|
2759
2784
|
.e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:hover {
|
|
2760
|
-
background:
|
|
2785
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2761
2786
|
}
|
|
2762
2787
|
.e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:active {
|
|
2763
|
-
background:
|
|
2788
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2764
2789
|
}
|
|
2765
2790
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-content, .e-accordion .e-acrdn-item .e-acrdn-panel.e-nested .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-content {
|
|
2766
2791
|
color: #212529;
|
|
@@ -2805,7 +2830,7 @@
|
|
|
2805
2830
|
.e-accordion .e-acrdn-item .e-acrdn-header:active {
|
|
2806
2831
|
border: 0;
|
|
2807
2832
|
border-color: initial;
|
|
2808
|
-
background:
|
|
2833
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2809
2834
|
}
|
|
2810
2835
|
.e-accordion .e-acrdn-item .e-acrdn-header:focus {
|
|
2811
2836
|
border: 0;
|
|
@@ -2822,10 +2847,10 @@
|
|
|
2822
2847
|
color: #0d6efd;
|
|
2823
2848
|
}
|
|
2824
2849
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-icons {
|
|
2825
|
-
color:
|
|
2850
|
+
color: rgb(11.7, 99, 227.7);
|
|
2826
2851
|
}
|
|
2827
2852
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-toggle-icon .e-icons.e-tgl-collapse-icon {
|
|
2828
|
-
color:
|
|
2853
|
+
color: rgb(11.7, 99, 227.7);
|
|
2829
2854
|
}
|
|
2830
2855
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover:focus .e-icons, .e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover:focus .e-acrdn-header-content {
|
|
2831
2856
|
color: #212529;
|
|
@@ -2834,19 +2859,19 @@
|
|
|
2834
2859
|
border-color: #dee2e6;
|
|
2835
2860
|
border-style: solid;
|
|
2836
2861
|
border-width: 0 0 1px 0;
|
|
2837
|
-
background:
|
|
2862
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2838
2863
|
}
|
|
2839
2864
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover .e-icons, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover .e-icons {
|
|
2840
|
-
color:
|
|
2865
|
+
color: rgb(11.7, 99, 227.7);
|
|
2841
2866
|
}
|
|
2842
2867
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-icon .e-icons, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-icon .e-icons {
|
|
2843
2868
|
color: #6c757d;
|
|
2844
2869
|
}
|
|
2845
2870
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-content, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-content {
|
|
2846
|
-
color:
|
|
2871
|
+
color: rgb(11.7, 99, 227.7);
|
|
2847
2872
|
}
|
|
2848
2873
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover:focus .e-icons, .e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover:focus .e-acrdn-header-content, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover:focus .e-icons, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover:focus .e-acrdn-header-content {
|
|
2849
|
-
color:
|
|
2874
|
+
color: rgb(11.7, 99, 227.7);
|
|
2850
2875
|
}
|
|
2851
2876
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-icon, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-icon {
|
|
2852
2877
|
color: #6c757d;
|
|
@@ -2855,12 +2880,12 @@
|
|
|
2855
2880
|
border-color: #dee2e6;
|
|
2856
2881
|
}
|
|
2857
2882
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header > .e-toggle-icon, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header > .e-toggle-icon {
|
|
2858
|
-
color:
|
|
2883
|
+
color: rgb(11.7, 99, 227.7);
|
|
2859
2884
|
}
|
|
2860
2885
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
|
|
2861
2886
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-content, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
|
|
2862
2887
|
.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-content {
|
|
2863
|
-
color:
|
|
2888
|
+
color: rgb(11.7, 99, 227.7);
|
|
2864
2889
|
}
|
|
2865
2890
|
.e-accordion .e-acrdn-item.e-select.e-item-focus {
|
|
2866
2891
|
border-color: #dee2e6;
|
|
@@ -2882,10 +2907,10 @@
|
|
|
2882
2907
|
border-bottom: 1px none #dee2e6;
|
|
2883
2908
|
}
|
|
2884
2909
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header > .e-acrdn-header-content {
|
|
2885
|
-
color:
|
|
2910
|
+
color: rgb(11.7, 99, 227.7);
|
|
2886
2911
|
}
|
|
2887
2912
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header > .e-toggle-icon {
|
|
2888
|
-
color:
|
|
2913
|
+
color: rgb(11.7, 99, 227.7);
|
|
2889
2914
|
}
|
|
2890
2915
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header:focus {
|
|
2891
2916
|
position: relative;
|
|
@@ -2905,7 +2930,7 @@
|
|
|
2905
2930
|
color: #212529;
|
|
2906
2931
|
}
|
|
2907
2932
|
.e-accordion .e-acrdn-item.e-selected.e-select > .e-acrdn-header {
|
|
2908
|
-
background:
|
|
2933
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2909
2934
|
border-radius: 0;
|
|
2910
2935
|
border-color: #dee2e6;
|
|
2911
2936
|
border-style: solid;
|
|
@@ -3444,6 +3469,12 @@
|
|
|
3444
3469
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
3445
3470
|
padding: 4px 0;
|
|
3446
3471
|
}
|
|
3472
|
+
.e-contextmenu-wrapper ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon,
|
|
3473
|
+
.e-contextmenu-container ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon {
|
|
3474
|
+
display: -webkit-box;
|
|
3475
|
+
display: -ms-flexbox;
|
|
3476
|
+
display: flex;
|
|
3477
|
+
}
|
|
3447
3478
|
.e-contextmenu-wrapper ul.e-ul,
|
|
3448
3479
|
.e-contextmenu-container ul.e-ul {
|
|
3449
3480
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -3682,7 +3713,7 @@
|
|
|
3682
3713
|
|
|
3683
3714
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll,
|
|
3684
3715
|
.e-contextmenu-container:not(.e-menu-container) .e-menu-vscroll.e-vscroll {
|
|
3685
|
-
background-color:
|
|
3716
|
+
background-color: #fff;
|
|
3686
3717
|
border: 1px solid #dee2e6;
|
|
3687
3718
|
}
|
|
3688
3719
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
@@ -4041,10 +4072,10 @@
|
|
|
4041
4072
|
display: -webkit-inline-box;
|
|
4042
4073
|
display: -ms-inline-flexbox;
|
|
4043
4074
|
display: inline-flex;
|
|
4044
|
-
height:
|
|
4045
|
-
min-width:
|
|
4046
|
-
width:
|
|
4047
|
-
line-height:
|
|
4075
|
+
height: 20px;
|
|
4076
|
+
min-width: 20px;
|
|
4077
|
+
width: 20px;
|
|
4078
|
+
line-height: 1;
|
|
4048
4079
|
}
|
|
4049
4080
|
@media screen and (max-width: 480px) {
|
|
4050
4081
|
.e-tab .e-tab-header .e-toolbar-item .e-icons.e-tab-icon {
|
|
@@ -4054,7 +4085,7 @@
|
|
|
4054
4085
|
}
|
|
4055
4086
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4056
4087
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon::before {
|
|
4057
|
-
font-size:
|
|
4088
|
+
font-size: 16px;
|
|
4058
4089
|
}
|
|
4059
4090
|
@media screen and (max-width: 480px) {
|
|
4060
4091
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
@@ -4211,6 +4242,11 @@
|
|
|
4211
4242
|
height: 26px;
|
|
4212
4243
|
width: 100%;
|
|
4213
4244
|
}
|
|
4245
|
+
@media screen and (max-width: 480px) {
|
|
4246
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-text-wrap {
|
|
4247
|
+
height: 42px;
|
|
4248
|
+
}
|
|
4249
|
+
}
|
|
4214
4250
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-text {
|
|
4215
4251
|
display: -webkit-inline-box;
|
|
4216
4252
|
display: -ms-inline-flexbox;
|
|
@@ -5463,10 +5499,10 @@
|
|
|
5463
5499
|
display: -webkit-inline-box;
|
|
5464
5500
|
display: -ms-inline-flexbox;
|
|
5465
5501
|
display: inline-flex;
|
|
5466
|
-
height:
|
|
5467
|
-
min-width:
|
|
5468
|
-
width:
|
|
5469
|
-
line-height:
|
|
5502
|
+
height: 20px;
|
|
5503
|
+
min-width: 20px;
|
|
5504
|
+
width: 20px;
|
|
5505
|
+
line-height: 1;
|
|
5470
5506
|
}
|
|
5471
5507
|
@media screen and (max-width: 480px) {
|
|
5472
5508
|
.e-tab-clone-element .e-icons.e-tab-icon {
|
|
@@ -5476,7 +5512,7 @@
|
|
|
5476
5512
|
}
|
|
5477
5513
|
.e-tab-clone-element .e-tab-icon,
|
|
5478
5514
|
.e-tab-clone-element .e-tab-icon::before {
|
|
5479
|
-
font-size:
|
|
5515
|
+
font-size: 16px;
|
|
5480
5516
|
}
|
|
5481
5517
|
@media screen and (max-width: 480px) {
|
|
5482
5518
|
.e-tab-clone-element .e-tab-icon,
|
|
@@ -5667,7 +5703,7 @@
|
|
|
5667
5703
|
}
|
|
5668
5704
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
5669
5705
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
5670
|
-
color:
|
|
5706
|
+
color: rgb(10.4, 88, 202.4);
|
|
5671
5707
|
}
|
|
5672
5708
|
.e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
5673
5709
|
border: 1px solid #dee2e6;
|
|
@@ -5708,7 +5744,7 @@
|
|
|
5708
5744
|
color: #6c757d;
|
|
5709
5745
|
}
|
|
5710
5746
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
5711
|
-
color:
|
|
5747
|
+
color: rgb(10.4, 88, 202.4);
|
|
5712
5748
|
}
|
|
5713
5749
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon:active {
|
|
5714
5750
|
color: #0d6efd;
|
|
@@ -5754,7 +5790,7 @@
|
|
|
5754
5790
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
5755
5791
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
|
|
5756
5792
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
|
|
5757
|
-
color:
|
|
5793
|
+
color: rgb(10.4, 88, 202.4);
|
|
5758
5794
|
}
|
|
5759
5795
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active {
|
|
5760
5796
|
background: #e9ecef;
|
|
@@ -5785,7 +5821,7 @@
|
|
|
5785
5821
|
.e-tab .e-tab-header .e-scroll-nav .e-nav-arrow:hover,
|
|
5786
5822
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover {
|
|
5787
5823
|
background: #dee2e6;
|
|
5788
|
-
color:
|
|
5824
|
+
color: rgb(10.4, 88, 202.4);
|
|
5789
5825
|
border: 0;
|
|
5790
5826
|
}
|
|
5791
5827
|
.e-tab .e-tab-header .e-scroll-nav .e-nav-arrow:active,
|
|
@@ -5807,7 +5843,7 @@
|
|
|
5807
5843
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
5808
5844
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
5809
5845
|
background: #dee2e6;
|
|
5810
|
-
color:
|
|
5846
|
+
color: rgb(10.4, 88, 202.4);
|
|
5811
5847
|
}
|
|
5812
5848
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:active,
|
|
5813
5849
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:active {
|
|
@@ -5854,7 +5890,7 @@
|
|
|
5854
5890
|
}
|
|
5855
5891
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
5856
5892
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
5857
|
-
color:
|
|
5893
|
+
color: rgb(10.4, 88, 202.4);
|
|
5858
5894
|
}
|
|
5859
5895
|
.e-tab .e-tab-header .e-hor-nav:focus,
|
|
5860
5896
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus {
|
|
@@ -5996,7 +6032,7 @@
|
|
|
5996
6032
|
background: rgba(233, 236, 239, 0.12);
|
|
5997
6033
|
}
|
|
5998
6034
|
.e-tab .e-tab-header.e-vertical .e-scroll-nav:hover .e-nav-arrow {
|
|
5999
|
-
color:
|
|
6035
|
+
color: rgb(10.4, 88, 202.4);
|
|
6000
6036
|
}
|
|
6001
6037
|
.e-tab .e-tab-header.e-vertical .e-scroll-nav:hover .e-nav-arrow:hover {
|
|
6002
6038
|
background: none;
|
|
@@ -6022,7 +6058,7 @@
|
|
|
6022
6058
|
.e-tab .e-tab-header.e-vertical .e-hor-nav .e-popup-down-icon:hover {
|
|
6023
6059
|
background: inherit;
|
|
6024
6060
|
border: 0;
|
|
6025
|
-
color:
|
|
6061
|
+
color: rgb(10.4, 88, 202.4);
|
|
6026
6062
|
}
|
|
6027
6063
|
.e-tab .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-up-icon,
|
|
6028
6064
|
.e-tab .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-down-icon {
|
|
@@ -6052,7 +6088,7 @@
|
|
|
6052
6088
|
}
|
|
6053
6089
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
6054
6090
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text {
|
|
6055
|
-
color:
|
|
6091
|
+
color: rgb(10.4, 88, 202.4);
|
|
6056
6092
|
}
|
|
6057
6093
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon {
|
|
6058
6094
|
color: #6c757d;
|
|
@@ -6111,10 +6147,10 @@
|
|
|
6111
6147
|
color: #0d6efd;
|
|
6112
6148
|
}
|
|
6113
6149
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text, .e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
6114
|
-
color:
|
|
6150
|
+
color: rgb(10.4, 88, 202.4);
|
|
6115
6151
|
}
|
|
6116
6152
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
6117
|
-
color:
|
|
6153
|
+
color: rgb(10.4, 88, 202.4);
|
|
6118
6154
|
}
|
|
6119
6155
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-text-wrap {
|
|
6120
6156
|
margin-top: 0;
|
|
@@ -6214,21 +6250,21 @@
|
|
|
6214
6250
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
6215
6251
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
6216
6252
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
6217
|
-
color:
|
|
6253
|
+
color: rgb(10.4, 88, 202.4);
|
|
6218
6254
|
}
|
|
6219
6255
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
6220
|
-
background:
|
|
6256
|
+
background: #0d6efd;
|
|
6221
6257
|
border-color: #6c757d;
|
|
6222
6258
|
}
|
|
6223
6259
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
6224
6260
|
color: #adb5bd;
|
|
6225
6261
|
}
|
|
6226
6262
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
6227
|
-
color: #
|
|
6263
|
+
color: #fff;
|
|
6228
6264
|
}
|
|
6229
6265
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
6230
6266
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
6231
|
-
color: #
|
|
6267
|
+
color: #fff;
|
|
6232
6268
|
}
|
|
6233
6269
|
.e-tab.e-background .e-tab-header {
|
|
6234
6270
|
background: #0d6efd;
|
|
@@ -6256,10 +6292,10 @@
|
|
|
6256
6292
|
}
|
|
6257
6293
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
6258
6294
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
6259
|
-
color:
|
|
6295
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6260
6296
|
}
|
|
6261
6297
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
6262
|
-
color:
|
|
6298
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6263
6299
|
}
|
|
6264
6300
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
6265
6301
|
color: #fff;
|
|
@@ -6373,7 +6409,7 @@
|
|
|
6373
6409
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
6374
6410
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
6375
6411
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
6376
|
-
color:
|
|
6412
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6377
6413
|
}
|
|
6378
6414
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover {
|
|
6379
6415
|
background: #e9ecef;
|
|
@@ -6384,13 +6420,13 @@
|
|
|
6384
6420
|
color: #fff;
|
|
6385
6421
|
}
|
|
6386
6422
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active .e-tab-text {
|
|
6387
|
-
color:
|
|
6423
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6388
6424
|
}
|
|
6389
6425
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active .e-tab-icon {
|
|
6390
|
-
color:
|
|
6426
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6391
6427
|
}
|
|
6392
6428
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active .e-close-icon {
|
|
6393
|
-
color:
|
|
6429
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6394
6430
|
}
|
|
6395
6431
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav,
|
|
6396
6432
|
.e-tab.e-background .e-tab-header .e-scroll-nav {
|
|
@@ -6398,7 +6434,7 @@
|
|
|
6398
6434
|
}
|
|
6399
6435
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
6400
6436
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
6401
|
-
color:
|
|
6437
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6402
6438
|
border: 0;
|
|
6403
6439
|
}
|
|
6404
6440
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
@@ -6410,7 +6446,7 @@
|
|
|
6410
6446
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:active,
|
|
6411
6447
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:active {
|
|
6412
6448
|
background: unset;
|
|
6413
|
-
color:
|
|
6449
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6414
6450
|
}
|
|
6415
6451
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
6416
6452
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
@@ -6442,7 +6478,7 @@
|
|
|
6442
6478
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
6443
6479
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
6444
6480
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
6445
|
-
color:
|
|
6481
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6446
6482
|
border: 0;
|
|
6447
6483
|
}
|
|
6448
6484
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
@@ -6593,7 +6629,7 @@
|
|
|
6593
6629
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
6594
6630
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
6595
6631
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
6596
|
-
color:
|
|
6632
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
6597
6633
|
}
|
|
6598
6634
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
6599
6635
|
background: rgba(13, 110, 253, 0.12);
|
|
@@ -7935,6 +7971,9 @@
|
|
|
7935
7971
|
.e-treeview.e-virtualization .e-ul {
|
|
7936
7972
|
overflow: unset;
|
|
7937
7973
|
}
|
|
7974
|
+
.e-treeview .e-mask-parent {
|
|
7975
|
+
display: none;
|
|
7976
|
+
}
|
|
7938
7977
|
.e-treeview > .e-ul {
|
|
7939
7978
|
-webkit-overflow-scrolling: touch;
|
|
7940
7979
|
overflow: auto;
|
|
@@ -8040,6 +8079,11 @@
|
|
|
8040
8079
|
position: absolute;
|
|
8041
8080
|
width: 100%;
|
|
8042
8081
|
}
|
|
8082
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
8083
|
+
.e-treeview .e-fullrow {
|
|
8084
|
+
z-index: -1;
|
|
8085
|
+
}
|
|
8086
|
+
}
|
|
8043
8087
|
.e-treeview .e-checkbox-wrapper {
|
|
8044
8088
|
margin: 0 0 0 12px;
|
|
8045
8089
|
pointer-events: all;
|
|
@@ -8107,7 +8151,7 @@
|
|
|
8107
8151
|
.e-treeview .e-icon-expandable {
|
|
8108
8152
|
display: inline-block;
|
|
8109
8153
|
height: 20px;
|
|
8110
|
-
margin: 0 4px 0 -
|
|
8154
|
+
margin: 0 4px 0 -24px;
|
|
8111
8155
|
vertical-align: middle;
|
|
8112
8156
|
width: 20px;
|
|
8113
8157
|
}
|
|
@@ -8414,7 +8458,7 @@
|
|
|
8414
8458
|
border-color: #fff;
|
|
8415
8459
|
}
|
|
8416
8460
|
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow, .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
|
|
8417
|
-
background-color:
|
|
8461
|
+
background-color: rgb(1.9713114754, 97.5799180328, 238.5286885246);
|
|
8418
8462
|
border-color: #0d6efd;
|
|
8419
8463
|
}
|
|
8420
8464
|
.e-treeview .e-list-item.e-active.e-hover > .e-text-content, .e-treeview .e-list-item.e-active.e-node-focus > .e-text-content {
|
|
@@ -8484,7 +8528,7 @@
|
|
|
8484
8528
|
border-color: #0d6efd;
|
|
8485
8529
|
}
|
|
8486
8530
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-active.e-hover > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-active.e-node-focus > .e-text-content {
|
|
8487
|
-
background-color:
|
|
8531
|
+
background-color: rgb(1.9713114754, 97.5799180328, 238.5286885246);
|
|
8488
8532
|
border-color: #0d6efd;
|
|
8489
8533
|
}
|
|
8490
8534
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-editing.e-active > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-editing.e-hover > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-editing.e-node-focus > .e-text-content {
|
|
@@ -10343,14 +10387,29 @@ ejs-sidebar {
|
|
|
10343
10387
|
padding-right: 8px;
|
|
10344
10388
|
}
|
|
10345
10389
|
|
|
10390
|
+
.e-breadcrumb-menu-item {
|
|
10391
|
+
position: absolute;
|
|
10392
|
+
width: 1px;
|
|
10393
|
+
height: 1px;
|
|
10394
|
+
margin: -1px;
|
|
10395
|
+
padding: 0;
|
|
10396
|
+
overflow: hidden;
|
|
10397
|
+
clip: rect(0, 0, 0, 0);
|
|
10398
|
+
border: 0;
|
|
10399
|
+
}
|
|
10400
|
+
|
|
10401
|
+
.e-hidden-popup {
|
|
10402
|
+
visibility: hidden;
|
|
10403
|
+
}
|
|
10404
|
+
|
|
10346
10405
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
10347
10406
|
color: #0d6efd;
|
|
10348
10407
|
}
|
|
10349
10408
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:hover, .e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
10350
|
-
color:
|
|
10409
|
+
color: rgb(1.762295082, 87.2336065574, 213.237704918);
|
|
10351
10410
|
}
|
|
10352
10411
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:active {
|
|
10353
|
-
color:
|
|
10412
|
+
color: rgb(1.5532786885, 76.887295082, 187.9467213115);
|
|
10354
10413
|
}
|
|
10355
10414
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
10356
10415
|
background: #e9ecef;
|
|
@@ -10361,7 +10420,7 @@ ejs-sidebar {
|
|
|
10361
10420
|
color: #6c757d;
|
|
10362
10421
|
}
|
|
10363
10422
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
10364
|
-
border: 1px solid
|
|
10423
|
+
border: 1px solid rgb(1.762295082, 87.2336065574, 213.237704918);
|
|
10365
10424
|
}
|
|
10366
10425
|
.e-breadcrumb .e-breadcrumb-item[data-active-item] .e-breadcrumb-text {
|
|
10367
10426
|
color: #6c757d;
|
|
@@ -11382,14 +11441,14 @@ ejs-sidebar {
|
|
|
11382
11441
|
.e-stepper:not(.e-step-type-label) .e-indicator:hover,
|
|
11383
11442
|
.e-stepper:not(.e-step-type-label) .e-step:hover {
|
|
11384
11443
|
color: #fff;
|
|
11385
|
-
background:
|
|
11444
|
+
background: rgb(11.05, 93.5, 215.05);
|
|
11386
11445
|
}
|
|
11387
11446
|
.e-stepper:not(.e-step-type-label) .e-step-notstarted .e-indicator:hover, .e-stepper:not(.e-step-type-label) .e-step-notstarted .e-step:hover {
|
|
11388
11447
|
color: #212529;
|
|
11389
11448
|
}
|
|
11390
11449
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-indicator:active,
|
|
11391
11450
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-step:active {
|
|
11392
|
-
background:
|
|
11451
|
+
background: rgb(10.4, 88, 202.4);
|
|
11393
11452
|
}
|
|
11394
11453
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-indicator:active,
|
|
11395
11454
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-step:active {
|