@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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,1427 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## 21.1.37 (2023-03-29)
|
|
6
|
+
|
|
7
|
+
### TreeView
|
|
8
|
+
|
|
9
|
+
#### Bug fixes
|
|
10
|
+
|
|
11
|
+
- `#I449274` - Resolved the nodeSelected event not working properly issue on iPad.
|
|
12
|
+
|
|
13
|
+
## 21.1.35 (2023-03-23)
|
|
14
|
+
|
|
15
|
+
### Tab
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#I441253` - An issue with the `aria-disabled` role accessibility has been fixed.
|
|
20
|
+
|
|
21
|
+
### Toolbar
|
|
22
|
+
|
|
23
|
+
#### Breaking Changes
|
|
24
|
+
|
|
25
|
+
- We improved the Toolbar alignments with a flex design, which may cause slight changes to the alignment of Toolbar items.
|
|
26
|
+
|
|
27
|
+
## 20.4.53 (2023-03-07)
|
|
28
|
+
|
|
29
|
+
### Sidebar
|
|
30
|
+
|
|
31
|
+
#### Bug Fixes
|
|
32
|
+
|
|
33
|
+
- `#F180770` - While dynamically setting value for showBackdrop property results in creating duplicate DOM elements in Sidebar is resolved.
|
|
34
|
+
|
|
35
|
+
### ContextMenu
|
|
36
|
+
|
|
37
|
+
#### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- `#I439558` - The issue with "When removing all context menu items that contain icons using removeItems method, it thrown null reference error" has been resolved.
|
|
40
|
+
|
|
41
|
+
### Breadcrumb
|
|
42
|
+
|
|
43
|
+
#### Bug Fixes
|
|
44
|
+
|
|
45
|
+
- `#I437629` - Issue with "Breadcrumb overflow mode menu creates a dark point for multiple click " has been resolved.
|
|
46
|
+
|
|
47
|
+
### TreeView
|
|
48
|
+
|
|
49
|
+
#### Bug Fixes
|
|
50
|
+
|
|
51
|
+
- `#I436646`, `#I435360` - Resolved issue, while drag and drop other elements over TreeView component, then "not-allowed" cursor appears.
|
|
52
|
+
|
|
53
|
+
## 20.4.52 (2023-02-28)
|
|
54
|
+
|
|
55
|
+
## 20.4.51 (2023-02-21)
|
|
56
|
+
|
|
57
|
+
### TreeView
|
|
58
|
+
|
|
59
|
+
#### Bug Fixes
|
|
60
|
+
|
|
61
|
+
- `#I428766` - Alignment issue in TreeView node without a sub-child in RTL mode has been resolved.
|
|
62
|
+
- `#I428002` - The accessibility related issues in the TreeView has been resolved.
|
|
63
|
+
|
|
64
|
+
## 20.4.49 (2023-02-07)
|
|
65
|
+
|
|
66
|
+
### Accordion
|
|
67
|
+
|
|
68
|
+
#### Bug Fixes
|
|
69
|
+
|
|
70
|
+
- `#I430833` - An issue with accordion active item styles override the grid pager has been fixed.
|
|
71
|
+
|
|
72
|
+
### Menu
|
|
73
|
+
|
|
74
|
+
#### Bug Fixes
|
|
75
|
+
|
|
76
|
+
- `#I425152` - The issue with "Menu item not render properly when we use ItemTemplate with custom menu items" has been resolved.
|
|
77
|
+
|
|
78
|
+
## 20.4.48 (2023-02-01)
|
|
79
|
+
|
|
80
|
+
### Tab
|
|
81
|
+
|
|
82
|
+
#### Bug Fixes
|
|
83
|
+
|
|
84
|
+
- `#I427978` - Fixed an issue with cyclic navigation using arrow keys, where focus would shift to the first element after reaching the last element, and vice versa. Also, accessibility has been enhanced using the aria-label attributes.
|
|
85
|
+
|
|
86
|
+
### Sidebar
|
|
87
|
+
|
|
88
|
+
#### Bug Fixes
|
|
89
|
+
|
|
90
|
+
- `#F179759` - Console error while using the showBackdrop property in the Sidebar component has been resolved.
|
|
91
|
+
|
|
92
|
+
### TreeView
|
|
93
|
+
|
|
94
|
+
#### Bug Fixes
|
|
95
|
+
|
|
96
|
+
- `#I428488` - Included the "action" and "nodeData" values in the dataSourceChanged event.
|
|
97
|
+
- `#I428766` - Alignment issue in TreeView node without a sub-child has been resolved.
|
|
98
|
+
|
|
99
|
+
## 20.4.44 (2023-01-18)
|
|
100
|
+
|
|
101
|
+
### ContextMenu
|
|
102
|
+
|
|
103
|
+
#### Bug Fixes
|
|
104
|
+
|
|
105
|
+
- `#I425173` - The issue with "Context menu Submenus not opening properly with multiple levels " has been resolved.
|
|
106
|
+
|
|
107
|
+
## 20.4.43 (2023-01-10)
|
|
108
|
+
|
|
109
|
+
### ContextMenu
|
|
110
|
+
|
|
111
|
+
#### Bug Fixes
|
|
112
|
+
|
|
113
|
+
- `#I424794` - The issue with "Script error thrown in context menu when navigate using the keyboard" has been resolved.
|
|
114
|
+
|
|
115
|
+
### TreeView
|
|
116
|
+
|
|
117
|
+
#### Bug Fixes
|
|
118
|
+
|
|
119
|
+
- `#I422672` - The expand icon not working properly in mobile mode issue has been fixed.
|
|
120
|
+
|
|
121
|
+
## 20.4.42 (2023-01-04)
|
|
122
|
+
|
|
123
|
+
### TreeView
|
|
124
|
+
|
|
125
|
+
#### Bug Fixes
|
|
126
|
+
|
|
127
|
+
- `#I424859` - The issue with the "TreeView isInteracted property returning false value with the NodeExpanded and NodeCollapsed event" has been fixed.
|
|
128
|
+
|
|
129
|
+
## 20.4.40 (2022-12-28)
|
|
130
|
+
|
|
131
|
+
### ContextMenu
|
|
132
|
+
|
|
133
|
+
#### Bug Fixes
|
|
134
|
+
|
|
135
|
+
- `#I425402` - Accessibility issue in context menu has been fixed.
|
|
136
|
+
|
|
137
|
+
## 20.4.38 (2022-12-21)
|
|
138
|
+
|
|
139
|
+
### Toolbar
|
|
140
|
+
|
|
141
|
+
#### New Features
|
|
142
|
+
|
|
143
|
+
- `#I348957` - Provided option to specify `tabindex` attribute to control the tab key order of the toolbar elements.
|
|
144
|
+
|
|
145
|
+
### Tab
|
|
146
|
+
|
|
147
|
+
#### New Features
|
|
148
|
+
|
|
149
|
+
- `#I348957` - Provided option to specify `tabindex` attribute to control the tab key order of tab header elements.
|
|
150
|
+
|
|
151
|
+
#### Bug Fixes
|
|
152
|
+
|
|
153
|
+
- `#I422226` - An issue with while using underscore on tab id wrong content shown has been resolved.
|
|
154
|
+
- `#F179266` - Tab height does not change dynamically when `heightAdjustMode` has set as `Fill` mode has been resolved.
|
|
155
|
+
|
|
156
|
+
### TreeView
|
|
157
|
+
|
|
158
|
+
#### Bug Fixes
|
|
159
|
+
|
|
160
|
+
- `#I415237` - The TreeView performance issue in Vue3 framework has been resolved.
|
|
161
|
+
|
|
162
|
+
## 20.3.58 (2022-11-22)
|
|
163
|
+
|
|
164
|
+
### Carousel
|
|
165
|
+
|
|
166
|
+
#### Bug Fixes
|
|
167
|
+
|
|
168
|
+
- `#I419341` - The Blank carousel item displayed on `autoplay` when a single item alone is rendered has been resolved.
|
|
169
|
+
|
|
170
|
+
### TreeView
|
|
171
|
+
|
|
172
|
+
#### Bug Fixes
|
|
173
|
+
|
|
174
|
+
- `#I415849` - The issue with "Expand animation is not working for the dynamically added node on initial expanding in TreeView" has been resolved.
|
|
175
|
+
|
|
176
|
+
## 20.3.57 (2022-11-15)
|
|
177
|
+
|
|
178
|
+
- `#I417236` - The accessibility issue mentioned in the TreeView component has been resolved.
|
|
179
|
+
|
|
180
|
+
## 20.3.50 (2022-10-18)
|
|
181
|
+
|
|
182
|
+
### ContextMenu
|
|
183
|
+
|
|
184
|
+
#### Bug Fixes
|
|
185
|
+
|
|
186
|
+
- `#I413061` - The issue with "Keyboard navigation not working properly when we open context menu using open method" has been resolved.
|
|
187
|
+
|
|
188
|
+
## 20.3.49 (2022-10-11)
|
|
189
|
+
|
|
190
|
+
### Accordion
|
|
191
|
+
|
|
192
|
+
#### Bug Fixes
|
|
193
|
+
|
|
194
|
+
- `SF-397894` - An issue with incorrect aria attributes in accordion has been fixed.
|
|
195
|
+
|
|
196
|
+
## 20.3.47 (2022-10-11)
|
|
197
|
+
|
|
198
|
+
### Sidebar
|
|
199
|
+
|
|
200
|
+
#### Bug Fixes
|
|
201
|
+
|
|
202
|
+
- `#I397894` - The issue with "using tab index as `0` on the container of Sidebar component" has been resolved.
|
|
203
|
+
|
|
204
|
+
### ContextMenu
|
|
205
|
+
|
|
206
|
+
#### Bug Fixes
|
|
207
|
+
|
|
208
|
+
- `#I408315` - Script error thrown in `insertBefore` method While items not available in menu items has been fixed.
|
|
209
|
+
|
|
210
|
+
## 20.3.48 (2022-10-05)
|
|
211
|
+
|
|
212
|
+
### TreeView
|
|
213
|
+
|
|
214
|
+
#### Bug Fixes
|
|
215
|
+
|
|
216
|
+
- `#I318072` - The issue with "Checkbox is not added to dropped node, when drop target TreeView has enabled with checkboxes in the TreeView component" has been resolved.
|
|
217
|
+
|
|
218
|
+
### Accordion
|
|
219
|
+
|
|
220
|
+
#### Bug Fixes
|
|
221
|
+
|
|
222
|
+
- `#F177760` - An issue with adding/removing multiple CSS classes to tab items `cssClass` property has been fixed.
|
|
223
|
+
|
|
224
|
+
## 20.3.47 (2022-09-29)
|
|
225
|
+
|
|
226
|
+
### AppBar
|
|
227
|
+
|
|
228
|
+
The AppBar displays information and actions related to the current application screen. It is used to show branding, screen titles, navigation, and actions.
|
|
229
|
+
|
|
230
|
+
- **Modes** - `Regular`, `Prominent`, and `Dense` modes that define the AppBar height.
|
|
231
|
+
- **Content arrangement** - Spacer and separator options can be used to align the content based on the UI requirement with minimal effort.
|
|
232
|
+
- **Color** - `Primary`, `Light`, `Dark`, and `Inherit` options to customize the AppBar color.
|
|
233
|
+
- **Position** - AppBars can be placed at the top or bottom of the screen. It can also be sticky.
|
|
234
|
+
|
|
235
|
+
### Carousel
|
|
236
|
+
|
|
237
|
+
#### New Features
|
|
238
|
+
|
|
239
|
+
- Provided partial visible functionality to carousel which enables the active slide with partial previous/next slide.
|
|
240
|
+
|
|
241
|
+
### Tab
|
|
242
|
+
|
|
243
|
+
#### New Features
|
|
244
|
+
|
|
245
|
+
- `#I237390` - Provided support to disable the animation while switching the tab item.
|
|
246
|
+
|
|
247
|
+
## 20.2.49 (2022-09-13)
|
|
248
|
+
|
|
249
|
+
### ContextMenu
|
|
250
|
+
|
|
251
|
+
#### Bug Fixes
|
|
252
|
+
|
|
253
|
+
- `#I400719` - Script error thrown when we provided remove item is not available in the menu items has been fixed.
|
|
254
|
+
|
|
255
|
+
## 20.2.48 (2022-09-06)
|
|
256
|
+
|
|
257
|
+
### Menu
|
|
258
|
+
|
|
259
|
+
#### Bug Fixes
|
|
260
|
+
|
|
261
|
+
- `#I396977` - The issue with "`SetItem` method not working properly for customized menu item" has been resolved.
|
|
262
|
+
|
|
263
|
+
## 20.2.46 (2022-08-30)
|
|
264
|
+
|
|
265
|
+
### Menu
|
|
266
|
+
|
|
267
|
+
#### Bug Fixes
|
|
268
|
+
|
|
269
|
+
- `#I387276` - The issue with "Enable Scrolling not working properly when we dynamically set scroll to menu bar" has been resolved.
|
|
270
|
+
|
|
271
|
+
## 20.2.44 (2022-08-16)
|
|
272
|
+
|
|
273
|
+
### TreeView
|
|
274
|
+
|
|
275
|
+
#### Bug Fixes
|
|
276
|
+
|
|
277
|
+
- `#F176651` - The issue with "Checkbox state is not maintained properly for multilevel nodes in the TreeView component" has been resolved.
|
|
278
|
+
|
|
279
|
+
## 20.2.39 (2022-07-19)
|
|
280
|
+
|
|
281
|
+
### Tab
|
|
282
|
+
|
|
283
|
+
#### Bug fixes
|
|
284
|
+
|
|
285
|
+
- `#I388161` - An issue with "Removing the selected tab item" has been fixed.
|
|
286
|
+
- `#I390262` - An issue with "Tab item dropped in wrong position" has been fixed.
|
|
287
|
+
|
|
288
|
+
## 20.2.36 (2022-06-30)
|
|
289
|
+
|
|
290
|
+
### Carousel
|
|
291
|
+
|
|
292
|
+
#### New Features
|
|
293
|
+
|
|
294
|
+
- Provided option to play or pause the slides when hovering the mouse pointer over the Carousel element.
|
|
295
|
+
|
|
296
|
+
#### Breaking Changes
|
|
297
|
+
|
|
298
|
+
- Removed `animation` property from Carousel component, now you can set the animation effect directly to the `animationEffect` property.
|
|
299
|
+
- To apply custom animation effects, Needs to set `animationEffect` property to `custom` and specify the custom animation class in `cssClass` property.
|
|
300
|
+
|
|
301
|
+
**Previous**
|
|
302
|
+
|
|
303
|
+
```typescript
|
|
304
|
+
|
|
305
|
+
const carouselObj: Carousel = new Carousel({
|
|
306
|
+
animation: { customEffect: "parallax" }
|
|
307
|
+
});
|
|
308
|
+
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
**Now**
|
|
312
|
+
|
|
313
|
+
```typescript
|
|
314
|
+
|
|
315
|
+
const carouselObj: Carousel = new Carousel({
|
|
316
|
+
cssClass: 'parallax',
|
|
317
|
+
animationEffect: 'custom'
|
|
318
|
+
});
|
|
319
|
+
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
### TreeView
|
|
323
|
+
|
|
324
|
+
#### Bug Fixes
|
|
325
|
+
|
|
326
|
+
- `#I383454` - The issue with "The TreeView checked nodes state not maintained for remote data when enabling the persistence" has been resolved.
|
|
327
|
+
|
|
328
|
+
## 20.1.61 (2022-06-21)
|
|
329
|
+
|
|
330
|
+
### Tab
|
|
331
|
+
|
|
332
|
+
#### Bug Fixes
|
|
333
|
+
|
|
334
|
+
- `#I384728` - An issue with "Tab `data-id` attribute does not work after the initial load" has been fixed.
|
|
335
|
+
|
|
336
|
+
## 20.1.60 (2022-06-14)
|
|
337
|
+
|
|
338
|
+
### Sidebar
|
|
339
|
+
|
|
340
|
+
#### Bug Fixes
|
|
341
|
+
|
|
342
|
+
- `#F175215` - The issue with "Sidebar showBackdrop property is not working properly while setting the target property" has been resolved.
|
|
343
|
+
|
|
344
|
+
## 20.1.58 (2022-05-31)
|
|
345
|
+
|
|
346
|
+
### Tab
|
|
347
|
+
|
|
348
|
+
#### Bug Fixes
|
|
349
|
+
|
|
350
|
+
- `#I377292` - Accessibility issues in tab has been fixed.
|
|
351
|
+
|
|
352
|
+
## 20.1.56 (2022-05-17)
|
|
353
|
+
|
|
354
|
+
### Menu
|
|
355
|
+
|
|
356
|
+
#### Bug Fixes
|
|
357
|
+
|
|
358
|
+
- `#I373045` - An issue with "Script error occurs while using keyboard navigation in menu" has been resolved.
|
|
359
|
+
|
|
360
|
+
### TreeView
|
|
361
|
+
|
|
362
|
+
#### Bug Fixes
|
|
363
|
+
|
|
364
|
+
- `#I371505` - The issue with "The TreeView checked node state doesn't update properly for nested levels when loadOnDemand is enabled" has been resolved.
|
|
365
|
+
|
|
366
|
+
### Tab
|
|
367
|
+
|
|
368
|
+
#### Bug Fixes
|
|
369
|
+
|
|
370
|
+
- `#F174831` - An issue with drag not works when adding multiple tab items has been fixed.
|
|
371
|
+
|
|
372
|
+
## 20.1.51 (2022-04-26)
|
|
373
|
+
|
|
374
|
+
### TreeView
|
|
375
|
+
|
|
376
|
+
#### Bug Fixes
|
|
377
|
+
|
|
378
|
+
- `#I371505` - The issue with "The TreeView checked node state doesn't update properly for nested levels when loadOnDemand is enabled" has been resolved.
|
|
379
|
+
|
|
380
|
+
### Tab
|
|
381
|
+
|
|
382
|
+
#### Bug Fixes
|
|
383
|
+
|
|
384
|
+
- `#F174269` - Tab throws script error while adding items with `headerTemplate` has been fixed.
|
|
385
|
+
|
|
386
|
+
## 20.1.48 (2022-04-12)
|
|
387
|
+
|
|
388
|
+
### Menu
|
|
389
|
+
|
|
390
|
+
#### Bug Fixes
|
|
391
|
+
|
|
392
|
+
- `#I371293` - Resolved the "Context menu not closed properly when the two separate context menu binded in the DOM" in menu component.
|
|
393
|
+
- `#I369007` - An issue with "Script error throws when we remove items with hamburger mode in mobile view" has been resolved.
|
|
394
|
+
|
|
395
|
+
### Toolbar
|
|
396
|
+
|
|
397
|
+
#### Bug Fixes
|
|
398
|
+
|
|
399
|
+
- `#I372768` - An issue with the toolbar scrollable buttons accessibility issue has been fixed.
|
|
400
|
+
|
|
401
|
+
## 20.1.47 (2022-04-04)
|
|
402
|
+
|
|
403
|
+
### Carousel
|
|
404
|
+
|
|
405
|
+
The Carousel component allows users to display images with content, links, etc., like a slide show. Typical uses of carousels include scrolling news headlines, featured articles on home pages, and image galleries.
|
|
406
|
+
|
|
407
|
+
- **Rendering** - The Carousel component can be rendered based on the items collection and data binding.
|
|
408
|
+
- **Animation** - Supports animation effects for moving previous/next item of Carousel.
|
|
409
|
+
- **Template Support** - The Carousel component items and buttons can also be rendered with custom templates.
|
|
410
|
+
- **Keyboard Support** - By default, the Carousel allows interaction with commands by using keyboard shortcuts.
|
|
411
|
+
- **Accessibility** - The Carousel provides built-in compliance with the `WAI-ARIA` specifications and it is achieved through attributes.
|
|
412
|
+
|
|
413
|
+
### Tab
|
|
414
|
+
|
|
415
|
+
#### Bug Fixes
|
|
416
|
+
|
|
417
|
+
- `SF-369202, #F173364` - An issue with another tab item content is rendered in newly added tab item content has been fixed.
|
|
418
|
+
|
|
419
|
+
## 19.4.55 (2022-03-08)
|
|
420
|
+
|
|
421
|
+
### Menu
|
|
422
|
+
|
|
423
|
+
#### Bug Fixes
|
|
424
|
+
|
|
425
|
+
- `#I368643` - Resolved theme related issue in menu component.
|
|
426
|
+
|
|
427
|
+
### Tab
|
|
428
|
+
|
|
429
|
+
#### Bug Fixes
|
|
430
|
+
|
|
431
|
+
- `SF-369303` - An issue with hiding tab item dynamically with `visible` property not working has been fixed.
|
|
432
|
+
|
|
433
|
+
## 19.4.53 (2022-02-22)
|
|
434
|
+
|
|
435
|
+
### Sidebar
|
|
436
|
+
|
|
437
|
+
#### Bug Fixes
|
|
438
|
+
|
|
439
|
+
- `#I363057` - The issue with "The change event is triggered twice for the first change in Sidebar component" has been resolved.
|
|
440
|
+
|
|
441
|
+
## 19.4.52 (2022-02-15)
|
|
442
|
+
|
|
443
|
+
### Toolbar
|
|
444
|
+
|
|
445
|
+
#### Bug Fixes
|
|
446
|
+
|
|
447
|
+
- `#SF-365188` - An issue with the toolbar item separator not being hidden in multi-row mode has been fixed.
|
|
448
|
+
|
|
449
|
+
## 19.4.50 (2022-02-08)
|
|
450
|
+
|
|
451
|
+
### Menu
|
|
452
|
+
|
|
453
|
+
#### Bug Fixes
|
|
454
|
+
|
|
455
|
+
- Issue with `setItem` method has been fixed.
|
|
456
|
+
|
|
457
|
+
## 19.4.47 (2022-01-25)
|
|
458
|
+
|
|
459
|
+
### Breadcrumb
|
|
460
|
+
|
|
461
|
+
#### Bug Fixes
|
|
462
|
+
|
|
463
|
+
- `#I360615` - Issue with When Breadcrumb is build, it throws style warning has been resolved.
|
|
464
|
+
|
|
465
|
+
### Tab
|
|
466
|
+
|
|
467
|
+
#### Bug Fixes
|
|
468
|
+
|
|
469
|
+
- `#SF-363121` - An issue with "script error occurred while adding a new tab item without content" has been fixed.
|
|
470
|
+
|
|
471
|
+
### Breadcrumb
|
|
472
|
+
|
|
473
|
+
#### Bug Fixes
|
|
474
|
+
|
|
475
|
+
- Issue with CSS validation has been fixed.
|
|
476
|
+
|
|
477
|
+
## 19.4.41 (2022-01-04)
|
|
478
|
+
|
|
479
|
+
### Menu
|
|
480
|
+
|
|
481
|
+
#### Bug Fixes
|
|
482
|
+
|
|
483
|
+
- Sub menu position alignment issue in menu has been resolved.
|
|
484
|
+
|
|
485
|
+
### Tab
|
|
486
|
+
|
|
487
|
+
#### Bug Fixes
|
|
488
|
+
|
|
489
|
+
- `#SF-359072` - An issue with active tab selection is not highlight when render inside the `dialog` has been fixed.
|
|
490
|
+
|
|
491
|
+
## 19.4.40 (2021-12-28)
|
|
492
|
+
|
|
493
|
+
### Context Menu
|
|
494
|
+
|
|
495
|
+
#### Bug Fixes
|
|
496
|
+
|
|
497
|
+
- `#I346314` - Issue with `stopPropagation` not works for context menu has been resolved.
|
|
498
|
+
|
|
499
|
+
## 19.4.38 (2021-12-17)
|
|
500
|
+
|
|
501
|
+
### Tab
|
|
502
|
+
|
|
503
|
+
#### New Features
|
|
504
|
+
|
|
505
|
+
- `#I302394` - Provided support to maintain the active item in either tab header area or inside the popup.
|
|
506
|
+
- `#F166169` - Provided support to identify the tab select event raised by user interaction or programmatic way.
|
|
507
|
+
|
|
508
|
+
### TreeView
|
|
509
|
+
|
|
510
|
+
#### New Features
|
|
511
|
+
|
|
512
|
+
- `#FB27518` - Provided support to wrap the TreeView node text when its text content exceeds the TreeView node width.
|
|
513
|
+
|
|
514
|
+
### Breadcrumb
|
|
515
|
+
|
|
516
|
+
#### New Features
|
|
517
|
+
|
|
518
|
+
- Provided new types of overflow mode and as follows:
|
|
519
|
+
|
|
520
|
+
1. **Menu**: Shows the number of breadcrumb items that can be accommodated within the container space, and creates a sub menu with the remaining items.
|
|
521
|
+
2. **Wrap**: Wraps the items on multiple lines when the Breadcrumb’s width exceeds the container space.
|
|
522
|
+
3. **Scroll**: Shows an HTML scroll bar when the Breadcrumb’s width exceeds the container space.
|
|
523
|
+
4. **None**: Shows all the items on a single line.
|
|
524
|
+
|
|
525
|
+
- Provided `cancel` support in `beforeItemRender` event.
|
|
526
|
+
|
|
527
|
+
#### Breaking Changes
|
|
528
|
+
|
|
529
|
+
- Provided `disabled` property in Breadcrumb and Breadcrumb's Item instead of using CSS class `e-disabled`.
|
|
530
|
+
- Removed `width` property from Breadcrumb component, you can set `width` in the style attribute of CSS to breadcrumb's element or its parent element.
|
|
531
|
+
|
|
532
|
+
## 19.3.57 (2021-12-07)
|
|
533
|
+
|
|
534
|
+
### Sidebar
|
|
535
|
+
|
|
536
|
+
#### Bug Fixes
|
|
537
|
+
|
|
538
|
+
- `#I347551` - The issue with "The sidebar main content margin value changes when using Sidebar type as Over and dock support" has been fixed.
|
|
539
|
+
|
|
540
|
+
## 19.3.56 (2021-12-02)
|
|
541
|
+
|
|
542
|
+
### TreeView
|
|
543
|
+
|
|
544
|
+
#### Bug Fixes
|
|
545
|
+
|
|
546
|
+
- `#I342745` - The performance issue that occurred when selecting a node that was rendered with a huge data source has been resolved.
|
|
547
|
+
|
|
548
|
+
## 19.3.54 (2021-11-17)
|
|
549
|
+
|
|
550
|
+
### Tab
|
|
551
|
+
|
|
552
|
+
#### Bug Fixes
|
|
553
|
+
|
|
554
|
+
- `#I347014` - An issue with dynamic tab item navigation if scheduler is present on a page has been fixed.
|
|
555
|
+
- `#I296232` - The issue with "Script error occurs while updating the tab header text" has been resolved.
|
|
556
|
+
|
|
557
|
+
## 19.3.46 (2021-10-19)
|
|
558
|
+
|
|
559
|
+
### Tab
|
|
560
|
+
|
|
561
|
+
#### Bug Fixes
|
|
562
|
+
|
|
563
|
+
- `#I344626` - An issue with the tab header and content items are not updated on state change has been fixed.
|
|
564
|
+
|
|
565
|
+
## 19.3.45 (2021-10-12)
|
|
566
|
+
|
|
567
|
+
### Breadcrumb
|
|
568
|
+
|
|
569
|
+
#### Bug Fixes
|
|
570
|
+
|
|
571
|
+
- Disabled item get tab focus when item's URL is specified issue has been resolved.
|
|
572
|
+
|
|
573
|
+
## 19.3.43 (2021-09-30)
|
|
574
|
+
|
|
575
|
+
### Tab
|
|
576
|
+
|
|
577
|
+
#### Bug Fixes
|
|
578
|
+
|
|
579
|
+
- `#I341589` - An issue with the tab content not updated properly on the initial load has been fixed.
|
|
580
|
+
|
|
581
|
+
### Breadcrumb
|
|
582
|
+
|
|
583
|
+
Breadcrumb is a graphical user interface that helps to identify or highlight the current location within a hierarchical structure of websites. The aim is to make the user aware of their current position in a hierarchy of website links.
|
|
584
|
+
|
|
585
|
+
- **Overflow Mode** - Used to limit the number of breadcrumb items to be displayed.
|
|
586
|
+
- **Icons** - Icons can be specified in Breadcrumb items.
|
|
587
|
+
- **Template** - Supports template for item and separator.
|
|
588
|
+
- **Bind To Location** - Supports items to be rendered based on the URL or current location.
|
|
589
|
+
- **Accessibility** - Provided with built-in accessibility support that helps to access all the Breadcrumb component features through the keyboard, screen readers, or other assistive technology devices.
|
|
590
|
+
|
|
591
|
+
### Sidebar
|
|
592
|
+
|
|
593
|
+
#### Bug Fixes
|
|
594
|
+
|
|
595
|
+
- The issue with "The Sidebar background color is not correct in high-contrast theme" has been resolved.
|
|
596
|
+
|
|
597
|
+
## 19.2.62 (2021-09-14)
|
|
598
|
+
|
|
599
|
+
### Sidebar
|
|
600
|
+
|
|
601
|
+
#### Bug Fixes
|
|
602
|
+
|
|
603
|
+
- `#I341648` - The issue with "The resize event is not unwired after destroying the Sidebar component" has been resolved.
|
|
604
|
+
|
|
605
|
+
## 19.2.59 (2021-08-31)
|
|
606
|
+
|
|
607
|
+
### Tab
|
|
608
|
+
|
|
609
|
+
#### Bug Fixes
|
|
610
|
+
|
|
611
|
+
- `#I339402` - An issue with the tab `visible` property is not working on the initial load has been fixed.
|
|
612
|
+
|
|
613
|
+
## 19.2.56 (2021-08-17)
|
|
614
|
+
|
|
615
|
+
### Sidebar
|
|
616
|
+
|
|
617
|
+
#### Bug Fixes
|
|
618
|
+
|
|
619
|
+
- `#FB27112` - The issue with "The Sidebar flickering at initial loading" has been resolved.
|
|
620
|
+
|
|
621
|
+
### Tab
|
|
622
|
+
|
|
623
|
+
#### Bug Fixes
|
|
624
|
+
|
|
625
|
+
- `#F167809` - Tab content item class white space issue is fixed.
|
|
626
|
+
|
|
627
|
+
## 19.2.55 (2021-08-11)
|
|
628
|
+
|
|
629
|
+
### TreeView
|
|
630
|
+
|
|
631
|
+
#### Bug Fixes
|
|
632
|
+
|
|
633
|
+
- `#I337237` - Resolved the performance issue that occurred when removing more than 500 nodes from the TreeView using multiple selection.
|
|
634
|
+
|
|
635
|
+
### Tab
|
|
636
|
+
|
|
637
|
+
#### Bug Fixes
|
|
638
|
+
|
|
639
|
+
- `#I335995` - An issue with the touch event not triggering on tab content swipe has been fixed.
|
|
640
|
+
|
|
641
|
+
## 19.2.51 (2021-08-03)
|
|
642
|
+
|
|
643
|
+
### Tab
|
|
644
|
+
|
|
645
|
+
#### Bug Fixes
|
|
646
|
+
|
|
647
|
+
- `#F167176` - An issue with Tab item drag has been fixed.
|
|
648
|
+
|
|
649
|
+
## 19.2.48 (2021-07-20)
|
|
650
|
+
|
|
651
|
+
### Toolbar
|
|
652
|
+
|
|
653
|
+
#### Bug Fixes
|
|
654
|
+
|
|
655
|
+
- `#I335318` - An issue with Toolbar arrow icons when enabled RTL mode has been fixed.
|
|
656
|
+
|
|
657
|
+
## 19.2.46 (2021-07-06)
|
|
658
|
+
|
|
659
|
+
### Context Menu
|
|
660
|
+
|
|
661
|
+
#### Bug Fixes
|
|
662
|
+
|
|
663
|
+
- Role Attribute issue in context menu has been fixed.
|
|
664
|
+
|
|
665
|
+
## 19.1.69 (2021-06-15)
|
|
666
|
+
|
|
667
|
+
### Tab
|
|
668
|
+
|
|
669
|
+
#### Bug Fixes
|
|
670
|
+
|
|
671
|
+
- `#I330332` - An issue with the tab `aria-selected` attribute not properly updated has been fixed.
|
|
672
|
+
|
|
673
|
+
## 19.1.67 (2021-06-08)
|
|
674
|
+
|
|
675
|
+
### Toolbar
|
|
676
|
+
|
|
677
|
+
#### Bug Fixes
|
|
678
|
+
|
|
679
|
+
- `#F165830` - An issue with Toolbar template when state of component changed in functional based components has been fixed.
|
|
680
|
+
|
|
681
|
+
## 19.1.66 (2021-06-01)
|
|
682
|
+
|
|
683
|
+
### Menu
|
|
684
|
+
|
|
685
|
+
#### Bug Fixes
|
|
686
|
+
|
|
687
|
+
- `#I326704` - Provided an option to close the menu.
|
|
688
|
+
- `#I316367` - The issue with Menu Scroll bar using template in angular has been resolved.
|
|
689
|
+
- `#I328143` - The issue with Hamburger mode when changing items dynamically has been resolved.
|
|
690
|
+
|
|
691
|
+
### TreeView
|
|
692
|
+
|
|
693
|
+
#### Bug Fixes
|
|
694
|
+
|
|
695
|
+
- `#I328435` - Added the `!default` flag to the dark theme definition files.
|
|
696
|
+
- `#I326667` - The issue with "The getNode method returns invalid hasChildren attribute value while disabling the loadOnDemand support" has been resolved.
|
|
697
|
+
- `#FB24632` - Resolved the issue with "Unable to drop a node as child node while dropping it into the template node text" in the TreeView component.
|
|
698
|
+
|
|
699
|
+
## 19.1.63 (2021-05-13)
|
|
700
|
+
|
|
701
|
+
### Accordion
|
|
702
|
+
|
|
703
|
+
#### Bug Fixes
|
|
704
|
+
|
|
705
|
+
- `#I324822` - Provided the accessibility support for current state of accordion items `expanded/collapsed` when using screen reader.
|
|
706
|
+
|
|
707
|
+
### TreeView
|
|
708
|
+
|
|
709
|
+
#### Bug Fixes
|
|
710
|
+
|
|
711
|
+
- `#I320504` - The issue with "In IE Browser, the template TreeView throws an error when changing the data source using `useState`" has been resolved.
|
|
712
|
+
|
|
713
|
+
### Menu
|
|
714
|
+
|
|
715
|
+
#### New Features
|
|
716
|
+
|
|
717
|
+
- `#315809` - Delay support on hovering the menu.
|
|
718
|
+
|
|
719
|
+
## 19.1.59 (2021-05-04)
|
|
720
|
+
|
|
721
|
+
### Menu
|
|
722
|
+
|
|
723
|
+
#### Bug Fixes
|
|
724
|
+
|
|
725
|
+
- The issue with "Script error occurs while calling the refresh method in angular" has been resolved.
|
|
726
|
+
|
|
727
|
+
## 19.1.58 (2021-04-27)
|
|
728
|
+
|
|
729
|
+
### TreeView
|
|
730
|
+
|
|
731
|
+
#### Bug Fixes
|
|
732
|
+
|
|
733
|
+
- `#I320271` - The issue with "While performing drag and drop action between two TreeView components, the `dataSourceChanged` event is not triggered for the source TreeView" has been resolved.
|
|
734
|
+
- `#F158127` - The issue with "The TreeView `getAllCheckedNodes` method returns invalid data while setting invalid IDs to the `CheckedNodes` property" has been resolved.
|
|
735
|
+
|
|
736
|
+
## 19.1.57 (2021-04-20)
|
|
737
|
+
|
|
738
|
+
### Menu
|
|
739
|
+
|
|
740
|
+
#### Bug Fixes
|
|
741
|
+
|
|
742
|
+
- `#I316367` - Menu Scroll bar not working when window resized issue fixed.
|
|
743
|
+
|
|
744
|
+
## 19.1.54 (2021-03-30)
|
|
745
|
+
|
|
746
|
+
### Accordion
|
|
747
|
+
|
|
748
|
+
#### Breaking Changes
|
|
749
|
+
|
|
750
|
+
- The following properties type was changed.
|
|
751
|
+
|
|
752
|
+
| Property | Previous Type | Current Type |
|
|
753
|
+
|----------|---------------|--------------------------------|
|
|
754
|
+
| Disabled | `anonymous` | `boolean` |
|
|
755
|
+
| Expanded | `anonymous` | `boolean` |
|
|
756
|
+
| Visible | `anonymous` | `boolean` |
|
|
757
|
+
|
|
758
|
+
## 18.4.47 (2021-03-09)
|
|
759
|
+
|
|
760
|
+
### TreeView
|
|
761
|
+
|
|
762
|
+
#### Bug Fixes
|
|
763
|
+
|
|
764
|
+
- `#310875` - The issue with "The `isChecked` attribute is not working when using the `sortOrder` property in TreeView" has been resolved.
|
|
765
|
+
- `#282214` - Now the `isChecked` attribute value is updated properly in the `NodeChecked` event arguments in the TreeView component.
|
|
766
|
+
|
|
767
|
+
## 18.4.44 (2021-02-23)
|
|
768
|
+
|
|
769
|
+
### Tab
|
|
770
|
+
|
|
771
|
+
#### Bug Fixes
|
|
772
|
+
|
|
773
|
+
- `#311688` - An issue with getting console error in tab navigation has been fixed.
|
|
774
|
+
|
|
775
|
+
## 18.4.42 (2021-02-09)
|
|
776
|
+
|
|
777
|
+
### Sidebar
|
|
778
|
+
|
|
779
|
+
#### Bug Fixes
|
|
780
|
+
|
|
781
|
+
- `#309065` - The issue with "The Sidebar destroy method throws error when continuously called two times" has been resolved.
|
|
782
|
+
|
|
783
|
+
### Tab
|
|
784
|
+
|
|
785
|
+
#### Bug Fixes
|
|
786
|
+
|
|
787
|
+
- `#299892` - An issue with the Tab destroy method throws error has been resolved.
|
|
788
|
+
|
|
789
|
+
## 18.4.41 (2021-02-02)
|
|
790
|
+
|
|
791
|
+
### Menu
|
|
792
|
+
|
|
793
|
+
#### Bug Fixes
|
|
794
|
+
|
|
795
|
+
- `291781` - The issue with caret icon alignment is fixed.
|
|
796
|
+
|
|
797
|
+
## 18.4.39 (2021-01-28)
|
|
798
|
+
|
|
799
|
+
### Toolbar
|
|
800
|
+
|
|
801
|
+
#### Bug Fixes
|
|
802
|
+
|
|
803
|
+
- `#303821` - An issue with toolbar content is not aligned properly in IOS devices has been fixed.
|
|
804
|
+
|
|
805
|
+
### TreeView
|
|
806
|
+
|
|
807
|
+
#### Bug Fixes
|
|
808
|
+
|
|
809
|
+
- `#302025` - The issue with "The TreeView template node content disappears while calling the `refreshNode` method" has been resolved.
|
|
810
|
+
- `#300093` - Now, the TreeView template node custom events will be triggered after using the `refreshNode` method.
|
|
811
|
+
|
|
812
|
+
## 18.4.35 (2021-01-19)
|
|
813
|
+
|
|
814
|
+
### TreeView
|
|
815
|
+
|
|
816
|
+
#### Bug Fixes
|
|
817
|
+
|
|
818
|
+
- `#307712` - The issue in getting the invalid `isChecked` attribute value in the `getTreeData` method for the dynamically added nodes has been resolved.
|
|
819
|
+
|
|
820
|
+
## 18.4.34 (2021-01-12)
|
|
821
|
+
|
|
822
|
+
### Accordion
|
|
823
|
+
|
|
824
|
+
#### Bug Fixes
|
|
825
|
+
|
|
826
|
+
- `#309133` - Accordion item is automatically closed when the `onChange` is raised in input element has been fixed.
|
|
827
|
+
|
|
828
|
+
### Tab
|
|
829
|
+
|
|
830
|
+
#### Bug Fixes
|
|
831
|
+
|
|
832
|
+
- `#301347` - An issue with `refreshActiveTab` public method has been fixed.
|
|
833
|
+
|
|
834
|
+
## 18.4.33 (2021-01-05)
|
|
835
|
+
|
|
836
|
+
### Context Menu
|
|
837
|
+
|
|
838
|
+
#### Bug Fixes
|
|
839
|
+
|
|
840
|
+
- `F160329` - The issue with template item focus in ContextMenu is fixed.
|
|
841
|
+
|
|
842
|
+
### TreeView
|
|
843
|
+
|
|
844
|
+
#### Bug Fixes
|
|
845
|
+
|
|
846
|
+
- `#307778` - Now, the Expanded attribute value will be updated properly in the `nodeCollapsed` event.
|
|
847
|
+
|
|
848
|
+
### Tab
|
|
849
|
+
|
|
850
|
+
#### Bug Fixes
|
|
851
|
+
|
|
852
|
+
- `#306302` - The original event parameter is exposed in tab selecting event.
|
|
853
|
+
- `#306228` - An issue with closing the tab item clear the content of all the tab items has been fixed.
|
|
854
|
+
- `F159991` - An issue with Contents of the tab content are displayed incorrectly has been fixed.
|
|
855
|
+
|
|
856
|
+
## 18.4.31 (2020-12-22)
|
|
857
|
+
|
|
858
|
+
### Menu
|
|
859
|
+
|
|
860
|
+
#### Bug Fixes
|
|
861
|
+
|
|
862
|
+
- An issue with menu closing has been fixed.
|
|
863
|
+
|
|
864
|
+
## 18.3.50 (2020-11-17)
|
|
865
|
+
|
|
866
|
+
### Tab
|
|
867
|
+
|
|
868
|
+
#### New Features
|
|
869
|
+
|
|
870
|
+
- `#298781, #159033, #301025, #299403, #301347` - Provided `refreshActiveTab` public method to refresh the active tab item.
|
|
871
|
+
|
|
872
|
+
## 18.3.47 (2020-11-05)
|
|
873
|
+
|
|
874
|
+
### TreeView
|
|
875
|
+
|
|
876
|
+
#### New Features
|
|
877
|
+
|
|
878
|
+
- `#295977` - Provided an option to identify the dragged node's dropping position which is relative to the dropped node.
|
|
879
|
+
- `#F158142` - Now, the TreeView template node interaction is enabled.
|
|
880
|
+
|
|
881
|
+
## 18.3.42 (2020-10-20)
|
|
882
|
+
|
|
883
|
+
### TreeView
|
|
884
|
+
|
|
885
|
+
#### Bug Fixes
|
|
886
|
+
|
|
887
|
+
- `#286629` - The issue with "when quickly clicking on the different nodes then it is interpreted as double click" has been resolved.
|
|
888
|
+
|
|
889
|
+
## 18.3.40 (2020-10-13)
|
|
890
|
+
|
|
891
|
+
### Tab
|
|
892
|
+
|
|
893
|
+
#### Bug Fixes
|
|
894
|
+
|
|
895
|
+
- `#I292579` - An issue with when we set the `heightAujustMode` as Fill it makes container height too high has been resolved.
|
|
896
|
+
|
|
897
|
+
## 18.3.35 (2020-10-01)
|
|
898
|
+
|
|
899
|
+
### TreeView
|
|
900
|
+
|
|
901
|
+
#### Bug Fixes
|
|
902
|
+
|
|
903
|
+
- Standardized the spacing between two TreeView nodes in the Bootstrap4 theme.
|
|
904
|
+
|
|
905
|
+
## 18.2.54 (2020-08-18)
|
|
906
|
+
|
|
907
|
+
### TreeView
|
|
908
|
+
|
|
909
|
+
#### Bug Fixes
|
|
910
|
+
|
|
911
|
+
- `#286992` - The issue with rendering the TreeView with hierarchical data source using the offline property has been resolved
|
|
912
|
+
|
|
913
|
+
## 18.2.47 (2020-07-28)
|
|
914
|
+
|
|
915
|
+
### Tab
|
|
916
|
+
|
|
917
|
+
#### Bug Fixes
|
|
918
|
+
|
|
919
|
+
- `#279134` - An issue with cross side scripting validation has been fixed.
|
|
920
|
+
|
|
921
|
+
## 18.2.44 (2020-07-07)
|
|
922
|
+
|
|
923
|
+
### Menu
|
|
924
|
+
|
|
925
|
+
#### Bug Fixes
|
|
926
|
+
|
|
927
|
+
- An issue with menu selection has been fixed.
|
|
928
|
+
- An issue with hamburger mode has been fixed.
|
|
929
|
+
|
|
930
|
+
### Context Menu
|
|
931
|
+
|
|
932
|
+
#### Bug Fixes
|
|
933
|
+
|
|
934
|
+
- An issue with sub menu after preventing first sub menu has been fixed.
|
|
935
|
+
|
|
936
|
+
### Accordion
|
|
937
|
+
|
|
938
|
+
#### Bug Fixes
|
|
939
|
+
|
|
940
|
+
- `#275090` - An issue with Ripple effect when destroy and rendered nested accordions has been fixed.
|
|
941
|
+
- `#273054` - An issue with cross side scripting validation has been fixed.
|
|
942
|
+
- `#275509` - An issue with `addItem` public method when passing multiple items has been fixed.
|
|
943
|
+
|
|
944
|
+
### Tab
|
|
945
|
+
|
|
946
|
+
#### Bug Fixes
|
|
947
|
+
|
|
948
|
+
- `#273054` - An issue with cross side scripting validation has been fixed.
|
|
949
|
+
|
|
950
|
+
### Toolbar
|
|
951
|
+
|
|
952
|
+
#### Bug Fixes
|
|
953
|
+
|
|
954
|
+
- `#275422` - An issue with toolbar scrolling is not working properly after perform window resize has been fixed.
|
|
955
|
+
|
|
956
|
+
### TreeView
|
|
957
|
+
|
|
958
|
+
#### Bug Fixes
|
|
959
|
+
|
|
960
|
+
- `#276986` - Now, the previous state will be restored in the TreeView when the CRUD operation is failed at the server side.
|
|
961
|
+
|
|
962
|
+
### Sidebar
|
|
963
|
+
|
|
964
|
+
#### Bug Fixes
|
|
965
|
+
|
|
966
|
+
- `#272991` - The issue with "Unable to use the same target for more than one Sidebar component" has been resolved.
|
|
967
|
+
|
|
968
|
+
## 18.1.54 (2020-05-26)
|
|
969
|
+
|
|
970
|
+
### Menu
|
|
971
|
+
|
|
972
|
+
#### Bug Fixes
|
|
973
|
+
|
|
974
|
+
- Provided 'getItemIndex' public method to get the index of the menu item.
|
|
975
|
+
|
|
976
|
+
### TreeView
|
|
977
|
+
|
|
978
|
+
#### Bug Fixes
|
|
979
|
+
|
|
980
|
+
- `#269540` -The issue with `The getAllCheckedNodes method which is not returning the proper checkedNodes values in the TreeView component` has been fixed.
|
|
981
|
+
|
|
982
|
+
#### New Features
|
|
983
|
+
|
|
984
|
+
- `#274084` - Provided an option to set the drag area in TreeView component.
|
|
985
|
+
|
|
986
|
+
## 18.1.45 (2020-04-21)
|
|
987
|
+
|
|
988
|
+
### Menu
|
|
989
|
+
|
|
990
|
+
#### Bug Fixes
|
|
991
|
+
|
|
992
|
+
- Menu selection issue has been resolved.
|
|
993
|
+
|
|
994
|
+
## 18.1.43 (2020-04-07)
|
|
995
|
+
|
|
996
|
+
### ContextMenu
|
|
997
|
+
|
|
998
|
+
#### Bug Fixes
|
|
999
|
+
|
|
1000
|
+
- `F152308` - Context menu popup position misaligned while using `beforeOpen` event has been resolved.
|
|
1001
|
+
|
|
1002
|
+
### Menu
|
|
1003
|
+
|
|
1004
|
+
#### Bug Fixes
|
|
1005
|
+
|
|
1006
|
+
- Menu not working properly when collapsing the sub menu in hamburger mode has been resolved.
|
|
1007
|
+
|
|
1008
|
+
## 18.1.36-beta (2020-03-19)
|
|
1009
|
+
|
|
1010
|
+
### TreeView
|
|
1011
|
+
|
|
1012
|
+
#### New Features
|
|
1013
|
+
|
|
1014
|
+
- `#253508` - Now, the `actionFailure` event triggers when failure occurs while performing the CRUD operations in TreeView remote data.
|
|
1015
|
+
|
|
1016
|
+
- `#227878` - Provided an option to disable the TreeView component.
|
|
1017
|
+
|
|
1018
|
+
- `#255907, #F146305` - Provided an option to enable the entire TreeView node as navigable.
|
|
1019
|
+
|
|
1020
|
+
#### Breaking Changes
|
|
1021
|
+
|
|
1022
|
+
- Using the remote data and performing CRUD operation in TreeView requires the controller part to handle the CRUD operation at server-side. But, it doesn’t require controller part while using the offline remote data.
|
|
1023
|
+
|
|
1024
|
+
- `#227540` - Reverted the support for rendering TreeView data in single server request while disabling the loadOnDemand. But, this support can be achieved by specifying the offline as `true` in remote data.
|
|
1025
|
+
|
|
1026
|
+
### Tab
|
|
1027
|
+
|
|
1028
|
+
#### Bug Fixes
|
|
1029
|
+
|
|
1030
|
+
- `#266275` - An issue with tab navigation is not working after removed the first tab has been fixed.
|
|
1031
|
+
|
|
1032
|
+
### Accordion
|
|
1033
|
+
|
|
1034
|
+
#### Bug Fixes
|
|
1035
|
+
|
|
1036
|
+
- `#263853` - An issue with height is not properly set to the accordion item when perform expand or collapse has been fixed.
|
|
1037
|
+
|
|
1038
|
+
## 17.4.50 (2020-02-18)
|
|
1039
|
+
|
|
1040
|
+
### TreeView
|
|
1041
|
+
|
|
1042
|
+
#### Breaking Changes
|
|
1043
|
+
|
|
1044
|
+
- `#263334` - Standardized the right-click interaction in TreeView component. Now, the TreeView node will not be selected when you right-click it.
|
|
1045
|
+
|
|
1046
|
+
## 17.4.49 (2020-02-11)
|
|
1047
|
+
|
|
1048
|
+
### TreeView
|
|
1049
|
+
|
|
1050
|
+
#### Bug Fixes
|
|
1051
|
+
|
|
1052
|
+
- `#262276` - Resolved the performance issue occurred when check or uncheck the parent node in TreeView component.
|
|
1053
|
+
|
|
1054
|
+
### Menu
|
|
1055
|
+
|
|
1056
|
+
#### Bug Fixes
|
|
1057
|
+
|
|
1058
|
+
- An issue when setting id as number in menu Item is fixed.
|
|
1059
|
+
|
|
1060
|
+
## 17.4.46 (2020-01-30)
|
|
1061
|
+
|
|
1062
|
+
### Tab
|
|
1063
|
+
|
|
1064
|
+
#### Bug Fixes
|
|
1065
|
+
|
|
1066
|
+
- `#260479` - An issue with selected event is triggered unnecessarily after the refresh tab has been fixed.
|
|
1067
|
+
|
|
1068
|
+
## 17.4.44 (2021-01-21)
|
|
1069
|
+
|
|
1070
|
+
### Menu
|
|
1071
|
+
|
|
1072
|
+
#### Bug Fixes
|
|
1073
|
+
|
|
1074
|
+
- Issue with closing sub menu is fixed.
|
|
1075
|
+
|
|
1076
|
+
## 17.4.43 (2020-01-14)
|
|
1077
|
+
|
|
1078
|
+
### TreeView
|
|
1079
|
+
|
|
1080
|
+
#### Bug Fixes
|
|
1081
|
+
|
|
1082
|
+
- `#258993` - Now, expand and collapse is working properly after enabling the ripple effect.
|
|
1083
|
+
- `#258121` - Resolved the CSS warnings in Firefox 71.0 version.
|
|
1084
|
+
|
|
1085
|
+
## 17.4.39 (2019-12-17)
|
|
1086
|
+
|
|
1087
|
+
### TreeView
|
|
1088
|
+
|
|
1089
|
+
#### New Features
|
|
1090
|
+
|
|
1091
|
+
- `#249238` - Provided the support for refreshing a specific node in tree view.
|
|
1092
|
+
- `#253508` - Now, the `actionFailure` event triggers while fetching data from the invalid path.
|
|
1093
|
+
- `#247333` - Support has been provided to get the disabled nodes in the tree view.
|
|
1094
|
+
|
|
1095
|
+
### Tab
|
|
1096
|
+
|
|
1097
|
+
#### Breaking Changes
|
|
1098
|
+
|
|
1099
|
+
- An issue with duplicate Tab item id while rendering more than one Tab in same page has been fixed.
|
|
1100
|
+
|
|
1101
|
+
#### Bug Fixes
|
|
1102
|
+
|
|
1103
|
+
- An issue with bootstrap CSS file generation has been fixed.
|
|
1104
|
+
|
|
1105
|
+
### Accordion
|
|
1106
|
+
|
|
1107
|
+
#### Bug Fixes
|
|
1108
|
+
|
|
1109
|
+
- An issue with bootstrap CSS file generation has been fixed.
|
|
1110
|
+
|
|
1111
|
+
### Toolbar
|
|
1112
|
+
|
|
1113
|
+
#### Bug Fixes
|
|
1114
|
+
|
|
1115
|
+
- `#248406` - An issue with destroying sub control rendered inside toolbar is fixed.
|
|
1116
|
+
|
|
1117
|
+
## 17.3.27 (2019-11-12)
|
|
1118
|
+
|
|
1119
|
+
### Tab
|
|
1120
|
+
|
|
1121
|
+
#### Bug Fixes
|
|
1122
|
+
|
|
1123
|
+
- `#253216` - An issue with destroying Tab component in IE11 has been fixed.
|
|
1124
|
+
|
|
1125
|
+
### TreeView
|
|
1126
|
+
|
|
1127
|
+
#### Bug Fixes
|
|
1128
|
+
|
|
1129
|
+
- #242926 - Now the drop indicator has been shown correctly while hovering the expand and collapse icon.
|
|
1130
|
+
|
|
1131
|
+
## 17.3.17 (2019-10-15)
|
|
1132
|
+
|
|
1133
|
+
### Tab
|
|
1134
|
+
|
|
1135
|
+
#### Bug Fixes
|
|
1136
|
+
|
|
1137
|
+
- `#250013` - An issue with nested tab rendering while `headerPlacement` is set as `Bottom` has been fixed.
|
|
1138
|
+
|
|
1139
|
+
## 17.3.16 (2019-10-09)
|
|
1140
|
+
|
|
1141
|
+
### Toolbar
|
|
1142
|
+
|
|
1143
|
+
#### Bug Fixes
|
|
1144
|
+
|
|
1145
|
+
- `#246126` - An issue with toolbar is not working properly in overflow as popup mode when we used input elements in it has been fixed.
|
|
1146
|
+
|
|
1147
|
+
## 17.3.14 (2019-10-03)
|
|
1148
|
+
|
|
1149
|
+
### Accordion
|
|
1150
|
+
|
|
1151
|
+
#### Bug Fixes
|
|
1152
|
+
|
|
1153
|
+
- #245474 - Improper rendering of other components inside the accordion content issue has been fixed.
|
|
1154
|
+
|
|
1155
|
+
- Material dark theme issue has been resolved.
|
|
1156
|
+
|
|
1157
|
+
- Accessing multiple cssClass property issue with accordion has been fixed.
|
|
1158
|
+
|
|
1159
|
+
### Tab
|
|
1160
|
+
|
|
1161
|
+
#### New Features
|
|
1162
|
+
|
|
1163
|
+
- Provided scroll step customization support for tab header.
|
|
1164
|
+
|
|
1165
|
+
### TreeView
|
|
1166
|
+
|
|
1167
|
+
#### Bug Fixes
|
|
1168
|
+
|
|
1169
|
+
- #246937 - The unchecking checkbox performance issue has been resolved.
|
|
1170
|
+
|
|
1171
|
+
## 17.3.9-beta (2019-09-20)
|
|
1172
|
+
|
|
1173
|
+
### Tab
|
|
1174
|
+
|
|
1175
|
+
#### New Features
|
|
1176
|
+
|
|
1177
|
+
- Provided template support for tab header.
|
|
1178
|
+
|
|
1179
|
+
### Accordion
|
|
1180
|
+
|
|
1181
|
+
#### New Features
|
|
1182
|
+
|
|
1183
|
+
- Provided item template support for accorion.
|
|
1184
|
+
|
|
1185
|
+
### TreeView
|
|
1186
|
+
|
|
1187
|
+
#### Bug Fixes
|
|
1188
|
+
|
|
1189
|
+
- #242926 - Now the drop indicator has been shown correctly while enabling the checkbox.
|
|
1190
|
+
|
|
1191
|
+
## 17.2.49 (2019-09-04)
|
|
1192
|
+
|
|
1193
|
+
### Menu
|
|
1194
|
+
|
|
1195
|
+
#### Bug Fixes
|
|
1196
|
+
|
|
1197
|
+
- Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
|
|
1198
|
+
|
|
1199
|
+
## 17.2.48-beta (2019-08-28)
|
|
1200
|
+
|
|
1201
|
+
### Toolbar
|
|
1202
|
+
|
|
1203
|
+
#### New Features
|
|
1204
|
+
|
|
1205
|
+
- `enableItems` public method will now support number type.
|
|
1206
|
+
|
|
1207
|
+
### Accordion
|
|
1208
|
+
|
|
1209
|
+
#### Breaking Changes
|
|
1210
|
+
|
|
1211
|
+
- The `expanded` event type changed from `ExpandEventArgs` to `ExpandedEventArgs`.
|
|
1212
|
+
|
|
1213
|
+
## 17.2.41 (2019-08-14)
|
|
1214
|
+
|
|
1215
|
+
### TreeView
|
|
1216
|
+
|
|
1217
|
+
#### Bug Fixes
|
|
1218
|
+
|
|
1219
|
+
- Issue with custom icon size changed while double clicking the tree node has been fixed.
|
|
1220
|
+
|
|
1221
|
+
## 17.2.40 (2019-08-06)
|
|
1222
|
+
|
|
1223
|
+
### TreeView
|
|
1224
|
+
|
|
1225
|
+
#### Bug Fixes
|
|
1226
|
+
|
|
1227
|
+
- #242925 - Issue with checked and unchecked the checkbox using keyboard interaction even disable the checkbox has been fixed.
|
|
1228
|
+
|
|
1229
|
+
## 17.2.39 (2019-07-30)
|
|
1230
|
+
|
|
1231
|
+
### TreeView
|
|
1232
|
+
|
|
1233
|
+
#### Bug Fixes
|
|
1234
|
+
|
|
1235
|
+
- #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.
|
|
1236
|
+
|
|
1237
|
+
## 17.2.34 (2019-07-11)
|
|
1238
|
+
|
|
1239
|
+
### Accordion
|
|
1240
|
+
|
|
1241
|
+
#### Bug Fixes
|
|
1242
|
+
|
|
1243
|
+
- #239739 - An issue with addItem public method for accordion which was rendered using HTML elements has been fixed
|
|
1244
|
+
|
|
1245
|
+
## 17.2.28-beta (2019-06-27)
|
|
1246
|
+
|
|
1247
|
+
### Menu
|
|
1248
|
+
|
|
1249
|
+
#### Bug Fixes
|
|
1250
|
+
|
|
1251
|
+
- #237136 - Issue with Parent Menu click in mobile mode.
|
|
1252
|
+
|
|
1253
|
+
- #236458 - Issue with Menu Item hovering while a page contains multiple menus.
|
|
1254
|
+
|
|
1255
|
+
### Sidebar
|
|
1256
|
+
|
|
1257
|
+
#### Breaking Changes
|
|
1258
|
+
|
|
1259
|
+
- Change event will trigger only after the expand or collapse transition of the Sidebar.
|
|
1260
|
+
|
|
1261
|
+
## 17.1.49 (2019-05-29)
|
|
1262
|
+
|
|
1263
|
+
### TreeView
|
|
1264
|
+
|
|
1265
|
+
#### Bug Fixes
|
|
1266
|
+
|
|
1267
|
+
- #234147 - Issue with getting checked nodes value using `getAllCheckedNodes` method has been fixed.
|
|
1268
|
+
|
|
1269
|
+
## 17.1.48 (2019-05-21)
|
|
1270
|
+
|
|
1271
|
+
### Sidebar
|
|
1272
|
+
|
|
1273
|
+
#### Bug Fixes
|
|
1274
|
+
|
|
1275
|
+
- #236219 - On initial rendering, right positioned sidebar opens and closes irrespective of type and isOpen properties has been fixed.
|
|
1276
|
+
|
|
1277
|
+
### Tab
|
|
1278
|
+
|
|
1279
|
+
#### Bug Fixes
|
|
1280
|
+
|
|
1281
|
+
- #235397 - The cancel parameter is exposed in tab selecting event.
|
|
1282
|
+
|
|
1283
|
+
- #235274 - Incorrect selected content had been getting in tab selected event issue has been fixed.
|
|
1284
|
+
|
|
1285
|
+
## 17.1.47 (2019-05-14)
|
|
1286
|
+
|
|
1287
|
+
### Menu
|
|
1288
|
+
|
|
1289
|
+
#### New Features
|
|
1290
|
+
|
|
1291
|
+
- #230456 - Provided hamburger menu support for adaptive view.
|
|
1292
|
+
|
|
1293
|
+
### TreeView
|
|
1294
|
+
|
|
1295
|
+
#### New Features
|
|
1296
|
+
|
|
1297
|
+
- #227540 - Provided the support for rendering treeview data in single server request while disabling the loadOnDemand
|
|
1298
|
+
|
|
1299
|
+
## 17.1.43 (2019-04-30)
|
|
1300
|
+
|
|
1301
|
+
### Toolbar
|
|
1302
|
+
|
|
1303
|
+
#### Bug Fixes
|
|
1304
|
+
|
|
1305
|
+
- #231019 - An issue with RTL mode of Toolbar scroller has not working in Firefox browser has been resolved.
|
|
1306
|
+
|
|
1307
|
+
### TreeView
|
|
1308
|
+
|
|
1309
|
+
#### Bug Fixes
|
|
1310
|
+
|
|
1311
|
+
- #234147 - Issue with maintaining checked states while giving `id` and `parentID` value as string type in data source has been fixed.
|
|
1312
|
+
|
|
1313
|
+
## 17.1.41 (2019-04-16)
|
|
1314
|
+
|
|
1315
|
+
### Accordion
|
|
1316
|
+
|
|
1317
|
+
#### Bug Fixes
|
|
1318
|
+
|
|
1319
|
+
- Content value getting changed while updating header dynamically issue has been fixed.
|
|
1320
|
+
|
|
1321
|
+
### TreeView
|
|
1322
|
+
|
|
1323
|
+
#### Bug Fixes
|
|
1324
|
+
|
|
1325
|
+
- #231497 - Now the selected node background color is removed before collapsing the parent node with out removing 'e-active' class.
|
|
1326
|
+
|
|
1327
|
+
## 17.1.40 (2019-04-09)
|
|
1328
|
+
|
|
1329
|
+
### TreeView
|
|
1330
|
+
|
|
1331
|
+
#### Bug Fixes
|
|
1332
|
+
|
|
1333
|
+
- Now the selected node background color is removed before collapsing the parent node.
|
|
1334
|
+
|
|
1335
|
+
### Tab
|
|
1336
|
+
|
|
1337
|
+
#### Bug Fixes
|
|
1338
|
+
|
|
1339
|
+
- Support to restrict add and remove functionalities of Tab has been provided.
|
|
1340
|
+
|
|
1341
|
+
## 17.1.38 (2019-03-29)
|
|
1342
|
+
|
|
1343
|
+
### Menu
|
|
1344
|
+
|
|
1345
|
+
#### Bug Fixes
|
|
1346
|
+
|
|
1347
|
+
- Support provided for dynamically updating the self referential data.
|
|
1348
|
+
|
|
1349
|
+
### Accordion
|
|
1350
|
+
|
|
1351
|
+
#### Bug Fixes
|
|
1352
|
+
|
|
1353
|
+
- An issue with the expand action of Accordion when set to single mode, with the items being rendered using content template is fixed now.
|
|
1354
|
+
|
|
1355
|
+
## 17.1.32-beta (2019-03-13)
|
|
1356
|
+
|
|
1357
|
+
### ContextMenu
|
|
1358
|
+
|
|
1359
|
+
#### Bug Fixes
|
|
1360
|
+
|
|
1361
|
+
- Submenu items styles are not proper in ContextMenu issue is fixed.
|
|
1362
|
+
|
|
1363
|
+
### Sidebar
|
|
1364
|
+
|
|
1365
|
+
#### New Features
|
|
1366
|
+
|
|
1367
|
+
- `MediaQuery` property will now support both string and `MediaQueryList` object types.
|
|
1368
|
+
|
|
1369
|
+
#### Bug Fixes
|
|
1370
|
+
|
|
1371
|
+
- Multiple event bindings issue on calling show and hide methods when `closeOnDocumentClick` property is enabled has been fixed.
|
|
1372
|
+
|
|
1373
|
+
### TreeView
|
|
1374
|
+
|
|
1375
|
+
#### New Features
|
|
1376
|
+
|
|
1377
|
+
- Provided an option for auto checking parent tree nodes based on child tree nodes checked state and vice versa.
|
|
1378
|
+
- Now it is possible to select or unselect the collapsed child nodes by selecting its parent node through checkbox selection, with Load-On-Demand mode enabled.
|
|
1379
|
+
|
|
1380
|
+
## 16.4.54 (2019-02-19)
|
|
1381
|
+
|
|
1382
|
+
### Tab
|
|
1383
|
+
|
|
1384
|
+
#### Breaking Changes
|
|
1385
|
+
|
|
1386
|
+
- The initial focus set on active tab item is removed from the component on initial load.
|
|
1387
|
+
|
|
1388
|
+
## 16.4.53 (2019-02-13)
|
|
1389
|
+
|
|
1390
|
+
### Accordion
|
|
1391
|
+
|
|
1392
|
+
#### Bug Fixes
|
|
1393
|
+
|
|
1394
|
+
- Resolved the issue with accessing Accordion item object in clicked event arguments.
|
|
1395
|
+
|
|
1396
|
+
## 16.4.52 (2019-02-05)
|
|
1397
|
+
|
|
1398
|
+
### Sidebar
|
|
1399
|
+
|
|
1400
|
+
#### Bug Fixes
|
|
1401
|
+
|
|
1402
|
+
- Tabindex support has been provided.
|
|
1403
|
+
|
|
1404
|
+
#### Breaking Changes
|
|
1405
|
+
|
|
1406
|
+
- Sidebar with type `Auto` will always expand on initial rendering, irrespective of `enableDock` and `isOpen` properties.
|
|
1407
|
+
|
|
1408
|
+
- When dynamically changing the type property of the Sidebar with invalid property value (For ex:`Pushs`), will reset the type of the Sidebar to its default type as `Auto`.
|
|
1409
|
+
|
|
1410
|
+
## 17.1.1-beta (2019-01-29)
|
|
1411
|
+
|
|
1412
|
+
### Menu
|
|
1413
|
+
|
|
1414
|
+
#### Bug Fixes
|
|
1415
|
+
|
|
1416
|
+
- Popup not opened properly when two menu rendered side by side issue fixed.
|
|
1417
|
+
|
|
1418
|
+
### TreeView
|
|
1419
|
+
|
|
1420
|
+
#### Bug Fixes
|
|
1421
|
+
|
|
1422
|
+
- The issue with, “When disabling the TreeView parent nodes, the child nodes also appear in a disabled state” has been fixed.
|
|
1423
|
+
|
|
1424
|
+
## 16.4.45 (2019-01-02)
|
|
1425
|
+
|
|
5
1426
|
### Toolbar
|
|
6
1427
|
|
|
7
1428
|
#### Bug Fixes
|