@syncfusion/ej2-navigations 20.2.50 → 20.3.48
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/CHANGELOG.md +35 -0
- package/README.md +14 -0
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/dist/ej2-navigations.min.js +10 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +345 -35
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +364 -35
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -12
- package/src/accordion/accordion-model.d.ts +1 -1
- package/src/accordion/accordion.js +7 -3
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +112 -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/carousel/carousel-model.d.ts +11 -2
- package/src/carousel/carousel.d.ts +9 -0
- package/src/carousel/carousel.js +105 -14
- package/src/common/menu-base.js +2 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/tab/tab.d.ts +11 -7
- package/src/tab/tab.js +21 -14
- package/src/treeview/treeview.d.ts +1 -0
- package/src/treeview/treeview.js +9 -3
- package/styles/accordion/_all.scss +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +5 -2
- package/styles/accordion/_bootstrap-definition.scss +3 -3
- package/styles/accordion/_bootstrap4-definition.scss +4 -1
- package/styles/accordion/_bootstrap5-definition.scss +1 -1
- package/styles/accordion/_fabric-dark-definition.scss +3 -4
- package/styles/accordion/_fabric-definition.scss +3 -3
- package/styles/accordion/_fluent-definition.scss +0 -1
- package/styles/accordion/_fusionnew-definition.scss +1 -1
- package/styles/accordion/_highcontrast-definition.scss +4 -4
- package/styles/accordion/_highcontrast-light-definition.scss +1 -1
- package/styles/accordion/_layout.scss +8 -9
- package/styles/accordion/_material-dark-definition.scss +3 -1
- package/styles/accordion/_material-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +1 -1
- package/styles/accordion/_tailwind-definition.scss +0 -1
- package/styles/accordion/_theme.scss +6 -5
- package/styles/accordion/bootstrap-dark.css +1 -0
- package/styles/accordion/bootstrap.css +1 -0
- package/styles/accordion/bootstrap4.css +1 -0
- package/styles/accordion/bootstrap5-dark.css +2 -0
- package/styles/accordion/bootstrap5.css +2 -0
- package/styles/accordion/fabric-dark.css +1 -0
- package/styles/accordion/fabric.css +1 -0
- package/styles/accordion/fluent-dark.css +1 -0
- package/styles/accordion/fluent.css +1 -0
- package/styles/accordion/highcontrast-light.css +1 -0
- package/styles/accordion/highcontrast.css +1 -0
- package/styles/accordion/icons/_bootstrap-dark.scss +2 -2
- package/styles/accordion/icons/_bootstrap.scss +2 -2
- package/styles/accordion/icons/_bootstrap4.scss +2 -2
- package/styles/accordion/icons/_bootstrap5.scss +2 -3
- package/styles/accordion/icons/_fabric-dark.scss +2 -2
- package/styles/accordion/icons/_fabric.scss +2 -2
- package/styles/accordion/icons/_fluent.scss +2 -3
- package/styles/accordion/icons/_fusionnew.scss +2 -3
- package/styles/accordion/icons/_highcontrast-light.scss +2 -2
- package/styles/accordion/icons/_highcontrast.scss +2 -2
- package/styles/accordion/icons/_material-dark.scss +2 -2
- package/styles/accordion/icons/_material.scss +2 -2
- package/styles/accordion/icons/_material3.scss +2 -3
- package/styles/accordion/icons/_tailwind.scss +2 -3
- package/styles/accordion/material-dark.css +1 -0
- package/styles/accordion/material.css +1 -0
- package/styles/accordion/tailwind-dark.css +1 -0
- package/styles/accordion/tailwind.css +1 -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 +81 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_material3-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 +244 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +244 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +244 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +244 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +244 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +244 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +244 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +244 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +244 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +244 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +244 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +245 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +245 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +245 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +245 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +340 -21
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +345 -26
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +348 -29
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +360 -36
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +360 -36
- package/styles/bootstrap5.scss +1 -0
- package/styles/breadcrumb/_all.scss +1 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +1 -2
- package/styles/breadcrumb/_layout.scss +4 -3
- package/styles/breadcrumb/_theme.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +1 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +1 -1
- package/styles/breadcrumb/icons/_fabric.scss +1 -1
- package/styles/breadcrumb/icons/_fluent.scss +1 -1
- package/styles/breadcrumb/icons/_fusionnew.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast-light.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +1 -1
- package/styles/breadcrumb/icons/_material-dark.scss +1 -1
- package/styles/breadcrumb/icons/_material.scss +1 -1
- package/styles/breadcrumb/icons/_material3.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind.scss +1 -1
- package/styles/carousel/_all.scss +1 -1
- package/styles/carousel/_layout.scss +44 -5
- package/styles/carousel/bootstrap-dark.css +46 -11
- package/styles/carousel/bootstrap.css +46 -11
- package/styles/carousel/bootstrap4.css +46 -11
- package/styles/carousel/bootstrap5-dark.css +46 -11
- package/styles/carousel/bootstrap5.css +46 -11
- package/styles/carousel/fabric-dark.css +46 -11
- package/styles/carousel/fabric.css +46 -11
- package/styles/carousel/fluent-dark.css +46 -11
- package/styles/carousel/fluent.css +46 -11
- package/styles/carousel/highcontrast-light.css +46 -11
- package/styles/carousel/highcontrast.css +46 -11
- package/styles/carousel/material-dark.css +46 -11
- package/styles/carousel/material.css +46 -11
- package/styles/carousel/tailwind-dark.css +46 -11
- package/styles/carousel/tailwind.css +46 -11
- package/styles/context-menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/context-menu/_bootstrap4-definition.scss +3 -3
- package/styles/context-menu/_bootstrap5-definition.scss +2 -2
- package/styles/context-menu/_fabric-dark-definition.scss +2 -1
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -1
- package/styles/context-menu/_layout-mixin.scss +0 -1
- package/styles/context-menu/_layout.scss +1 -0
- package/styles/context-menu/_material-dark-definition.scss +2 -1
- package/styles/context-menu/_theme.scss +1 -0
- package/styles/context-menu/bootstrap4.css +2 -2
- package/styles/context-menu/bootstrap5-dark.css +3 -3
- package/styles/context-menu/bootstrap5.css +3 -3
- package/styles/context-menu/fluent-dark.css +1 -1
- package/styles/context-menu/fluent.css +1 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap.scss +1 -0
- package/styles/context-menu/icons/_bootstrap4.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +1 -0
- package/styles/context-menu/icons/_fabric-dark.scss +1 -0
- package/styles/context-menu/icons/_fabric.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +1 -0
- package/styles/context-menu/icons/_fusionnew.scss +1 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +1 -0
- package/styles/context-menu/icons/_highcontrast.scss +1 -0
- package/styles/context-menu/icons/_material-dark.scss +1 -0
- package/styles/context-menu/icons/_material.scss +1 -0
- package/styles/context-menu/icons/_material3.scss +1 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +1 -0
- package/styles/context-menu/icons/_tailwind.scss +1 -0
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +340 -21
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +340 -21
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +352 -33
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +352 -33
- package/styles/fluent.scss +1 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +4 -3
- package/styles/h-scroll/_bootstrap-definition.scss +3 -4
- package/styles/h-scroll/_bootstrap5-definition.scss +5 -7
- package/styles/h-scroll/_fabric-dark-definition.scss +4 -3
- package/styles/h-scroll/_fabric-definition.scss +4 -4
- package/styles/h-scroll/_fluent-definition.scss +5 -7
- package/styles/h-scroll/_fusionnew-definition.scss +5 -7
- package/styles/h-scroll/_highcontrast-definition.scss +4 -4
- package/styles/h-scroll/_highcontrast-light-definition.scss +4 -3
- package/styles/h-scroll/_layout.scss +11 -13
- package/styles/h-scroll/_material-dark-definition.scss +6 -5
- package/styles/h-scroll/_material-definition.scss +8 -10
- package/styles/h-scroll/_material3-definition.scss +5 -7
- package/styles/h-scroll/_tailwind-definition.scss +6 -8
- package/styles/h-scroll/_theme.scss +3 -5
- package/styles/h-scroll/bootstrap-dark.css +0 -2
- package/styles/h-scroll/bootstrap.css +0 -2
- package/styles/h-scroll/bootstrap4.css +0 -2
- package/styles/h-scroll/bootstrap5-dark.css +0 -2
- package/styles/h-scroll/bootstrap5.css +0 -2
- package/styles/h-scroll/fabric-dark.css +0 -2
- package/styles/h-scroll/fabric.css +0 -2
- package/styles/h-scroll/fluent-dark.css +0 -2
- package/styles/h-scroll/fluent.css +0 -2
- package/styles/h-scroll/highcontrast-light.css +0 -2
- package/styles/h-scroll/highcontrast.css +0 -2
- package/styles/h-scroll/icons/_bootstrap-dark.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap5.scss +3 -3
- package/styles/h-scroll/icons/_fabric-dark.scss +3 -3
- package/styles/h-scroll/icons/_fabric.scss +3 -3
- package/styles/h-scroll/icons/_fluent.scss +3 -3
- package/styles/h-scroll/icons/_fusionnew.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast-light.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast.scss +3 -3
- package/styles/h-scroll/icons/_material-dark.scss +3 -3
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +3 -3
- package/styles/h-scroll/icons/_tailwind.scss +3 -3
- package/styles/h-scroll/material-dark.css +0 -2
- package/styles/h-scroll/material.css +0 -2
- package/styles/h-scroll/tailwind-dark.css +0 -2
- package/styles/h-scroll/tailwind.css +0 -2
- package/styles/highcontrast-light.css +339 -20
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +339 -20
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +339 -20
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +339 -20
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/menu/_fabric-dark-definition.scss +2 -1
- package/styles/menu/_fluent-definition.scss +0 -1
- package/styles/menu/_layout.scss +4 -3
- package/styles/menu/_material-dark-definition.scss +2 -1
- package/styles/menu/_tailwind-definition.scss +0 -1
- package/styles/menu/_theme.scss +22 -1
- package/styles/menu/bootstrap-dark.css +22 -0
- package/styles/menu/bootstrap.css +22 -0
- package/styles/menu/bootstrap4.css +22 -0
- package/styles/menu/bootstrap5-dark.css +23 -1
- package/styles/menu/bootstrap5.css +23 -1
- package/styles/menu/fabric-dark.css +22 -0
- package/styles/menu/fabric.css +22 -0
- package/styles/menu/fluent-dark.css +23 -1
- package/styles/menu/fluent.css +23 -1
- package/styles/menu/highcontrast-light.css +22 -0
- package/styles/menu/highcontrast.css +22 -0
- package/styles/menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap.scss +1 -0
- package/styles/menu/icons/_bootstrap4.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +1 -0
- package/styles/menu/icons/_fabric-dark.scss +1 -0
- package/styles/menu/icons/_fabric.scss +1 -0
- package/styles/menu/icons/_fluent.scss +1 -0
- package/styles/menu/icons/_fusionnew.scss +1 -0
- package/styles/menu/icons/_highcontrast-light.scss +1 -0
- package/styles/menu/icons/_highcontrast.scss +1 -0
- package/styles/menu/icons/_material-dark.scss +1 -0
- package/styles/menu/icons/_material.scss +1 -0
- package/styles/menu/icons/_material3.scss +1 -0
- package/styles/menu/icons/_tailwind-dark.scss +1 -0
- package/styles/menu/icons/_tailwind.scss +1 -0
- package/styles/menu/material-dark.css +22 -0
- package/styles/menu/material.css +22 -0
- package/styles/menu/tailwind-dark.css +23 -1
- package/styles/menu/tailwind.css +23 -1
- package/styles/pager/_all.scss +1 -1
- package/styles/pager/_bootstrap-dark-definition.scss +0 -1
- package/styles/pager/_bootstrap-definition.scss +3 -4
- package/styles/pager/_bootstrap4-definition.scss +6 -6
- package/styles/pager/_bootstrap5-definition.scss +5 -5
- package/styles/pager/_fabric-dark-definition.scss +2 -2
- package/styles/pager/_fabric-definition.scss +0 -1
- package/styles/pager/_fluent-definition.scss +1 -1
- package/styles/pager/_highcontrast-definition.scss +0 -1
- package/styles/pager/_highcontrast-light-definition.scss +3 -2
- package/styles/pager/_layout.scss +35 -38
- package/styles/pager/_material-dark-definition.scss +2 -2
- package/styles/pager/_material-definition.scss +0 -1
- package/styles/pager/_tailwind-definition.scss +7 -7
- package/styles/pager/_theme.scss +3 -4
- package/styles/pager/bootstrap-dark.css +5 -3
- package/styles/pager/bootstrap.css +10 -8
- package/styles/pager/bootstrap4.css +11 -9
- package/styles/pager/bootstrap5-dark.css +14 -12
- package/styles/pager/bootstrap5.css +14 -12
- package/styles/pager/fabric-dark.css +5 -3
- package/styles/pager/fabric.css +5 -3
- package/styles/pager/fluent-dark.css +6 -4
- package/styles/pager/fluent.css +6 -4
- package/styles/pager/highcontrast-light.css +4 -2
- package/styles/pager/highcontrast.css +4 -2
- package/styles/pager/icons/_bootstrap-dark.scss +2 -2
- package/styles/pager/icons/_bootstrap.scss +2 -1
- package/styles/pager/icons/_bootstrap4.scss +2 -1
- package/styles/pager/icons/_bootstrap5.scss +2 -2
- package/styles/pager/icons/_fabric-dark.scss +4 -4
- package/styles/pager/icons/_fabric.scss +4 -4
- package/styles/pager/icons/_fluent.scss +2 -2
- package/styles/pager/icons/_fusionnew.scss +2 -2
- package/styles/pager/icons/_highcontrast-light.scss +3 -3
- package/styles/pager/icons/_highcontrast.scss +9 -4
- package/styles/pager/icons/_material-dark.scss +2 -2
- package/styles/pager/icons/_material.scss +10 -5
- package/styles/pager/icons/_material3.scss +2 -2
- package/styles/pager/icons/_tailwind.scss +2 -2
- package/styles/pager/material-dark.css +4 -2
- package/styles/pager/material.css +4 -2
- package/styles/pager/tailwind-dark.css +19 -17
- package/styles/pager/tailwind.css +19 -17
- package/styles/sidebar/_bootstrap5-definition.scss +1 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-definition.scss +1 -0
- package/styles/sidebar/_fusionnew-definition.scss +1 -0
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +1 -0
- package/styles/sidebar/_theme.scss +19 -28
- package/styles/sidebar/bootstrap-dark.css +4 -0
- package/styles/sidebar/bootstrap.css +4 -0
- package/styles/sidebar/bootstrap4.css +4 -0
- package/styles/sidebar/bootstrap5-dark.css +4 -0
- package/styles/sidebar/bootstrap5.css +4 -0
- package/styles/sidebar/fabric-dark.css +4 -0
- package/styles/sidebar/fabric.css +4 -0
- package/styles/sidebar/fluent-dark.css +4 -0
- package/styles/sidebar/fluent.css +4 -0
- package/styles/sidebar/highcontrast-light.css +4 -0
- package/styles/sidebar/highcontrast.css +4 -0
- package/styles/sidebar/material-dark.css +4 -0
- package/styles/sidebar/material.css +4 -0
- package/styles/sidebar/tailwind-dark.css +4 -0
- package/styles/sidebar/tailwind.css +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +2 -1
- package/styles/tab/_bootstrap5-definition.scss +1 -1
- package/styles/tab/_fabric-dark-definition.scss +2 -2
- package/styles/tab/_fabric-definition.scss +0 -1
- package/styles/tab/_fusionnew-definition.scss +1 -1
- package/styles/tab/_highcontrast-definition.scss +0 -1
- package/styles/tab/_highcontrast-light-definition.scss +0 -2
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +24 -26
- package/styles/tab/_material-dark-definition.scss +2 -3
- package/styles/tab/_material-definition.scss +0 -1
- package/styles/tab/_material3-definition.scss +1 -1
- package/styles/tab/_tailwind-definition.scss +0 -1
- package/styles/tab/_theme.scss +6 -8
- package/styles/tab/bootstrap-dark.css +1 -1
- package/styles/tab/bootstrap.css +1 -1
- package/styles/tab/bootstrap4.css +1 -1
- package/styles/tab/bootstrap5-dark.css +5 -2
- package/styles/tab/bootstrap5.css +5 -2
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +5 -5
- package/styles/tab/fluent.css +5 -5
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +1 -1
- package/styles/tab/icons/_bootstrap-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap.scss +1 -0
- package/styles/tab/icons/_bootstrap4.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +1 -1
- package/styles/tab/icons/_fabric-dark.scss +1 -0
- package/styles/tab/icons/_fabric.scss +1 -0
- package/styles/tab/icons/_fluent.scss +1 -1
- package/styles/tab/icons/_fusionnew.scss +1 -1
- package/styles/tab/icons/_highcontrast-light.scss +1 -0
- package/styles/tab/icons/_highcontrast.scss +1 -0
- package/styles/tab/icons/_material-dark.scss +1 -0
- package/styles/tab/icons/_material.scss +1 -0
- package/styles/tab/icons/_material3.scss +1 -1
- package/styles/tab/icons/_tailwind.scss +1 -1
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +1 -1
- package/styles/tab/tailwind.css +1 -1
- package/styles/tailwind-dark.css +359 -38
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +359 -38
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +6 -5
- package/styles/toolbar/_bootstrap-definition.scss +13 -13
- package/styles/toolbar/_bootstrap4-definition.scss +6 -6
- package/styles/toolbar/_bootstrap5-definition.scss +1 -1
- package/styles/toolbar/_fabric-dark-definition.scss +2 -1
- package/styles/toolbar/_fluent-definition.scss +2 -2
- package/styles/toolbar/_fusionnew-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +2 -1
- package/styles/toolbar/_layout.scss +50 -74
- package/styles/toolbar/_material-dark-definition.scss +9 -11
- package/styles/toolbar/_material-definition.scss +12 -13
- package/styles/toolbar/_material3-definition.scss +1 -1
- package/styles/toolbar/_theme.scss +5 -8
- package/styles/toolbar/bootstrap-dark.css +10 -2
- package/styles/toolbar/bootstrap.css +10 -2
- package/styles/toolbar/bootstrap4.css +10 -2
- package/styles/toolbar/bootstrap5-dark.css +12 -3
- package/styles/toolbar/bootstrap5.css +12 -3
- package/styles/toolbar/fabric-dark.css +10 -2
- package/styles/toolbar/fabric.css +10 -2
- package/styles/toolbar/fluent-dark.css +15 -7
- package/styles/toolbar/fluent.css +15 -7
- package/styles/toolbar/highcontrast-light.css +10 -2
- package/styles/toolbar/highcontrast.css +10 -2
- package/styles/toolbar/icons/_bootstrap-dark.scss +1 -1
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +1 -1
- package/styles/toolbar/icons/_bootstrap5.scss +1 -2
- package/styles/toolbar/icons/_fabric-dark.scss +1 -1
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent.scss +1 -2
- package/styles/toolbar/icons/_fusionnew.scss +1 -2
- package/styles/toolbar/icons/_highcontrast-light.scss +1 -1
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +1 -1
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +1 -2
- package/styles/toolbar/icons/_tailwind.scss +1 -2
- package/styles/toolbar/material-dark.css +10 -2
- package/styles/toolbar/material.css +10 -2
- package/styles/toolbar/tailwind-dark.css +11 -3
- package/styles/toolbar/tailwind.css +11 -3
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +1 -1
- package/styles/treeview/_bootstrap-definition.scss +1 -1
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-definition.scss +1 -1
- package/styles/treeview/_fabric-dark-definition.scss +1 -1
- package/styles/treeview/_fabric-definition.scss +1 -1
- package/styles/treeview/_fluent-definition.scss +1 -1
- package/styles/treeview/_fusionnew-definition.scss +1 -1
- package/styles/treeview/_highcontrast-definition.scss +1 -1
- package/styles/treeview/_highcontrast-light-definition.scss +1 -1
- package/styles/treeview/_layout.scss +23 -18
- package/styles/treeview/_material-dark-definition.scss +1 -1
- package/styles/treeview/_material-definition.scss +1 -1
- package/styles/treeview/_material3-definition.scss +1 -1
- package/styles/treeview/_tailwind-definition.scss +2 -2
- package/styles/treeview/_theme.scss +15 -12
- package/styles/treeview/bootstrap-dark.css +6 -0
- package/styles/treeview/bootstrap.css +6 -0
- package/styles/treeview/bootstrap4.css +6 -0
- package/styles/treeview/bootstrap5-dark.css +6 -0
- package/styles/treeview/bootstrap5.css +6 -0
- package/styles/treeview/fabric-dark.css +6 -0
- package/styles/treeview/fabric.css +6 -0
- package/styles/treeview/fluent-dark.css +6 -0
- package/styles/treeview/fluent.css +6 -0
- package/styles/treeview/highcontrast-light.css +6 -0
- package/styles/treeview/highcontrast.css +6 -0
- package/styles/treeview/icons/_bootstrap-dark.scss +1 -1
- package/styles/treeview/icons/_bootstrap.scss +1 -1
- package/styles/treeview/icons/_bootstrap4.scss +1 -2
- package/styles/treeview/icons/_bootstrap5.scss +1 -1
- package/styles/treeview/icons/_fabric-dark.scss +1 -1
- package/styles/treeview/icons/_fabric.scss +1 -1
- package/styles/treeview/icons/_fluent.scss +1 -1
- package/styles/treeview/icons/_fusionnew.scss +1 -1
- package/styles/treeview/icons/_highcontrast-light.scss +1 -1
- package/styles/treeview/icons/_highcontrast.scss +1 -1
- package/styles/treeview/icons/_material-dark.scss +1 -1
- package/styles/treeview/icons/_material.scss +1 -1
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/icons/_tailwind-dark.scss +1 -1
- package/styles/treeview/icons/_tailwind.scss +1 -1
- package/styles/treeview/material-dark.css +6 -0
- package/styles/treeview/material.css +6 -0
- package/styles/treeview/tailwind-dark.css +7 -0
- package/styles/treeview/tailwind.css +7 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +5 -4
- package/styles/v-scroll/_bootstrap-definition.scss +3 -3
- package/styles/v-scroll/_bootstrap4-definition.scss +1 -1
- package/styles/v-scroll/_bootstrap5-definition.scss +3 -3
- package/styles/v-scroll/_fabric-dark-definition.scss +6 -5
- package/styles/v-scroll/_fabric-definition.scss +4 -4
- package/styles/v-scroll/_fluent-definition.scss +3 -3
- package/styles/v-scroll/_fusionnew-definition.scss +3 -3
- package/styles/v-scroll/_highcontrast-definition.scss +4 -4
- package/styles/v-scroll/_highcontrast-light-definition.scss +6 -5
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +6 -5
- package/styles/v-scroll/_material-definition.scss +5 -5
- package/styles/v-scroll/_material3-definition.scss +3 -3
- package/styles/v-scroll/_tailwind-definition.scss +3 -3
- package/styles/v-scroll/_theme.scss +2 -1
- package/styles/v-scroll/bootstrap-dark.css +0 -2
- package/styles/v-scroll/bootstrap.css +0 -2
- package/styles/v-scroll/bootstrap4.css +0 -2
- package/styles/v-scroll/bootstrap5-dark.css +0 -2
- package/styles/v-scroll/bootstrap5.css +0 -2
- package/styles/v-scroll/fabric-dark.css +0 -2
- package/styles/v-scroll/fabric.css +0 -2
- package/styles/v-scroll/fluent-dark.css +0 -2
- package/styles/v-scroll/fluent.css +0 -2
- package/styles/v-scroll/highcontrast-light.css +0 -2
- package/styles/v-scroll/highcontrast.css +0 -2
- package/styles/v-scroll/icons/_bootstrap-dark.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5.scss +1 -1
- package/styles/v-scroll/icons/_fabric-dark.scss +1 -0
- package/styles/v-scroll/icons/_fabric.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +1 -1
- package/styles/v-scroll/icons/_fusionnew.scss +1 -1
- package/styles/v-scroll/icons/_highcontrast-light.scss +1 -0
- package/styles/v-scroll/icons/_highcontrast.scss +1 -0
- package/styles/v-scroll/icons/_material-dark.scss +1 -0
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +1 -1
- package/styles/v-scroll/icons/_tailwind.scss +1 -1
- package/styles/v-scroll/material-dark.css +0 -2
- package/styles/v-scroll/material.css +0 -2
- package/styles/v-scroll/tailwind-dark.css +0 -2
- package/styles/v-scroll/tailwind.css +0 -2
|
@@ -2202,7 +2202,8 @@ var MenuBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
2202
2202
|
tabindex: '-1'
|
|
2203
2203
|
};
|
|
2204
2204
|
if (_this.isMenu && !args.curData[_this.getField('separator', level)]) {
|
|
2205
|
-
args.curData.htmlAttributes['aria-label'] = args.curData[args.fields.text]
|
|
2205
|
+
args.curData.htmlAttributes['aria-label'] = args.curData[args.fields.text] ?
|
|
2206
|
+
args.curData[args.fields.text] : args.curData[args.fields.id];
|
|
2206
2207
|
}
|
|
2207
2208
|
if (args.curData[args.fields[fields.iconCss]] === '') {
|
|
2208
2209
|
args.curData[args.fields[fields.iconCss]] = null;
|
|
@@ -6824,8 +6825,12 @@ var Accordion = /** @__PURE__ @class */ (function (_super) {
|
|
|
6824
6825
|
this.updateItem(item, index);
|
|
6825
6826
|
}
|
|
6826
6827
|
if (property === 'cssClass' && !isNullOrUndefined(item)) {
|
|
6827
|
-
|
|
6828
|
-
|
|
6828
|
+
if (oldVal) {
|
|
6829
|
+
removeClass([item], oldVal.split(' '));
|
|
6830
|
+
}
|
|
6831
|
+
if (newVal) {
|
|
6832
|
+
addClass([item], newVal.split(' '));
|
|
6833
|
+
}
|
|
6829
6834
|
}
|
|
6830
6835
|
if (property === 'visible' && !isNullOrUndefined(item)) {
|
|
6831
6836
|
if (Object(newProp.items[index])[property] === false) {
|
|
@@ -8066,7 +8071,10 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
8066
8071
|
if (!isNullOrUndefined(newCnt)) {
|
|
8067
8072
|
this.prevActiveEle = newCnt.id;
|
|
8068
8073
|
}
|
|
8069
|
-
|
|
8074
|
+
var isPrevent = isNullOrUndefined(this.animation) || this.animation.next === {} || this.animation.previous === {}
|
|
8075
|
+
|| isNullOrUndefined(this.animation.next.effect) || isNullOrUndefined(this.animation.previous.effect)
|
|
8076
|
+
|| this.animation.previous.effect == 'None' || this.animation.next.effect == 'None';
|
|
8077
|
+
if (this.initRender || value === false || this.animation === {} || isPrevent) {
|
|
8070
8078
|
if (oldCnt && oldCnt !== newCnt) {
|
|
8071
8079
|
oldCnt.classList.remove(CLS_ACTIVE$1);
|
|
8072
8080
|
}
|
|
@@ -8719,19 +8727,6 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
8719
8727
|
break;
|
|
8720
8728
|
}
|
|
8721
8729
|
};
|
|
8722
|
-
/**
|
|
8723
|
-
* Refresh the active tab border
|
|
8724
|
-
*
|
|
8725
|
-
* @returns {void}
|
|
8726
|
-
* @private
|
|
8727
|
-
*/
|
|
8728
|
-
Tab.prototype.refreshActiveTabBorder = function () {
|
|
8729
|
-
var activeEle = select('.' + CLS_TB_ITEM + '.' + CLS_TB_POPUP + '.' + CLS_ACTIVE$1, this.element);
|
|
8730
|
-
if (!isNullOrUndefined(activeEle) && this.reorderActiveTab) {
|
|
8731
|
-
this.select(this.getEleIndex(activeEle));
|
|
8732
|
-
}
|
|
8733
|
-
this.refreshActiveBorder();
|
|
8734
|
-
};
|
|
8735
8730
|
Tab.prototype.refreshItemVisibility = function (target) {
|
|
8736
8731
|
var scrCnt = select('.' + this.scrCntClass, this.tbItems);
|
|
8737
8732
|
if (!this.isVertical() && !isNullOrUndefined(scrCnt)) {
|
|
@@ -9554,6 +9549,11 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
9554
9549
|
}
|
|
9555
9550
|
}
|
|
9556
9551
|
};
|
|
9552
|
+
/**
|
|
9553
|
+
* To refresh the active tab contents.
|
|
9554
|
+
*
|
|
9555
|
+
* @returns {void}
|
|
9556
|
+
*/
|
|
9557
9557
|
Tab.prototype.refreshActiveTab = function () {
|
|
9558
9558
|
if (this.isReact) {
|
|
9559
9559
|
this.clearTemplate();
|
|
@@ -9672,6 +9672,18 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
9672
9672
|
this.renderReactTemplates();
|
|
9673
9673
|
}
|
|
9674
9674
|
};
|
|
9675
|
+
/**
|
|
9676
|
+
* To refresh the active tab indicator.
|
|
9677
|
+
*
|
|
9678
|
+
* @returns {void}
|
|
9679
|
+
*/
|
|
9680
|
+
Tab.prototype.refreshActiveTabBorder = function () {
|
|
9681
|
+
var activeEle = select('.' + CLS_TB_ITEM + '.' + CLS_TB_POPUP + '.' + CLS_ACTIVE$1, this.element);
|
|
9682
|
+
if (!isNullOrUndefined(activeEle) && this.reorderActiveTab) {
|
|
9683
|
+
this.select(this.getEleIndex(activeEle));
|
|
9684
|
+
}
|
|
9685
|
+
this.refreshActiveBorder();
|
|
9686
|
+
};
|
|
9675
9687
|
__decorate$7([
|
|
9676
9688
|
Collection([], TabItem)
|
|
9677
9689
|
], Tab.prototype, "items", void 0);
|
|
@@ -9962,6 +9974,8 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
|
|
|
9962
9974
|
_this.changeDataSource = false;
|
|
9963
9975
|
_this.hasTemplate = false;
|
|
9964
9976
|
_this.isFirstRender = false;
|
|
9977
|
+
// Specifies whether the node is dropped or not
|
|
9978
|
+
_this.isNodeDropped = false;
|
|
9965
9979
|
_this.mouseDownStatus = false;
|
|
9966
9980
|
return _this;
|
|
9967
9981
|
}
|
|
@@ -11174,11 +11188,12 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
|
|
|
11174
11188
|
this.updateCheckedProp();
|
|
11175
11189
|
this.isAnimate = true;
|
|
11176
11190
|
this.isInitalExpand = false;
|
|
11177
|
-
if (!this.isLoaded || this.isFieldChange) {
|
|
11191
|
+
if ((!this.isLoaded || this.isFieldChange) && !this.isNodeDropped) {
|
|
11178
11192
|
var eventArgs = { data: this.treeData };
|
|
11179
11193
|
this.trigger('dataBound', eventArgs);
|
|
11180
11194
|
}
|
|
11181
11195
|
this.isLoaded = true;
|
|
11196
|
+
this.isNodeDropped = false;
|
|
11182
11197
|
};
|
|
11183
11198
|
TreeView.prototype.doSelectionAction = function () {
|
|
11184
11199
|
var sNodes = selectAll('.' + SELECTED$1, this.element);
|
|
@@ -12402,8 +12417,9 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
|
|
|
12402
12417
|
var expanded = (currLi.getAttribute('aria-expanded') === 'true') ? true : false;
|
|
12403
12418
|
var hasChildren = currLi.getAttribute('aria-expanded') !== null ? true : (select('.' + EXPANDABLE, currLi) || select('.' + COLLAPSIBLE, currLi)) != null ? true : false;
|
|
12404
12419
|
var checked = null;
|
|
12405
|
-
|
|
12406
|
-
|
|
12420
|
+
var checkboxElement = select('.' + CHECKBOXWRAP, currLi);
|
|
12421
|
+
if (this.showCheckBox && checkboxElement) {
|
|
12422
|
+
checked = checkboxElement.getAttribute('aria-checked');
|
|
12407
12423
|
}
|
|
12408
12424
|
return {
|
|
12409
12425
|
id: id, text: text, parentID: pid, selected: selected, expanded: expanded,
|
|
@@ -12914,6 +12930,8 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
|
|
|
12914
12930
|
this.trigger('nodeDropped', this.getDragEvent(e.event, dragObj, dropTarget, e.target, e.dragData.draggedElement, null, level, drop));
|
|
12915
12931
|
if (dragObj.element.id !== this.element.id) {
|
|
12916
12932
|
dragObj.triggerEvent();
|
|
12933
|
+
this.isNodeDropped = true;
|
|
12934
|
+
this.fields.dataSource = this.treeData;
|
|
12917
12935
|
}
|
|
12918
12936
|
this.triggerEvent();
|
|
12919
12937
|
};
|
|
@@ -16303,7 +16321,10 @@ var __decorate$11 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
16303
16321
|
var CLS_CAROUSEL = 'e-carousel';
|
|
16304
16322
|
var CLS_ACTIVE$2 = 'e-active';
|
|
16305
16323
|
var CLS_RTL$5 = 'e-rtl';
|
|
16324
|
+
var CLS_PARTIAL = 'e-partial';
|
|
16325
|
+
var CLS_SLIDE_CONTAINER = 'e-carousel-slide-container';
|
|
16306
16326
|
var CLS_ITEMS$2 = 'e-carousel-items';
|
|
16327
|
+
var CLS_CLONED = 'e-cloned';
|
|
16307
16328
|
var CLS_ITEM$3 = 'e-carousel-item';
|
|
16308
16329
|
var CLS_PREVIOUS = 'e-previous';
|
|
16309
16330
|
var CLS_NEXT = 'e-next';
|
|
@@ -16434,6 +16455,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16434
16455
|
this.applySlideInterval();
|
|
16435
16456
|
}
|
|
16436
16457
|
this.handleNavigatorsActions(this.selectedIndex);
|
|
16458
|
+
if (this.partialVisible) {
|
|
16459
|
+
this.reRenderSlides();
|
|
16460
|
+
}
|
|
16437
16461
|
break;
|
|
16438
16462
|
case 'enableRtl':
|
|
16439
16463
|
if (this.enableRtl) {
|
|
@@ -16497,16 +16521,28 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16497
16521
|
break;
|
|
16498
16522
|
case 'items':
|
|
16499
16523
|
case 'dataSource':
|
|
16500
|
-
|
|
16501
|
-
|
|
16502
|
-
|
|
16503
|
-
|
|
16524
|
+
this.reRenderSlides();
|
|
16525
|
+
break;
|
|
16526
|
+
case 'partialVisible':
|
|
16527
|
+
if (this.partialVisible) {
|
|
16528
|
+
addClass([this.element], CLS_PARTIAL);
|
|
16504
16529
|
}
|
|
16505
|
-
|
|
16530
|
+
else {
|
|
16531
|
+
removeClass([this.element], CLS_PARTIAL);
|
|
16532
|
+
}
|
|
16533
|
+
this.reRenderSlides();
|
|
16506
16534
|
break;
|
|
16507
16535
|
}
|
|
16508
16536
|
}
|
|
16509
16537
|
};
|
|
16538
|
+
Carousel.prototype.reRenderSlides = function () {
|
|
16539
|
+
var target = this.element.querySelector("." + CLS_ITEMS$2);
|
|
16540
|
+
if (target) {
|
|
16541
|
+
this.resetTemplates(['itemTemplate']);
|
|
16542
|
+
remove(target);
|
|
16543
|
+
}
|
|
16544
|
+
this.renderSlides();
|
|
16545
|
+
};
|
|
16510
16546
|
Carousel.prototype.initialize = function () {
|
|
16511
16547
|
var carouselClasses = [];
|
|
16512
16548
|
if (this.cssClass) {
|
|
@@ -16515,6 +16551,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16515
16551
|
if (this.enableRtl) {
|
|
16516
16552
|
carouselClasses.push(CLS_RTL$5);
|
|
16517
16553
|
}
|
|
16554
|
+
if (this.partialVisible) {
|
|
16555
|
+
carouselClasses.push(CLS_PARTIAL);
|
|
16556
|
+
}
|
|
16518
16557
|
addClass([this.element], carouselClasses);
|
|
16519
16558
|
setStyleAttribute(this.element, { 'width': formatUnit(this.width), 'height': formatUnit(this.height) });
|
|
16520
16559
|
attributes(this.element, { 'tabindex': '0', 'aria-roledescription': 'carousel', 'aria-label': this.localeObj.getConstant('slideShow') });
|
|
@@ -16524,8 +16563,25 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16524
16563
|
};
|
|
16525
16564
|
Carousel.prototype.renderSlides = function () {
|
|
16526
16565
|
var _this = this;
|
|
16566
|
+
var slideContainer = this.element.querySelector('.' + CLS_SLIDE_CONTAINER);
|
|
16567
|
+
if (!slideContainer) {
|
|
16568
|
+
slideContainer = this.createElement('div', { className: CLS_SLIDE_CONTAINER });
|
|
16569
|
+
this.element.appendChild(slideContainer);
|
|
16570
|
+
}
|
|
16527
16571
|
var itemsContainer = this.createElement('div', { className: CLS_ITEMS$2, attrs: { 'aria-live': this.autoPlay ? 'off' : 'polite' } });
|
|
16528
|
-
|
|
16572
|
+
slideContainer.appendChild(itemsContainer);
|
|
16573
|
+
if (this.partialVisible && this.loop) {
|
|
16574
|
+
if (this.items.length > 0) {
|
|
16575
|
+
this.items.slice(-2).forEach(function (item, index) {
|
|
16576
|
+
_this.renderSlide(item, item.template, index, itemsContainer, true);
|
|
16577
|
+
});
|
|
16578
|
+
}
|
|
16579
|
+
else if (this.dataSource.length > 0) {
|
|
16580
|
+
this.dataSource.slice(-2).forEach(function (item, index) {
|
|
16581
|
+
_this.renderSlide(item, _this.itemTemplate, index, itemsContainer, true);
|
|
16582
|
+
});
|
|
16583
|
+
}
|
|
16584
|
+
}
|
|
16529
16585
|
if (this.items.length > 0) {
|
|
16530
16586
|
this.slideItems = this.items;
|
|
16531
16587
|
this.items.forEach(function (item, index) {
|
|
@@ -16538,20 +16594,43 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16538
16594
|
_this.renderSlide(item, _this.itemTemplate, index, itemsContainer);
|
|
16539
16595
|
});
|
|
16540
16596
|
}
|
|
16597
|
+
if (this.partialVisible && this.loop) {
|
|
16598
|
+
if (this.items.length > 0) {
|
|
16599
|
+
this.items.slice(0, 2).forEach(function (item, index) {
|
|
16600
|
+
_this.renderSlide(item, item.template, index, itemsContainer, true);
|
|
16601
|
+
});
|
|
16602
|
+
}
|
|
16603
|
+
else if (this.dataSource.length > 0) {
|
|
16604
|
+
this.dataSource.slice(0, 2).forEach(function (item, index) {
|
|
16605
|
+
_this.renderSlide(item, _this.itemTemplate, index, itemsContainer, true);
|
|
16606
|
+
});
|
|
16607
|
+
}
|
|
16608
|
+
}
|
|
16541
16609
|
this.renderTemplates();
|
|
16610
|
+
if (this.partialVisible) {
|
|
16611
|
+
itemsContainer.style.setProperty('--carousel-items-count', "" + itemsContainer.children.length);
|
|
16612
|
+
var slideWidth = itemsContainer.firstElementChild.clientWidth;
|
|
16613
|
+
var cloneCount = this.loop ? 2 : 0;
|
|
16614
|
+
itemsContainer.style.transitionProperty = 'none';
|
|
16615
|
+
itemsContainer.style.transform = "translateX(" + -(slideWidth) * (this.selectedIndex + cloneCount) + "px)";
|
|
16616
|
+
}
|
|
16542
16617
|
this.autoSlide();
|
|
16543
16618
|
this.renderTouchActions();
|
|
16544
16619
|
this.renderKeyboardActions();
|
|
16545
16620
|
};
|
|
16546
|
-
Carousel.prototype.renderSlide = function (item, itemTemplate, index, container) {
|
|
16621
|
+
Carousel.prototype.renderSlide = function (item, itemTemplate, index, container, isClone) {
|
|
16622
|
+
if (isClone === void 0) { isClone = false; }
|
|
16547
16623
|
var itemEle = this.createElement('div', {
|
|
16548
16624
|
id: getUniqueID('carousel_item'),
|
|
16549
|
-
className: CLS_ITEM$3 + " " + (item.cssClass ? item.cssClass : '') + " " + (this.selectedIndex === index ? CLS_ACTIVE$2 : ''),
|
|
16625
|
+
className: CLS_ITEM$3 + " " + (item.cssClass ? item.cssClass : '') + " " + (this.selectedIndex === index && !isClone ? CLS_ACTIVE$2 : ''),
|
|
16550
16626
|
attrs: {
|
|
16551
|
-
'aria-hidden': this.selectedIndex === index ? 'false' : 'true', 'data-index': index.toString(),
|
|
16627
|
+
'aria-hidden': this.selectedIndex === index && !isClone ? 'false' : 'true', 'data-index': index.toString(),
|
|
16552
16628
|
'aria-role': 'group', 'aria-roledescription': 'slide'
|
|
16553
16629
|
}
|
|
16554
16630
|
});
|
|
16631
|
+
if (isClone) {
|
|
16632
|
+
itemEle.classList.add(CLS_CLONED);
|
|
16633
|
+
}
|
|
16555
16634
|
if (!isNullOrUndefined(item.htmlAttributes)) {
|
|
16556
16635
|
this.setHtmlAttributes(item.htmlAttributes, itemEle);
|
|
16557
16636
|
}
|
|
@@ -16565,7 +16644,7 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16565
16644
|
return;
|
|
16566
16645
|
}
|
|
16567
16646
|
var navigators = this.createElement('div', { className: CLS_NAVIGATORS });
|
|
16568
|
-
var itemsContainer = this.element.querySelector("." +
|
|
16647
|
+
var itemsContainer = this.element.querySelector("." + CLS_SLIDE_CONTAINER);
|
|
16569
16648
|
itemsContainer.insertAdjacentElement('afterend', navigators);
|
|
16570
16649
|
this.renderNavigatorButton('Previous');
|
|
16571
16650
|
this.renderNavigatorButton('Next');
|
|
@@ -16573,8 +16652,7 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16573
16652
|
};
|
|
16574
16653
|
Carousel.prototype.renderNavigatorButton = function (direction) {
|
|
16575
16654
|
var buttonContainer = this.createElement('div', {
|
|
16576
|
-
className: (direction === 'Previous' ? CLS_PREVIOUS : CLS_NEXT) + ' ' + (this.buttonsVisibility === 'VisibleOnHover' ? CLS_HOVER_ARROWS : '')
|
|
16577
|
-
attrs: { 'aria-label': this.localeObj.getConstant(direction === 'Previous' ? 'previousSlide' : 'nextSlide') }
|
|
16655
|
+
className: (direction === 'Previous' ? CLS_PREVIOUS : CLS_NEXT) + ' ' + (this.buttonsVisibility === 'VisibleOnHover' ? CLS_HOVER_ARROWS : '')
|
|
16578
16656
|
});
|
|
16579
16657
|
if (direction === 'Previous' && this.previousButtonTemplate) {
|
|
16580
16658
|
addClass([buttonContainer], CLS_TEMPLATE$2);
|
|
@@ -16589,7 +16667,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16589
16667
|
append(template, buttonContainer);
|
|
16590
16668
|
}
|
|
16591
16669
|
else {
|
|
16592
|
-
var button = this.createElement('button'
|
|
16670
|
+
var button = this.createElement('button', {
|
|
16671
|
+
attrs: { 'aria-label': this.localeObj.getConstant(direction === 'Previous' ? 'previousSlide' : 'nextSlide') }
|
|
16672
|
+
});
|
|
16593
16673
|
var buttonObj = new Button({
|
|
16594
16674
|
cssClass: CLS_FLAT + ' ' + CLS_ROUND + ' ' + (direction === 'Previous' ? CLS_PREV_BUTTON : CLS_NEXT_BUTTON),
|
|
16595
16675
|
iconCss: CLS_ICON$1 + ' ' + (direction === 'Previous' ? CLS_PREV_ICON : CLS_NEXT_ICON),
|
|
@@ -16761,7 +16841,7 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16761
16841
|
if (this.element.querySelectorAll("." + CLS_ITEM$3 + "." + CLS_PREV_SLIDE + ",." + CLS_ITEM$3 + "." + CLS_NEXT_SLIDE).length > 0) {
|
|
16762
16842
|
return;
|
|
16763
16843
|
}
|
|
16764
|
-
var allSlides = [].slice.call(this.element.querySelectorAll("." + CLS_ITEM$3));
|
|
16844
|
+
var allSlides = [].slice.call(this.element.querySelectorAll("." + CLS_ITEM$3 + ":not(.e-cloned)"));
|
|
16765
16845
|
var activeSlide = this.element.querySelector("." + CLS_ITEM$3 + "." + CLS_ACTIVE$2);
|
|
16766
16846
|
if (isNullOrUndefined(activeSlide) && this.showIndicators) {
|
|
16767
16847
|
var activeIndicator = this.element.querySelector("." + CLS_INDICATOR_BAR + "." + CLS_ACTIVE$2);
|
|
@@ -16806,6 +16886,25 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16806
16886
|
slideDirection: direction,
|
|
16807
16887
|
isSwiped: isSwiped
|
|
16808
16888
|
};
|
|
16889
|
+
if (_this.partialVisible) {
|
|
16890
|
+
var container = _this.element.querySelector('.' + CLS_ITEMS$2);
|
|
16891
|
+
var slideWidth = allSlides[currentIndex].clientWidth;
|
|
16892
|
+
container.style.transitionProperty = 'transform';
|
|
16893
|
+
if (_this.loop) {
|
|
16894
|
+
if (_this.slideChangedEventArgs.currentIndex === 0 && _this.slideChangedEventArgs.slideDirection === 'Next') {
|
|
16895
|
+
container.style.transform = "translateX(" + -(slideWidth) * (allSlides.length + 2) + "px)";
|
|
16896
|
+
}
|
|
16897
|
+
else if (_this.slideChangedEventArgs.currentIndex === _this.slideItems.length - 1 && _this.slideChangedEventArgs.slideDirection === 'Previous') {
|
|
16898
|
+
container.style.transform = "translateX(" + -(slideWidth) + "px)";
|
|
16899
|
+
}
|
|
16900
|
+
else {
|
|
16901
|
+
container.style.transform = "translateX(" + -(slideWidth) * (currentIndex + 2) + "px)";
|
|
16902
|
+
}
|
|
16903
|
+
}
|
|
16904
|
+
else {
|
|
16905
|
+
container.style.transform = "translateX(" + -(slideWidth) * (currentIndex) + "px)";
|
|
16906
|
+
}
|
|
16907
|
+
}
|
|
16809
16908
|
var slideHeight;
|
|
16810
16909
|
if (_this.animationEffect === 'Slide') {
|
|
16811
16910
|
if (direction === 'Previous') {
|
|
@@ -16843,6 +16942,13 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16843
16942
|
Carousel.prototype.onTransitionEnd = function () {
|
|
16844
16943
|
var _this = this;
|
|
16845
16944
|
if (this.slideChangedEventArgs) {
|
|
16945
|
+
if (this.partialVisible && this.loop && (this.slideChangedEventArgs.currentIndex === 0 && this.slideChangedEventArgs.slideDirection === 'Next' ||
|
|
16946
|
+
this.slideChangedEventArgs.currentIndex === this.slideItems.length - 1 && this.slideChangedEventArgs.slideDirection === 'Previous')) {
|
|
16947
|
+
var container = this.element.querySelector('.' + CLS_ITEMS$2);
|
|
16948
|
+
var slideWidth = this.slideChangedEventArgs.currentSlide.clientWidth;
|
|
16949
|
+
container.style.transitionProperty = 'none';
|
|
16950
|
+
container.style.transform = "translate(" + -(slideWidth) * (this.slideChangedEventArgs.currentIndex + 2) + "px)";
|
|
16951
|
+
}
|
|
16846
16952
|
addClass([this.slideChangedEventArgs.currentSlide], CLS_ACTIVE$2);
|
|
16847
16953
|
removeClass([this.slideChangedEventArgs.previousSlide], CLS_ACTIVE$2);
|
|
16848
16954
|
this.trigger('slideChanged', this.slideChangedEventArgs, function () {
|
|
@@ -17251,6 +17357,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
17251
17357
|
__decorate$11([
|
|
17252
17358
|
Property('Visible')
|
|
17253
17359
|
], Carousel.prototype, "buttonsVisibility", void 0);
|
|
17360
|
+
__decorate$11([
|
|
17361
|
+
Property(false)
|
|
17362
|
+
], Carousel.prototype, "partialVisible", void 0);
|
|
17254
17363
|
__decorate$11([
|
|
17255
17364
|
Property()
|
|
17256
17365
|
], Carousel.prototype, "htmlAttributes", void 0);
|
|
@@ -17268,9 +17377,229 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
17268
17377
|
|
|
17269
17378
|
/** Carousel export modules */
|
|
17270
17379
|
|
|
17380
|
+
var __extends$12 = (undefined && undefined.__extends) || (function () {
|
|
17381
|
+
var extendStatics = function (d, b) {
|
|
17382
|
+
extendStatics = Object.setPrototypeOf ||
|
|
17383
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
17384
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
17385
|
+
return extendStatics(d, b);
|
|
17386
|
+
};
|
|
17387
|
+
return function (d, b) {
|
|
17388
|
+
extendStatics(d, b);
|
|
17389
|
+
function __() { this.constructor = d; }
|
|
17390
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
17391
|
+
};
|
|
17392
|
+
})();
|
|
17393
|
+
var __decorate$12 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
17394
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
17395
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17396
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
17397
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
17398
|
+
};
|
|
17399
|
+
// Constant variables
|
|
17400
|
+
var CLS_APPBAR = 'e-appbar';
|
|
17401
|
+
var CLS_HORIZONTAL_BOTTOM = 'e-horizontal-bottom';
|
|
17402
|
+
var CLS_STICKY = 'e-sticky';
|
|
17403
|
+
var CLS_PROMINENT = 'e-prominent';
|
|
17404
|
+
var CLS_DENSE = 'e-dense';
|
|
17405
|
+
var CLS_RTL$6 = 'e-rtl';
|
|
17406
|
+
var CLS_LIGHT = 'e-light';
|
|
17407
|
+
var CLS_DARK = 'e-dark';
|
|
17408
|
+
var CLS_PRIMARY = 'e-primary';
|
|
17409
|
+
var CLS_INHERIT = 'e-inherit';
|
|
17410
|
+
/**
|
|
17411
|
+
* The AppBar displays the information and actions related to the current application screen. It is used to show branding, screen titles, navigation, and actions.
|
|
17412
|
+
* Support to inherit colors from AppBar provided to <c>Button</c>, <c>DropDownButton</c>, <c>Menu</c> and <c>TextBox</c>.
|
|
17413
|
+
* Set <c>CssClass</c> property with <code>e-inherit</code> CSS class to inherit the background and color from AppBar.
|
|
17414
|
+
*/
|
|
17415
|
+
var AppBar = /** @__PURE__ @class */ (function (_super) {
|
|
17416
|
+
__extends$12(AppBar, _super);
|
|
17417
|
+
/**
|
|
17418
|
+
* Constructor for creating the AppBar widget
|
|
17419
|
+
*
|
|
17420
|
+
* @param {AppBarModel} options Accepts the AppBar model properties to initiate the rendering
|
|
17421
|
+
* @param {string | HTMLElement} element Accepts the DOM element reference
|
|
17422
|
+
*/
|
|
17423
|
+
function AppBar(options, element) {
|
|
17424
|
+
return _super.call(this, options, element) || this;
|
|
17425
|
+
}
|
|
17426
|
+
/**
|
|
17427
|
+
* Removes the control from the DOM and also removes all its related events.
|
|
17428
|
+
*
|
|
17429
|
+
* @returns {void}
|
|
17430
|
+
*/
|
|
17431
|
+
AppBar.prototype.destroy = function () {
|
|
17432
|
+
_super.prototype.destroy.call(this);
|
|
17433
|
+
this.element.classList.remove(CLS_APPBAR);
|
|
17434
|
+
this.element.removeAttribute('style');
|
|
17435
|
+
this.element.removeAttribute('role');
|
|
17436
|
+
};
|
|
17437
|
+
AppBar.prototype.getModuleName = function () {
|
|
17438
|
+
return 'appbar';
|
|
17439
|
+
};
|
|
17440
|
+
AppBar.prototype.getPersistData = function () {
|
|
17441
|
+
return this.addOnPersist([]);
|
|
17442
|
+
};
|
|
17443
|
+
AppBar.prototype.preRender = function () {
|
|
17444
|
+
// pre render code
|
|
17445
|
+
};
|
|
17446
|
+
AppBar.prototype.render = function () {
|
|
17447
|
+
if (this.element.tagName !== 'HEADER') {
|
|
17448
|
+
this.element.setAttribute('role', 'header');
|
|
17449
|
+
}
|
|
17450
|
+
if (this.cssClass) {
|
|
17451
|
+
addClass([this.element], this.cssClass.split(' '));
|
|
17452
|
+
}
|
|
17453
|
+
if (this.position === 'Bottom') {
|
|
17454
|
+
this.element.classList.add(CLS_HORIZONTAL_BOTTOM);
|
|
17455
|
+
}
|
|
17456
|
+
if (this.isSticky) {
|
|
17457
|
+
this.element.classList.add(CLS_STICKY);
|
|
17458
|
+
}
|
|
17459
|
+
if (this.enableRtl) {
|
|
17460
|
+
this.element.classList.add(CLS_RTL$6);
|
|
17461
|
+
}
|
|
17462
|
+
this.setHeightMode();
|
|
17463
|
+
this.setColorMode();
|
|
17464
|
+
if (!isNullOrUndefined(this.htmlAttributes)) {
|
|
17465
|
+
this.setHtmlAttributes(this.htmlAttributes, this.element);
|
|
17466
|
+
}
|
|
17467
|
+
};
|
|
17468
|
+
AppBar.prototype.onPropertyChanged = function (newProp, oldProp) {
|
|
17469
|
+
for (var _i = 0, _a = Object.keys(newProp); _i < _a.length; _i++) {
|
|
17470
|
+
var prop = _a[_i];
|
|
17471
|
+
switch (prop) {
|
|
17472
|
+
case 'mode':
|
|
17473
|
+
removeClass([this.element], [CLS_DENSE, CLS_PROMINENT]);
|
|
17474
|
+
this.setHeightMode();
|
|
17475
|
+
break;
|
|
17476
|
+
case 'position':
|
|
17477
|
+
if (this.position === 'Bottom') {
|
|
17478
|
+
addClass([this.element], CLS_HORIZONTAL_BOTTOM);
|
|
17479
|
+
}
|
|
17480
|
+
else {
|
|
17481
|
+
removeClass([this.element], CLS_HORIZONTAL_BOTTOM);
|
|
17482
|
+
}
|
|
17483
|
+
break;
|
|
17484
|
+
case 'cssClass':
|
|
17485
|
+
if (oldProp.cssClass) {
|
|
17486
|
+
removeClass([this.element], oldProp.cssClass.split(' '));
|
|
17487
|
+
}
|
|
17488
|
+
if (newProp.cssClass) {
|
|
17489
|
+
addClass([this.element], newProp.cssClass.split(' '));
|
|
17490
|
+
}
|
|
17491
|
+
break;
|
|
17492
|
+
case 'isSticky':
|
|
17493
|
+
if (this.isSticky) {
|
|
17494
|
+
addClass([this.element], CLS_STICKY);
|
|
17495
|
+
}
|
|
17496
|
+
else {
|
|
17497
|
+
removeClass([this.element], CLS_STICKY);
|
|
17498
|
+
}
|
|
17499
|
+
break;
|
|
17500
|
+
case 'htmlAttributes':
|
|
17501
|
+
if (!isNullOrUndefined(this.htmlAttributes)) {
|
|
17502
|
+
if (!isNullOrUndefined(oldProp.htmlAttributes)) {
|
|
17503
|
+
var keys = Object.keys(oldProp.htmlAttributes);
|
|
17504
|
+
for (var _b = 0, keys_1 = keys; _b < keys_1.length; _b++) {
|
|
17505
|
+
var key = keys_1[_b];
|
|
17506
|
+
if (key === 'class') {
|
|
17507
|
+
removeClass([this.element], oldProp.htmlAttributes[key]);
|
|
17508
|
+
}
|
|
17509
|
+
else {
|
|
17510
|
+
this.element.removeAttribute(key);
|
|
17511
|
+
}
|
|
17512
|
+
}
|
|
17513
|
+
}
|
|
17514
|
+
this.setHtmlAttributes(newProp.htmlAttributes, this.element);
|
|
17515
|
+
}
|
|
17516
|
+
break;
|
|
17517
|
+
case 'colorMode':
|
|
17518
|
+
removeClass([this.element], [CLS_DARK, CLS_PRIMARY, CLS_INHERIT, CLS_LIGHT]);
|
|
17519
|
+
this.setColorMode();
|
|
17520
|
+
break;
|
|
17521
|
+
case 'enableRtl':
|
|
17522
|
+
if (this.enableRtl) {
|
|
17523
|
+
addClass([this.element], CLS_RTL$6);
|
|
17524
|
+
}
|
|
17525
|
+
else {
|
|
17526
|
+
removeClass([this.element], CLS_RTL$6);
|
|
17527
|
+
}
|
|
17528
|
+
break;
|
|
17529
|
+
}
|
|
17530
|
+
}
|
|
17531
|
+
};
|
|
17532
|
+
AppBar.prototype.setHtmlAttributes = function (attribute, element) {
|
|
17533
|
+
var keys = Object.keys(attribute);
|
|
17534
|
+
for (var _i = 0, keys_2 = keys; _i < keys_2.length; _i++) {
|
|
17535
|
+
var key = keys_2[_i];
|
|
17536
|
+
if (key === 'class') {
|
|
17537
|
+
addClass([element], attribute[key]);
|
|
17538
|
+
}
|
|
17539
|
+
else {
|
|
17540
|
+
element.setAttribute(key, attribute[key]);
|
|
17541
|
+
}
|
|
17542
|
+
}
|
|
17543
|
+
};
|
|
17544
|
+
AppBar.prototype.setHeightMode = function () {
|
|
17545
|
+
if (this.mode === 'Prominent') {
|
|
17546
|
+
this.element.classList.add(CLS_PROMINENT);
|
|
17547
|
+
}
|
|
17548
|
+
else if (this.mode === 'Dense') {
|
|
17549
|
+
this.element.classList.add(CLS_DENSE);
|
|
17550
|
+
}
|
|
17551
|
+
};
|
|
17552
|
+
AppBar.prototype.setColorMode = function () {
|
|
17553
|
+
switch (this.colorMode) {
|
|
17554
|
+
case 'Light':
|
|
17555
|
+
this.element.classList.add(CLS_LIGHT);
|
|
17556
|
+
break;
|
|
17557
|
+
case 'Dark':
|
|
17558
|
+
this.element.classList.add(CLS_DARK);
|
|
17559
|
+
break;
|
|
17560
|
+
case 'Primary':
|
|
17561
|
+
this.element.classList.add(CLS_PRIMARY);
|
|
17562
|
+
break;
|
|
17563
|
+
case 'Inherit':
|
|
17564
|
+
this.element.classList.add(CLS_INHERIT);
|
|
17565
|
+
break;
|
|
17566
|
+
}
|
|
17567
|
+
};
|
|
17568
|
+
__decorate$12([
|
|
17569
|
+
Property('Regular')
|
|
17570
|
+
], AppBar.prototype, "mode", void 0);
|
|
17571
|
+
__decorate$12([
|
|
17572
|
+
Property('Top')
|
|
17573
|
+
], AppBar.prototype, "position", void 0);
|
|
17574
|
+
__decorate$12([
|
|
17575
|
+
Property()
|
|
17576
|
+
], AppBar.prototype, "cssClass", void 0);
|
|
17577
|
+
__decorate$12([
|
|
17578
|
+
Property(false)
|
|
17579
|
+
], AppBar.prototype, "isSticky", void 0);
|
|
17580
|
+
__decorate$12([
|
|
17581
|
+
Property()
|
|
17582
|
+
], AppBar.prototype, "htmlAttributes", void 0);
|
|
17583
|
+
__decorate$12([
|
|
17584
|
+
Property('Light')
|
|
17585
|
+
], AppBar.prototype, "colorMode", void 0);
|
|
17586
|
+
__decorate$12([
|
|
17587
|
+
Event()
|
|
17588
|
+
], AppBar.prototype, "created", void 0);
|
|
17589
|
+
__decorate$12([
|
|
17590
|
+
Event()
|
|
17591
|
+
], AppBar.prototype, "destroyed", void 0);
|
|
17592
|
+
AppBar = __decorate$12([
|
|
17593
|
+
NotifyPropertyChanges
|
|
17594
|
+
], AppBar);
|
|
17595
|
+
return AppBar;
|
|
17596
|
+
}(Component));
|
|
17597
|
+
|
|
17598
|
+
/** AppBar export modules */
|
|
17599
|
+
|
|
17271
17600
|
/**
|
|
17272
17601
|
* Navigation all modules
|
|
17273
17602
|
*/
|
|
17274
17603
|
|
|
17275
|
-
export { MenuAnimationSettings, MenuItem, HScroll, VScroll, addScrolling, destroyScroll, Item, Toolbar, AccordionActionSettings, AccordionAnimationSettings, AccordionItem, Accordion, ContextMenu, Menu, TabActionSettings, TabAnimationSettings, Header, TabItem, Tab, FieldsSettings, ActionSettings, NodeAnimationSettings, TreeView, Sidebar, BreadcrumbItem, Breadcrumb, CarouselItem, Carousel };
|
|
17604
|
+
export { MenuAnimationSettings, MenuItem, HScroll, VScroll, addScrolling, destroyScroll, Item, Toolbar, AccordionActionSettings, AccordionAnimationSettings, AccordionItem, Accordion, ContextMenu, Menu, TabActionSettings, TabAnimationSettings, Header, TabItem, Tab, FieldsSettings, ActionSettings, NodeAnimationSettings, TreeView, Sidebar, BreadcrumbItem, Breadcrumb, CarouselItem, Carousel, AppBar };
|
|
17276
17605
|
//# sourceMappingURL=ej2-navigations.es5.js.map
|