@syncfusion/ej2-navigations 16.4.45 → 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 +1421 -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 +5503 -3478
- package/styles/bootstrap-dark.scss +4 -0
- package/styles/bootstrap.css +5420 -3550
- 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 -16
- package/styles/context-menu/_layout.scss +96 -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 +206 -108
- package/styles/context-menu/bootstrap-dark.scss +3 -0
- package/styles/context-menu/bootstrap.css +206 -107
- 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 +207 -109
- package/styles/context-menu/fabric-dark.scss +3 -0
- package/styles/context-menu/fabric.css +205 -106
- 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 +205 -106
- 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 +223 -107
- package/styles/context-menu/material-dark.scss +3 -0
- package/styles/context-menu/material.css +228 -110
- 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 +5766 -3690
- package/styles/fabric-dark.scss +4 -0
- package/styles/fabric.css +5959 -4038
- 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 +6039 -4460
- package/styles/highcontrast.scss +4 -0
- package/styles/material-dark.css +6282 -3945
- package/styles/material-dark.scss +4 -0
- package/styles/material.css +6210 -4026
- package/styles/material.scss +4 -0
- package/styles/menu/_bootstrap-dark-definition.scss +32 -21
- package/styles/menu/_bootstrap-definition.scss +12 -2
- 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 +33 -22
- package/styles/menu/_fabric-definition.scss +11 -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 +12 -2
- package/styles/menu/_highcontrast-light-definition.scss +11 -1
- package/styles/menu/_layout.scss +363 -37
- package/styles/menu/_material-dark-definition.scss +30 -19
- package/styles/menu/_material-definition.scss +10 -0
- package/styles/menu/_tailwind-dark-definition.scss +1 -0
- package/styles/menu/_tailwind-definition.scss +66 -0
- package/styles/menu/_theme.scss +201 -17
- package/styles/menu/bootstrap-dark.css +717 -319
- package/styles/menu/bootstrap.css +701 -304
- 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 +716 -318
- package/styles/menu/fabric.css +696 -298
- 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 +698 -300
- 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 +715 -319
- package/styles/menu/material.css +699 -303
- 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
package/src/tab/tab.d.ts
CHANGED
|
@@ -6,13 +6,35 @@ import { OverflowMode } from '../toolbar/toolbar';
|
|
|
6
6
|
import { TabModel, TabItemModel, HeaderModel, TabActionSettingsModel, TabAnimationSettingsModel } from './tab-model';
|
|
7
7
|
declare type HTEle = HTMLElement;
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Specifies the orientation of the Tab header.
|
|
10
|
+
* ```props
|
|
11
|
+
* Top :- Places the Tab header on the top.
|
|
12
|
+
* Bottom :- Places the Tab header on the bottom.
|
|
13
|
+
* Left :- Places the Tab header on the left.
|
|
14
|
+
* Right :- Places the Tab header on the right.
|
|
15
|
+
* ```
|
|
10
16
|
*/
|
|
11
17
|
export declare type HeaderPosition = 'Top' | 'Bottom' | 'Left' | 'Right';
|
|
12
18
|
/**
|
|
13
19
|
* Options to set the content element height adjust modes.
|
|
20
|
+
* ```props
|
|
21
|
+
* None :- Based on the given height property, the content panel height is set.
|
|
22
|
+
* Auto :- Tallest panel height of a given Tab content is set to all the other panels.
|
|
23
|
+
* Content :- Based on the corresponding content height, the content panel height is set.
|
|
24
|
+
* Fill :- Content element take height based on the parent height.
|
|
25
|
+
* ```
|
|
14
26
|
*/
|
|
15
27
|
export declare type HeightStyles = 'None' | 'Auto' | 'Content' | 'Fill';
|
|
28
|
+
/**
|
|
29
|
+
* Specifies the options of Tab content display mode.
|
|
30
|
+
* ```props
|
|
31
|
+
* Demand :- The content of the selected tab alone is loaded initially. The content of the tabs which were loaded once will be maintained in the DOM.
|
|
32
|
+
* Dynamic :- The content of all the tabs are rendered on the initial load and maintained in the DOM.
|
|
33
|
+
* Init :- The content of all the tabs are rendered on the initial load and maintained in the DOM.
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
export declare type ContentLoad = 'Dynamic' | 'Init' | 'Demand';
|
|
37
|
+
/** An interface that holds options to control the selected item action. */
|
|
16
38
|
export interface SelectEventArgs extends BaseEventArgs {
|
|
17
39
|
/** Defines the previous Tab item element. */
|
|
18
40
|
previousItem: HTMLElement;
|
|
@@ -28,7 +50,10 @@ export interface SelectEventArgs extends BaseEventArgs {
|
|
|
28
50
|
cancel?: boolean;
|
|
29
51
|
/** Defines the selected content. */
|
|
30
52
|
selectedContent: HTMLElement;
|
|
53
|
+
/** Determines whether the event is triggered via user interaction or programmatic way. True, if the event is triggered by user interaction. */
|
|
54
|
+
isInteracted?: boolean;
|
|
31
55
|
}
|
|
56
|
+
/** An interface that holds options to control the selecting item action. */
|
|
32
57
|
export interface SelectingEventArgs extends SelectEventArgs {
|
|
33
58
|
/** Defines the selecting Tab item element. */
|
|
34
59
|
selectingItem: HTMLElement;
|
|
@@ -36,39 +61,79 @@ export interface SelectingEventArgs extends SelectEventArgs {
|
|
|
36
61
|
selectingIndex: number;
|
|
37
62
|
/** Defines the selecting Tab item content. */
|
|
38
63
|
selectingContent: HTMLElement;
|
|
64
|
+
/** Defines the type of the event. */
|
|
65
|
+
event?: Event;
|
|
39
66
|
}
|
|
67
|
+
/** An interface that holds options to control the removing and removed item action. */
|
|
40
68
|
export interface RemoveEventArgs extends BaseEventArgs {
|
|
41
69
|
/** Defines the removed Tab item element. */
|
|
42
70
|
removedItem: HTMLElement;
|
|
43
71
|
/** Defines the removed Tab item index. */
|
|
44
72
|
removedIndex: number;
|
|
73
|
+
/** Defines the prevent action. */
|
|
74
|
+
cancel?: boolean;
|
|
45
75
|
}
|
|
76
|
+
/** An interface that holds options to control the adding and added item action. */
|
|
77
|
+
export interface AddEventArgs extends BaseEventArgs {
|
|
78
|
+
/** Defines the added Tab item element */
|
|
79
|
+
addedItems: TabItemModel[];
|
|
80
|
+
/** Defines the prevent action. */
|
|
81
|
+
cancel?: boolean;
|
|
82
|
+
}
|
|
83
|
+
/** An interface that holds option to control the dragging and dragged item action. */
|
|
84
|
+
export interface DragEventArgs extends BaseEventArgs {
|
|
85
|
+
/** Defines the current dragged Tab item. */
|
|
86
|
+
draggedItem: HTMLElement;
|
|
87
|
+
/** Defines the dropped Tab item. */
|
|
88
|
+
droppedItem: HTMLElement;
|
|
89
|
+
/** defines the Dragged Tab item index. */
|
|
90
|
+
index: number;
|
|
91
|
+
/** Return the actual event. */
|
|
92
|
+
event: MouseEvent;
|
|
93
|
+
/** Return the target element */
|
|
94
|
+
target: HTMLElement;
|
|
95
|
+
/** Return the clone element */
|
|
96
|
+
clonedElement: HTMLElement;
|
|
97
|
+
/** Defines the prevent action. */
|
|
98
|
+
cancel?: boolean;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Objects used for configuring the Tab selecting item action properties.
|
|
102
|
+
*/
|
|
46
103
|
export declare class TabActionSettings extends ChildProperty<TabActionSettings> {
|
|
47
104
|
/**
|
|
48
105
|
* Specifies the animation effect for displaying Tab content.
|
|
49
|
-
*
|
|
106
|
+
*
|
|
107
|
+
* @default 'SlideLeftIn'
|
|
50
108
|
* @aspType string
|
|
51
109
|
*/
|
|
52
110
|
effect: 'None' | Effect;
|
|
53
111
|
/**
|
|
54
112
|
* Specifies the time duration to transform content.
|
|
55
|
-
*
|
|
113
|
+
*
|
|
114
|
+
* @default 600
|
|
56
115
|
*/
|
|
57
116
|
duration: number;
|
|
58
117
|
/**
|
|
59
118
|
* Specifies easing effect applied while transforming content.
|
|
60
|
-
*
|
|
119
|
+
*
|
|
120
|
+
* @default 'ease'
|
|
61
121
|
*/
|
|
62
122
|
easing: string;
|
|
63
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* Objects used for configuring the Tab animation properties.
|
|
126
|
+
*/
|
|
64
127
|
export declare class TabAnimationSettings extends ChildProperty<TabAnimationSettings> {
|
|
65
128
|
/**
|
|
66
129
|
* Specifies the animation to appear while moving to previous Tab content.
|
|
130
|
+
*
|
|
67
131
|
* @default { effect: 'SlideLeftIn', duration: 600, easing: 'ease' }
|
|
68
132
|
*/
|
|
69
133
|
previous: TabActionSettingsModel;
|
|
70
134
|
/**
|
|
71
135
|
* Specifies the animation to appear while moving to next Tab content.
|
|
136
|
+
*
|
|
72
137
|
* @default { effect: 'SlideRightIn', duration: 600, easing: 'ease' }
|
|
73
138
|
*/
|
|
74
139
|
next: TabActionSettingsModel;
|
|
@@ -79,21 +144,24 @@ export declare class TabAnimationSettings extends ChildProperty<TabAnimationSett
|
|
|
79
144
|
export declare class Header extends ChildProperty<Header> {
|
|
80
145
|
/**
|
|
81
146
|
* Specifies the display text of the Tab item header.
|
|
147
|
+
*
|
|
82
148
|
* @default ''
|
|
83
149
|
*/
|
|
84
150
|
text: string | HTMLElement;
|
|
85
151
|
/**
|
|
86
152
|
* Specifies the icon class that is used to render an icon in the Tab header.
|
|
153
|
+
*
|
|
87
154
|
* @default ''
|
|
88
155
|
*/
|
|
89
156
|
iconCss: string;
|
|
90
157
|
/**
|
|
91
158
|
* Options for positioning the icon in the Tab item header. This property depends on `iconCss` property.
|
|
92
|
-
* The possible values
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
159
|
+
* The possible values for this property as follows
|
|
160
|
+
* * `Left`: Places the icon to the left of the item.
|
|
161
|
+
* * `Top`: Places the icon on the top of the item.
|
|
162
|
+
* * `Right`: Places the icon to the right end of the item.
|
|
163
|
+
* * `Bottom`: Places the icon at the bottom of the item.
|
|
164
|
+
*
|
|
97
165
|
* @default 'left'
|
|
98
166
|
*/
|
|
99
167
|
iconPosition: string;
|
|
@@ -104,24 +172,54 @@ export declare class Header extends ChildProperty<Header> {
|
|
|
104
172
|
export declare class TabItem extends ChildProperty<TabItem> {
|
|
105
173
|
/**
|
|
106
174
|
* The object used for configuring the Tab item header properties.
|
|
175
|
+
*
|
|
107
176
|
* @default {}
|
|
108
177
|
*/
|
|
109
178
|
header: HeaderModel;
|
|
179
|
+
/**
|
|
180
|
+
* Specifies the header text of Tab item.
|
|
181
|
+
*
|
|
182
|
+
* @default null
|
|
183
|
+
*/
|
|
184
|
+
headerTemplate: string;
|
|
110
185
|
/**
|
|
111
186
|
* Specifies the content of Tab item, that is displayed when concern item header is selected.
|
|
187
|
+
*
|
|
112
188
|
* @default ''
|
|
113
189
|
*/
|
|
114
190
|
content: string | HTMLElement;
|
|
115
191
|
/**
|
|
116
192
|
* Sets the CSS classes to the Tab item to customize its styles.
|
|
193
|
+
*
|
|
117
194
|
* @default ''
|
|
118
195
|
*/
|
|
119
196
|
cssClass: string;
|
|
120
197
|
/**
|
|
121
198
|
* Sets true to disable user interactions of the Tab item.
|
|
199
|
+
*
|
|
122
200
|
* @default false
|
|
123
201
|
*/
|
|
124
202
|
disabled: boolean;
|
|
203
|
+
/**
|
|
204
|
+
* Sets false to hide the Tab item.
|
|
205
|
+
*
|
|
206
|
+
* @default true
|
|
207
|
+
*/
|
|
208
|
+
visible: boolean;
|
|
209
|
+
/**
|
|
210
|
+
* Sets unique ID to Tab item.
|
|
211
|
+
*
|
|
212
|
+
* @default null
|
|
213
|
+
*/
|
|
214
|
+
id: string;
|
|
215
|
+
/**
|
|
216
|
+
* Specifies the tab order of the Tabs items. When positive values assigned, it allows to switch focus to the next/previous tabs items with Tab/ShiftTab keys.
|
|
217
|
+
* By default, user can able to switch between items only via arrow keys.
|
|
218
|
+
* If the value is set to 0 for all tabs items, then tab switches based on element order.
|
|
219
|
+
*
|
|
220
|
+
* @default -1
|
|
221
|
+
*/
|
|
222
|
+
tabIndex: number;
|
|
125
223
|
}
|
|
126
224
|
/**
|
|
127
225
|
* Tab is a content panel to show multiple contents in a single space, one at a time.
|
|
@@ -138,6 +236,7 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
138
236
|
private hdrEle;
|
|
139
237
|
private cntEle;
|
|
140
238
|
private tbObj;
|
|
239
|
+
tabId: string;
|
|
141
240
|
private tbItems;
|
|
142
241
|
private tbItem;
|
|
143
242
|
private tbPop;
|
|
@@ -158,11 +257,10 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
158
257
|
private keyModule;
|
|
159
258
|
private tabKeyModule;
|
|
160
259
|
private touchModule;
|
|
161
|
-
private animateOptions;
|
|
162
|
-
private animObj;
|
|
163
260
|
private maxHeight;
|
|
164
261
|
private title;
|
|
165
262
|
private initRender;
|
|
263
|
+
private isInteracted;
|
|
166
264
|
private prevActiveEle;
|
|
167
265
|
private lastIndex;
|
|
168
266
|
private isSwipeed;
|
|
@@ -175,6 +273,12 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
175
273
|
private selectedID;
|
|
176
274
|
private selectingID;
|
|
177
275
|
private isIconAlone;
|
|
276
|
+
private dragItem;
|
|
277
|
+
private cloneElement;
|
|
278
|
+
private droppedIndex;
|
|
279
|
+
private draggingItems;
|
|
280
|
+
private draggableItems;
|
|
281
|
+
private tbId;
|
|
178
282
|
private resizeContext;
|
|
179
283
|
/**
|
|
180
284
|
* Contains the keyboard configuration of the Tab.
|
|
@@ -191,22 +295,26 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
191
295
|
* });
|
|
192
296
|
* tabObj.appendTo('#tab');
|
|
193
297
|
* ```
|
|
298
|
+
*
|
|
194
299
|
* @default []
|
|
195
300
|
*/
|
|
196
301
|
items: TabItemModel[];
|
|
197
302
|
/**
|
|
198
303
|
* Specifies the width of the Tab component. Default, Tab width sets based on the width of its parent.
|
|
304
|
+
*
|
|
199
305
|
* @default '100%'
|
|
200
306
|
*/
|
|
201
307
|
width: string | number;
|
|
202
308
|
/**
|
|
203
309
|
* Specifies the height of the Tab component. By default, Tab height is set based on the height of its parent.
|
|
204
310
|
* To use height property, heightAdjustMode must be set to 'None'.
|
|
311
|
+
*
|
|
205
312
|
* @default 'auto'
|
|
206
313
|
*/
|
|
207
314
|
height: string | number;
|
|
208
315
|
/**
|
|
209
316
|
* Sets the CSS classes to root element of the Tab that helps to customize component styles.
|
|
317
|
+
*
|
|
210
318
|
* @default ''
|
|
211
319
|
*/
|
|
212
320
|
cssClass: string;
|
|
@@ -222,121 +330,198 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
222
330
|
* });
|
|
223
331
|
* tabObj.appendTo('#tab');
|
|
224
332
|
* ```
|
|
333
|
+
*
|
|
225
334
|
* @default 0
|
|
226
335
|
*/
|
|
227
336
|
selectedItem: number;
|
|
228
337
|
/**
|
|
229
338
|
* Specifies the orientation of Tab header.
|
|
230
|
-
* The possible values
|
|
231
|
-
*
|
|
232
|
-
*
|
|
233
|
-
*
|
|
234
|
-
*
|
|
339
|
+
* The possible values for this property as follows
|
|
340
|
+
* * `Top`: Places the Tab header on the top.
|
|
341
|
+
* * `Bottom`: Places the Tab header at the bottom.
|
|
342
|
+
* * `Left`: Places the Tab header on the left.
|
|
343
|
+
* * `Right`: Places the Tab header at the right.
|
|
344
|
+
*
|
|
235
345
|
* @default 'Top'
|
|
236
346
|
*/
|
|
237
347
|
headerPlacement: HeaderPosition;
|
|
238
348
|
/**
|
|
239
349
|
* Specifies the height style for Tab content.
|
|
240
|
-
* The possible values
|
|
241
|
-
*
|
|
242
|
-
*
|
|
243
|
-
*
|
|
244
|
-
*
|
|
350
|
+
* The possible values for this property as follows
|
|
351
|
+
* * `None`: Based on the given height property, the content panel height is set.
|
|
352
|
+
* * `Auto`: Tallest panel height of a given Tab content is set to all the other panels.
|
|
353
|
+
* * `Content`: Based on the corresponding content height, the content panel height is set.
|
|
354
|
+
* * `Fill`: Based on the parent height, the content panel height is set.
|
|
355
|
+
*
|
|
245
356
|
* @default 'Content'
|
|
246
357
|
*/
|
|
247
358
|
heightAdjustMode: HeightStyles;
|
|
248
359
|
/**
|
|
249
360
|
* Specifies the Tab display mode when Tab content exceeds the viewing area.
|
|
250
361
|
* The possible modes are:
|
|
251
|
-
*
|
|
252
|
-
*
|
|
362
|
+
* * `Scrollable`: All the elements are displayed in a single line with horizontal scrolling enabled.
|
|
363
|
+
* * `Popup`: Tab container holds the items that can be placed within the available space and rest of the items are moved to the popup.
|
|
253
364
|
* If the popup content overflows the height of the page, the rest of the elements can be viewed by scrolling the popup.
|
|
365
|
+
*
|
|
254
366
|
* @default 'Scrollable'
|
|
255
367
|
*/
|
|
256
368
|
overflowMode: OverflowMode;
|
|
257
369
|
/**
|
|
258
|
-
* Specifies the
|
|
259
|
-
*
|
|
370
|
+
* Specifies the modes for Tab content.
|
|
371
|
+
* The possible modes are:
|
|
372
|
+
* * `Demand` - The content of the selected tab alone is loaded initially. The content of the tabs which were loaded once will be maintained in the DOM.
|
|
373
|
+
* * `Dynamic` - The content of all the tabs are rendered on the initial load and maintained in the DOM.
|
|
374
|
+
* * `Init` - The content of all the tabs are rendered on the initial load and maintained in the DOM.
|
|
375
|
+
*
|
|
376
|
+
* @default 'Dynamic'
|
|
260
377
|
*/
|
|
261
|
-
|
|
378
|
+
protected loadOn: ContentLoad;
|
|
262
379
|
/**
|
|
263
380
|
* Enable or disable persisting component's state between page reloads.
|
|
264
381
|
* If enabled, following list of states will be persisted.
|
|
265
382
|
* 1. selectedItem
|
|
266
|
-
*
|
|
383
|
+
*
|
|
384
|
+
* @default false
|
|
267
385
|
*/
|
|
268
386
|
enablePersistence: boolean;
|
|
387
|
+
/**
|
|
388
|
+
* Defines whether to allow the cross-scripting site or not.
|
|
389
|
+
*
|
|
390
|
+
* @default false
|
|
391
|
+
*/
|
|
392
|
+
enableHtmlSanitizer: boolean;
|
|
269
393
|
/**
|
|
270
394
|
* Specifies whether to show the close button for header items to remove the item from the Tab.
|
|
395
|
+
*
|
|
271
396
|
* @default false
|
|
272
397
|
*/
|
|
273
398
|
showCloseButton: boolean;
|
|
399
|
+
/**
|
|
400
|
+
* Determines whether to re-order tab items to show active tab item in the header area or popup when OverflowMode is Popup.
|
|
401
|
+
* True, if active tab item should be visible in header area instead of pop-up. The default value is true.
|
|
402
|
+
*
|
|
403
|
+
* @default true
|
|
404
|
+
*/
|
|
405
|
+
reorderActiveTab: boolean;
|
|
406
|
+
/**
|
|
407
|
+
* Specifies the scrolling distance in scroller.
|
|
408
|
+
*
|
|
409
|
+
* @default null
|
|
410
|
+
*/
|
|
411
|
+
scrollStep: number;
|
|
412
|
+
/**
|
|
413
|
+
* Defines the area in which the draggable element movement will be occurring. Outside that area will be restricted
|
|
414
|
+
* for the draggable element movement. By default, the draggable element movement occurs in the toolbar.
|
|
415
|
+
* @default null
|
|
416
|
+
*/
|
|
417
|
+
dragArea: string;
|
|
418
|
+
/**
|
|
419
|
+
* Sets true to allow drag and drop the Tab items
|
|
420
|
+
* @default false
|
|
421
|
+
*/
|
|
422
|
+
allowDragAndDrop: boolean;
|
|
274
423
|
/**
|
|
275
424
|
* Specifies the animation configuration settings while showing the content of the Tab.
|
|
425
|
+
*
|
|
276
426
|
* @default
|
|
277
427
|
* { previous: { effect: 'SlideLeftIn', duration: 600, easing: 'ease' },
|
|
278
|
-
*
|
|
428
|
+
* next: { effect: 'SlideRightIn', duration: 600, easing: 'ease' } }
|
|
279
429
|
*/
|
|
280
430
|
animation: TabAnimationSettingsModel;
|
|
281
431
|
/**
|
|
282
432
|
* The event will be fired once the component rendering is completed.
|
|
433
|
+
*
|
|
283
434
|
* @event
|
|
284
435
|
*/
|
|
285
436
|
created: EmitType<Event>;
|
|
286
437
|
/**
|
|
287
|
-
* The event
|
|
438
|
+
* The event will be fired before adding the item to the Tab.
|
|
439
|
+
*
|
|
288
440
|
* @event
|
|
289
441
|
*/
|
|
290
|
-
adding: EmitType<
|
|
442
|
+
adding: EmitType<AddEventArgs>;
|
|
291
443
|
/**
|
|
292
|
-
* The event
|
|
444
|
+
* The event will be fired after adding the item to the Tab.
|
|
445
|
+
*
|
|
293
446
|
* @event
|
|
294
447
|
*/
|
|
295
|
-
added: EmitType<
|
|
448
|
+
added: EmitType<AddEventArgs>;
|
|
296
449
|
/**
|
|
297
|
-
* The event
|
|
450
|
+
* The event will be fired before the item gets selected.
|
|
451
|
+
*
|
|
298
452
|
* @event
|
|
299
453
|
*/
|
|
300
454
|
selecting: EmitType<SelectingEventArgs>;
|
|
301
455
|
/**
|
|
302
|
-
* The event
|
|
456
|
+
* The event will be fired after the item gets selected.
|
|
457
|
+
*
|
|
303
458
|
* @event
|
|
304
459
|
*/
|
|
305
460
|
selected: EmitType<SelectEventArgs>;
|
|
306
461
|
/**
|
|
307
|
-
* The event
|
|
462
|
+
* The event will be fired before removing the item from the Tab.
|
|
463
|
+
*
|
|
308
464
|
* @event
|
|
309
465
|
*/
|
|
310
466
|
removing: EmitType<RemoveEventArgs>;
|
|
311
467
|
/**
|
|
312
|
-
* The event
|
|
468
|
+
* The event will be fired after removing the item from the Tab.
|
|
469
|
+
*
|
|
313
470
|
* @event
|
|
314
471
|
*/
|
|
315
472
|
removed: EmitType<RemoveEventArgs>;
|
|
473
|
+
/**
|
|
474
|
+
* The event will be fired before dragging the item from Tab
|
|
475
|
+
* @event
|
|
476
|
+
*/
|
|
477
|
+
onDragStart: EmitType<DragEventArgs>;
|
|
478
|
+
/**
|
|
479
|
+
* The event will be fired while dragging the Tab item
|
|
480
|
+
* @event
|
|
481
|
+
*/
|
|
482
|
+
dragging: EmitType<DragEventArgs>;
|
|
483
|
+
/**
|
|
484
|
+
* The event will be fired after dropping the Tab item
|
|
485
|
+
* @event
|
|
486
|
+
*/
|
|
487
|
+
dragged: EmitType<DragEventArgs>;
|
|
316
488
|
/**
|
|
317
489
|
* The event will be fired when the component gets destroyed.
|
|
490
|
+
*
|
|
318
491
|
* @event
|
|
319
492
|
*/
|
|
320
493
|
destroyed: EmitType<Event>;
|
|
321
494
|
/**
|
|
322
495
|
* Removes the component from the DOM and detaches all its related event handlers, attributes and classes.
|
|
323
|
-
*
|
|
496
|
+
*
|
|
497
|
+
* @returns {void}
|
|
324
498
|
*/
|
|
325
499
|
destroy(): void;
|
|
500
|
+
/**
|
|
501
|
+
* Refresh the tab component
|
|
502
|
+
*
|
|
503
|
+
* @returns {void}
|
|
504
|
+
*/
|
|
505
|
+
refresh(): void;
|
|
326
506
|
/**
|
|
327
507
|
* Initialize component
|
|
508
|
+
*
|
|
328
509
|
* @private
|
|
510
|
+
* @returns {void}
|
|
329
511
|
*/
|
|
330
512
|
protected preRender(): void;
|
|
331
513
|
/**
|
|
332
514
|
* Initializes a new instance of the Tab class.
|
|
333
|
-
*
|
|
334
|
-
* @param
|
|
515
|
+
*
|
|
516
|
+
* @param {TabModel} options - Specifies Tab model properties as options.
|
|
517
|
+
* @param {string | HTMLElement} element - Specifies the element that is rendered as a Tab.
|
|
335
518
|
*/
|
|
336
519
|
constructor(options?: TabModel, element?: string | HTMLElement);
|
|
337
520
|
/**
|
|
338
521
|
* Initialize the component rendering
|
|
522
|
+
*
|
|
339
523
|
* @private
|
|
524
|
+
* @returns {void}
|
|
340
525
|
*/
|
|
341
526
|
protected render(): void;
|
|
342
527
|
private renderContainer;
|
|
@@ -347,12 +532,12 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
347
532
|
private removeActiveClass;
|
|
348
533
|
private checkPopupOverflow;
|
|
349
534
|
private popupHandler;
|
|
350
|
-
private updateOrientationAttribute;
|
|
351
535
|
private setCloseButton;
|
|
352
536
|
private prevCtnAnimation;
|
|
353
537
|
private triggerPrevAnimation;
|
|
354
538
|
private triggerAnimation;
|
|
355
539
|
private keyPressed;
|
|
540
|
+
private getTabHeader;
|
|
356
541
|
private getEleIndex;
|
|
357
542
|
private extIndex;
|
|
358
543
|
private expTemplateContent;
|
|
@@ -366,6 +551,8 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
366
551
|
private addVerticalClass;
|
|
367
552
|
private updatePopAnimationConfig;
|
|
368
553
|
private changeOrientation;
|
|
554
|
+
private focusItem;
|
|
555
|
+
private changeToolbarOrientation;
|
|
369
556
|
private setOrientation;
|
|
370
557
|
private setCssClass;
|
|
371
558
|
private setContentHeight;
|
|
@@ -376,75 +563,113 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
376
563
|
private setRTL;
|
|
377
564
|
private refreshActiveBorder;
|
|
378
565
|
private showPopup;
|
|
566
|
+
private bindDraggable;
|
|
379
567
|
private wireEvents;
|
|
380
568
|
private unWireEvents;
|
|
381
569
|
private clickHandler;
|
|
382
570
|
private swipeHandler;
|
|
383
571
|
private spaceKeyDown;
|
|
384
572
|
private keyHandler;
|
|
385
|
-
private refreshActElePosition;
|
|
386
573
|
private refreshItemVisibility;
|
|
574
|
+
private getIndexFromEle;
|
|
387
575
|
private hoverHandler;
|
|
388
576
|
private evalOnPropertyChangeItems;
|
|
577
|
+
private initializeDrag;
|
|
578
|
+
private helper;
|
|
579
|
+
private itemDragStart;
|
|
580
|
+
private dragAction;
|
|
581
|
+
private itemDragStop;
|
|
389
582
|
/**
|
|
390
583
|
* Enables or disables the specified Tab item. On passing value as `false`, the item will be disabled.
|
|
391
|
-
*
|
|
392
|
-
* @param
|
|
584
|
+
*
|
|
585
|
+
* @param {number} index - Index value of target Tab item.
|
|
586
|
+
* @param {boolean} value - Boolean value that determines whether the command should be enabled or disabled.
|
|
393
587
|
* By default, isEnable is true.
|
|
394
|
-
* @returns void.
|
|
588
|
+
* @returns {void}.
|
|
395
589
|
*/
|
|
396
590
|
enableTab(index: number, value: boolean): void;
|
|
397
591
|
/**
|
|
398
592
|
* Adds new items to the Tab that accepts an array as Tab items.
|
|
399
|
-
*
|
|
400
|
-
* @param
|
|
401
|
-
* @
|
|
593
|
+
*
|
|
594
|
+
* @param {TabItemModel[]} items - An array of item that is added to the Tab.
|
|
595
|
+
* @param {number} index - Number value that determines where the items to be added. By default, index is 0.
|
|
596
|
+
* @returns {void}.
|
|
402
597
|
*/
|
|
403
598
|
addTab(items: TabItemModel[], index?: number): void;
|
|
599
|
+
private addingTabContent;
|
|
404
600
|
/**
|
|
405
601
|
* Removes the items in the Tab from the specified index.
|
|
406
|
-
*
|
|
407
|
-
* @
|
|
602
|
+
*
|
|
603
|
+
* @param {number} index - Index of target item that is going to be removed.
|
|
604
|
+
* @returns {void}.
|
|
408
605
|
*/
|
|
409
606
|
removeTab(index: number): void;
|
|
410
607
|
/**
|
|
411
608
|
* Shows or hides the Tab that is in the specified index.
|
|
412
|
-
*
|
|
413
|
-
* @param
|
|
414
|
-
* @
|
|
609
|
+
*
|
|
610
|
+
* @param {number} index - Index value of target item.
|
|
611
|
+
* @param {boolean} value - Based on this Boolean value, item will be hide (false) or show (true). By default, value is true.
|
|
612
|
+
* @returns {void}.
|
|
415
613
|
*/
|
|
416
614
|
hideTab(index: number, value?: boolean): void;
|
|
615
|
+
private selectTab;
|
|
417
616
|
/**
|
|
418
617
|
* Specifies the index or HTMLElement to select an item from the Tab.
|
|
419
|
-
*
|
|
420
|
-
* @
|
|
618
|
+
*
|
|
619
|
+
* @param {number | HTMLElement} args - Index or DOM element is used for selecting an item from the Tab.
|
|
620
|
+
* @param {Event} event - An event which takes place in DOM.
|
|
621
|
+
* @returns {void}
|
|
622
|
+
*/
|
|
623
|
+
select(args: number | HTEle, event?: Event): void;
|
|
624
|
+
private selectingContent;
|
|
625
|
+
/**
|
|
626
|
+
* Gets the item index from the Tab.
|
|
627
|
+
*
|
|
628
|
+
* @param {string} tabItemId - Item ID is used for getting index from the Tab.
|
|
629
|
+
* @returns {number} - It returns item index.
|
|
421
630
|
*/
|
|
422
|
-
|
|
631
|
+
getItemIndex(tabItemId: string): number;
|
|
423
632
|
/**
|
|
424
633
|
* Specifies the value to disable/enable the Tab component.
|
|
425
634
|
* When set to `true`, the component will be disabled.
|
|
635
|
+
*
|
|
426
636
|
* @param {boolean} value - Based on this Boolean value, Tab will be enabled (false) or disabled (true).
|
|
427
|
-
* @returns void.
|
|
637
|
+
* @returns {void}.
|
|
428
638
|
*/
|
|
429
639
|
disable(value: boolean): void;
|
|
430
640
|
/**
|
|
431
641
|
* Get the properties to be maintained in the persisted state.
|
|
432
|
-
*
|
|
642
|
+
*
|
|
643
|
+
* @returns {string} - It returns the persisted state.
|
|
433
644
|
*/
|
|
434
645
|
protected getPersistData(): string;
|
|
435
646
|
/**
|
|
436
647
|
* Returns the current module name.
|
|
437
|
-
*
|
|
648
|
+
*
|
|
649
|
+
* @returns {string} - It returns the current module name.
|
|
438
650
|
* @private
|
|
439
651
|
*/
|
|
440
652
|
protected getModuleName(): string;
|
|
441
653
|
/**
|
|
442
654
|
* Gets called when the model property changes.The data that describes the old and new values of the property that changed.
|
|
443
|
-
*
|
|
444
|
-
* @param {TabModel}
|
|
445
|
-
* @
|
|
655
|
+
*
|
|
656
|
+
* @param {TabModel} newProp - It contains the new value of data.
|
|
657
|
+
* @param {TabModel} oldProp - It contains the old value of data.
|
|
658
|
+
* @returns {void}
|
|
446
659
|
* @private
|
|
447
660
|
*/
|
|
448
661
|
onPropertyChanged(newProp: TabModel, oldProp: TabModel): void;
|
|
662
|
+
/**
|
|
663
|
+
* To refresh the active tab contents.
|
|
664
|
+
*
|
|
665
|
+
* @returns {void}
|
|
666
|
+
*/
|
|
667
|
+
refreshActiveTab(): void;
|
|
668
|
+
/**
|
|
669
|
+
* To refresh the active tab indicator.
|
|
670
|
+
*
|
|
671
|
+
* @returns {void}
|
|
672
|
+
*/
|
|
673
|
+
refreshActiveTabBorder(): void;
|
|
449
674
|
}
|
|
450
675
|
export {};
|