@syncfusion/ej2-navigations 20.2.50 → 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 +21 -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 +330 -30
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +349 -30
- 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 +21 -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
package/styles/bootstrap.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/* !componenticons */
|
|
2
2
|
.e-pager .e-icon-last::before,
|
|
3
3
|
.e-grid-menu .e-icon-last::before {
|
|
4
4
|
content: "\e235";
|
|
@@ -224,6 +224,8 @@
|
|
|
224
224
|
padding: 8px;
|
|
225
225
|
white-space: normal;
|
|
226
226
|
width: 100%;
|
|
227
|
+
/* stylelint-disable */
|
|
228
|
+
/* stylelint-enable */
|
|
227
229
|
}
|
|
228
230
|
.e-pager [class^=e-] {
|
|
229
231
|
box-sizing: border-box;
|
|
@@ -282,11 +284,11 @@
|
|
|
282
284
|
.e-pager .e-currentitem {
|
|
283
285
|
border-radius: 4px;
|
|
284
286
|
cursor: pointer;
|
|
285
|
-
padding:
|
|
287
|
+
padding: 11.5px 11px 10px 11px;
|
|
286
288
|
text-decoration: none;
|
|
287
289
|
}
|
|
288
290
|
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
289
|
-
padding:
|
|
291
|
+
padding: 11.5px 11px 10px 11px;
|
|
290
292
|
}
|
|
291
293
|
.e-pager .e-currentitem {
|
|
292
294
|
font-style: normal;
|
|
@@ -317,7 +319,7 @@
|
|
|
317
319
|
margin-right: 0;
|
|
318
320
|
margin-top: 0;
|
|
319
321
|
min-width: 26px;
|
|
320
|
-
padding:
|
|
322
|
+
padding: 11.5px 10px 12px 8px;
|
|
321
323
|
}
|
|
322
324
|
.e-pager .e-pagercontainer .e-lastpage,
|
|
323
325
|
.e-pager .e-pagercontainer .e-lastpagedisabled {
|
|
@@ -350,10 +352,10 @@
|
|
|
350
352
|
margin: 0 0 -4px;
|
|
351
353
|
overflow: hidden;
|
|
352
354
|
}
|
|
353
|
-
.e-pager .e-lastpage:
|
|
355
|
+
.e-pager .e-lastpage:hover {
|
|
354
356
|
border-radius: 0 4px 4px 0;
|
|
355
357
|
}
|
|
356
|
-
.e-pager .e-firstpage:
|
|
358
|
+
.e-pager .e-firstpage:hover {
|
|
357
359
|
border-radius: 4px 0 0 4px;
|
|
358
360
|
}
|
|
359
361
|
.e-pager .e-pagermessage,
|
|
@@ -388,12 +390,12 @@
|
|
|
388
390
|
font-size: 16px;
|
|
389
391
|
font-weight: bold;
|
|
390
392
|
letter-spacing: 0;
|
|
391
|
-
padding: 8px
|
|
393
|
+
padding: 8px 8px 9.5px 8px;
|
|
392
394
|
}
|
|
393
395
|
.e-pager .e-np.e-focused,
|
|
394
396
|
.e-pager .e-pp.e-focused {
|
|
395
397
|
line-height: 1;
|
|
396
|
-
padding: 8px
|
|
398
|
+
padding: 8px 8px 9.5px 8px;
|
|
397
399
|
}
|
|
398
400
|
@media (max-width: 769px) {
|
|
399
401
|
.e-pager {
|
|
@@ -811,8 +813,6 @@
|
|
|
811
813
|
display: inline-block;
|
|
812
814
|
height: inherit;
|
|
813
815
|
position: relative;
|
|
814
|
-
-ms-touch-action: none;
|
|
815
|
-
touch-action: none;
|
|
816
816
|
}
|
|
817
817
|
.e-hscroll .e-hscroll-content > * {
|
|
818
818
|
pointer-events: auto;
|
|
@@ -1026,8 +1026,6 @@
|
|
|
1026
1026
|
display: inline-block;
|
|
1027
1027
|
height: auto;
|
|
1028
1028
|
position: relative;
|
|
1029
|
-
-ms-touch-action: none;
|
|
1030
|
-
touch-action: none;
|
|
1031
1029
|
width: 100%;
|
|
1032
1030
|
}
|
|
1033
1031
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1152,6 +1150,7 @@
|
|
|
1152
1150
|
}
|
|
1153
1151
|
|
|
1154
1152
|
/*! toolbar layout */
|
|
1153
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1155
1154
|
.e-bigger .e-toolbar,
|
|
1156
1155
|
.e-toolbar.e-bigger {
|
|
1157
1156
|
height: 50px;
|
|
@@ -1517,8 +1516,6 @@
|
|
|
1517
1516
|
height: 40px;
|
|
1518
1517
|
min-height: 40px;
|
|
1519
1518
|
position: relative;
|
|
1520
|
-
-ms-touch-action: none;
|
|
1521
|
-
touch-action: none;
|
|
1522
1519
|
-webkit-user-select: none;
|
|
1523
1520
|
-ms-user-select: none;
|
|
1524
1521
|
user-select: none;
|
|
@@ -1962,6 +1959,10 @@
|
|
|
1962
1959
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1963
1960
|
margin-right: 3px;
|
|
1964
1961
|
}
|
|
1962
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
1963
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
1964
|
+
touch-action: pan-y pinch-zoom;
|
|
1965
|
+
}
|
|
1965
1966
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1966
1967
|
margin-right: 3px;
|
|
1967
1968
|
}
|
|
@@ -2084,6 +2085,10 @@
|
|
|
2084
2085
|
bottom: auto;
|
|
2085
2086
|
top: 0;
|
|
2086
2087
|
}
|
|
2088
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2089
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2090
|
+
touch-action: pan-x pinch-zoom;
|
|
2091
|
+
}
|
|
2087
2092
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2088
2093
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2089
2094
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2133,6 +2138,7 @@
|
|
|
2133
2138
|
}
|
|
2134
2139
|
|
|
2135
2140
|
/*! toolbar theme */
|
|
2141
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2136
2142
|
.e-toolbar {
|
|
2137
2143
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2138
2144
|
background: #f8f8f8;
|
|
@@ -2567,6 +2573,7 @@
|
|
|
2567
2573
|
}
|
|
2568
2574
|
|
|
2569
2575
|
/*! accordion theme */
|
|
2576
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2570
2577
|
.e-accordion {
|
|
2571
2578
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2572
2579
|
background: #fff;
|
|
@@ -2673,7 +2680,8 @@
|
|
|
2673
2680
|
padding: 0;
|
|
2674
2681
|
position: relative;
|
|
2675
2682
|
}
|
|
2676
|
-
.e-carousel .e-carousel-items
|
|
2683
|
+
.e-carousel .e-carousel-items,
|
|
2684
|
+
.e-carousel .e-carousel-slide-container {
|
|
2677
2685
|
height: 100%;
|
|
2678
2686
|
margin: 0;
|
|
2679
2687
|
overflow: hidden;
|
|
@@ -2681,7 +2689,41 @@
|
|
|
2681
2689
|
position: relative;
|
|
2682
2690
|
width: 100%;
|
|
2683
2691
|
}
|
|
2684
|
-
.e-carousel.e-
|
|
2692
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2693
|
+
padding: 0 100px;
|
|
2694
|
+
}
|
|
2695
|
+
@media screen and (max-width: 480px) {
|
|
2696
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2697
|
+
padding: 0 75px;
|
|
2698
|
+
}
|
|
2699
|
+
}
|
|
2700
|
+
@media screen and (max-width: 320px) {
|
|
2701
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2702
|
+
padding: 0 50px;
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2706
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2707
|
+
display: -ms-flexbox;
|
|
2708
|
+
display: flex;
|
|
2709
|
+
-ms-flex-direction: row;
|
|
2710
|
+
flex-direction: row;
|
|
2711
|
+
transition-property: transform;
|
|
2712
|
+
transition-duration: 0.6s;
|
|
2713
|
+
transition-timing-function: ease-in-out;
|
|
2714
|
+
}
|
|
2715
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2716
|
+
height: 100%;
|
|
2717
|
+
overflow: hidden;
|
|
2718
|
+
padding: 0;
|
|
2719
|
+
position: relative;
|
|
2720
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2721
|
+
}
|
|
2722
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2723
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2724
|
+
transition: transform 0.6s ease-in-out;
|
|
2725
|
+
}
|
|
2726
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2685
2727
|
backface-visibility: hidden;
|
|
2686
2728
|
display: none;
|
|
2687
2729
|
float: left;
|
|
@@ -2691,16 +2733,16 @@
|
|
|
2691
2733
|
transition: transform 0.6s ease-in-out;
|
|
2692
2734
|
width: 100%;
|
|
2693
2735
|
}
|
|
2694
|
-
.e-carousel.e-carousel-slide-animation .e-carousel-item.e-prev, .e-carousel.e-carousel-slide-animation .e-carousel-item.e-next, .e-carousel.e-carousel-slide-animation .e-carousel-item.e-active {
|
|
2736
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-prev, .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-next, .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2695
2737
|
display: block;
|
|
2696
2738
|
}
|
|
2697
|
-
.e-carousel.e-carousel-slide-animation .e-carousel-item.e-next:not(.e-transition-start), .e-carousel.e-carousel-slide-animation .e-carousel-item.e-active.e-transition-end {
|
|
2739
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-next:not(.e-transition-start), .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active.e-transition-end {
|
|
2698
2740
|
transform: translateX(100%);
|
|
2699
2741
|
}
|
|
2700
|
-
.e-carousel.e-carousel-slide-animation .e-carousel-item.e-prev:not(.e-transition-end), .e-carousel.e-carousel-slide-animation .e-carousel-item.e-active.e-transition-start {
|
|
2742
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-prev:not(.e-transition-end), .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active.e-transition-start {
|
|
2701
2743
|
transform: translateX(-100%);
|
|
2702
2744
|
}
|
|
2703
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2745
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2704
2746
|
backface-visibility: hidden;
|
|
2705
2747
|
display: block;
|
|
2706
2748
|
float: left;
|
|
@@ -2712,19 +2754,19 @@
|
|
|
2712
2754
|
width: 100%;
|
|
2713
2755
|
z-index: 0;
|
|
2714
2756
|
}
|
|
2715
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2757
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2716
2758
|
opacity: 1;
|
|
2717
2759
|
z-index: 1;
|
|
2718
2760
|
}
|
|
2719
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2761
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2720
2762
|
display: none;
|
|
2721
2763
|
height: 100%;
|
|
2722
2764
|
width: 100%;
|
|
2723
2765
|
}
|
|
2724
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2766
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2725
2767
|
display: block;
|
|
2726
2768
|
}
|
|
2727
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2769
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2728
2770
|
display: block;
|
|
2729
2771
|
height: 100%;
|
|
2730
2772
|
left: 0;
|
|
@@ -2734,7 +2776,7 @@
|
|
|
2734
2776
|
top: 0;
|
|
2735
2777
|
width: 100%;
|
|
2736
2778
|
}
|
|
2737
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2779
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2738
2780
|
opacity: 1;
|
|
2739
2781
|
pointer-events: visible;
|
|
2740
2782
|
}
|
|
@@ -5111,7 +5153,7 @@
|
|
|
5111
5153
|
right: -15px;
|
|
5112
5154
|
}
|
|
5113
5155
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5114
|
-
top: initial !important;
|
|
5156
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5115
5157
|
}
|
|
5116
5158
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5117
5159
|
float: left;
|
|
@@ -6798,7 +6840,9 @@
|
|
|
6798
6840
|
color: #317ab9;
|
|
6799
6841
|
}
|
|
6800
6842
|
|
|
6843
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6801
6844
|
/*! TreeView's bootstrap theme wise override definitions and variables */
|
|
6845
|
+
/* stylelint-disable */
|
|
6802
6846
|
/*! TreeView icons */
|
|
6803
6847
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6804
6848
|
content: "\e230";
|
|
@@ -6822,6 +6866,7 @@
|
|
|
6822
6866
|
content: "\e22a";
|
|
6823
6867
|
}
|
|
6824
6868
|
|
|
6869
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6825
6870
|
@keyframes rotation {
|
|
6826
6871
|
from {
|
|
6827
6872
|
transform: rotate(0deg);
|
|
@@ -7350,6 +7395,8 @@
|
|
|
7350
7395
|
pointer-events: auto;
|
|
7351
7396
|
}
|
|
7352
7397
|
|
|
7398
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7399
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7353
7400
|
.e-bigger .e-treeview .e-list-text,
|
|
7354
7401
|
.e-treeview.e-bigger .e-list-text {
|
|
7355
7402
|
font-size: 15px;
|
|
@@ -7362,6 +7409,7 @@
|
|
|
7362
7409
|
}
|
|
7363
7410
|
.e-treeview {
|
|
7364
7411
|
-webkit-tap-highlight-color: transparent;
|
|
7412
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7365
7413
|
}
|
|
7366
7414
|
.e-treeview .e-text-content,
|
|
7367
7415
|
.e-treeview .e-fullrow {
|
|
@@ -7534,6 +7582,7 @@
|
|
|
7534
7582
|
border-left-color: transparent;
|
|
7535
7583
|
}
|
|
7536
7584
|
|
|
7585
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7537
7586
|
ejs-sidebar {
|
|
7538
7587
|
display: none;
|
|
7539
7588
|
}
|
|
@@ -7543,6 +7592,7 @@ ejs-sidebar {
|
|
|
7543
7592
|
}
|
|
7544
7593
|
|
|
7545
7594
|
.e-sidebar {
|
|
7595
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7546
7596
|
-webkit-tap-highlight-color: transparent;
|
|
7547
7597
|
background: #fff;
|
|
7548
7598
|
height: 100%;
|
|
@@ -7656,10 +7706,12 @@ ejs-sidebar {
|
|
|
7656
7706
|
touch-action: none;
|
|
7657
7707
|
}
|
|
7658
7708
|
|
|
7709
|
+
/* stylelint-disable */
|
|
7659
7710
|
.e-sidebar-overflow {
|
|
7660
7711
|
overflow-x: hidden !important;
|
|
7661
7712
|
}
|
|
7662
7713
|
|
|
7714
|
+
/* stylelint-enable */
|
|
7663
7715
|
.e-sidebar-overlay {
|
|
7664
7716
|
background-color: rgba(0, 0, 0, 0.6);
|
|
7665
7717
|
height: 100%;
|
|
@@ -8372,6 +8424,8 @@ ejs-sidebar {
|
|
|
8372
8424
|
border: 1px solid #ccc;
|
|
8373
8425
|
overflow-y: auto;
|
|
8374
8426
|
width: 100%;
|
|
8427
|
+
/* stylelint-disable */
|
|
8428
|
+
/* stylelint-enable */
|
|
8375
8429
|
}
|
|
8376
8430
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8377
8431
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8733,6 +8787,26 @@ ejs-sidebar {
|
|
|
8733
8787
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8734
8788
|
background: #e6e6e6;
|
|
8735
8789
|
}
|
|
8790
|
+
.e-menu-wrapper.e-inherit,
|
|
8791
|
+
.e-menu-container.e-inherit {
|
|
8792
|
+
border: 0;
|
|
8793
|
+
}
|
|
8794
|
+
.e-menu-wrapper.e-inherit .e-menu, .e-menu-wrapper.e-inherit .e-menu .e-menu-item .e-menu-icon, .e-menu-wrapper.e-inherit .e-menu .e-menu-item .e-caret,
|
|
8795
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8796
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8797
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8798
|
+
color: inherit;
|
|
8799
|
+
}
|
|
8800
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8801
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8802
|
+
background: inherit;
|
|
8803
|
+
}
|
|
8804
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8805
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8806
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8807
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8808
|
+
color: inherit;
|
|
8809
|
+
}
|
|
8736
8810
|
|
|
8737
8811
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8738
8812
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9141,4 +9215,249 @@ ejs-sidebar {
|
|
|
9141
9215
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9142
9216
|
background-color: #f5f5f5;
|
|
9143
9217
|
color: #555;
|
|
9218
|
+
}
|
|
9219
|
+
|
|
9220
|
+
/*! AppBar component bootstrap theme definitions and variables */
|
|
9221
|
+
/*! appbar component styles */
|
|
9222
|
+
.e-bigger .e-appbar,
|
|
9223
|
+
.e-appbar.e-bigger {
|
|
9224
|
+
height: 56px;
|
|
9225
|
+
font-size: 16px;
|
|
9226
|
+
}
|
|
9227
|
+
.e-bigger .e-appbar.e-dense,
|
|
9228
|
+
.e-appbar.e-bigger.e-dense {
|
|
9229
|
+
height: 48px;
|
|
9230
|
+
}
|
|
9231
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9232
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9233
|
+
height: 112px;
|
|
9234
|
+
}
|
|
9235
|
+
|
|
9236
|
+
.e-appbar {
|
|
9237
|
+
display: -ms-flexbox;
|
|
9238
|
+
display: flex;
|
|
9239
|
+
width: 100%;
|
|
9240
|
+
height: 48px;
|
|
9241
|
+
-ms-flex-negative: 0;
|
|
9242
|
+
flex-shrink: 0;
|
|
9243
|
+
-ms-flex-direction: row;
|
|
9244
|
+
flex-direction: row;
|
|
9245
|
+
position: relative;
|
|
9246
|
+
-ms-flex-align: center;
|
|
9247
|
+
align-items: center;
|
|
9248
|
+
padding: 8px;
|
|
9249
|
+
overflow: hidden;
|
|
9250
|
+
font-size: 14px;
|
|
9251
|
+
}
|
|
9252
|
+
.e-appbar > div:first-child {
|
|
9253
|
+
display: -ms-flexbox;
|
|
9254
|
+
display: flex;
|
|
9255
|
+
-ms-flex-align: center;
|
|
9256
|
+
align-items: center;
|
|
9257
|
+
width: 100%;
|
|
9258
|
+
height: 100%;
|
|
9259
|
+
}
|
|
9260
|
+
.e-appbar.e-sticky {
|
|
9261
|
+
position: sticky;
|
|
9262
|
+
top: 0;
|
|
9263
|
+
z-index: 1000;
|
|
9264
|
+
}
|
|
9265
|
+
.e-appbar.e-prominent {
|
|
9266
|
+
height: 94px;
|
|
9267
|
+
-ms-flex-align: start;
|
|
9268
|
+
align-items: flex-start;
|
|
9269
|
+
}
|
|
9270
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9271
|
+
-ms-flex-align: start;
|
|
9272
|
+
align-items: flex-start;
|
|
9273
|
+
}
|
|
9274
|
+
.e-appbar.e-dense {
|
|
9275
|
+
height: 40px;
|
|
9276
|
+
}
|
|
9277
|
+
.e-appbar.e-horizontal-bottom {
|
|
9278
|
+
position: absolute;
|
|
9279
|
+
bottom: 0;
|
|
9280
|
+
right: 0;
|
|
9281
|
+
left: 0;
|
|
9282
|
+
}
|
|
9283
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9284
|
+
position: fixed;
|
|
9285
|
+
top: auto;
|
|
9286
|
+
}
|
|
9287
|
+
.e-appbar .e-appbar-separator {
|
|
9288
|
+
height: 32px;
|
|
9289
|
+
}
|
|
9290
|
+
.e-appbar .e-appbar-spacer {
|
|
9291
|
+
-ms-flex-positive: 1;
|
|
9292
|
+
flex-grow: 1;
|
|
9293
|
+
}
|
|
9294
|
+
|
|
9295
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9296
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9297
|
+
overflow: hidden;
|
|
9298
|
+
}
|
|
9299
|
+
|
|
9300
|
+
/*! appbar component theme */
|
|
9301
|
+
.e-appbar {
|
|
9302
|
+
box-shadow: none;
|
|
9303
|
+
}
|
|
9304
|
+
.e-appbar.e-light {
|
|
9305
|
+
background: #f8f8f8;
|
|
9306
|
+
color: #555;
|
|
9307
|
+
border-color: #e6e6e6;
|
|
9308
|
+
border: none;
|
|
9309
|
+
}
|
|
9310
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9311
|
+
border-left: 1px solid #555;
|
|
9312
|
+
}
|
|
9313
|
+
.e-appbar.e-light .e-btn.e-inherit:hover, .e-appbar.e-light .e-btn.e-inherit:focus, .e-appbar.e-light .e-btn.e-inherit:active, .e-appbar.e-light .e-btn.e-inherit.e-active,
|
|
9314
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9315
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9316
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9317
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9318
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9319
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9320
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9321
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9322
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9323
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9324
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9325
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9326
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9327
|
+
}
|
|
9328
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9329
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9330
|
+
background: #f8f8f8;
|
|
9331
|
+
color: #555;
|
|
9332
|
+
border-color: #e6e6e6;
|
|
9333
|
+
box-shadow: none;
|
|
9334
|
+
}
|
|
9335
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
9336
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9337
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9338
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9339
|
+
}
|
|
9340
|
+
.e-appbar.e-dark {
|
|
9341
|
+
background: #222;
|
|
9342
|
+
color: #e6e6e6;
|
|
9343
|
+
border-color: #222;
|
|
9344
|
+
}
|
|
9345
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9346
|
+
border-left: 1px solid #e6e6e6;
|
|
9347
|
+
}
|
|
9348
|
+
.e-appbar.e-dark .e-btn.e-inherit:hover, .e-appbar.e-dark .e-btn.e-inherit:focus, .e-appbar.e-dark .e-btn.e-inherit:active, .e-appbar.e-dark .e-btn.e-inherit.e-active,
|
|
9349
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9350
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9351
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9352
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9353
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9354
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9355
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9356
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9357
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9358
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9359
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9360
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9361
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9362
|
+
}
|
|
9363
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9364
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9365
|
+
background: #222;
|
|
9366
|
+
color: #e6e6e6;
|
|
9367
|
+
border-color: #222;
|
|
9368
|
+
box-shadow: none;
|
|
9369
|
+
}
|
|
9370
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-dark .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
9371
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9372
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9373
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9374
|
+
}
|
|
9375
|
+
.e-appbar.e-primary {
|
|
9376
|
+
background: #317ab9;
|
|
9377
|
+
color: #fff;
|
|
9378
|
+
border-color: #317ab9;
|
|
9379
|
+
}
|
|
9380
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9381
|
+
border-left: 1px solid #fff;
|
|
9382
|
+
}
|
|
9383
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9384
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9385
|
+
background: #317ab9;
|
|
9386
|
+
color: #fff;
|
|
9387
|
+
border-color: #317ab9;
|
|
9388
|
+
box-shadow: none;
|
|
9389
|
+
}
|
|
9390
|
+
.e-appbar.e-inherit {
|
|
9391
|
+
background: inherit;
|
|
9392
|
+
color: inherit;
|
|
9393
|
+
border-color: inherit;
|
|
9394
|
+
border: 1px solid;
|
|
9395
|
+
}
|
|
9396
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9397
|
+
border-left: 1px solid;
|
|
9398
|
+
}
|
|
9399
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9400
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9401
|
+
background: inherit;
|
|
9402
|
+
color: inherit;
|
|
9403
|
+
border-color: inherit;
|
|
9404
|
+
box-shadow: none;
|
|
9405
|
+
}
|
|
9406
|
+
.e-appbar.e-horizontal-bottom {
|
|
9407
|
+
box-shadow: none;
|
|
9408
|
+
}
|
|
9409
|
+
|
|
9410
|
+
.e-light.e-inherit.e-input-group, .e-light.e-inherit.e-input-group.e-control-wrapper, .e-light.e-inherit.e-float-input, .e-light.e-inherit.e-float-input.e-input-group, .e-light.e-inherit.e-float-input.e-control-wrapper, .e-light.e-inherit.e-float-input.e-input-group.e-control-wrapper, .e-light.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover, .e-light.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9411
|
+
background: #f8f8f8;
|
|
9412
|
+
color: #555;
|
|
9413
|
+
}
|
|
9414
|
+
|
|
9415
|
+
.e-dark.e-inherit.e-input-group, .e-dark.e-inherit.e-input-group.e-control-wrapper, .e-dark.e-inherit.e-float-input, .e-dark.e-inherit.e-float-input.e-input-group, .e-dark.e-inherit.e-float-input.e-control-wrapper, .e-dark.e-inherit.e-float-input.e-input-group.e-control-wrapper, .e-dark.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover, .e-dark.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9416
|
+
background: #222;
|
|
9417
|
+
color: #e6e6e6;
|
|
9418
|
+
}
|
|
9419
|
+
|
|
9420
|
+
.e-primary.e-inherit.e-input-group, .e-primary.e-inherit.e-input-group.e-control-wrapper, .e-primary.e-inherit.e-float-input, .e-primary.e-inherit.e-float-input.e-input-group, .e-primary.e-inherit.e-float-input.e-control-wrapper, .e-primary.e-inherit.e-float-input.e-input-group.e-control-wrapper, .e-primary.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover, .e-primary.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9421
|
+
background: #317ab9;
|
|
9422
|
+
color: #fff;
|
|
9423
|
+
}
|
|
9424
|
+
|
|
9425
|
+
.e-inherit.e-input-group,
|
|
9426
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9427
|
+
.e-inherit.e-float-input,
|
|
9428
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9429
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9430
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9431
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9432
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9433
|
+
color: inherit;
|
|
9434
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9435
|
+
}
|
|
9436
|
+
|
|
9437
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9438
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9439
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9440
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9441
|
+
box-shadow: none;
|
|
9442
|
+
}
|
|
9443
|
+
|
|
9444
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9445
|
+
color: inherit;
|
|
9446
|
+
opacity: 0.8;
|
|
9447
|
+
}
|
|
9448
|
+
|
|
9449
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9450
|
+
color: inherit;
|
|
9451
|
+
opacity: 0.8;
|
|
9452
|
+
}
|
|
9453
|
+
|
|
9454
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9455
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9456
|
+
border: none;
|
|
9457
|
+
color: inherit;
|
|
9458
|
+
}
|
|
9459
|
+
|
|
9460
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9461
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9462
|
+
color: inherit;
|
|
9144
9463
|
}
|
package/styles/bootstrap.scss
CHANGED