@syncfusion/ej2-angular-navigations 22.1.34-ngcc → 22.1.34
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/README.md +133 -217
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
- package/esm2020/src/accordion/accordion.component.mjs +77 -0
- package/esm2020/src/accordion/accordion.module.mjs +34 -0
- package/esm2020/src/accordion/items.directive.mjs +72 -0
- package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
- package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
- package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
- package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
- package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
- package/esm2020/src/carousel/carousel.component.mjs +95 -0
- package/esm2020/src/carousel/carousel.module.mjs +34 -0
- package/esm2020/src/carousel/items.directive.mjs +66 -0
- package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
- package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
- package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
- package/esm2020/src/index.mjs +35 -0
- package/esm2020/src/menu/items.directive.mjs +46 -0
- package/esm2020/src/menu/menu-all.module.mjs +23 -0
- package/esm2020/src/menu/menu.component.mjs +71 -0
- package/esm2020/src/menu/menu.module.mjs +34 -0
- package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
- package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
- package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
- package/esm2020/src/tab/items.directive.mjs +78 -0
- package/esm2020/src/tab/tab-all.module.mjs +23 -0
- package/esm2020/src/tab/tab.component.mjs +64 -0
- package/esm2020/src/tab/tab.module.mjs +34 -0
- package/esm2020/src/toolbar/items.directive.mjs +66 -0
- package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
- package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
- package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
- package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
- package/esm2020/src/treeview/treeview.component.mjs +66 -0
- package/esm2020/src/treeview/treeview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1352 -0
- package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1352 -0
- package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
- package/package.json +129 -16
- package/schematics/utils/lib-details.ts +3 -3
- package/src/accordion/accordion-all.module.d.ts +6 -0
- package/src/accordion/accordion.component.d.ts +3 -2
- package/src/accordion/accordion.module.d.ts +7 -0
- package/src/accordion/items.directive.d.ts +5 -0
- package/src/breadcrumb/breadcrumb-all.module.d.ts +6 -0
- package/src/breadcrumb/breadcrumb.component.d.ts +3 -2
- package/src/breadcrumb/breadcrumb.module.d.ts +7 -0
- package/src/breadcrumb/items.directive.d.ts +5 -0
- package/src/carousel/carousel-all.module.d.ts +6 -0
- package/src/carousel/carousel.component.d.ts +3 -5
- package/src/carousel/carousel.module.d.ts +7 -0
- package/src/carousel/items.directive.d.ts +5 -1
- package/src/context-menu/contextmenu-all.module.d.ts +6 -0
- package/src/context-menu/contextmenu.component.d.ts +3 -0
- package/src/context-menu/contextmenu.module.d.ts +6 -0
- package/src/index.d.ts +0 -3
- package/src/menu/items.directive.d.ts +5 -0
- package/src/menu/menu-all.module.d.ts +6 -0
- package/src/menu/menu.component.d.ts +3 -1
- package/src/menu/menu.module.d.ts +7 -0
- package/src/sidebar/sidebar-all.module.d.ts +6 -0
- package/src/sidebar/sidebar.component.d.ts +3 -0
- package/src/sidebar/sidebar.module.d.ts +6 -0
- package/src/tab/items.directive.d.ts +5 -8
- package/src/tab/tab-all.module.d.ts +6 -0
- package/src/tab/tab.component.d.ts +3 -0
- package/src/tab/tab.module.d.ts +7 -0
- package/src/toolbar/items.directive.d.ts +20 -24
- package/src/toolbar/toolbar-all.module.d.ts +6 -0
- package/src/toolbar/toolbar.component.d.ts +3 -0
- package/src/toolbar/toolbar.module.d.ts +7 -0
- package/src/treeview/treeview-all.module.d.ts +6 -0
- package/src/treeview/treeview.component.d.ts +3 -3
- package/src/treeview/treeview.module.d.ts +6 -0
- package/styles/accordion/_all.scss +2 -0
- package/styles/accordion/_bootstrap-dark-definition.scss +176 -0
- package/styles/accordion/_bootstrap-definition.scss +181 -0
- package/styles/accordion/_bootstrap4-definition.scss +184 -0
- package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
- package/styles/accordion/_bootstrap5-definition.scss +182 -0
- package/styles/accordion/_fabric-dark-definition.scss +179 -0
- package/styles/accordion/_fabric-definition.scss +184 -0
- package/styles/accordion/_fluent-dark-definition.scss +1 -0
- package/styles/accordion/_fluent-definition.scss +181 -0
- package/styles/accordion/_fusionnew-definition.scss +182 -0
- package/styles/accordion/_highcontrast-definition.scss +206 -0
- package/styles/accordion/_highcontrast-light-definition.scss +204 -0
- package/styles/accordion/_layout.scss +358 -0
- package/styles/accordion/_material-dark-definition.scss +182 -0
- package/styles/accordion/_material-definition.scss +178 -0
- package/styles/accordion/_material3-dark-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +182 -0
- package/styles/accordion/_tailwind-dark-definition.scss +1 -0
- package/styles/accordion/_tailwind-definition.scss +180 -0
- package/styles/accordion/_theme.scss +397 -0
- package/styles/accordion/bootstrap-dark.scss +4 -1
- package/styles/accordion/bootstrap.scss +4 -1
- package/styles/accordion/bootstrap4.scss +4 -1
- package/styles/accordion/bootstrap5-dark.scss +4 -1
- package/styles/accordion/bootstrap5.scss +4 -1
- package/styles/accordion/fabric-dark.scss +4 -1
- package/styles/accordion/fabric.scss +4 -1
- package/styles/accordion/fluent-dark.scss +4 -1
- package/styles/accordion/fluent.scss +4 -1
- package/styles/accordion/highcontrast-light.scss +4 -1
- package/styles/accordion/highcontrast.scss +4 -1
- package/styles/accordion/icons/_bootstrap-dark.scss +17 -0
- package/styles/accordion/icons/_bootstrap.scss +17 -0
- package/styles/accordion/icons/_bootstrap4.scss +17 -0
- package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
- package/styles/accordion/icons/_bootstrap5.scss +17 -0
- package/styles/accordion/icons/_fabric-dark.scss +17 -0
- package/styles/accordion/icons/_fabric.scss +17 -0
- package/styles/accordion/icons/_fluent-dark.scss +1 -0
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_fusionnew.scss +17 -0
- package/styles/accordion/icons/_highcontrast-light.scss +17 -0
- package/styles/accordion/icons/_highcontrast.scss +17 -0
- package/styles/accordion/icons/_material-dark.scss +17 -0
- package/styles/accordion/icons/_material.scss +17 -0
- package/styles/accordion/icons/_material3-dark.scss +1 -0
- package/styles/accordion/icons/_material3.scss +17 -0
- package/styles/accordion/icons/_tailwind-dark.scss +1 -0
- package/styles/accordion/icons/_tailwind.scss +17 -0
- package/styles/accordion/material-dark.scss +4 -1
- package/styles/accordion/material.scss +4 -1
- package/styles/accordion/material3-dark.scss +4 -1
- package/styles/accordion/material3.scss +4 -1
- package/styles/accordion/tailwind-dark.scss +4 -1
- package/styles/accordion/tailwind.scss +4 -1
- 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 +89 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_material3-dark-definition.scss +1 -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 +218 -0
- package/styles/appbar/bootstrap-dark.scss +3 -1
- package/styles/appbar/bootstrap.scss +3 -1
- package/styles/appbar/bootstrap4.scss +3 -1
- package/styles/appbar/bootstrap5-dark.scss +3 -1
- package/styles/appbar/bootstrap5.scss +3 -1
- package/styles/appbar/fabric-dark.scss +3 -1
- package/styles/appbar/fabric.scss +3 -1
- package/styles/appbar/fluent-dark.scss +3 -1
- package/styles/appbar/fluent.scss +3 -1
- package/styles/appbar/highcontrast-light.scss +3 -1
- package/styles/appbar/highcontrast.scss +3 -1
- package/styles/appbar/material-dark.scss +3 -1
- package/styles/appbar/material.scss +3 -1
- package/styles/appbar/material3-dark.scss +3 -1
- package/styles/appbar/material3.scss +3 -1
- package/styles/appbar/tailwind-dark.scss +3 -1
- package/styles/appbar/tailwind.scss +3 -1
- package/styles/breadcrumb/_all.scss +3 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +59 -0
- package/styles/breadcrumb/_fabric-dark-definition.scss +59 -0
- package/styles/breadcrumb/_fabric-definition.scss +59 -0
- package/styles/breadcrumb/_fluent-dark-definition.scss +1 -0
- package/styles/breadcrumb/_fluent-definition.scss +62 -0
- package/styles/breadcrumb/_fusionnew-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +61 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -0
- package/styles/breadcrumb/_layout.scss +491 -0
- package/styles/breadcrumb/_material-dark-definition.scss +50 -0
- package/styles/breadcrumb/_material-definition.scss +50 -0
- package/styles/breadcrumb/_material3-dark-definition.scss +1 -0
- package/styles/breadcrumb/_material3-definition.scss +60 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +1 -0
- package/styles/breadcrumb/_tailwind-definition.scss +60 -0
- package/styles/breadcrumb/_theme.scss +178 -0
- package/styles/breadcrumb/bootstrap-dark.scss +4 -1
- package/styles/breadcrumb/bootstrap.scss +4 -1
- package/styles/breadcrumb/bootstrap4.scss +4 -1
- package/styles/breadcrumb/bootstrap5-dark.scss +4 -1
- package/styles/breadcrumb/bootstrap5.scss +4 -1
- package/styles/breadcrumb/fabric-dark.scss +4 -1
- package/styles/breadcrumb/fabric.scss +4 -1
- package/styles/breadcrumb/fluent-dark.scss +4 -1
- package/styles/breadcrumb/fluent.scss +4 -1
- package/styles/breadcrumb/highcontrast-light.scss +4 -1
- package/styles/breadcrumb/highcontrast.scss +4 -1
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap4.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap5.scss +25 -0
- package/styles/breadcrumb/icons/_fabric-dark.scss +14 -0
- package/styles/breadcrumb/icons/_fabric.scss +14 -0
- package/styles/breadcrumb/icons/_fluent-dark.scss +1 -0
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_fusionnew.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +14 -0
- package/styles/breadcrumb/icons/_highcontrast.scss +14 -0
- package/styles/breadcrumb/icons/_material-dark.scss +25 -0
- package/styles/breadcrumb/icons/_material.scss +25 -0
- package/styles/breadcrumb/icons/_material3-dark.scss +1 -0
- package/styles/breadcrumb/icons/_material3.scss +14 -0
- package/styles/breadcrumb/icons/_tailwind-dark.scss +25 -0
- package/styles/breadcrumb/icons/_tailwind.scss +25 -0
- package/styles/breadcrumb/material-dark.scss +4 -1
- package/styles/breadcrumb/material.scss +4 -1
- package/styles/breadcrumb/material3-dark.scss +4 -1
- package/styles/breadcrumb/material3.scss +4 -1
- package/styles/breadcrumb/tailwind-dark.scss +4 -1
- package/styles/breadcrumb/tailwind.scss +4 -1
- package/styles/carousel/_all.scss +2 -0
- package/styles/carousel/_bootstrap-dark-definition.scss +27 -0
- package/styles/carousel/_bootstrap-definition.scss +27 -0
- package/styles/carousel/_bootstrap4-definition.scss +27 -0
- package/styles/carousel/_bootstrap5-dark-definition.scss +1 -0
- package/styles/carousel/_bootstrap5-definition.scss +27 -0
- package/styles/carousel/_fabric-dark-definition.scss +27 -0
- package/styles/carousel/_fabric-definition.scss +27 -0
- package/styles/carousel/_fluent-dark-definition.scss +1 -0
- package/styles/carousel/_fluent-definition.scss +27 -0
- package/styles/carousel/_fusionnew-definition.scss +27 -0
- package/styles/carousel/_highcontrast-definition.scss +27 -0
- package/styles/carousel/_highcontrast-light-definition.scss +27 -0
- package/styles/carousel/_layout.scss +254 -0
- package/styles/carousel/_material-dark-definition.scss +27 -0
- package/styles/carousel/_material-definition.scss +27 -0
- package/styles/carousel/_material3-dark-definition.scss +1 -0
- package/styles/carousel/_material3-definition.scss +28 -0
- package/styles/carousel/_tailwind-dark-definition.scss +1 -0
- package/styles/carousel/_tailwind-definition.scss +27 -0
- package/styles/carousel/_theme.scss +85 -0
- package/styles/carousel/bootstrap-dark.scss +5 -1
- package/styles/carousel/bootstrap.scss +5 -1
- package/styles/carousel/bootstrap4.scss +5 -1
- package/styles/carousel/bootstrap5-dark.scss +5 -1
- package/styles/carousel/bootstrap5.scss +5 -1
- package/styles/carousel/fabric-dark.scss +5 -1
- package/styles/carousel/fabric.scss +5 -1
- package/styles/carousel/fluent-dark.scss +5 -1
- package/styles/carousel/fluent.scss +5 -1
- package/styles/carousel/highcontrast-light.scss +5 -1
- package/styles/carousel/highcontrast.scss +5 -1
- package/styles/carousel/icons/_bootstrap-dark.scss +30 -0
- package/styles/carousel/icons/_bootstrap.scss +30 -0
- package/styles/carousel/icons/_bootstrap4.scss +30 -0
- package/styles/carousel/icons/_bootstrap5-dark.scss +1 -0
- package/styles/carousel/icons/_bootstrap5.scss +30 -0
- package/styles/carousel/icons/_fabric-dark.scss +30 -0
- package/styles/carousel/icons/_fabric.scss +30 -0
- package/styles/carousel/icons/_fluent-dark.scss +1 -0
- package/styles/carousel/icons/_fluent.scss +30 -0
- package/styles/carousel/icons/_fusionnew.scss +30 -0
- package/styles/carousel/icons/_highcontrast-light.scss +30 -0
- package/styles/carousel/icons/_highcontrast.scss +30 -0
- package/styles/carousel/icons/_material-dark.scss +30 -0
- package/styles/carousel/icons/_material.scss +30 -0
- package/styles/carousel/icons/_material3-dark.scss +1 -0
- package/styles/carousel/icons/_material3.scss +30 -0
- package/styles/carousel/icons/_tailwind-dark.scss +1 -0
- package/styles/carousel/icons/_tailwind.scss +30 -0
- package/styles/carousel/material-dark.scss +5 -1
- package/styles/carousel/material.scss +5 -1
- package/styles/carousel/material3-dark.scss +5 -1
- package/styles/carousel/material3.scss +5 -1
- package/styles/carousel/tailwind-dark.scss +5 -1
- package/styles/carousel/tailwind.scss +5 -1
- package/styles/context-menu/_all.scss +2 -0
- package/styles/context-menu/_bootstrap-dark-definition.scss +53 -0
- package/styles/context-menu/_bootstrap-definition.scss +50 -0
- package/styles/context-menu/_bootstrap4-definition.scss +50 -0
- package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/context-menu/_bootstrap5-definition.scss +52 -0
- package/styles/context-menu/_fabric-dark-definition.scss +53 -0
- package/styles/context-menu/_fabric-definition.scss +50 -0
- package/styles/context-menu/_fluent-dark-definition.scss +1 -0
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_fusionnew-definition.scss +52 -0
- package/styles/context-menu/_highcontrast-definition.scss +50 -0
- package/styles/context-menu/_highcontrast-light-definition.scss +53 -0
- package/styles/context-menu/_layout-mixin.scss +170 -0
- package/styles/context-menu/_layout.scss +149 -0
- package/styles/context-menu/_material-dark-definition.scss +53 -0
- package/styles/context-menu/_material-definition.scss +50 -0
- package/styles/context-menu/_material3-dark-definition.scss +1 -0
- package/styles/context-menu/_material3-definition.scss +52 -0
- package/styles/context-menu/_tailwind-dark-definition.scss +1 -0
- package/styles/context-menu/_tailwind-definition.scss +53 -0
- package/styles/context-menu/_theme-mixin.scss +63 -0
- package/styles/context-menu/_theme.scss +55 -0
- package/styles/context-menu/bootstrap-dark.scss +7 -1
- package/styles/context-menu/bootstrap.scss +7 -1
- package/styles/context-menu/bootstrap4.scss +7 -1
- package/styles/context-menu/bootstrap5-dark.scss +7 -1
- package/styles/context-menu/bootstrap5.scss +7 -1
- package/styles/context-menu/fabric-dark.scss +7 -1
- package/styles/context-menu/fabric.scss +7 -1
- package/styles/context-menu/fluent-dark.scss +7 -1
- package/styles/context-menu/fluent.scss +7 -1
- package/styles/context-menu/highcontrast-light.scss +7 -1
- package/styles/context-menu/highcontrast.scss +7 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +33 -0
- package/styles/context-menu/icons/_bootstrap.scss +33 -0
- package/styles/context-menu/icons/_bootstrap4.scss +33 -0
- package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +33 -0
- package/styles/context-menu/icons/_fabric-dark.scss +33 -0
- package/styles/context-menu/icons/_fabric.scss +33 -0
- package/styles/context-menu/icons/_fluent-dark.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +33 -0
- package/styles/context-menu/icons/_fusionnew.scss +33 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +33 -0
- package/styles/context-menu/icons/_highcontrast.scss +33 -0
- package/styles/context-menu/icons/_material-dark.scss +33 -0
- package/styles/context-menu/icons/_material.scss +33 -0
- package/styles/context-menu/icons/_material3-dark.scss +1 -0
- package/styles/context-menu/icons/_material3.scss +33 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +33 -0
- package/styles/context-menu/icons/_tailwind.scss +33 -0
- package/styles/context-menu/material-dark.scss +7 -1
- package/styles/context-menu/material.scss +7 -1
- package/styles/context-menu/material3-dark.scss +7 -1
- package/styles/context-menu/material3.scss +7 -1
- package/styles/context-menu/tailwind-dark.scss +7 -1
- package/styles/context-menu/tailwind.scss +7 -1
- package/styles/h-scroll/_all.scss +2 -0
- package/styles/h-scroll/_bootstrap-dark-definition.scss +57 -0
- package/styles/h-scroll/_bootstrap-definition.scss +56 -0
- package/styles/h-scroll/_bootstrap4-definition.scss +56 -0
- package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/h-scroll/_bootstrap5-definition.scss +83 -0
- package/styles/h-scroll/_fabric-dark-definition.scss +58 -0
- package/styles/h-scroll/_fabric-definition.scss +55 -0
- package/styles/h-scroll/_fluent-dark-definition.scss +1 -0
- package/styles/h-scroll/_fluent-definition.scss +83 -0
- package/styles/h-scroll/_fusionnew-definition.scss +83 -0
- package/styles/h-scroll/_highcontrast-definition.scss +56 -0
- package/styles/h-scroll/_highcontrast-light-definition.scss +59 -0
- package/styles/h-scroll/_layout.scss +198 -0
- package/styles/h-scroll/_material-dark-definition.scss +85 -0
- package/styles/h-scroll/_material-definition.scss +82 -0
- package/styles/h-scroll/_material3-dark-definition.scss +1 -0
- package/styles/h-scroll/_material3-definition.scss +83 -0
- package/styles/h-scroll/_tailwind-dark-definition.scss +1 -0
- package/styles/h-scroll/_tailwind-definition.scss +83 -0
- package/styles/h-scroll/_theme.scss +131 -0
- package/styles/h-scroll/bootstrap-dark.scss +4 -1
- package/styles/h-scroll/bootstrap.scss +4 -1
- package/styles/h-scroll/bootstrap4.scss +4 -1
- package/styles/h-scroll/bootstrap5-dark.scss +4 -1
- package/styles/h-scroll/bootstrap5.scss +4 -1
- package/styles/h-scroll/fabric-dark.scss +4 -1
- package/styles/h-scroll/fabric.scss +4 -1
- package/styles/h-scroll/fluent-dark.scss +4 -1
- package/styles/h-scroll/fluent.scss +4 -1
- package/styles/h-scroll/highcontrast-light.scss +4 -1
- package/styles/h-scroll/highcontrast.scss +4 -1
- package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -0
- package/styles/h-scroll/icons/_bootstrap.scss +49 -0
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -0
- package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -0
- package/styles/h-scroll/icons/_fabric.scss +49 -0
- package/styles/h-scroll/icons/_fluent-dark.scss +1 -0
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_fusionnew.scss +49 -0
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -0
- package/styles/h-scroll/icons/_highcontrast.scss +49 -0
- package/styles/h-scroll/icons/_material-dark.scss +49 -0
- package/styles/h-scroll/icons/_material.scss +49 -0
- package/styles/h-scroll/icons/_material3-dark.scss +1 -0
- package/styles/h-scroll/icons/_material3.scss +49 -0
- package/styles/h-scroll/icons/_tailwind-dark.scss +1 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -0
- package/styles/h-scroll/material-dark.scss +4 -1
- package/styles/h-scroll/material.scss +4 -1
- package/styles/h-scroll/material3-dark.scss +4 -1
- package/styles/h-scroll/material3.scss +4 -1
- package/styles/h-scroll/tailwind-dark.scss +4 -1
- package/styles/h-scroll/tailwind.scss +4 -1
- package/styles/material3-dark.css +0 -672
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +68 -1400
- package/styles/material3.scss +1 -0
- package/styles/menu/_all.scss +2 -0
- package/styles/menu/_bootstrap-dark-definition.scss +64 -0
- package/styles/menu/_bootstrap-definition.scss +65 -0
- package/styles/menu/_bootstrap4-definition.scss +64 -0
- package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/menu/_bootstrap5-definition.scss +67 -0
- package/styles/menu/_fabric-dark-definition.scss +64 -0
- package/styles/menu/_fabric-definition.scss +64 -0
- package/styles/menu/_fluent-dark-definition.scss +1 -0
- package/styles/menu/_fluent-definition.scss +67 -0
- package/styles/menu/_fusionnew-definition.scss +67 -0
- package/styles/menu/_highcontrast-definition.scss +65 -0
- package/styles/menu/_highcontrast-light-definition.scss +61 -0
- package/styles/menu/_layout.scss +717 -0
- package/styles/menu/_material-dark-definition.scss +64 -0
- package/styles/menu/_material-definition.scss +64 -0
- package/styles/menu/_material3-dark-definition.scss +1 -0
- package/styles/menu/_material3-definition.scss +67 -0
- package/styles/menu/_tailwind-dark-definition.scss +1 -0
- package/styles/menu/_tailwind-definition.scss +66 -0
- package/styles/menu/_theme.scss +301 -0
- package/styles/menu/bootstrap-dark.scss +8 -1
- package/styles/menu/bootstrap.scss +8 -1
- package/styles/menu/bootstrap4.scss +8 -1
- package/styles/menu/bootstrap5-dark.scss +8 -1
- package/styles/menu/bootstrap5.scss +8 -1
- package/styles/menu/fabric-dark.scss +8 -1
- package/styles/menu/fabric.scss +8 -1
- package/styles/menu/fluent-dark.scss +8 -1
- package/styles/menu/fluent.scss +8 -1
- package/styles/menu/highcontrast-light.scss +8 -1
- package/styles/menu/highcontrast.scss +8 -1
- package/styles/menu/icons/_bootstrap-dark.scss +134 -0
- package/styles/menu/icons/_bootstrap.scss +134 -0
- package/styles/menu/icons/_bootstrap4.scss +134 -0
- package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +134 -0
- package/styles/menu/icons/_fabric-dark.scss +134 -0
- package/styles/menu/icons/_fabric.scss +134 -0
- package/styles/menu/icons/_fluent-dark.scss +1 -0
- package/styles/menu/icons/_fluent.scss +134 -0
- package/styles/menu/icons/_fusionnew.scss +134 -0
- package/styles/menu/icons/_highcontrast-light.scss +134 -0
- package/styles/menu/icons/_highcontrast.scss +134 -0
- package/styles/menu/icons/_material-dark.scss +134 -0
- package/styles/menu/icons/_material.scss +134 -0
- package/styles/menu/icons/_material3-dark.scss +1 -0
- package/styles/menu/icons/_material3.scss +134 -0
- package/styles/menu/icons/_tailwind-dark.scss +134 -0
- package/styles/menu/icons/_tailwind.scss +134 -0
- package/styles/menu/material-dark.scss +8 -1
- package/styles/menu/material.scss +8 -1
- package/styles/menu/material3-dark.scss +8 -1
- package/styles/menu/material3.scss +8 -1
- package/styles/menu/tailwind-dark.scss +8 -1
- package/styles/menu/tailwind.scss +8 -1
- package/styles/pager/_all.scss +2 -0
- package/styles/pager/_bootstrap-dark-definition.scss +135 -0
- package/styles/pager/_bootstrap-definition.scss +135 -0
- package/styles/pager/_bootstrap4-definition.scss +135 -0
- package/styles/pager/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pager/_bootstrap5-definition.scss +150 -0
- package/styles/pager/_fabric-dark-definition.scss +135 -0
- package/styles/pager/_fabric-definition.scss +133 -0
- package/styles/pager/_fluent-dark-definition.scss +1 -0
- package/styles/pager/_fluent-definition.scss +137 -0
- package/styles/pager/_fusionnew-definition.scss +150 -0
- package/styles/pager/_highcontrast-definition.scss +133 -0
- package/styles/pager/_highcontrast-light-definition.scss +135 -0
- package/styles/pager/_layout.scss +911 -0
- package/styles/pager/_material-dark-definition.scss +136 -0
- package/styles/pager/_material-definition.scss +134 -0
- package/styles/pager/_material3-dark-definition.scss +1 -0
- package/styles/pager/_material3-definition.scss +150 -0
- package/styles/pager/_tailwind-dark-definition.scss +1 -0
- package/styles/pager/_tailwind-definition.scss +136 -0
- package/styles/pager/_theme.scss +159 -0
- package/styles/pager/bootstrap-dark.scss +4 -1
- package/styles/pager/bootstrap.scss +4 -1
- package/styles/pager/bootstrap4.scss +4 -1
- package/styles/pager/bootstrap5-dark.scss +4 -1
- package/styles/pager/bootstrap5.scss +4 -1
- package/styles/pager/fabric-dark.scss +4 -1
- package/styles/pager/fabric.scss +4 -1
- package/styles/pager/fluent-dark.scss +4 -1
- package/styles/pager/fluent.scss +4 -1
- package/styles/pager/highcontrast-light.scss +4 -1
- package/styles/pager/highcontrast.scss +4 -1
- package/styles/pager/icons/_bootstrap-dark.scss +50 -0
- package/styles/pager/icons/_bootstrap.scss +50 -0
- package/styles/pager/icons/_bootstrap4.scss +50 -0
- package/styles/pager/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pager/icons/_bootstrap5.scss +50 -0
- package/styles/pager/icons/_fabric-dark.scss +50 -0
- package/styles/pager/icons/_fabric.scss +50 -0
- package/styles/pager/icons/_fluent-dark.scss +1 -0
- package/styles/pager/icons/_fluent.scss +50 -0
- package/styles/pager/icons/_fusionnew.scss +50 -0
- package/styles/pager/icons/_highcontrast-light.scss +50 -0
- package/styles/pager/icons/_highcontrast.scss +46 -0
- package/styles/pager/icons/_material-dark.scss +50 -0
- package/styles/pager/icons/_material.scss +46 -0
- package/styles/pager/icons/_material3-dark.scss +1 -0
- package/styles/pager/icons/_material3.scss +50 -0
- package/styles/pager/icons/_tailwind-dark.scss +1 -0
- package/styles/pager/icons/_tailwind.scss +50 -0
- package/styles/pager/material-dark.scss +4 -1
- package/styles/pager/material.scss +4 -1
- package/styles/pager/material3-dark.scss +4 -1
- package/styles/pager/material3.scss +4 -1
- package/styles/pager/tailwind-dark.scss +4 -1
- package/styles/pager/tailwind.scss +4 -1
- package/styles/sidebar/_all.scss +3 -0
- package/styles/sidebar/_bootstrap-dark-definition.scss +4 -0
- package/styles/sidebar/_bootstrap-definition.scss +4 -0
- package/styles/sidebar/_bootstrap4-definition.scss +4 -0
- package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/sidebar/_bootstrap5-definition.scss +6 -0
- package/styles/sidebar/_fabric-dark-definition.scss +4 -0
- package/styles/sidebar/_fabric-definition.scss +4 -0
- package/styles/sidebar/_fluent-dark-definition.scss +1 -0
- package/styles/sidebar/_fluent-definition.scss +6 -0
- package/styles/sidebar/_fusionnew-definition.scss +6 -0
- package/styles/sidebar/_highcontrast-definition.scss +4 -0
- package/styles/sidebar/_highcontrast-light-definition.scss +4 -0
- package/styles/sidebar/_icons.scss +1 -0
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_material-dark-definition.scss +4 -0
- package/styles/sidebar/_material-definition.scss +6 -0
- package/styles/sidebar/_material3-dark-definition.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +7 -0
- package/styles/sidebar/_tailwind-dark-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +6 -0
- package/styles/sidebar/_theme.scss +182 -0
- package/styles/sidebar/bootstrap-dark.scss +3 -1
- package/styles/sidebar/bootstrap.scss +3 -1
- package/styles/sidebar/bootstrap4.scss +3 -1
- package/styles/sidebar/bootstrap5-dark.scss +3 -1
- package/styles/sidebar/bootstrap5.scss +3 -1
- package/styles/sidebar/fabric-dark.scss +3 -1
- package/styles/sidebar/fabric.scss +3 -1
- package/styles/sidebar/fluent-dark.scss +3 -1
- package/styles/sidebar/fluent.scss +3 -1
- package/styles/sidebar/highcontrast-light.scss +3 -1
- package/styles/sidebar/highcontrast.scss +3 -1
- package/styles/sidebar/material-dark.scss +3 -1
- package/styles/sidebar/material.scss +3 -1
- package/styles/sidebar/material3-dark.scss +3 -1
- package/styles/sidebar/material3.scss +3 -1
- package/styles/sidebar/tailwind-dark.scss +3 -1
- package/styles/sidebar/tailwind.scss +3 -1
- package/styles/tab/_all.scss +2 -0
- package/styles/tab/_bootstrap-dark-definition.scss +656 -0
- package/styles/tab/_bootstrap-definition.scss +666 -0
- package/styles/tab/_bootstrap4-definition.scss +670 -0
- package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
- package/styles/tab/_bootstrap5-definition.scss +660 -0
- package/styles/tab/_fabric-dark-definition.scss +665 -0
- package/styles/tab/_fabric-definition.scss +680 -0
- package/styles/tab/_fluent-dark-definition.scss +1 -0
- package/styles/tab/_fluent-definition.scss +668 -0
- package/styles/tab/_fusionnew-definition.scss +660 -0
- package/styles/tab/_highcontrast-definition.scss +704 -0
- package/styles/tab/_highcontrast-light-definition.scss +692 -0
- package/styles/tab/_icons.scss +36 -0
- package/styles/tab/_layout.scss +3433 -0
- package/styles/tab/_material-dark-definition.scss +676 -0
- package/styles/tab/_material-definition.scss +686 -0
- package/styles/tab/_material3-dark-definition.scss +1 -0
- package/styles/tab/_material3-definition.scss +661 -0
- package/styles/tab/_tailwind-dark-definition.scss +1 -0
- package/styles/tab/_tailwind-definition.scss +689 -0
- package/styles/tab/_theme.scss +1528 -0
- package/styles/tab/bootstrap-dark.scss +5 -1
- package/styles/tab/bootstrap.scss +5 -1
- package/styles/tab/bootstrap4.scss +5 -1
- package/styles/tab/bootstrap5-dark.scss +5 -1
- package/styles/tab/bootstrap5.scss +5 -1
- package/styles/tab/fabric-dark.scss +5 -1
- package/styles/tab/fabric.scss +5 -1
- package/styles/tab/fluent-dark.scss +5 -1
- package/styles/tab/fluent.scss +5 -1
- package/styles/tab/highcontrast-light.scss +5 -1
- package/styles/tab/highcontrast.scss +5 -1
- package/styles/tab/icons/_bootstrap-dark.scss +100 -0
- package/styles/tab/icons/_bootstrap.scss +100 -0
- package/styles/tab/icons/_bootstrap4.scss +103 -0
- package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +92 -0
- package/styles/tab/icons/_fabric-dark.scss +100 -0
- package/styles/tab/icons/_fabric.scss +100 -0
- package/styles/tab/icons/_fluent-dark.scss +1 -0
- package/styles/tab/icons/_fluent.scss +100 -0
- package/styles/tab/icons/_fusionnew.scss +92 -0
- package/styles/tab/icons/_highcontrast-light.scss +92 -0
- package/styles/tab/icons/_highcontrast.scss +103 -0
- package/styles/tab/icons/_material-dark.scss +92 -0
- package/styles/tab/icons/_material.scss +92 -0
- package/styles/tab/icons/_material3-dark.scss +1 -0
- package/styles/tab/icons/_material3.scss +92 -0
- package/styles/tab/icons/_tailwind-dark.scss +1 -0
- package/styles/tab/icons/_tailwind.scss +92 -0
- package/styles/tab/material-dark.scss +5 -1
- package/styles/tab/material.scss +5 -1
- package/styles/tab/material3-dark.scss +5 -1
- package/styles/tab/material3.scss +5 -1
- package/styles/tab/tailwind-dark.scss +5 -1
- package/styles/tab/tailwind.scss +5 -1
- package/styles/toolbar/_all.scss +2 -0
- package/styles/toolbar/_bootstrap-dark-definition.scss +208 -0
- package/styles/toolbar/_bootstrap-definition.scss +206 -0
- package/styles/toolbar/_bootstrap4-definition.scss +211 -0
- package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/toolbar/_bootstrap5-definition.scss +220 -0
- package/styles/toolbar/_fabric-dark-definition.scss +222 -0
- package/styles/toolbar/_fabric-definition.scss +208 -0
- package/styles/toolbar/_fluent-dark-definition.scss +1 -0
- package/styles/toolbar/_fluent-definition.scss +210 -0
- package/styles/toolbar/_fusionnew-definition.scss +220 -0
- package/styles/toolbar/_highcontrast-definition.scss +218 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +233 -0
- package/styles/toolbar/_layout.scss +1030 -0
- package/styles/toolbar/_material-dark-definition.scss +247 -0
- package/styles/toolbar/_material-definition.scss +235 -0
- package/styles/toolbar/_material3-dark-definition.scss +1 -0
- package/styles/toolbar/_material3-definition.scss +220 -0
- package/styles/toolbar/_tailwind-dark-definition.scss +1 -0
- package/styles/toolbar/_tailwind-definition.scss +210 -0
- package/styles/toolbar/_theme.scss +353 -0
- package/styles/toolbar/bootstrap-dark.scss +8 -1
- package/styles/toolbar/bootstrap.scss +8 -1
- package/styles/toolbar/bootstrap4.scss +8 -1
- package/styles/toolbar/bootstrap5-dark.scss +8 -1
- package/styles/toolbar/bootstrap5.scss +8 -1
- package/styles/toolbar/fabric-dark.scss +8 -1
- package/styles/toolbar/fabric.scss +8 -1
- package/styles/toolbar/fluent-dark.scss +8 -1
- package/styles/toolbar/fluent.scss +8 -1
- package/styles/toolbar/highcontrast-light.scss +8 -1
- package/styles/toolbar/highcontrast.scss +8 -1
- package/styles/toolbar/icons/_bootstrap-dark.scss +16 -0
- package/styles/toolbar/icons/_bootstrap.scss +16 -0
- package/styles/toolbar/icons/_bootstrap4.scss +16 -0
- package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/toolbar/icons/_bootstrap5.scss +16 -0
- package/styles/toolbar/icons/_fabric-dark.scss +16 -0
- package/styles/toolbar/icons/_fabric.scss +16 -0
- package/styles/toolbar/icons/_fluent-dark.scss +1 -0
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_fusionnew.scss +16 -0
- package/styles/toolbar/icons/_highcontrast-light.scss +16 -0
- package/styles/toolbar/icons/_highcontrast.scss +16 -0
- package/styles/toolbar/icons/_material-dark.scss +16 -0
- package/styles/toolbar/icons/_material.scss +16 -0
- package/styles/toolbar/icons/_material3-dark.scss +1 -0
- package/styles/toolbar/icons/_material3.scss +16 -0
- package/styles/toolbar/icons/_tailwind-dark.scss +1 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -0
- package/styles/toolbar/material-dark.scss +8 -1
- package/styles/toolbar/material.scss +8 -1
- package/styles/toolbar/material3-dark.scss +8 -1
- package/styles/toolbar/material3.scss +8 -1
- package/styles/toolbar/tailwind-dark.scss +8 -1
- package/styles/toolbar/tailwind.scss +8 -1
- package/styles/treeview/_all.scss +2 -0
- package/styles/treeview/_bootstrap-dark-definition.scss +118 -0
- package/styles/treeview/_bootstrap-definition.scss +113 -0
- package/styles/treeview/_bootstrap4-definition.scss +141 -0
- package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -0
- package/styles/treeview/_fabric-dark-definition.scss +116 -0
- package/styles/treeview/_fabric-definition.scss +112 -0
- package/styles/treeview/_fluent-dark-definition.scss +1 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_fusionnew-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +118 -0
- package/styles/treeview/_highcontrast-light-definition.scss +123 -0
- package/styles/treeview/_layout.scss +1056 -0
- package/styles/treeview/_material-dark-definition.scss +114 -0
- package/styles/treeview/_material-definition.scss +112 -0
- package/styles/treeview/_material3-dark-definition.scss +1 -0
- package/styles/treeview/_material3-definition.scss +121 -0
- package/styles/treeview/_tailwind-dark-definition.scss +1 -0
- package/styles/treeview/_tailwind-definition.scss +124 -0
- package/styles/treeview/_theme.scss +387 -0
- package/styles/treeview/bootstrap-dark.scss +6 -1
- package/styles/treeview/bootstrap.scss +6 -1
- package/styles/treeview/bootstrap4.scss +6 -1
- package/styles/treeview/bootstrap5-dark.scss +6 -1
- package/styles/treeview/bootstrap5.scss +6 -1
- package/styles/treeview/fabric-dark.scss +6 -1
- package/styles/treeview/fabric.scss +6 -1
- package/styles/treeview/fluent-dark.scss +6 -1
- package/styles/treeview/fluent.scss +6 -1
- package/styles/treeview/highcontrast-light.scss +6 -1
- package/styles/treeview/highcontrast.scss +6 -1
- package/styles/treeview/icons/_bootstrap-dark.scss +39 -0
- package/styles/treeview/icons/_bootstrap.scss +39 -0
- package/styles/treeview/icons/_bootstrap4.scss +39 -0
- package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -0
- package/styles/treeview/icons/_fabric-dark.scss +43 -0
- package/styles/treeview/icons/_fabric.scss +43 -0
- package/styles/treeview/icons/_fluent-dark.scss +1 -0
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_fusionnew.scss +43 -0
- package/styles/treeview/icons/_highcontrast-light.scss +43 -0
- package/styles/treeview/icons/_highcontrast.scss +43 -0
- package/styles/treeview/icons/_material-dark.scss +43 -0
- package/styles/treeview/icons/_material.scss +43 -0
- package/styles/treeview/icons/_material3-dark.scss +1 -0
- package/styles/treeview/icons/_material3.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -0
- package/styles/treeview/icons/_tailwind.scss +43 -0
- package/styles/treeview/material-dark.scss +6 -1
- package/styles/treeview/material.scss +6 -1
- package/styles/treeview/material3-dark.scss +6 -1
- package/styles/treeview/material3.scss +6 -1
- package/styles/treeview/tailwind-dark.scss +6 -1
- package/styles/treeview/tailwind.scss +6 -1
- package/styles/v-scroll/_all.scss +2 -0
- package/styles/v-scroll/_bootstrap-dark-definition.scss +51 -0
- package/styles/v-scroll/_bootstrap-definition.scss +49 -0
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -0
- package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
- package/styles/v-scroll/_fabric-dark-definition.scss +52 -0
- package/styles/v-scroll/_fabric-definition.scss +50 -0
- package/styles/v-scroll/_fluent-dark-definition.scss +1 -0
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_fusionnew-definition.scss +49 -0
- package/styles/v-scroll/_highcontrast-definition.scss +50 -0
- package/styles/v-scroll/_highcontrast-light-definition.scss +52 -0
- package/styles/v-scroll/_layout.scss +162 -0
- package/styles/v-scroll/_material-dark-definition.scss +79 -0
- package/styles/v-scroll/_material-definition.scss +77 -0
- package/styles/v-scroll/_material3-dark-definition.scss +1 -0
- package/styles/v-scroll/_material3-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-dark-definition.scss +1 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -0
- package/styles/v-scroll/_theme.scss +108 -0
- package/styles/v-scroll/bootstrap-dark.scss +4 -1
- package/styles/v-scroll/bootstrap.scss +4 -1
- package/styles/v-scroll/bootstrap4.scss +4 -1
- package/styles/v-scroll/bootstrap5-dark.scss +4 -1
- package/styles/v-scroll/bootstrap5.scss +4 -1
- package/styles/v-scroll/fabric-dark.scss +4 -1
- package/styles/v-scroll/fabric.scss +4 -1
- package/styles/v-scroll/fluent-dark.scss +4 -1
- package/styles/v-scroll/fluent.scss +4 -1
- package/styles/v-scroll/highcontrast-light.scss +4 -1
- package/styles/v-scroll/highcontrast.scss +4 -1
- package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap4.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
- package/styles/v-scroll/icons/_fabric-dark.scss +27 -0
- package/styles/v-scroll/icons/_fabric.scss +27 -0
- package/styles/v-scroll/icons/_fluent-dark.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +27 -0
- package/styles/v-scroll/icons/_fusionnew.scss +27 -0
- package/styles/v-scroll/icons/_highcontrast-light.scss +27 -0
- package/styles/v-scroll/icons/_highcontrast.scss +27 -0
- package/styles/v-scroll/icons/_material-dark.scss +27 -0
- package/styles/v-scroll/icons/_material.scss +27 -0
- package/styles/v-scroll/icons/_material3-dark.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +27 -0
- package/styles/v-scroll/icons/_tailwind-dark.scss +1 -0
- package/styles/v-scroll/icons/_tailwind.scss +27 -0
- package/styles/v-scroll/material-dark.scss +4 -1
- package/styles/v-scroll/material.scss +4 -1
- package/styles/v-scroll/material3-dark.scss +4 -1
- package/styles/v-scroll/material3.scss +4 -1
- package/styles/v-scroll/tailwind-dark.scss +4 -1
- package/styles/v-scroll/tailwind.scss +4 -1
- package/syncfusion-ej2-angular-navigations.d.ts +5 -0
- package/@syncfusion/ej2-angular-navigations.es5.js +0 -2021
- package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-navigations.js +0 -1859
- package/@syncfusion/ej2-angular-navigations.js.map +0 -1
- package/CHANGELOG.md +0 -2165
- package/dist/ej2-angular-navigations.umd.js +0 -2116
- package/dist/ej2-angular-navigations.umd.js.map +0 -1
- package/dist/ej2-angular-navigations.umd.min.js +0 -11
- package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
- package/ej2-angular-navigations.d.ts +0 -14
- package/ej2-angular-navigations.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -155
- package/schematics/generators/accordion-default/index.d.ts +0 -3
- package/schematics/generators/accordion-default/index.js +0 -8
- package/schematics/generators/accordion-default/sample-details.d.ts +0 -5
- package/schematics/generators/accordion-default/sample-details.js +0 -7
- package/schematics/generators/accordion-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/accordion-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -49
- package/schematics/generators/accordion-default/schema.d.ts +0 -3
- package/schematics/generators/accordion-default/schema.js +0 -2
- package/schematics/generators/accordion-default/schema.json +0 -125
- package/schematics/generators/accordion-html-template/index.d.ts +0 -3
- package/schematics/generators/accordion-html-template/index.js +0 -8
- package/schematics/generators/accordion-html-template/sample-details.d.ts +0 -5
- package/schematics/generators/accordion-html-template/sample-details.js +0 -7
- package/schematics/generators/accordion-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -57
- package/schematics/generators/accordion-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -50
- package/schematics/generators/accordion-html-template/schema.d.ts +0 -3
- package/schematics/generators/accordion-html-template/schema.js +0 -2
- package/schematics/generators/accordion-html-template/schema.json +0 -125
- package/schematics/generators/accordion-multiple-expand/index.d.ts +0 -3
- package/schematics/generators/accordion-multiple-expand/index.js +0 -8
- package/schematics/generators/accordion-multiple-expand/sample-details.d.ts +0 -5
- package/schematics/generators/accordion-multiple-expand/sample-details.js +0 -7
- package/schematics/generators/accordion-multiple-expand/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/accordion-multiple-expand/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -49
- package/schematics/generators/accordion-multiple-expand/schema.d.ts +0 -3
- package/schematics/generators/accordion-multiple-expand/schema.js +0 -2
- package/schematics/generators/accordion-multiple-expand/schema.json +0 -125
- package/schematics/generators/accordion-nested/index.d.ts +0 -3
- package/schematics/generators/accordion-nested/index.js +0 -8
- package/schematics/generators/accordion-nested/sample-details.d.ts +0 -5
- package/schematics/generators/accordion-nested/sample-details.js +0 -7
- package/schematics/generators/accordion-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/accordion-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -104
- package/schematics/generators/accordion-nested/schema.d.ts +0 -3
- package/schematics/generators/accordion-nested/schema.js +0 -2
- package/schematics/generators/accordion-nested/schema.json +0 -125
- package/schematics/generators/contextmenu-default/index.d.ts +0 -3
- package/schematics/generators/contextmenu-default/index.js +0 -8
- package/schematics/generators/contextmenu-default/sample-details.d.ts +0 -5
- package/schematics/generators/contextmenu-default/sample-details.js +0 -7
- package/schematics/generators/contextmenu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -65
- package/schematics/generators/contextmenu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
- package/schematics/generators/contextmenu-default/schema.d.ts +0 -3
- package/schematics/generators/contextmenu-default/schema.js +0 -2
- package/schematics/generators/contextmenu-default/schema.json +0 -125
- package/schematics/generators/menu-default/index.d.ts +0 -3
- package/schematics/generators/menu-default/index.js +0 -8
- package/schematics/generators/menu-default/sample-details.d.ts +0 -5
- package/schematics/generators/menu-default/sample-details.js +0 -7
- package/schematics/generators/menu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -52
- package/schematics/generators/menu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/menu-default/schema.d.ts +0 -3
- package/schematics/generators/menu-default/schema.js +0 -2
- package/schematics/generators/menu-default/schema.json +0 -125
- package/schematics/generators/sidebar-backdrop/index.d.ts +0 -3
- package/schematics/generators/sidebar-backdrop/index.js +0 -8
- package/schematics/generators/sidebar-backdrop/sample-details.d.ts +0 -5
- package/schematics/generators/sidebar-backdrop/sample-details.js +0 -7
- package/schematics/generators/sidebar-backdrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -74
- package/schematics/generators/sidebar-backdrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -17
- package/schematics/generators/sidebar-backdrop/schema.d.ts +0 -3
- package/schematics/generators/sidebar-backdrop/schema.js +0 -2
- package/schematics/generators/sidebar-backdrop/schema.json +0 -125
- package/schematics/generators/sidebar-dock/index.d.ts +0 -3
- package/schematics/generators/sidebar-dock/index.js +0 -8
- package/schematics/generators/sidebar-dock/sample-details.d.ts +0 -5
- package/schematics/generators/sidebar-dock/sample-details.js +0 -7
- package/schematics/generators/sidebar-dock/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -170
- package/schematics/generators/sidebar-dock/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -41
- package/schematics/generators/sidebar-dock/schema.d.ts +0 -3
- package/schematics/generators/sidebar-dock/schema.js +0 -2
- package/schematics/generators/sidebar-dock/schema.json +0 -125
- package/schematics/generators/sidebar-target/index.d.ts +0 -3
- package/schematics/generators/sidebar-target/index.js +0 -8
- package/schematics/generators/sidebar-target/sample-details.d.ts +0 -5
- package/schematics/generators/sidebar-target/sample-details.js +0 -7
- package/schematics/generators/sidebar-target/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -91
- package/schematics/generators/sidebar-target/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
- package/schematics/generators/sidebar-target/schema.d.ts +0 -3
- package/schematics/generators/sidebar-target/schema.js +0 -2
- package/schematics/generators/sidebar-target/schema.json +0 -125
- package/schematics/generators/sidebar-types/index.d.ts +0 -3
- package/schematics/generators/sidebar-types/index.js +0 -8
- package/schematics/generators/sidebar-types/sample-details.d.ts +0 -5
- package/schematics/generators/sidebar-types/sample-details.js +0 -7
- package/schematics/generators/sidebar-types/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -134
- package/schematics/generators/sidebar-types/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -37
- package/schematics/generators/sidebar-types/schema.d.ts +0 -3
- package/schematics/generators/sidebar-types/schema.js +0 -2
- package/schematics/generators/sidebar-types/schema.json +0 -125
- package/schematics/generators/tab-html-template/index.d.ts +0 -3
- package/schematics/generators/tab-html-template/index.js +0 -8
- package/schematics/generators/tab-html-template/sample-details.d.ts +0 -5
- package/schematics/generators/tab-html-template/sample-details.js +0 -7
- package/schematics/generators/tab-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/tab-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -42
- package/schematics/generators/tab-html-template/schema.d.ts +0 -3
- package/schematics/generators/tab-html-template/schema.js +0 -2
- package/schematics/generators/tab-html-template/schema.json +0 -125
- package/schematics/generators/tab-icon/index.d.ts +0 -3
- package/schematics/generators/tab-icon/index.js +0 -8
- package/schematics/generators/tab-icon/sample-details.d.ts +0 -5
- package/schematics/generators/tab-icon/sample-details.js +0 -7
- package/schematics/generators/tab-icon/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
- package/schematics/generators/tab-icon/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -45
- package/schematics/generators/tab-icon/schema.d.ts +0 -3
- package/schematics/generators/tab-icon/schema.js +0 -2
- package/schematics/generators/tab-icon/schema.json +0 -125
- package/schematics/generators/tab-nested/index.d.ts +0 -3
- package/schematics/generators/tab-nested/index.js +0 -8
- package/schematics/generators/tab-nested/sample-details.d.ts +0 -5
- package/schematics/generators/tab-nested/sample-details.js +0 -7
- package/schematics/generators/tab-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/tab-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -71
- package/schematics/generators/tab-nested/schema.d.ts +0 -3
- package/schematics/generators/tab-nested/schema.js +0 -2
- package/schematics/generators/tab-nested/schema.json +0 -125
- package/schematics/generators/tab-popup/index.d.ts +0 -3
- package/schematics/generators/tab-popup/index.js +0 -8
- package/schematics/generators/tab-popup/sample-details.d.ts +0 -5
- package/schematics/generators/tab-popup/sample-details.js +0 -7
- package/schematics/generators/tab-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/tab-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
- package/schematics/generators/tab-popup/schema.d.ts +0 -3
- package/schematics/generators/tab-popup/schema.js +0 -2
- package/schematics/generators/tab-popup/schema.json +0 -125
- package/schematics/generators/tab-scrollable/index.d.ts +0 -3
- package/schematics/generators/tab-scrollable/index.js +0 -8
- package/schematics/generators/tab-scrollable/sample-details.d.ts +0 -5
- package/schematics/generators/tab-scrollable/sample-details.js +0 -7
- package/schematics/generators/tab-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/tab-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
- package/schematics/generators/tab-scrollable/schema.d.ts +0 -3
- package/schematics/generators/tab-scrollable/schema.js +0 -2
- package/schematics/generators/tab-scrollable/schema.json +0 -125
- package/schematics/generators/tab-vertical/index.d.ts +0 -3
- package/schematics/generators/tab-vertical/index.js +0 -8
- package/schematics/generators/tab-vertical/sample-details.d.ts +0 -5
- package/schematics/generators/tab-vertical/sample-details.js +0 -7
- package/schematics/generators/tab-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/tab-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
- package/schematics/generators/tab-vertical/schema.d.ts +0 -3
- package/schematics/generators/tab-vertical/schema.js +0 -2
- package/schematics/generators/tab-vertical/schema.json +0 -125
- package/schematics/generators/toolbar-alignment/index.d.ts +0 -3
- package/schematics/generators/toolbar-alignment/index.js +0 -8
- package/schematics/generators/toolbar-alignment/sample-details.d.ts +0 -5
- package/schematics/generators/toolbar-alignment/sample-details.js +0 -7
- package/schematics/generators/toolbar-alignment/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -97
- package/schematics/generators/toolbar-alignment/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -48
- package/schematics/generators/toolbar-alignment/schema.d.ts +0 -3
- package/schematics/generators/toolbar-alignment/schema.js +0 -2
- package/schematics/generators/toolbar-alignment/schema.json +0 -125
- package/schematics/generators/toolbar-extended/index.d.ts +0 -3
- package/schematics/generators/toolbar-extended/index.js +0 -8
- package/schematics/generators/toolbar-extended/sample-details.d.ts +0 -5
- package/schematics/generators/toolbar-extended/sample-details.js +0 -7
- package/schematics/generators/toolbar-extended/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
- package/schematics/generators/toolbar-extended/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
- package/schematics/generators/toolbar-extended/schema.d.ts +0 -3
- package/schematics/generators/toolbar-extended/schema.js +0 -2
- package/schematics/generators/toolbar-extended/schema.json +0 -125
- package/schematics/generators/toolbar-html-template/index.d.ts +0 -3
- package/schematics/generators/toolbar-html-template/index.js +0 -8
- package/schematics/generators/toolbar-html-template/sample-details.d.ts +0 -5
- package/schematics/generators/toolbar-html-template/sample-details.js +0 -7
- package/schematics/generators/toolbar-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/toolbar-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -16
- package/schematics/generators/toolbar-html-template/schema.d.ts +0 -3
- package/schematics/generators/toolbar-html-template/schema.js +0 -2
- package/schematics/generators/toolbar-html-template/schema.json +0 -125
- package/schematics/generators/toolbar-multi-row/index.d.ts +0 -3
- package/schematics/generators/toolbar-multi-row/index.js +0 -8
- package/schematics/generators/toolbar-multi-row/sample-details.d.ts +0 -5
- package/schematics/generators/toolbar-multi-row/sample-details.js +0 -7
- package/schematics/generators/toolbar-multi-row/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
- package/schematics/generators/toolbar-multi-row/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
- package/schematics/generators/toolbar-multi-row/schema.d.ts +0 -3
- package/schematics/generators/toolbar-multi-row/schema.js +0 -2
- package/schematics/generators/toolbar-multi-row/schema.json +0 -125
- package/schematics/generators/toolbar-popup/index.d.ts +0 -3
- package/schematics/generators/toolbar-popup/index.js +0 -8
- package/schematics/generators/toolbar-popup/sample-details.d.ts +0 -5
- package/schematics/generators/toolbar-popup/sample-details.js +0 -7
- package/schematics/generators/toolbar-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
- package/schematics/generators/toolbar-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
- package/schematics/generators/toolbar-popup/schema.d.ts +0 -3
- package/schematics/generators/toolbar-popup/schema.js +0 -2
- package/schematics/generators/toolbar-popup/schema.json +0 -125
- package/schematics/generators/toolbar-scrollable/index.d.ts +0 -3
- package/schematics/generators/toolbar-scrollable/index.js +0 -8
- package/schematics/generators/toolbar-scrollable/sample-details.d.ts +0 -5
- package/schematics/generators/toolbar-scrollable/sample-details.js +0 -7
- package/schematics/generators/toolbar-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
- package/schematics/generators/toolbar-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
- package/schematics/generators/toolbar-scrollable/schema.d.ts +0 -3
- package/schematics/generators/toolbar-scrollable/schema.js +0 -2
- package/schematics/generators/toolbar-scrollable/schema.json +0 -125
- package/schematics/generators/treeview-checkbox/index.d.ts +0 -3
- package/schematics/generators/treeview-checkbox/index.js +0 -8
- package/schematics/generators/treeview-checkbox/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-checkbox/sample-details.js +0 -7
- package/schematics/generators/treeview-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
- package/schematics/generators/treeview-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
- package/schematics/generators/treeview-checkbox/schema.d.ts +0 -3
- package/schematics/generators/treeview-checkbox/schema.js +0 -2
- package/schematics/generators/treeview-checkbox/schema.json +0 -125
- package/schematics/generators/treeview-default/index.d.ts +0 -3
- package/schematics/generators/treeview-default/index.js +0 -8
- package/schematics/generators/treeview-default/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-default/sample-details.js +0 -7
- package/schematics/generators/treeview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
- package/schematics/generators/treeview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
- package/schematics/generators/treeview-default/schema.d.ts +0 -3
- package/schematics/generators/treeview-default/schema.js +0 -2
- package/schematics/generators/treeview-default/schema.json +0 -125
- package/schematics/generators/treeview-draganddrop/index.d.ts +0 -3
- package/schematics/generators/treeview-draganddrop/index.js +0 -8
- package/schematics/generators/treeview-draganddrop/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-draganddrop/sample-details.js +0 -7
- package/schematics/generators/treeview-draganddrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
- package/schematics/generators/treeview-draganddrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
- package/schematics/generators/treeview-draganddrop/schema.d.ts +0 -3
- package/schematics/generators/treeview-draganddrop/schema.js +0 -2
- package/schematics/generators/treeview-draganddrop/schema.json +0 -125
- package/schematics/generators/treeview-multiselection/index.d.ts +0 -3
- package/schematics/generators/treeview-multiselection/index.js +0 -8
- package/schematics/generators/treeview-multiselection/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-multiselection/sample-details.js +0 -7
- package/schematics/generators/treeview-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
- package/schematics/generators/treeview-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
- package/schematics/generators/treeview-multiselection/schema.d.ts +0 -3
- package/schematics/generators/treeview-multiselection/schema.js +0 -2
- package/schematics/generators/treeview-multiselection/schema.json +0 -125
- package/schematics/generators/treeview-nodeediting/index.d.ts +0 -3
- package/schematics/generators/treeview-nodeediting/index.js +0 -8
- package/schematics/generators/treeview-nodeediting/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-nodeediting/sample-details.js +0 -7
- package/schematics/generators/treeview-nodeediting/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
- package/schematics/generators/treeview-nodeediting/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
- package/schematics/generators/treeview-nodeediting/schema.d.ts +0 -3
- package/schematics/generators/treeview-nodeediting/schema.js +0 -2
- package/schematics/generators/treeview-nodeediting/schema.json +0 -125
- package/schematics/generators/treeview-remotedata/index.d.ts +0 -3
- package/schematics/generators/treeview-remotedata/index.js +0 -8
- package/schematics/generators/treeview-remotedata/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-remotedata/sample-details.js +0 -7
- package/schematics/generators/treeview-remotedata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -12
- package/schematics/generators/treeview-remotedata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
- package/schematics/generators/treeview-remotedata/schema.d.ts +0 -3
- package/schematics/generators/treeview-remotedata/schema.js +0 -2
- package/schematics/generators/treeview-remotedata/schema.json +0 -125
- package/schematics/generators/treeview-treetemplate/index.d.ts +0 -3
- package/schematics/generators/treeview-treetemplate/index.js +0 -8
- package/schematics/generators/treeview-treetemplate/sample-details.d.ts +0 -5
- package/schematics/generators/treeview-treetemplate/sample-details.js +0 -7
- package/schematics/generators/treeview-treetemplate/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
- package/schematics/generators/treeview-treetemplate/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -21
- package/schematics/generators/treeview-treetemplate/schema.d.ts +0 -3
- package/schematics/generators/treeview-treetemplate/schema.js +0 -2
- package/schematics/generators/treeview-treetemplate/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
- package/src/appbar/appbar-all.module.d.ts +0 -5
- package/src/appbar/appbar.component.d.ts +0 -29
- package/src/appbar/appbar.module.d.ts +0 -5
|
@@ -1,16 +1,4 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
3
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
4
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
5
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
6
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
7
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
8
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
9
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
10
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
11
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
12
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
13
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
14
2
|
:root {
|
|
15
3
|
--color-sf-black: 0, 0, 0;
|
|
16
4
|
--color-sf-white: 255, 255, 255;
|
|
@@ -776,61 +764,6 @@
|
|
|
776
764
|
border-left-color: transparent;
|
|
777
765
|
}
|
|
778
766
|
|
|
779
|
-
:root {
|
|
780
|
-
--color-sf-black: 0, 0, 0;
|
|
781
|
-
--color-sf-white: 255, 255, 255;
|
|
782
|
-
--color-sf-primary: 208, 188, 255;
|
|
783
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
784
|
-
--color-sf-secondary: 204, 194, 220;
|
|
785
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
786
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
787
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
788
|
-
--color-sf-surface: 28, 27, 31;
|
|
789
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
790
|
-
--color-sf-background: var(--color-sf-surface);
|
|
791
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
792
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
793
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
794
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
795
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
796
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
797
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
798
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
799
|
-
--color-sf-on-background: 230, 225, 229;
|
|
800
|
-
--color-sf-outline: 147, 143, 153;
|
|
801
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
802
|
-
--color-sf-shadow: 0, 0, 0;
|
|
803
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
804
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
805
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
806
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
807
|
-
--color-sf-scrim: 0, 0, 0;
|
|
808
|
-
--color-sf-error: 242, 184, 181;
|
|
809
|
-
--color-sf-error-container: 140, 29, 24;
|
|
810
|
-
--color-sf-on-error: 96, 20, 16;
|
|
811
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
812
|
-
--color-sf-success: 83, 202, 23;
|
|
813
|
-
--color-sf-success-container: 22, 62, 2;
|
|
814
|
-
--color-sf-on-success: 13, 39, 0;
|
|
815
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
816
|
-
--color-sf-info: 71, 172, 251;
|
|
817
|
-
--color-sf-info-container: 0, 67, 120;
|
|
818
|
-
--color-sf-on-info: 0, 51, 91;
|
|
819
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
820
|
-
--color-sf-warning: 245, 180, 130;
|
|
821
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
822
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
823
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
824
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
825
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
826
|
-
--color-sf-success-text: 0, 0, 0;
|
|
827
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
828
|
-
--color-sf-info-text: 0, 0, 0;
|
|
829
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
830
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
831
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
832
|
-
}
|
|
833
|
-
|
|
834
767
|
/*! component's theme wise override definitions and variables */
|
|
835
768
|
@keyframes hscroll-popup-shadow {
|
|
836
769
|
0% {
|
|
@@ -1112,61 +1045,6 @@
|
|
|
1112
1045
|
visibility: visible;
|
|
1113
1046
|
}
|
|
1114
1047
|
|
|
1115
|
-
:root {
|
|
1116
|
-
--color-sf-black: 0, 0, 0;
|
|
1117
|
-
--color-sf-white: 255, 255, 255;
|
|
1118
|
-
--color-sf-primary: 208, 188, 255;
|
|
1119
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1120
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1121
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1122
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1123
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1124
|
-
--color-sf-surface: 28, 27, 31;
|
|
1125
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1126
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1127
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1128
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1129
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1130
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1131
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1132
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1133
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1134
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1135
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1136
|
-
--color-sf-outline: 147, 143, 153;
|
|
1137
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1138
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1139
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1140
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1141
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1142
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1143
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1144
|
-
--color-sf-error: 242, 184, 181;
|
|
1145
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1146
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1147
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1148
|
-
--color-sf-success: 83, 202, 23;
|
|
1149
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1150
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1151
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1152
|
-
--color-sf-info: 71, 172, 251;
|
|
1153
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1154
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1155
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1156
|
-
--color-sf-warning: 245, 180, 130;
|
|
1157
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1158
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1159
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1160
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1161
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1162
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1163
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1164
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1165
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1166
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1167
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
1048
|
/*! component's theme wise override definitions and variables */
|
|
1171
1049
|
/*! vscroll icons */
|
|
1172
1050
|
.e-vscroll.e-scroll-device .e-nav-up-arrow::before {
|
|
@@ -1370,61 +1248,6 @@
|
|
|
1370
1248
|
content: "";
|
|
1371
1249
|
}
|
|
1372
1250
|
|
|
1373
|
-
:root {
|
|
1374
|
-
--color-sf-black: 0, 0, 0;
|
|
1375
|
-
--color-sf-white: 255, 255, 255;
|
|
1376
|
-
--color-sf-primary: 208, 188, 255;
|
|
1377
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1378
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1379
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1380
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1381
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1382
|
-
--color-sf-surface: 28, 27, 31;
|
|
1383
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1384
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1385
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1386
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1387
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1388
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1389
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1390
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1391
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1392
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1393
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1394
|
-
--color-sf-outline: 147, 143, 153;
|
|
1395
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1396
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1397
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1398
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1399
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1400
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1401
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1402
|
-
--color-sf-error: 242, 184, 181;
|
|
1403
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1404
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1405
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1406
|
-
--color-sf-success: 83, 202, 23;
|
|
1407
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1408
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1409
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1410
|
-
--color-sf-info: 71, 172, 251;
|
|
1411
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1412
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1413
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1414
|
-
--color-sf-warning: 245, 180, 130;
|
|
1415
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1416
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1417
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1418
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1419
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1420
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1421
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1422
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1423
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1424
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1425
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
1251
|
/*! component's theme wise override definitions and variables */
|
|
1429
1252
|
@keyframes hscroll-popup-shadow {
|
|
1430
1253
|
0% {
|
|
@@ -2515,61 +2338,6 @@
|
|
|
2515
2338
|
border-width: 0 1px 0 0;
|
|
2516
2339
|
}
|
|
2517
2340
|
|
|
2518
|
-
:root {
|
|
2519
|
-
--color-sf-black: 0, 0, 0;
|
|
2520
|
-
--color-sf-white: 255, 255, 255;
|
|
2521
|
-
--color-sf-primary: 208, 188, 255;
|
|
2522
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
2523
|
-
--color-sf-secondary: 204, 194, 220;
|
|
2524
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
2525
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
2526
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
2527
|
-
--color-sf-surface: 28, 27, 31;
|
|
2528
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
2529
|
-
--color-sf-background: var(--color-sf-surface);
|
|
2530
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
2531
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
2532
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
2533
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
2534
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
2535
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
2536
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
2537
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
2538
|
-
--color-sf-on-background: 230, 225, 229;
|
|
2539
|
-
--color-sf-outline: 147, 143, 153;
|
|
2540
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
2541
|
-
--color-sf-shadow: 0, 0, 0;
|
|
2542
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
2543
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
2544
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
2545
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
2546
|
-
--color-sf-scrim: 0, 0, 0;
|
|
2547
|
-
--color-sf-error: 242, 184, 181;
|
|
2548
|
-
--color-sf-error-container: 140, 29, 24;
|
|
2549
|
-
--color-sf-on-error: 96, 20, 16;
|
|
2550
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
2551
|
-
--color-sf-success: 83, 202, 23;
|
|
2552
|
-
--color-sf-success-container: 22, 62, 2;
|
|
2553
|
-
--color-sf-on-success: 13, 39, 0;
|
|
2554
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
2555
|
-
--color-sf-info: 71, 172, 251;
|
|
2556
|
-
--color-sf-info-container: 0, 67, 120;
|
|
2557
|
-
--color-sf-on-info: 0, 51, 91;
|
|
2558
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
2559
|
-
--color-sf-warning: 245, 180, 130;
|
|
2560
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
2561
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
2562
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
2563
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
2564
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
2565
|
-
--color-sf-success-text: 0, 0, 0;
|
|
2566
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
2567
|
-
--color-sf-info-text: 0, 0, 0;
|
|
2568
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
2569
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
2570
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
2571
|
-
}
|
|
2572
|
-
|
|
2573
2341
|
/*! Accordion's material 3 theme wise override definitions and variables */
|
|
2574
2342
|
/* stylelint-disable */
|
|
2575
2343
|
/*! accordion icons */
|
|
@@ -3111,61 +2879,6 @@
|
|
|
3111
2879
|
font-size: 14px;
|
|
3112
2880
|
}
|
|
3113
2881
|
|
|
3114
|
-
:root {
|
|
3115
|
-
--color-sf-black: 0, 0, 0;
|
|
3116
|
-
--color-sf-white: 255, 255, 255;
|
|
3117
|
-
--color-sf-primary: 208, 188, 255;
|
|
3118
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
3119
|
-
--color-sf-secondary: 204, 194, 220;
|
|
3120
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
3121
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
3122
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
3123
|
-
--color-sf-surface: 28, 27, 31;
|
|
3124
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
3125
|
-
--color-sf-background: var(--color-sf-surface);
|
|
3126
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
3127
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
3128
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
3129
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
3130
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
3131
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
3132
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
3133
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
3134
|
-
--color-sf-on-background: 230, 225, 229;
|
|
3135
|
-
--color-sf-outline: 147, 143, 153;
|
|
3136
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
3137
|
-
--color-sf-shadow: 0, 0, 0;
|
|
3138
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
3139
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
3140
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
3141
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
3142
|
-
--color-sf-scrim: 0, 0, 0;
|
|
3143
|
-
--color-sf-error: 242, 184, 181;
|
|
3144
|
-
--color-sf-error-container: 140, 29, 24;
|
|
3145
|
-
--color-sf-on-error: 96, 20, 16;
|
|
3146
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
3147
|
-
--color-sf-success: 83, 202, 23;
|
|
3148
|
-
--color-sf-success-container: 22, 62, 2;
|
|
3149
|
-
--color-sf-on-success: 13, 39, 0;
|
|
3150
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
3151
|
-
--color-sf-info: 71, 172, 251;
|
|
3152
|
-
--color-sf-info-container: 0, 67, 120;
|
|
3153
|
-
--color-sf-on-info: 0, 51, 91;
|
|
3154
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
3155
|
-
--color-sf-warning: 245, 180, 130;
|
|
3156
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
3157
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
3158
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
3159
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
3160
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
3161
|
-
--color-sf-success-text: 0, 0, 0;
|
|
3162
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
3163
|
-
--color-sf-info-text: 0, 0, 0;
|
|
3164
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
3165
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
3166
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
3167
|
-
}
|
|
3168
|
-
|
|
3169
2882
|
/*! Carousel component bootstrap5 theme definitions and variables */
|
|
3170
2883
|
.e-carousel .e-previous-icon::before {
|
|
3171
2884
|
content: "\e765";
|
|
@@ -3470,61 +3183,6 @@
|
|
|
3470
3183
|
background-color: rgba(var(--color-sf-primary));
|
|
3471
3184
|
}
|
|
3472
3185
|
|
|
3473
|
-
:root {
|
|
3474
|
-
--color-sf-black: 0, 0, 0;
|
|
3475
|
-
--color-sf-white: 255, 255, 255;
|
|
3476
|
-
--color-sf-primary: 208, 188, 255;
|
|
3477
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
3478
|
-
--color-sf-secondary: 204, 194, 220;
|
|
3479
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
3480
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
3481
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
3482
|
-
--color-sf-surface: 28, 27, 31;
|
|
3483
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
3484
|
-
--color-sf-background: var(--color-sf-surface);
|
|
3485
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
3486
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
3487
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
3488
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
3489
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
3490
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
3491
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
3492
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
3493
|
-
--color-sf-on-background: 230, 225, 229;
|
|
3494
|
-
--color-sf-outline: 147, 143, 153;
|
|
3495
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
3496
|
-
--color-sf-shadow: 0, 0, 0;
|
|
3497
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
3498
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
3499
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
3500
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
3501
|
-
--color-sf-scrim: 0, 0, 0;
|
|
3502
|
-
--color-sf-error: 242, 184, 181;
|
|
3503
|
-
--color-sf-error-container: 140, 29, 24;
|
|
3504
|
-
--color-sf-on-error: 96, 20, 16;
|
|
3505
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
3506
|
-
--color-sf-success: 83, 202, 23;
|
|
3507
|
-
--color-sf-success-container: 22, 62, 2;
|
|
3508
|
-
--color-sf-on-success: 13, 39, 0;
|
|
3509
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
3510
|
-
--color-sf-info: 71, 172, 251;
|
|
3511
|
-
--color-sf-info-container: 0, 67, 120;
|
|
3512
|
-
--color-sf-on-info: 0, 51, 91;
|
|
3513
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
3514
|
-
--color-sf-warning: 245, 180, 130;
|
|
3515
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
3516
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
3517
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
3518
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
3519
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
3520
|
-
--color-sf-success-text: 0, 0, 0;
|
|
3521
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
3522
|
-
--color-sf-info-text: 0, 0, 0;
|
|
3523
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
3524
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
3525
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
3526
|
-
}
|
|
3527
|
-
|
|
3528
3186
|
/*! component's theme wise override definitions and variables */
|
|
3529
3187
|
@keyframes hscroll-popup-shadow {
|
|
3530
3188
|
0% {
|
|
@@ -3905,61 +3563,6 @@
|
|
|
3905
3563
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
3906
3564
|
}
|
|
3907
3565
|
|
|
3908
|
-
:root {
|
|
3909
|
-
--color-sf-black: 0, 0, 0;
|
|
3910
|
-
--color-sf-white: 255, 255, 255;
|
|
3911
|
-
--color-sf-primary: 208, 188, 255;
|
|
3912
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
3913
|
-
--color-sf-secondary: 204, 194, 220;
|
|
3914
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
3915
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
3916
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
3917
|
-
--color-sf-surface: 28, 27, 31;
|
|
3918
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
3919
|
-
--color-sf-background: var(--color-sf-surface);
|
|
3920
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
3921
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
3922
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
3923
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
3924
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
3925
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
3926
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
3927
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
3928
|
-
--color-sf-on-background: 230, 225, 229;
|
|
3929
|
-
--color-sf-outline: 147, 143, 153;
|
|
3930
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
3931
|
-
--color-sf-shadow: 0, 0, 0;
|
|
3932
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
3933
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
3934
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
3935
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
3936
|
-
--color-sf-scrim: 0, 0, 0;
|
|
3937
|
-
--color-sf-error: 242, 184, 181;
|
|
3938
|
-
--color-sf-error-container: 140, 29, 24;
|
|
3939
|
-
--color-sf-on-error: 96, 20, 16;
|
|
3940
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
3941
|
-
--color-sf-success: 83, 202, 23;
|
|
3942
|
-
--color-sf-success-container: 22, 62, 2;
|
|
3943
|
-
--color-sf-on-success: 13, 39, 0;
|
|
3944
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
3945
|
-
--color-sf-info: 71, 172, 251;
|
|
3946
|
-
--color-sf-info-container: 0, 67, 120;
|
|
3947
|
-
--color-sf-on-info: 0, 51, 91;
|
|
3948
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
3949
|
-
--color-sf-warning: 245, 180, 130;
|
|
3950
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
3951
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
3952
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
3953
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
3954
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
3955
|
-
--color-sf-success-text: 0, 0, 0;
|
|
3956
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
3957
|
-
--color-sf-info-text: 0, 0, 0;
|
|
3958
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
3959
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
3960
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
3961
|
-
}
|
|
3962
|
-
|
|
3963
3566
|
/*! Toolbar's material3 theme wise override definitions and variables */
|
|
3964
3567
|
/* stylelint-disable */
|
|
3965
3568
|
/*! Tab's material3 theme wise override definitions and variables */
|
|
@@ -8014,61 +7617,6 @@
|
|
|
8014
7617
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
8015
7618
|
}
|
|
8016
7619
|
|
|
8017
|
-
:root {
|
|
8018
|
-
--color-sf-black: 0, 0, 0;
|
|
8019
|
-
--color-sf-white: 255, 255, 255;
|
|
8020
|
-
--color-sf-primary: 208, 188, 255;
|
|
8021
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
8022
|
-
--color-sf-secondary: 204, 194, 220;
|
|
8023
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
8024
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
8025
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
8026
|
-
--color-sf-surface: 28, 27, 31;
|
|
8027
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
8028
|
-
--color-sf-background: var(--color-sf-surface);
|
|
8029
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
8030
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
8031
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
8032
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
8033
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
8034
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
8035
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
8036
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
8037
|
-
--color-sf-on-background: 230, 225, 229;
|
|
8038
|
-
--color-sf-outline: 147, 143, 153;
|
|
8039
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
8040
|
-
--color-sf-shadow: 0, 0, 0;
|
|
8041
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
8042
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
8043
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
8044
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
8045
|
-
--color-sf-scrim: 0, 0, 0;
|
|
8046
|
-
--color-sf-error: 242, 184, 181;
|
|
8047
|
-
--color-sf-error-container: 140, 29, 24;
|
|
8048
|
-
--color-sf-on-error: 96, 20, 16;
|
|
8049
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
8050
|
-
--color-sf-success: 83, 202, 23;
|
|
8051
|
-
--color-sf-success-container: 22, 62, 2;
|
|
8052
|
-
--color-sf-on-success: 13, 39, 0;
|
|
8053
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
8054
|
-
--color-sf-info: 71, 172, 251;
|
|
8055
|
-
--color-sf-info-container: 0, 67, 120;
|
|
8056
|
-
--color-sf-on-info: 0, 51, 91;
|
|
8057
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
8058
|
-
--color-sf-warning: 245, 180, 130;
|
|
8059
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
8060
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
8061
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
8062
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
8063
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
8064
|
-
--color-sf-success-text: 0, 0, 0;
|
|
8065
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
8066
|
-
--color-sf-info-text: 0, 0, 0;
|
|
8067
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
8068
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
8069
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
8070
|
-
}
|
|
8071
|
-
|
|
8072
7620
|
/* stylelint-disable property-no-vendor-prefix */
|
|
8073
7621
|
@keyframes e-input-ripple {
|
|
8074
7622
|
100% {
|
|
@@ -8917,61 +8465,6 @@
|
|
|
8917
8465
|
border-left-color: transparent;
|
|
8918
8466
|
}
|
|
8919
8467
|
|
|
8920
|
-
:root {
|
|
8921
|
-
--color-sf-black: 0, 0, 0;
|
|
8922
|
-
--color-sf-white: 255, 255, 255;
|
|
8923
|
-
--color-sf-primary: 208, 188, 255;
|
|
8924
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
8925
|
-
--color-sf-secondary: 204, 194, 220;
|
|
8926
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
8927
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
8928
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
8929
|
-
--color-sf-surface: 28, 27, 31;
|
|
8930
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
8931
|
-
--color-sf-background: var(--color-sf-surface);
|
|
8932
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
8933
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
8934
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
8935
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
8936
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
8937
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
8938
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
8939
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
8940
|
-
--color-sf-on-background: 230, 225, 229;
|
|
8941
|
-
--color-sf-outline: 147, 143, 153;
|
|
8942
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
8943
|
-
--color-sf-shadow: 0, 0, 0;
|
|
8944
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
8945
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
8946
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
8947
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
8948
|
-
--color-sf-scrim: 0, 0, 0;
|
|
8949
|
-
--color-sf-error: 242, 184, 181;
|
|
8950
|
-
--color-sf-error-container: 140, 29, 24;
|
|
8951
|
-
--color-sf-on-error: 96, 20, 16;
|
|
8952
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
8953
|
-
--color-sf-success: 83, 202, 23;
|
|
8954
|
-
--color-sf-success-container: 22, 62, 2;
|
|
8955
|
-
--color-sf-on-success: 13, 39, 0;
|
|
8956
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
8957
|
-
--color-sf-info: 71, 172, 251;
|
|
8958
|
-
--color-sf-info-container: 0, 67, 120;
|
|
8959
|
-
--color-sf-on-info: 0, 51, 91;
|
|
8960
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
8961
|
-
--color-sf-warning: 245, 180, 130;
|
|
8962
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
8963
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
8964
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
8965
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
8966
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
8967
|
-
--color-sf-success-text: 0, 0, 0;
|
|
8968
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
8969
|
-
--color-sf-info-text: 0, 0, 0;
|
|
8970
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
8971
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
8972
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
8973
|
-
}
|
|
8974
|
-
|
|
8975
8468
|
/*! component's theme wise override material 3 definitions and variables */ /* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
8976
8469
|
ejs-sidebar {
|
|
8977
8470
|
display: none;
|
|
@@ -9121,61 +8614,6 @@ ejs-sidebar {
|
|
|
9121
8614
|
visibility: visible;
|
|
9122
8615
|
}
|
|
9123
8616
|
|
|
9124
|
-
:root {
|
|
9125
|
-
--color-sf-black: 0, 0, 0;
|
|
9126
|
-
--color-sf-white: 255, 255, 255;
|
|
9127
|
-
--color-sf-primary: 208, 188, 255;
|
|
9128
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
9129
|
-
--color-sf-secondary: 204, 194, 220;
|
|
9130
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
9131
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
9132
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
9133
|
-
--color-sf-surface: 28, 27, 31;
|
|
9134
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
9135
|
-
--color-sf-background: var(--color-sf-surface);
|
|
9136
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
9137
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
9138
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
9139
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
9140
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
9141
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
9142
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
9143
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
9144
|
-
--color-sf-on-background: 230, 225, 229;
|
|
9145
|
-
--color-sf-outline: 147, 143, 153;
|
|
9146
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
9147
|
-
--color-sf-shadow: 0, 0, 0;
|
|
9148
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
9149
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
9150
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
9151
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
9152
|
-
--color-sf-scrim: 0, 0, 0;
|
|
9153
|
-
--color-sf-error: 242, 184, 181;
|
|
9154
|
-
--color-sf-error-container: 140, 29, 24;
|
|
9155
|
-
--color-sf-on-error: 96, 20, 16;
|
|
9156
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
9157
|
-
--color-sf-success: 83, 202, 23;
|
|
9158
|
-
--color-sf-success-container: 22, 62, 2;
|
|
9159
|
-
--color-sf-on-success: 13, 39, 0;
|
|
9160
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
9161
|
-
--color-sf-info: 71, 172, 251;
|
|
9162
|
-
--color-sf-info-container: 0, 67, 120;
|
|
9163
|
-
--color-sf-on-info: 0, 51, 91;
|
|
9164
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
9165
|
-
--color-sf-warning: 245, 180, 130;
|
|
9166
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
9167
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
9168
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
9169
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
9170
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
9171
|
-
--color-sf-success-text: 0, 0, 0;
|
|
9172
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
9173
|
-
--color-sf-info-text: 0, 0, 0;
|
|
9174
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
9175
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
9176
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
9177
|
-
}
|
|
9178
|
-
|
|
9179
8617
|
/*! component's theme wise override definitions and variables */
|
|
9180
8618
|
@keyframes hscroll-popup-shadow {
|
|
9181
8619
|
0% {
|
|
@@ -10283,61 +9721,6 @@ ejs-sidebar {
|
|
|
10283
9721
|
color: rgba(var(--color-sf-on-surface));
|
|
10284
9722
|
}
|
|
10285
9723
|
|
|
10286
|
-
:root {
|
|
10287
|
-
--color-sf-black: 0, 0, 0;
|
|
10288
|
-
--color-sf-white: 255, 255, 255;
|
|
10289
|
-
--color-sf-primary: 208, 188, 255;
|
|
10290
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
10291
|
-
--color-sf-secondary: 204, 194, 220;
|
|
10292
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
10293
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
10294
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
10295
|
-
--color-sf-surface: 28, 27, 31;
|
|
10296
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
10297
|
-
--color-sf-background: var(--color-sf-surface);
|
|
10298
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
10299
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
10300
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
10301
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
10302
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
10303
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
10304
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
10305
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
10306
|
-
--color-sf-on-background: 230, 225, 229;
|
|
10307
|
-
--color-sf-outline: 147, 143, 153;
|
|
10308
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
10309
|
-
--color-sf-shadow: 0, 0, 0;
|
|
10310
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
10311
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
10312
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
10313
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
10314
|
-
--color-sf-scrim: 0, 0, 0;
|
|
10315
|
-
--color-sf-error: 242, 184, 181;
|
|
10316
|
-
--color-sf-error-container: 140, 29, 24;
|
|
10317
|
-
--color-sf-on-error: 96, 20, 16;
|
|
10318
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
10319
|
-
--color-sf-success: 83, 202, 23;
|
|
10320
|
-
--color-sf-success-container: 22, 62, 2;
|
|
10321
|
-
--color-sf-on-success: 13, 39, 0;
|
|
10322
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
10323
|
-
--color-sf-info: 71, 172, 251;
|
|
10324
|
-
--color-sf-info-container: 0, 67, 120;
|
|
10325
|
-
--color-sf-on-info: 0, 51, 91;
|
|
10326
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
10327
|
-
--color-sf-warning: 245, 180, 130;
|
|
10328
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
10329
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
10330
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
10331
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
10332
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
10333
|
-
--color-sf-success-text: 0, 0, 0;
|
|
10334
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
10335
|
-
--color-sf-info-text: 0, 0, 0;
|
|
10336
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
10337
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
10338
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
10339
|
-
}
|
|
10340
|
-
|
|
10341
9724
|
/*! breadcrumb icons */
|
|
10342
9725
|
.e-breadcrumb .e-breadcrumb-collapsed::before,
|
|
10343
9726
|
.e-breadcrumb .e-breadcrumb-menu::before {
|
|
@@ -10707,61 +10090,6 @@ ejs-sidebar {
|
|
|
10707
10090
|
color: rgba(var(--color-sf-on-surface));
|
|
10708
10091
|
}
|
|
10709
10092
|
|
|
10710
|
-
:root {
|
|
10711
|
-
--color-sf-black: 0, 0, 0;
|
|
10712
|
-
--color-sf-white: 255, 255, 255;
|
|
10713
|
-
--color-sf-primary: 208, 188, 255;
|
|
10714
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
10715
|
-
--color-sf-secondary: 204, 194, 220;
|
|
10716
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
10717
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
10718
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
10719
|
-
--color-sf-surface: 28, 27, 31;
|
|
10720
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
10721
|
-
--color-sf-background: var(--color-sf-surface);
|
|
10722
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
10723
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
10724
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
10725
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
10726
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
10727
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
10728
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
10729
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
10730
|
-
--color-sf-on-background: 230, 225, 229;
|
|
10731
|
-
--color-sf-outline: 147, 143, 153;
|
|
10732
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
10733
|
-
--color-sf-shadow: 0, 0, 0;
|
|
10734
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
10735
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
10736
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
10737
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
10738
|
-
--color-sf-scrim: 0, 0, 0;
|
|
10739
|
-
--color-sf-error: 242, 184, 181;
|
|
10740
|
-
--color-sf-error-container: 140, 29, 24;
|
|
10741
|
-
--color-sf-on-error: 96, 20, 16;
|
|
10742
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
10743
|
-
--color-sf-success: 83, 202, 23;
|
|
10744
|
-
--color-sf-success-container: 22, 62, 2;
|
|
10745
|
-
--color-sf-on-success: 13, 39, 0;
|
|
10746
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
10747
|
-
--color-sf-info: 71, 172, 251;
|
|
10748
|
-
--color-sf-info-container: 0, 67, 120;
|
|
10749
|
-
--color-sf-on-info: 0, 51, 91;
|
|
10750
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
10751
|
-
--color-sf-warning: 245, 180, 130;
|
|
10752
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
10753
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
10754
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
10755
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
10756
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
10757
|
-
--color-sf-success-text: 0, 0, 0;
|
|
10758
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
10759
|
-
--color-sf-info-text: 0, 0, 0;
|
|
10760
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
10761
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
10762
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
10763
|
-
}
|
|
10764
|
-
|
|
10765
10093
|
/*! AppBar component material3 theme definitions and variables */
|
|
10766
10094
|
/*! appbar component styles */
|
|
10767
10095
|
.e-bigger .e-appbar,
|