@syncfusion/ej2-navigations 20.2.49 → 20.3.47
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 +23 -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 +355 -45
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +375 -46
- 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/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 +23 -16
- package/src/treeview/treeview.d.ts +1 -0
- package/src/treeview/treeview.js +24 -14
- 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;
|
|
@@ -8066,7 +8067,10 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
8066
8067
|
if (!isNullOrUndefined(newCnt)) {
|
|
8067
8068
|
this.prevActiveEle = newCnt.id;
|
|
8068
8069
|
}
|
|
8069
|
-
|
|
8070
|
+
var isPrevent = isNullOrUndefined(this.animation) || this.animation.next === {} || this.animation.previous === {}
|
|
8071
|
+
|| isNullOrUndefined(this.animation.next.effect) || isNullOrUndefined(this.animation.previous.effect)
|
|
8072
|
+
|| this.animation.previous.effect == 'None' || this.animation.next.effect == 'None';
|
|
8073
|
+
if (this.initRender || value === false || this.animation === {} || isPrevent) {
|
|
8070
8074
|
if (oldCnt && oldCnt !== newCnt) {
|
|
8071
8075
|
oldCnt.classList.remove(CLS_ACTIVE$1);
|
|
8072
8076
|
}
|
|
@@ -8432,8 +8436,8 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
8432
8436
|
}
|
|
8433
8437
|
else {
|
|
8434
8438
|
if (this.overflowMode === 'MultiRow') {
|
|
8435
|
-
var
|
|
8436
|
-
setStyleAttribute(
|
|
8439
|
+
var top_1 = this.headerPlacement === 'Bottom' ? trg.offsetTop : trg.offsetHeight + trg.offsetTop;
|
|
8440
|
+
setStyleAttribute(bar, { 'top': top_1 + 'px', 'height': '' });
|
|
8437
8441
|
}
|
|
8438
8442
|
else {
|
|
8439
8443
|
setStyleAttribute(bar, { 'top': '', 'height': '' });
|
|
@@ -8719,19 +8723,6 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
8719
8723
|
break;
|
|
8720
8724
|
}
|
|
8721
8725
|
};
|
|
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
8726
|
Tab.prototype.refreshItemVisibility = function (target) {
|
|
8736
8727
|
var scrCnt = select('.' + this.scrCntClass, this.tbItems);
|
|
8737
8728
|
if (!this.isVertical() && !isNullOrUndefined(scrCnt)) {
|
|
@@ -9554,6 +9545,11 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
9554
9545
|
}
|
|
9555
9546
|
}
|
|
9556
9547
|
};
|
|
9548
|
+
/**
|
|
9549
|
+
* To refresh the active tab contents.
|
|
9550
|
+
*
|
|
9551
|
+
* @returns {void}
|
|
9552
|
+
*/
|
|
9557
9553
|
Tab.prototype.refreshActiveTab = function () {
|
|
9558
9554
|
if (this.isReact) {
|
|
9559
9555
|
this.clearTemplate();
|
|
@@ -9672,6 +9668,18 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
|
|
|
9672
9668
|
this.renderReactTemplates();
|
|
9673
9669
|
}
|
|
9674
9670
|
};
|
|
9671
|
+
/**
|
|
9672
|
+
* To refresh the active tab indicator.
|
|
9673
|
+
*
|
|
9674
|
+
* @returns {void}
|
|
9675
|
+
*/
|
|
9676
|
+
Tab.prototype.refreshActiveTabBorder = function () {
|
|
9677
|
+
var activeEle = select('.' + CLS_TB_ITEM + '.' + CLS_TB_POPUP + '.' + CLS_ACTIVE$1, this.element);
|
|
9678
|
+
if (!isNullOrUndefined(activeEle) && this.reorderActiveTab) {
|
|
9679
|
+
this.select(this.getEleIndex(activeEle));
|
|
9680
|
+
}
|
|
9681
|
+
this.refreshActiveBorder();
|
|
9682
|
+
};
|
|
9675
9683
|
__decorate$7([
|
|
9676
9684
|
Collection([], TabItem)
|
|
9677
9685
|
], Tab.prototype, "items", void 0);
|
|
@@ -12486,27 +12494,37 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
|
|
|
12486
12494
|
this.trigger('nodeEditing', eventArgs, function (observedArgs) {
|
|
12487
12495
|
if (!observedArgs.cancel) {
|
|
12488
12496
|
var inpWidth = textEle.offsetWidth + 5;
|
|
12489
|
-
var
|
|
12497
|
+
var style_1 = 'width:' + inpWidth + 'px';
|
|
12490
12498
|
addClass([liEle], EDITING);
|
|
12491
12499
|
if (!isNullOrUndefined(_this.nodeTemplateFn)) {
|
|
12492
12500
|
_this.destroyTemplate(liEle);
|
|
12493
12501
|
}
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
|
|
12498
|
-
|
|
12499
|
-
|
|
12500
|
-
|
|
12501
|
-
}
|
|
12502
|
-
_this.inputObj.container.setAttribute('style', style);
|
|
12503
|
-
inpEle.focus();
|
|
12504
|
-
var inputEle = inpEle;
|
|
12505
|
-
inputEle.setSelectionRange(0, inputEle.value.length);
|
|
12506
|
-
_this.wireInputEvents(inpEle);
|
|
12502
|
+
if (_this.isReact) {
|
|
12503
|
+
setTimeout(function () {
|
|
12504
|
+
_this.renderTextBox(eventArgs, textEle, style_1);
|
|
12505
|
+
}, 5);
|
|
12506
|
+
}
|
|
12507
|
+
else {
|
|
12508
|
+
_this.renderTextBox(eventArgs, textEle, style_1);
|
|
12509
|
+
}
|
|
12507
12510
|
}
|
|
12508
12511
|
});
|
|
12509
12512
|
};
|
|
12513
|
+
TreeView.prototype.renderTextBox = function (eventArgs, textEle, style) {
|
|
12514
|
+
textEle.innerHTML = eventArgs.innerHtml;
|
|
12515
|
+
var inpEle = select('.' + TREEINPUT, textEle);
|
|
12516
|
+
this.inputObj = Input.createInput({
|
|
12517
|
+
element: inpEle,
|
|
12518
|
+
properties: {
|
|
12519
|
+
enableRtl: this.enableRtl,
|
|
12520
|
+
}
|
|
12521
|
+
}, this.createElement);
|
|
12522
|
+
this.inputObj.container.setAttribute('style', style);
|
|
12523
|
+
inpEle.focus();
|
|
12524
|
+
var inputEle = inpEle;
|
|
12525
|
+
inputEle.setSelectionRange(0, inputEle.value.length);
|
|
12526
|
+
this.wireInputEvents(inpEle);
|
|
12527
|
+
};
|
|
12510
12528
|
TreeView.prototype.updateOldText = function (liEle) {
|
|
12511
12529
|
var id = liEle.getAttribute('data-uid');
|
|
12512
12530
|
this.editData = this.getNodeObject(id);
|
|
@@ -16293,7 +16311,10 @@ var __decorate$11 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
16293
16311
|
var CLS_CAROUSEL = 'e-carousel';
|
|
16294
16312
|
var CLS_ACTIVE$2 = 'e-active';
|
|
16295
16313
|
var CLS_RTL$5 = 'e-rtl';
|
|
16314
|
+
var CLS_PARTIAL = 'e-partial';
|
|
16315
|
+
var CLS_SLIDE_CONTAINER = 'e-carousel-slide-container';
|
|
16296
16316
|
var CLS_ITEMS$2 = 'e-carousel-items';
|
|
16317
|
+
var CLS_CLONED = 'e-cloned';
|
|
16297
16318
|
var CLS_ITEM$3 = 'e-carousel-item';
|
|
16298
16319
|
var CLS_PREVIOUS = 'e-previous';
|
|
16299
16320
|
var CLS_NEXT = 'e-next';
|
|
@@ -16424,6 +16445,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16424
16445
|
this.applySlideInterval();
|
|
16425
16446
|
}
|
|
16426
16447
|
this.handleNavigatorsActions(this.selectedIndex);
|
|
16448
|
+
if (this.partialVisible) {
|
|
16449
|
+
this.reRenderSlides();
|
|
16450
|
+
}
|
|
16427
16451
|
break;
|
|
16428
16452
|
case 'enableRtl':
|
|
16429
16453
|
if (this.enableRtl) {
|
|
@@ -16487,16 +16511,28 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16487
16511
|
break;
|
|
16488
16512
|
case 'items':
|
|
16489
16513
|
case 'dataSource':
|
|
16490
|
-
|
|
16491
|
-
|
|
16492
|
-
|
|
16493
|
-
|
|
16514
|
+
this.reRenderSlides();
|
|
16515
|
+
break;
|
|
16516
|
+
case 'partialVisible':
|
|
16517
|
+
if (this.partialVisible) {
|
|
16518
|
+
addClass([this.element], CLS_PARTIAL);
|
|
16494
16519
|
}
|
|
16495
|
-
|
|
16520
|
+
else {
|
|
16521
|
+
removeClass([this.element], CLS_PARTIAL);
|
|
16522
|
+
}
|
|
16523
|
+
this.reRenderSlides();
|
|
16496
16524
|
break;
|
|
16497
16525
|
}
|
|
16498
16526
|
}
|
|
16499
16527
|
};
|
|
16528
|
+
Carousel.prototype.reRenderSlides = function () {
|
|
16529
|
+
var target = this.element.querySelector("." + CLS_ITEMS$2);
|
|
16530
|
+
if (target) {
|
|
16531
|
+
this.resetTemplates(['itemTemplate']);
|
|
16532
|
+
remove(target);
|
|
16533
|
+
}
|
|
16534
|
+
this.renderSlides();
|
|
16535
|
+
};
|
|
16500
16536
|
Carousel.prototype.initialize = function () {
|
|
16501
16537
|
var carouselClasses = [];
|
|
16502
16538
|
if (this.cssClass) {
|
|
@@ -16505,6 +16541,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16505
16541
|
if (this.enableRtl) {
|
|
16506
16542
|
carouselClasses.push(CLS_RTL$5);
|
|
16507
16543
|
}
|
|
16544
|
+
if (this.partialVisible) {
|
|
16545
|
+
carouselClasses.push(CLS_PARTIAL);
|
|
16546
|
+
}
|
|
16508
16547
|
addClass([this.element], carouselClasses);
|
|
16509
16548
|
setStyleAttribute(this.element, { 'width': formatUnit(this.width), 'height': formatUnit(this.height) });
|
|
16510
16549
|
attributes(this.element, { 'tabindex': '0', 'aria-roledescription': 'carousel', 'aria-label': this.localeObj.getConstant('slideShow') });
|
|
@@ -16514,8 +16553,25 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16514
16553
|
};
|
|
16515
16554
|
Carousel.prototype.renderSlides = function () {
|
|
16516
16555
|
var _this = this;
|
|
16556
|
+
var slideContainer = this.element.querySelector('.' + CLS_SLIDE_CONTAINER);
|
|
16557
|
+
if (!slideContainer) {
|
|
16558
|
+
slideContainer = this.createElement('div', { className: CLS_SLIDE_CONTAINER });
|
|
16559
|
+
this.element.appendChild(slideContainer);
|
|
16560
|
+
}
|
|
16517
16561
|
var itemsContainer = this.createElement('div', { className: CLS_ITEMS$2, attrs: { 'aria-live': this.autoPlay ? 'off' : 'polite' } });
|
|
16518
|
-
|
|
16562
|
+
slideContainer.appendChild(itemsContainer);
|
|
16563
|
+
if (this.partialVisible && this.loop) {
|
|
16564
|
+
if (this.items.length > 0) {
|
|
16565
|
+
this.items.slice(-2).forEach(function (item, index) {
|
|
16566
|
+
_this.renderSlide(item, item.template, index, itemsContainer, true);
|
|
16567
|
+
});
|
|
16568
|
+
}
|
|
16569
|
+
else if (this.dataSource.length > 0) {
|
|
16570
|
+
this.dataSource.slice(-2).forEach(function (item, index) {
|
|
16571
|
+
_this.renderSlide(item, _this.itemTemplate, index, itemsContainer, true);
|
|
16572
|
+
});
|
|
16573
|
+
}
|
|
16574
|
+
}
|
|
16519
16575
|
if (this.items.length > 0) {
|
|
16520
16576
|
this.slideItems = this.items;
|
|
16521
16577
|
this.items.forEach(function (item, index) {
|
|
@@ -16528,20 +16584,43 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16528
16584
|
_this.renderSlide(item, _this.itemTemplate, index, itemsContainer);
|
|
16529
16585
|
});
|
|
16530
16586
|
}
|
|
16587
|
+
if (this.partialVisible && this.loop) {
|
|
16588
|
+
if (this.items.length > 0) {
|
|
16589
|
+
this.items.slice(0, 2).forEach(function (item, index) {
|
|
16590
|
+
_this.renderSlide(item, item.template, index, itemsContainer, true);
|
|
16591
|
+
});
|
|
16592
|
+
}
|
|
16593
|
+
else if (this.dataSource.length > 0) {
|
|
16594
|
+
this.dataSource.slice(0, 2).forEach(function (item, index) {
|
|
16595
|
+
_this.renderSlide(item, _this.itemTemplate, index, itemsContainer, true);
|
|
16596
|
+
});
|
|
16597
|
+
}
|
|
16598
|
+
}
|
|
16531
16599
|
this.renderTemplates();
|
|
16600
|
+
if (this.partialVisible) {
|
|
16601
|
+
itemsContainer.style.setProperty('--carousel-items-count', "" + itemsContainer.children.length);
|
|
16602
|
+
var slideWidth = itemsContainer.firstElementChild.clientWidth;
|
|
16603
|
+
var cloneCount = this.loop ? 2 : 0;
|
|
16604
|
+
itemsContainer.style.transitionProperty = 'none';
|
|
16605
|
+
itemsContainer.style.transform = "translateX(" + -(slideWidth) * (this.selectedIndex + cloneCount) + "px)";
|
|
16606
|
+
}
|
|
16532
16607
|
this.autoSlide();
|
|
16533
16608
|
this.renderTouchActions();
|
|
16534
16609
|
this.renderKeyboardActions();
|
|
16535
16610
|
};
|
|
16536
|
-
Carousel.prototype.renderSlide = function (item, itemTemplate, index, container) {
|
|
16611
|
+
Carousel.prototype.renderSlide = function (item, itemTemplate, index, container, isClone) {
|
|
16612
|
+
if (isClone === void 0) { isClone = false; }
|
|
16537
16613
|
var itemEle = this.createElement('div', {
|
|
16538
16614
|
id: getUniqueID('carousel_item'),
|
|
16539
|
-
className: CLS_ITEM$3 + " " + (item.cssClass ? item.cssClass : '') + " " + (this.selectedIndex === index ? CLS_ACTIVE$2 : ''),
|
|
16615
|
+
className: CLS_ITEM$3 + " " + (item.cssClass ? item.cssClass : '') + " " + (this.selectedIndex === index && !isClone ? CLS_ACTIVE$2 : ''),
|
|
16540
16616
|
attrs: {
|
|
16541
|
-
'aria-hidden': this.selectedIndex === index ? 'false' : 'true', 'data-index': index.toString(),
|
|
16617
|
+
'aria-hidden': this.selectedIndex === index && !isClone ? 'false' : 'true', 'data-index': index.toString(),
|
|
16542
16618
|
'aria-role': 'group', 'aria-roledescription': 'slide'
|
|
16543
16619
|
}
|
|
16544
16620
|
});
|
|
16621
|
+
if (isClone) {
|
|
16622
|
+
itemEle.classList.add(CLS_CLONED);
|
|
16623
|
+
}
|
|
16545
16624
|
if (!isNullOrUndefined(item.htmlAttributes)) {
|
|
16546
16625
|
this.setHtmlAttributes(item.htmlAttributes, itemEle);
|
|
16547
16626
|
}
|
|
@@ -16555,7 +16634,7 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16555
16634
|
return;
|
|
16556
16635
|
}
|
|
16557
16636
|
var navigators = this.createElement('div', { className: CLS_NAVIGATORS });
|
|
16558
|
-
var itemsContainer = this.element.querySelector("." +
|
|
16637
|
+
var itemsContainer = this.element.querySelector("." + CLS_SLIDE_CONTAINER);
|
|
16559
16638
|
itemsContainer.insertAdjacentElement('afterend', navigators);
|
|
16560
16639
|
this.renderNavigatorButton('Previous');
|
|
16561
16640
|
this.renderNavigatorButton('Next');
|
|
@@ -16563,8 +16642,7 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16563
16642
|
};
|
|
16564
16643
|
Carousel.prototype.renderNavigatorButton = function (direction) {
|
|
16565
16644
|
var buttonContainer = this.createElement('div', {
|
|
16566
|
-
className: (direction === 'Previous' ? CLS_PREVIOUS : CLS_NEXT) + ' ' + (this.buttonsVisibility === 'VisibleOnHover' ? CLS_HOVER_ARROWS : '')
|
|
16567
|
-
attrs: { 'aria-label': this.localeObj.getConstant(direction === 'Previous' ? 'previousSlide' : 'nextSlide') }
|
|
16645
|
+
className: (direction === 'Previous' ? CLS_PREVIOUS : CLS_NEXT) + ' ' + (this.buttonsVisibility === 'VisibleOnHover' ? CLS_HOVER_ARROWS : '')
|
|
16568
16646
|
});
|
|
16569
16647
|
if (direction === 'Previous' && this.previousButtonTemplate) {
|
|
16570
16648
|
addClass([buttonContainer], CLS_TEMPLATE$2);
|
|
@@ -16579,7 +16657,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16579
16657
|
append(template, buttonContainer);
|
|
16580
16658
|
}
|
|
16581
16659
|
else {
|
|
16582
|
-
var button = this.createElement('button'
|
|
16660
|
+
var button = this.createElement('button', {
|
|
16661
|
+
attrs: { 'aria-label': this.localeObj.getConstant(direction === 'Previous' ? 'previousSlide' : 'nextSlide') }
|
|
16662
|
+
});
|
|
16583
16663
|
var buttonObj = new Button({
|
|
16584
16664
|
cssClass: CLS_FLAT + ' ' + CLS_ROUND + ' ' + (direction === 'Previous' ? CLS_PREV_BUTTON : CLS_NEXT_BUTTON),
|
|
16585
16665
|
iconCss: CLS_ICON$1 + ' ' + (direction === 'Previous' ? CLS_PREV_ICON : CLS_NEXT_ICON),
|
|
@@ -16751,7 +16831,7 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16751
16831
|
if (this.element.querySelectorAll("." + CLS_ITEM$3 + "." + CLS_PREV_SLIDE + ",." + CLS_ITEM$3 + "." + CLS_NEXT_SLIDE).length > 0) {
|
|
16752
16832
|
return;
|
|
16753
16833
|
}
|
|
16754
|
-
var allSlides = [].slice.call(this.element.querySelectorAll("." + CLS_ITEM$3));
|
|
16834
|
+
var allSlides = [].slice.call(this.element.querySelectorAll("." + CLS_ITEM$3 + ":not(.e-cloned)"));
|
|
16755
16835
|
var activeSlide = this.element.querySelector("." + CLS_ITEM$3 + "." + CLS_ACTIVE$2);
|
|
16756
16836
|
if (isNullOrUndefined(activeSlide) && this.showIndicators) {
|
|
16757
16837
|
var activeIndicator = this.element.querySelector("." + CLS_INDICATOR_BAR + "." + CLS_ACTIVE$2);
|
|
@@ -16796,6 +16876,25 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16796
16876
|
slideDirection: direction,
|
|
16797
16877
|
isSwiped: isSwiped
|
|
16798
16878
|
};
|
|
16879
|
+
if (_this.partialVisible) {
|
|
16880
|
+
var container = _this.element.querySelector('.' + CLS_ITEMS$2);
|
|
16881
|
+
var slideWidth = allSlides[currentIndex].clientWidth;
|
|
16882
|
+
container.style.transitionProperty = 'transform';
|
|
16883
|
+
if (_this.loop) {
|
|
16884
|
+
if (_this.slideChangedEventArgs.currentIndex === 0 && _this.slideChangedEventArgs.slideDirection === 'Next') {
|
|
16885
|
+
container.style.transform = "translateX(" + -(slideWidth) * (allSlides.length + 2) + "px)";
|
|
16886
|
+
}
|
|
16887
|
+
else if (_this.slideChangedEventArgs.currentIndex === _this.slideItems.length - 1 && _this.slideChangedEventArgs.slideDirection === 'Previous') {
|
|
16888
|
+
container.style.transform = "translateX(" + -(slideWidth) + "px)";
|
|
16889
|
+
}
|
|
16890
|
+
else {
|
|
16891
|
+
container.style.transform = "translateX(" + -(slideWidth) * (currentIndex + 2) + "px)";
|
|
16892
|
+
}
|
|
16893
|
+
}
|
|
16894
|
+
else {
|
|
16895
|
+
container.style.transform = "translateX(" + -(slideWidth) * (currentIndex) + "px)";
|
|
16896
|
+
}
|
|
16897
|
+
}
|
|
16799
16898
|
var slideHeight;
|
|
16800
16899
|
if (_this.animationEffect === 'Slide') {
|
|
16801
16900
|
if (direction === 'Previous') {
|
|
@@ -16833,6 +16932,13 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
16833
16932
|
Carousel.prototype.onTransitionEnd = function () {
|
|
16834
16933
|
var _this = this;
|
|
16835
16934
|
if (this.slideChangedEventArgs) {
|
|
16935
|
+
if (this.partialVisible && this.loop && (this.slideChangedEventArgs.currentIndex === 0 && this.slideChangedEventArgs.slideDirection === 'Next' ||
|
|
16936
|
+
this.slideChangedEventArgs.currentIndex === this.slideItems.length - 1 && this.slideChangedEventArgs.slideDirection === 'Previous')) {
|
|
16937
|
+
var container = this.element.querySelector('.' + CLS_ITEMS$2);
|
|
16938
|
+
var slideWidth = this.slideChangedEventArgs.currentSlide.clientWidth;
|
|
16939
|
+
container.style.transitionProperty = 'none';
|
|
16940
|
+
container.style.transform = "translate(" + -(slideWidth) * (this.slideChangedEventArgs.currentIndex + 2) + "px)";
|
|
16941
|
+
}
|
|
16836
16942
|
addClass([this.slideChangedEventArgs.currentSlide], CLS_ACTIVE$2);
|
|
16837
16943
|
removeClass([this.slideChangedEventArgs.previousSlide], CLS_ACTIVE$2);
|
|
16838
16944
|
this.trigger('slideChanged', this.slideChangedEventArgs, function () {
|
|
@@ -17241,6 +17347,9 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
17241
17347
|
__decorate$11([
|
|
17242
17348
|
Property('Visible')
|
|
17243
17349
|
], Carousel.prototype, "buttonsVisibility", void 0);
|
|
17350
|
+
__decorate$11([
|
|
17351
|
+
Property(false)
|
|
17352
|
+
], Carousel.prototype, "partialVisible", void 0);
|
|
17244
17353
|
__decorate$11([
|
|
17245
17354
|
Property()
|
|
17246
17355
|
], Carousel.prototype, "htmlAttributes", void 0);
|
|
@@ -17258,9 +17367,229 @@ var Carousel = /** @__PURE__ @class */ (function (_super) {
|
|
|
17258
17367
|
|
|
17259
17368
|
/** Carousel export modules */
|
|
17260
17369
|
|
|
17370
|
+
var __extends$12 = (undefined && undefined.__extends) || (function () {
|
|
17371
|
+
var extendStatics = function (d, b) {
|
|
17372
|
+
extendStatics = Object.setPrototypeOf ||
|
|
17373
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
17374
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
17375
|
+
return extendStatics(d, b);
|
|
17376
|
+
};
|
|
17377
|
+
return function (d, b) {
|
|
17378
|
+
extendStatics(d, b);
|
|
17379
|
+
function __() { this.constructor = d; }
|
|
17380
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
17381
|
+
};
|
|
17382
|
+
})();
|
|
17383
|
+
var __decorate$12 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
17384
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
17385
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17386
|
+
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;
|
|
17387
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
17388
|
+
};
|
|
17389
|
+
// Constant variables
|
|
17390
|
+
var CLS_APPBAR = 'e-appbar';
|
|
17391
|
+
var CLS_HORIZONTAL_BOTTOM = 'e-horizontal-bottom';
|
|
17392
|
+
var CLS_STICKY = 'e-sticky';
|
|
17393
|
+
var CLS_PROMINENT = 'e-prominent';
|
|
17394
|
+
var CLS_DENSE = 'e-dense';
|
|
17395
|
+
var CLS_RTL$6 = 'e-rtl';
|
|
17396
|
+
var CLS_LIGHT = 'e-light';
|
|
17397
|
+
var CLS_DARK = 'e-dark';
|
|
17398
|
+
var CLS_PRIMARY = 'e-primary';
|
|
17399
|
+
var CLS_INHERIT = 'e-inherit';
|
|
17400
|
+
/**
|
|
17401
|
+
* The AppBar displays the information and actions related to the current application screen. It is used to show branding, screen titles, navigation, and actions.
|
|
17402
|
+
* Support to inherit colors from AppBar provided to <c>Button</c>, <c>DropDownButton</c>, <c>Menu</c> and <c>TextBox</c>.
|
|
17403
|
+
* Set <c>CssClass</c> property with <code>e-inherit</code> CSS class to inherit the background and color from AppBar.
|
|
17404
|
+
*/
|
|
17405
|
+
var AppBar = /** @__PURE__ @class */ (function (_super) {
|
|
17406
|
+
__extends$12(AppBar, _super);
|
|
17407
|
+
/**
|
|
17408
|
+
* Constructor for creating the AppBar widget
|
|
17409
|
+
*
|
|
17410
|
+
* @param {AppBarModel} options Accepts the AppBar model properties to initiate the rendering
|
|
17411
|
+
* @param {string | HTMLElement} element Accepts the DOM element reference
|
|
17412
|
+
*/
|
|
17413
|
+
function AppBar(options, element) {
|
|
17414
|
+
return _super.call(this, options, element) || this;
|
|
17415
|
+
}
|
|
17416
|
+
/**
|
|
17417
|
+
* Removes the control from the DOM and also removes all its related events.
|
|
17418
|
+
*
|
|
17419
|
+
* @returns {void}
|
|
17420
|
+
*/
|
|
17421
|
+
AppBar.prototype.destroy = function () {
|
|
17422
|
+
_super.prototype.destroy.call(this);
|
|
17423
|
+
this.element.classList.remove(CLS_APPBAR);
|
|
17424
|
+
this.element.removeAttribute('style');
|
|
17425
|
+
this.element.removeAttribute('role');
|
|
17426
|
+
};
|
|
17427
|
+
AppBar.prototype.getModuleName = function () {
|
|
17428
|
+
return 'appbar';
|
|
17429
|
+
};
|
|
17430
|
+
AppBar.prototype.getPersistData = function () {
|
|
17431
|
+
return this.addOnPersist([]);
|
|
17432
|
+
};
|
|
17433
|
+
AppBar.prototype.preRender = function () {
|
|
17434
|
+
// pre render code
|
|
17435
|
+
};
|
|
17436
|
+
AppBar.prototype.render = function () {
|
|
17437
|
+
if (this.element.tagName !== 'HEADER') {
|
|
17438
|
+
this.element.setAttribute('role', 'header');
|
|
17439
|
+
}
|
|
17440
|
+
if (this.cssClass) {
|
|
17441
|
+
addClass([this.element], this.cssClass.split(' '));
|
|
17442
|
+
}
|
|
17443
|
+
if (this.position === 'Bottom') {
|
|
17444
|
+
this.element.classList.add(CLS_HORIZONTAL_BOTTOM);
|
|
17445
|
+
}
|
|
17446
|
+
if (this.isSticky) {
|
|
17447
|
+
this.element.classList.add(CLS_STICKY);
|
|
17448
|
+
}
|
|
17449
|
+
if (this.enableRtl) {
|
|
17450
|
+
this.element.classList.add(CLS_RTL$6);
|
|
17451
|
+
}
|
|
17452
|
+
this.setHeightMode();
|
|
17453
|
+
this.setColorMode();
|
|
17454
|
+
if (!isNullOrUndefined(this.htmlAttributes)) {
|
|
17455
|
+
this.setHtmlAttributes(this.htmlAttributes, this.element);
|
|
17456
|
+
}
|
|
17457
|
+
};
|
|
17458
|
+
AppBar.prototype.onPropertyChanged = function (newProp, oldProp) {
|
|
17459
|
+
for (var _i = 0, _a = Object.keys(newProp); _i < _a.length; _i++) {
|
|
17460
|
+
var prop = _a[_i];
|
|
17461
|
+
switch (prop) {
|
|
17462
|
+
case 'mode':
|
|
17463
|
+
removeClass([this.element], [CLS_DENSE, CLS_PROMINENT]);
|
|
17464
|
+
this.setHeightMode();
|
|
17465
|
+
break;
|
|
17466
|
+
case 'position':
|
|
17467
|
+
if (this.position === 'Bottom') {
|
|
17468
|
+
addClass([this.element], CLS_HORIZONTAL_BOTTOM);
|
|
17469
|
+
}
|
|
17470
|
+
else {
|
|
17471
|
+
removeClass([this.element], CLS_HORIZONTAL_BOTTOM);
|
|
17472
|
+
}
|
|
17473
|
+
break;
|
|
17474
|
+
case 'cssClass':
|
|
17475
|
+
if (oldProp.cssClass) {
|
|
17476
|
+
removeClass([this.element], oldProp.cssClass.split(' '));
|
|
17477
|
+
}
|
|
17478
|
+
if (newProp.cssClass) {
|
|
17479
|
+
addClass([this.element], newProp.cssClass.split(' '));
|
|
17480
|
+
}
|
|
17481
|
+
break;
|
|
17482
|
+
case 'isSticky':
|
|
17483
|
+
if (this.isSticky) {
|
|
17484
|
+
addClass([this.element], CLS_STICKY);
|
|
17485
|
+
}
|
|
17486
|
+
else {
|
|
17487
|
+
removeClass([this.element], CLS_STICKY);
|
|
17488
|
+
}
|
|
17489
|
+
break;
|
|
17490
|
+
case 'htmlAttributes':
|
|
17491
|
+
if (!isNullOrUndefined(this.htmlAttributes)) {
|
|
17492
|
+
if (!isNullOrUndefined(oldProp.htmlAttributes)) {
|
|
17493
|
+
var keys = Object.keys(oldProp.htmlAttributes);
|
|
17494
|
+
for (var _b = 0, keys_1 = keys; _b < keys_1.length; _b++) {
|
|
17495
|
+
var key = keys_1[_b];
|
|
17496
|
+
if (key === 'class') {
|
|
17497
|
+
removeClass([this.element], oldProp.htmlAttributes[key]);
|
|
17498
|
+
}
|
|
17499
|
+
else {
|
|
17500
|
+
this.element.removeAttribute(key);
|
|
17501
|
+
}
|
|
17502
|
+
}
|
|
17503
|
+
}
|
|
17504
|
+
this.setHtmlAttributes(newProp.htmlAttributes, this.element);
|
|
17505
|
+
}
|
|
17506
|
+
break;
|
|
17507
|
+
case 'colorMode':
|
|
17508
|
+
removeClass([this.element], [CLS_DARK, CLS_PRIMARY, CLS_INHERIT, CLS_LIGHT]);
|
|
17509
|
+
this.setColorMode();
|
|
17510
|
+
break;
|
|
17511
|
+
case 'enableRtl':
|
|
17512
|
+
if (this.enableRtl) {
|
|
17513
|
+
addClass([this.element], CLS_RTL$6);
|
|
17514
|
+
}
|
|
17515
|
+
else {
|
|
17516
|
+
removeClass([this.element], CLS_RTL$6);
|
|
17517
|
+
}
|
|
17518
|
+
break;
|
|
17519
|
+
}
|
|
17520
|
+
}
|
|
17521
|
+
};
|
|
17522
|
+
AppBar.prototype.setHtmlAttributes = function (attribute, element) {
|
|
17523
|
+
var keys = Object.keys(attribute);
|
|
17524
|
+
for (var _i = 0, keys_2 = keys; _i < keys_2.length; _i++) {
|
|
17525
|
+
var key = keys_2[_i];
|
|
17526
|
+
if (key === 'class') {
|
|
17527
|
+
addClass([element], attribute[key]);
|
|
17528
|
+
}
|
|
17529
|
+
else {
|
|
17530
|
+
element.setAttribute(key, attribute[key]);
|
|
17531
|
+
}
|
|
17532
|
+
}
|
|
17533
|
+
};
|
|
17534
|
+
AppBar.prototype.setHeightMode = function () {
|
|
17535
|
+
if (this.mode === 'Prominent') {
|
|
17536
|
+
this.element.classList.add(CLS_PROMINENT);
|
|
17537
|
+
}
|
|
17538
|
+
else if (this.mode === 'Dense') {
|
|
17539
|
+
this.element.classList.add(CLS_DENSE);
|
|
17540
|
+
}
|
|
17541
|
+
};
|
|
17542
|
+
AppBar.prototype.setColorMode = function () {
|
|
17543
|
+
switch (this.colorMode) {
|
|
17544
|
+
case 'Light':
|
|
17545
|
+
this.element.classList.add(CLS_LIGHT);
|
|
17546
|
+
break;
|
|
17547
|
+
case 'Dark':
|
|
17548
|
+
this.element.classList.add(CLS_DARK);
|
|
17549
|
+
break;
|
|
17550
|
+
case 'Primary':
|
|
17551
|
+
this.element.classList.add(CLS_PRIMARY);
|
|
17552
|
+
break;
|
|
17553
|
+
case 'Inherit':
|
|
17554
|
+
this.element.classList.add(CLS_INHERIT);
|
|
17555
|
+
break;
|
|
17556
|
+
}
|
|
17557
|
+
};
|
|
17558
|
+
__decorate$12([
|
|
17559
|
+
Property('Regular')
|
|
17560
|
+
], AppBar.prototype, "mode", void 0);
|
|
17561
|
+
__decorate$12([
|
|
17562
|
+
Property('Top')
|
|
17563
|
+
], AppBar.prototype, "position", void 0);
|
|
17564
|
+
__decorate$12([
|
|
17565
|
+
Property()
|
|
17566
|
+
], AppBar.prototype, "cssClass", void 0);
|
|
17567
|
+
__decorate$12([
|
|
17568
|
+
Property(false)
|
|
17569
|
+
], AppBar.prototype, "isSticky", void 0);
|
|
17570
|
+
__decorate$12([
|
|
17571
|
+
Property()
|
|
17572
|
+
], AppBar.prototype, "htmlAttributes", void 0);
|
|
17573
|
+
__decorate$12([
|
|
17574
|
+
Property('Light')
|
|
17575
|
+
], AppBar.prototype, "colorMode", void 0);
|
|
17576
|
+
__decorate$12([
|
|
17577
|
+
Event()
|
|
17578
|
+
], AppBar.prototype, "created", void 0);
|
|
17579
|
+
__decorate$12([
|
|
17580
|
+
Event()
|
|
17581
|
+
], AppBar.prototype, "destroyed", void 0);
|
|
17582
|
+
AppBar = __decorate$12([
|
|
17583
|
+
NotifyPropertyChanges
|
|
17584
|
+
], AppBar);
|
|
17585
|
+
return AppBar;
|
|
17586
|
+
}(Component));
|
|
17587
|
+
|
|
17588
|
+
/** AppBar export modules */
|
|
17589
|
+
|
|
17261
17590
|
/**
|
|
17262
17591
|
* Navigation all modules
|
|
17263
17592
|
*/
|
|
17264
17593
|
|
|
17265
|
-
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 };
|
|
17594
|
+
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 };
|
|
17266
17595
|
//# sourceMappingURL=ej2-navigations.es5.js.map
|