@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/fabric.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/* !component icons */
|
|
2
2
|
.e-pager .e-icon-last::before,
|
|
3
3
|
.e-grid-menu .e-icon-last::before {
|
|
4
4
|
content: "\e938";
|
|
@@ -224,6 +224,8 @@
|
|
|
224
224
|
padding: 13px 0 12px;
|
|
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;
|
|
@@ -350,10 +352,10 @@
|
|
|
350
352
|
margin: 0 6px -3px;
|
|
351
353
|
overflow: hidden;
|
|
352
354
|
}
|
|
353
|
-
.e-pager .e-lastpage:
|
|
355
|
+
.e-pager .e-lastpage:hover {
|
|
354
356
|
border-radius: 0;
|
|
355
357
|
}
|
|
356
|
-
.e-pager .e-firstpage:
|
|
358
|
+
.e-pager .e-firstpage:hover {
|
|
357
359
|
border-radius: 0;
|
|
358
360
|
}
|
|
359
361
|
.e-pager .e-pagermessage,
|
|
@@ -810,8 +812,6 @@
|
|
|
810
812
|
display: inline-block;
|
|
811
813
|
height: inherit;
|
|
812
814
|
position: relative;
|
|
813
|
-
-ms-touch-action: none;
|
|
814
|
-
touch-action: none;
|
|
815
815
|
}
|
|
816
816
|
.e-hscroll .e-hscroll-content > * {
|
|
817
817
|
pointer-events: auto;
|
|
@@ -1025,8 +1025,6 @@
|
|
|
1025
1025
|
display: inline-block;
|
|
1026
1026
|
height: auto;
|
|
1027
1027
|
position: relative;
|
|
1028
|
-
-ms-touch-action: none;
|
|
1029
|
-
touch-action: none;
|
|
1030
1028
|
width: 100%;
|
|
1031
1029
|
}
|
|
1032
1030
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1151,6 +1149,7 @@
|
|
|
1151
1149
|
}
|
|
1152
1150
|
|
|
1153
1151
|
/*! toolbar layout */
|
|
1152
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1154
1153
|
.e-bigger .e-toolbar,
|
|
1155
1154
|
.e-toolbar.e-bigger {
|
|
1156
1155
|
height: 50px;
|
|
@@ -1495,8 +1494,6 @@
|
|
|
1495
1494
|
height: 40px;
|
|
1496
1495
|
min-height: 40px;
|
|
1497
1496
|
position: relative;
|
|
1498
|
-
-ms-touch-action: none;
|
|
1499
|
-
touch-action: none;
|
|
1500
1497
|
-webkit-user-select: none;
|
|
1501
1498
|
-ms-user-select: none;
|
|
1502
1499
|
user-select: none;
|
|
@@ -1938,6 +1935,10 @@
|
|
|
1938
1935
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1939
1936
|
margin-right: 3px;
|
|
1940
1937
|
}
|
|
1938
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
1939
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
1940
|
+
touch-action: pan-y pinch-zoom;
|
|
1941
|
+
}
|
|
1941
1942
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1942
1943
|
margin-right: 3px;
|
|
1943
1944
|
}
|
|
@@ -2059,6 +2060,10 @@
|
|
|
2059
2060
|
bottom: auto;
|
|
2060
2061
|
top: 0;
|
|
2061
2062
|
}
|
|
2063
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2064
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2065
|
+
touch-action: pan-x pinch-zoom;
|
|
2066
|
+
}
|
|
2062
2067
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2063
2068
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2064
2069
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2108,6 +2113,7 @@
|
|
|
2108
2113
|
}
|
|
2109
2114
|
|
|
2110
2115
|
/*! toolbar theme */
|
|
2116
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2111
2117
|
.e-toolbar {
|
|
2112
2118
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2113
2119
|
background: #fff;
|
|
@@ -2506,6 +2512,7 @@
|
|
|
2506
2512
|
}
|
|
2507
2513
|
|
|
2508
2514
|
/*! accordion theme */
|
|
2515
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2509
2516
|
.e-accordion {
|
|
2510
2517
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2511
2518
|
background: #fff;
|
|
@@ -2627,7 +2634,8 @@
|
|
|
2627
2634
|
padding: 0;
|
|
2628
2635
|
position: relative;
|
|
2629
2636
|
}
|
|
2630
|
-
.e-carousel .e-carousel-items
|
|
2637
|
+
.e-carousel .e-carousel-items,
|
|
2638
|
+
.e-carousel .e-carousel-slide-container {
|
|
2631
2639
|
height: 100%;
|
|
2632
2640
|
margin: 0;
|
|
2633
2641
|
overflow: hidden;
|
|
@@ -2635,7 +2643,41 @@
|
|
|
2635
2643
|
position: relative;
|
|
2636
2644
|
width: 100%;
|
|
2637
2645
|
}
|
|
2638
|
-
.e-carousel.e-
|
|
2646
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2647
|
+
padding: 0 100px;
|
|
2648
|
+
}
|
|
2649
|
+
@media screen and (max-width: 480px) {
|
|
2650
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2651
|
+
padding: 0 75px;
|
|
2652
|
+
}
|
|
2653
|
+
}
|
|
2654
|
+
@media screen and (max-width: 320px) {
|
|
2655
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2656
|
+
padding: 0 50px;
|
|
2657
|
+
}
|
|
2658
|
+
}
|
|
2659
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2660
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2661
|
+
display: -ms-flexbox;
|
|
2662
|
+
display: flex;
|
|
2663
|
+
-ms-flex-direction: row;
|
|
2664
|
+
flex-direction: row;
|
|
2665
|
+
transition-property: transform;
|
|
2666
|
+
transition-duration: 0.6s;
|
|
2667
|
+
transition-timing-function: ease-in-out;
|
|
2668
|
+
}
|
|
2669
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2670
|
+
height: 100%;
|
|
2671
|
+
overflow: hidden;
|
|
2672
|
+
padding: 0;
|
|
2673
|
+
position: relative;
|
|
2674
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2675
|
+
}
|
|
2676
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2677
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2678
|
+
transition: transform 0.6s ease-in-out;
|
|
2679
|
+
}
|
|
2680
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2639
2681
|
backface-visibility: hidden;
|
|
2640
2682
|
display: none;
|
|
2641
2683
|
float: left;
|
|
@@ -2645,16 +2687,16 @@
|
|
|
2645
2687
|
transition: transform 0.6s ease-in-out;
|
|
2646
2688
|
width: 100%;
|
|
2647
2689
|
}
|
|
2648
|
-
.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 {
|
|
2690
|
+
.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 {
|
|
2649
2691
|
display: block;
|
|
2650
2692
|
}
|
|
2651
|
-
.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 {
|
|
2693
|
+
.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 {
|
|
2652
2694
|
transform: translateX(100%);
|
|
2653
2695
|
}
|
|
2654
|
-
.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 {
|
|
2696
|
+
.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 {
|
|
2655
2697
|
transform: translateX(-100%);
|
|
2656
2698
|
}
|
|
2657
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2699
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2658
2700
|
backface-visibility: hidden;
|
|
2659
2701
|
display: block;
|
|
2660
2702
|
float: left;
|
|
@@ -2666,19 +2708,19 @@
|
|
|
2666
2708
|
width: 100%;
|
|
2667
2709
|
z-index: 0;
|
|
2668
2710
|
}
|
|
2669
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2711
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2670
2712
|
opacity: 1;
|
|
2671
2713
|
z-index: 1;
|
|
2672
2714
|
}
|
|
2673
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2715
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2674
2716
|
display: none;
|
|
2675
2717
|
height: 100%;
|
|
2676
2718
|
width: 100%;
|
|
2677
2719
|
}
|
|
2678
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2720
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2679
2721
|
display: block;
|
|
2680
2722
|
}
|
|
2681
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2723
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2682
2724
|
display: block;
|
|
2683
2725
|
height: 100%;
|
|
2684
2726
|
left: 0;
|
|
@@ -2688,7 +2730,7 @@
|
|
|
2688
2730
|
top: 0;
|
|
2689
2731
|
width: 100%;
|
|
2690
2732
|
}
|
|
2691
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2733
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2692
2734
|
opacity: 1;
|
|
2693
2735
|
pointer-events: visible;
|
|
2694
2736
|
}
|
|
@@ -5083,7 +5125,7 @@
|
|
|
5083
5125
|
right: -20px;
|
|
5084
5126
|
}
|
|
5085
5127
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5086
|
-
top: initial !important;
|
|
5128
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5087
5129
|
}
|
|
5088
5130
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5089
5131
|
float: left;
|
|
@@ -6810,7 +6852,9 @@
|
|
|
6810
6852
|
color: #333;
|
|
6811
6853
|
}
|
|
6812
6854
|
|
|
6855
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6813
6856
|
/*! TreeView's fabric theme wise override definitions and variables */
|
|
6857
|
+
/* stylelint-disable */
|
|
6814
6858
|
/*! TreeView icons */
|
|
6815
6859
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6816
6860
|
content: "\e22e";
|
|
@@ -6834,6 +6878,7 @@
|
|
|
6834
6878
|
content: "\e22a";
|
|
6835
6879
|
}
|
|
6836
6880
|
|
|
6881
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6837
6882
|
@keyframes rotation {
|
|
6838
6883
|
from {
|
|
6839
6884
|
transform: rotate(0deg);
|
|
@@ -7362,6 +7407,8 @@
|
|
|
7362
7407
|
pointer-events: auto;
|
|
7363
7408
|
}
|
|
7364
7409
|
|
|
7410
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7411
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7365
7412
|
.e-bigger .e-treeview .e-list-text,
|
|
7366
7413
|
.e-treeview.e-bigger .e-list-text {
|
|
7367
7414
|
font-size: 15px;
|
|
@@ -7374,6 +7421,7 @@
|
|
|
7374
7421
|
}
|
|
7375
7422
|
.e-treeview {
|
|
7376
7423
|
-webkit-tap-highlight-color: transparent;
|
|
7424
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7377
7425
|
}
|
|
7378
7426
|
.e-treeview .e-text-content,
|
|
7379
7427
|
.e-treeview .e-fullrow {
|
|
@@ -7542,6 +7590,7 @@
|
|
|
7542
7590
|
border-left-color: transparent;
|
|
7543
7591
|
}
|
|
7544
7592
|
|
|
7593
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7545
7594
|
ejs-sidebar {
|
|
7546
7595
|
display: none;
|
|
7547
7596
|
}
|
|
@@ -7551,6 +7600,7 @@ ejs-sidebar {
|
|
|
7551
7600
|
}
|
|
7552
7601
|
|
|
7553
7602
|
.e-sidebar {
|
|
7603
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7554
7604
|
-webkit-tap-highlight-color: transparent;
|
|
7555
7605
|
background: #fff;
|
|
7556
7606
|
height: 100%;
|
|
@@ -7664,10 +7714,12 @@ ejs-sidebar {
|
|
|
7664
7714
|
touch-action: none;
|
|
7665
7715
|
}
|
|
7666
7716
|
|
|
7717
|
+
/* stylelint-disable */
|
|
7667
7718
|
.e-sidebar-overflow {
|
|
7668
7719
|
overflow-x: hidden !important;
|
|
7669
7720
|
}
|
|
7670
7721
|
|
|
7722
|
+
/* stylelint-enable */
|
|
7671
7723
|
.e-sidebar-overlay {
|
|
7672
7724
|
background-color: rgba(0, 0, 0, 0.6);
|
|
7673
7725
|
height: 100%;
|
|
@@ -8380,6 +8432,8 @@ ejs-sidebar {
|
|
|
8380
8432
|
border: none;
|
|
8381
8433
|
overflow-y: auto;
|
|
8382
8434
|
width: 100%;
|
|
8435
|
+
/* stylelint-disable */
|
|
8436
|
+
/* stylelint-enable */
|
|
8383
8437
|
}
|
|
8384
8438
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8385
8439
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8741,6 +8795,26 @@ ejs-sidebar {
|
|
|
8741
8795
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8742
8796
|
background: #f4f4f4;
|
|
8743
8797
|
}
|
|
8798
|
+
.e-menu-wrapper.e-inherit,
|
|
8799
|
+
.e-menu-container.e-inherit {
|
|
8800
|
+
border: 0;
|
|
8801
|
+
}
|
|
8802
|
+
.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,
|
|
8803
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8804
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8805
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8806
|
+
color: inherit;
|
|
8807
|
+
}
|
|
8808
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8809
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8810
|
+
background: inherit;
|
|
8811
|
+
}
|
|
8812
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8813
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8814
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8815
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8816
|
+
color: inherit;
|
|
8817
|
+
}
|
|
8744
8818
|
|
|
8745
8819
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8746
8820
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9149,4 +9223,249 @@ ejs-sidebar {
|
|
|
9149
9223
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9150
9224
|
background-color: #f4f4f4;
|
|
9151
9225
|
color: #333;
|
|
9226
|
+
}
|
|
9227
|
+
|
|
9228
|
+
/*! AppBar component fabric theme definitions and variables */
|
|
9229
|
+
/*! appbar component styles */
|
|
9230
|
+
.e-bigger .e-appbar,
|
|
9231
|
+
.e-appbar.e-bigger {
|
|
9232
|
+
height: 56px;
|
|
9233
|
+
font-size: 16px;
|
|
9234
|
+
}
|
|
9235
|
+
.e-bigger .e-appbar.e-dense,
|
|
9236
|
+
.e-appbar.e-bigger.e-dense {
|
|
9237
|
+
height: 48px;
|
|
9238
|
+
}
|
|
9239
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9240
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9241
|
+
height: 112px;
|
|
9242
|
+
}
|
|
9243
|
+
|
|
9244
|
+
.e-appbar {
|
|
9245
|
+
display: -ms-flexbox;
|
|
9246
|
+
display: flex;
|
|
9247
|
+
width: 100%;
|
|
9248
|
+
height: 48px;
|
|
9249
|
+
-ms-flex-negative: 0;
|
|
9250
|
+
flex-shrink: 0;
|
|
9251
|
+
-ms-flex-direction: row;
|
|
9252
|
+
flex-direction: row;
|
|
9253
|
+
position: relative;
|
|
9254
|
+
-ms-flex-align: center;
|
|
9255
|
+
align-items: center;
|
|
9256
|
+
padding: 8px;
|
|
9257
|
+
overflow: hidden;
|
|
9258
|
+
font-size: 14px;
|
|
9259
|
+
}
|
|
9260
|
+
.e-appbar > div:first-child {
|
|
9261
|
+
display: -ms-flexbox;
|
|
9262
|
+
display: flex;
|
|
9263
|
+
-ms-flex-align: center;
|
|
9264
|
+
align-items: center;
|
|
9265
|
+
width: 100%;
|
|
9266
|
+
height: 100%;
|
|
9267
|
+
}
|
|
9268
|
+
.e-appbar.e-sticky {
|
|
9269
|
+
position: sticky;
|
|
9270
|
+
top: 0;
|
|
9271
|
+
z-index: 1000;
|
|
9272
|
+
}
|
|
9273
|
+
.e-appbar.e-prominent {
|
|
9274
|
+
height: 94px;
|
|
9275
|
+
-ms-flex-align: start;
|
|
9276
|
+
align-items: flex-start;
|
|
9277
|
+
}
|
|
9278
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9279
|
+
-ms-flex-align: start;
|
|
9280
|
+
align-items: flex-start;
|
|
9281
|
+
}
|
|
9282
|
+
.e-appbar.e-dense {
|
|
9283
|
+
height: 40px;
|
|
9284
|
+
}
|
|
9285
|
+
.e-appbar.e-horizontal-bottom {
|
|
9286
|
+
position: absolute;
|
|
9287
|
+
bottom: 0;
|
|
9288
|
+
right: 0;
|
|
9289
|
+
left: 0;
|
|
9290
|
+
}
|
|
9291
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9292
|
+
position: fixed;
|
|
9293
|
+
top: auto;
|
|
9294
|
+
}
|
|
9295
|
+
.e-appbar .e-appbar-separator {
|
|
9296
|
+
height: 32px;
|
|
9297
|
+
}
|
|
9298
|
+
.e-appbar .e-appbar-spacer {
|
|
9299
|
+
-ms-flex-positive: 1;
|
|
9300
|
+
flex-grow: 1;
|
|
9301
|
+
}
|
|
9302
|
+
|
|
9303
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9304
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9305
|
+
overflow: hidden;
|
|
9306
|
+
}
|
|
9307
|
+
|
|
9308
|
+
/*! appbar component theme */
|
|
9309
|
+
.e-appbar {
|
|
9310
|
+
box-shadow: none;
|
|
9311
|
+
}
|
|
9312
|
+
.e-appbar.e-light {
|
|
9313
|
+
background: #f4f4f4;
|
|
9314
|
+
color: #333;
|
|
9315
|
+
border-color: #f4f4f4;
|
|
9316
|
+
border: none;
|
|
9317
|
+
}
|
|
9318
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9319
|
+
border-left: 1px solid #333;
|
|
9320
|
+
}
|
|
9321
|
+
.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,
|
|
9322
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9323
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9324
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9325
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9326
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9327
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9328
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9329
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9330
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9331
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9332
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9333
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9334
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9335
|
+
}
|
|
9336
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9337
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9338
|
+
background: #f4f4f4;
|
|
9339
|
+
color: #333;
|
|
9340
|
+
border-color: #f4f4f4;
|
|
9341
|
+
box-shadow: none;
|
|
9342
|
+
}
|
|
9343
|
+
.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,
|
|
9344
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9345
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9346
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9347
|
+
}
|
|
9348
|
+
.e-appbar.e-dark {
|
|
9349
|
+
background: #333;
|
|
9350
|
+
color: #f4f4f4;
|
|
9351
|
+
border-color: #333;
|
|
9352
|
+
}
|
|
9353
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9354
|
+
border-left: 1px solid #f4f4f4;
|
|
9355
|
+
}
|
|
9356
|
+
.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,
|
|
9357
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9358
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9359
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9360
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9361
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9362
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9363
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9364
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9365
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9366
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9367
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9368
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9369
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9370
|
+
}
|
|
9371
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9372
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9373
|
+
background: #333;
|
|
9374
|
+
color: #f4f4f4;
|
|
9375
|
+
border-color: #333;
|
|
9376
|
+
box-shadow: none;
|
|
9377
|
+
}
|
|
9378
|
+
.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,
|
|
9379
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9380
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9381
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9382
|
+
}
|
|
9383
|
+
.e-appbar.e-primary {
|
|
9384
|
+
background: #0078d6;
|
|
9385
|
+
color: #fff;
|
|
9386
|
+
border-color: #0078d6;
|
|
9387
|
+
}
|
|
9388
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9389
|
+
border-left: 1px solid #fff;
|
|
9390
|
+
}
|
|
9391
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9392
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9393
|
+
background: #0078d6;
|
|
9394
|
+
color: #fff;
|
|
9395
|
+
border-color: #0078d6;
|
|
9396
|
+
box-shadow: none;
|
|
9397
|
+
}
|
|
9398
|
+
.e-appbar.e-inherit {
|
|
9399
|
+
background: inherit;
|
|
9400
|
+
color: inherit;
|
|
9401
|
+
border-color: inherit;
|
|
9402
|
+
border: 1px solid;
|
|
9403
|
+
}
|
|
9404
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9405
|
+
border-left: 1px solid;
|
|
9406
|
+
}
|
|
9407
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9408
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9409
|
+
background: inherit;
|
|
9410
|
+
color: inherit;
|
|
9411
|
+
border-color: inherit;
|
|
9412
|
+
box-shadow: none;
|
|
9413
|
+
}
|
|
9414
|
+
.e-appbar.e-horizontal-bottom {
|
|
9415
|
+
box-shadow: none;
|
|
9416
|
+
}
|
|
9417
|
+
|
|
9418
|
+
.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 {
|
|
9419
|
+
background: #f4f4f4;
|
|
9420
|
+
color: #333;
|
|
9421
|
+
}
|
|
9422
|
+
|
|
9423
|
+
.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 {
|
|
9424
|
+
background: #333;
|
|
9425
|
+
color: #f4f4f4;
|
|
9426
|
+
}
|
|
9427
|
+
|
|
9428
|
+
.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 {
|
|
9429
|
+
background: #0078d6;
|
|
9430
|
+
color: #fff;
|
|
9431
|
+
}
|
|
9432
|
+
|
|
9433
|
+
.e-inherit.e-input-group,
|
|
9434
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9435
|
+
.e-inherit.e-float-input,
|
|
9436
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9437
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9438
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9439
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9440
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9441
|
+
color: inherit;
|
|
9442
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9443
|
+
}
|
|
9444
|
+
|
|
9445
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9446
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9447
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9448
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9449
|
+
box-shadow: none;
|
|
9450
|
+
}
|
|
9451
|
+
|
|
9452
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9453
|
+
color: inherit;
|
|
9454
|
+
opacity: 0.8;
|
|
9455
|
+
}
|
|
9456
|
+
|
|
9457
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9458
|
+
color: inherit;
|
|
9459
|
+
opacity: 0.8;
|
|
9460
|
+
}
|
|
9461
|
+
|
|
9462
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9463
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9464
|
+
border: none;
|
|
9465
|
+
color: inherit;
|
|
9466
|
+
}
|
|
9467
|
+
|
|
9468
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9469
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9470
|
+
color: inherit;
|
|
9152
9471
|
}
|
package/styles/fabric.scss
CHANGED