@syncfusion/ej2-angular-navigations 32.2.3-ngcc → 32.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3120 -0
- package/README.md +10 -3
- package/esm2020/public_api.mjs +2 -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/appbar/appbar-all.module.mjs +23 -0
- package/esm2020/src/appbar/appbar.component.mjs +59 -0
- package/esm2020/src/appbar/appbar.module.mjs +25 -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 +42 -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/stepper/stepper-all.module.mjs +23 -0
- package/esm2020/src/stepper/stepper.component.mjs +77 -0
- package/esm2020/src/stepper/stepper.module.mjs +34 -0
- package/esm2020/src/stepper/steps.directive.mjs +58 -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 +1615 -0
- package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1615 -0
- package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
- package/package.json +28 -46
- package/public_api.d.ts +1 -1
- package/src/accordion/accordion-all.module.d.ts +11 -5
- package/src/accordion/accordion.component.d.ts +57 -54
- package/src/accordion/accordion.module.d.ts +12 -5
- package/src/accordion/items.directive.d.ts +80 -75
- package/src/appbar/appbar-all.module.d.ts +11 -5
- package/src/appbar/appbar.component.d.ts +32 -29
- package/src/appbar/appbar.module.d.ts +11 -5
- package/src/breadcrumb/breadcrumb-all.module.d.ts +11 -5
- package/src/breadcrumb/breadcrumb.component.d.ts +49 -46
- package/src/breadcrumb/breadcrumb.module.d.ts +12 -5
- package/src/breadcrumb/items.directive.d.ts +56 -51
- package/src/carousel/carousel-all.module.d.ts +11 -5
- package/src/carousel/carousel.component.d.ts +81 -78
- package/src/carousel/carousel.module.d.ts +12 -5
- package/src/carousel/items.directive.d.ts +55 -50
- package/src/context-menu/contextmenu-all.module.d.ts +11 -5
- package/src/context-menu/contextmenu.component.d.ts +38 -35
- package/src/context-menu/contextmenu.module.d.ts +11 -5
- package/src/index.d.ts +41 -41
- package/src/menu/items.directive.d.ts +55 -50
- package/src/menu/menu-all.module.d.ts +11 -5
- package/src/menu/menu.component.d.ts +46 -43
- package/src/menu/menu.module.d.ts +12 -5
- package/src/sidebar/sidebar-all.module.d.ts +11 -5
- package/src/sidebar/sidebar.component.d.ts +36 -33
- package/src/sidebar/sidebar.module.d.ts +11 -5
- package/src/stepper/stepper-all.module.d.ts +11 -5
- package/src/stepper/stepper.component.d.ts +60 -57
- package/src/stepper/stepper.module.d.ts +12 -5
- package/src/stepper/steps.directive.d.ts +81 -76
- package/src/tab/items.directive.d.ts +82 -77
- package/src/tab/tab-all.module.d.ts +11 -5
- package/src/tab/tab.component.d.ts +44 -41
- package/src/tab/tab.module.d.ts +12 -5
- package/src/toolbar/items.directive.d.ts +147 -142
- package/src/toolbar/toolbar-all.module.d.ts +11 -5
- package/src/toolbar/toolbar.component.d.ts +38 -35
- package/src/toolbar/toolbar.module.d.ts +12 -5
- package/src/treeview/treeview-all.module.d.ts +11 -5
- package/src/treeview/treeview.component.d.ts +65 -62
- package/src/treeview/treeview.module.d.ts +11 -5
- package/styles/accordion/bds.scss +1 -1
- package/styles/accordion/bootstrap-dark.scss +1 -1
- package/styles/accordion/bootstrap.scss +1 -1
- package/styles/accordion/bootstrap4.scss +1 -1
- package/styles/accordion/bootstrap5-dark.scss +1 -1
- package/styles/accordion/bootstrap5.3.scss +1 -1
- package/styles/accordion/bootstrap5.scss +1 -1
- package/styles/accordion/fabric-dark.scss +1 -1
- package/styles/accordion/fabric.scss +1 -1
- package/styles/accordion/fluent-dark.scss +1 -1
- package/styles/accordion/fluent.scss +1 -1
- package/styles/accordion/fluent2.scss +1 -1
- package/styles/accordion/highcontrast-light.scss +1 -1
- package/styles/accordion/highcontrast.scss +1 -1
- package/styles/accordion/material-dark.scss +1 -1
- package/styles/accordion/material.scss +1 -1
- package/styles/accordion/material3-dark.scss +1 -2
- package/styles/accordion/material3.scss +1 -2
- package/styles/accordion/tailwind-dark.scss +1 -1
- package/styles/accordion/tailwind.scss +1 -1
- package/styles/accordion/tailwind3.scss +1 -1
- package/styles/appbar/bds.scss +1 -1
- package/styles/appbar/bootstrap-dark.scss +1 -1
- package/styles/appbar/bootstrap.scss +1 -1
- package/styles/appbar/bootstrap4.scss +1 -1
- package/styles/appbar/bootstrap5-dark.scss +1 -1
- package/styles/appbar/bootstrap5.3.scss +1 -1
- package/styles/appbar/bootstrap5.scss +1 -1
- package/styles/appbar/fabric-dark.scss +1 -1
- package/styles/appbar/fabric.scss +1 -1
- package/styles/appbar/fluent-dark.scss +1 -1
- package/styles/appbar/fluent.scss +1 -1
- package/styles/appbar/fluent2.scss +1 -1
- package/styles/appbar/highcontrast-light.scss +1 -1
- package/styles/appbar/highcontrast.scss +1 -1
- package/styles/appbar/material-dark.scss +1 -1
- package/styles/appbar/material.scss +1 -1
- package/styles/appbar/material3-dark.scss +1 -2
- package/styles/appbar/material3.scss +1 -2
- package/styles/appbar/tailwind-dark.scss +1 -1
- package/styles/appbar/tailwind.scss +1 -1
- package/styles/appbar/tailwind3.scss +1 -1
- package/styles/bds-lite.scss +1 -1
- package/styles/bds.scss +14 -14
- package/styles/bootstrap-dark-lite.scss +1 -1
- package/styles/bootstrap-dark.scss +14 -14
- package/styles/bootstrap-lite.scss +1 -1
- package/styles/bootstrap.scss +14 -14
- package/styles/bootstrap4-lite.scss +1 -1
- package/styles/bootstrap4.scss +14 -14
- package/styles/bootstrap5-dark-lite.scss +1 -1
- package/styles/bootstrap5-dark.scss +14 -14
- package/styles/bootstrap5-lite.scss +1 -1
- package/styles/bootstrap5.3-lite.scss +1 -1
- package/styles/bootstrap5.3.scss +14 -14
- package/styles/bootstrap5.scss +14 -14
- package/styles/breadcrumb/bds.scss +1 -1
- package/styles/breadcrumb/bootstrap-dark.scss +1 -1
- package/styles/breadcrumb/bootstrap.scss +1 -1
- package/styles/breadcrumb/bootstrap4.scss +1 -1
- package/styles/breadcrumb/bootstrap5-dark.scss +1 -1
- package/styles/breadcrumb/bootstrap5.3.scss +1 -1
- package/styles/breadcrumb/bootstrap5.scss +1 -1
- package/styles/breadcrumb/fabric-dark.scss +1 -1
- package/styles/breadcrumb/fabric.scss +1 -1
- package/styles/breadcrumb/fluent-dark.scss +1 -1
- package/styles/breadcrumb/fluent.scss +1 -1
- package/styles/breadcrumb/fluent2.scss +1 -1
- package/styles/breadcrumb/highcontrast-light.scss +1 -1
- package/styles/breadcrumb/highcontrast.scss +1 -1
- package/styles/breadcrumb/material-dark.scss +1 -1
- package/styles/breadcrumb/material.scss +1 -1
- package/styles/breadcrumb/material3-dark.scss +1 -2
- package/styles/breadcrumb/material3.scss +1 -2
- package/styles/breadcrumb/tailwind-dark.scss +1 -1
- package/styles/breadcrumb/tailwind.scss +1 -1
- package/styles/breadcrumb/tailwind3.scss +1 -1
- package/styles/carousel/bds.scss +1 -1
- package/styles/carousel/bootstrap-dark.scss +1 -1
- package/styles/carousel/bootstrap.scss +1 -1
- package/styles/carousel/bootstrap4.scss +1 -1
- package/styles/carousel/bootstrap5-dark.scss +1 -1
- package/styles/carousel/bootstrap5.3.scss +1 -1
- package/styles/carousel/bootstrap5.scss +1 -1
- package/styles/carousel/fabric-dark.scss +1 -1
- package/styles/carousel/fabric.scss +1 -1
- package/styles/carousel/fluent-dark.scss +1 -1
- package/styles/carousel/fluent.scss +1 -1
- package/styles/carousel/fluent2.scss +1 -1
- package/styles/carousel/highcontrast-light.scss +1 -1
- package/styles/carousel/highcontrast.scss +1 -1
- package/styles/carousel/material-dark.scss +1 -1
- package/styles/carousel/material.scss +1 -1
- package/styles/carousel/material3-dark.scss +1 -2
- package/styles/carousel/material3.scss +1 -2
- package/styles/carousel/tailwind-dark.scss +1 -1
- package/styles/carousel/tailwind.scss +1 -1
- package/styles/carousel/tailwind3.scss +1 -1
- package/styles/context-menu/bds.scss +1 -1
- package/styles/context-menu/bootstrap-dark.scss +1 -1
- package/styles/context-menu/bootstrap.scss +1 -1
- package/styles/context-menu/bootstrap4.scss +1 -1
- package/styles/context-menu/bootstrap5-dark.scss +1 -1
- package/styles/context-menu/bootstrap5.3.scss +1 -1
- package/styles/context-menu/bootstrap5.scss +1 -1
- package/styles/context-menu/fabric-dark.scss +1 -1
- package/styles/context-menu/fabric.scss +1 -1
- package/styles/context-menu/fluent-dark.scss +1 -1
- package/styles/context-menu/fluent.scss +1 -1
- package/styles/context-menu/fluent2.scss +1 -1
- package/styles/context-menu/highcontrast-light.scss +1 -1
- package/styles/context-menu/highcontrast.scss +1 -1
- package/styles/context-menu/material-dark.scss +1 -1
- package/styles/context-menu/material.scss +1 -1
- package/styles/context-menu/material3-dark.scss +1 -2
- package/styles/context-menu/material3.scss +1 -2
- package/styles/context-menu/tailwind-dark.scss +1 -1
- package/styles/context-menu/tailwind.scss +1 -1
- package/styles/context-menu/tailwind3.scss +1 -1
- package/styles/fabric-dark-lite.scss +1 -1
- package/styles/fabric-dark.scss +14 -14
- package/styles/fabric-lite.scss +1 -1
- package/styles/fabric.scss +14 -14
- package/styles/fluent-dark-lite.scss +1 -1
- package/styles/fluent-dark.scss +14 -14
- package/styles/fluent-lite.scss +1 -1
- package/styles/fluent.scss +14 -14
- package/styles/fluent2-lite.scss +1 -1
- package/styles/fluent2.scss +14 -14
- package/styles/h-scroll/bds.scss +1 -1
- package/styles/h-scroll/bootstrap-dark.scss +1 -1
- package/styles/h-scroll/bootstrap.scss +1 -1
- package/styles/h-scroll/bootstrap4.scss +1 -1
- package/styles/h-scroll/bootstrap5-dark.scss +1 -1
- package/styles/h-scroll/bootstrap5.3.scss +1 -1
- package/styles/h-scroll/bootstrap5.scss +1 -1
- package/styles/h-scroll/fabric-dark.scss +1 -1
- package/styles/h-scroll/fabric.scss +1 -1
- package/styles/h-scroll/fluent-dark.scss +1 -1
- package/styles/h-scroll/fluent.scss +1 -1
- package/styles/h-scroll/fluent2.scss +1 -1
- package/styles/h-scroll/highcontrast-light.scss +1 -1
- package/styles/h-scroll/highcontrast.scss +1 -1
- package/styles/h-scroll/material-dark.scss +1 -1
- package/styles/h-scroll/material.scss +1 -1
- package/styles/h-scroll/material3-dark.scss +1 -2
- package/styles/h-scroll/material3.scss +1 -2
- package/styles/h-scroll/tailwind-dark.scss +1 -1
- package/styles/h-scroll/tailwind.scss +1 -1
- package/styles/h-scroll/tailwind3.scss +1 -1
- package/styles/highcontrast-light-lite.scss +1 -1
- package/styles/highcontrast-light.scss +14 -14
- package/styles/highcontrast-lite.scss +1 -1
- package/styles/highcontrast.scss +14 -14
- package/styles/material-dark-lite.scss +1 -1
- package/styles/material-dark.scss +14 -14
- package/styles/material-lite.scss +1 -1
- package/styles/material.scss +14 -14
- package/styles/material3-dark-lite.scss +1 -1
- package/styles/material3-dark.scss +14 -15
- package/styles/material3-lite.scss +1 -1
- package/styles/material3.scss +14 -15
- package/styles/menu/bds.scss +1 -1
- package/styles/menu/bootstrap-dark.scss +1 -1
- package/styles/menu/bootstrap.scss +1 -1
- package/styles/menu/bootstrap4.scss +1 -1
- package/styles/menu/bootstrap5-dark.scss +1 -1
- package/styles/menu/bootstrap5.3.scss +1 -1
- package/styles/menu/bootstrap5.scss +1 -1
- package/styles/menu/fabric-dark.scss +1 -1
- package/styles/menu/fabric.scss +1 -1
- package/styles/menu/fluent-dark.scss +1 -1
- package/styles/menu/fluent.scss +1 -1
- package/styles/menu/fluent2.scss +1 -1
- package/styles/menu/highcontrast-light.scss +1 -1
- package/styles/menu/highcontrast.scss +1 -1
- package/styles/menu/material-dark.scss +1 -1
- package/styles/menu/material.scss +1 -1
- package/styles/menu/material3-dark.scss +1 -2
- package/styles/menu/material3.scss +1 -2
- package/styles/menu/tailwind-dark.scss +1 -1
- package/styles/menu/tailwind.scss +1 -1
- package/styles/menu/tailwind3.scss +1 -1
- package/styles/pager/bds.scss +1 -1
- package/styles/pager/bootstrap-dark.scss +1 -1
- package/styles/pager/bootstrap.scss +1 -1
- package/styles/pager/bootstrap4.scss +1 -1
- package/styles/pager/bootstrap5-dark.scss +1 -1
- package/styles/pager/bootstrap5.3.scss +1 -1
- package/styles/pager/bootstrap5.scss +1 -1
- package/styles/pager/fabric-dark.scss +1 -1
- package/styles/pager/fabric.scss +1 -1
- package/styles/pager/fluent-dark.scss +1 -1
- package/styles/pager/fluent.scss +1 -1
- package/styles/pager/fluent2.scss +1 -1
- package/styles/pager/highcontrast-light.scss +1 -1
- package/styles/pager/highcontrast.scss +1 -1
- package/styles/pager/material-dark.scss +1 -1
- package/styles/pager/material.scss +1 -1
- package/styles/pager/material3-dark.scss +1 -2
- package/styles/pager/material3.scss +1 -2
- package/styles/pager/tailwind-dark.scss +1 -1
- package/styles/pager/tailwind.scss +1 -1
- package/styles/pager/tailwind3.scss +1 -1
- package/styles/sidebar/bds.scss +1 -1
- package/styles/sidebar/bootstrap-dark.scss +1 -1
- package/styles/sidebar/bootstrap.scss +1 -1
- package/styles/sidebar/bootstrap4.scss +1 -1
- package/styles/sidebar/bootstrap5-dark.scss +1 -1
- package/styles/sidebar/bootstrap5.3.scss +1 -1
- package/styles/sidebar/bootstrap5.scss +1 -1
- package/styles/sidebar/fabric-dark.scss +1 -1
- package/styles/sidebar/fabric.scss +1 -1
- package/styles/sidebar/fluent-dark.scss +1 -1
- package/styles/sidebar/fluent.scss +1 -1
- package/styles/sidebar/fluent2.scss +1 -1
- package/styles/sidebar/highcontrast-light.scss +1 -1
- package/styles/sidebar/highcontrast.scss +1 -1
- package/styles/sidebar/material-dark.scss +1 -1
- package/styles/sidebar/material.scss +1 -1
- package/styles/sidebar/material3-dark.scss +1 -2
- package/styles/sidebar/material3.scss +1 -2
- package/styles/sidebar/tailwind-dark.scss +1 -1
- package/styles/sidebar/tailwind.scss +1 -1
- package/styles/sidebar/tailwind3.scss +1 -1
- package/styles/stepper/bds.scss +1 -1
- package/styles/stepper/bootstrap-dark.scss +1 -1
- package/styles/stepper/bootstrap.scss +1 -1
- package/styles/stepper/bootstrap4.scss +1 -1
- package/styles/stepper/bootstrap5-dark.scss +1 -1
- package/styles/stepper/bootstrap5.3.scss +1 -1
- package/styles/stepper/bootstrap5.scss +1 -1
- package/styles/stepper/fabric-dark.scss +1 -1
- package/styles/stepper/fabric.scss +1 -1
- package/styles/stepper/fluent-dark.scss +1 -1
- package/styles/stepper/fluent.scss +1 -1
- package/styles/stepper/fluent2.scss +1 -1
- package/styles/stepper/highcontrast-light.scss +1 -1
- package/styles/stepper/highcontrast.scss +1 -1
- package/styles/stepper/material-dark.scss +1 -1
- package/styles/stepper/material.scss +1 -1
- package/styles/stepper/material3-dark.scss +1 -2
- package/styles/stepper/material3.scss +1 -2
- package/styles/stepper/tailwind-dark.scss +1 -1
- package/styles/stepper/tailwind.scss +1 -1
- package/styles/stepper/tailwind3.scss +1 -1
- package/styles/tab/bds.scss +1 -1
- package/styles/tab/bootstrap-dark.scss +1 -1
- package/styles/tab/bootstrap.scss +1 -1
- package/styles/tab/bootstrap4.scss +1 -1
- package/styles/tab/bootstrap5-dark.scss +1 -1
- package/styles/tab/bootstrap5.3.scss +1 -1
- package/styles/tab/bootstrap5.scss +1 -1
- package/styles/tab/fabric-dark.scss +1 -1
- package/styles/tab/fabric.scss +1 -1
- package/styles/tab/fluent-dark.scss +1 -1
- package/styles/tab/fluent.scss +1 -1
- package/styles/tab/fluent2.scss +1 -1
- package/styles/tab/highcontrast-light.scss +1 -1
- package/styles/tab/highcontrast.scss +1 -1
- package/styles/tab/material-dark.scss +1 -1
- package/styles/tab/material.scss +1 -1
- package/styles/tab/material3-dark.scss +1 -2
- package/styles/tab/material3.scss +1 -2
- package/styles/tab/tailwind-dark.scss +1 -1
- package/styles/tab/tailwind.scss +1 -1
- package/styles/tab/tailwind3.scss +1 -1
- package/styles/tailwind-dark-lite.scss +1 -1
- package/styles/tailwind-dark.scss +14 -14
- package/styles/tailwind-lite.scss +1 -1
- package/styles/tailwind.scss +14 -14
- package/styles/tailwind3-lite.scss +1 -1
- package/styles/tailwind3.scss +14 -14
- package/styles/toolbar/bds.scss +1 -1
- package/styles/toolbar/bootstrap-dark.scss +1 -1
- package/styles/toolbar/bootstrap.scss +1 -1
- package/styles/toolbar/bootstrap4.scss +1 -1
- package/styles/toolbar/bootstrap5-dark.scss +1 -1
- package/styles/toolbar/bootstrap5.3.scss +1 -1
- package/styles/toolbar/bootstrap5.scss +1 -1
- package/styles/toolbar/fabric-dark.scss +1 -1
- package/styles/toolbar/fabric.scss +1 -1
- package/styles/toolbar/fluent-dark.scss +1 -1
- package/styles/toolbar/fluent.scss +1 -1
- package/styles/toolbar/fluent2.scss +1 -1
- package/styles/toolbar/highcontrast-light.scss +1 -1
- package/styles/toolbar/highcontrast.scss +1 -1
- package/styles/toolbar/material-dark.scss +1 -1
- package/styles/toolbar/material.scss +1 -1
- package/styles/toolbar/material3-dark.scss +1 -2
- package/styles/toolbar/material3.scss +1 -2
- package/styles/toolbar/tailwind-dark.scss +1 -1
- package/styles/toolbar/tailwind.scss +1 -1
- package/styles/toolbar/tailwind3.scss +1 -1
- package/styles/treeview/bds.scss +1 -1
- package/styles/treeview/bootstrap-dark.scss +1 -1
- package/styles/treeview/bootstrap.scss +1 -1
- package/styles/treeview/bootstrap4.scss +1 -1
- package/styles/treeview/bootstrap5-dark.scss +1 -1
- package/styles/treeview/bootstrap5.3.scss +1 -1
- package/styles/treeview/bootstrap5.scss +1 -1
- package/styles/treeview/fabric-dark.scss +1 -1
- package/styles/treeview/fabric.scss +1 -1
- package/styles/treeview/fluent-dark.scss +1 -1
- package/styles/treeview/fluent.scss +1 -1
- package/styles/treeview/fluent2.scss +1 -1
- package/styles/treeview/highcontrast-light.scss +1 -1
- package/styles/treeview/highcontrast.scss +1 -1
- package/styles/treeview/material-dark.scss +1 -1
- package/styles/treeview/material.scss +1 -1
- package/styles/treeview/material3-dark.scss +1 -2
- package/styles/treeview/material3.scss +1 -2
- package/styles/treeview/tailwind-dark.scss +1 -1
- package/styles/treeview/tailwind.scss +1 -1
- package/styles/treeview/tailwind3.scss +1 -1
- package/styles/v-scroll/bds.scss +1 -1
- package/styles/v-scroll/bootstrap-dark.scss +1 -1
- package/styles/v-scroll/bootstrap.scss +1 -1
- package/styles/v-scroll/bootstrap4.scss +1 -1
- package/styles/v-scroll/bootstrap5-dark.scss +1 -1
- package/styles/v-scroll/bootstrap5.3.scss +1 -1
- package/styles/v-scroll/bootstrap5.scss +1 -1
- package/styles/v-scroll/fabric-dark.scss +1 -1
- package/styles/v-scroll/fabric.scss +1 -1
- package/styles/v-scroll/fluent-dark.scss +1 -1
- package/styles/v-scroll/fluent.scss +1 -1
- package/styles/v-scroll/fluent2.scss +1 -1
- package/styles/v-scroll/highcontrast-light.scss +1 -1
- package/styles/v-scroll/highcontrast.scss +1 -1
- package/styles/v-scroll/material-dark.scss +1 -1
- package/styles/v-scroll/material.scss +1 -1
- package/styles/v-scroll/material3-dark.scss +1 -2
- package/styles/v-scroll/material3.scss +1 -2
- package/styles/v-scroll/tailwind-dark.scss +1 -1
- package/styles/v-scroll/tailwind.scss +1 -1
- package/styles/v-scroll/tailwind3.scss +1 -1
- package/syncfusion-ej2-angular-navigations.d.ts +5 -0
- package/@syncfusion/ej2-angular-navigations.es5.js +0 -2247
- package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-navigations.js +0 -2070
- package/@syncfusion/ej2-angular-navigations.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-navigations.umd.js +0 -2356
- 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 -15
- package/ej2-angular-navigations.metadata.json +0 -1
|
@@ -1,75 +1,80 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-accordionitem header='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
*
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
*
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* 'e-accordionitem' directive represent a item of the Angular Accordion.
|
|
6
|
+
* It must be contained in a Accordion component(`ejs-accordion`).
|
|
7
|
+
* ```html
|
|
8
|
+
* <ejs-accordion>
|
|
9
|
+
* <e-accordionitems>
|
|
10
|
+
* <e-accordionitem header='Header1'></e-accordionitem>
|
|
11
|
+
* <e-accordionitem header='Header2' content='Content2'></e-accordionitem>
|
|
12
|
+
* </e-accordionitems>
|
|
13
|
+
* </ejs-accordion>
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare class AccordionItemDirective extends ComplexBase<AccordionItemDirective> {
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
directivePropList: any;
|
|
19
|
+
/**
|
|
20
|
+
* Defines single/multiple classes (separated by a space) are to be used for Accordion item customization.
|
|
21
|
+
* @default null
|
|
22
|
+
*/
|
|
23
|
+
cssClass: any;
|
|
24
|
+
/**
|
|
25
|
+
* Sets true to disable an accordion item.
|
|
26
|
+
* @default false
|
|
27
|
+
*/
|
|
28
|
+
disabled: any;
|
|
29
|
+
/**
|
|
30
|
+
* Sets the expand (true) or collapse (false) state of the Accordion item. By default, all the items are in a collapsed state.
|
|
31
|
+
* @default false
|
|
32
|
+
*/
|
|
33
|
+
expanded: any;
|
|
34
|
+
/**
|
|
35
|
+
* Defines an icon with the given custom CSS class that is to be rendered before the header text.
|
|
36
|
+
* Add the css classes to the `iconCss` property and write the css styles to the defined class to set images/icons.
|
|
37
|
+
* Adding icon is applicable only to the header.
|
|
38
|
+
*
|
|
39
|
+
* @default null
|
|
40
|
+
*/
|
|
41
|
+
iconCss: any;
|
|
42
|
+
/**
|
|
43
|
+
* Sets unique ID to accordion item.
|
|
44
|
+
* @default null
|
|
45
|
+
*/
|
|
46
|
+
id: any;
|
|
47
|
+
/**
|
|
48
|
+
* Sets false to hide an accordion item.
|
|
49
|
+
* @default true
|
|
50
|
+
*/
|
|
51
|
+
visible: any;
|
|
52
|
+
/**
|
|
53
|
+
* Sets the header text to be displayed for the Accordion item.
|
|
54
|
+
* You can set the title of the Accordion item using `header` property.
|
|
55
|
+
* It also supports to include the title as `HTML element`, `string`, or `query selector`.
|
|
56
|
+
*
|
|
57
|
+
* @default null
|
|
58
|
+
*/
|
|
59
|
+
header: any;
|
|
60
|
+
/**
|
|
61
|
+
* Sets the text content to be displayed for the Accordion item.
|
|
62
|
+
* You can set the content of the Accordion item using `content` property.
|
|
63
|
+
* It also supports to include the title as `HTML element`, `string`, or `query selector`.
|
|
64
|
+
*
|
|
65
|
+
* @default null
|
|
66
|
+
*/
|
|
67
|
+
content: any;
|
|
68
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemDirective, never>;
|
|
70
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionItemDirective, "e-accordionitems>e-accordionitem", never, { "content": "content"; "cssClass": "cssClass"; "disabled": "disabled"; "expanded": "expanded"; "header": "header"; "iconCss": "iconCss"; "id": "id"; "visible": "visible"; }, {}, ["header", "content"]>;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* AccordionItem Array Directive
|
|
74
|
+
* @private
|
|
75
|
+
*/
|
|
76
|
+
export declare class AccordionItemsDirective extends ArrayBase<AccordionItemsDirective> {
|
|
77
|
+
constructor();
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemsDirective, never>;
|
|
79
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionItemsDirective, "ejs-accordion>e-accordionitems", never, {}, {}, ["children"]>;
|
|
80
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./appbar.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the AppBar component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class AppBarAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBarAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppBarAllModule, never, [typeof i1.CommonModule, typeof i2.AppBarModule], [typeof i2.AppBarModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AppBarAllModule>;
|
|
11
|
+
}
|
|
@@ -1,29 +1,32 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { AppBar } from '@syncfusion/ej2-navigations';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { AppBar } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* Represents the Essential JS 2 Angular AppBar Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ejs-appbar></ejs-appbar>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class AppBarComponent extends AppBar implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
containerContext: any;
|
|
20
|
+
tagObjects: any;
|
|
21
|
+
created: any;
|
|
22
|
+
destroyed: any;
|
|
23
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngAfterViewInit(): void;
|
|
26
|
+
ngOnDestroy(): void;
|
|
27
|
+
ngAfterContentChecked(): void;
|
|
28
|
+
registerEvents: (eventList: string[]) => void;
|
|
29
|
+
addTwoWay: (propList: string[]) => void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBarComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppBarComponent, "ejs-appbar", never, { "colorMode": "colorMode"; "cssClass": "cssClass"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "htmlAttributes": "htmlAttributes"; "isSticky": "isSticky"; "locale": "locale"; "mode": "mode"; "position": "position"; }, { "created": "created"; "destroyed": "destroyed"; }, never, ["*"]>;
|
|
32
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./appbar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the AppBar component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class AppBarModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBarModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppBarModule, [typeof i1.AppBarComponent], [typeof i2.CommonModule], [typeof i1.AppBarComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AppBarModule>;
|
|
11
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./breadcrumb.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the Breadcrumb component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class BreadcrumbAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbAllModule, never, [typeof i1.CommonModule, typeof i2.BreadcrumbModule], [typeof i2.BreadcrumbModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbAllModule>;
|
|
11
|
+
}
|
|
@@ -1,46 +1,49 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Breadcrumb } from '@syncfusion/ej2-navigations';
|
|
4
|
-
import { BreadcrumbItemsDirective } from './items.directive';
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
*
|
|
30
|
-
* @
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
* @
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Breadcrumb } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import { BreadcrumbItemsDirective } from './items.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare const inputs: string[];
|
|
7
|
+
export declare const outputs: string[];
|
|
8
|
+
export declare const twoWays: string[];
|
|
9
|
+
/**
|
|
10
|
+
* Represents the EJ2 Angular Breadcrumb Component.
|
|
11
|
+
* ```html
|
|
12
|
+
* <ejs-breadcrumb [items]='breadcrumbItems'></ejs-breadcrumb>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class BreadcrumbComponent extends Breadcrumb implements IComponentBase {
|
|
16
|
+
private ngEle;
|
|
17
|
+
private srenderer;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private injector;
|
|
20
|
+
context: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
beforeItemRender: any;
|
|
23
|
+
created: any;
|
|
24
|
+
itemClick: any;
|
|
25
|
+
activeItemChange: any;
|
|
26
|
+
childItems: QueryList<BreadcrumbItemsDirective>;
|
|
27
|
+
tags: string[];
|
|
28
|
+
/**
|
|
29
|
+
* Specifies the separator template for Breadcrumb.
|
|
30
|
+
* @default '/'
|
|
31
|
+
* @asptype string
|
|
32
|
+
*/
|
|
33
|
+
separatorTemplate: any;
|
|
34
|
+
/**
|
|
35
|
+
* Specifies the template for Breadcrumb item.
|
|
36
|
+
* @default null
|
|
37
|
+
* @asptype string
|
|
38
|
+
*/
|
|
39
|
+
itemTemplate: any;
|
|
40
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
41
|
+
ngOnInit(): void;
|
|
42
|
+
ngAfterViewInit(): void;
|
|
43
|
+
ngOnDestroy(): void;
|
|
44
|
+
ngAfterContentChecked(): void;
|
|
45
|
+
registerEvents: (eventList: string[]) => void;
|
|
46
|
+
addTwoWay: (propList: string[]) => void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "ejs-breadcrumb", never, { "activeItem": "activeItem"; "cssClass": "cssClass"; "disabled": "disabled"; "enableActiveItemNavigation": "enableActiveItemNavigation"; "enableNavigation": "enableNavigation"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "itemTemplate": "itemTemplate"; "items": "items"; "locale": "locale"; "maxItems": "maxItems"; "overflowMode": "overflowMode"; "separatorTemplate": "separatorTemplate"; "url": "url"; }, { "beforeItemRender": "beforeItemRender"; "created": "created"; "itemClick": "itemClick"; "activeItemChange": "activeItemChange"; }, ["separatorTemplate", "itemTemplate", "childItems"], never>;
|
|
49
|
+
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./breadcrumb.component";
|
|
3
|
+
import * as i2 from "./items.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
/**
|
|
6
|
+
* NgModule definition for the Breadcrumb component.
|
|
7
|
+
*/
|
|
8
|
+
export declare class BreadcrumbModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbModule, [typeof i1.BreadcrumbComponent, typeof i2.BreadcrumbItemDirective, typeof i2.BreadcrumbItemsDirective], [typeof i3.CommonModule], [typeof i1.BreadcrumbComponent, typeof i2.BreadcrumbItemDirective, typeof i2.BreadcrumbItemsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbModule>;
|
|
12
|
+
}
|
|
@@ -1,51 +1,56 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-breadcrumb-item text='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
*
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* `e-breadcrumb-item` directive represent a item of the Angular Breadcrumb.
|
|
6
|
+
* It must be contained in a Breadcrumb component(`ejs-breadcrumb`).
|
|
7
|
+
* ```html
|
|
8
|
+
* <ejs-breadcrumb>
|
|
9
|
+
* <e-breadcrumb-items>
|
|
10
|
+
* <e-breadcrumb-item text='Home' url='/'></e-breadcrumb-item>
|
|
11
|
+
* <e-breadcrumb-item text='Index' url='./index'></e-breadcrumb-item>
|
|
12
|
+
* </e-breadcrumb-items>
|
|
13
|
+
* </ejs-breadcrumb>
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare class BreadcrumbItemDirective extends ComplexBase<BreadcrumbItemDirective> {
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
directivePropList: any;
|
|
19
|
+
/**
|
|
20
|
+
* Enable or disable the breadcrumb item, when set to true, the breadcrumb item will be disabled.
|
|
21
|
+
* @default false
|
|
22
|
+
*/
|
|
23
|
+
disabled: any;
|
|
24
|
+
/**
|
|
25
|
+
* Defines a class/multiple classes separated by a space for the item that is used to include an icon.
|
|
26
|
+
* @default null
|
|
27
|
+
*/
|
|
28
|
+
iconCss: any;
|
|
29
|
+
/**
|
|
30
|
+
* Specifies the id of the Breadcrumb item.
|
|
31
|
+
* @default ''
|
|
32
|
+
*/
|
|
33
|
+
id: any;
|
|
34
|
+
/**
|
|
35
|
+
* Specifies the text content of the Breadcrumb item.
|
|
36
|
+
* @default ''
|
|
37
|
+
*/
|
|
38
|
+
text: any;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies the Url of the Breadcrumb item that will be activated when clicked.
|
|
41
|
+
* @default ''
|
|
42
|
+
*/
|
|
43
|
+
url: any;
|
|
44
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemDirective, never>;
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbItemDirective, "ejs-breadcrumb>e-breadcrumb-items>e-breadcrumb-item", never, { "disabled": "disabled"; "iconCss": "iconCss"; "id": "id"; "text": "text"; "url": "url"; }, {}, never>;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* BreadcrumbItem Array Directive
|
|
50
|
+
* @private
|
|
51
|
+
*/
|
|
52
|
+
export declare class BreadcrumbItemsDirective extends ArrayBase<BreadcrumbItemsDirective> {
|
|
53
|
+
constructor();
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemsDirective, never>;
|
|
55
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbItemsDirective, "ejs-breadcrumb>e-breadcrumb-items", never, {}, {}, ["children"]>;
|
|
56
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./carousel.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the Carousel component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class CarouselAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CarouselAllModule, never, [typeof i1.CommonModule, typeof i2.CarouselModule], [typeof i2.CarouselModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CarouselAllModule>;
|
|
11
|
+
}
|