flowbite-angular 0.0.2 → 1.0.0-alpha.2
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/{esm2020 → esm2022}/flowbite-angular.mjs +2 -2
- package/esm2022/lib/common/flowbite.theme.init.mjs +318 -0
- package/esm2022/lib/common/index.mjs +3 -0
- package/esm2022/lib/common/type-definitions/colors/flowbite.colors.mjs +2 -0
- package/esm2022/lib/common/type-definitions/colors/flowbite.gradient-colors.mjs +2 -0
- package/esm2022/lib/common/type-definitions/colors/flowbite.gradient-duo-tone-colors.mjs +2 -0
- package/esm2022/lib/common/type-definitions/colors/index.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.boolean.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.class.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.combination.mjs +5 -0
- package/esm2022/lib/common/type-definitions/flowbite.content-positions.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.deep-partial.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.heading-levels.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.positions.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.router-link-parameter.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.sizes.mjs +2 -0
- package/esm2022/lib/common/type-definitions/flowbite.themes.mjs +2 -0
- package/esm2022/lib/common/type-definitions/index.mjs +2 -0
- package/esm2022/lib/components/accordion/accordion-content.component.mjs +46 -0
- package/esm2022/lib/components/accordion/accordion-content.theme.mjs +19 -0
- package/esm2022/lib/components/accordion/accordion-content.theme.service.mjs +17 -0
- package/esm2022/lib/components/accordion/accordion-panel.component.mjs +57 -0
- package/esm2022/lib/components/accordion/accordion-panel.theme.mjs +7 -0
- package/esm2022/lib/components/accordion/accordion-panel.theme.service.mjs +17 -0
- package/esm2022/lib/components/accordion/accordion-title.component.mjs +70 -0
- package/esm2022/lib/components/accordion/accordion-title.theme.mjs +26 -0
- package/esm2022/lib/components/accordion/accordion-title.theme.service.mjs +18 -0
- package/esm2022/lib/components/accordion/accordion.component.mjs +49 -0
- package/esm2022/lib/components/accordion/accordion.theme.mjs +19 -0
- package/esm2022/lib/components/accordion/accordion.theme.service.mjs +17 -0
- package/esm2022/lib/components/accordion/index.mjs +13 -0
- package/esm2022/lib/components/alert/alert.component.mjs +95 -0
- package/esm2022/lib/components/alert/alert.theme.mjs +34 -0
- package/esm2022/lib/components/alert/alert.theme.service.mjs +18 -0
- package/esm2022/lib/components/alert/index.mjs +4 -0
- package/esm2022/lib/components/badge/badge.component.mjs +47 -0
- package/esm2022/lib/components/badge/badge.theme.mjs +34 -0
- package/esm2022/lib/components/badge/badge.theme.service.mjs +19 -0
- package/esm2022/lib/components/badge/index.mjs +4 -0
- package/esm2022/lib/components/base-component.directive.mjs +34 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb-item.component.mjs +57 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb-item.theme.mjs +18 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb-item.theme.service.mjs +18 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +46 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.theme.mjs +7 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.theme.service.mjs +17 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +7 -0
- package/esm2022/lib/components/button/button.component.mjs +81 -0
- package/esm2022/lib/components/button/button.theme.mjs +113 -0
- package/esm2022/lib/components/button/button.theme.service.mjs +24 -0
- package/esm2022/lib/components/button/index.mjs +4 -0
- package/esm2022/lib/components/dark-theme-toggle/dark-theme-toggle.component.mjs +76 -0
- package/esm2022/lib/components/dark-theme-toggle/dark-theme-toggle.theme.mjs +7 -0
- package/esm2022/lib/components/dark-theme-toggle/dark-theme-toggle.theme.service.mjs +17 -0
- package/esm2022/lib/components/dark-theme-toggle/index.mjs +4 -0
- package/esm2022/lib/components/dropdown/dropdown-divider.component.mjs +34 -0
- package/esm2022/lib/components/dropdown/dropdown-divider.theme.mjs +7 -0
- package/esm2022/lib/components/dropdown/dropdown-divider.theme.service.mjs +17 -0
- package/esm2022/lib/components/dropdown/dropdown-header.component.mjs +44 -0
- package/esm2022/lib/components/dropdown/dropdown-header.theme.mjs +10 -0
- package/esm2022/lib/components/dropdown/dropdown-header.theme.service.mjs +18 -0
- package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +34 -0
- package/esm2022/lib/components/dropdown/dropdown-item.theme.mjs +6 -0
- package/esm2022/lib/components/dropdown/dropdown-item.theme.service.mjs +17 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +149 -0
- package/esm2022/lib/components/dropdown/dropdown.theme.mjs +32 -0
- package/esm2022/lib/components/dropdown/dropdown.theme.service.mjs +22 -0
- package/esm2022/lib/components/dropdown/index.mjs +13 -0
- package/esm2022/lib/components/form-field/directives/addon.directive.mjs +32 -0
- package/esm2022/lib/components/form-field/directives/addon.directive.theme.mjs +8 -0
- package/esm2022/lib/components/form-field/directives/addon.directive.theme.service.mjs +17 -0
- package/esm2022/lib/components/form-field/directives/base-input.directive.mjs +26 -0
- package/esm2022/lib/components/form-field/directives/helper.directive.mjs +34 -0
- package/esm2022/lib/components/form-field/directives/helper.directive.theme.mjs +12 -0
- package/esm2022/lib/components/form-field/directives/helper.directive.theme.service.mjs +17 -0
- package/esm2022/lib/components/form-field/directives/icon.directive.mjs +32 -0
- package/esm2022/lib/components/form-field/directives/icon.directive.theme.mjs +8 -0
- package/esm2022/lib/components/form-field/directives/icon.directive.theme.service.mjs +17 -0
- package/esm2022/lib/components/form-field/directives/index.mjs +17 -0
- package/esm2022/lib/components/form-field/directives/input.directive.mjs +41 -0
- package/esm2022/lib/components/form-field/directives/input.directive.theme.mjs +79 -0
- package/esm2022/lib/components/form-field/directives/input.directive.theme.service.mjs +32 -0
- package/esm2022/lib/components/form-field/directives/label.directive.mjs +41 -0
- package/esm2022/lib/components/form-field/directives/label.directive.theme.mjs +51 -0
- package/esm2022/lib/components/form-field/directives/label.directive.theme.service.mjs +23 -0
- package/esm2022/lib/components/form-field/form-field.component.mjs +40 -0
- package/esm2022/lib/components/form-field/form-field.theme.mjs +8 -0
- package/esm2022/lib/components/form-field/form-field.theme.service.mjs +17 -0
- package/esm2022/lib/components/form-field/index.mjs +5 -0
- package/esm2022/lib/components/icon/icon-registry.mjs +159 -0
- package/esm2022/lib/components/icon/icon.component.mjs +67 -0
- package/esm2022/lib/components/icon/index.mjs +4 -0
- package/esm2022/lib/components/icon/trusted-types.mjs +21 -0
- package/esm2022/lib/components/index.mjs +16 -0
- package/esm2022/lib/components/indicators/index.mjs +4 -0
- package/esm2022/lib/components/indicators/indicators.component.mjs +54 -0
- package/esm2022/lib/components/indicators/indicators.theme.mjs +68 -0
- package/esm2022/lib/components/indicators/indicators.theme.service.mjs +19 -0
- package/esm2022/lib/components/modal/index.mjs +13 -0
- package/esm2022/lib/components/modal/modal-body.component.mjs +34 -0
- package/esm2022/lib/components/modal/modal-body.theme.mjs +7 -0
- package/esm2022/lib/components/modal/modal-body.theme.service.mjs +17 -0
- package/esm2022/lib/components/modal/modal-footer.component.mjs +34 -0
- package/esm2022/lib/components/modal/modal-footer.theme.mjs +7 -0
- package/esm2022/lib/components/modal/modal-footer.theme.service.mjs +17 -0
- package/esm2022/lib/components/modal/modal-header.component.mjs +66 -0
- package/esm2022/lib/components/modal/modal-header.theme.mjs +13 -0
- package/esm2022/lib/components/modal/modal-header.theme.service.mjs +19 -0
- package/esm2022/lib/components/modal/modal.component.mjs +142 -0
- package/esm2022/lib/components/modal/modal.theme.mjs +33 -0
- package/esm2022/lib/components/modal/modal.theme.service.mjs +20 -0
- package/esm2022/lib/components/navbar/index.mjs +19 -0
- package/esm2022/lib/components/navbar/navbar-brand.component.mjs +34 -0
- package/esm2022/lib/components/navbar/navbar-brand.theme.mjs +7 -0
- package/esm2022/lib/components/navbar/navbar-brand.theme.service.mjs +17 -0
- package/esm2022/lib/components/navbar/navbar-content.component.mjs +45 -0
- package/esm2022/lib/components/navbar/navbar-content.theme.mjs +14 -0
- package/esm2022/lib/components/navbar/navbar-content.theme.service.mjs +18 -0
- package/esm2022/lib/components/navbar/navbar-icon-button.component.mjs +42 -0
- package/esm2022/lib/components/navbar/navbar-icon-button.theme.mjs +15 -0
- package/esm2022/lib/components/navbar/navbar-icon-button.theme.service.mjs +17 -0
- package/esm2022/lib/components/navbar/navbar-item.component.mjs +49 -0
- package/esm2022/lib/components/navbar/navbar-item.theme.mjs +11 -0
- package/esm2022/lib/components/navbar/navbar-item.theme.service.mjs +17 -0
- package/esm2022/lib/components/navbar/navbar-toggle.component.mjs +50 -0
- package/esm2022/lib/components/navbar/navbar-toggle.theme.mjs +7 -0
- package/esm2022/lib/components/navbar/navbar-toggle.theme.service.mjs +17 -0
- package/esm2022/lib/components/navbar/navbar.component.mjs +62 -0
- package/esm2022/lib/components/navbar/navbar.theme.mjs +23 -0
- package/esm2022/lib/components/navbar/navbar.theme.service.mjs +17 -0
- package/esm2022/lib/components/scroll-top/index.mjs +4 -0
- package/esm2022/lib/components/scroll-top/scroll-top.component.mjs +50 -0
- package/esm2022/lib/components/scroll-top/scroll-top.theme.mjs +27 -0
- package/esm2022/lib/components/scroll-top/scroll-top.theme.service.mjs +17 -0
- package/esm2022/lib/components/sidebar/index.mjs +19 -0
- package/esm2022/lib/components/sidebar/sidebar-item-group.component.mjs +81 -0
- package/esm2022/lib/components/sidebar/sidebar-item-group.theme.mjs +18 -0
- package/esm2022/lib/components/sidebar/sidebar-item-group.theme.service.mjs +18 -0
- package/esm2022/lib/components/sidebar/sidebar-item.component.mjs +77 -0
- package/esm2022/lib/components/sidebar/sidebar-item.theme.mjs +18 -0
- package/esm2022/lib/components/sidebar/sidebar-item.theme.service.mjs +18 -0
- package/esm2022/lib/components/sidebar/sidebar-menu.component.mjs +49 -0
- package/esm2022/lib/components/sidebar/sidebar-menu.theme.mjs +24 -0
- package/esm2022/lib/components/sidebar/sidebar-menu.theme.service.mjs +17 -0
- package/esm2022/lib/components/sidebar/sidebar-page-content.component.mjs +36 -0
- package/esm2022/lib/components/sidebar/sidebar-page-content.theme.mjs +12 -0
- package/esm2022/lib/components/sidebar/sidebar-page-content.theme.service.mjs +17 -0
- package/esm2022/lib/components/sidebar/sidebar-toggle.component.mjs +53 -0
- package/esm2022/lib/components/sidebar/sidebar-toggle.theme.mjs +18 -0
- package/esm2022/lib/components/sidebar/sidebar-toggle.theme.service.mjs +17 -0
- package/esm2022/lib/components/sidebar/sidebar.component.mjs +61 -0
- package/esm2022/lib/components/sidebar/sidebar.theme.mjs +11 -0
- package/esm2022/lib/components/sidebar/sidebar.theme.service.mjs +17 -0
- package/esm2022/lib/directives/flowbite-router-link-active.directive.mjs +51 -0
- package/esm2022/lib/directives/flowbite-router-link.directive.mjs +44 -0
- package/esm2022/lib/directives/index.mjs +3 -0
- package/esm2022/lib/pipes/index.mjs +2 -0
- package/esm2022/lib/pipes/sanitize-html/sanitize-html.pipe.mjs +32 -0
- package/esm2022/lib/services/flowbite.theme.service.mjs +16 -0
- package/{esm2020 → esm2022}/lib/services/index.mjs +2 -3
- package/esm2022/lib/utils/boolean.util.mjs +10 -0
- package/esm2022/lib/utils/directives/index.mjs +3 -0
- package/esm2022/lib/utils/directives/inputs/index.mjs +3 -0
- package/esm2022/lib/utils/directives/inputs/router-link-active.input.mjs +8 -0
- package/esm2022/lib/utils/directives/inputs/router-link.inputs.mjs +20 -0
- package/esm2022/lib/utils/directives/outputs/index.mjs +3 -0
- package/esm2022/lib/utils/directives/outputs/router-link-active.output.mjs +8 -0
- package/esm2022/lib/utils/directives/outputs/router-link.output.mjs +8 -0
- package/esm2022/lib/utils/icon.list.mjs +39 -0
- package/esm2022/lib/utils/id.generator.mjs +81 -0
- package/esm2022/lib/utils/index.mjs +9 -0
- package/esm2022/lib/utils/theme/clone-deep.mjs +18 -0
- package/esm2022/lib/utils/theme/create-class.mjs +10 -0
- package/esm2022/lib/utils/theme/create-theme.mjs +10 -0
- package/esm2022/lib/utils/theme/is-object.mjs +10 -0
- package/esm2022/lib/utils/theme/merge-theme.mjs +29 -0
- package/esm2022/lib/utils/theme/to-string.mjs +10 -0
- package/esm2022/public-api.mjs +7 -0
- package/fesm2022/flowbite-angular.mjs +4228 -0
- package/fesm2022/flowbite-angular.mjs.map +1 -0
- package/index.d.ts +5 -4
- package/lib/common/flowbite.theme.init.d.ts +9 -0
- package/lib/common/index.d.ts +2 -0
- package/lib/common/type-definitions/colors/flowbite.colors.d.ts +19 -0
- package/lib/common/type-definitions/colors/flowbite.gradient-colors.d.ts +11 -0
- package/lib/common/type-definitions/colors/flowbite.gradient-duo-tone-colors.d.ts +12 -0
- package/lib/common/type-definitions/colors/index.d.ts +3 -0
- package/lib/common/type-definitions/flowbite.boolean.d.ts +7 -0
- package/lib/common/type-definitions/flowbite.class.d.ts +6 -0
- package/lib/common/type-definitions/flowbite.combination.d.ts +8 -0
- package/lib/common/type-definitions/flowbite.content-positions.d.ts +6 -0
- package/lib/common/type-definitions/flowbite.deep-partial.d.ts +6 -0
- package/lib/common/type-definitions/flowbite.heading-levels.d.ts +4 -0
- package/lib/common/type-definitions/flowbite.positions.d.ts +14 -0
- package/lib/common/type-definitions/flowbite.router-link-parameter.d.ts +5 -0
- package/lib/common/type-definitions/flowbite.sizes.d.ts +10 -0
- package/lib/common/type-definitions/flowbite.themes.d.ts +4 -0
- package/lib/common/type-definitions/index.d.ts +11 -0
- package/lib/components/accordion/accordion-content.component.d.ts +32 -0
- package/lib/components/accordion/accordion-content.theme.d.ts +16 -0
- package/lib/components/accordion/accordion-content.theme.service.d.ts +8 -0
- package/lib/components/accordion/accordion-panel.component.d.ts +27 -0
- package/lib/components/accordion/accordion-panel.theme.d.ts +11 -0
- package/lib/components/accordion/accordion-panel.theme.service.d.ts +9 -0
- package/lib/components/accordion/accordion-title.component.d.ts +46 -0
- package/lib/components/accordion/accordion-title.theme.d.ts +24 -0
- package/lib/components/accordion/accordion-title.theme.service.d.ts +8 -0
- package/lib/components/accordion/accordion.component.d.ts +35 -0
- package/lib/components/accordion/accordion.theme.d.ts +21 -0
- package/lib/components/accordion/accordion.theme.service.d.ts +8 -0
- package/lib/components/accordion/index.d.ts +16 -0
- package/lib/components/alert/alert.component.d.ts +53 -12
- package/lib/components/alert/alert.theme.d.ts +27 -0
- package/lib/components/alert/alert.theme.service.d.ts +8 -0
- package/lib/components/alert/index.d.ts +4 -1
- package/lib/components/badge/badge.component.d.ts +50 -10
- package/lib/components/badge/badge.theme.d.ts +32 -0
- package/lib/components/badge/badge.theme.service.d.ts +8 -0
- package/lib/components/badge/index.d.ts +4 -1
- package/lib/components/base-component.directive.d.ts +19 -0
- package/lib/components/breadcrumb/breadcrumb-item.component.d.ts +39 -0
- package/lib/components/breadcrumb/breadcrumb-item.theme.d.ts +22 -0
- package/lib/components/breadcrumb/breadcrumb-item.theme.service.d.ts +8 -0
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +22 -0
- package/lib/components/breadcrumb/breadcrumb.theme.d.ts +14 -0
- package/lib/components/breadcrumb/breadcrumb.theme.service.d.ts +8 -0
- package/lib/components/breadcrumb/index.d.ts +8 -0
- package/lib/components/button/button.component.d.ts +110 -0
- package/lib/components/button/button.theme.d.ts +56 -0
- package/lib/components/button/button.theme.service.d.ts +8 -0
- package/lib/components/button/index.d.ts +4 -0
- package/lib/components/dark-theme-toggle/dark-theme-toggle.component.d.ts +21 -9
- package/lib/components/dark-theme-toggle/dark-theme-toggle.theme.d.ts +11 -0
- package/lib/components/dark-theme-toggle/dark-theme-toggle.theme.service.d.ts +8 -0
- package/lib/components/dark-theme-toggle/index.d.ts +4 -1
- package/lib/components/dropdown/dropdown-divider.component.d.ts +13 -0
- package/lib/components/dropdown/dropdown-divider.theme.d.ts +11 -0
- package/lib/components/dropdown/dropdown-divider.theme.service.d.ts +8 -0
- package/lib/components/dropdown/dropdown-header.component.d.ts +13 -0
- package/lib/components/dropdown/dropdown-header.theme.d.ts +16 -0
- package/lib/components/dropdown/dropdown-header.theme.service.d.ts +8 -0
- package/lib/components/dropdown/dropdown-item.component.d.ts +17 -0
- package/lib/components/dropdown/dropdown-item.theme.d.ts +11 -0
- package/lib/components/dropdown/dropdown-item.theme.service.d.ts +8 -0
- package/lib/components/dropdown/dropdown.component.d.ts +71 -0
- package/lib/components/dropdown/dropdown.theme.d.ts +44 -0
- package/lib/components/dropdown/dropdown.theme.service.d.ts +8 -0
- package/lib/components/dropdown/index.d.ts +16 -0
- package/lib/components/form-field/directives/addon.directive.d.ts +13 -0
- package/lib/components/form-field/directives/addon.directive.theme.d.ts +10 -0
- package/lib/components/form-field/directives/addon.directive.theme.service.d.ts +8 -0
- package/lib/components/form-field/directives/base-input.directive.d.ts +14 -0
- package/lib/components/form-field/directives/helper.directive.d.ts +18 -0
- package/lib/components/form-field/directives/helper.directive.theme.d.ts +13 -0
- package/lib/components/form-field/directives/helper.directive.theme.service.d.ts +8 -0
- package/lib/components/form-field/directives/icon.directive.d.ts +13 -0
- package/lib/components/form-field/directives/icon.directive.theme.d.ts +10 -0
- package/lib/components/form-field/directives/icon.directive.theme.service.d.ts +8 -0
- package/lib/components/form-field/directives/index.d.ts +21 -0
- package/lib/components/form-field/directives/input.directive.d.ts +100 -0
- package/lib/components/form-field/directives/input.directive.theme.d.ts +24 -0
- package/lib/components/form-field/directives/input.directive.theme.service.d.ts +8 -0
- package/lib/components/form-field/directives/label.directive.d.ts +62 -0
- package/lib/components/form-field/directives/label.directive.theme.d.ts +20 -0
- package/lib/components/form-field/directives/label.directive.theme.service.d.ts +8 -0
- package/lib/components/form-field/form-field.component.d.ts +20 -0
- package/lib/components/form-field/form-field.theme.d.ts +45 -0
- package/lib/components/form-field/form-field.theme.service.d.ts +8 -0
- package/lib/components/form-field/index.d.ts +5 -0
- package/lib/components/icon/icon-registry.d.ts +45 -0
- package/lib/components/icon/icon.component.d.ts +22 -0
- package/lib/components/icon/index.d.ts +5 -0
- package/lib/components/icon/trusted-types.d.ts +15 -0
- package/lib/components/index.d.ts +10 -0
- package/lib/components/indicators/index.d.ts +4 -0
- package/lib/components/indicators/indicators.component.d.ts +92 -0
- package/lib/components/indicators/indicators.theme.d.ts +43 -0
- package/lib/components/indicators/indicators.theme.service.d.ts +8 -0
- package/lib/components/modal/index.d.ts +16 -0
- package/lib/components/modal/modal-body.component.d.ts +17 -0
- package/lib/components/modal/modal-body.theme.d.ts +11 -0
- package/lib/components/modal/modal-body.theme.service.d.ts +8 -0
- package/lib/components/modal/modal-footer.component.d.ts +17 -0
- package/lib/components/modal/modal-footer.theme.d.ts +11 -0
- package/lib/components/modal/modal-footer.theme.service.d.ts +8 -0
- package/lib/components/modal/modal-header.component.d.ts +29 -0
- package/lib/components/modal/modal-header.theme.d.ts +20 -0
- package/lib/components/modal/modal-header.theme.service.d.ts +8 -0
- package/lib/components/modal/modal.component.d.ts +73 -0
- package/lib/components/modal/modal.theme.d.ts +39 -0
- package/lib/components/modal/modal.theme.service.d.ts +8 -0
- package/lib/components/navbar/index.d.ts +24 -1
- package/lib/components/navbar/navbar-brand.component.d.ts +17 -0
- package/lib/components/navbar/navbar-brand.theme.d.ts +11 -0
- package/lib/components/navbar/navbar-brand.theme.service.d.ts +8 -0
- package/lib/components/navbar/navbar-content.component.d.ts +27 -0
- package/lib/components/navbar/navbar-content.theme.d.ts +18 -0
- package/lib/components/navbar/navbar-content.theme.service.d.ts +8 -0
- package/lib/components/navbar/navbar-icon-button.component.d.ts +27 -0
- package/lib/components/navbar/navbar-icon-button.theme.d.ts +14 -0
- package/lib/components/navbar/navbar-icon-button.theme.service.d.ts +8 -0
- package/lib/components/navbar/navbar-item.component.d.ts +29 -0
- package/lib/components/navbar/navbar-item.theme.d.ts +15 -0
- package/lib/components/navbar/navbar-item.theme.service.d.ts +8 -0
- package/lib/components/navbar/navbar-toggle.component.d.ts +23 -0
- package/lib/components/navbar/navbar-toggle.theme.d.ts +11 -0
- package/lib/components/navbar/navbar-toggle.theme.service.d.ts +8 -0
- package/lib/components/navbar/navbar.component.d.ts +45 -6
- package/lib/components/navbar/navbar.theme.d.ts +24 -0
- package/lib/components/navbar/navbar.theme.service.d.ts +8 -0
- package/lib/components/scroll-top/index.d.ts +4 -0
- package/lib/components/scroll-top/scroll-top.component.d.ts +46 -0
- package/lib/components/scroll-top/scroll-top.theme.d.ts +21 -0
- package/lib/components/scroll-top/scroll-top.theme.service.d.ts +8 -0
- package/lib/components/sidebar/index.d.ts +24 -3
- package/lib/components/sidebar/sidebar-item-group.component.d.ts +41 -2
- package/lib/components/sidebar/sidebar-item-group.theme.d.ts +19 -0
- package/lib/components/sidebar/sidebar-item-group.theme.service.d.ts +8 -0
- package/lib/components/sidebar/sidebar-item.component.d.ts +38 -8
- package/lib/components/sidebar/sidebar-item.theme.d.ts +22 -0
- package/lib/components/sidebar/sidebar-item.theme.service.d.ts +8 -0
- package/lib/components/sidebar/sidebar-menu.component.d.ts +43 -0
- package/lib/components/sidebar/sidebar-menu.theme.d.ts +18 -0
- package/lib/components/sidebar/sidebar-menu.theme.service.d.ts +8 -0
- package/lib/components/sidebar/sidebar-page-content.component.d.ts +22 -0
- package/lib/components/sidebar/sidebar-page-content.theme.d.ts +15 -0
- package/lib/components/sidebar/sidebar-page-content.theme.service.d.ts +8 -0
- package/lib/components/sidebar/sidebar-toggle.component.d.ts +40 -0
- package/lib/components/sidebar/sidebar-toggle.theme.d.ts +19 -0
- package/lib/components/sidebar/sidebar-toggle.theme.service.d.ts +8 -0
- package/lib/components/sidebar/sidebar.component.d.ts +30 -7
- package/lib/components/sidebar/sidebar.theme.d.ts +25 -0
- package/lib/components/sidebar/sidebar.theme.service.d.ts +8 -0
- package/lib/directives/flowbite-router-link-active.directive.d.ts +25 -0
- package/lib/directives/flowbite-router-link.directive.d.ts +16 -0
- package/lib/directives/index.d.ts +2 -0
- package/lib/pipes/index.d.ts +1 -1
- package/lib/pipes/sanitize-html/sanitize-html.pipe.d.ts +14 -4
- package/lib/services/flowbite.theme.service.d.ts +10 -0
- package/lib/services/index.d.ts +1 -2
- package/lib/utils/boolean.util.d.ts +8 -0
- package/lib/utils/directives/index.d.ts +2 -0
- package/lib/utils/directives/inputs/index.d.ts +2 -0
- package/lib/utils/directives/inputs/router-link-active.input.d.ts +8 -0
- package/lib/utils/directives/inputs/router-link.inputs.d.ts +8 -0
- package/lib/utils/directives/outputs/index.d.ts +2 -0
- package/lib/utils/directives/outputs/router-link-active.output.d.ts +8 -0
- package/lib/utils/directives/outputs/router-link.output.d.ts +8 -0
- package/lib/utils/icon.list.d.ts +7 -0
- package/lib/utils/id.generator.d.ts +59 -0
- package/lib/utils/index.d.ts +8 -0
- package/lib/utils/theme/clone-deep.d.ts +7 -0
- package/lib/utils/theme/create-class.d.ts +7 -0
- package/lib/utils/theme/create-theme.d.ts +7 -0
- package/lib/utils/theme/is-object.d.ts +7 -0
- package/lib/utils/theme/merge-theme.d.ts +8 -0
- package/lib/utils/theme/to-string.d.ts +7 -0
- package/package.json +25 -39
- package/public-api.d.ts +6 -0
- package/LICENSE +0 -21
- package/README.md +0 -376
- package/esm2020/index.mjs +0 -5
- package/esm2020/lib/components/alert/alert.component.mjs +0 -128
- package/esm2020/lib/components/alert/index.mjs +0 -2
- package/esm2020/lib/components/badge/badge.component.mjs +0 -77
- package/esm2020/lib/components/badge/index.mjs +0 -2
- package/esm2020/lib/components/dark-theme-toggle/dark-theme-toggle.component.mjs +0 -122
- package/esm2020/lib/components/dark-theme-toggle/index.mjs +0 -2
- package/esm2020/lib/components/index.mjs +0 -6
- package/esm2020/lib/components/navbar/index.mjs +0 -2
- package/esm2020/lib/components/navbar/navbar.component.mjs +0 -49
- package/esm2020/lib/components/sidebar/index.mjs +0 -4
- package/esm2020/lib/components/sidebar/sidebar-item-group.component.mjs +0 -18
- package/esm2020/lib/components/sidebar/sidebar-item.component.mjs +0 -73
- package/esm2020/lib/components/sidebar/sidebar.component.mjs +0 -50
- package/esm2020/lib/flowbite.module.mjs +0 -45
- package/esm2020/lib/pipes/index.mjs +0 -2
- package/esm2020/lib/pipes/sanitize-html/sanitize-html.pipe.mjs +0 -21
- package/esm2020/lib/services/sidebar/index.mjs +0 -2
- package/esm2020/lib/services/sidebar/sidebar.service.mjs +0 -24
- package/esm2020/lib/services/theme/index.mjs +0 -2
- package/esm2020/lib/services/theme/theme.service.mjs +0 -24
- package/fesm2015/flowbite-angular.mjs +0 -600
- package/fesm2015/flowbite-angular.mjs.map +0 -1
- package/fesm2020/flowbite-angular.mjs +0 -599
- package/fesm2020/flowbite-angular.mjs.map +0 -1
- package/flowbite-angular.d.ts +0 -5
- package/lib/flowbite.module.d.ts +0 -16
- package/lib/services/sidebar/index.d.ts +0 -1
- package/lib/services/sidebar/sidebar.service.d.ts +0 -9
- package/lib/services/theme/index.d.ts +0 -1
- package/lib/services/theme/theme.service.d.ts +0 -10
- /package/{esm2020 → esm2022}/lib/pipes/sanitize-html/index.mjs +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import type { NavbarContentClass } from './navbar-content.theme';
|
|
3
|
+
import { NavbarContentThemeService } from './navbar-content.theme.service';
|
|
4
|
+
import { NavbarComponent } from './navbar.component';
|
|
5
|
+
import type { NavbarColors } from './navbar.theme';
|
|
6
|
+
import type { OnInit } from '@angular/core';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class NavbarContentComponent extends BaseComponent<NavbarContentClass> implements OnInit {
|
|
9
|
+
readonly themeService: NavbarContentThemeService;
|
|
10
|
+
readonly navbarComponent: import("@angular/core").ModelSignal<NavbarComponent>;
|
|
11
|
+
color: import("@angular/core").ModelSignal<keyof NavbarColors>;
|
|
12
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
13
|
+
root?: {
|
|
14
|
+
base?: string | undefined;
|
|
15
|
+
isOpen?: {
|
|
16
|
+
enabled?: string | undefined;
|
|
17
|
+
disabled?: string | undefined;
|
|
18
|
+
} | undefined;
|
|
19
|
+
} | undefined;
|
|
20
|
+
list?: {
|
|
21
|
+
base?: string | undefined;
|
|
22
|
+
} | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
fetchClass(): NavbarContentClass;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarContentComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarContentComponent, "flowbite-navbar-content", never, { "navbarComponent": { "alias": "navbarComponent"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "navbarComponent": "navbarComponentChange"; "color": "colorChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteBoolean, FlowbiteClass } from '../../common';
|
|
2
|
+
export interface NavbarContentProperties {
|
|
3
|
+
isOpen: keyof FlowbiteBoolean;
|
|
4
|
+
customStyle: DeepPartial<NavbarContentTheme>;
|
|
5
|
+
}
|
|
6
|
+
export interface NavbarContentTheme {
|
|
7
|
+
root: {
|
|
8
|
+
base: string;
|
|
9
|
+
isOpen: FlowbiteBoolean;
|
|
10
|
+
};
|
|
11
|
+
list: {
|
|
12
|
+
base: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare const navbarContentTheme: NavbarContentTheme;
|
|
16
|
+
export interface NavbarContentClass extends FlowbiteClass {
|
|
17
|
+
navbarContentListClass: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { NavbarContentClass, NavbarContentProperties, NavbarContentTheme } from './navbar-content.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_NAVBAR_CONTENT_THEME_TOKEN: InjectionToken<NavbarContentTheme>;
|
|
5
|
+
export declare class NavbarContentThemeService implements FlowbiteThemeService<NavbarContentProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: NavbarContentProperties): NavbarContentClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { NavbarContentComponent } from './navbar-content.component';
|
|
3
|
+
import type { NavbarIconButtonClass } from './navbar-icon-button.theme';
|
|
4
|
+
import { NavbarIconButtonThemeService } from './navbar-icon-button.theme.service';
|
|
5
|
+
import { NavbarComponent } from './navbar.component';
|
|
6
|
+
import type { NavbarColors } from './navbar.theme';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class NavbarIconButtonComponent extends BaseComponent<NavbarIconButtonClass> {
|
|
9
|
+
readonly themeService: NavbarIconButtonThemeService;
|
|
10
|
+
readonly navbarComponent: NavbarComponent | null;
|
|
11
|
+
readonly navbarContentComponent: NavbarContentComponent | null;
|
|
12
|
+
color: import("@angular/core").ModelSignal<keyof NavbarColors>;
|
|
13
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
14
|
+
root?: {
|
|
15
|
+
base?: string | undefined;
|
|
16
|
+
color?: {
|
|
17
|
+
[x: string]: string | undefined;
|
|
18
|
+
primary?: string | undefined;
|
|
19
|
+
gray?: string | undefined;
|
|
20
|
+
} | undefined;
|
|
21
|
+
} | undefined;
|
|
22
|
+
}>;
|
|
23
|
+
fetchClass(): NavbarIconButtonClass;
|
|
24
|
+
verify(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarIconButtonComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarIconButtonComponent, "flowbite-navbar-icon-button", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "color": "colorChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
import type { NavbarColors } from './navbar.theme';
|
|
3
|
+
export interface NavbarIconButtonProperties {
|
|
4
|
+
color: keyof NavbarColors;
|
|
5
|
+
customStyle: DeepPartial<NavbarIconButtonTheme>;
|
|
6
|
+
}
|
|
7
|
+
export interface NavbarIconButtonTheme {
|
|
8
|
+
root: {
|
|
9
|
+
base: string;
|
|
10
|
+
color: NavbarColors;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare const navbarIconButtonTheme: NavbarIconButtonTheme;
|
|
14
|
+
export type NavbarIconButtonClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { NavbarIconButtonClass, NavbarIconButtonProperties, NavbarIconButtonTheme } from './navbar-icon-button.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_NAVBAR_ICON_BUTTON_THEME_TOKEN: InjectionToken<NavbarIconButtonTheme>;
|
|
5
|
+
export declare class NavbarIconButtonThemeService implements FlowbiteThemeService<NavbarIconButtonProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: NavbarIconButtonProperties): NavbarIconButtonClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { FlowbiteRouterLinkActiveDirective } from '../../directives/flowbite-router-link-active.directive';
|
|
2
|
+
import { FlowbiteRouterLinkDirective } from '../../directives/flowbite-router-link.directive';
|
|
3
|
+
import { BaseComponent } from '../base-component.directive';
|
|
4
|
+
import { NavbarContentComponent } from './navbar-content.component';
|
|
5
|
+
import type { NavbarItemClass } from './navbar-item.theme';
|
|
6
|
+
import { NavbarItemThemeService } from './navbar-item.theme.service';
|
|
7
|
+
import type { NavbarColors } from './navbar.theme';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class NavbarItemComponent extends BaseComponent<NavbarItemClass> {
|
|
10
|
+
readonly flowbiteRouterLink: FlowbiteRouterLinkDirective | null;
|
|
11
|
+
readonly flowbiteRouterLinkActive: FlowbiteRouterLinkActiveDirective | null;
|
|
12
|
+
readonly themeService: NavbarItemThemeService;
|
|
13
|
+
readonly navbarContentComponent: NavbarContentComponent;
|
|
14
|
+
color: import("@angular/core").ModelSignal<keyof NavbarColors>;
|
|
15
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
16
|
+
root?: {
|
|
17
|
+
base?: string | undefined;
|
|
18
|
+
color?: {
|
|
19
|
+
[x: string]: string | undefined;
|
|
20
|
+
primary?: string | undefined;
|
|
21
|
+
gray?: string | undefined;
|
|
22
|
+
} | undefined;
|
|
23
|
+
} | undefined;
|
|
24
|
+
}>;
|
|
25
|
+
fetchClass(): NavbarItemClass;
|
|
26
|
+
onClick(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarItemComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarItemComponent, "flowbite-navbar-item", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "color": "colorChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DeepPartial } from '../../common';
|
|
2
|
+
import type { FlowbiteClass } from '../../common/type-definitions/flowbite.class';
|
|
3
|
+
import type { NavbarColors } from './navbar.theme';
|
|
4
|
+
export interface NabvarItemProperties {
|
|
5
|
+
color: keyof NavbarColors;
|
|
6
|
+
customStyle: DeepPartial<NavbarItemTheme>;
|
|
7
|
+
}
|
|
8
|
+
export interface NavbarItemTheme {
|
|
9
|
+
root: {
|
|
10
|
+
base: string;
|
|
11
|
+
color: NavbarColors;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare const navbarItemTheme: NavbarItemTheme;
|
|
15
|
+
export type NavbarItemClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { NabvarItemProperties, NavbarItemClass, NavbarItemTheme } from './navbar-item.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_NAVBAR_ITEM_THEME_TOKEN: InjectionToken<NavbarItemTheme>;
|
|
5
|
+
export declare class NavbarItemThemeService implements FlowbiteThemeService<NabvarItemProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: NabvarItemProperties): NavbarItemClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { IconRegistry } from '../icon';
|
|
3
|
+
import type { NavbarToggleClass } from './navbar-toggle.theme';
|
|
4
|
+
import { NavbarToggleThemeService } from './navbar-toggle.theme.service';
|
|
5
|
+
import { NavbarComponent } from './navbar.component';
|
|
6
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class NavbarToggleComponent extends BaseComponent<NavbarToggleClass> {
|
|
9
|
+
readonly themeService: NavbarToggleThemeService;
|
|
10
|
+
readonly navbarComponent: import("@angular/core").ModelSignal<NavbarComponent>;
|
|
11
|
+
readonly iconRegistry: IconRegistry;
|
|
12
|
+
readonly domSanitizer: DomSanitizer;
|
|
13
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
14
|
+
root?: {
|
|
15
|
+
base?: string | undefined;
|
|
16
|
+
} | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
fetchClass(): NavbarToggleClass;
|
|
19
|
+
init(): void;
|
|
20
|
+
onClick(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarToggleComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarToggleComponent, "flowbite-navbar-toggle", never, { "navbarComponent": { "alias": "navbarComponent"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "navbarComponent": "navbarComponentChange"; "customStyle": "customStyleChange"; }, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
export interface NavbarToggleProperties {
|
|
3
|
+
customStyle: DeepPartial<NavbarToggleTheme>;
|
|
4
|
+
}
|
|
5
|
+
export interface NavbarToggleTheme {
|
|
6
|
+
root: {
|
|
7
|
+
base: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare const navbarToogleTheme: NavbarToggleTheme;
|
|
11
|
+
export type NavbarToggleClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { NavbarToggleClass, NavbarToggleProperties, NavbarToggleTheme } from './navbar-toggle.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_NAVBAR_TOGGLE_THEME_TOKEN: InjectionToken<NavbarToggleTheme>;
|
|
5
|
+
export declare class NavbarToggleThemeService implements FlowbiteThemeService<NavbarToggleProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: NavbarToggleProperties): NavbarToggleClass;
|
|
8
|
+
}
|
|
@@ -1,9 +1,48 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { NavbarBrandComponent } from './navbar-brand.component';
|
|
3
|
+
import { NavbarContentComponent } from './navbar-content.component';
|
|
4
|
+
import { NavbarToggleComponent } from './navbar-toggle.component';
|
|
5
|
+
import type { NavbarClass, NavbarColors } from './navbar.theme';
|
|
6
|
+
import { NavbarThemeService } from './navbar.theme.service';
|
|
1
7
|
import * as i0 from "@angular/core";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
8
|
+
/**
|
|
9
|
+
* @see https://flowbite.com/docs/components/navbar/
|
|
10
|
+
*/
|
|
11
|
+
export declare class NavbarComponent extends BaseComponent<NavbarClass> {
|
|
12
|
+
readonly themeService: NavbarThemeService;
|
|
13
|
+
readonly navbarBrandChild: import("@angular/core").Signal<NavbarBrandComponent | undefined>;
|
|
14
|
+
readonly navbarToggleChild: import("@angular/core").Signal<NavbarToggleComponent | undefined>;
|
|
15
|
+
readonly navbarContentChild: import("@angular/core").Signal<NavbarContentComponent | undefined>;
|
|
16
|
+
color: import("@angular/core").ModelSignal<keyof NavbarColors>;
|
|
17
|
+
isOpen: import("@angular/core").ModelSignal<boolean>;
|
|
18
|
+
isRounded: import("@angular/core").ModelSignal<boolean>;
|
|
19
|
+
hasBorder: import("@angular/core").ModelSignal<boolean>;
|
|
20
|
+
isFixed: import("@angular/core").ModelSignal<boolean>;
|
|
21
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
22
|
+
root?: {
|
|
23
|
+
base?: string | undefined;
|
|
24
|
+
color?: {
|
|
25
|
+
[x: string]: string | undefined;
|
|
26
|
+
primary?: string | undefined;
|
|
27
|
+
gray?: string | undefined;
|
|
28
|
+
} | undefined;
|
|
29
|
+
isRounded?: {
|
|
30
|
+
enabled?: string | undefined;
|
|
31
|
+
disabled?: string | undefined;
|
|
32
|
+
} | undefined;
|
|
33
|
+
hasBorder?: {
|
|
34
|
+
enabled?: string | undefined;
|
|
35
|
+
disabled?: string | undefined;
|
|
36
|
+
} | undefined;
|
|
37
|
+
isFixed?: {
|
|
38
|
+
enabled?: string | undefined;
|
|
39
|
+
disabled?: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
} | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
fetchClass(): NavbarClass;
|
|
44
|
+
verify(): void;
|
|
45
|
+
toggleVisibility(isOpen?: boolean): void;
|
|
7
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "flowbite-navbar", never, { "
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "flowbite-navbar", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "isRounded": { "alias": "isRounded"; "required": false; "isSignal": true; }; "hasBorder": { "alias": "hasBorder"; "required": false; "isSignal": true; }; "isFixed": { "alias": "isFixed"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "color": "colorChange"; "isOpen": "isOpenChange"; "isRounded": "isRoundedChange"; "hasBorder": "hasBorderChange"; "isFixed": "isFixedChange"; "customStyle": "customStyleChange"; }, ["navbarBrandChild", "navbarToggleChild", "navbarContentChild"], ["*"], true, never>;
|
|
9
48
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { DeepPartial } from '../../common';
|
|
2
|
+
import type { FlowbiteColors } from '../../common/type-definitions/colors/flowbite.colors';
|
|
3
|
+
import type { FlowbiteBoolean } from '../../common/type-definitions/flowbite.boolean';
|
|
4
|
+
import type { FlowbiteClass } from '../../common/type-definitions/flowbite.class';
|
|
5
|
+
export interface NavbarColors extends Pick<FlowbiteColors, 'primary' | 'gray'> {
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
}
|
|
8
|
+
export interface NavbarProperties {
|
|
9
|
+
isRounded: keyof FlowbiteBoolean;
|
|
10
|
+
hasBorder: keyof FlowbiteBoolean;
|
|
11
|
+
isFixed: keyof FlowbiteBoolean;
|
|
12
|
+
customStyle: DeepPartial<NavbarTheme>;
|
|
13
|
+
}
|
|
14
|
+
export interface NavbarTheme {
|
|
15
|
+
root: {
|
|
16
|
+
base: string;
|
|
17
|
+
color: NavbarColors;
|
|
18
|
+
isRounded: FlowbiteBoolean;
|
|
19
|
+
hasBorder: FlowbiteBoolean;
|
|
20
|
+
isFixed: FlowbiteBoolean;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
export declare const navbarTheme: NavbarTheme;
|
|
24
|
+
export type NavbarClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { NavbarClass, NavbarProperties, NavbarTheme } from './navbar.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_NAVBAR_THEME_TOKEN: InjectionToken<NavbarTheme>;
|
|
5
|
+
export declare class NavbarThemeService implements FlowbiteThemeService<NavbarProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: NavbarProperties): NavbarClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { ScrollTopComponent } from './scroll-top.component';
|
|
2
|
+
export type { ScrollTopTheme, ScrollTopClass, ScrollTopProperties, ScrollTopColors, ScrollTopPositions, } from './scroll-top.theme';
|
|
3
|
+
export { scrollTopTheme } from './scroll-top.theme';
|
|
4
|
+
export { FLOWBITE_SCROLL_TOP_THEME_TOKEN, ScrollTopThemeService } from './scroll-top.theme.service';
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { IconRegistry } from '../icon';
|
|
3
|
+
import type { ScrollTopClass, ScrollTopColors, ScrollTopPositions } from './scroll-top.theme';
|
|
4
|
+
import { ScrollTopThemeService } from './scroll-top.theme.service';
|
|
5
|
+
import type { OnInit } from '@angular/core';
|
|
6
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ScrollTopComponent extends BaseComponent<ScrollTopClass> implements OnInit {
|
|
9
|
+
readonly themeService: ScrollTopThemeService;
|
|
10
|
+
readonly iconRegistry: IconRegistry;
|
|
11
|
+
readonly domSanitizer: DomSanitizer;
|
|
12
|
+
color: import("@angular/core").ModelSignal<keyof ScrollTopColors>;
|
|
13
|
+
position: import("@angular/core").ModelSignal<keyof ScrollTopPositions>;
|
|
14
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
15
|
+
root?: {
|
|
16
|
+
base?: string | undefined;
|
|
17
|
+
color?: {
|
|
18
|
+
[x: string]: string | undefined;
|
|
19
|
+
primary?: string | undefined;
|
|
20
|
+
blue?: string | undefined;
|
|
21
|
+
red?: string | undefined;
|
|
22
|
+
green?: string | undefined;
|
|
23
|
+
dark?: string | undefined;
|
|
24
|
+
gray?: string | undefined;
|
|
25
|
+
lime?: string | undefined;
|
|
26
|
+
purple?: string | undefined;
|
|
27
|
+
} | undefined;
|
|
28
|
+
position?: {
|
|
29
|
+
[x: string]: string | undefined;
|
|
30
|
+
'bottom-center'?: string | undefined;
|
|
31
|
+
'top-center'?: string | undefined;
|
|
32
|
+
'bottom-left'?: string | undefined;
|
|
33
|
+
'bottom-right'?: string | undefined;
|
|
34
|
+
'top-left'?: string | undefined;
|
|
35
|
+
'top-right'?: string | undefined;
|
|
36
|
+
'center-left'?: string | undefined;
|
|
37
|
+
'center-right'?: string | undefined;
|
|
38
|
+
} | undefined;
|
|
39
|
+
} | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
fetchClass(): ScrollTopClass;
|
|
42
|
+
init(): void;
|
|
43
|
+
onClick(): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollTopComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollTopComponent, "flowbite-scroll-top", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "color": "colorChange"; "position": "positionChange"; "customStyle": "customStyleChange"; }, never, never, true, never>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass, FlowbiteColors, FlowbitePositions } from '../../common';
|
|
2
|
+
export interface ScrollTopColors extends Pick<FlowbiteColors, 'primary' | 'dark' | 'blue' | 'gray' | 'green' | 'lime' | 'purple' | 'red'> {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export interface ScrollTopPositions extends Omit<FlowbitePositions, 'center'> {
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
}
|
|
8
|
+
export interface ScrollTopProperties {
|
|
9
|
+
color: keyof ScrollTopPositions;
|
|
10
|
+
position: keyof ScrollTopPositions;
|
|
11
|
+
customStyle: DeepPartial<ScrollTopTheme>;
|
|
12
|
+
}
|
|
13
|
+
export interface ScrollTopTheme {
|
|
14
|
+
root: {
|
|
15
|
+
base: string;
|
|
16
|
+
color: ScrollTopColors;
|
|
17
|
+
position: ScrollTopPositions;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
export declare const scrollTopTheme: ScrollTopTheme;
|
|
21
|
+
export type ScrollTopClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { ScrollTopClass, ScrollTopProperties, ScrollTopTheme } from './scroll-top.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_SCROLL_TOP_THEME_TOKEN: InjectionToken<ScrollTopTheme>;
|
|
5
|
+
export declare class ScrollTopThemeService implements FlowbiteThemeService<ScrollTopProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: ScrollTopProperties): ScrollTopClass;
|
|
8
|
+
}
|
|
@@ -1,3 +1,24 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export { SidebarComponent } from './sidebar.component';
|
|
2
|
+
export type { SidebarProperties, SidebarClass, SidebarTheme, SidebarColors, SidebarDisplayMode, } from './sidebar.theme';
|
|
3
|
+
export { sidebarTheme } from './sidebar.theme';
|
|
4
|
+
export { FLOWBITE_SIDEBAR_THEME_TOKEN, SidebarThemeService } from './sidebar.theme.service';
|
|
5
|
+
export { SidebarItemComponent } from './sidebar-item.component';
|
|
6
|
+
export type { SidebarItemProperties, SidebarItemClass, SidebarItemTheme, } from './sidebar-item.theme';
|
|
7
|
+
export { sidebarItemTheme } from './sidebar-item.theme';
|
|
8
|
+
export { FLOWBITE_SIDEBAR_ITEM_THEME_TOKEN, SidebarItemThemeService, } from './sidebar-item.theme.service';
|
|
9
|
+
export { SidebarItemGroupComponent } from './sidebar-item-group.component';
|
|
10
|
+
export type { SidebarItemGroupProperties, SidebarItemGroupClass, SidebarItemGroupTheme, } from './sidebar-item-group.theme';
|
|
11
|
+
export { sidebarItemGroupTheme } from './sidebar-item-group.theme';
|
|
12
|
+
export { FLOWBITE_SIDEBAR_ITEM_GROUP_THEME_TOKEN, SidebarItemGroupThemeService, } from './sidebar-item-group.theme.service';
|
|
13
|
+
export { SidebarToggleComponent } from './sidebar-toggle.component';
|
|
14
|
+
export type { SidebarToggleTheme, SidebarToggleClass, SidebarToggleProperties, SidebarToggleSizes, } from './sidebar-toggle.theme';
|
|
15
|
+
export { sidebarToggleTheme } from './sidebar-toggle.theme';
|
|
16
|
+
export { FLOWBITE_SIDEBAR_TOGGLE_THEME_TOKEN, SidebarToggleThemeService, } from './sidebar-toggle.theme.service';
|
|
17
|
+
export { SidebarPageContentComponent } from './sidebar-page-content.component';
|
|
18
|
+
export type { SidebarPageContentClass, SidebarPageContentProperties, SidebarPageContentTheme, } from './sidebar-page-content.theme';
|
|
19
|
+
export { sidebarPageContentTheme } from './sidebar-page-content.theme';
|
|
20
|
+
export { FLOWBITE_SIDEBAR_PAGE_CONTENT_THEME_TOKEN, SidebarPageContentThemeService, } from './sidebar-page-content.theme.service';
|
|
21
|
+
export { SidebarMenuComponent } from './sidebar-menu.component';
|
|
22
|
+
export type { SidebarMenuClass, SidebarMenuProperties, SidebarMenuTheme, } from './sidebar-menu.theme';
|
|
23
|
+
export { sidebarMenuTheme } from './sidebar-menu.theme';
|
|
24
|
+
export { FLOWBITE_SIDEBAR_MENU_THEME_TOKEN, SidebarMenuThemeService, } from './sidebar-menu.theme.service';
|
|
@@ -1,5 +1,44 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { IconRegistry } from '../icon';
|
|
3
|
+
import type { SidebarItemGroupClass } from './sidebar-item-group.theme';
|
|
4
|
+
import { SidebarItemGroupThemeService } from './sidebar-item-group.theme.service';
|
|
5
|
+
import { SidebarItemComponent } from './sidebar-item.component';
|
|
6
|
+
import { SidebarMenuComponent } from './sidebar-menu.component';
|
|
7
|
+
import type { SidebarColors } from './sidebar.theme';
|
|
8
|
+
import type { OnInit } from '@angular/core';
|
|
9
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
1
10
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SidebarItemGroupComponent {
|
|
11
|
+
export declare class SidebarItemGroupComponent extends BaseComponent<SidebarItemGroupClass> implements OnInit {
|
|
12
|
+
readonly themeService: SidebarItemGroupThemeService;
|
|
13
|
+
readonly iconRegistry: IconRegistry;
|
|
14
|
+
readonly domSanitizer: DomSanitizer;
|
|
15
|
+
readonly sidebarMenuComponent: SidebarMenuComponent;
|
|
16
|
+
readonly sidebarItemChildren: import("@angular/core").Signal<readonly SidebarItemComponent[]>;
|
|
17
|
+
isOpen: import("@angular/core").ModelSignal<boolean>;
|
|
18
|
+
color: import("@angular/core").ModelSignal<keyof SidebarColors>;
|
|
19
|
+
title: import("@angular/core").ModelSignal<string>;
|
|
20
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
21
|
+
root?: {
|
|
22
|
+
base?: string | undefined;
|
|
23
|
+
} | undefined;
|
|
24
|
+
spanText?: {
|
|
25
|
+
base?: string | undefined;
|
|
26
|
+
color?: {
|
|
27
|
+
[x: string]: string | undefined;
|
|
28
|
+
primary?: string | undefined;
|
|
29
|
+
blue?: string | undefined;
|
|
30
|
+
red?: string | undefined;
|
|
31
|
+
green?: string | undefined;
|
|
32
|
+
yellow?: string | undefined;
|
|
33
|
+
dark?: string | undefined;
|
|
34
|
+
} | undefined;
|
|
35
|
+
} | undefined;
|
|
36
|
+
}>;
|
|
37
|
+
fetchClass(): SidebarItemGroupClass;
|
|
38
|
+
verify(): void;
|
|
39
|
+
init(): void;
|
|
40
|
+
onSpanClick(): void;
|
|
41
|
+
toggleVisibility(isOpen?: boolean): void;
|
|
3
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarItemGroupComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemGroupComponent, "flowbite-sidebar-item-group", never, {}, {},
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemGroupComponent, "flowbite-sidebar-item-group", never, { "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "isOpen": "isOpenChange"; "color": "colorChange"; "title": "titleChange"; "customStyle": "customStyleChange"; }, ["sidebarItemChildren"], ["*"], true, never>;
|
|
5
44
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
import type { SidebarColors } from './sidebar.theme';
|
|
3
|
+
export interface SidebarItemGroupProperties {
|
|
4
|
+
color: keyof SidebarColors;
|
|
5
|
+
customStyle: DeepPartial<SidebarItemGroupTheme>;
|
|
6
|
+
}
|
|
7
|
+
export interface SidebarItemGroupTheme {
|
|
8
|
+
root: {
|
|
9
|
+
base: string;
|
|
10
|
+
};
|
|
11
|
+
spanText: {
|
|
12
|
+
base: string;
|
|
13
|
+
color: SidebarColors;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare const sidebarItemGroupTheme: SidebarItemGroupTheme;
|
|
17
|
+
export interface SidebarItemGroupClass extends FlowbiteClass {
|
|
18
|
+
spanClass: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { SidebarItemGroupClass, SidebarItemGroupProperties, SidebarItemGroupTheme } from './sidebar-item-group.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_SIDEBAR_ITEM_GROUP_THEME_TOKEN: InjectionToken<SidebarItemGroupTheme>;
|
|
5
|
+
export declare class SidebarItemGroupThemeService implements FlowbiteThemeService<SidebarItemGroupProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: SidebarItemGroupProperties): SidebarItemGroupClass;
|
|
8
|
+
}
|
|
@@ -1,11 +1,41 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FlowbiteRouterLinkActiveDirective } from '../../directives/flowbite-router-link-active.directive';
|
|
2
|
+
import { FlowbiteRouterLinkDirective } from '../../directives/flowbite-router-link.directive';
|
|
3
|
+
import { BaseComponent } from '../base-component.directive';
|
|
4
|
+
import { SidebarItemGroupComponent } from './sidebar-item-group.component';
|
|
5
|
+
import type { SidebarItemClass } from './sidebar-item.theme';
|
|
6
|
+
import { SidebarItemThemeService } from './sidebar-item.theme.service';
|
|
7
|
+
import { SidebarMenuComponent } from './sidebar-menu.component';
|
|
8
|
+
import type { SidebarColors } from './sidebar.theme';
|
|
2
9
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SidebarItemComponent {
|
|
4
|
-
readonly
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
10
|
+
export declare class SidebarItemComponent extends BaseComponent<SidebarItemClass> {
|
|
11
|
+
readonly flowbiteRouterLink: FlowbiteRouterLinkDirective | null;
|
|
12
|
+
readonly flowbiteRouterLinkActive: FlowbiteRouterLinkActiveDirective | null;
|
|
13
|
+
readonly themeService: SidebarItemThemeService;
|
|
14
|
+
readonly sidebarItemGroupComponent: SidebarItemGroupComponent | null | undefined;
|
|
15
|
+
readonly sidebarMenuComponent: SidebarMenuComponent | undefined;
|
|
16
|
+
icon: import("@angular/core").ModelSignal<string | undefined>;
|
|
17
|
+
color: import("@angular/core").ModelSignal<keyof SidebarColors>;
|
|
18
|
+
label: import("@angular/core").ModelSignal<string | undefined>;
|
|
19
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
20
|
+
root?: {
|
|
21
|
+
base?: string | undefined;
|
|
22
|
+
color?: {
|
|
23
|
+
[x: string]: string | undefined;
|
|
24
|
+
primary?: string | undefined;
|
|
25
|
+
blue?: string | undefined;
|
|
26
|
+
red?: string | undefined;
|
|
27
|
+
green?: string | undefined;
|
|
28
|
+
yellow?: string | undefined;
|
|
29
|
+
dark?: string | undefined;
|
|
30
|
+
} | undefined;
|
|
31
|
+
} | undefined;
|
|
32
|
+
icon?: {
|
|
33
|
+
base?: string | undefined;
|
|
34
|
+
} | undefined;
|
|
35
|
+
}>;
|
|
36
|
+
fetchClass(): SidebarItemClass;
|
|
37
|
+
verify(): void;
|
|
38
|
+
onClick(): void;
|
|
9
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarItemComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemComponent, "flowbite-sidebar-item", never, { "icon": "icon"; "
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemComponent, "flowbite-sidebar-item", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "icon": "iconChange"; "color": "colorChange"; "label": "labelChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
11
41
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { FlowbiteClass } from '../../common';
|
|
2
|
+
import type { DeepPartial } from '../../common/type-definitions/flowbite.deep-partial';
|
|
3
|
+
import type { SidebarColors } from './sidebar.theme';
|
|
4
|
+
export interface SidebarItemProperties {
|
|
5
|
+
icon: string | undefined;
|
|
6
|
+
color: keyof SidebarColors;
|
|
7
|
+
label: string | undefined;
|
|
8
|
+
customStyle: DeepPartial<SidebarItemTheme>;
|
|
9
|
+
}
|
|
10
|
+
export interface SidebarItemTheme {
|
|
11
|
+
root: {
|
|
12
|
+
base: string;
|
|
13
|
+
color: SidebarColors;
|
|
14
|
+
};
|
|
15
|
+
icon: {
|
|
16
|
+
base: string;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export declare const sidebarItemTheme: SidebarItemTheme;
|
|
20
|
+
export interface SidebarItemClass extends FlowbiteClass {
|
|
21
|
+
sidebarIconClass: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { SidebarItemClass, SidebarItemProperties, SidebarItemTheme } from './sidebar-item.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_SIDEBAR_ITEM_THEME_TOKEN: InjectionToken<SidebarItemTheme>;
|
|
5
|
+
export declare class SidebarItemThemeService implements FlowbiteThemeService<SidebarItemProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: SidebarItemProperties): SidebarItemClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { SidebarItemGroupComponent } from './sidebar-item-group.component';
|
|
3
|
+
import { SidebarItemComponent } from './sidebar-item.component';
|
|
4
|
+
import type { SidebarMenuClass } from './sidebar-menu.theme';
|
|
5
|
+
import { SidebarMenuThemeService } from './sidebar-menu.theme.service';
|
|
6
|
+
import { SidebarComponent } from './sidebar.component';
|
|
7
|
+
import type { SidebarColors } from './sidebar.theme';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SidebarMenuComponent extends BaseComponent<SidebarMenuClass> {
|
|
10
|
+
readonly themeService: SidebarMenuThemeService;
|
|
11
|
+
readonly sidebarComponent: SidebarComponent;
|
|
12
|
+
readonly sidebarItemGroupChildren: import("@angular/core").Signal<readonly SidebarItemGroupComponent[]>;
|
|
13
|
+
readonly sidebarItemChildren: import("@angular/core").Signal<readonly SidebarItemComponent[]>;
|
|
14
|
+
color: import("@angular/core").ModelSignal<keyof SidebarColors>;
|
|
15
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
16
|
+
root?: {
|
|
17
|
+
base?: string | undefined;
|
|
18
|
+
displayMode?: {
|
|
19
|
+
push?: string | undefined;
|
|
20
|
+
over?: string | undefined;
|
|
21
|
+
backdrop?: string | undefined;
|
|
22
|
+
} | undefined;
|
|
23
|
+
isOpen?: {
|
|
24
|
+
enabled?: string | undefined;
|
|
25
|
+
disabled?: string | undefined;
|
|
26
|
+
} | undefined;
|
|
27
|
+
color?: {
|
|
28
|
+
[x: string]: string | undefined;
|
|
29
|
+
primary?: string | undefined;
|
|
30
|
+
blue?: string | undefined;
|
|
31
|
+
red?: string | undefined;
|
|
32
|
+
green?: string | undefined;
|
|
33
|
+
yellow?: string | undefined;
|
|
34
|
+
dark?: string | undefined;
|
|
35
|
+
} | undefined;
|
|
36
|
+
} | undefined;
|
|
37
|
+
}>;
|
|
38
|
+
fetchClass(): SidebarMenuClass;
|
|
39
|
+
verify(): void;
|
|
40
|
+
closeAll(): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarMenuComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarMenuComponent, "flowbite-sidebar-menu", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "color": "colorChange"; "customStyle": "customStyleChange"; }, ["sidebarItemGroupChildren", "sidebarItemChildren"], ["*"], true, never>;
|
|
43
|
+
}
|