@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/fluent-lite.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
|
}
|
|
@@ -293,6 +296,12 @@
|
|
|
293
296
|
}
|
|
294
297
|
@media (max-width: 769px) {
|
|
295
298
|
.e-pager {
|
|
299
|
+
display: -webkit-box;
|
|
300
|
+
display: -ms-flexbox;
|
|
301
|
+
display: flex;
|
|
302
|
+
-webkit-box-align: center;
|
|
303
|
+
-ms-flex-align: center;
|
|
304
|
+
align-items: center;
|
|
296
305
|
padding: 13px 0;
|
|
297
306
|
}
|
|
298
307
|
.e-pager div.e-parentmsgbar {
|
|
@@ -466,7 +475,8 @@
|
|
|
466
475
|
.e-pager.e-rtl.e-rtl div.e-parentmsgbar {
|
|
467
476
|
float: initial;
|
|
468
477
|
margin-left: 0;
|
|
469
|
-
margin-top:
|
|
478
|
+
margin-top: 0;
|
|
479
|
+
padding-top: 0;
|
|
470
480
|
}
|
|
471
481
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
472
482
|
float: right;
|
|
@@ -651,7 +661,7 @@
|
|
|
651
661
|
.e-hscroll {
|
|
652
662
|
display: block;
|
|
653
663
|
position: relative;
|
|
654
|
-
width:
|
|
664
|
+
width: 100%;
|
|
655
665
|
}
|
|
656
666
|
.e-hscroll.e-rtl.e-scroll-device {
|
|
657
667
|
padding-left: 40px;
|
|
@@ -1273,6 +1283,9 @@
|
|
|
1273
1283
|
min-width: 28px;
|
|
1274
1284
|
padding: 0;
|
|
1275
1285
|
}
|
|
1286
|
+
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
|
|
1287
|
+
pointer-events: none;
|
|
1288
|
+
}
|
|
1276
1289
|
.e-toolbar .e-toolbar-item.e-separator {
|
|
1277
1290
|
margin: 4px;
|
|
1278
1291
|
min-height: 24px;
|
|
@@ -1288,6 +1301,9 @@
|
|
|
1288
1301
|
.e-toolbar .e-toolbar-item > * {
|
|
1289
1302
|
text-overflow: ellipsis;
|
|
1290
1303
|
}
|
|
1304
|
+
.e-toolbar .e-toolbar-item:not(.e-overlay) > * {
|
|
1305
|
+
pointer-events: auto;
|
|
1306
|
+
}
|
|
1291
1307
|
.e-toolbar .e-toolbar-item.e-hidden {
|
|
1292
1308
|
display: none;
|
|
1293
1309
|
}
|
|
@@ -1450,6 +1466,9 @@
|
|
|
1450
1466
|
min-width: 100%;
|
|
1451
1467
|
text-overflow: ellipsis;
|
|
1452
1468
|
}
|
|
1469
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1470
|
+
pointer-events: auto;
|
|
1471
|
+
}
|
|
1453
1472
|
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
1454
1473
|
min-width: 100%;
|
|
1455
1474
|
}
|
|
@@ -1563,6 +1582,9 @@
|
|
|
1563
1582
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1564
1583
|
height: auto;
|
|
1565
1584
|
}
|
|
1585
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1586
|
+
pointer-events: auto;
|
|
1587
|
+
}
|
|
1566
1588
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1567
1589
|
-ms-flex-item-align: center;
|
|
1568
1590
|
align-self: center;
|
|
@@ -1576,12 +1598,18 @@
|
|
|
1576
1598
|
display: -ms-inline-flexbox;
|
|
1577
1599
|
display: inline-flex;
|
|
1578
1600
|
}
|
|
1601
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
|
|
1602
|
+
pointer-events: auto;
|
|
1603
|
+
}
|
|
1579
1604
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1580
1605
|
display: table;
|
|
1581
1606
|
}
|
|
1582
1607
|
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1583
1608
|
margin-right: 8px;
|
|
1584
1609
|
}
|
|
1610
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1611
|
+
margin-left: 8px;
|
|
1612
|
+
}
|
|
1585
1613
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1586
1614
|
padding: 4px;
|
|
1587
1615
|
}
|
|
@@ -1612,6 +1640,7 @@
|
|
|
1612
1640
|
}
|
|
1613
1641
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1614
1642
|
margin-left: 0;
|
|
1643
|
+
margin-right: 8px;
|
|
1615
1644
|
}
|
|
1616
1645
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
1617
1646
|
margin-left: 8px;
|
|
@@ -1619,11 +1648,13 @@
|
|
|
1619
1648
|
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1620
1649
|
margin-left: 0;
|
|
1621
1650
|
}
|
|
1622
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child
|
|
1651
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child {
|
|
1652
|
+
margin-right: 0;
|
|
1653
|
+
}
|
|
1623
1654
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1624
1655
|
margin-right: 0;
|
|
1656
|
+
margin-left: 8px;
|
|
1625
1657
|
}
|
|
1626
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
1627
1658
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
1628
1659
|
margin-right: 8px;
|
|
1629
1660
|
}
|
|
@@ -2794,6 +2825,12 @@
|
|
|
2794
2825
|
-webkit-box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
2795
2826
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
2796
2827
|
}
|
|
2828
|
+
.e-contextmenu-wrapper ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon,
|
|
2829
|
+
.e-contextmenu-container ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon {
|
|
2830
|
+
display: -webkit-box;
|
|
2831
|
+
display: -ms-flexbox;
|
|
2832
|
+
display: flex;
|
|
2833
|
+
}
|
|
2797
2834
|
.e-contextmenu-wrapper ul.e-ul,
|
|
2798
2835
|
.e-contextmenu-container ul.e-ul {
|
|
2799
2836
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -3055,7 +3092,7 @@
|
|
|
3055
3092
|
|
|
3056
3093
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll,
|
|
3057
3094
|
.e-contextmenu-container:not(.e-menu-container) .e-menu-vscroll.e-vscroll {
|
|
3058
|
-
background-color:
|
|
3095
|
+
background-color: #fff;
|
|
3059
3096
|
border: 1px solid #edebe9;
|
|
3060
3097
|
}
|
|
3061
3098
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
@@ -3530,6 +3567,11 @@
|
|
|
3530
3567
|
height: 26px;
|
|
3531
3568
|
width: 100%;
|
|
3532
3569
|
}
|
|
3570
|
+
@media screen and (max-width: 480px) {
|
|
3571
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-text-wrap {
|
|
3572
|
+
height: 48px;
|
|
3573
|
+
}
|
|
3574
|
+
}
|
|
3533
3575
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-text {
|
|
3534
3576
|
display: -webkit-inline-box;
|
|
3535
3577
|
display: -ms-inline-flexbox;
|
|
@@ -4552,13 +4594,13 @@
|
|
|
4552
4594
|
padding: 0 12px;
|
|
4553
4595
|
}
|
|
4554
4596
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus {
|
|
4555
|
-
height:
|
|
4597
|
+
height: 44px;
|
|
4556
4598
|
}
|
|
4557
4599
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-text-wrap {
|
|
4558
|
-
height:
|
|
4600
|
+
height: 44px;
|
|
4559
4601
|
}
|
|
4560
4602
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
4561
|
-
height:
|
|
4603
|
+
height: 44px;
|
|
4562
4604
|
}
|
|
4563
4605
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus, .e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus {
|
|
4564
4606
|
height: 62px;
|
|
@@ -5536,18 +5578,18 @@
|
|
|
5536
5578
|
color: #201f1e;
|
|
5537
5579
|
}
|
|
5538
5580
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
5539
|
-
background: #
|
|
5581
|
+
background: #0078d4;
|
|
5540
5582
|
border-color: unset;
|
|
5541
5583
|
}
|
|
5542
5584
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
5543
|
-
color: #
|
|
5585
|
+
color: #fff;
|
|
5544
5586
|
}
|
|
5545
5587
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
5546
|
-
color: #
|
|
5588
|
+
color: #fff;
|
|
5547
5589
|
}
|
|
5548
5590
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
5549
5591
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
5550
|
-
color: #
|
|
5592
|
+
color: #fff;
|
|
5551
5593
|
}
|
|
5552
5594
|
.e-tab.e-background .e-tab-header {
|
|
5553
5595
|
background: #0078d4;
|
|
@@ -5584,8 +5626,8 @@
|
|
|
5584
5626
|
color: #fff;
|
|
5585
5627
|
}
|
|
5586
5628
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
5587
|
-
background:
|
|
5588
|
-
background-color:
|
|
5629
|
+
background: rgb(0, 91.1320754717, 161);
|
|
5630
|
+
background-color: rgb(0, 91.1320754717, 161);
|
|
5589
5631
|
border-color: unset;
|
|
5590
5632
|
}
|
|
5591
5633
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text {
|
|
@@ -5722,7 +5764,7 @@
|
|
|
5722
5764
|
}
|
|
5723
5765
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
5724
5766
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
5725
|
-
background:
|
|
5767
|
+
background: rgb(0, 91.1320754717, 161);
|
|
5726
5768
|
color: #fff;
|
|
5727
5769
|
border-color: unset;
|
|
5728
5770
|
}
|
|
@@ -5784,20 +5826,20 @@
|
|
|
5784
5826
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
5785
5827
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
5786
5828
|
color: #fff;
|
|
5787
|
-
background:
|
|
5829
|
+
background: rgb(0, 91.1320754717, 161);
|
|
5788
5830
|
border: 1px solid #edebe9;
|
|
5789
5831
|
}
|
|
5790
5832
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
5791
5833
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover,
|
|
5792
5834
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
5793
5835
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover {
|
|
5794
|
-
background:
|
|
5836
|
+
background: rgb(0, 91.1320754717, 161);
|
|
5795
5837
|
}
|
|
5796
5838
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
5797
5839
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active,
|
|
5798
5840
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
5799
5841
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active {
|
|
5800
|
-
background:
|
|
5842
|
+
background: rgb(0, 91.1320754717, 161);
|
|
5801
5843
|
border-color: #edebe9;
|
|
5802
5844
|
color: #fff;
|
|
5803
5845
|
}
|
|
@@ -5906,7 +5948,7 @@
|
|
|
5906
5948
|
background: rgba(237, 235, 233, 0.38);
|
|
5907
5949
|
}
|
|
5908
5950
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus {
|
|
5909
|
-
background:
|
|
5951
|
+
background: rgb(0, 91.1320754717, 161);
|
|
5910
5952
|
border-color: unset;
|
|
5911
5953
|
}
|
|
5912
5954
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
@@ -6053,6 +6095,9 @@
|
|
|
6053
6095
|
.e-treeview.e-virtualization .e-ul {
|
|
6054
6096
|
overflow: unset;
|
|
6055
6097
|
}
|
|
6098
|
+
.e-treeview .e-mask-parent {
|
|
6099
|
+
display: none;
|
|
6100
|
+
}
|
|
6056
6101
|
.e-treeview > .e-ul {
|
|
6057
6102
|
-webkit-overflow-scrolling: touch;
|
|
6058
6103
|
overflow: auto;
|
|
@@ -6158,6 +6203,11 @@
|
|
|
6158
6203
|
position: absolute;
|
|
6159
6204
|
width: 100%;
|
|
6160
6205
|
}
|
|
6206
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
6207
|
+
.e-treeview .e-fullrow {
|
|
6208
|
+
z-index: -1;
|
|
6209
|
+
}
|
|
6210
|
+
}
|
|
6161
6211
|
.e-treeview .e-checkbox-wrapper {
|
|
6162
6212
|
margin: 0 0 0 12px;
|
|
6163
6213
|
pointer-events: all;
|
|
@@ -6340,19 +6390,17 @@
|
|
|
6340
6390
|
float: left;
|
|
6341
6391
|
}
|
|
6342
6392
|
.e-treeview.e-drag-item .e-text-content .e-list-text {
|
|
6343
|
-
padding:
|
|
6393
|
+
padding: 0px;
|
|
6344
6394
|
}
|
|
6345
6395
|
.e-treeview.e-drag-item .e-icon-collapsible,
|
|
6346
6396
|
.e-treeview.e-drag-item .e-icon-expandable {
|
|
6347
6397
|
-webkit-box-sizing: content-box;
|
|
6348
6398
|
box-sizing: content-box;
|
|
6349
6399
|
padding-left: 12px;
|
|
6350
|
-
padding-top: 8px;
|
|
6351
6400
|
}
|
|
6352
6401
|
.e-treeview.e-drag-item .e-icon-collapsible::before,
|
|
6353
6402
|
.e-treeview.e-drag-item .e-icon-expandable::before {
|
|
6354
6403
|
font-size: 12px;
|
|
6355
|
-
padding: 12px;
|
|
6356
6404
|
}
|
|
6357
6405
|
.e-treeview.e-drag-item .e-drop-count {
|
|
6358
6406
|
border: 1px solid;
|
|
@@ -6531,7 +6579,7 @@
|
|
|
6531
6579
|
border-color: #201f1e;
|
|
6532
6580
|
}
|
|
6533
6581
|
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow, .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
|
|
6534
|
-
background-color:
|
|
6582
|
+
background-color: rgb(225.525, 222.25, 218.975);
|
|
6535
6583
|
border-color: #edebe9;
|
|
6536
6584
|
}
|
|
6537
6585
|
.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 {
|
|
@@ -6601,7 +6649,7 @@
|
|
|
6601
6649
|
border-color: #edebe9;
|
|
6602
6650
|
}
|
|
6603
6651
|
.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 {
|
|
6604
|
-
background-color:
|
|
6652
|
+
background-color: rgb(225.525, 222.25, 218.975);
|
|
6605
6653
|
border-color: #edebe9;
|
|
6606
6654
|
}
|
|
6607
6655
|
.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 {
|
|
@@ -7888,6 +7936,21 @@ ejs-sidebar {
|
|
|
7888
7936
|
padding-right: 4px;
|
|
7889
7937
|
}
|
|
7890
7938
|
|
|
7939
|
+
.e-breadcrumb-menu-item {
|
|
7940
|
+
position: absolute;
|
|
7941
|
+
width: 1px;
|
|
7942
|
+
height: 1px;
|
|
7943
|
+
margin: -1px;
|
|
7944
|
+
padding: 0;
|
|
7945
|
+
overflow: hidden;
|
|
7946
|
+
clip: rect(0, 0, 0, 0);
|
|
7947
|
+
border: 0;
|
|
7948
|
+
}
|
|
7949
|
+
|
|
7950
|
+
.e-hidden-popup {
|
|
7951
|
+
visibility: hidden;
|
|
7952
|
+
}
|
|
7953
|
+
|
|
7891
7954
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
7892
7955
|
color: #605e5c;
|
|
7893
7956
|
}
|
|
@@ -8811,7 +8874,7 @@ ejs-sidebar {
|
|
|
8811
8874
|
}
|
|
8812
8875
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-indicator:active,
|
|
8813
8876
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-step:active {
|
|
8814
|
-
background:
|
|
8877
|
+
background: rgb(0, 96, 169.6);
|
|
8815
8878
|
}
|
|
8816
8879
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-indicator:active,
|
|
8817
8880
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-step:active {
|
package/styles/fluent.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
|
}
|
|
@@ -293,6 +296,12 @@
|
|
|
293
296
|
}
|
|
294
297
|
@media (max-width: 769px) {
|
|
295
298
|
.e-pager {
|
|
299
|
+
display: -webkit-box;
|
|
300
|
+
display: -ms-flexbox;
|
|
301
|
+
display: flex;
|
|
302
|
+
-webkit-box-align: center;
|
|
303
|
+
-ms-flex-align: center;
|
|
304
|
+
align-items: center;
|
|
296
305
|
padding: 13px 0;
|
|
297
306
|
}
|
|
298
307
|
.e-pager div.e-parentmsgbar {
|
|
@@ -466,7 +475,8 @@
|
|
|
466
475
|
.e-pager.e-rtl.e-rtl div.e-parentmsgbar {
|
|
467
476
|
float: initial;
|
|
468
477
|
margin-left: 0;
|
|
469
|
-
margin-top:
|
|
478
|
+
margin-top: 0;
|
|
479
|
+
padding-top: 0;
|
|
470
480
|
}
|
|
471
481
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
472
482
|
float: right;
|
|
@@ -726,14 +736,14 @@
|
|
|
726
736
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
727
737
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
728
738
|
margin-left: 0;
|
|
729
|
-
margin-top:
|
|
739
|
+
margin-top: 0;
|
|
730
740
|
}
|
|
731
741
|
}
|
|
732
742
|
@media (max-width: 769px) {
|
|
733
743
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
734
744
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
735
745
|
margin-left: 0;
|
|
736
|
-
margin-top:
|
|
746
|
+
margin-top: 0;
|
|
737
747
|
}
|
|
738
748
|
}
|
|
739
749
|
.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,
|
|
@@ -787,7 +797,7 @@
|
|
|
787
797
|
}
|
|
788
798
|
.e-bigger .e-pager.e-adaptive div.e-parentmsgbar,
|
|
789
799
|
.e-pager.e-bigger.e-adaptive div.e-parentmsgbar {
|
|
790
|
-
margin-top:
|
|
800
|
+
margin-top: 0;
|
|
791
801
|
}
|
|
792
802
|
.e-bigger .e-pager.e-adaptive .e-pagerdropdown,
|
|
793
803
|
.e-pager.e-bigger.e-adaptive .e-pagerdropdown {
|
|
@@ -858,7 +868,7 @@
|
|
|
858
868
|
.e-hscroll {
|
|
859
869
|
display: block;
|
|
860
870
|
position: relative;
|
|
861
|
-
width:
|
|
871
|
+
width: 100%;
|
|
862
872
|
}
|
|
863
873
|
.e-hscroll.e-rtl.e-scroll-device {
|
|
864
874
|
padding-left: 40px;
|
|
@@ -1536,6 +1546,9 @@
|
|
|
1536
1546
|
min-width: 28px;
|
|
1537
1547
|
padding: 0;
|
|
1538
1548
|
}
|
|
1549
|
+
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
|
|
1550
|
+
pointer-events: none;
|
|
1551
|
+
}
|
|
1539
1552
|
.e-toolbar .e-toolbar-item.e-separator {
|
|
1540
1553
|
margin: 4px;
|
|
1541
1554
|
min-height: 24px;
|
|
@@ -1551,6 +1564,9 @@
|
|
|
1551
1564
|
.e-toolbar .e-toolbar-item > * {
|
|
1552
1565
|
text-overflow: ellipsis;
|
|
1553
1566
|
}
|
|
1567
|
+
.e-toolbar .e-toolbar-item:not(.e-overlay) > * {
|
|
1568
|
+
pointer-events: auto;
|
|
1569
|
+
}
|
|
1554
1570
|
.e-toolbar .e-toolbar-item.e-hidden {
|
|
1555
1571
|
display: none;
|
|
1556
1572
|
}
|
|
@@ -1713,6 +1729,9 @@
|
|
|
1713
1729
|
min-width: 100%;
|
|
1714
1730
|
text-overflow: ellipsis;
|
|
1715
1731
|
}
|
|
1732
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1733
|
+
pointer-events: auto;
|
|
1734
|
+
}
|
|
1716
1735
|
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
1717
1736
|
min-width: 100%;
|
|
1718
1737
|
}
|
|
@@ -1826,6 +1845,9 @@
|
|
|
1826
1845
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1827
1846
|
height: auto;
|
|
1828
1847
|
}
|
|
1848
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1849
|
+
pointer-events: auto;
|
|
1850
|
+
}
|
|
1829
1851
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1830
1852
|
-ms-flex-item-align: center;
|
|
1831
1853
|
align-self: center;
|
|
@@ -1839,12 +1861,18 @@
|
|
|
1839
1861
|
display: -ms-inline-flexbox;
|
|
1840
1862
|
display: inline-flex;
|
|
1841
1863
|
}
|
|
1864
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
|
|
1865
|
+
pointer-events: auto;
|
|
1866
|
+
}
|
|
1842
1867
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1843
1868
|
display: table;
|
|
1844
1869
|
}
|
|
1845
1870
|
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1846
1871
|
margin-right: 8px;
|
|
1847
1872
|
}
|
|
1873
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1874
|
+
margin-left: 8px;
|
|
1875
|
+
}
|
|
1848
1876
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1849
1877
|
padding: 4px;
|
|
1850
1878
|
}
|
|
@@ -1875,6 +1903,7 @@
|
|
|
1875
1903
|
}
|
|
1876
1904
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1877
1905
|
margin-left: 0;
|
|
1906
|
+
margin-right: 8px;
|
|
1878
1907
|
}
|
|
1879
1908
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
1880
1909
|
margin-left: 8px;
|
|
@@ -1882,11 +1911,13 @@
|
|
|
1882
1911
|
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1883
1912
|
margin-left: 0;
|
|
1884
1913
|
}
|
|
1885
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child
|
|
1914
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child {
|
|
1915
|
+
margin-right: 0;
|
|
1916
|
+
}
|
|
1886
1917
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1887
1918
|
margin-right: 0;
|
|
1919
|
+
margin-left: 8px;
|
|
1888
1920
|
}
|
|
1889
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
1890
1921
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
1891
1922
|
margin-right: 8px;
|
|
1892
1923
|
}
|
|
@@ -3416,6 +3447,12 @@
|
|
|
3416
3447
|
-webkit-box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
3417
3448
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
3418
3449
|
}
|
|
3450
|
+
.e-contextmenu-wrapper ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon,
|
|
3451
|
+
.e-contextmenu-container ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon {
|
|
3452
|
+
display: -webkit-box;
|
|
3453
|
+
display: -ms-flexbox;
|
|
3454
|
+
display: flex;
|
|
3455
|
+
}
|
|
3419
3456
|
.e-contextmenu-wrapper ul.e-ul,
|
|
3420
3457
|
.e-contextmenu-container ul.e-ul {
|
|
3421
3458
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -3677,7 +3714,7 @@
|
|
|
3677
3714
|
|
|
3678
3715
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll,
|
|
3679
3716
|
.e-contextmenu-container:not(.e-menu-container) .e-menu-vscroll.e-vscroll {
|
|
3680
|
-
background-color:
|
|
3717
|
+
background-color: #fff;
|
|
3681
3718
|
border: 1px solid #edebe9;
|
|
3682
3719
|
}
|
|
3683
3720
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
@@ -4198,6 +4235,11 @@
|
|
|
4198
4235
|
height: 26px;
|
|
4199
4236
|
width: 100%;
|
|
4200
4237
|
}
|
|
4238
|
+
@media screen and (max-width: 480px) {
|
|
4239
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-text-wrap {
|
|
4240
|
+
height: 48px;
|
|
4241
|
+
}
|
|
4242
|
+
}
|
|
4201
4243
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-text {
|
|
4202
4244
|
display: -webkit-inline-box;
|
|
4203
4245
|
display: -ms-inline-flexbox;
|
|
@@ -5220,13 +5262,13 @@
|
|
|
5220
5262
|
padding: 0 12px;
|
|
5221
5263
|
}
|
|
5222
5264
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus {
|
|
5223
|
-
height:
|
|
5265
|
+
height: 44px;
|
|
5224
5266
|
}
|
|
5225
5267
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-text-wrap {
|
|
5226
|
-
height:
|
|
5268
|
+
height: 44px;
|
|
5227
5269
|
}
|
|
5228
5270
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
5229
|
-
height:
|
|
5271
|
+
height: 44px;
|
|
5230
5272
|
}
|
|
5231
5273
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus, .e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus {
|
|
5232
5274
|
height: 62px;
|
|
@@ -6204,18 +6246,18 @@
|
|
|
6204
6246
|
color: #201f1e;
|
|
6205
6247
|
}
|
|
6206
6248
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
6207
|
-
background: #
|
|
6249
|
+
background: #0078d4;
|
|
6208
6250
|
border-color: unset;
|
|
6209
6251
|
}
|
|
6210
6252
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
6211
|
-
color: #
|
|
6253
|
+
color: #fff;
|
|
6212
6254
|
}
|
|
6213
6255
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
6214
|
-
color: #
|
|
6256
|
+
color: #fff;
|
|
6215
6257
|
}
|
|
6216
6258
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
6217
6259
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
6218
|
-
color: #
|
|
6260
|
+
color: #fff;
|
|
6219
6261
|
}
|
|
6220
6262
|
.e-tab.e-background .e-tab-header {
|
|
6221
6263
|
background: #0078d4;
|
|
@@ -6252,8 +6294,8 @@
|
|
|
6252
6294
|
color: #fff;
|
|
6253
6295
|
}
|
|
6254
6296
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
6255
|
-
background:
|
|
6256
|
-
background-color:
|
|
6297
|
+
background: rgb(0, 91.1320754717, 161);
|
|
6298
|
+
background-color: rgb(0, 91.1320754717, 161);
|
|
6257
6299
|
border-color: unset;
|
|
6258
6300
|
}
|
|
6259
6301
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text {
|
|
@@ -6390,7 +6432,7 @@
|
|
|
6390
6432
|
}
|
|
6391
6433
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
6392
6434
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
6393
|
-
background:
|
|
6435
|
+
background: rgb(0, 91.1320754717, 161);
|
|
6394
6436
|
color: #fff;
|
|
6395
6437
|
border-color: unset;
|
|
6396
6438
|
}
|
|
@@ -6452,20 +6494,20 @@
|
|
|
6452
6494
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
6453
6495
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
6454
6496
|
color: #fff;
|
|
6455
|
-
background:
|
|
6497
|
+
background: rgb(0, 91.1320754717, 161);
|
|
6456
6498
|
border: 1px solid #edebe9;
|
|
6457
6499
|
}
|
|
6458
6500
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
6459
6501
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover,
|
|
6460
6502
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
6461
6503
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover {
|
|
6462
|
-
background:
|
|
6504
|
+
background: rgb(0, 91.1320754717, 161);
|
|
6463
6505
|
}
|
|
6464
6506
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
6465
6507
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active,
|
|
6466
6508
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
6467
6509
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active {
|
|
6468
|
-
background:
|
|
6510
|
+
background: rgb(0, 91.1320754717, 161);
|
|
6469
6511
|
border-color: #edebe9;
|
|
6470
6512
|
color: #fff;
|
|
6471
6513
|
}
|
|
@@ -6574,7 +6616,7 @@
|
|
|
6574
6616
|
background: rgba(237, 235, 233, 0.38);
|
|
6575
6617
|
}
|
|
6576
6618
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus {
|
|
6577
|
-
background:
|
|
6619
|
+
background: rgb(0, 91.1320754717, 161);
|
|
6578
6620
|
border-color: unset;
|
|
6579
6621
|
}
|
|
6580
6622
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
@@ -7922,6 +7964,9 @@
|
|
|
7922
7964
|
.e-treeview.e-virtualization .e-ul {
|
|
7923
7965
|
overflow: unset;
|
|
7924
7966
|
}
|
|
7967
|
+
.e-treeview .e-mask-parent {
|
|
7968
|
+
display: none;
|
|
7969
|
+
}
|
|
7925
7970
|
.e-treeview > .e-ul {
|
|
7926
7971
|
-webkit-overflow-scrolling: touch;
|
|
7927
7972
|
overflow: auto;
|
|
@@ -8027,6 +8072,11 @@
|
|
|
8027
8072
|
position: absolute;
|
|
8028
8073
|
width: 100%;
|
|
8029
8074
|
}
|
|
8075
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
8076
|
+
.e-treeview .e-fullrow {
|
|
8077
|
+
z-index: -1;
|
|
8078
|
+
}
|
|
8079
|
+
}
|
|
8030
8080
|
.e-treeview .e-checkbox-wrapper {
|
|
8031
8081
|
margin: 0 0 0 12px;
|
|
8032
8082
|
pointer-events: all;
|
|
@@ -8209,19 +8259,17 @@
|
|
|
8209
8259
|
float: left;
|
|
8210
8260
|
}
|
|
8211
8261
|
.e-treeview.e-drag-item .e-text-content .e-list-text {
|
|
8212
|
-
padding:
|
|
8262
|
+
padding: 0px;
|
|
8213
8263
|
}
|
|
8214
8264
|
.e-treeview.e-drag-item .e-icon-collapsible,
|
|
8215
8265
|
.e-treeview.e-drag-item .e-icon-expandable {
|
|
8216
8266
|
-webkit-box-sizing: content-box;
|
|
8217
8267
|
box-sizing: content-box;
|
|
8218
8268
|
padding-left: 12px;
|
|
8219
|
-
padding-top: 8px;
|
|
8220
8269
|
}
|
|
8221
8270
|
.e-treeview.e-drag-item .e-icon-collapsible::before,
|
|
8222
8271
|
.e-treeview.e-drag-item .e-icon-expandable::before {
|
|
8223
8272
|
font-size: 12px;
|
|
8224
|
-
padding: 12px;
|
|
8225
8273
|
}
|
|
8226
8274
|
.e-treeview.e-drag-item .e-drop-count {
|
|
8227
8275
|
border: 1px solid;
|
|
@@ -8400,7 +8448,7 @@
|
|
|
8400
8448
|
border-color: #201f1e;
|
|
8401
8449
|
}
|
|
8402
8450
|
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow, .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
|
|
8403
|
-
background-color:
|
|
8451
|
+
background-color: rgb(225.525, 222.25, 218.975);
|
|
8404
8452
|
border-color: #edebe9;
|
|
8405
8453
|
}
|
|
8406
8454
|
.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 {
|
|
@@ -8470,7 +8518,7 @@
|
|
|
8470
8518
|
border-color: #edebe9;
|
|
8471
8519
|
}
|
|
8472
8520
|
.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 {
|
|
8473
|
-
background-color:
|
|
8521
|
+
background-color: rgb(225.525, 222.25, 218.975);
|
|
8474
8522
|
border-color: #edebe9;
|
|
8475
8523
|
}
|
|
8476
8524
|
.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 {
|
|
@@ -10341,6 +10389,21 @@ ejs-sidebar {
|
|
|
10341
10389
|
padding-right: 4px;
|
|
10342
10390
|
}
|
|
10343
10391
|
|
|
10392
|
+
.e-breadcrumb-menu-item {
|
|
10393
|
+
position: absolute;
|
|
10394
|
+
width: 1px;
|
|
10395
|
+
height: 1px;
|
|
10396
|
+
margin: -1px;
|
|
10397
|
+
padding: 0;
|
|
10398
|
+
overflow: hidden;
|
|
10399
|
+
clip: rect(0, 0, 0, 0);
|
|
10400
|
+
border: 0;
|
|
10401
|
+
}
|
|
10402
|
+
|
|
10403
|
+
.e-hidden-popup {
|
|
10404
|
+
visibility: hidden;
|
|
10405
|
+
}
|
|
10406
|
+
|
|
10344
10407
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
10345
10408
|
color: #605e5c;
|
|
10346
10409
|
}
|
|
@@ -11359,7 +11422,7 @@ ejs-sidebar {
|
|
|
11359
11422
|
}
|
|
11360
11423
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-indicator:active,
|
|
11361
11424
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-step:active {
|
|
11362
|
-
background:
|
|
11425
|
+
background: rgb(0, 96, 169.6);
|
|
11363
11426
|
}
|
|
11364
11427
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-indicator:active,
|
|
11365
11428
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-step:active {
|