@syncfusion/ej2-navigations 16.4.47 → 16.4.52-46585
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 +259 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +1419 -0
- package/README.md +226 -112
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/breadcrumb.d.ts +4 -0
- package/breadcrumb.js +4 -0
- package/carousel.d.ts +4 -0
- package/carousel.js +4 -0
- package/dist/ej2-navigations.min.js +1 -0
- 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 +8469 -2261
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +8157 -1833
- 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/helpers/e2e/accordionHelper.d.ts +56 -0
- package/helpers/e2e/accordionHelper.js +71 -0
- package/helpers/e2e/contextmenuHelper.d.ts +37 -0
- package/helpers/e2e/contextmenuHelper.js +53 -0
- package/helpers/e2e/index.d.ts +7 -0
- package/helpers/e2e/index.js +14 -0
- package/helpers/e2e/menuHelper.d.ts +37 -0
- package/helpers/e2e/menuHelper.js +53 -0
- package/helpers/e2e/sidebarHelper.d.ts +94 -0
- package/helpers/e2e/sidebarHelper.js +110 -0
- package/helpers/e2e/tabHelper.d.ts +60 -0
- package/helpers/e2e/tabHelper.js +74 -0
- package/helpers/e2e/toolbarHelper.d.ts +60 -0
- package/helpers/e2e/toolbarHelper.js +74 -0
- package/helpers/e2e/treeview.d.ts +50 -0
- package/helpers/e2e/treeview.js +80 -0
- package/package.json +105 -105
- package/src/accordion/accordion-model.d.ts +122 -45
- package/src/accordion/accordion.d.ts +169 -48
- package/src/accordion/accordion.js +530 -230
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +115 -0
- package/src/appbar/appbar.js +220 -0
- package/src/appbar/index.d.ts +3 -0
- package/src/appbar/index.js +2 -0
- package/src/breadcrumb/breadcrumb-model.d.ts +161 -0
- package/src/breadcrumb/breadcrumb.d.ts +285 -0
- package/src/breadcrumb/breadcrumb.js +789 -0
- package/src/breadcrumb/index.d.ts +5 -0
- package/src/breadcrumb/index.js +4 -0
- package/src/carousel/carousel-model.d.ts +223 -0
- package/src/carousel/carousel.d.ts +344 -0
- package/src/carousel/carousel.js +1100 -0
- package/src/carousel/index.d.ts +3 -0
- package/src/carousel/index.js +2 -0
- package/src/common/h-scroll-model.d.ts +1 -0
- package/src/common/h-scroll.d.ts +21 -10
- package/src/common/h-scroll.js +58 -36
- package/src/common/index.d.ts +2 -0
- package/src/common/index.js +2 -0
- package/src/common/menu-base-model.d.ts +77 -22
- package/src/common/menu-base.d.ts +192 -41
- package/src/common/menu-base.js +1104 -366
- package/src/common/menu-scroll.d.ts +29 -0
- package/src/common/menu-scroll.js +103 -0
- package/src/common/v-scroll-model.d.ts +1 -0
- package/src/common/v-scroll.d.ts +20 -9
- package/src/common/v-scroll.js +47 -20
- package/src/context-menu/context-menu-model.d.ts +7 -3
- package/src/context-menu/context-menu.d.ts +25 -10
- package/src/context-menu/context-menu.js +27 -15
- package/src/index.d.ts +3 -0
- package/src/index.js +3 -0
- package/src/menu/menu-model.d.ts +34 -1
- package/src/menu/menu.d.ts +60 -6
- package/src/menu/menu.js +144 -18
- package/src/sidebar/sidebar-model.d.ts +54 -25
- package/src/sidebar/sidebar.d.ts +117 -22
- package/src/sidebar/sidebar.js +250 -120
- package/src/tab/tab-model.d.ts +156 -37
- package/src/tab/tab.d.ts +286 -61
- package/src/tab/tab.js +1136 -331
- package/src/toolbar/toolbar-model.d.ts +110 -29
- package/src/toolbar/toolbar.d.ts +185 -55
- package/src/toolbar/toolbar.js +595 -234
- package/src/treeview/treeview-model.d.ts +269 -83
- package/src/treeview/treeview.d.ts +497 -74
- package/src/treeview/treeview.js +2006 -409
- package/styles/accordion/_all.scss +0 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +171 -67
- package/styles/accordion/_bootstrap-definition.scss +115 -11
- package/styles/accordion/_bootstrap4-definition.scss +182 -0
- package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
- package/styles/accordion/_bootstrap5-definition.scss +180 -0
- package/styles/accordion/_fabric-dark-definition.scss +171 -69
- package/styles/accordion/_fabric-definition.scss +119 -15
- package/styles/accordion/_fluent-dark-definition.scss +1 -0
- package/styles/accordion/_fluent-definition.scss +179 -0
- package/styles/accordion/_fusionnew-definition.scss +180 -0
- package/styles/accordion/_highcontrast-definition.scss +122 -23
- package/styles/accordion/_highcontrast-light-definition.scss +192 -95
- package/styles/accordion/_layout.scss +100 -162
- package/styles/accordion/_material-dark-definition.scss +173 -70
- package/styles/accordion/_material-definition.scss +115 -11
- package/styles/accordion/_tailwind-dark-definition.scss +1 -0
- package/styles/accordion/_tailwind-definition.scss +178 -0
- package/styles/accordion/_theme.scss +219 -224
- package/styles/accordion/bootstrap-dark.css +267 -181
- package/styles/accordion/bootstrap-dark.scss +1 -0
- package/styles/accordion/bootstrap.css +258 -172
- package/styles/accordion/bootstrap.scss +1 -0
- package/styles/accordion/bootstrap4.css +525 -0
- package/styles/accordion/bootstrap4.scss +4 -0
- package/styles/accordion/bootstrap5-dark.css +527 -0
- package/styles/accordion/bootstrap5-dark.scss +4 -0
- package/styles/accordion/bootstrap5.css +527 -0
- package/styles/accordion/bootstrap5.scss +4 -0
- package/styles/accordion/fabric-dark.css +266 -164
- package/styles/accordion/fabric-dark.scss +1 -0
- package/styles/accordion/fabric.css +266 -164
- package/styles/accordion/fabric.scss +1 -0
- package/styles/accordion/fluent-dark.css +526 -0
- package/styles/accordion/fluent-dark.scss +4 -0
- package/styles/accordion/fluent.css +526 -0
- package/styles/accordion/fluent.scss +4 -0
- package/styles/accordion/highcontrast-light.css +525 -0
- package/styles/accordion/highcontrast-light.scss +4 -0
- package/styles/accordion/highcontrast.css +243 -232
- package/styles/accordion/highcontrast.scss +1 -0
- package/styles/accordion/{_icons.scss → icons/_bootstrap-dark.scss} +3 -3
- package/styles/accordion/icons/_bootstrap.scss +17 -0
- package/styles/accordion/icons/_bootstrap4.scss +17 -0
- package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
- package/styles/accordion/icons/_bootstrap5.scss +17 -0
- package/styles/accordion/icons/_fabric-dark.scss +17 -0
- package/styles/accordion/icons/_fabric.scss +17 -0
- package/styles/accordion/icons/_fluent-dark.scss +1 -0
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_fusionnew.scss +17 -0
- package/styles/accordion/icons/_highcontrast-light.scss +17 -0
- package/styles/accordion/icons/_highcontrast.scss +17 -0
- package/styles/accordion/icons/_material-dark.scss +17 -0
- package/styles/accordion/icons/_material.scss +17 -0
- package/styles/accordion/icons/_material3.scss +17 -0
- package/styles/accordion/icons/_tailwind-dark.scss +1 -0
- package/styles/accordion/icons/_tailwind.scss +17 -0
- package/styles/accordion/material-dark.css +268 -173
- package/styles/accordion/material-dark.scss +1 -0
- package/styles/accordion/material.css +264 -169
- package/styles/accordion/material.scss +1 -0
- package/styles/accordion/tailwind-dark.css +527 -0
- package/styles/accordion/tailwind-dark.scss +4 -0
- package/styles/accordion/tailwind.css +527 -0
- package/styles/accordion/tailwind.scss +4 -0
- package/styles/appbar/_all.scss +2 -0
- package/styles/appbar/_bootstrap-dark-definition.scss +8 -0
- package/styles/appbar/_bootstrap-definition.scss +8 -0
- package/styles/appbar/_bootstrap4-definition.scss +8 -0
- package/styles/appbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/appbar/_bootstrap5-definition.scss +8 -0
- package/styles/appbar/_fabric-dark-definition.scss +8 -0
- package/styles/appbar/_fabric-definition.scss +8 -0
- package/styles/appbar/_fluent-dark-definition.scss +1 -0
- package/styles/appbar/_fluent-definition.scss +8 -0
- package/styles/appbar/_fusionnew-definition.scss +8 -0
- package/styles/appbar/_highcontrast-definition.scss +8 -0
- package/styles/appbar/_highcontrast-light-definition.scss +8 -0
- package/styles/appbar/_layout.scss +84 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_tailwind-dark-definition.scss +1 -0
- package/styles/appbar/_tailwind-definition.scss +8 -0
- package/styles/appbar/_theme.scss +208 -0
- package/styles/appbar/bootstrap-dark.css +247 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +247 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +247 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +247 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +247 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +247 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +247 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +247 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +247 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +247 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +247 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +248 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +248 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +248 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +248 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +5500 -3485
- package/styles/bootstrap-dark.scss +4 -0
- package/styles/bootstrap.css +5417 -3557
- package/styles/bootstrap.scss +4 -0
- package/styles/bootstrap4.css +10166 -0
- package/styles/bootstrap4.scss +13 -0
- package/styles/bootstrap5-dark.css +10207 -0
- package/styles/bootstrap5-dark.scss +13 -0
- package/styles/bootstrap5.css +10207 -0
- package/styles/bootstrap5.scss +13 -0
- package/styles/breadcrumb/_all.scss +3 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +59 -0
- package/styles/breadcrumb/_fabric-dark-definition.scss +59 -0
- package/styles/breadcrumb/_fabric-definition.scss +59 -0
- package/styles/breadcrumb/_fluent-dark-definition.scss +1 -0
- package/styles/breadcrumb/_fluent-definition.scss +62 -0
- package/styles/breadcrumb/_fusionnew-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +61 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -0
- package/styles/breadcrumb/_layout.scss +491 -0
- package/styles/breadcrumb/_material-dark-definition.scss +50 -0
- package/styles/breadcrumb/_material-definition.scss +50 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +1 -0
- package/styles/breadcrumb/_tailwind-definition.scss +60 -0
- package/styles/breadcrumb/_theme.scss +176 -0
- package/styles/breadcrumb/bootstrap-dark.css +395 -0
- package/styles/breadcrumb/bootstrap-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap.css +395 -0
- package/styles/breadcrumb/bootstrap.scss +4 -0
- package/styles/breadcrumb/bootstrap4.css +395 -0
- package/styles/breadcrumb/bootstrap4.scss +4 -0
- package/styles/breadcrumb/bootstrap5-dark.css +409 -0
- package/styles/breadcrumb/bootstrap5-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap5.css +409 -0
- package/styles/breadcrumb/bootstrap5.scss +4 -0
- package/styles/breadcrumb/fabric-dark.css +395 -0
- package/styles/breadcrumb/fabric-dark.scss +4 -0
- package/styles/breadcrumb/fabric.css +395 -0
- package/styles/breadcrumb/fabric.scss +4 -0
- package/styles/breadcrumb/fluent-dark.css +371 -0
- package/styles/breadcrumb/fluent-dark.scss +4 -0
- package/styles/breadcrumb/fluent.css +371 -0
- package/styles/breadcrumb/fluent.scss +4 -0
- package/styles/breadcrumb/highcontrast-light.css +402 -0
- package/styles/breadcrumb/highcontrast-light.scss +4 -0
- package/styles/breadcrumb/highcontrast.css +402 -0
- package/styles/breadcrumb/highcontrast.scss +4 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap4.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap5.scss +25 -0
- package/styles/breadcrumb/icons/_fabric-dark.scss +14 -0
- package/styles/breadcrumb/icons/_fabric.scss +14 -0
- package/styles/breadcrumb/icons/_fluent-dark.scss +1 -0
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_fusionnew.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +14 -0
- package/styles/breadcrumb/icons/_highcontrast.scss +14 -0
- package/styles/breadcrumb/icons/_material-dark.scss +25 -0
- package/styles/breadcrumb/icons/_material.scss +25 -0
- package/styles/breadcrumb/icons/_material3.scss +25 -0
- package/styles/breadcrumb/icons/_tailwind-dark.scss +25 -0
- package/styles/breadcrumb/icons/_tailwind.scss +25 -0
- package/styles/breadcrumb/material-dark.css +379 -0
- package/styles/breadcrumb/material-dark.scss +4 -0
- package/styles/breadcrumb/material.css +379 -0
- package/styles/breadcrumb/material.scss +4 -0
- package/styles/breadcrumb/tailwind-dark.css +402 -0
- package/styles/breadcrumb/tailwind-dark.scss +4 -0
- package/styles/breadcrumb/tailwind.css +402 -0
- package/styles/breadcrumb/tailwind.scss +4 -0
- package/styles/carousel/_all.scss +2 -0
- package/styles/carousel/_bootstrap-dark-definition.scss +22 -0
- package/styles/carousel/_bootstrap-definition.scss +22 -0
- package/styles/carousel/_bootstrap4-definition.scss +22 -0
- package/styles/carousel/_bootstrap5-dark-definition.scss +1 -0
- package/styles/carousel/_bootstrap5-definition.scss +22 -0
- package/styles/carousel/_fabric-dark-definition.scss +22 -0
- package/styles/carousel/_fabric-definition.scss +22 -0
- package/styles/carousel/_fluent-dark-definition.scss +1 -0
- package/styles/carousel/_fluent-definition.scss +22 -0
- package/styles/carousel/_fusionnew-definition.scss +22 -0
- package/styles/carousel/_highcontrast-definition.scss +22 -0
- package/styles/carousel/_highcontrast-light-definition.scss +22 -0
- package/styles/carousel/_layout.scss +225 -0
- package/styles/carousel/_material-dark-definition.scss +22 -0
- package/styles/carousel/_material-definition.scss +22 -0
- package/styles/carousel/_tailwind-dark-definition.scss +1 -0
- package/styles/carousel/_tailwind-definition.scss +22 -0
- package/styles/carousel/_theme.scss +56 -0
- package/styles/carousel/bootstrap-dark.css +264 -0
- package/styles/carousel/bootstrap-dark.scss +5 -0
- package/styles/carousel/bootstrap.css +264 -0
- package/styles/carousel/bootstrap.scss +5 -0
- package/styles/carousel/bootstrap4.css +264 -0
- package/styles/carousel/bootstrap4.scss +5 -0
- package/styles/carousel/bootstrap5-dark.css +264 -0
- package/styles/carousel/bootstrap5-dark.scss +5 -0
- package/styles/carousel/bootstrap5.css +264 -0
- package/styles/carousel/bootstrap5.scss +5 -0
- package/styles/carousel/fabric-dark.css +264 -0
- package/styles/carousel/fabric-dark.scss +5 -0
- package/styles/carousel/fabric.css +264 -0
- package/styles/carousel/fabric.scss +5 -0
- package/styles/carousel/fluent-dark.css +264 -0
- package/styles/carousel/fluent-dark.scss +5 -0
- package/styles/carousel/fluent.css +264 -0
- package/styles/carousel/fluent.scss +5 -0
- package/styles/carousel/highcontrast-light.css +264 -0
- package/styles/carousel/highcontrast-light.scss +5 -0
- package/styles/carousel/highcontrast.css +264 -0
- package/styles/carousel/highcontrast.scss +5 -0
- package/styles/carousel/icons/_bootstrap-dark.scss +30 -0
- package/styles/carousel/icons/_bootstrap.scss +30 -0
- package/styles/carousel/icons/_bootstrap4.scss +30 -0
- package/styles/carousel/icons/_bootstrap5-dark.scss +1 -0
- package/styles/carousel/icons/_bootstrap5.scss +30 -0
- package/styles/carousel/icons/_fabric-dark.scss +30 -0
- package/styles/carousel/icons/_fabric.scss +30 -0
- package/styles/carousel/icons/_fluent-dark.scss +1 -0
- package/styles/carousel/icons/_fluent.scss +30 -0
- package/styles/carousel/icons/_fusionnew.scss +30 -0
- package/styles/carousel/icons/_highcontrast-light.scss +30 -0
- package/styles/carousel/icons/_highcontrast.scss +30 -0
- package/styles/carousel/icons/_material-dark.scss +30 -0
- package/styles/carousel/icons/_material.scss +30 -0
- package/styles/carousel/icons/_material3.scss +30 -0
- package/styles/carousel/icons/_tailwind-dark.scss +1 -0
- package/styles/carousel/icons/_tailwind.scss +30 -0
- package/styles/carousel/material-dark.css +265 -0
- package/styles/carousel/material-dark.scss +5 -0
- package/styles/carousel/material.css +265 -0
- package/styles/carousel/material.scss +5 -0
- package/styles/carousel/tailwind-dark.css +265 -0
- package/styles/carousel/tailwind-dark.scss +5 -0
- package/styles/carousel/tailwind.css +265 -0
- package/styles/carousel/tailwind.scss +5 -0
- package/styles/context-menu/_bootstrap-dark-definition.scss +49 -50
- package/styles/context-menu/_bootstrap-definition.scss +1 -3
- package/styles/context-menu/_bootstrap4-definition.scss +50 -0
- package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/context-menu/_bootstrap5-definition.scss +52 -0
- package/styles/context-menu/_fabric-dark-definition.scss +49 -50
- package/styles/context-menu/_fabric-definition.scss +0 -2
- package/styles/context-menu/_fluent-dark-definition.scss +1 -0
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_fusionnew-definition.scss +52 -0
- package/styles/context-menu/_highcontrast-definition.scss +0 -2
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -3
- package/styles/context-menu/_layout-mixin.scss +19 -14
- package/styles/context-menu/_layout.scss +88 -5
- package/styles/context-menu/_material-dark-definition.scss +49 -50
- package/styles/context-menu/_material-definition.scss +3 -5
- package/styles/context-menu/_tailwind-dark-definition.scss +1 -0
- package/styles/context-menu/_tailwind-definition.scss +53 -0
- package/styles/context-menu/_theme-mixin.scss +16 -12
- package/styles/context-menu/_theme.scss +15 -1
- package/styles/context-menu/bootstrap-dark.css +203 -112
- package/styles/context-menu/bootstrap-dark.scss +3 -0
- package/styles/context-menu/bootstrap.css +203 -111
- package/styles/context-menu/bootstrap.scss +3 -0
- package/styles/context-menu/bootstrap4.css +367 -0
- package/styles/context-menu/bootstrap4.scss +7 -0
- package/styles/context-menu/bootstrap5-dark.css +355 -0
- package/styles/context-menu/bootstrap5-dark.scss +7 -0
- package/styles/context-menu/bootstrap5.css +355 -0
- package/styles/context-menu/bootstrap5.scss +7 -0
- package/styles/context-menu/fabric-dark.css +204 -113
- package/styles/context-menu/fabric-dark.scss +3 -0
- package/styles/context-menu/fabric.css +202 -110
- package/styles/context-menu/fabric.scss +3 -0
- package/styles/context-menu/fluent-dark.css +363 -0
- package/styles/context-menu/fluent-dark.scss +7 -0
- package/styles/context-menu/fluent.css +363 -0
- package/styles/context-menu/fluent.scss +7 -0
- package/styles/context-menu/highcontrast-light.css +366 -0
- package/styles/context-menu/highcontrast-light.scss +7 -0
- package/styles/context-menu/highcontrast.css +202 -110
- package/styles/context-menu/highcontrast.scss +3 -0
- package/styles/context-menu/icons/_bootstrap-dark.scss +5 -2
- package/styles/context-menu/icons/_bootstrap.scss +5 -2
- package/styles/context-menu/icons/_bootstrap4.scss +33 -0
- package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +33 -0
- package/styles/context-menu/icons/_fabric-dark.scss +5 -2
- package/styles/context-menu/icons/_fabric.scss +5 -2
- package/styles/context-menu/icons/_fluent-dark.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +33 -0
- package/styles/context-menu/icons/_fusionnew.scss +33 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +5 -2
- package/styles/context-menu/icons/_highcontrast.scss +5 -2
- package/styles/context-menu/icons/_material-dark.scss +5 -2
- package/styles/context-menu/icons/_material.scss +5 -2
- package/styles/context-menu/icons/_material3.scss +33 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +33 -0
- package/styles/context-menu/icons/_tailwind.scss +33 -0
- package/styles/context-menu/material-dark.css +221 -112
- package/styles/context-menu/material-dark.scss +3 -0
- package/styles/context-menu/material.css +225 -114
- package/styles/context-menu/material.scss +3 -0
- package/styles/context-menu/tailwind-dark.css +380 -0
- package/styles/context-menu/tailwind-dark.scss +7 -0
- package/styles/context-menu/tailwind.css +380 -0
- package/styles/context-menu/tailwind.scss +7 -0
- package/styles/fabric-dark.css +6281 -4215
- package/styles/fabric-dark.scss +4 -0
- package/styles/fabric.css +5956 -4045
- package/styles/fabric.scss +4 -0
- package/styles/fluent-dark.css +10172 -0
- package/styles/fluent-dark.scss +13 -0
- package/styles/fluent.css +10172 -0
- package/styles/fluent.scss +13 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +46 -40
- package/styles/h-scroll/_bootstrap-definition.scss +14 -7
- package/styles/h-scroll/_bootstrap4-definition.scss +56 -0
- package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/h-scroll/_bootstrap5-definition.scss +83 -0
- package/styles/h-scroll/_fabric-dark-definition.scss +48 -42
- package/styles/h-scroll/_fabric-definition.scss +17 -9
- package/styles/h-scroll/_fluent-dark-definition.scss +1 -0
- package/styles/h-scroll/_fluent-definition.scss +83 -0
- package/styles/h-scroll/_fusionnew-definition.scss +83 -0
- package/styles/h-scroll/_highcontrast-definition.scss +15 -17
- package/styles/h-scroll/_highcontrast-light-definition.scss +49 -46
- package/styles/h-scroll/_layout.scss +15 -15
- package/styles/h-scroll/_material-dark-definition.scss +56 -51
- package/styles/h-scroll/_material-definition.scss +21 -15
- package/styles/h-scroll/_tailwind-dark-definition.scss +1 -0
- package/styles/h-scroll/_tailwind-definition.scss +83 -0
- package/styles/h-scroll/_theme.scss +15 -29
- package/styles/h-scroll/bootstrap-dark.css +53 -66
- package/styles/h-scroll/bootstrap-dark.scss +1 -0
- package/styles/h-scroll/bootstrap.css +32 -80
- package/styles/h-scroll/bootstrap4.css +260 -0
- package/styles/h-scroll/bootstrap4.scss +4 -0
- package/styles/h-scroll/bootstrap5-dark.css +280 -0
- package/styles/h-scroll/bootstrap5-dark.scss +4 -0
- package/styles/h-scroll/bootstrap5.css +280 -0
- package/styles/h-scroll/bootstrap5.scss +4 -0
- package/styles/h-scroll/fabric-dark.css +54 -67
- package/styles/h-scroll/fabric-dark.scss +1 -0
- package/styles/h-scroll/fabric.css +32 -80
- package/styles/h-scroll/fluent-dark.css +280 -0
- package/styles/h-scroll/fluent-dark.scss +4 -0
- package/styles/h-scroll/fluent.css +280 -0
- package/styles/h-scroll/fluent.scss +4 -0
- package/styles/h-scroll/highcontrast-light.css +259 -0
- package/styles/h-scroll/highcontrast-light.scss +4 -0
- package/styles/h-scroll/highcontrast.css +26 -89
- package/styles/h-scroll/{_icons.scss → icons/_bootstrap-dark.scss} +13 -13
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -0
- package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -0
- package/styles/h-scroll/icons/_fabric.scss +5 -5
- package/styles/h-scroll/icons/_fluent-dark.scss +1 -0
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_fusionnew.scss +49 -0
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -0
- package/styles/h-scroll/icons/_highcontrast.scss +5 -5
- package/styles/h-scroll/icons/_material-dark.scss +49 -0
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +49 -0
- package/styles/h-scroll/icons/_tailwind-dark.scss +1 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -0
- package/styles/h-scroll/material-dark.css +56 -70
- package/styles/h-scroll/material-dark.scss +1 -0
- package/styles/h-scroll/material.css +33 -82
- package/styles/h-scroll/tailwind-dark.css +281 -0
- package/styles/h-scroll/tailwind-dark.scss +4 -0
- package/styles/h-scroll/tailwind.css +281 -0
- package/styles/h-scroll/tailwind.scss +4 -0
- package/styles/highcontrast-light.css +10029 -0
- package/styles/highcontrast-light.scss +13 -0
- package/styles/highcontrast.css +6035 -4466
- package/styles/highcontrast.scss +4 -0
- package/styles/material-dark.css +7913 -5586
- package/styles/material-dark.scss +4 -0
- package/styles/material.css +5982 -3808
- package/styles/material.scss +4 -0
- package/styles/menu/_bootstrap-dark-definition.scss +29 -21
- package/styles/menu/_bootstrap-definition.scss +8 -1
- package/styles/menu/_bootstrap4-definition.scss +64 -0
- package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/menu/_bootstrap5-definition.scss +67 -0
- package/styles/menu/_fabric-dark-definition.scss +30 -22
- package/styles/menu/_fabric-definition.scss +8 -1
- package/styles/menu/_fluent-dark-definition.scss +1 -0
- package/styles/menu/_fluent-definition.scss +67 -0
- package/styles/menu/_fusionnew-definition.scss +67 -0
- package/styles/menu/_highcontrast-definition.scss +9 -2
- package/styles/menu/_highcontrast-light-definition.scss +8 -1
- package/styles/menu/_layout.scss +360 -39
- package/styles/menu/_material-dark-definition.scss +27 -19
- package/styles/menu/_material-definition.scss +7 -0
- package/styles/menu/_tailwind-dark-definition.scss +1 -0
- package/styles/menu/_tailwind-definition.scss +66 -0
- package/styles/menu/_theme.scss +199 -15
- package/styles/menu/bootstrap-dark.css +715 -320
- package/styles/menu/bootstrap.css +696 -302
- package/styles/menu/bootstrap.scss +1 -0
- package/styles/menu/bootstrap4.css +1126 -0
- package/styles/menu/bootstrap4.scss +8 -0
- package/styles/menu/bootstrap5-dark.css +1083 -0
- package/styles/menu/bootstrap5-dark.scss +8 -0
- package/styles/menu/bootstrap5.css +1083 -0
- package/styles/menu/bootstrap5.scss +8 -0
- package/styles/menu/fabric-dark.css +714 -319
- package/styles/menu/fabric.css +694 -299
- package/styles/menu/fabric.scss +1 -0
- package/styles/menu/fluent-dark.css +1106 -0
- package/styles/menu/fluent-dark.scss +8 -0
- package/styles/menu/fluent.css +1106 -0
- package/styles/menu/fluent.scss +8 -0
- package/styles/menu/highcontrast-light.css +1088 -0
- package/styles/menu/highcontrast-light.scss +8 -0
- package/styles/menu/highcontrast.css +696 -301
- package/styles/menu/highcontrast.scss +1 -0
- package/styles/menu/icons/_bootstrap-dark.scss +58 -3
- package/styles/menu/icons/_bootstrap.scss +58 -3
- package/styles/menu/icons/_bootstrap4.scss +134 -0
- package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +134 -0
- package/styles/menu/icons/_fabric-dark.scss +62 -7
- package/styles/menu/icons/_fabric.scss +62 -7
- package/styles/menu/icons/_fluent-dark.scss +1 -0
- package/styles/menu/icons/_fluent.scss +134 -0
- package/styles/menu/icons/_fusionnew.scss +134 -0
- package/styles/menu/icons/_highcontrast-light.scss +58 -3
- package/styles/menu/icons/_highcontrast.scss +58 -3
- package/styles/menu/icons/_material-dark.scss +58 -3
- package/styles/menu/icons/_material.scss +58 -3
- package/styles/menu/icons/_material3.scss +134 -0
- package/styles/menu/icons/_tailwind-dark.scss +134 -0
- package/styles/menu/icons/_tailwind.scss +134 -0
- package/styles/menu/material-dark.css +713 -320
- package/styles/menu/material.css +697 -304
- package/styles/menu/material.scss +1 -0
- package/styles/menu/tailwind-dark.css +1102 -0
- package/styles/menu/tailwind-dark.scss +8 -0
- package/styles/menu/tailwind.css +1102 -0
- package/styles/menu/tailwind.scss +8 -0
- package/styles/pager/_all.scss +2 -0
- package/styles/pager/_bootstrap-dark-definition.scss +131 -0
- package/styles/pager/_bootstrap-definition.scss +131 -0
- package/styles/pager/_bootstrap4-definition.scss +131 -0
- package/styles/pager/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pager/_bootstrap5-definition.scss +146 -0
- package/styles/pager/_fabric-dark-definition.scss +131 -0
- package/styles/pager/_fabric-definition.scss +129 -0
- package/styles/pager/_fluent-dark-definition.scss +1 -0
- package/styles/pager/_fluent-definition.scss +133 -0
- package/styles/pager/_fusionnew-definition.scss +146 -0
- package/styles/pager/_highcontrast-definition.scss +129 -0
- package/styles/pager/_highcontrast-light-definition.scss +131 -0
- package/styles/pager/_layout.scss +896 -0
- package/styles/pager/_material-dark-definition.scss +132 -0
- package/styles/pager/_material-definition.scss +130 -0
- package/styles/pager/_tailwind-dark-definition.scss +1 -0
- package/styles/pager/_tailwind-definition.scss +132 -0
- package/styles/pager/_theme.scss +152 -0
- package/styles/pager/bootstrap-dark.css +688 -0
- package/styles/pager/bootstrap-dark.scss +4 -0
- package/styles/pager/bootstrap.css +688 -0
- package/styles/pager/bootstrap.scss +4 -0
- package/styles/pager/bootstrap4.css +688 -0
- package/styles/pager/bootstrap4.scss +4 -0
- package/styles/pager/bootstrap5-dark.css +723 -0
- package/styles/pager/bootstrap5-dark.scss +4 -0
- package/styles/pager/bootstrap5.css +723 -0
- package/styles/pager/bootstrap5.scss +4 -0
- package/styles/pager/fabric-dark.css +688 -0
- package/styles/pager/fabric-dark.scss +4 -0
- package/styles/pager/fabric.css +688 -0
- package/styles/pager/fabric.scss +4 -0
- package/styles/pager/fluent-dark.css +690 -0
- package/styles/pager/fluent-dark.scss +4 -0
- package/styles/pager/fluent.css +690 -0
- package/styles/pager/fluent.scss +4 -0
- package/styles/pager/highcontrast-light.css +688 -0
- package/styles/pager/highcontrast-light.scss +4 -0
- package/styles/pager/highcontrast.css +688 -0
- package/styles/pager/highcontrast.scss +4 -0
- package/styles/pager/icons/_bootstrap-dark.scss +50 -0
- package/styles/pager/icons/_bootstrap.scss +50 -0
- package/styles/pager/icons/_bootstrap4.scss +50 -0
- package/styles/pager/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pager/icons/_bootstrap5.scss +50 -0
- package/styles/pager/icons/_fabric-dark.scss +50 -0
- package/styles/pager/icons/_fabric.scss +50 -0
- package/styles/pager/icons/_fluent-dark.scss +1 -0
- package/styles/pager/icons/_fluent.scss +50 -0
- package/styles/pager/icons/_fusionnew.scss +50 -0
- package/styles/pager/icons/_highcontrast-light.scss +50 -0
- package/styles/pager/icons/_highcontrast.scss +46 -0
- package/styles/pager/icons/_material-dark.scss +50 -0
- package/styles/pager/icons/_material.scss +46 -0
- package/styles/pager/icons/_material3.scss +50 -0
- package/styles/pager/icons/_tailwind-dark.scss +1 -0
- package/styles/pager/icons/_tailwind.scss +50 -0
- package/styles/pager/material-dark.css +689 -0
- package/styles/pager/material-dark.scss +4 -0
- package/styles/pager/material.css +689 -0
- package/styles/pager/material.scss +4 -0
- package/styles/pager/tailwind-dark.css +815 -0
- package/styles/pager/tailwind-dark.scss +4 -0
- package/styles/pager/tailwind.css +815 -0
- package/styles/pager/tailwind.scss +4 -0
- package/styles/sidebar/_bootstrap4-definition.scss +4 -0
- package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/sidebar/_bootstrap5-definition.scss +6 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-dark-definition.scss +1 -0
- package/styles/sidebar/_fluent-definition.scss +6 -0
- package/styles/sidebar/_fusionnew-definition.scss +6 -0
- package/styles/sidebar/_highcontrast-definition.scss +1 -1
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_tailwind-dark-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +6 -0
- package/styles/sidebar/_theme.scss +56 -34
- package/styles/sidebar/bootstrap-dark.css +29 -25
- package/styles/sidebar/bootstrap.css +29 -25
- package/styles/sidebar/bootstrap4.css +149 -0
- package/styles/sidebar/bootstrap4.scss +3 -0
- package/styles/sidebar/bootstrap5-dark.css +147 -0
- package/styles/sidebar/bootstrap5-dark.scss +3 -0
- package/styles/sidebar/bootstrap5.css +147 -0
- package/styles/sidebar/bootstrap5.scss +3 -0
- package/styles/sidebar/fabric-dark.css +29 -25
- package/styles/sidebar/fabric.css +29 -25
- package/styles/sidebar/fluent-dark.css +147 -0
- package/styles/sidebar/fluent-dark.scss +3 -0
- package/styles/sidebar/fluent.css +147 -0
- package/styles/sidebar/fluent.scss +3 -0
- package/styles/sidebar/highcontrast-light.css +149 -0
- package/styles/sidebar/highcontrast-light.scss +3 -0
- package/styles/sidebar/highcontrast.css +30 -26
- package/styles/sidebar/material-dark.css +29 -25
- package/styles/sidebar/material.css +29 -25
- package/styles/sidebar/tailwind-dark.css +148 -0
- package/styles/sidebar/tailwind-dark.scss +3 -0
- package/styles/sidebar/tailwind.css +148 -0
- package/styles/sidebar/tailwind.scss +3 -0
- package/styles/tab/_bootstrap-dark-definition.scss +632 -374
- package/styles/tab/_bootstrap-definition.scss +279 -13
- package/styles/tab/_bootstrap4-definition.scss +666 -0
- package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
- package/styles/tab/_bootstrap5-definition.scss +656 -0
- package/styles/tab/_fabric-dark-definition.scss +644 -385
- package/styles/tab/_fabric-definition.scss +281 -15
- package/styles/tab/_fluent-dark-definition.scss +1 -0
- package/styles/tab/_fluent-definition.scss +664 -0
- package/styles/tab/_fusionnew-definition.scss +656 -0
- package/styles/tab/_highcontrast-definition.scss +283 -17
- package/styles/tab/_highcontrast-light-definition.scss +667 -411
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +697 -753
- package/styles/tab/_material-dark-definition.scss +627 -370
- package/styles/tab/_material-definition.scss +277 -11
- package/styles/tab/_tailwind-dark-definition.scss +1 -0
- package/styles/tab/_tailwind-definition.scss +685 -0
- package/styles/tab/_theme.scss +402 -537
- package/styles/tab/bootstrap-dark.css +1226 -1067
- package/styles/tab/bootstrap-dark.scss +1 -0
- package/styles/tab/bootstrap.css +1173 -1106
- package/styles/tab/bootstrap4.css +4031 -0
- package/styles/tab/bootstrap4.scss +5 -0
- package/styles/tab/bootstrap5-dark.css +4029 -0
- package/styles/tab/bootstrap5-dark.scss +5 -0
- package/styles/tab/bootstrap5.css +4029 -0
- package/styles/tab/bootstrap5.scss +5 -0
- package/styles/tab/fabric-dark.css +1212 -1096
- package/styles/tab/fabric-dark.scss +1 -0
- package/styles/tab/fabric.css +1173 -1148
- package/styles/tab/fluent-dark.css +4031 -0
- package/styles/tab/fluent-dark.scss +5 -0
- package/styles/tab/fluent.css +4031 -0
- package/styles/tab/fluent.scss +5 -0
- package/styles/tab/highcontrast-light.css +4022 -0
- package/styles/tab/highcontrast-light.scss +5 -0
- package/styles/tab/highcontrast.css +1086 -1215
- package/styles/tab/icons/_bootstrap-dark.scss +108 -0
- package/styles/tab/icons/_bootstrap.scss +11 -35
- package/styles/tab/icons/_bootstrap4.scss +115 -0
- package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +104 -0
- package/styles/tab/icons/_fabric-dark.scss +108 -0
- package/styles/tab/icons/_fabric.scss +11 -35
- package/styles/tab/icons/_fluent-dark.scss +1 -0
- package/styles/tab/icons/_fluent.scss +108 -0
- package/styles/tab/icons/_fusionnew.scss +104 -0
- package/styles/tab/icons/_highcontrast-light.scss +104 -0
- package/styles/tab/icons/_highcontrast.scss +11 -28
- package/styles/tab/icons/_material-dark.scss +104 -0
- package/styles/tab/icons/_material.scss +9 -37
- package/styles/tab/icons/_material3.scss +104 -0
- package/styles/tab/icons/_tailwind-dark.scss +1 -0
- package/styles/tab/icons/_tailwind.scss +104 -0
- package/styles/tab/material-dark.css +1334 -955
- package/styles/tab/material-dark.scss +1 -0
- package/styles/tab/material.css +1280 -992
- package/styles/tab/tailwind-dark.css +4046 -0
- package/styles/tab/tailwind-dark.scss +5 -0
- package/styles/tab/tailwind.css +4046 -0
- package/styles/tab/tailwind.scss +5 -0
- package/styles/tailwind-dark.css +10351 -0
- package/styles/tailwind-dark.scss +13 -0
- package/styles/tailwind.css +10351 -0
- package/styles/tailwind.scss +13 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +193 -121
- package/styles/toolbar/_bootstrap-definition.scss +107 -34
- package/styles/toolbar/_bootstrap4-definition.scss +211 -0
- package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/toolbar/_bootstrap5-definition.scss +220 -0
- package/styles/toolbar/_fabric-dark-definition.scss +208 -140
- package/styles/toolbar/_fabric-definition.scss +97 -28
- package/styles/toolbar/_fluent-dark-definition.scss +1 -0
- package/styles/toolbar/_fluent-definition.scss +210 -0
- package/styles/toolbar/_fusionnew-definition.scss +220 -0
- package/styles/toolbar/_highcontrast-definition.scss +99 -30
- package/styles/toolbar/_highcontrast-light-definition.scss +219 -149
- package/styles/toolbar/_layout.scss +690 -1087
- package/styles/toolbar/_material-dark-definition.scss +216 -148
- package/styles/toolbar/_material-definition.scss +117 -46
- package/styles/toolbar/_tailwind-dark-definition.scss +1 -0
- package/styles/toolbar/_tailwind-definition.scss +210 -0
- package/styles/toolbar/_theme.scss +246 -263
- package/styles/toolbar/bootstrap-dark.css +768 -1105
- package/styles/toolbar/bootstrap-dark.scss +1 -0
- package/styles/toolbar/bootstrap.css +761 -1111
- package/styles/toolbar/bootstrap.scss +1 -0
- package/styles/toolbar/bootstrap4.css +1071 -0
- package/styles/toolbar/bootstrap4.scss +8 -0
- package/styles/toolbar/bootstrap5-dark.css +1082 -0
- package/styles/toolbar/bootstrap5-dark.scss +8 -0
- package/styles/toolbar/bootstrap5.css +1082 -0
- package/styles/toolbar/bootstrap5.scss +8 -0
- package/styles/toolbar/fabric-dark.css +779 -1042
- package/styles/toolbar/fabric-dark.scss +1 -0
- package/styles/toolbar/fabric.css +767 -1041
- package/styles/toolbar/fabric.scss +1 -0
- package/styles/toolbar/fluent-dark.css +1081 -0
- package/styles/toolbar/fluent-dark.scss +8 -0
- package/styles/toolbar/fluent.css +1081 -0
- package/styles/toolbar/fluent.scss +8 -0
- package/styles/toolbar/highcontrast-light.css +1070 -0
- package/styles/toolbar/highcontrast-light.scss +8 -0
- package/styles/toolbar/highcontrast.css +744 -1089
- package/styles/toolbar/highcontrast.scss +1 -0
- package/styles/toolbar/icons/_bootstrap-dark.scss +16 -0
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +16 -0
- package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/toolbar/icons/_bootstrap5.scss +16 -0
- package/styles/toolbar/icons/_fabric-dark.scss +16 -0
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent-dark.scss +1 -0
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_fusionnew.scss +16 -0
- package/styles/toolbar/icons/_highcontrast-light.scss +16 -0
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +16 -0
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +16 -0
- package/styles/toolbar/icons/_tailwind-dark.scss +1 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -0
- package/styles/toolbar/material-dark.css +747 -1010
- package/styles/toolbar/material-dark.scss +1 -0
- package/styles/toolbar/material.css +753 -1027
- package/styles/toolbar/material.scss +1 -0
- package/styles/toolbar/tailwind-dark.css +1082 -0
- package/styles/toolbar/tailwind-dark.scss +8 -0
- package/styles/toolbar/tailwind.css +1082 -0
- package/styles/toolbar/tailwind.scss +8 -0
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +104 -117
- package/styles/treeview/_bootstrap-definition.scss +24 -38
- package/styles/treeview/_bootstrap4-definition.scss +141 -0
- package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -0
- package/styles/treeview/_fabric-dark-definition.scss +102 -116
- package/styles/treeview/_fabric-definition.scss +24 -38
- package/styles/treeview/_fluent-dark-definition.scss +1 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_fusionnew-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +24 -38
- package/styles/treeview/_highcontrast-light-definition.scss +112 -126
- package/styles/treeview/_layout.scss +619 -28
- package/styles/treeview/_material-dark-definition.scss +104 -116
- package/styles/treeview/_material-definition.scss +25 -39
- package/styles/treeview/_tailwind-dark-definition.scss +1 -0
- package/styles/treeview/_tailwind-definition.scss +124 -0
- package/styles/treeview/_theme.scss +128 -27
- package/styles/treeview/bootstrap-dark.css +230 -172
- package/styles/treeview/bootstrap.css +230 -168
- package/styles/treeview/bootstrap4.css +829 -0
- package/styles/treeview/bootstrap4.scss +6 -0
- package/styles/treeview/bootstrap5-dark.css +847 -0
- package/styles/treeview/bootstrap5-dark.scss +6 -0
- package/styles/treeview/bootstrap5.css +847 -0
- package/styles/treeview/bootstrap5.scss +6 -0
- package/styles/treeview/fabric-dark.css +230 -168
- package/styles/treeview/fabric.css +230 -168
- package/styles/treeview/fluent-dark.css +852 -0
- package/styles/treeview/fluent-dark.scss +6 -0
- package/styles/treeview/fluent.css +852 -0
- package/styles/treeview/fluent.scss +6 -0
- package/styles/treeview/highcontrast-light.css +736 -0
- package/styles/treeview/highcontrast-light.scss +6 -0
- package/styles/treeview/highcontrast.css +230 -171
- package/styles/treeview/icons/_bootstrap-dark.scss +2 -2
- package/styles/treeview/icons/_bootstrap.scss +2 -2
- package/styles/treeview/icons/_bootstrap4.scss +39 -0
- package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -0
- package/styles/treeview/icons/_fabric-dark.scss +2 -2
- package/styles/treeview/icons/_fabric.scss +2 -2
- package/styles/treeview/icons/_fluent-dark.scss +1 -0
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_fusionnew.scss +43 -0
- package/styles/treeview/icons/_highcontrast-light.scss +2 -2
- package/styles/treeview/icons/_highcontrast.scss +2 -2
- package/styles/treeview/icons/_material-dark.scss +2 -2
- package/styles/treeview/icons/_material.scss +2 -2
- package/styles/treeview/icons/_material3.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -0
- package/styles/treeview/icons/_tailwind.scss +43 -0
- package/styles/treeview/material-dark.css +242 -172
- package/styles/treeview/material.css +238 -167
- package/styles/treeview/tailwind-dark.css +840 -0
- package/styles/treeview/tailwind-dark.scss +6 -0
- package/styles/treeview/tailwind.css +840 -0
- package/styles/treeview/tailwind.scss +6 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +39 -38
- package/styles/v-scroll/_bootstrap-definition.scss +8 -8
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -0
- package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
- package/styles/v-scroll/_fabric-dark-definition.scss +41 -40
- package/styles/v-scroll/_fabric-definition.scss +10 -10
- package/styles/v-scroll/_fluent-dark-definition.scss +1 -0
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_fusionnew-definition.scss +49 -0
- package/styles/v-scroll/_highcontrast-definition.scss +10 -11
- package/styles/v-scroll/_highcontrast-light-definition.scss +41 -41
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +46 -45
- package/styles/v-scroll/_material-definition.scss +10 -10
- package/styles/v-scroll/_tailwind-dark-definition.scss +1 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -0
- package/styles/v-scroll/_theme.scss +2 -27
- package/styles/v-scroll/bootstrap-dark.css +25 -51
- package/styles/v-scroll/bootstrap-dark.scss +1 -0
- package/styles/v-scroll/bootstrap.css +13 -58
- package/styles/v-scroll/bootstrap4.css +202 -0
- package/styles/v-scroll/bootstrap4.scss +4 -0
- package/styles/v-scroll/bootstrap5-dark.css +202 -0
- package/styles/v-scroll/bootstrap5-dark.scss +4 -0
- package/styles/v-scroll/bootstrap5.css +202 -0
- package/styles/v-scroll/bootstrap5.scss +4 -0
- package/styles/v-scroll/fabric-dark.css +26 -52
- package/styles/v-scroll/fabric-dark.scss +1 -0
- package/styles/v-scroll/fabric.css +14 -59
- package/styles/v-scroll/fluent-dark.css +202 -0
- package/styles/v-scroll/fluent-dark.scss +4 -0
- package/styles/v-scroll/fluent.css +202 -0
- package/styles/v-scroll/fluent.scss +4 -0
- package/styles/v-scroll/highcontrast-light.css +201 -0
- package/styles/v-scroll/highcontrast-light.scss +4 -0
- package/styles/v-scroll/highcontrast.css +14 -74
- package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
- package/styles/v-scroll/icons/_fabric-dark.scss +27 -0
- package/styles/v-scroll/icons/_fabric.scss +3 -2
- package/styles/v-scroll/icons/_fluent-dark.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +27 -0
- package/styles/v-scroll/icons/_fusionnew.scss +27 -0
- package/styles/v-scroll/icons/_highcontrast-light.scss +27 -0
- package/styles/v-scroll/icons/_highcontrast.scss +3 -2
- package/styles/v-scroll/{_icons.scss → icons/_material-dark.scss} +4 -3
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +27 -0
- package/styles/v-scroll/icons/_tailwind-dark.scss +1 -0
- package/styles/v-scroll/icons/_tailwind.scss +27 -0
- package/styles/v-scroll/material-dark.css +23 -50
- package/styles/v-scroll/material-dark.scss +1 -0
- package/styles/v-scroll/material.css +12 -58
- package/styles/v-scroll/tailwind-dark.css +203 -0
- package/styles/v-scroll/tailwind-dark.scss +4 -0
- package/styles/v-scroll/tailwind.css +203 -0
- package/styles/v-scroll/tailwind.scss +4 -0
- package/tslint.json +111 -0
- package/styles/toolbar/_icons.scss +0 -35
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
$skin
|
|
2
|
-
$hscroll-dash-border: 2px solid #fff;
|
|
1
|
+
$hscroll-skin: 'highcontrast' !default;
|
|
3
2
|
$hscroll-border-type: solid !default;
|
|
4
|
-
$hscroll-hover-font: $hover-font-color
|
|
5
|
-
$hscroll-active-font-color: $active-font-color
|
|
3
|
+
$hscroll-hover-font: $hover-font-color !default;
|
|
4
|
+
$hscroll-active-font-color: $active-font-color !default;
|
|
6
5
|
$hscroll-default-bg: $bg-base-0 !default;
|
|
7
6
|
$hscroll-press-bg: $selection-bg !default;
|
|
8
7
|
$hscroll-active-bg: $selection-bg !default;
|
|
@@ -18,11 +17,11 @@ $hscroll-default-border: $border-fg !default;
|
|
|
18
17
|
$hscroll-box-shadow: none !default;
|
|
19
18
|
$hscroll-hover-bg: $hover-bg !default;
|
|
20
19
|
$hscroll-hover-border-color: '' !default;
|
|
21
|
-
$hscroll-focus-border:
|
|
22
|
-
$hscroll-active-border:
|
|
23
|
-
$hscroll-hover-border:
|
|
24
|
-
$hscroll-active-box-shadow:
|
|
25
|
-
$hscroll-default-icon-color: $
|
|
20
|
+
$hscroll-focus-border: 0 !default;
|
|
21
|
+
$hscroll-active-border: 0 !default;
|
|
22
|
+
$hscroll-hover-border: 0 !default;
|
|
23
|
+
$hscroll-active-box-shadow: none !default;
|
|
24
|
+
$hscroll-default-icon-color: $bg-base-100 !default;
|
|
26
25
|
$hscroll-overlay-opacity: .5 !default;
|
|
27
26
|
$hscroll-overlay-bg: $bg-base-10 !default;
|
|
28
27
|
$hscroll-overlay-start: rgba($hscroll-overlay-bg, 0) !default;
|
|
@@ -33,21 +32,20 @@ $hscroll-nav-hover-border-color: $hover-border !default;
|
|
|
33
32
|
$hscroll-nav-active-color: $selection-font !default;
|
|
34
33
|
$hscroll-nav-focus-bg-color: inherit !default;
|
|
35
34
|
|
|
36
|
-
$hscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
37
|
-
$hscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
35
|
+
$hscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
36
|
+
$hscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
38
37
|
$hscroll-device-arrow-bg: $bg-base-15 !default;
|
|
39
38
|
$hscroll-device-arrow-border-size: 1px !default;
|
|
40
39
|
$hscroll-device-arrow-border-color: $border-fg !default;
|
|
41
40
|
$hscroll-device-arrow-color: $selection-bg !default;
|
|
42
41
|
$hscroll-device-arrow-size: 14px !default;
|
|
42
|
+
$hscroll-device-arrow-icon-size: 12px !default;
|
|
43
|
+
$hscroll-device-arrow-size-bigger: 18px !default;
|
|
43
44
|
$hscroll-device-arrow-width: 52px !default;
|
|
44
45
|
|
|
45
|
-
|
|
46
|
-
$hscroll-
|
|
47
|
-
$hscroll-
|
|
48
|
-
|
|
49
|
-
$hscroll-device-left-arrow-icon: '\e913' !default;
|
|
50
|
-
$hscroll-device-right-arrow-icon: '\e904' !default;
|
|
46
|
+
$hscroll-nav-hover-press-bg: $hscroll-press-bg !default;
|
|
47
|
+
$hscroll-nav-hover-icons-color: $hscroll-default-icon-color !default;
|
|
48
|
+
$hscroll-nav-focus-border: 2px solid #fff;
|
|
51
49
|
|
|
52
50
|
@mixin hscroll-btn-animation {
|
|
53
51
|
content: '';
|
|
@@ -1,50 +1,52 @@
|
|
|
1
|
-
//default
|
|
2
|
-
$skin
|
|
3
|
-
$hscroll-nav-hover-border-color: $hover-border;
|
|
4
|
-
$hscroll-nav-focus-bg-color: inherit;
|
|
5
|
-
$hscroll-
|
|
6
|
-
$hscroll-
|
|
7
|
-
$hscroll-
|
|
8
|
-
$hscroll-
|
|
9
|
-
$hscroll-
|
|
10
|
-
$hscroll-nav-
|
|
11
|
-
$hscroll-nav-
|
|
12
|
-
$hscroll-
|
|
13
|
-
$hscroll-device-arrow-
|
|
14
|
-
$hscroll-device-arrow-size:
|
|
15
|
-
$hscroll-
|
|
16
|
-
$hscroll-
|
|
17
|
-
$hscroll-device-arrow-
|
|
18
|
-
$hscroll-device-arrow-
|
|
19
|
-
$hscroll-device-arrow-
|
|
20
|
-
$hscroll-device-arrow-
|
|
21
|
-
$hscroll-device-arrow-
|
|
22
|
-
$hscroll-
|
|
23
|
-
$hscroll-overlay-
|
|
24
|
-
$hscroll-overlay-
|
|
25
|
-
$hscroll-
|
|
26
|
-
$hscroll-
|
|
27
|
-
$hscroll-
|
|
28
|
-
$hscroll-border-
|
|
29
|
-
$hscroll-
|
|
30
|
-
$hscroll-
|
|
31
|
-
$hscroll-
|
|
32
|
-
$hscroll-nav-
|
|
33
|
-
$hscroll-
|
|
34
|
-
$hscroll-
|
|
35
|
-
$hscroll-
|
|
36
|
-
$hscroll-
|
|
37
|
-
$hscroll-
|
|
38
|
-
$hscroll-
|
|
39
|
-
$hscroll-hover-
|
|
40
|
-
$hscroll-
|
|
41
|
-
$hscroll-
|
|
42
|
-
$hscroll-
|
|
43
|
-
$hscroll-
|
|
44
|
-
$hscroll-
|
|
1
|
+
//default
|
|
2
|
+
$hscroll-skin: 'highcontrast' !default;
|
|
3
|
+
$hscroll-nav-hover-border-color: $hover-border !default;
|
|
4
|
+
$hscroll-nav-focus-bg-color: inherit !default;
|
|
5
|
+
$hscroll-nav-active-color: $selection-font !default;
|
|
6
|
+
$hscroll-default-bg: $bg-base-0 !default;
|
|
7
|
+
$hscroll-press-bg: $selection-bg !default;
|
|
8
|
+
$hscroll-active-bg: $selection-bg !default;
|
|
9
|
+
$hscroll-nav-nrml-minheight: 40px !default;
|
|
10
|
+
$hscroll-nav-bgr-minheight: 50px !default;
|
|
11
|
+
$hscroll-mob-nav-nrml-width: 50px !default;
|
|
12
|
+
$hscroll-device-arrow-width: 50px !default;
|
|
13
|
+
$hscroll-device-arrow-size: 14px !default;
|
|
14
|
+
$hscroll-device-arrow-icon-size: 12px !default;
|
|
15
|
+
$hscroll-device-arrow-size-bigger: 18px !default;
|
|
16
|
+
$hscroll-overlay-opacity: .5 !default;
|
|
17
|
+
$hscroll-device-arrow-border-color: $default-border-color !default;
|
|
18
|
+
$hscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
19
|
+
$hscroll-device-arrow-bg: $hscroll-default-bg !default;
|
|
20
|
+
$hscroll-device-arrow-border-size: 0 !default;
|
|
21
|
+
$hscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .6) !default;
|
|
22
|
+
$hscroll-device-arrow-color: $default-icon-color !default;
|
|
23
|
+
$hscroll-overlay-bg: $hscroll-default-bg !default;
|
|
24
|
+
$hscroll-overlay-start: rgba($hscroll-overlay-bg, .0001) !default;
|
|
25
|
+
$hscroll-overlay-end: rgba($hscroll-overlay-bg, $hscroll-overlay-opacity) !default;
|
|
26
|
+
$hscroll-right-bg: linear-gradient(to right, $hscroll-overlay-start 0, $hscroll-overlay-end 100%) !default;
|
|
27
|
+
$hscroll-left-bg: linear-gradient(to right, $hscroll-overlay-end 0, $hscroll-overlay-start 100%) !default;
|
|
28
|
+
$hscroll-border-size: $border-size !default;
|
|
29
|
+
$hscroll-border-type: solid !default;
|
|
30
|
+
$hscroll-hover-font: $hover-font-color !default;
|
|
31
|
+
$hscroll-active-font-color: $active-font-color !default;
|
|
32
|
+
$hscroll-nav-nrml-width: 40px !default;
|
|
33
|
+
$hscroll-nav-bgr-width: 50px !default;
|
|
34
|
+
$hscroll-nrml-padding: 0 $hscroll-nav-nrml-width !default;
|
|
35
|
+
$hscroll-bgr-padding: 0 $hscroll-nav-bgr-width !default;
|
|
36
|
+
$hscroll-border-size: 1px !default;
|
|
37
|
+
$hscroll-default-border: $border-fg !default;
|
|
38
|
+
$hscroll-box-shadow: none !default;
|
|
39
|
+
$hscroll-hover-bg: $hover-bg !default;
|
|
40
|
+
$hscroll-hover-border-color: '' !default;
|
|
41
|
+
$hscroll-focus-border: 0 !default;
|
|
42
|
+
$hscroll-active-border: 0 !default;
|
|
43
|
+
$hscroll-hover-border: 0 !default;
|
|
44
|
+
$hscroll-active-box-shadow: none !default;
|
|
45
|
+
$hscroll-default-icon-color: $selection-bg !default;
|
|
45
46
|
|
|
46
|
-
$hscroll-
|
|
47
|
-
$hscroll-
|
|
47
|
+
$hscroll-nav-hover-press-bg: $hscroll-press-bg !default;
|
|
48
|
+
$hscroll-nav-hover-icons-color: $hscroll-default-icon-color !default;
|
|
49
|
+
$hscroll-nav-focus-border: 2px solid #fff !default;
|
|
48
50
|
|
|
49
51
|
@mixin hscroll-btn-animation {
|
|
50
52
|
content: '';
|
|
@@ -53,4 +55,5 @@ $hscroll-right-arrow-icon: '\e829';
|
|
|
53
55
|
@mixin hscroll-btn-animation-after {
|
|
54
56
|
content: '';
|
|
55
57
|
}
|
|
58
|
+
|
|
56
59
|
//enddefault
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
@include export-module('h-scroll') {
|
|
2
|
+
|
|
2
3
|
/*! h-scroll layout */
|
|
3
4
|
|
|
4
5
|
.e-bigger #{&}.e-hscroll,
|
|
@@ -18,9 +19,9 @@
|
|
|
18
19
|
padding-right: initial;
|
|
19
20
|
}
|
|
20
21
|
|
|
21
|
-
.e-icons {
|
|
22
|
-
font-size:
|
|
23
|
-
|
|
22
|
+
.e-nav-arrow.e-icons {
|
|
23
|
+
font-size: $hscroll-device-arrow-size-bigger;
|
|
24
|
+
}
|
|
24
25
|
|
|
25
26
|
&.e-rtl .e-scroll-overlay.e-scroll-right-overlay {
|
|
26
27
|
left: $hscroll-nav-bgr-width;
|
|
@@ -37,7 +38,6 @@
|
|
|
37
38
|
min-height: $hscroll-nav-bgr-minheight;
|
|
38
39
|
width: $hscroll-nav-bgr-width;
|
|
39
40
|
}
|
|
40
|
-
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
#{&}.e-hscroll {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
|
-
|
|
72
|
+
}
|
|
73
73
|
|
|
74
74
|
&:not(.e-scroll-device) {
|
|
75
75
|
padding: $hscroll-nrml-padding;
|
|
@@ -120,18 +120,18 @@
|
|
|
120
120
|
|
|
121
121
|
> * {
|
|
122
122
|
height: inherit;
|
|
123
|
-
|
|
123
|
+
line-height: normal;
|
|
124
|
+
}
|
|
124
125
|
|
|
125
126
|
.e-hscroll-content {
|
|
126
127
|
display: inline-block;
|
|
127
128
|
height: inherit;
|
|
128
129
|
position: relative;
|
|
129
|
-
touch-action: none;
|
|
130
130
|
|
|
131
131
|
> * {
|
|
132
132
|
pointer-events: auto;
|
|
133
133
|
}
|
|
134
|
-
|
|
134
|
+
}
|
|
135
135
|
|
|
136
136
|
&.e-rtl {
|
|
137
137
|
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
left: auto;
|
|
147
147
|
right: 0;
|
|
148
148
|
}
|
|
149
|
-
|
|
149
|
+
}
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
.e-scroll-nav {
|
|
@@ -154,7 +154,6 @@
|
|
|
154
154
|
bottom: 0;
|
|
155
155
|
cursor: pointer;
|
|
156
156
|
display: flex;
|
|
157
|
-
height: 100%;
|
|
158
157
|
min-height: $hscroll-nav-nrml-minheight;
|
|
159
158
|
overflow: hidden;
|
|
160
159
|
position: absolute;
|
|
@@ -171,19 +170,20 @@
|
|
|
171
170
|
|
|
172
171
|
&.e-ie-align {
|
|
173
172
|
display: table;
|
|
174
|
-
|
|
173
|
+
}
|
|
175
174
|
}
|
|
176
175
|
|
|
177
176
|
.e-nav-arrow {
|
|
178
177
|
position: relative;
|
|
179
|
-
|
|
178
|
+
}
|
|
180
179
|
|
|
181
180
|
.e-nav-arrow.e-icons {
|
|
182
181
|
display: table-cell;
|
|
183
182
|
text-align: center;
|
|
184
183
|
vertical-align: middle;
|
|
185
184
|
width: 100%;
|
|
186
|
-
|
|
185
|
+
font-size: $hscroll-device-arrow-icon-size;
|
|
186
|
+
}
|
|
187
187
|
|
|
188
188
|
.e-hscroll-bar {
|
|
189
189
|
|
|
@@ -191,8 +191,8 @@
|
|
|
191
191
|
|
|
192
192
|
.e-overlay {
|
|
193
193
|
pointer-events: none;
|
|
194
|
-
}
|
|
195
194
|
}
|
|
196
195
|
}
|
|
196
|
+
}
|
|
197
197
|
}
|
|
198
198
|
}
|
|
@@ -1,59 +1,63 @@
|
|
|
1
|
-
//default
|
|
2
|
-
$skin
|
|
3
|
-
$hscroll-default-bg: $grey-900;
|
|
4
|
-
$hscroll-press-bg: rgba($grey-white, .18);
|
|
5
|
-
$hscroll-active-bg: rgba($grey-white, .18);
|
|
6
|
-
$hscroll-border-size: 1px;
|
|
7
|
-
$hscroll-nav-nrml-minheight: 42px;
|
|
8
|
-
$hscroll-nav-bgr-minheight: 56px;
|
|
9
|
-
$hscroll-mob-nav-nrml-width: 50px;
|
|
10
|
-
$hscroll-device-arrow-width: 50px;
|
|
11
|
-
$hscroll-device-arrow-size: 14px;
|
|
12
|
-
$hscroll-
|
|
13
|
-
$hscroll-device-arrow-
|
|
14
|
-
$hscroll-
|
|
15
|
-
$hscroll-device-arrow-
|
|
16
|
-
$hscroll-device-arrow-
|
|
17
|
-
$hscroll-device-arrow-
|
|
18
|
-
$hscroll-device-arrow-
|
|
19
|
-
$hscroll-
|
|
20
|
-
$hscroll-
|
|
21
|
-
$hscroll-overlay-
|
|
22
|
-
$hscroll-
|
|
23
|
-
$hscroll-
|
|
24
|
-
$hscroll-
|
|
25
|
-
$hscroll-
|
|
26
|
-
$hscroll-
|
|
27
|
-
$hscroll-
|
|
28
|
-
$hscroll-
|
|
29
|
-
$hscroll-
|
|
30
|
-
$hscroll-nrml-
|
|
31
|
-
$hscroll-bgr-
|
|
32
|
-
$hscroll-
|
|
33
|
-
$hscroll-
|
|
34
|
-
$hscroll-
|
|
35
|
-
$hscroll-
|
|
36
|
-
$hscroll-
|
|
37
|
-
$hscroll-
|
|
38
|
-
$hscroll-
|
|
39
|
-
$hscroll-
|
|
40
|
-
$hscroll-active-
|
|
1
|
+
//default
|
|
2
|
+
$hscroll-skin: 'material' !default;
|
|
3
|
+
$hscroll-default-bg: $grey-900 !default;
|
|
4
|
+
$hscroll-press-bg: rgba($grey-white, .18) !default;
|
|
5
|
+
$hscroll-active-bg: rgba($grey-white, .18) !default;
|
|
6
|
+
$hscroll-border-size: 1px !default;
|
|
7
|
+
$hscroll-nav-nrml-minheight: 42px !default;
|
|
8
|
+
$hscroll-nav-bgr-minheight: 56px !default;
|
|
9
|
+
$hscroll-mob-nav-nrml-width: 50px !default;
|
|
10
|
+
$hscroll-device-arrow-width: 50px !default;
|
|
11
|
+
$hscroll-device-arrow-size: 14px !default;
|
|
12
|
+
$hscroll-device-arrow-icon-size: 12px !default;
|
|
13
|
+
$hscroll-device-arrow-size-bigger: 14px !default;
|
|
14
|
+
$hscroll-overlay-opacity: .5 !default;
|
|
15
|
+
$hscroll-device-arrow-border-color: $default-border-color !default;
|
|
16
|
+
$hscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 $grey-white !default;
|
|
17
|
+
$hscroll-device-arrow-bg: $hscroll-default-bg !default;
|
|
18
|
+
$hscroll-device-arrow-border-size: 0 !default;
|
|
19
|
+
$hscroll-device-arrow-box-shadow: -4px 0 8px 0 $grey-white !default;
|
|
20
|
+
$hscroll-device-arrow-color: $grey-white !default;
|
|
21
|
+
$hscroll-overlay-bg: $hscroll-default-bg !default;
|
|
22
|
+
$hscroll-overlay-start: rgba($hscroll-overlay-bg, .0001) !default;
|
|
23
|
+
$hscroll-overlay-end: rgba($hscroll-overlay-bg, $hscroll-overlay-opacity) !default;
|
|
24
|
+
$hscroll-right-bg: linear-gradient(to right, $hscroll-overlay-start 0, $hscroll-overlay-end 100%) !default;
|
|
25
|
+
$hscroll-left-bg: linear-gradient(to right, $hscroll-overlay-end 0, $hscroll-overlay-start 100%) !default;
|
|
26
|
+
$hscroll-border-size: $border-size !default;
|
|
27
|
+
$hscroll-border-type: solid !default;
|
|
28
|
+
$hscroll-hover-font: $hover-font-color !default;
|
|
29
|
+
$hscroll-active-font-color: $active-font-color !default;
|
|
30
|
+
$hscroll-nav-nrml-width: 40px !default;
|
|
31
|
+
$hscroll-nav-bgr-width: 50px !default;
|
|
32
|
+
$hscroll-nrml-padding: 0 $hscroll-nav-nrml-width !default;
|
|
33
|
+
$hscroll-bgr-padding: 0 $hscroll-nav-bgr-width !default;
|
|
34
|
+
$hscroll-border-type: $border-type !default;
|
|
35
|
+
$hscroll-box-shadow: none !default;
|
|
36
|
+
$hscroll-hover-bg: rgba($grey-white, .1) !default;
|
|
37
|
+
$hscroll-hover-border-color: rgba($grey-white, .1) !default;
|
|
38
|
+
$hscroll-default-icon-color: rgba($grey-dark-font, .54) !default;
|
|
39
|
+
$hscroll-focus-border: 0 !default;
|
|
40
|
+
$hscroll-active-border: 0 !default;
|
|
41
|
+
$hscroll-hover-border: 0 !default;
|
|
42
|
+
$hscroll-active-box-shadow: none !default;
|
|
41
43
|
|
|
42
|
-
$hscroll-default-border: $hscroll-hover-border-color;
|
|
43
|
-
$hscroll-ribble-animation-border-frame: rgba(255, 255, 255, .5);
|
|
44
|
-
$hscroll-ribble-animation-shadow-frame: 0 0 0 0 $hscroll-ribble-animation-border-frame;
|
|
45
|
-
$hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12);
|
|
46
|
-
|
|
47
|
-
$hscroll-left-arrow-icon: '\e913';
|
|
48
|
-
$hscroll-right-arrow-icon: '\e904';
|
|
44
|
+
$hscroll-default-border: $hscroll-hover-border-color !default;
|
|
45
|
+
$hscroll-ribble-animation-border-frame: rgba(255, 255, 255, .5) !default;
|
|
46
|
+
$hscroll-ribble-animation-shadow-frame: 0 0 0 0 $hscroll-ribble-animation-border-frame !default;
|
|
47
|
+
$hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12) !default;
|
|
49
48
|
|
|
49
|
+
$hscroll-nav-hover-press-bg: $hscroll-hover-bg !default;
|
|
50
|
+
$hscroll-nav-hover-icons-color: $hscroll-default-icon-color !default;
|
|
51
|
+
$hscroll-nav-focus-bg-color: $hscroll-hover-bg !default;
|
|
52
|
+
$hscroll-nav-focus-border: $hscroll-focus-border !default;
|
|
53
|
+
$hscroll-nav-active-color: $hscroll-default-icon-color !default;
|
|
50
54
|
|
|
51
55
|
@mixin hscroll-btn-animation {
|
|
52
56
|
background-color: transparent;
|
|
53
57
|
border-radius: 50%;
|
|
54
58
|
border-width: 1px;
|
|
55
59
|
box-sizing: border-box;
|
|
56
|
-
content: ''
|
|
60
|
+
content: '';
|
|
57
61
|
height: 1px;
|
|
58
62
|
left: 50%;
|
|
59
63
|
position: absolute;
|
|
@@ -71,10 +75,11 @@ $hscroll-right-arrow-icon: '\e904';
|
|
|
71
75
|
0% {
|
|
72
76
|
border-color: $hscroll-ribble-animation-border-frame;
|
|
73
77
|
box-shadow: $hscroll-ribble-animation-shadow-frame;
|
|
74
|
-
|
|
78
|
+
}
|
|
75
79
|
|
|
76
80
|
100% {
|
|
77
81
|
box-shadow: $hscroll-ribble-animation-shadow-frame-end;
|
|
78
|
-
|
|
79
|
-
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
80
85
|
//enddefault
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
|
-
$skin
|
|
3
|
-
$hscroll-hover-font: $hover-font-color
|
|
4
|
-
$hscroll-active-font-color: $active-font-color
|
|
2
|
+
$hscroll-skin: 'material' !default;
|
|
3
|
+
$hscroll-hover-font: $hover-font-color !default;
|
|
4
|
+
$hscroll-active-font-color: $active-font-color !default;
|
|
5
5
|
$hscroll-default-bg: $grey-50 !default;
|
|
6
6
|
$hscroll-press-bg: $grey-400 !default;
|
|
7
7
|
$hscroll-active-bg: $grey-400 !default;
|
|
@@ -18,10 +18,10 @@ $hscroll-box-shadow: none !default;
|
|
|
18
18
|
$hscroll-hover-bg: rgba($grey-black, .12) !default;
|
|
19
19
|
$hscroll-hover-border-color: rgba($grey-black, .12) !default;
|
|
20
20
|
$hscroll-default-icon-color: rgba($grey-light-font, .54) !default;
|
|
21
|
-
$hscroll-focus-border:
|
|
22
|
-
$hscroll-active-border:
|
|
23
|
-
$hscroll-hover-border:
|
|
24
|
-
$hscroll-active-box-shadow:
|
|
21
|
+
$hscroll-focus-border: 0 !default;
|
|
22
|
+
$hscroll-active-border: 0 !default;
|
|
23
|
+
$hscroll-hover-border: 0 !default;
|
|
24
|
+
$hscroll-active-box-shadow: none !default;
|
|
25
25
|
$hscroll-overlay-opacity: .5 !default;
|
|
26
26
|
$hscroll-overlay-bg: $grey-50 !default;
|
|
27
27
|
$hscroll-overlay-start: rgba($hscroll-overlay-bg, 0) !default;
|
|
@@ -29,13 +29,15 @@ $hscroll-overlay-end: rgba($hscroll-overlay-bg, 1) !default;
|
|
|
29
29
|
$hscroll-right-bg: linear-gradient(-270deg, $hscroll-overlay-start 0%, $hscroll-overlay-end 100%) !default;
|
|
30
30
|
$hscroll-left-bg: linear-gradient(-270deg, $hscroll-overlay-end 0%, $hscroll-overlay-start 100%) !default;
|
|
31
31
|
|
|
32
|
-
$hscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
33
|
-
$hscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
32
|
+
$hscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
33
|
+
$hscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
34
34
|
$hscroll-device-arrow-bg: $grey-50 !default;
|
|
35
35
|
$hscroll-device-arrow-border-size: 1px !default;
|
|
36
36
|
$hscroll-device-arrow-border-color: rgba($grey-black, .12) !default;
|
|
37
37
|
$hscroll-device-arrow-color: $accent !default;
|
|
38
38
|
$hscroll-device-arrow-size: 14px !default;
|
|
39
|
+
$hscroll-device-arrow-icon-size: 12px !default;
|
|
40
|
+
$hscroll-device-arrow-size-bigger: 14px !default;
|
|
39
41
|
$hscroll-device-arrow-width: 56px !default;
|
|
40
42
|
|
|
41
43
|
$hscroll-default-border: $hscroll-hover-border-color !default;
|
|
@@ -43,12 +45,18 @@ $hscroll-ribble-animation-border-frame: rgba(255, 255, 255, .5) !default;
|
|
|
43
45
|
$hscroll-ribble-animation-shadow-frame: 0 0 0 0 $hscroll-ribble-animation-border-frame !default;
|
|
44
46
|
$hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12) !default;
|
|
45
47
|
|
|
48
|
+
$hscroll-nav-hover-press-bg: $hscroll-hover-bg !default;
|
|
49
|
+
$hscroll-nav-hover-icons-color: $hscroll-default-icon-color !default;
|
|
50
|
+
$hscroll-nav-focus-bg-color: $hscroll-hover-bg !default;
|
|
51
|
+
$hscroll-nav-focus-border: $hscroll-focus-border !default;
|
|
52
|
+
$hscroll-nav-active-color: $hscroll-default-icon-color !default;
|
|
53
|
+
|
|
46
54
|
@mixin hscroll-btn-animation {
|
|
47
55
|
background-color: transparent;
|
|
48
56
|
border-radius: 50%;
|
|
49
57
|
border-width: 1px;
|
|
50
58
|
box-sizing: border-box;
|
|
51
|
-
content: ''
|
|
59
|
+
content: '';
|
|
52
60
|
height: 1px;
|
|
53
61
|
left: 50%;
|
|
54
62
|
position: absolute;
|
|
@@ -66,11 +74,9 @@ $hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12)
|
|
|
66
74
|
0% {
|
|
67
75
|
border-color: $hscroll-ribble-animation-border-frame;
|
|
68
76
|
box-shadow: $hscroll-ribble-animation-shadow-frame;
|
|
69
|
-
|
|
77
|
+
}
|
|
70
78
|
|
|
71
79
|
100% {
|
|
72
80
|
box-shadow: $hscroll-ribble-animation-shadow-frame-end;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './tailwind-definition.scss';
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/*! component's theme wise override definitions and variables */
|
|
2
|
+
$hscroll-skin: 'tailwind' !default;
|
|
3
|
+
$border-type: solid;
|
|
4
|
+
$hscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$hscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
|
+
$hscroll-default-bg: $content-bg-color-alt2 !default;
|
|
7
|
+
$hscroll-press-bg: $content-bg-color-alt2 !default;
|
|
8
|
+
$hscroll-active-bg: $content-bg-color-alt2 !default;
|
|
9
|
+
$hscroll-border-size: 1px !default;
|
|
10
|
+
$hscroll-nav-nrml-minheight: 38px !default;
|
|
11
|
+
$hscroll-nav-bgr-minheight: 48px !default;
|
|
12
|
+
$hscroll-mob-nav-nrml-width: 40px !default;
|
|
13
|
+
$hscroll-nav-nrml-width: 28px !default;
|
|
14
|
+
$hscroll-nav-bgr-width: 48px !default;
|
|
15
|
+
$hscroll-nrml-padding: 0 $hscroll-nav-nrml-width !default;
|
|
16
|
+
$hscroll-bgr-padding: 0 $hscroll-nav-bgr-width !default;
|
|
17
|
+
$hscroll-border-type: $border-type !default;
|
|
18
|
+
$hscroll-box-shadow: none !default;
|
|
19
|
+
$hscroll-hover-bg: $content-bg-color-alt3 !default;
|
|
20
|
+
$hscroll-hover-border-color: $border-light !default;
|
|
21
|
+
$hscroll-default-icon-color: $icon-color !default;
|
|
22
|
+
$hscroll-focus-border: 0 !default;
|
|
23
|
+
$hscroll-active-border: 0 !default;
|
|
24
|
+
$hscroll-hover-border: 0 !default;
|
|
25
|
+
$hscroll-active-box-shadow: none !default;
|
|
26
|
+
$hscroll-overlay-opacity: .5 !default;
|
|
27
|
+
$hscroll-overlay-bg: $content-bg-color-alt2 !default;
|
|
28
|
+
$hscroll-overlay-start: rgba($hscroll-overlay-bg, 0) !default;
|
|
29
|
+
$hscroll-overlay-end: rgba($hscroll-overlay-bg, 1) !default;
|
|
30
|
+
$hscroll-right-bg: linear-gradient(-270deg, $hscroll-overlay-start 0%, $hscroll-overlay-end 100%) !default;
|
|
31
|
+
$hscroll-left-bg: linear-gradient(-270deg, $hscroll-overlay-end 0%, $hscroll-overlay-start 100%) !default;
|
|
32
|
+
|
|
33
|
+
$hscroll-device-arrow-box-shadow: $shadow !default;
|
|
34
|
+
$hscroll-device-arrow-rtl-box-shadow: $shadow !default;
|
|
35
|
+
$hscroll-device-arrow-bg: $content-bg-color-alt2 !default;
|
|
36
|
+
$hscroll-device-arrow-border-size: 1px !default;
|
|
37
|
+
$hscroll-device-arrow-border-color: $border-light !default;
|
|
38
|
+
$hscroll-device-arrow-color: $icon-color !default;
|
|
39
|
+
$hscroll-device-arrow-size: 18px !default;
|
|
40
|
+
$hscroll-device-arrow-icon-size: 18px !default;
|
|
41
|
+
$hscroll-device-arrow-size-bigger: 22px !default;
|
|
42
|
+
$hscroll-device-arrow-width: 48px !default;
|
|
43
|
+
|
|
44
|
+
$hscroll-default-border: $hscroll-hover-border-color !default;
|
|
45
|
+
$hscroll-ribble-animation-border-frame: rgba(255, 255, 255, .5) !default;
|
|
46
|
+
$hscroll-ribble-animation-shadow-frame: 0 0 0 0 $hscroll-ribble-animation-border-frame !default;
|
|
47
|
+
$hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12) !default;
|
|
48
|
+
|
|
49
|
+
$hscroll-nav-hover-press-bg: $hscroll-hover-bg !default;
|
|
50
|
+
$hscroll-nav-hover-icons-color: $hscroll-default-icon-color !default;
|
|
51
|
+
$hscroll-nav-focus-bg-color: $hscroll-hover-bg !default;
|
|
52
|
+
$hscroll-nav-focus-border: $hscroll-focus-border !default;
|
|
53
|
+
$hscroll-nav-active-color: $hscroll-default-icon-color !default;
|
|
54
|
+
|
|
55
|
+
@mixin hscroll-btn-animation {
|
|
56
|
+
background-color: transparent;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
border-width: 1px;
|
|
59
|
+
box-sizing: border-box;
|
|
60
|
+
content: '';
|
|
61
|
+
height: 1px;
|
|
62
|
+
left: 50%;
|
|
63
|
+
position: absolute;
|
|
64
|
+
top: 50%;
|
|
65
|
+
visibility: hidden;
|
|
66
|
+
width: 1px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@mixin hscroll-btn-animation-after {
|
|
70
|
+
animation: hscroll-popup-shadow .6s ease-out 0ms;
|
|
71
|
+
visibility: visible;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@keyframes hscroll-popup-shadow {
|
|
75
|
+
0% {
|
|
76
|
+
border-color: $hscroll-ribble-animation-border-frame;
|
|
77
|
+
box-shadow: $hscroll-ribble-animation-shadow-frame;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
100% {
|
|
81
|
+
box-shadow: $hscroll-ribble-animation-shadow-frame-end;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
@include export-module('h-scroll-theme') {
|
|
2
|
+
|
|
2
3
|
/*! h-scroll theme */
|
|
3
4
|
#{&}.e-hscroll {
|
|
4
5
|
|
|
5
|
-
.e-icons {
|
|
6
|
+
.e-scroll-nav .e-icons {
|
|
6
7
|
color: $hscroll-default-icon-color;
|
|
7
8
|
}
|
|
8
9
|
|
|
@@ -15,7 +16,6 @@
|
|
|
15
16
|
box-shadow: $hscroll-device-arrow-rtl-box-shadow;
|
|
16
17
|
}
|
|
17
18
|
}
|
|
18
|
-
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
&.e-scroll-device {
|
|
@@ -63,14 +63,10 @@
|
|
|
63
63
|
&:hover {
|
|
64
64
|
background: $hscroll-hover-bg;
|
|
65
65
|
border: $hscroll-hover-border;
|
|
66
|
-
border-color: $hscroll-hover-border-color;
|
|
67
66
|
color: $hscroll-hover-font;
|
|
68
67
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
&:active {
|
|
72
|
-
background: $hscroll-press-bg;
|
|
73
|
-
}
|
|
68
|
+
&:active {
|
|
69
|
+
background: $hscroll-nav-hover-press-bg;
|
|
74
70
|
}
|
|
75
71
|
}
|
|
76
72
|
}
|
|
@@ -82,27 +78,20 @@
|
|
|
82
78
|
|
|
83
79
|
&:hover {
|
|
84
80
|
background: $hscroll-hover-bg;
|
|
85
|
-
border: $hscroll-hover-border;
|
|
86
81
|
color: $hscroll-hover-font;
|
|
87
82
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
&:active {
|
|
92
|
-
border: 0;
|
|
93
|
-
}
|
|
83
|
+
.e-icons {
|
|
84
|
+
color: $hscroll-nav-hover-icons-color;
|
|
94
85
|
}
|
|
95
86
|
}
|
|
96
87
|
|
|
97
88
|
&:focus {
|
|
98
|
-
background: $hscroll-
|
|
99
|
-
border: $hscroll-focus-border;
|
|
100
|
-
border-color: $hscroll-hover-border-color;
|
|
89
|
+
background: $hscroll-nav-focus-bg-color;
|
|
90
|
+
border: $hscroll-nav-focus-border;
|
|
101
91
|
color: $hscroll-hover-font;
|
|
102
92
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
border: $hscroll-dash-border;
|
|
93
|
+
.e-icons {
|
|
94
|
+
color: $hscroll-nav-hover-icons-color;
|
|
106
95
|
}
|
|
107
96
|
}
|
|
108
97
|
|
|
@@ -111,14 +100,12 @@
|
|
|
111
100
|
border: $hscroll-active-border;
|
|
112
101
|
box-shadow: $hscroll-active-box-shadow;
|
|
113
102
|
color: $hscroll-active-font-color;
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
103
|
+
|
|
104
|
+
.e-icons {
|
|
105
|
+
color: $hscroll-nav-active-color;
|
|
118
106
|
}
|
|
119
107
|
}
|
|
120
108
|
}
|
|
121
|
-
|
|
122
109
|
}
|
|
123
110
|
|
|
124
111
|
.e-scroll-nav {
|
|
@@ -138,8 +125,7 @@
|
|
|
138
125
|
|
|
139
126
|
&:active::after {
|
|
140
127
|
@include hscroll-btn-animation-after;
|
|
141
|
-
|
|
142
|
-
|
|
128
|
+
}
|
|
143
129
|
}
|
|
144
130
|
}
|
|
145
131
|
}
|