@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/bootstrap4.css
CHANGED
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
padding-right: 0;
|
|
68
68
|
padding-top: 12px;
|
|
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
|
}
|
|
@@ -291,6 +294,12 @@
|
|
|
291
294
|
}
|
|
292
295
|
@media (max-width: 769px) {
|
|
293
296
|
.e-pager {
|
|
297
|
+
display: -webkit-box;
|
|
298
|
+
display: -ms-flexbox;
|
|
299
|
+
display: flex;
|
|
300
|
+
-webkit-box-align: center;
|
|
301
|
+
-ms-flex-align: center;
|
|
302
|
+
align-items: center;
|
|
294
303
|
padding: 13px 0;
|
|
295
304
|
}
|
|
296
305
|
.e-pager div.e-parentmsgbar {
|
|
@@ -464,7 +473,8 @@
|
|
|
464
473
|
.e-pager.e-rtl.e-rtl div.e-parentmsgbar {
|
|
465
474
|
float: initial;
|
|
466
475
|
margin-left: 0;
|
|
467
|
-
margin-top:
|
|
476
|
+
margin-top: 0;
|
|
477
|
+
padding-top: 0;
|
|
468
478
|
}
|
|
469
479
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
470
480
|
float: right;
|
|
@@ -520,7 +530,7 @@
|
|
|
520
530
|
opacity: 1;
|
|
521
531
|
}
|
|
522
532
|
.e-pager .e-numericitem:not(.e-active):not(.e-np):not(.e-pp):hover {
|
|
523
|
-
background-color:
|
|
533
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
524
534
|
opacity: 1;
|
|
525
535
|
}
|
|
526
536
|
.e-pager .e-numericitem {
|
|
@@ -724,14 +734,14 @@
|
|
|
724
734
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
725
735
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
726
736
|
margin-left: 0;
|
|
727
|
-
margin-top:
|
|
737
|
+
margin-top: 0;
|
|
728
738
|
}
|
|
729
739
|
}
|
|
730
740
|
@media (max-width: 769px) {
|
|
731
741
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
732
742
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
733
743
|
margin-left: 0;
|
|
734
|
-
margin-top:
|
|
744
|
+
margin-top: 0;
|
|
735
745
|
}
|
|
736
746
|
}
|
|
737
747
|
.e-bigger .e-pager.e-rtl .e-pp.e-spacing.e-numericitem, .e-bigger .e-pager.e-rtl .e-np.e-spacing.e-numericitem, .e-bigger .e-pager.e-rtl .e-pp.e-spacing.e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-np.e-spacing.e-numericitem:hover,
|
|
@@ -834,7 +844,7 @@
|
|
|
834
844
|
.e-hscroll {
|
|
835
845
|
display: block;
|
|
836
846
|
position: relative;
|
|
837
|
-
width:
|
|
847
|
+
width: 100%;
|
|
838
848
|
}
|
|
839
849
|
.e-hscroll.e-rtl.e-scroll-device {
|
|
840
850
|
padding-left: 50px;
|
|
@@ -991,22 +1001,22 @@
|
|
|
991
1001
|
border-right: 1px solid #ccc;
|
|
992
1002
|
}
|
|
993
1003
|
.e-hscroll.e-rtl .e-scroll-nav:hover {
|
|
994
|
-
background:
|
|
995
|
-
border: 1px
|
|
1004
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
1005
|
+
border: 1px rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
996
1006
|
color: #fff;
|
|
997
1007
|
}
|
|
998
1008
|
.e-hscroll.e-rtl .e-scroll-nav:hover:active {
|
|
999
|
-
background:
|
|
1009
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
1000
1010
|
}
|
|
1001
1011
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav:hover {
|
|
1002
|
-
background:
|
|
1012
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
1003
1013
|
color: #fff;
|
|
1004
1014
|
}
|
|
1005
1015
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav:hover .e-icons {
|
|
1006
1016
|
color: inherit;
|
|
1007
1017
|
}
|
|
1008
1018
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus {
|
|
1009
|
-
background:
|
|
1019
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
1010
1020
|
border: 1px #6c757d;
|
|
1011
1021
|
color: #fff;
|
|
1012
1022
|
}
|
|
@@ -1498,6 +1508,9 @@
|
|
|
1498
1508
|
min-width: 30px;
|
|
1499
1509
|
padding: 3px 4px;
|
|
1500
1510
|
}
|
|
1511
|
+
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
|
|
1512
|
+
pointer-events: none;
|
|
1513
|
+
}
|
|
1501
1514
|
.e-toolbar .e-toolbar-item.e-separator {
|
|
1502
1515
|
margin: 5.5px 6px;
|
|
1503
1516
|
min-height: 27px;
|
|
@@ -1513,6 +1526,9 @@
|
|
|
1513
1526
|
.e-toolbar .e-toolbar-item > * {
|
|
1514
1527
|
text-overflow: ellipsis;
|
|
1515
1528
|
}
|
|
1529
|
+
.e-toolbar .e-toolbar-item:not(.e-overlay) > * {
|
|
1530
|
+
pointer-events: auto;
|
|
1531
|
+
}
|
|
1516
1532
|
.e-toolbar .e-toolbar-item.e-hidden {
|
|
1517
1533
|
display: none;
|
|
1518
1534
|
}
|
|
@@ -1675,6 +1691,9 @@
|
|
|
1675
1691
|
min-width: 100%;
|
|
1676
1692
|
text-overflow: ellipsis;
|
|
1677
1693
|
}
|
|
1694
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1695
|
+
pointer-events: auto;
|
|
1696
|
+
}
|
|
1678
1697
|
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
1679
1698
|
min-width: 100%;
|
|
1680
1699
|
}
|
|
@@ -1788,6 +1807,9 @@
|
|
|
1788
1807
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1789
1808
|
height: auto;
|
|
1790
1809
|
}
|
|
1810
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1811
|
+
pointer-events: auto;
|
|
1812
|
+
}
|
|
1791
1813
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1792
1814
|
-ms-flex-item-align: center;
|
|
1793
1815
|
align-self: center;
|
|
@@ -1801,12 +1823,18 @@
|
|
|
1801
1823
|
display: -ms-inline-flexbox;
|
|
1802
1824
|
display: inline-flex;
|
|
1803
1825
|
}
|
|
1826
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
|
|
1827
|
+
pointer-events: auto;
|
|
1828
|
+
}
|
|
1804
1829
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1805
1830
|
display: table;
|
|
1806
1831
|
}
|
|
1807
1832
|
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1808
1833
|
margin-right: 12px;
|
|
1809
1834
|
}
|
|
1835
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1836
|
+
margin-left: 12px;
|
|
1837
|
+
}
|
|
1810
1838
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1811
1839
|
padding: 0 4px 0 6px;
|
|
1812
1840
|
}
|
|
@@ -1837,6 +1865,7 @@
|
|
|
1837
1865
|
}
|
|
1838
1866
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1839
1867
|
margin-left: 0;
|
|
1868
|
+
margin-right: 12px;
|
|
1840
1869
|
}
|
|
1841
1870
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
1842
1871
|
margin-left: 12px;
|
|
@@ -1844,11 +1873,13 @@
|
|
|
1844
1873
|
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1845
1874
|
margin-left: 0;
|
|
1846
1875
|
}
|
|
1847
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child
|
|
1876
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child {
|
|
1877
|
+
margin-right: 0;
|
|
1878
|
+
}
|
|
1848
1879
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1849
1880
|
margin-right: 0;
|
|
1881
|
+
margin-left: 12px;
|
|
1850
1882
|
}
|
|
1851
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
1852
1883
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
1853
1884
|
margin-right: 12px;
|
|
1854
1885
|
}
|
|
@@ -1902,9 +1933,9 @@
|
|
|
1902
1933
|
color: #495057;
|
|
1903
1934
|
}
|
|
1904
1935
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active {
|
|
1905
|
-
background:
|
|
1906
|
-
-webkit-box-shadow: 0 0 0 0.25em rgba(99, 105,
|
|
1907
|
-
box-shadow: 0 0 0 0.25em rgba(99, 105,
|
|
1936
|
+
background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1937
|
+
-webkit-box-shadow: 0 0 0 0.25em rgba(99.058583691, 105.0384656652, 110.353916309, 0.5);
|
|
1938
|
+
box-shadow: 0 0 0 0.25em rgba(99.058583691, 105.0384656652, 110.353916309, 0.5);
|
|
1908
1939
|
}
|
|
1909
1940
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active .e-tbar-btn-text {
|
|
1910
1941
|
color: #fff;
|
|
@@ -1931,7 +1962,7 @@
|
|
|
1931
1962
|
}
|
|
1932
1963
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
1933
1964
|
background: #6c757d;
|
|
1934
|
-
border-color:
|
|
1965
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1935
1966
|
border-style: solid;
|
|
1936
1967
|
border-width: 1px;
|
|
1937
1968
|
border-radius: 4px;
|
|
@@ -1950,8 +1981,8 @@
|
|
|
1950
1981
|
color: inherit;
|
|
1951
1982
|
}
|
|
1952
1983
|
.e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
1953
|
-
background:
|
|
1954
|
-
border-color:
|
|
1984
|
+
background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1985
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1955
1986
|
border-style: solid;
|
|
1956
1987
|
border-width: 1px;
|
|
1957
1988
|
border-radius: 4px;
|
|
@@ -2016,7 +2047,7 @@
|
|
|
2016
2047
|
content: "";
|
|
2017
2048
|
}
|
|
2018
2049
|
.e-toolbar .e-hor-nav:hover {
|
|
2019
|
-
background:
|
|
2050
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
2020
2051
|
border-left: 0;
|
|
2021
2052
|
color: #fff;
|
|
2022
2053
|
}
|
|
@@ -2029,7 +2060,7 @@
|
|
|
2029
2060
|
border-width: 0;
|
|
2030
2061
|
}
|
|
2031
2062
|
.e-toolbar .e-hor-nav:hover:active {
|
|
2032
|
-
background:
|
|
2063
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
2033
2064
|
border-color: #adb5bd;
|
|
2034
2065
|
border-style: solid;
|
|
2035
2066
|
border-width: 3px 3px 3px 0;
|
|
@@ -2080,7 +2111,7 @@
|
|
|
2080
2111
|
background: #007bff;
|
|
2081
2112
|
-webkit-box-shadow: none;
|
|
2082
2113
|
box-shadow: none;
|
|
2083
|
-
border-color:
|
|
2114
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
2084
2115
|
border-style: solid;
|
|
2085
2116
|
border-width: 0;
|
|
2086
2117
|
}
|
|
@@ -2088,7 +2119,7 @@
|
|
|
2088
2119
|
background: #007bff;
|
|
2089
2120
|
-webkit-box-shadow: none;
|
|
2090
2121
|
box-shadow: none;
|
|
2091
|
-
border-color:
|
|
2122
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
2092
2123
|
border-style: solid;
|
|
2093
2124
|
border-width: 0;
|
|
2094
2125
|
}
|
|
@@ -2124,7 +2155,7 @@
|
|
|
2124
2155
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
2125
2156
|
background: #6c757d;
|
|
2126
2157
|
border-radius: 4px;
|
|
2127
|
-
border-color:
|
|
2158
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
2128
2159
|
border-style: solid;
|
|
2129
2160
|
border-width: 1px;
|
|
2130
2161
|
}
|
|
@@ -2133,7 +2164,7 @@
|
|
|
2133
2164
|
border-radius: 4px;
|
|
2134
2165
|
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
2135
2166
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
2136
|
-
border-color:
|
|
2167
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
2137
2168
|
border-style: solid;
|
|
2138
2169
|
border-width: 1px;
|
|
2139
2170
|
}
|
|
@@ -2754,13 +2785,13 @@
|
|
|
2754
2785
|
color: #007bff;
|
|
2755
2786
|
}
|
|
2756
2787
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-acrdn-header-content {
|
|
2757
|
-
color:
|
|
2788
|
+
color: rgb(0, 86.1, 178.5);
|
|
2758
2789
|
}
|
|
2759
2790
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-icons {
|
|
2760
2791
|
color: #007bff;
|
|
2761
2792
|
}
|
|
2762
2793
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-toggle-icon .e-icons.e-tgl-collapse-icon {
|
|
2763
|
-
color:
|
|
2794
|
+
color: rgb(0, 86.1, 178.5);
|
|
2764
2795
|
}
|
|
2765
2796
|
.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 {
|
|
2766
2797
|
color: #007bff;
|
|
@@ -2772,13 +2803,13 @@
|
|
|
2772
2803
|
background: #f8f9fa;
|
|
2773
2804
|
}
|
|
2774
2805
|
.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 {
|
|
2775
|
-
color:
|
|
2806
|
+
color: rgb(0, 86.1, 178.5);
|
|
2776
2807
|
}
|
|
2777
2808
|
.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 {
|
|
2778
2809
|
color: #007bff;
|
|
2779
2810
|
}
|
|
2780
2811
|
.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 {
|
|
2781
|
-
color:
|
|
2812
|
+
color: rgb(0, 86.1, 178.5);
|
|
2782
2813
|
}
|
|
2783
2814
|
.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 {
|
|
2784
2815
|
color: #007bff;
|
|
@@ -3378,6 +3409,12 @@
|
|
|
3378
3409
|
-webkit-box-shadow: none;
|
|
3379
3410
|
box-shadow: none;
|
|
3380
3411
|
}
|
|
3412
|
+
.e-contextmenu-wrapper ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon,
|
|
3413
|
+
.e-contextmenu-container ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon {
|
|
3414
|
+
display: -webkit-box;
|
|
3415
|
+
display: -ms-flexbox;
|
|
3416
|
+
display: flex;
|
|
3417
|
+
}
|
|
3381
3418
|
.e-contextmenu-wrapper ul.e-ul,
|
|
3382
3419
|
.e-contextmenu-container ul.e-ul {
|
|
3383
3420
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -3588,7 +3625,7 @@
|
|
|
3588
3625
|
}
|
|
3589
3626
|
.e-contextmenu-wrapper ul .e-menu-item.e-focused,
|
|
3590
3627
|
.e-contextmenu-container ul .e-menu-item.e-focused {
|
|
3591
|
-
background-color:
|
|
3628
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
3592
3629
|
color: #212529;
|
|
3593
3630
|
outline: 0 solid #e9ecef;
|
|
3594
3631
|
outline-offset: 0;
|
|
@@ -3640,7 +3677,7 @@
|
|
|
3640
3677
|
|
|
3641
3678
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll,
|
|
3642
3679
|
.e-contextmenu-container:not(.e-menu-container) .e-menu-vscroll.e-vscroll {
|
|
3643
|
-
background-color:
|
|
3680
|
+
background-color: #fff;
|
|
3644
3681
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
3645
3682
|
}
|
|
3646
3683
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
@@ -4007,7 +4044,7 @@
|
|
|
4007
4044
|
height: 20px;
|
|
4008
4045
|
min-width: 20px;
|
|
4009
4046
|
width: 20px;
|
|
4010
|
-
line-height:
|
|
4047
|
+
line-height: 1;
|
|
4011
4048
|
}
|
|
4012
4049
|
@media screen and (max-width: 480px) {
|
|
4013
4050
|
.e-tab .e-tab-header .e-toolbar-item .e-icons.e-tab-icon {
|
|
@@ -4017,7 +4054,7 @@
|
|
|
4017
4054
|
}
|
|
4018
4055
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4019
4056
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon::before {
|
|
4020
|
-
font-size:
|
|
4057
|
+
font-size: 16px;
|
|
4021
4058
|
}
|
|
4022
4059
|
@media screen and (max-width: 480px) {
|
|
4023
4060
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
@@ -4174,6 +4211,11 @@
|
|
|
4174
4211
|
height: 26px;
|
|
4175
4212
|
width: 100%;
|
|
4176
4213
|
}
|
|
4214
|
+
@media screen and (max-width: 480px) {
|
|
4215
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-text-wrap {
|
|
4216
|
+
height: 42px;
|
|
4217
|
+
}
|
|
4218
|
+
}
|
|
4177
4219
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-text {
|
|
4178
4220
|
display: -webkit-inline-box;
|
|
4179
4221
|
display: -ms-inline-flexbox;
|
|
@@ -5429,7 +5471,7 @@
|
|
|
5429
5471
|
height: 20px;
|
|
5430
5472
|
min-width: 20px;
|
|
5431
5473
|
width: 20px;
|
|
5432
|
-
line-height:
|
|
5474
|
+
line-height: 1;
|
|
5433
5475
|
}
|
|
5434
5476
|
@media screen and (max-width: 480px) {
|
|
5435
5477
|
.e-tab-clone-element .e-icons.e-tab-icon {
|
|
@@ -5439,7 +5481,7 @@
|
|
|
5439
5481
|
}
|
|
5440
5482
|
.e-tab-clone-element .e-tab-icon,
|
|
5441
5483
|
.e-tab-clone-element .e-tab-icon::before {
|
|
5442
|
-
font-size:
|
|
5484
|
+
font-size: 16px;
|
|
5443
5485
|
}
|
|
5444
5486
|
@media screen and (max-width: 480px) {
|
|
5445
5487
|
.e-tab-clone-element .e-tab-icon,
|
|
@@ -5630,7 +5672,7 @@
|
|
|
5630
5672
|
}
|
|
5631
5673
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
5632
5674
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
5633
|
-
color:
|
|
5675
|
+
color: rgb(0, 86.1, 178.5);
|
|
5634
5676
|
}
|
|
5635
5677
|
.e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
5636
5678
|
border: 1px solid #dee2e6;
|
|
@@ -5710,14 +5752,14 @@
|
|
|
5710
5752
|
color: #212529;
|
|
5711
5753
|
}
|
|
5712
5754
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover {
|
|
5713
|
-
background:
|
|
5755
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
5714
5756
|
border: 1px solid transparent;
|
|
5715
5757
|
border-radius: 0;
|
|
5716
5758
|
}
|
|
5717
5759
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
5718
5760
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
|
|
5719
5761
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
|
|
5720
|
-
color:
|
|
5762
|
+
color: rgb(0, 86.1, 178.5);
|
|
5721
5763
|
}
|
|
5722
5764
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active {
|
|
5723
5765
|
background: #007bff;
|
|
@@ -5747,7 +5789,7 @@
|
|
|
5747
5789
|
}
|
|
5748
5790
|
.e-tab .e-tab-header .e-scroll-nav .e-nav-arrow:hover,
|
|
5749
5791
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover {
|
|
5750
|
-
background:
|
|
5792
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5751
5793
|
color: #fff;
|
|
5752
5794
|
border: 0;
|
|
5753
5795
|
}
|
|
@@ -5769,7 +5811,7 @@
|
|
|
5769
5811
|
}
|
|
5770
5812
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
5771
5813
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
5772
|
-
background:
|
|
5814
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5773
5815
|
color: #fff;
|
|
5774
5816
|
}
|
|
5775
5817
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:active,
|
|
@@ -5792,7 +5834,7 @@
|
|
|
5792
5834
|
.e-tab .e-tab-header .e-scroll-nav.e-overlay .e-nav-arrow:hover,
|
|
5793
5835
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav.e-overlay .e-nav-arrow:hover {
|
|
5794
5836
|
color: rgba(108, 117, 125, 0.65);
|
|
5795
|
-
background:
|
|
5837
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5796
5838
|
border-color: unset;
|
|
5797
5839
|
}
|
|
5798
5840
|
.e-tab .e-tab-header .e-hor-nav,
|
|
@@ -5811,7 +5853,7 @@
|
|
|
5811
5853
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
5812
5854
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
5813
5855
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
5814
|
-
background:
|
|
5856
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5815
5857
|
border: 0;
|
|
5816
5858
|
border-radius: 4px;
|
|
5817
5859
|
}
|
|
@@ -5836,7 +5878,7 @@
|
|
|
5836
5878
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover,
|
|
5837
5879
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
5838
5880
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover {
|
|
5839
|
-
background:
|
|
5881
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5840
5882
|
border: 0;
|
|
5841
5883
|
border-radius: 4px;
|
|
5842
5884
|
}
|
|
@@ -5844,7 +5886,7 @@
|
|
|
5844
5886
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active,
|
|
5845
5887
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
5846
5888
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active {
|
|
5847
|
-
background:
|
|
5889
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5848
5890
|
color: #212529;
|
|
5849
5891
|
border: 0;
|
|
5850
5892
|
border-radius: 4px;
|
|
@@ -6015,10 +6057,10 @@
|
|
|
6015
6057
|
}
|
|
6016
6058
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
6017
6059
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text {
|
|
6018
|
-
color:
|
|
6060
|
+
color: rgb(0, 86.1, 178.5);
|
|
6019
6061
|
}
|
|
6020
6062
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon {
|
|
6021
|
-
color:
|
|
6063
|
+
color: rgb(0, 86.1, 178.5);
|
|
6022
6064
|
}
|
|
6023
6065
|
.e-tab.e-focused > .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
6024
6066
|
color: #212529;
|
|
@@ -6074,10 +6116,10 @@
|
|
|
6074
6116
|
color: #007bff;
|
|
6075
6117
|
}
|
|
6076
6118
|
.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 {
|
|
6077
|
-
color:
|
|
6119
|
+
color: rgb(0, 86.1, 178.5);
|
|
6078
6120
|
}
|
|
6079
6121
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
6080
|
-
color:
|
|
6122
|
+
color: rgb(0, 86.1, 178.5);
|
|
6081
6123
|
}
|
|
6082
6124
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-text-wrap {
|
|
6083
6125
|
margin-top: 0;
|
|
@@ -6177,21 +6219,21 @@
|
|
|
6177
6219
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
6178
6220
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
6179
6221
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
6180
|
-
color:
|
|
6222
|
+
color: rgb(0, 86.1, 178.5);
|
|
6181
6223
|
}
|
|
6182
6224
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
6183
|
-
background: #
|
|
6225
|
+
background: #007bff;
|
|
6184
6226
|
border-color: unset;
|
|
6185
6227
|
}
|
|
6186
6228
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
6187
|
-
color:
|
|
6229
|
+
color: rgb(0, 86.1, 178.5);
|
|
6188
6230
|
}
|
|
6189
6231
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
6190
|
-
color: #
|
|
6232
|
+
color: #fff;
|
|
6191
6233
|
}
|
|
6192
6234
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
6193
6235
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
6194
|
-
color: #
|
|
6236
|
+
color: #fff;
|
|
6195
6237
|
}
|
|
6196
6238
|
.e-tab.e-background .e-tab-header {
|
|
6197
6239
|
background: inherit;
|
|
@@ -6233,7 +6275,7 @@
|
|
|
6233
6275
|
border-color: #e9ecef;
|
|
6234
6276
|
}
|
|
6235
6277
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text {
|
|
6236
|
-
color:
|
|
6278
|
+
color: rgb(0, 86.1, 178.5);
|
|
6237
6279
|
}
|
|
6238
6280
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
6239
6281
|
color: #fff;
|
|
@@ -6412,7 +6454,7 @@
|
|
|
6412
6454
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
6413
6455
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
6414
6456
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
6415
|
-
background:
|
|
6457
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
6416
6458
|
border-color: unset;
|
|
6417
6459
|
color: #fff;
|
|
6418
6460
|
}
|
|
@@ -6420,7 +6462,7 @@
|
|
|
6420
6462
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:active:hover,
|
|
6421
6463
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:active:hover,
|
|
6422
6464
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:active:hover {
|
|
6423
|
-
background:
|
|
6465
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
6424
6466
|
color: #fff;
|
|
6425
6467
|
}
|
|
6426
6468
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
@@ -6435,13 +6477,13 @@
|
|
|
6435
6477
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover,
|
|
6436
6478
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
6437
6479
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover {
|
|
6438
|
-
background:
|
|
6480
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
6439
6481
|
}
|
|
6440
6482
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
6441
6483
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active,
|
|
6442
6484
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
6443
6485
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active {
|
|
6444
|
-
background:
|
|
6486
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
6445
6487
|
border-color: unset;
|
|
6446
6488
|
color: #fff;
|
|
6447
6489
|
}
|
|
@@ -6572,28 +6614,28 @@
|
|
|
6572
6614
|
border-radius: 4px 4px 0 0;
|
|
6573
6615
|
}
|
|
6574
6616
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
6575
|
-
color:
|
|
6617
|
+
color: rgb(0, 86.1, 178.5);
|
|
6576
6618
|
}
|
|
6577
6619
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
6578
6620
|
color: #fff;
|
|
6579
6621
|
}
|
|
6580
6622
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
6581
|
-
color:
|
|
6623
|
+
color: rgb(0, 86.1, 178.5);
|
|
6582
6624
|
}
|
|
6583
6625
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text {
|
|
6584
|
-
color:
|
|
6626
|
+
color: rgb(0, 86.1, 178.5);
|
|
6585
6627
|
}
|
|
6586
6628
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
|
|
6587
6629
|
color: #fff;
|
|
6588
6630
|
}
|
|
6589
6631
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-close-icon {
|
|
6590
|
-
color:
|
|
6632
|
+
color: rgb(0, 86.1, 178.5);
|
|
6591
6633
|
}
|
|
6592
6634
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus:hover .e-tab-text {
|
|
6593
|
-
color:
|
|
6635
|
+
color: rgb(0, 86.1, 178.5);
|
|
6594
6636
|
}
|
|
6595
6637
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus:hover .e-close-icon {
|
|
6596
|
-
color:
|
|
6638
|
+
color: rgb(0, 86.1, 178.5);
|
|
6597
6639
|
}
|
|
6598
6640
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active.e-itop .e-tab-wrap, .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active.e-ibottom .e-tab-wrap {
|
|
6599
6641
|
background: #37b;
|
|
@@ -7897,6 +7939,9 @@
|
|
|
7897
7939
|
.e-treeview.e-virtualization .e-ul {
|
|
7898
7940
|
overflow: unset;
|
|
7899
7941
|
}
|
|
7942
|
+
.e-treeview .e-mask-parent {
|
|
7943
|
+
display: none;
|
|
7944
|
+
}
|
|
7900
7945
|
.e-treeview > .e-ul {
|
|
7901
7946
|
-webkit-overflow-scrolling: touch;
|
|
7902
7947
|
overflow: auto;
|
|
@@ -8002,6 +8047,11 @@
|
|
|
8002
8047
|
position: absolute;
|
|
8003
8048
|
width: 100%;
|
|
8004
8049
|
}
|
|
8050
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
8051
|
+
.e-treeview .e-fullrow {
|
|
8052
|
+
z-index: -1;
|
|
8053
|
+
}
|
|
8054
|
+
}
|
|
8005
8055
|
.e-treeview .e-checkbox-wrapper {
|
|
8006
8056
|
margin: 0 0 0 5px;
|
|
8007
8057
|
pointer-events: all;
|
|
@@ -8329,8 +8379,8 @@
|
|
|
8329
8379
|
background: transparent;
|
|
8330
8380
|
}
|
|
8331
8381
|
.e-treeview .e-list-item.e-hover > .e-fullrow, .e-treeview .e-list-item.e-node-focus > .e-fullrow {
|
|
8332
|
-
background-color:
|
|
8333
|
-
border-color:
|
|
8382
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
8383
|
+
border-color: rgb(242.05, 243.9, 245.75);
|
|
8334
8384
|
}
|
|
8335
8385
|
.e-treeview .e-list-item.e-hover > .e-text-content, .e-treeview .e-list-item.e-node-focus > .e-text-content {
|
|
8336
8386
|
color: #212529;
|
|
@@ -8376,8 +8426,8 @@
|
|
|
8376
8426
|
color: #007bff;
|
|
8377
8427
|
}
|
|
8378
8428
|
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow, .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
|
|
8379
|
-
background-color:
|
|
8380
|
-
border-color:
|
|
8429
|
+
background-color: rgb(0, 104.55, 216.75);
|
|
8430
|
+
border-color: rgb(0, 104.55, 216.75);
|
|
8381
8431
|
}
|
|
8382
8432
|
.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 {
|
|
8383
8433
|
color: #fff;
|
|
@@ -8436,16 +8486,16 @@
|
|
|
8436
8486
|
border-top-color: transparent;
|
|
8437
8487
|
}
|
|
8438
8488
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-hover > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-node-focus > .e-text-content {
|
|
8439
|
-
background-color:
|
|
8440
|
-
border-color:
|
|
8489
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
8490
|
+
border-color: rgb(242.05, 243.9, 245.75);
|
|
8441
8491
|
}
|
|
8442
8492
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-active > .e-text-content {
|
|
8443
8493
|
background-color: #007bff;
|
|
8444
8494
|
border-color: #007bff;
|
|
8445
8495
|
}
|
|
8446
8496
|
.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 {
|
|
8447
|
-
background-color:
|
|
8448
|
-
border-color:
|
|
8497
|
+
background-color: rgb(0, 104.55, 216.75);
|
|
8498
|
+
border-color: rgb(0, 104.55, 216.75);
|
|
8449
8499
|
}
|
|
8450
8500
|
.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 {
|
|
8451
8501
|
background-color: transparent;
|
|
@@ -8551,7 +8601,7 @@
|
|
|
8551
8601
|
.e-bigger .e-treeview .e-list-text,
|
|
8552
8602
|
.e-treeview.e-bigger .e-list-text {
|
|
8553
8603
|
line-height: 36px;
|
|
8554
|
-
min-height:
|
|
8604
|
+
min-height: 36px;
|
|
8555
8605
|
}
|
|
8556
8606
|
.e-bigger .e-treeview .e-list-text .e-input-group,
|
|
8557
8607
|
.e-treeview.e-bigger .e-list-text .e-input-group {
|
|
@@ -9548,7 +9598,7 @@ ejs-sidebar {
|
|
|
9548
9598
|
}
|
|
9549
9599
|
.e-menu-wrapper .e-menu .e-menu-item.e-focused,
|
|
9550
9600
|
.e-menu-container .e-menu .e-menu-item.e-focused {
|
|
9551
|
-
color:
|
|
9601
|
+
color: rgb(0, 86.1, 178.5);
|
|
9552
9602
|
outline: 0 solid #f8f9fa;
|
|
9553
9603
|
outline-offset: 0;
|
|
9554
9604
|
background: transparent;
|
|
@@ -9559,16 +9609,16 @@ ejs-sidebar {
|
|
|
9559
9609
|
}
|
|
9560
9610
|
.e-menu-wrapper .e-menu .e-menu-item.e-focused .e-menu-icon,
|
|
9561
9611
|
.e-menu-container .e-menu .e-menu-item.e-focused .e-menu-icon {
|
|
9562
|
-
color:
|
|
9612
|
+
color: rgb(0, 86.1, 178.5);
|
|
9563
9613
|
}
|
|
9564
9614
|
.e-menu-wrapper .e-menu .e-menu-item.e-selected, .e-menu-wrapper .e-menu .e-menu-item.e-active-item,
|
|
9565
9615
|
.e-menu-container .e-menu .e-menu-item.e-selected,
|
|
9566
9616
|
.e-menu-container .e-menu .e-menu-item.e-active-item {
|
|
9567
|
-
color:
|
|
9568
|
-
outline: 0 solid
|
|
9617
|
+
color: rgb(0, 86.1, 178.5);
|
|
9618
|
+
outline: 0 solid rgb(242.05, 243.9, 245.75);
|
|
9569
9619
|
outline-offset: 0;
|
|
9570
9620
|
background: transparent;
|
|
9571
|
-
background:
|
|
9621
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
9572
9622
|
}
|
|
9573
9623
|
.e-menu-wrapper .e-menu .e-menu-item.e-selected .e-caret, .e-menu-wrapper .e-menu .e-menu-item.e-active-item .e-caret,
|
|
9574
9624
|
.e-menu-container .e-menu .e-menu-item.e-selected .e-caret,
|
|
@@ -9633,7 +9683,7 @@ ejs-sidebar {
|
|
|
9633
9683
|
}
|
|
9634
9684
|
.e-menu-wrapper .e-ul .e-menu-item.e-focused,
|
|
9635
9685
|
.e-menu-container .e-ul .e-menu-item.e-focused {
|
|
9636
|
-
background-color:
|
|
9686
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
9637
9687
|
color: #212529;
|
|
9638
9688
|
outline: 0 solid #e9ecef;
|
|
9639
9689
|
outline-offset: 0;
|
|
@@ -9668,8 +9718,8 @@ ejs-sidebar {
|
|
|
9668
9718
|
}
|
|
9669
9719
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:hover,
|
|
9670
9720
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:hover {
|
|
9671
|
-
background:
|
|
9672
|
-
border: 1px inset
|
|
9721
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
9722
|
+
border: 1px inset rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
9673
9723
|
}
|
|
9674
9724
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:hover .e-icons,
|
|
9675
9725
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:hover .e-icons {
|
|
@@ -9677,8 +9727,8 @@ ejs-sidebar {
|
|
|
9677
9727
|
}
|
|
9678
9728
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:focus,
|
|
9679
9729
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:focus {
|
|
9680
|
-
background:
|
|
9681
|
-
border-color:
|
|
9730
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
9731
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
9682
9732
|
}
|
|
9683
9733
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:focus .e-icons,
|
|
9684
9734
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:focus .e-icons {
|
|
@@ -9686,8 +9736,8 @@ ejs-sidebar {
|
|
|
9686
9736
|
}
|
|
9687
9737
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:active,
|
|
9688
9738
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:active {
|
|
9689
|
-
background:
|
|
9690
|
-
border: 1px inset
|
|
9739
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
9740
|
+
border: 1px inset rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
9691
9741
|
}
|
|
9692
9742
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
9693
9743
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav {
|
|
@@ -9701,7 +9751,7 @@ ejs-sidebar {
|
|
|
9701
9751
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:hover, .e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:focus,
|
|
9702
9752
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:hover,
|
|
9703
9753
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:focus {
|
|
9704
|
-
background:
|
|
9754
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
9705
9755
|
}
|
|
9706
9756
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active,
|
|
9707
9757
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
@@ -10324,14 +10374,29 @@ ejs-sidebar {
|
|
|
10324
10374
|
padding-right: 8px;
|
|
10325
10375
|
}
|
|
10326
10376
|
|
|
10377
|
+
.e-breadcrumb-menu-item {
|
|
10378
|
+
position: absolute;
|
|
10379
|
+
width: 1px;
|
|
10380
|
+
height: 1px;
|
|
10381
|
+
margin: -1px;
|
|
10382
|
+
padding: 0;
|
|
10383
|
+
overflow: hidden;
|
|
10384
|
+
clip: rect(0, 0, 0, 0);
|
|
10385
|
+
border: 0;
|
|
10386
|
+
}
|
|
10387
|
+
|
|
10388
|
+
.e-hidden-popup {
|
|
10389
|
+
visibility: hidden;
|
|
10390
|
+
}
|
|
10391
|
+
|
|
10327
10392
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
10328
10393
|
color: #007bff;
|
|
10329
10394
|
}
|
|
10330
10395
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:hover, .e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
10331
|
-
color:
|
|
10396
|
+
color: rgb(0, 86.1, 178.5);
|
|
10332
10397
|
}
|
|
10333
10398
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:active {
|
|
10334
|
-
color:
|
|
10399
|
+
color: rgb(0, 73.8, 153);
|
|
10335
10400
|
}
|
|
10336
10401
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
10337
10402
|
background: #dee2e6;
|
|
@@ -10392,11 +10457,11 @@ ejs-sidebar {
|
|
|
10392
10457
|
color: #6c757d;
|
|
10393
10458
|
}
|
|
10394
10459
|
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
10395
|
-
background:
|
|
10460
|
+
background: rgb(253.95, 254.1, 254.25);
|
|
10396
10461
|
color: #212529;
|
|
10397
10462
|
}
|
|
10398
10463
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
10399
|
-
background:
|
|
10464
|
+
background: rgb(253.95, 254.1, 254.25);
|
|
10400
10465
|
color: #212529;
|
|
10401
10466
|
}
|
|
10402
10467
|
|
|
@@ -11359,14 +11424,14 @@ ejs-sidebar {
|
|
|
11359
11424
|
.e-stepper:not(.e-step-type-label) .e-indicator:hover,
|
|
11360
11425
|
.e-stepper:not(.e-step-type-label) .e-step:hover {
|
|
11361
11426
|
color: #fff;
|
|
11362
|
-
background:
|
|
11427
|
+
background: rgb(0, 98.4, 204);
|
|
11363
11428
|
}
|
|
11364
11429
|
.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 {
|
|
11365
11430
|
color: #495057;
|
|
11366
11431
|
}
|
|
11367
11432
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-indicator:active,
|
|
11368
11433
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-step:active {
|
|
11369
|
-
background:
|
|
11434
|
+
background: rgb(0, 98.4, 204);
|
|
11370
11435
|
}
|
|
11371
11436
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-indicator:active,
|
|
11372
11437
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-step:active {
|