@syncfusion/ej2-navigations 20.2.49 → 20.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +14 -0
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/dist/ej2-navigations.min.js +10 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +355 -45
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +375 -46
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -12
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +112 -0
- package/src/appbar/appbar.js +220 -0
- package/src/appbar/index.d.ts +3 -0
- package/src/appbar/index.js +2 -0
- package/src/carousel/carousel-model.d.ts +11 -2
- package/src/carousel/carousel.d.ts +9 -0
- package/src/carousel/carousel.js +105 -14
- package/src/common/menu-base.js +2 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/tab/tab.d.ts +11 -7
- package/src/tab/tab.js +23 -16
- package/src/treeview/treeview.d.ts +1 -0
- package/src/treeview/treeview.js +24 -14
- package/styles/accordion/_all.scss +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +5 -2
- package/styles/accordion/_bootstrap-definition.scss +3 -3
- package/styles/accordion/_bootstrap4-definition.scss +4 -1
- package/styles/accordion/_bootstrap5-definition.scss +1 -1
- package/styles/accordion/_fabric-dark-definition.scss +3 -4
- package/styles/accordion/_fabric-definition.scss +3 -3
- package/styles/accordion/_fluent-definition.scss +0 -1
- package/styles/accordion/_fusionnew-definition.scss +1 -1
- package/styles/accordion/_highcontrast-definition.scss +4 -4
- package/styles/accordion/_highcontrast-light-definition.scss +1 -1
- package/styles/accordion/_layout.scss +8 -9
- package/styles/accordion/_material-dark-definition.scss +3 -1
- package/styles/accordion/_material-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +1 -1
- package/styles/accordion/_tailwind-definition.scss +0 -1
- package/styles/accordion/_theme.scss +6 -5
- package/styles/accordion/bootstrap-dark.css +1 -0
- package/styles/accordion/bootstrap.css +1 -0
- package/styles/accordion/bootstrap4.css +1 -0
- package/styles/accordion/bootstrap5-dark.css +2 -0
- package/styles/accordion/bootstrap5.css +2 -0
- package/styles/accordion/fabric-dark.css +1 -0
- package/styles/accordion/fabric.css +1 -0
- package/styles/accordion/fluent-dark.css +1 -0
- package/styles/accordion/fluent.css +1 -0
- package/styles/accordion/highcontrast-light.css +1 -0
- package/styles/accordion/highcontrast.css +1 -0
- package/styles/accordion/icons/_bootstrap-dark.scss +2 -2
- package/styles/accordion/icons/_bootstrap.scss +2 -2
- package/styles/accordion/icons/_bootstrap4.scss +2 -2
- package/styles/accordion/icons/_bootstrap5.scss +2 -3
- package/styles/accordion/icons/_fabric-dark.scss +2 -2
- package/styles/accordion/icons/_fabric.scss +2 -2
- package/styles/accordion/icons/_fluent.scss +2 -3
- package/styles/accordion/icons/_fusionnew.scss +2 -3
- package/styles/accordion/icons/_highcontrast-light.scss +2 -2
- package/styles/accordion/icons/_highcontrast.scss +2 -2
- package/styles/accordion/icons/_material-dark.scss +2 -2
- package/styles/accordion/icons/_material.scss +2 -2
- package/styles/accordion/icons/_material3.scss +2 -3
- package/styles/accordion/icons/_tailwind.scss +2 -3
- package/styles/accordion/material-dark.css +1 -0
- package/styles/accordion/material.css +1 -0
- package/styles/accordion/tailwind-dark.css +1 -0
- package/styles/accordion/tailwind.css +1 -0
- package/styles/appbar/_all.scss +2 -0
- package/styles/appbar/_bootstrap-dark-definition.scss +8 -0
- package/styles/appbar/_bootstrap-definition.scss +8 -0
- package/styles/appbar/_bootstrap4-definition.scss +8 -0
- package/styles/appbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/appbar/_bootstrap5-definition.scss +8 -0
- package/styles/appbar/_fabric-dark-definition.scss +8 -0
- package/styles/appbar/_fabric-definition.scss +8 -0
- package/styles/appbar/_fluent-dark-definition.scss +1 -0
- package/styles/appbar/_fluent-definition.scss +8 -0
- package/styles/appbar/_fusionnew-definition.scss +8 -0
- package/styles/appbar/_highcontrast-definition.scss +8 -0
- package/styles/appbar/_highcontrast-light-definition.scss +8 -0
- package/styles/appbar/_layout.scss +81 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_tailwind-dark-definition.scss +1 -0
- package/styles/appbar/_tailwind-definition.scss +8 -0
- package/styles/appbar/_theme.scss +208 -0
- package/styles/appbar/bootstrap-dark.css +244 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +244 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +244 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +244 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +244 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +244 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +244 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +244 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +244 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +244 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +244 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +245 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +245 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +245 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +245 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +340 -21
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +345 -26
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +348 -29
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +360 -36
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +360 -36
- package/styles/bootstrap5.scss +1 -0
- package/styles/breadcrumb/_all.scss +1 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +1 -2
- package/styles/breadcrumb/_layout.scss +4 -3
- package/styles/breadcrumb/_theme.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +1 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +1 -1
- package/styles/breadcrumb/icons/_fabric.scss +1 -1
- package/styles/breadcrumb/icons/_fluent.scss +1 -1
- package/styles/breadcrumb/icons/_fusionnew.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast-light.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +1 -1
- package/styles/breadcrumb/icons/_material-dark.scss +1 -1
- package/styles/breadcrumb/icons/_material.scss +1 -1
- package/styles/breadcrumb/icons/_material3.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind.scss +1 -1
- package/styles/carousel/_all.scss +1 -1
- package/styles/carousel/_layout.scss +44 -5
- package/styles/carousel/bootstrap-dark.css +46 -11
- package/styles/carousel/bootstrap.css +46 -11
- package/styles/carousel/bootstrap4.css +46 -11
- package/styles/carousel/bootstrap5-dark.css +46 -11
- package/styles/carousel/bootstrap5.css +46 -11
- package/styles/carousel/fabric-dark.css +46 -11
- package/styles/carousel/fabric.css +46 -11
- package/styles/carousel/fluent-dark.css +46 -11
- package/styles/carousel/fluent.css +46 -11
- package/styles/carousel/highcontrast-light.css +46 -11
- package/styles/carousel/highcontrast.css +46 -11
- package/styles/carousel/material-dark.css +46 -11
- package/styles/carousel/material.css +46 -11
- package/styles/carousel/tailwind-dark.css +46 -11
- package/styles/carousel/tailwind.css +46 -11
- package/styles/context-menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/context-menu/_bootstrap4-definition.scss +3 -3
- package/styles/context-menu/_bootstrap5-definition.scss +2 -2
- package/styles/context-menu/_fabric-dark-definition.scss +2 -1
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -1
- package/styles/context-menu/_layout-mixin.scss +0 -1
- package/styles/context-menu/_layout.scss +1 -0
- package/styles/context-menu/_material-dark-definition.scss +2 -1
- package/styles/context-menu/_theme.scss +1 -0
- package/styles/context-menu/bootstrap4.css +2 -2
- package/styles/context-menu/bootstrap5-dark.css +3 -3
- package/styles/context-menu/bootstrap5.css +3 -3
- package/styles/context-menu/fluent-dark.css +1 -1
- package/styles/context-menu/fluent.css +1 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap.scss +1 -0
- package/styles/context-menu/icons/_bootstrap4.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +1 -0
- package/styles/context-menu/icons/_fabric-dark.scss +1 -0
- package/styles/context-menu/icons/_fabric.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +1 -0
- package/styles/context-menu/icons/_fusionnew.scss +1 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +1 -0
- package/styles/context-menu/icons/_highcontrast.scss +1 -0
- package/styles/context-menu/icons/_material-dark.scss +1 -0
- package/styles/context-menu/icons/_material.scss +1 -0
- package/styles/context-menu/icons/_material3.scss +1 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +1 -0
- package/styles/context-menu/icons/_tailwind.scss +1 -0
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +340 -21
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +340 -21
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +352 -33
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +352 -33
- package/styles/fluent.scss +1 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +4 -3
- package/styles/h-scroll/_bootstrap-definition.scss +3 -4
- package/styles/h-scroll/_bootstrap5-definition.scss +5 -7
- package/styles/h-scroll/_fabric-dark-definition.scss +4 -3
- package/styles/h-scroll/_fabric-definition.scss +4 -4
- package/styles/h-scroll/_fluent-definition.scss +5 -7
- package/styles/h-scroll/_fusionnew-definition.scss +5 -7
- package/styles/h-scroll/_highcontrast-definition.scss +4 -4
- package/styles/h-scroll/_highcontrast-light-definition.scss +4 -3
- package/styles/h-scroll/_layout.scss +11 -13
- package/styles/h-scroll/_material-dark-definition.scss +6 -5
- package/styles/h-scroll/_material-definition.scss +8 -10
- package/styles/h-scroll/_material3-definition.scss +5 -7
- package/styles/h-scroll/_tailwind-definition.scss +6 -8
- package/styles/h-scroll/_theme.scss +3 -5
- package/styles/h-scroll/bootstrap-dark.css +0 -2
- package/styles/h-scroll/bootstrap.css +0 -2
- package/styles/h-scroll/bootstrap4.css +0 -2
- package/styles/h-scroll/bootstrap5-dark.css +0 -2
- package/styles/h-scroll/bootstrap5.css +0 -2
- package/styles/h-scroll/fabric-dark.css +0 -2
- package/styles/h-scroll/fabric.css +0 -2
- package/styles/h-scroll/fluent-dark.css +0 -2
- package/styles/h-scroll/fluent.css +0 -2
- package/styles/h-scroll/highcontrast-light.css +0 -2
- package/styles/h-scroll/highcontrast.css +0 -2
- package/styles/h-scroll/icons/_bootstrap-dark.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap5.scss +3 -3
- package/styles/h-scroll/icons/_fabric-dark.scss +3 -3
- package/styles/h-scroll/icons/_fabric.scss +3 -3
- package/styles/h-scroll/icons/_fluent.scss +3 -3
- package/styles/h-scroll/icons/_fusionnew.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast-light.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast.scss +3 -3
- package/styles/h-scroll/icons/_material-dark.scss +3 -3
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +3 -3
- package/styles/h-scroll/icons/_tailwind.scss +3 -3
- package/styles/h-scroll/material-dark.css +0 -2
- package/styles/h-scroll/material.css +0 -2
- package/styles/h-scroll/tailwind-dark.css +0 -2
- package/styles/h-scroll/tailwind.css +0 -2
- package/styles/highcontrast-light.css +339 -20
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +339 -20
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +339 -20
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +339 -20
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/menu/_fabric-dark-definition.scss +2 -1
- package/styles/menu/_fluent-definition.scss +0 -1
- package/styles/menu/_layout.scss +4 -3
- package/styles/menu/_material-dark-definition.scss +2 -1
- package/styles/menu/_tailwind-definition.scss +0 -1
- package/styles/menu/_theme.scss +22 -1
- package/styles/menu/bootstrap-dark.css +22 -0
- package/styles/menu/bootstrap.css +22 -0
- package/styles/menu/bootstrap4.css +22 -0
- package/styles/menu/bootstrap5-dark.css +23 -1
- package/styles/menu/bootstrap5.css +23 -1
- package/styles/menu/fabric-dark.css +22 -0
- package/styles/menu/fabric.css +22 -0
- package/styles/menu/fluent-dark.css +23 -1
- package/styles/menu/fluent.css +23 -1
- package/styles/menu/highcontrast-light.css +22 -0
- package/styles/menu/highcontrast.css +22 -0
- package/styles/menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap.scss +1 -0
- package/styles/menu/icons/_bootstrap4.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +1 -0
- package/styles/menu/icons/_fabric-dark.scss +1 -0
- package/styles/menu/icons/_fabric.scss +1 -0
- package/styles/menu/icons/_fluent.scss +1 -0
- package/styles/menu/icons/_fusionnew.scss +1 -0
- package/styles/menu/icons/_highcontrast-light.scss +1 -0
- package/styles/menu/icons/_highcontrast.scss +1 -0
- package/styles/menu/icons/_material-dark.scss +1 -0
- package/styles/menu/icons/_material.scss +1 -0
- package/styles/menu/icons/_material3.scss +1 -0
- package/styles/menu/icons/_tailwind-dark.scss +1 -0
- package/styles/menu/icons/_tailwind.scss +1 -0
- package/styles/menu/material-dark.css +22 -0
- package/styles/menu/material.css +22 -0
- package/styles/menu/tailwind-dark.css +23 -1
- package/styles/menu/tailwind.css +23 -1
- package/styles/pager/_all.scss +1 -1
- package/styles/pager/_bootstrap-dark-definition.scss +0 -1
- package/styles/pager/_bootstrap-definition.scss +3 -4
- package/styles/pager/_bootstrap4-definition.scss +6 -6
- package/styles/pager/_bootstrap5-definition.scss +5 -5
- package/styles/pager/_fabric-dark-definition.scss +2 -2
- package/styles/pager/_fabric-definition.scss +0 -1
- package/styles/pager/_fluent-definition.scss +1 -1
- package/styles/pager/_highcontrast-definition.scss +0 -1
- package/styles/pager/_highcontrast-light-definition.scss +3 -2
- package/styles/pager/_layout.scss +35 -38
- package/styles/pager/_material-dark-definition.scss +2 -2
- package/styles/pager/_material-definition.scss +0 -1
- package/styles/pager/_tailwind-definition.scss +7 -7
- package/styles/pager/_theme.scss +3 -4
- package/styles/pager/bootstrap-dark.css +5 -3
- package/styles/pager/bootstrap.css +10 -8
- package/styles/pager/bootstrap4.css +11 -9
- package/styles/pager/bootstrap5-dark.css +14 -12
- package/styles/pager/bootstrap5.css +14 -12
- package/styles/pager/fabric-dark.css +5 -3
- package/styles/pager/fabric.css +5 -3
- package/styles/pager/fluent-dark.css +6 -4
- package/styles/pager/fluent.css +6 -4
- package/styles/pager/highcontrast-light.css +4 -2
- package/styles/pager/highcontrast.css +4 -2
- package/styles/pager/icons/_bootstrap-dark.scss +2 -2
- package/styles/pager/icons/_bootstrap.scss +2 -1
- package/styles/pager/icons/_bootstrap4.scss +2 -1
- package/styles/pager/icons/_bootstrap5.scss +2 -2
- package/styles/pager/icons/_fabric-dark.scss +4 -4
- package/styles/pager/icons/_fabric.scss +4 -4
- package/styles/pager/icons/_fluent.scss +2 -2
- package/styles/pager/icons/_fusionnew.scss +2 -2
- package/styles/pager/icons/_highcontrast-light.scss +3 -3
- package/styles/pager/icons/_highcontrast.scss +9 -4
- package/styles/pager/icons/_material-dark.scss +2 -2
- package/styles/pager/icons/_material.scss +10 -5
- package/styles/pager/icons/_material3.scss +2 -2
- package/styles/pager/icons/_tailwind.scss +2 -2
- package/styles/pager/material-dark.css +4 -2
- package/styles/pager/material.css +4 -2
- package/styles/pager/tailwind-dark.css +19 -17
- package/styles/pager/tailwind.css +19 -17
- package/styles/sidebar/_bootstrap5-definition.scss +1 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-definition.scss +1 -0
- package/styles/sidebar/_fusionnew-definition.scss +1 -0
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +1 -0
- package/styles/sidebar/_theme.scss +19 -28
- package/styles/sidebar/bootstrap-dark.css +4 -0
- package/styles/sidebar/bootstrap.css +4 -0
- package/styles/sidebar/bootstrap4.css +4 -0
- package/styles/sidebar/bootstrap5-dark.css +4 -0
- package/styles/sidebar/bootstrap5.css +4 -0
- package/styles/sidebar/fabric-dark.css +4 -0
- package/styles/sidebar/fabric.css +4 -0
- package/styles/sidebar/fluent-dark.css +4 -0
- package/styles/sidebar/fluent.css +4 -0
- package/styles/sidebar/highcontrast-light.css +4 -0
- package/styles/sidebar/highcontrast.css +4 -0
- package/styles/sidebar/material-dark.css +4 -0
- package/styles/sidebar/material.css +4 -0
- package/styles/sidebar/tailwind-dark.css +4 -0
- package/styles/sidebar/tailwind.css +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +2 -1
- package/styles/tab/_bootstrap5-definition.scss +1 -1
- package/styles/tab/_fabric-dark-definition.scss +2 -2
- package/styles/tab/_fabric-definition.scss +0 -1
- package/styles/tab/_fusionnew-definition.scss +1 -1
- package/styles/tab/_highcontrast-definition.scss +0 -1
- package/styles/tab/_highcontrast-light-definition.scss +0 -2
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +24 -26
- package/styles/tab/_material-dark-definition.scss +2 -3
- package/styles/tab/_material-definition.scss +0 -1
- package/styles/tab/_material3-definition.scss +1 -1
- package/styles/tab/_tailwind-definition.scss +0 -1
- package/styles/tab/_theme.scss +6 -8
- package/styles/tab/bootstrap-dark.css +1 -1
- package/styles/tab/bootstrap.css +1 -1
- package/styles/tab/bootstrap4.css +1 -1
- package/styles/tab/bootstrap5-dark.css +5 -2
- package/styles/tab/bootstrap5.css +5 -2
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +5 -5
- package/styles/tab/fluent.css +5 -5
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +1 -1
- package/styles/tab/icons/_bootstrap-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap.scss +1 -0
- package/styles/tab/icons/_bootstrap4.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +1 -1
- package/styles/tab/icons/_fabric-dark.scss +1 -0
- package/styles/tab/icons/_fabric.scss +1 -0
- package/styles/tab/icons/_fluent.scss +1 -1
- package/styles/tab/icons/_fusionnew.scss +1 -1
- package/styles/tab/icons/_highcontrast-light.scss +1 -0
- package/styles/tab/icons/_highcontrast.scss +1 -0
- package/styles/tab/icons/_material-dark.scss +1 -0
- package/styles/tab/icons/_material.scss +1 -0
- package/styles/tab/icons/_material3.scss +1 -1
- package/styles/tab/icons/_tailwind.scss +1 -1
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +1 -1
- package/styles/tab/tailwind.css +1 -1
- package/styles/tailwind-dark.css +359 -38
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +359 -38
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +6 -5
- package/styles/toolbar/_bootstrap-definition.scss +13 -13
- package/styles/toolbar/_bootstrap4-definition.scss +6 -6
- package/styles/toolbar/_bootstrap5-definition.scss +1 -1
- package/styles/toolbar/_fabric-dark-definition.scss +2 -1
- package/styles/toolbar/_fluent-definition.scss +2 -2
- package/styles/toolbar/_fusionnew-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +2 -1
- package/styles/toolbar/_layout.scss +50 -74
- package/styles/toolbar/_material-dark-definition.scss +9 -11
- package/styles/toolbar/_material-definition.scss +12 -13
- package/styles/toolbar/_material3-definition.scss +1 -1
- package/styles/toolbar/_theme.scss +5 -8
- package/styles/toolbar/bootstrap-dark.css +10 -2
- package/styles/toolbar/bootstrap.css +10 -2
- package/styles/toolbar/bootstrap4.css +10 -2
- package/styles/toolbar/bootstrap5-dark.css +12 -3
- package/styles/toolbar/bootstrap5.css +12 -3
- package/styles/toolbar/fabric-dark.css +10 -2
- package/styles/toolbar/fabric.css +10 -2
- package/styles/toolbar/fluent-dark.css +15 -7
- package/styles/toolbar/fluent.css +15 -7
- package/styles/toolbar/highcontrast-light.css +10 -2
- package/styles/toolbar/highcontrast.css +10 -2
- package/styles/toolbar/icons/_bootstrap-dark.scss +1 -1
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +1 -1
- package/styles/toolbar/icons/_bootstrap5.scss +1 -2
- package/styles/toolbar/icons/_fabric-dark.scss +1 -1
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent.scss +1 -2
- package/styles/toolbar/icons/_fusionnew.scss +1 -2
- package/styles/toolbar/icons/_highcontrast-light.scss +1 -1
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +1 -1
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +1 -2
- package/styles/toolbar/icons/_tailwind.scss +1 -2
- package/styles/toolbar/material-dark.css +10 -2
- package/styles/toolbar/material.css +10 -2
- package/styles/toolbar/tailwind-dark.css +11 -3
- package/styles/toolbar/tailwind.css +11 -3
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +1 -1
- package/styles/treeview/_bootstrap-definition.scss +1 -1
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-definition.scss +1 -1
- package/styles/treeview/_fabric-dark-definition.scss +1 -1
- package/styles/treeview/_fabric-definition.scss +1 -1
- package/styles/treeview/_fluent-definition.scss +1 -1
- package/styles/treeview/_fusionnew-definition.scss +1 -1
- package/styles/treeview/_highcontrast-definition.scss +1 -1
- package/styles/treeview/_highcontrast-light-definition.scss +1 -1
- package/styles/treeview/_layout.scss +23 -18
- package/styles/treeview/_material-dark-definition.scss +1 -1
- package/styles/treeview/_material-definition.scss +1 -1
- package/styles/treeview/_material3-definition.scss +1 -1
- package/styles/treeview/_tailwind-definition.scss +2 -2
- package/styles/treeview/_theme.scss +15 -12
- package/styles/treeview/bootstrap-dark.css +6 -0
- package/styles/treeview/bootstrap.css +6 -0
- package/styles/treeview/bootstrap4.css +6 -0
- package/styles/treeview/bootstrap5-dark.css +6 -0
- package/styles/treeview/bootstrap5.css +6 -0
- package/styles/treeview/fabric-dark.css +6 -0
- package/styles/treeview/fabric.css +6 -0
- package/styles/treeview/fluent-dark.css +6 -0
- package/styles/treeview/fluent.css +6 -0
- package/styles/treeview/highcontrast-light.css +6 -0
- package/styles/treeview/highcontrast.css +6 -0
- package/styles/treeview/icons/_bootstrap-dark.scss +1 -1
- package/styles/treeview/icons/_bootstrap.scss +1 -1
- package/styles/treeview/icons/_bootstrap4.scss +1 -2
- package/styles/treeview/icons/_bootstrap5.scss +1 -1
- package/styles/treeview/icons/_fabric-dark.scss +1 -1
- package/styles/treeview/icons/_fabric.scss +1 -1
- package/styles/treeview/icons/_fluent.scss +1 -1
- package/styles/treeview/icons/_fusionnew.scss +1 -1
- package/styles/treeview/icons/_highcontrast-light.scss +1 -1
- package/styles/treeview/icons/_highcontrast.scss +1 -1
- package/styles/treeview/icons/_material-dark.scss +1 -1
- package/styles/treeview/icons/_material.scss +1 -1
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/icons/_tailwind-dark.scss +1 -1
- package/styles/treeview/icons/_tailwind.scss +1 -1
- package/styles/treeview/material-dark.css +6 -0
- package/styles/treeview/material.css +6 -0
- package/styles/treeview/tailwind-dark.css +7 -0
- package/styles/treeview/tailwind.css +7 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +5 -4
- package/styles/v-scroll/_bootstrap-definition.scss +3 -3
- package/styles/v-scroll/_bootstrap4-definition.scss +1 -1
- package/styles/v-scroll/_bootstrap5-definition.scss +3 -3
- package/styles/v-scroll/_fabric-dark-definition.scss +6 -5
- package/styles/v-scroll/_fabric-definition.scss +4 -4
- package/styles/v-scroll/_fluent-definition.scss +3 -3
- package/styles/v-scroll/_fusionnew-definition.scss +3 -3
- package/styles/v-scroll/_highcontrast-definition.scss +4 -4
- package/styles/v-scroll/_highcontrast-light-definition.scss +6 -5
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +6 -5
- package/styles/v-scroll/_material-definition.scss +5 -5
- package/styles/v-scroll/_material3-definition.scss +3 -3
- package/styles/v-scroll/_tailwind-definition.scss +3 -3
- package/styles/v-scroll/_theme.scss +2 -1
- package/styles/v-scroll/bootstrap-dark.css +0 -2
- package/styles/v-scroll/bootstrap.css +0 -2
- package/styles/v-scroll/bootstrap4.css +0 -2
- package/styles/v-scroll/bootstrap5-dark.css +0 -2
- package/styles/v-scroll/bootstrap5.css +0 -2
- package/styles/v-scroll/fabric-dark.css +0 -2
- package/styles/v-scroll/fabric.css +0 -2
- package/styles/v-scroll/fluent-dark.css +0 -2
- package/styles/v-scroll/fluent.css +0 -2
- package/styles/v-scroll/highcontrast-light.css +0 -2
- package/styles/v-scroll/highcontrast.css +0 -2
- package/styles/v-scroll/icons/_bootstrap-dark.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5.scss +1 -1
- package/styles/v-scroll/icons/_fabric-dark.scss +1 -0
- package/styles/v-scroll/icons/_fabric.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +1 -1
- package/styles/v-scroll/icons/_fusionnew.scss +1 -1
- package/styles/v-scroll/icons/_highcontrast-light.scss +1 -0
- package/styles/v-scroll/icons/_highcontrast.scss +1 -0
- package/styles/v-scroll/icons/_material-dark.scss +1 -0
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +1 -1
- package/styles/v-scroll/icons/_tailwind.scss +1 -1
- package/styles/v-scroll/material-dark.css +0 -2
- package/styles/v-scroll/material.css +0 -2
- package/styles/v-scroll/tailwind-dark.css +0 -2
- package/styles/v-scroll/tailwind.css +0 -2
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
@keyframes e-input-ripple {
|
|
3
4
|
100% {
|
|
4
5
|
opacity: 0;
|
|
5
6
|
transform: scale(4);
|
|
6
7
|
}
|
|
7
8
|
}
|
|
9
|
+
/* stylelint-disable */
|
|
8
10
|
/*! TreeView icons */
|
|
9
11
|
.e-treeview .e-list-item div.e-icons::before {
|
|
10
12
|
content: "\e22f";
|
|
@@ -28,6 +30,7 @@
|
|
|
28
30
|
content: "\e22a";
|
|
29
31
|
}
|
|
30
32
|
|
|
33
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
31
34
|
@keyframes rotation {
|
|
32
35
|
from {
|
|
33
36
|
transform: rotate(0deg);
|
|
@@ -556,6 +559,8 @@
|
|
|
556
559
|
pointer-events: auto;
|
|
557
560
|
}
|
|
558
561
|
|
|
562
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
563
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
559
564
|
.e-bigger .e-treeview .e-list-text,
|
|
560
565
|
.e-treeview.e-bigger .e-list-text {
|
|
561
566
|
font-size: 14px;
|
|
@@ -568,6 +573,7 @@
|
|
|
568
573
|
}
|
|
569
574
|
.e-treeview {
|
|
570
575
|
-webkit-tap-highlight-color: transparent;
|
|
576
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
571
577
|
}
|
|
572
578
|
.e-treeview .e-text-content,
|
|
573
579
|
.e-treeview .e-fullrow {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
@keyframes e-input-ripple {
|
|
3
4
|
100% {
|
|
4
5
|
opacity: 0;
|
|
@@ -14,6 +15,7 @@
|
|
|
14
15
|
}
|
|
15
16
|
}
|
|
16
17
|
/*! TreeView's material theme wise override definitions and variables */
|
|
18
|
+
/* stylelint-disable */
|
|
17
19
|
/*! TreeView icons */
|
|
18
20
|
.e-treeview .e-list-item div.e-icons::before {
|
|
19
21
|
content: "\e22f";
|
|
@@ -37,6 +39,7 @@
|
|
|
37
39
|
content: "\e22a";
|
|
38
40
|
}
|
|
39
41
|
|
|
42
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
40
43
|
@keyframes rotation {
|
|
41
44
|
from {
|
|
42
45
|
transform: rotate(0deg);
|
|
@@ -560,6 +563,8 @@
|
|
|
560
563
|
pointer-events: auto;
|
|
561
564
|
}
|
|
562
565
|
|
|
566
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
567
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
563
568
|
.e-bigger .e-treeview .e-list-text,
|
|
564
569
|
.e-treeview.e-bigger .e-list-text {
|
|
565
570
|
font-size: 14px;
|
|
@@ -572,6 +577,7 @@
|
|
|
572
577
|
}
|
|
573
578
|
.e-treeview {
|
|
574
579
|
-webkit-tap-highlight-color: transparent;
|
|
580
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
575
581
|
}
|
|
576
582
|
.e-treeview .e-text-content,
|
|
577
583
|
.e-treeview .e-fullrow {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
4
|
+
/* stylelint-disable */
|
|
3
5
|
/*! TreeView icons */
|
|
4
6
|
.e-treeview .e-list-item div.e-icons::before {
|
|
5
7
|
content: "\e75c";
|
|
@@ -23,6 +25,7 @@
|
|
|
23
25
|
content: "\e839";
|
|
24
26
|
}
|
|
25
27
|
|
|
28
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
26
29
|
@keyframes rotation {
|
|
27
30
|
from {
|
|
28
31
|
transform: rotate(0deg);
|
|
@@ -344,6 +347,7 @@
|
|
|
344
347
|
.e-treeview .e-list-item .e-ul {
|
|
345
348
|
margin: 2px 0 -2px;
|
|
346
349
|
padding: 0 0 0 20px;
|
|
350
|
+
margin: 2px 0 0;
|
|
347
351
|
}
|
|
348
352
|
.e-treeview .e-list-item.e-disable > .e-text-content,
|
|
349
353
|
.e-treeview .e-list-item.e-disable > .e-fullrow {
|
|
@@ -654,6 +658,8 @@
|
|
|
654
658
|
pointer-events: auto;
|
|
655
659
|
}
|
|
656
660
|
|
|
661
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
662
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
657
663
|
.e-bigger .e-treeview .e-list-text,
|
|
658
664
|
.e-treeview.e-bigger .e-list-text {
|
|
659
665
|
font-size: 16px;
|
|
@@ -666,6 +672,7 @@
|
|
|
666
672
|
}
|
|
667
673
|
.e-treeview {
|
|
668
674
|
-webkit-tap-highlight-color: transparent;
|
|
675
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
669
676
|
}
|
|
670
677
|
.e-treeview .e-text-content,
|
|
671
678
|
.e-treeview .e-fullrow {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
3
|
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
4
|
+
/* stylelint-disable */
|
|
3
5
|
/*! TreeView icons */
|
|
4
6
|
.e-treeview .e-list-item div.e-icons::before {
|
|
5
7
|
content: "\e75c";
|
|
@@ -23,6 +25,7 @@
|
|
|
23
25
|
content: "\e839";
|
|
24
26
|
}
|
|
25
27
|
|
|
28
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
26
29
|
@keyframes rotation {
|
|
27
30
|
from {
|
|
28
31
|
transform: rotate(0deg);
|
|
@@ -344,6 +347,7 @@
|
|
|
344
347
|
.e-treeview .e-list-item .e-ul {
|
|
345
348
|
margin: 2px 0 -2px;
|
|
346
349
|
padding: 0 0 0 20px;
|
|
350
|
+
margin: 2px 0 0;
|
|
347
351
|
}
|
|
348
352
|
.e-treeview .e-list-item.e-disable > .e-text-content,
|
|
349
353
|
.e-treeview .e-list-item.e-disable > .e-fullrow {
|
|
@@ -654,6 +658,8 @@
|
|
|
654
658
|
pointer-events: auto;
|
|
655
659
|
}
|
|
656
660
|
|
|
661
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
662
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
657
663
|
.e-bigger .e-treeview .e-list-text,
|
|
658
664
|
.e-treeview.e-bigger .e-list-text {
|
|
659
665
|
font-size: 16px;
|
|
@@ -666,6 +672,7 @@
|
|
|
666
672
|
}
|
|
667
673
|
.e-treeview {
|
|
668
674
|
-webkit-tap-highlight-color: transparent;
|
|
675
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
669
676
|
}
|
|
670
677
|
.e-treeview .e-text-content,
|
|
671
678
|
.e-treeview .e-fullrow {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'layout.scss';
|
|
2
2
|
@import 'theme.scss';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$vscroll-skin: 'bootstrap' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 40px !default;
|
|
4
|
-
$vscroll-hover-font: $hover-font-color
|
|
5
|
-
$vscroll-active-font-color: $active-font-color
|
|
4
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
5
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
6
6
|
$vscroll-border-size: $border-size !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -47,4 +47,5 @@ $vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
|
|
|
47
47
|
@mixin vscroll-btn-animation-after {
|
|
48
48
|
content: '';
|
|
49
49
|
}
|
|
50
|
+
|
|
50
51
|
//enddefault
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'bootstrap' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 40px !default;
|
|
4
|
-
$vscroll-hover-font: $hover-font-color
|
|
5
|
-
$vscroll-active-font-color: $active-font-color
|
|
4
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
5
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
6
6
|
$vscroll-border-size: $border-size !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'bootstrap5' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
-
$vscroll-hover-font: $content-text-color-alt2
|
|
5
|
-
$vscroll-active-font-color: $content-text-color-alt2
|
|
4
|
+
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
6
|
$vscroll-border-size: 1px !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$vscroll-skin: 'fabric' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 40px !default;
|
|
4
|
-
$vscroll-hover-font: $hover-font-color
|
|
5
|
-
$vscroll-active-font-color: $active-font-color
|
|
4
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
5
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
6
6
|
$vscroll-border-size: $border-size !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -32,8 +32,8 @@ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
|
32
32
|
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
33
33
|
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
34
34
|
|
|
35
|
-
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
36
|
-
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
35
|
+
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
36
|
+
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
37
37
|
$vscroll-device-arrow-bg: $neutral-white !default;
|
|
38
38
|
$vscroll-device-arrow-border-size: 1px !default;
|
|
39
39
|
$vscroll-device-arrow-border-color: $neutral-quintenaryalt !default;
|
|
@@ -48,4 +48,5 @@ $vscroll-device-arrow-width: 52px !default;
|
|
|
48
48
|
@mixin vscroll-btn-animation-after {
|
|
49
49
|
content: '';
|
|
50
50
|
}
|
|
51
|
+
|
|
51
52
|
//enddefault
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'fabric' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 40px !default;
|
|
4
|
-
$vscroll-hover-font: $hover-font-color
|
|
5
|
-
$vscroll-active-font-color: $active-font-color
|
|
4
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
5
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
6
6
|
$vscroll-border-size: $border-size !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -32,8 +32,8 @@ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
|
32
32
|
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
33
33
|
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
34
34
|
|
|
35
|
-
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
36
|
-
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
35
|
+
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
36
|
+
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
37
37
|
$vscroll-device-arrow-bg: $neutral-white !default;
|
|
38
38
|
$vscroll-device-arrow-border-size: 1px !default;
|
|
39
39
|
$vscroll-device-arrow-border-color: $neutral-quintenaryalt !default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'FluentUI' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
-
$vscroll-hover-font: $content-text-color-alt2
|
|
5
|
-
$vscroll-active-font-color: $content-text-color-alt2
|
|
4
|
+
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
6
|
$vscroll-border-size: 1px !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'bootstrap5' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
-
$vscroll-hover-font: $content-text-color-alt2
|
|
5
|
-
$vscroll-active-font-color: $content-text-color-alt2
|
|
4
|
+
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
6
|
$vscroll-border-size: 1px !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
$vscroll-skin: 'highcontrast' !default;
|
|
3
3
|
$vscroll-dash-border: 2px solid #fff;
|
|
4
4
|
$vscroll-nav-nrml-height: 40px !default;
|
|
5
|
-
$vscroll-hover-font: $hover-font-color
|
|
6
|
-
$vscroll-active-font-color: $active-font-color
|
|
5
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
6
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
7
7
|
$vscroll-border-size: $border-size !default;
|
|
8
8
|
$vscroll-border-type: solid !default;
|
|
9
9
|
|
|
@@ -33,8 +33,8 @@ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
|
33
33
|
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
34
34
|
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
35
35
|
|
|
36
|
-
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
37
|
-
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
36
|
+
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
37
|
+
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
38
38
|
$vscroll-device-arrow-bg: $bg-base-15 !default;
|
|
39
39
|
$vscroll-device-arrow-border-size: 1px !default;
|
|
40
40
|
$vscroll-device-arrow-border-color: $border-fg !default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$vscroll-skin: 'highcontrast' !default;
|
|
3
3
|
$vscroll-dash-border: 2px solid #fff !default;
|
|
4
4
|
$vscroll-nav-nrml-height: 40px !default;
|
|
5
|
-
$vscroll-hover-font: $hover-font-color
|
|
6
|
-
$vscroll-active-font-color: $active-font-color
|
|
5
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
6
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
7
7
|
$vscroll-border-size: $border-size !default;
|
|
8
8
|
$vscroll-border-type: solid !default;
|
|
9
9
|
|
|
@@ -33,8 +33,8 @@ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
|
33
33
|
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
34
34
|
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
35
35
|
|
|
36
|
-
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
37
|
-
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
36
|
+
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
37
|
+
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
38
38
|
$vscroll-device-arrow-bg: $bg-base-15 !default;
|
|
39
39
|
$vscroll-device-arrow-border-size: 1px !default;
|
|
40
40
|
$vscroll-device-arrow-border-color: $border-fg !default;
|
|
@@ -49,4 +49,5 @@ $vscroll-device-arrow-width: 52px !default;
|
|
|
49
49
|
@mixin vscroll-btn-animation-after {
|
|
50
50
|
content: '';
|
|
51
51
|
}
|
|
52
|
+
|
|
52
53
|
//enddefault
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
@include export-module('v-scroll') {
|
|
2
|
+
|
|
2
3
|
/*! v-scroll layout */
|
|
3
4
|
|
|
4
5
|
.e-bigger #{&}.e-vscroll,
|
|
@@ -10,7 +11,7 @@
|
|
|
10
11
|
|
|
11
12
|
.e-icons {
|
|
12
13
|
font-size: 18px;
|
|
13
|
-
|
|
14
|
+
}
|
|
14
15
|
|
|
15
16
|
&.e-rtl .e-scroll-overlay.e-scroll-down-overlay {
|
|
16
17
|
left: $vscroll-nav-bgr-width;
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
}
|
|
56
57
|
}
|
|
57
58
|
}
|
|
58
|
-
|
|
59
|
+
}
|
|
59
60
|
|
|
60
61
|
&:not(.e-scroll-device) {
|
|
61
62
|
padding: $vscroll-nrml-padding;
|
|
@@ -102,7 +103,6 @@
|
|
|
102
103
|
display: inline-block;
|
|
103
104
|
height: auto;
|
|
104
105
|
position: relative;
|
|
105
|
-
touch-action: none;
|
|
106
106
|
width: 100%;
|
|
107
107
|
|
|
108
108
|
> * {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$vscroll-skin: 'material' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 40px !default;
|
|
4
|
-
$vscroll-hover-font: $hover-font-color
|
|
5
|
-
$vscroll-active-font-color: $active-font-color
|
|
4
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
5
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
6
6
|
$vscroll-border-size: $border-size !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -32,8 +32,8 @@ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
|
32
32
|
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
33
33
|
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
34
34
|
|
|
35
|
-
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
36
|
-
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
35
|
+
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
36
|
+
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
37
37
|
$vscroll-device-arrow-bg: $grey-50 !default;
|
|
38
38
|
$vscroll-device-arrow-border-size: 1px !default;
|
|
39
39
|
$vscroll-device-arrow-border-color: rgba($grey-black, .12) !default;
|
|
@@ -75,4 +75,5 @@ $vscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12)
|
|
|
75
75
|
box-shadow: $vscroll-ribble-animation-shadow-frame-end;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
|
+
|
|
78
79
|
//enddefault
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'material' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 40px !default;
|
|
4
|
-
$vscroll-hover-font: $hover-font-color
|
|
5
|
-
$vscroll-active-font-color: $active-font-color
|
|
4
|
+
$vscroll-hover-font: $hover-font-color !default;
|
|
5
|
+
$vscroll-active-font-color: $active-font-color !default;
|
|
6
6
|
$vscroll-border-size: $border-size !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -32,8 +32,8 @@ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
|
32
32
|
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
33
33
|
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
34
34
|
|
|
35
|
-
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow
|
|
36
|
-
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow
|
|
35
|
+
$vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
|
|
36
|
+
$vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
|
|
37
37
|
$vscroll-device-arrow-bg: $grey-50 !default;
|
|
38
38
|
$vscroll-device-arrow-border-size: 1px !default;
|
|
39
39
|
$vscroll-device-arrow-border-color: rgba($grey-black, .12) !default;
|
|
@@ -51,7 +51,7 @@ $vscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12)
|
|
|
51
51
|
border-radius: 50%;
|
|
52
52
|
border-width: 1px;
|
|
53
53
|
box-sizing: border-box;
|
|
54
|
-
content: ''
|
|
54
|
+
content: '';
|
|
55
55
|
height: 1px;
|
|
56
56
|
left: 50%;
|
|
57
57
|
position: absolute;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'bootstrap5' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
-
$vscroll-hover-font: $content-text-color-alt2
|
|
5
|
-
$vscroll-active-font-color: $content-text-color-alt2
|
|
4
|
+
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
6
|
$vscroll-border-size: 1px !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
$vscroll-skin: 'tailwind' !default;
|
|
3
3
|
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
-
$vscroll-hover-font: $content-text-color-alt2
|
|
5
|
-
$vscroll-active-font-color: $content-text-color-alt2
|
|
4
|
+
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
6
|
$vscroll-border-size: 1px !default;
|
|
7
7
|
$vscroll-border-type: solid !default;
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ $vscroll-focus-border: 0 !default;
|
|
|
38
38
|
$vscroll-active-border: 0 !default;
|
|
39
39
|
$vscroll-hover-border: 0 !default;
|
|
40
40
|
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
42
42
|
|
|
43
43
|
@mixin vscroll-btn-animation {
|
|
44
44
|
content: '';
|