flowbite-angular 0.0.2 → 1.0.0-alpha.1
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 +99 -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 +17 -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 +86 -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 +161 -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 +24 -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 +21 -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 +17 -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 +70 -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 +146 -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 +47 -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 +58 -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 +54 -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 +85 -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 +85 -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/esm2022/lib/services/index.mjs +4 -0
- package/esm2022/lib/services/signal-store.service.mjs +61 -0
- package/esm2022/lib/services/state/index.mjs +2 -0
- package/esm2022/lib/services/state/theme.state.mjs +2 -0
- 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 +27 -0
- package/esm2022/lib/utils/theme/to-string.mjs +10 -0
- package/esm2022/public-api.mjs +7 -0
- package/fesm2022/flowbite-angular.mjs +4326 -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 +3 -2
- package/lib/services/signal-store.service.d.ts +46 -0
- package/lib/services/state/index.d.ts +1 -0
- package/lib/services/state/theme.state.d.ts +4 -0
- 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 +11 -25
- 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/index.mjs +0 -3
- 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,45 @@
|
|
|
1
|
+
import type { TrustedHTML } from './trusted-types';
|
|
2
|
+
import type { OnDestroy } from '@angular/core';
|
|
3
|
+
import type { SafeHtml } from '@angular/platform-browser';
|
|
4
|
+
import { type SafeResourceUrl } from '@angular/platform-browser';
|
|
5
|
+
import { type Observable } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare function getSvgIconFromNamedError(iconName: string): Error;
|
|
8
|
+
export declare function getSvgIconFailedToSanitizeRawError(raw: SafeHtml): Error;
|
|
9
|
+
export declare function getSvgIconFailedToSanitizeUrlError(url: SafeResourceUrl): Error;
|
|
10
|
+
export declare function getSvgIconNoHttpClientProvidedError(): Error;
|
|
11
|
+
export interface SvgIconOptions {
|
|
12
|
+
viewBox: string;
|
|
13
|
+
}
|
|
14
|
+
export declare class SvgIconConfig {
|
|
15
|
+
url: SafeResourceUrl;
|
|
16
|
+
svgText: TrustedHTML | undefined;
|
|
17
|
+
options?: SvgIconOptions | undefined;
|
|
18
|
+
svgElement: SVGElement | null;
|
|
19
|
+
constructor(url: SafeResourceUrl, svgText: TrustedHTML | undefined, options?: SvgIconOptions | undefined);
|
|
20
|
+
}
|
|
21
|
+
export declare class IconRegistry implements OnDestroy {
|
|
22
|
+
private platformId;
|
|
23
|
+
private _httpClient;
|
|
24
|
+
private _sanitizer;
|
|
25
|
+
private _document;
|
|
26
|
+
private _svgIconConfig;
|
|
27
|
+
private _cachedSvgIconByUrl;
|
|
28
|
+
private _inProgressSvgIconFetch;
|
|
29
|
+
addSvgIcon(iconName: string, url: SafeResourceUrl, options?: SvgIconOptions): this;
|
|
30
|
+
addRawSvgIcon(iconName: string, raw: SafeHtml, options?: SvgIconOptions): this;
|
|
31
|
+
addSvgIconInNamespace(namespace: string, iconName: string, url: SafeResourceUrl, options?: SvgIconOptions): this;
|
|
32
|
+
addRawSvgIconInNamepsace(namespace: string, iconName: string, raw: SafeHtml, options?: SvgIconOptions): this;
|
|
33
|
+
getSvgIconFromUrl(safeUrl: SafeResourceUrl): Observable<SVGElement>;
|
|
34
|
+
getSvgIconFromName(iconName: string, namespace: string): Observable<SVGElement>;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
private _addSvgIconConfig;
|
|
37
|
+
private _getSvgIconFromConfig;
|
|
38
|
+
private _loadSvgIconFromConfig;
|
|
39
|
+
private _setSvgAttributes;
|
|
40
|
+
private _svgElementFromConfig;
|
|
41
|
+
private _svgElementFromString;
|
|
42
|
+
private _fetchIcon;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconRegistry, never>;
|
|
44
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IconRegistry>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Thanks to Angular Material for Icon part of this library : https://github.com/angular/components
|
|
3
|
+
*/
|
|
4
|
+
import type { FlowbiteClass } from '../../common';
|
|
5
|
+
import { BaseComponent } from '../base-component.directive';
|
|
6
|
+
import { IconRegistry } from './icon-registry';
|
|
7
|
+
import type { OnInit } from '@angular/core';
|
|
8
|
+
import { ElementRef } from '@angular/core';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class IconComponent extends BaseComponent<FlowbiteClass> implements OnInit {
|
|
11
|
+
_elementRef: ElementRef<HTMLElement>;
|
|
12
|
+
_iconRegistry: IconRegistry;
|
|
13
|
+
svgIcon: import("@angular/core").ModelSignal<string>;
|
|
14
|
+
init(): void;
|
|
15
|
+
fetchClass(): FlowbiteClass;
|
|
16
|
+
private _splitIconName;
|
|
17
|
+
private _updateSvgIcon;
|
|
18
|
+
private _setSvgElement;
|
|
19
|
+
private _clearSvgElements;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "flowbite-icon", never, { "svgIcon": { "alias": "svgIcon"; "required": true; "isSignal": true; }; }, { "svgIcon": "svgIconChange"; }, never, ["*"], true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { IconComponent } from './icon.component';
|
|
2
|
+
export type { SvgIconOptions } from './icon-registry';
|
|
3
|
+
export { IconRegistry, SvgIconConfig, getSvgIconFailedToSanitizeRawError, getSvgIconFailedToSanitizeUrlError, getSvgIconFromNamedError, getSvgIconNoHttpClientProvidedError, } from './icon-registry';
|
|
4
|
+
export type { TrustedHTML, TrustedTypePolicy, TrustedTypePolicyFactory } from './trusted-types';
|
|
5
|
+
export { trustedHTMLFromString } from './trusted-types';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Thanks to Angular Material for Icon part of this library : https://github.com/angular/components
|
|
3
|
+
*/
|
|
4
|
+
export declare interface TrustedHTML {
|
|
5
|
+
__brand__: 'TrustedHTML';
|
|
6
|
+
}
|
|
7
|
+
export declare interface TrustedTypePolicyFactory {
|
|
8
|
+
createPolicy(policyName: string, policyOptions: {
|
|
9
|
+
createHTML?: (input: string) => string;
|
|
10
|
+
}): TrustedTypePolicy;
|
|
11
|
+
}
|
|
12
|
+
export declare interface TrustedTypePolicy {
|
|
13
|
+
createHTML(input: string): TrustedHTML;
|
|
14
|
+
}
|
|
15
|
+
export declare function trustedHTMLFromString(raw: string): TrustedHTML;
|
|
@@ -1,5 +1,15 @@
|
|
|
1
|
+
export * from './accordion';
|
|
1
2
|
export * from './alert';
|
|
2
3
|
export * from './badge';
|
|
4
|
+
export * from './breadcrumb';
|
|
5
|
+
export * from './button';
|
|
3
6
|
export * from './dark-theme-toggle';
|
|
7
|
+
export * from './dropdown';
|
|
8
|
+
export * from './form-field';
|
|
9
|
+
export * from './icon';
|
|
10
|
+
export * from './indicators';
|
|
11
|
+
export * from './modal';
|
|
4
12
|
export * from './navbar';
|
|
13
|
+
export * from './scroll-top';
|
|
5
14
|
export * from './sidebar';
|
|
15
|
+
export { BaseComponent } from './base-component.directive';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { IndicatorComponent } from './indicators.component';
|
|
2
|
+
export type { IndicatorProperties, indicatorClass, IndicatorColors, IndicatorTheme, IndicatorPositions, IndicatorSizes, } from './indicators.theme';
|
|
3
|
+
export { indicatorTheme } from './indicators.theme';
|
|
4
|
+
export { FLOWBITE_INDICATOR_THEME_TOKEN, IndicatorThemeService } from './indicators.theme.service';
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import type { indicatorClass, IndicatorColors, IndicatorPositions, IndicatorSizes } from './indicators.theme';
|
|
3
|
+
import { IndicatorThemeService } from './indicators.theme.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* @see https://flowbite.com/docs/components/indicators/
|
|
7
|
+
*/
|
|
8
|
+
export declare class IndicatorComponent extends BaseComponent<indicatorClass> {
|
|
9
|
+
readonly themeService: IndicatorThemeService;
|
|
10
|
+
isPill: import("@angular/core").ModelSignal<boolean>;
|
|
11
|
+
isOutline: import("@angular/core").ModelSignal<boolean>;
|
|
12
|
+
isDisabled: import("@angular/core").ModelSignal<boolean>;
|
|
13
|
+
hasOffset: import("@angular/core").ModelSignal<boolean>;
|
|
14
|
+
isRounded: import("@angular/core").ModelSignal<boolean>;
|
|
15
|
+
hasBorder: import("@angular/core").ModelSignal<boolean>;
|
|
16
|
+
color: import("@angular/core").ModelSignal<keyof IndicatorColors>;
|
|
17
|
+
size: import("@angular/core").ModelSignal<keyof IndicatorSizes>;
|
|
18
|
+
placement: import("@angular/core").ModelSignal<keyof IndicatorPositions | undefined>;
|
|
19
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
20
|
+
root?: {
|
|
21
|
+
base?: string | undefined;
|
|
22
|
+
isPill?: {
|
|
23
|
+
enabled?: string | undefined;
|
|
24
|
+
disabled?: string | undefined;
|
|
25
|
+
} | undefined;
|
|
26
|
+
isOutline?: {
|
|
27
|
+
enabled?: string | undefined;
|
|
28
|
+
disabled?: string | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
isDisabled?: {
|
|
31
|
+
enabled?: string | undefined;
|
|
32
|
+
disabled?: string | undefined;
|
|
33
|
+
} | undefined;
|
|
34
|
+
hasOffset?: {
|
|
35
|
+
[x: string]: string | undefined;
|
|
36
|
+
'bottom-center'?: string | undefined;
|
|
37
|
+
'top-center'?: string | undefined;
|
|
38
|
+
'bottom-left'?: string | undefined;
|
|
39
|
+
'bottom-right'?: string | undefined;
|
|
40
|
+
'top-left'?: string | undefined;
|
|
41
|
+
'top-right'?: string | undefined;
|
|
42
|
+
'center-left'?: string | undefined;
|
|
43
|
+
center?: string | undefined;
|
|
44
|
+
'center-right'?: string | undefined;
|
|
45
|
+
} | undefined;
|
|
46
|
+
isRounded?: {
|
|
47
|
+
enabled?: string | undefined;
|
|
48
|
+
disabled?: string | undefined;
|
|
49
|
+
} | undefined;
|
|
50
|
+
hasBorder?: {
|
|
51
|
+
enabled?: string | undefined;
|
|
52
|
+
disabled?: string | undefined;
|
|
53
|
+
} | undefined;
|
|
54
|
+
color?: {
|
|
55
|
+
[x: string]: string | undefined;
|
|
56
|
+
primary?: string | undefined;
|
|
57
|
+
blue?: string | undefined;
|
|
58
|
+
red?: string | undefined;
|
|
59
|
+
green?: string | undefined;
|
|
60
|
+
yellow?: string | undefined;
|
|
61
|
+
dark?: string | undefined;
|
|
62
|
+
gray?: string | undefined;
|
|
63
|
+
indigo?: string | undefined;
|
|
64
|
+
purple?: string | undefined;
|
|
65
|
+
teal?: string | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
size?: {
|
|
68
|
+
[x: string]: string | undefined;
|
|
69
|
+
xs?: string | undefined;
|
|
70
|
+
sm?: string | undefined;
|
|
71
|
+
md?: string | undefined;
|
|
72
|
+
lg?: string | undefined;
|
|
73
|
+
xl?: string | undefined;
|
|
74
|
+
} | undefined;
|
|
75
|
+
placement?: {
|
|
76
|
+
[x: string]: string | undefined;
|
|
77
|
+
'bottom-center'?: string | undefined;
|
|
78
|
+
'top-center'?: string | undefined;
|
|
79
|
+
'bottom-left'?: string | undefined;
|
|
80
|
+
'bottom-right'?: string | undefined;
|
|
81
|
+
'top-left'?: string | undefined;
|
|
82
|
+
'top-right'?: string | undefined;
|
|
83
|
+
'center-left'?: string | undefined;
|
|
84
|
+
center?: string | undefined;
|
|
85
|
+
'center-right'?: string | undefined;
|
|
86
|
+
} | undefined;
|
|
87
|
+
} | undefined;
|
|
88
|
+
}>;
|
|
89
|
+
fetchClass(): indicatorClass;
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IndicatorComponent, never>;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IndicatorComponent, "flowbite-indicator", never, { "isPill": { "alias": "isPill"; "required": false; "isSignal": true; }; "isOutline": { "alias": "isOutline"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "hasOffset": { "alias": "hasOffset"; "required": false; "isSignal": true; }; "isRounded": { "alias": "isRounded"; "required": false; "isSignal": true; }; "hasBorder": { "alias": "hasBorder"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "isPill": "isPillChange"; "isOutline": "isOutlineChange"; "isDisabled": "isDisabledChange"; "hasOffset": "hasOffsetChange"; "isRounded": "isRoundedChange"; "hasBorder": "hasBorderChange"; "color": "colorChange"; "size": "sizeChange"; "placement": "placementChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
92
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
import type { FlowbitePositions } from '../../common/type-definitions/flowbite.positions';
|
|
6
|
+
import type { FlowbiteSizes } from '../../common/type-definitions/flowbite.sizes';
|
|
7
|
+
export interface IndicatorColors extends Pick<FlowbiteColors, 'primary' | 'dark' | 'gray' | 'blue' | 'green' | 'red' | 'purple' | 'indigo' | 'yellow' | 'teal'> {
|
|
8
|
+
[key: string]: string;
|
|
9
|
+
}
|
|
10
|
+
export interface IndicatorSizes extends Pick<FlowbiteSizes, 'xs' | 'sm' | 'md' | 'lg' | 'xl'> {
|
|
11
|
+
[key: string]: string;
|
|
12
|
+
}
|
|
13
|
+
export interface IndicatorPositions extends Pick<FlowbitePositions, 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center' | 'center-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'> {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
}
|
|
16
|
+
export interface IndicatorProperties {
|
|
17
|
+
isPill: keyof FlowbiteBoolean;
|
|
18
|
+
isOutline: keyof FlowbiteBoolean;
|
|
19
|
+
isDisabled: keyof FlowbiteBoolean;
|
|
20
|
+
hasOffset: keyof FlowbiteBoolean;
|
|
21
|
+
isRounded: keyof FlowbiteBoolean;
|
|
22
|
+
hasBorder: keyof FlowbiteBoolean;
|
|
23
|
+
color: keyof IndicatorColors;
|
|
24
|
+
size: keyof IndicatorSizes;
|
|
25
|
+
placement?: keyof IndicatorPositions;
|
|
26
|
+
customStyle: DeepPartial<IndicatorTheme>;
|
|
27
|
+
}
|
|
28
|
+
export interface IndicatorTheme {
|
|
29
|
+
root: {
|
|
30
|
+
base: string;
|
|
31
|
+
isPill: FlowbiteBoolean;
|
|
32
|
+
isOutline: FlowbiteBoolean;
|
|
33
|
+
isDisabled: FlowbiteBoolean;
|
|
34
|
+
hasOffset: IndicatorPositions;
|
|
35
|
+
isRounded: FlowbiteBoolean;
|
|
36
|
+
hasBorder: FlowbiteBoolean;
|
|
37
|
+
color: IndicatorColors;
|
|
38
|
+
size: IndicatorSizes;
|
|
39
|
+
placement: IndicatorPositions;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
export declare const indicatorTheme: IndicatorTheme;
|
|
43
|
+
export type indicatorClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { indicatorClass, IndicatorProperties, IndicatorTheme } from './indicators.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_INDICATOR_THEME_TOKEN: InjectionToken<IndicatorTheme>;
|
|
5
|
+
export declare class IndicatorThemeService implements FlowbiteThemeService<IndicatorProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: IndicatorProperties): indicatorClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { ModalComponent } from './modal.component';
|
|
2
|
+
export type { ModalProperties, ModalClass, ModalPositions, ModalSizes, ModalTheme } from './modal.theme';
|
|
3
|
+
export { modalTheme } from './modal.theme';
|
|
4
|
+
export { FLOWBITE_MODAL_THEME_TOKEN, ModalThemeService } from './modal.theme.service';
|
|
5
|
+
export { ModalHeaderComponent } from './modal-header.component';
|
|
6
|
+
export type { ModalHeaderProperties, ModalHeaderClass, ModalHeaderTheme } from './modal-header.theme';
|
|
7
|
+
export { modalHeaderTheme } from './modal-header.theme';
|
|
8
|
+
export { FLOWBITE_MODAL_HEADER_THEME_TOKEN, ModalHeaderThemeService } from './modal-header.theme.service';
|
|
9
|
+
export { ModalBodyComponent } from './modal-body.component';
|
|
10
|
+
export type { ModalBodyProperties, ModalBodyClass, ModalBodyTheme } from './modal-body.theme';
|
|
11
|
+
export { modalBodyTheme } from './modal-body.theme';
|
|
12
|
+
export { FLOWBITE_MODAL_BODY_THEME_TOKEN, ModalBodyThemeService } from './modal-body.theme.service';
|
|
13
|
+
export { ModalFooterComponent } from './modal-footer.component';
|
|
14
|
+
export type { ModalFooterProperties, ModalFooterClass, ModalFooterTheme } from './modal-footer.theme';
|
|
15
|
+
export { modalFooterTheme } from './modal-footer.theme';
|
|
16
|
+
export { FLOWBITE_MODAL_FOOTER_THEME_TOKEN, ModalFooterThemeService } from './modal-footer.theme.service';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import type { ModalBodyClass } from './modal-body.theme';
|
|
3
|
+
import { ModalBodyThemeService } from './modal-body.theme.service';
|
|
4
|
+
import { ModalComponent } from './modal.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ModalBodyComponent extends BaseComponent<ModalBodyClass> {
|
|
7
|
+
readonly themeService: ModalBodyThemeService;
|
|
8
|
+
readonly modalComponent: ModalComponent;
|
|
9
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
10
|
+
root?: {
|
|
11
|
+
base?: string | undefined;
|
|
12
|
+
} | undefined;
|
|
13
|
+
}>;
|
|
14
|
+
fetchClass(): ModalBodyClass;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalBodyComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalBodyComponent, "flowbite-modal-body", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
export interface ModalBodyProperties {
|
|
3
|
+
customStyle: DeepPartial<ModalBodyTheme>;
|
|
4
|
+
}
|
|
5
|
+
export interface ModalBodyTheme {
|
|
6
|
+
root: {
|
|
7
|
+
base: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare const modalBodyTheme: ModalBodyTheme;
|
|
11
|
+
export type ModalBodyClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { ModalBodyClass, ModalBodyProperties, ModalBodyTheme } from './modal-body.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_MODAL_BODY_THEME_TOKEN: InjectionToken<ModalBodyTheme>;
|
|
5
|
+
export declare class ModalBodyThemeService implements FlowbiteThemeService<ModalBodyProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: ModalBodyProperties): ModalBodyClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import type { ModalFooterClass } from './modal-footer.theme';
|
|
3
|
+
import { ModalFooterThemeService } from './modal-footer.theme.service';
|
|
4
|
+
import { ModalComponent } from './modal.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ModalFooterComponent extends BaseComponent<ModalFooterClass> {
|
|
7
|
+
readonly themeService: ModalFooterThemeService;
|
|
8
|
+
readonly modalComponent: ModalComponent;
|
|
9
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
10
|
+
root?: {
|
|
11
|
+
base?: string | undefined;
|
|
12
|
+
} | undefined;
|
|
13
|
+
}>;
|
|
14
|
+
fetchClass(): ModalFooterClass;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalFooterComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalFooterComponent, "flowbite-modal-footer", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
export interface ModalFooterProperties {
|
|
3
|
+
customStyle: DeepPartial<ModalFooterTheme>;
|
|
4
|
+
}
|
|
5
|
+
export interface ModalFooterTheme {
|
|
6
|
+
root: {
|
|
7
|
+
base: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare const modalFooterTheme: ModalFooterTheme;
|
|
11
|
+
export type ModalFooterClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { ModalFooterClass, ModalFooterProperties, ModalFooterTheme } from './modal-footer.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_MODAL_FOOTER_THEME_TOKEN: InjectionToken<ModalFooterTheme>;
|
|
5
|
+
export declare class ModalFooterThemeService implements FlowbiteThemeService<ModalFooterProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: ModalFooterProperties): ModalFooterClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { IconRegistry } from '../icon';
|
|
3
|
+
import type { ModalHeaderClass } from './modal-header.theme';
|
|
4
|
+
import { ModalHeaderThemeService } from './modal-header.theme.service';
|
|
5
|
+
import { ModalComponent } from './modal.component';
|
|
6
|
+
import type { OnInit } from '@angular/core';
|
|
7
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class ModalHeaderComponent extends BaseComponent<ModalHeaderClass> implements OnInit {
|
|
10
|
+
readonly stateService: ModalHeaderThemeService;
|
|
11
|
+
readonly modalComponent: ModalComponent;
|
|
12
|
+
readonly iconRegistry: IconRegistry;
|
|
13
|
+
readonly domSanitizer: DomSanitizer;
|
|
14
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
15
|
+
root?: {
|
|
16
|
+
base?: string | undefined;
|
|
17
|
+
} | undefined;
|
|
18
|
+
title?: {
|
|
19
|
+
base?: string | undefined;
|
|
20
|
+
} | undefined;
|
|
21
|
+
button?: {
|
|
22
|
+
base?: string | undefined;
|
|
23
|
+
} | undefined;
|
|
24
|
+
}>;
|
|
25
|
+
fetchClass(): ModalHeaderClass;
|
|
26
|
+
init(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderComponent, "flowbite-modal-header", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
export interface ModalHeaderProperties {
|
|
3
|
+
customStyle: DeepPartial<ModalHeaderTheme>;
|
|
4
|
+
}
|
|
5
|
+
export interface ModalHeaderTheme {
|
|
6
|
+
root: {
|
|
7
|
+
base: string;
|
|
8
|
+
};
|
|
9
|
+
title: {
|
|
10
|
+
base: string;
|
|
11
|
+
};
|
|
12
|
+
button: {
|
|
13
|
+
base: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare const modalHeaderTheme: ModalHeaderTheme;
|
|
17
|
+
export interface ModalHeaderClass extends FlowbiteClass {
|
|
18
|
+
modalHeaderTitleClass: string;
|
|
19
|
+
modalHeaderButtonClass: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { ModalHeaderClass, ModalHeaderProperties, ModalHeaderTheme } from './modal-header.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_MODAL_HEADER_THEME_TOKEN: InjectionToken<ModalHeaderTheme>;
|
|
5
|
+
export declare class ModalHeaderThemeService implements FlowbiteThemeService<ModalHeaderProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: ModalHeaderProperties): ModalHeaderClass;
|
|
8
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import { ModalBodyComponent } from './modal-body.component';
|
|
3
|
+
import { ModalFooterComponent } from './modal-footer.component';
|
|
4
|
+
import { ModalHeaderComponent } from './modal-header.component';
|
|
5
|
+
import type { ModalClass, ModalPositions, ModalSizes } from './modal.theme';
|
|
6
|
+
import { ModalThemeService } from './modal.theme.service';
|
|
7
|
+
import type { OnDestroy } from '@angular/core';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* @see https://flowbite.com/docs/components/modal/
|
|
11
|
+
*/
|
|
12
|
+
export declare class ModalComponent extends BaseComponent<ModalClass> implements OnDestroy {
|
|
13
|
+
private readonly destroyed;
|
|
14
|
+
readonly themeService: ModalThemeService;
|
|
15
|
+
readonly modalHeaderChild: import("@angular/core").Signal<ModalHeaderComponent | undefined>;
|
|
16
|
+
readonly modalBodyChild: import("@angular/core").Signal<ModalBodyComponent | undefined>;
|
|
17
|
+
readonly modalFooterChild: import("@angular/core").Signal<ModalFooterComponent | undefined>;
|
|
18
|
+
private readonly template;
|
|
19
|
+
private readonly viewContainer;
|
|
20
|
+
private readonly router;
|
|
21
|
+
private embeddedView?;
|
|
22
|
+
size: import("@angular/core").ModelSignal<keyof ModalSizes>;
|
|
23
|
+
position: import("@angular/core").ModelSignal<keyof ModalPositions>;
|
|
24
|
+
isDismissable: import("@angular/core").ModelSignal<boolean>;
|
|
25
|
+
isOpen: import("@angular/core").ModelSignal<boolean>;
|
|
26
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
27
|
+
root?: {
|
|
28
|
+
base?: string | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
wrapper?: {
|
|
31
|
+
base?: string | undefined;
|
|
32
|
+
position?: {
|
|
33
|
+
[x: string]: string | undefined;
|
|
34
|
+
'bottom-center'?: string | undefined;
|
|
35
|
+
'top-center'?: string | undefined;
|
|
36
|
+
'bottom-left'?: string | undefined;
|
|
37
|
+
'bottom-right'?: string | undefined;
|
|
38
|
+
'top-left'?: string | undefined;
|
|
39
|
+
'top-right'?: string | undefined;
|
|
40
|
+
'center-left'?: string | undefined;
|
|
41
|
+
center?: string | undefined;
|
|
42
|
+
'center-right'?: string | undefined;
|
|
43
|
+
} | undefined;
|
|
44
|
+
} | undefined;
|
|
45
|
+
container?: {
|
|
46
|
+
base?: string | undefined;
|
|
47
|
+
size?: {
|
|
48
|
+
[x: string]: string | undefined;
|
|
49
|
+
sm?: string | undefined;
|
|
50
|
+
md?: string | undefined;
|
|
51
|
+
lg?: string | undefined;
|
|
52
|
+
xl?: string | undefined;
|
|
53
|
+
} | undefined;
|
|
54
|
+
} | undefined;
|
|
55
|
+
content?: {
|
|
56
|
+
base?: string | undefined;
|
|
57
|
+
} | undefined;
|
|
58
|
+
}>;
|
|
59
|
+
fetchClass(): ModalClass;
|
|
60
|
+
init(): void;
|
|
61
|
+
verify(): void;
|
|
62
|
+
ngOnDestroy(): void;
|
|
63
|
+
open(): void;
|
|
64
|
+
close(): void;
|
|
65
|
+
toggle(): void;
|
|
66
|
+
changeBackdrop(): void;
|
|
67
|
+
private createTemplate;
|
|
68
|
+
private destroyTemplate;
|
|
69
|
+
onKeydownHandler(event: KeyboardEvent): void;
|
|
70
|
+
onBackdropClick(event: MouseEvent): void;
|
|
71
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "flowbite-modal", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "isDismissable": { "alias": "isDismissable"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "size": "sizeChange"; "position": "positionChange"; "isDismissable": "isDismissableChange"; "isOpen": "isOpenChange"; "customStyle": "customStyleChange"; }, ["modalHeaderChild", "modalBodyChild", "modalFooterChild"], ["*"], true, never>;
|
|
73
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { DeepPartial } from '../../common';
|
|
2
|
+
import type { FlowbiteBoolean } from '../../common/type-definitions/flowbite.boolean';
|
|
3
|
+
import type { FlowbiteClass } from '../../common/type-definitions/flowbite.class';
|
|
4
|
+
import type { FlowbitePositions } from '../../common/type-definitions/flowbite.positions';
|
|
5
|
+
import type { FlowbiteSizes } from '../../common/type-definitions/flowbite.sizes';
|
|
6
|
+
export interface ModalSizes extends Pick<FlowbiteSizes, 'sm' | 'md' | 'lg' | 'xl'> {
|
|
7
|
+
[key: string]: string;
|
|
8
|
+
}
|
|
9
|
+
export interface ModalPositions extends Pick<FlowbitePositions, 'center' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-center' | 'bottom-center' | 'center-left' | 'center-right'> {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
}
|
|
12
|
+
export interface ModalProperties {
|
|
13
|
+
isOpen: keyof FlowbiteBoolean;
|
|
14
|
+
size: keyof ModalSizes;
|
|
15
|
+
position: keyof ModalPositions;
|
|
16
|
+
customStyle: DeepPartial<ModalTheme>;
|
|
17
|
+
}
|
|
18
|
+
export interface ModalTheme {
|
|
19
|
+
root: {
|
|
20
|
+
base: string;
|
|
21
|
+
};
|
|
22
|
+
wrapper: {
|
|
23
|
+
base: string;
|
|
24
|
+
position: ModalPositions;
|
|
25
|
+
};
|
|
26
|
+
container: {
|
|
27
|
+
base: string;
|
|
28
|
+
size: ModalSizes;
|
|
29
|
+
};
|
|
30
|
+
content: {
|
|
31
|
+
base: string;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
export declare const modalTheme: ModalTheme;
|
|
35
|
+
export interface ModalClass extends FlowbiteClass {
|
|
36
|
+
modalWrapperClass: string;
|
|
37
|
+
modalContainerClass: string;
|
|
38
|
+
modalContentClass: string;
|
|
39
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { ModalClass, ModalProperties, ModalTheme } from './modal.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_MODAL_THEME_TOKEN: InjectionToken<ModalTheme>;
|
|
5
|
+
export declare class ModalThemeService implements FlowbiteThemeService<ModalProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: ModalProperties): ModalClass;
|
|
8
|
+
}
|
|
@@ -1 +1,24 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { NavbarComponent } from './navbar.component';
|
|
2
|
+
export type { NavbarProperties, NavbarClass, NavbarColors, NavbarTheme } from './navbar.theme';
|
|
3
|
+
export { navbarTheme } from './navbar.theme';
|
|
4
|
+
export { FLOWBITE_NAVBAR_THEME_TOKEN, NavbarThemeService } from './navbar.theme.service';
|
|
5
|
+
export { NavbarBrandComponent } from './navbar-brand.component';
|
|
6
|
+
export type { NavbarBrandProperties, NavbarBrandClass, NavbarBrandTheme } from './navbar-brand.theme';
|
|
7
|
+
export { navbarBrandTheme } from './navbar-brand.theme';
|
|
8
|
+
export { FLOWBITE_NAVBAR_BRAND_THEME_TOKEN, NavbarBrandThemeService } from './navbar-brand.theme.service';
|
|
9
|
+
export { NavbarContentComponent } from './navbar-content.component';
|
|
10
|
+
export type { NavbarContentProperties, NavbarContentClass, NavbarContentTheme } from './navbar-content.theme';
|
|
11
|
+
export { navbarContentTheme } from './navbar-content.theme';
|
|
12
|
+
export { FLOWBITE_NAVBAR_CONTENT_THEME_TOKEN, NavbarContentThemeService } from './navbar-content.theme.service';
|
|
13
|
+
export { NavbarItemComponent } from './navbar-item.component';
|
|
14
|
+
export type { NabvarItemProperties, NavbarItemClass, NavbarItemTheme } from './navbar-item.theme';
|
|
15
|
+
export { navbarItemTheme } from './navbar-item.theme';
|
|
16
|
+
export { FLOWBITE_NAVBAR_ITEM_THEME_TOKEN, NavbarItemThemeService } from './navbar-item.theme.service';
|
|
17
|
+
export { NavbarToggleComponent } from './navbar-toggle.component';
|
|
18
|
+
export type { NavbarToggleTheme, NavbarToggleClass, NavbarToggleProperties } from './navbar-toggle.theme';
|
|
19
|
+
export { navbarToogleTheme } from './navbar-toggle.theme';
|
|
20
|
+
export { FLOWBITE_NAVBAR_TOGGLE_THEME_TOKEN, NavbarToggleThemeService } from './navbar-toggle.theme.service';
|
|
21
|
+
export { NavbarIconButtonComponent } from './navbar-icon-button.component';
|
|
22
|
+
export type { NavbarIconButtonProperties, NavbarIconButtonClass, NavbarIconButtonTheme, } from './navbar-icon-button.theme';
|
|
23
|
+
export { navbarIconButtonTheme } from './navbar-icon-button.theme';
|
|
24
|
+
export { FLOWBITE_NAVBAR_ICON_BUTTON_THEME_TOKEN, NavbarIconButtonThemeService, } from './navbar-icon-button.theme.service';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseComponent } from '../base-component.directive';
|
|
2
|
+
import type { NavbarBrandClass } from './navbar-brand.theme';
|
|
3
|
+
import { NavbarBrandThemeService } from './navbar-brand.theme.service';
|
|
4
|
+
import { NavbarComponent } from './navbar.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NavbarBrandComponent extends BaseComponent<NavbarBrandClass> {
|
|
7
|
+
readonly themeService: NavbarBrandThemeService;
|
|
8
|
+
readonly navbarComponent: NavbarComponent;
|
|
9
|
+
customStyle: import("@angular/core").ModelSignal<{
|
|
10
|
+
root?: {
|
|
11
|
+
base?: string | undefined;
|
|
12
|
+
} | undefined;
|
|
13
|
+
}>;
|
|
14
|
+
fetchClass(): NavbarBrandClass;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarBrandComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarBrandComponent, "flowbite-navbar-brand", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { DeepPartial, FlowbiteClass } from '../../common';
|
|
2
|
+
export interface NavbarBrandProperties {
|
|
3
|
+
customStyle: DeepPartial<NavbarBrandTheme>;
|
|
4
|
+
}
|
|
5
|
+
export interface NavbarBrandTheme {
|
|
6
|
+
root: {
|
|
7
|
+
base: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare const navbarBrandTheme: NavbarBrandTheme;
|
|
11
|
+
export type NavbarBrandClass = FlowbiteClass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FlowbiteThemeService } from '../../services';
|
|
2
|
+
import type { NavbarBrandClass, NavbarBrandProperties, NavbarBrandTheme } from './navbar-brand.theme';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
export declare const FLOWBITE_NAVBAR_BRAND_THEME_TOKEN: InjectionToken<NavbarBrandTheme>;
|
|
5
|
+
export declare class NavbarBrandThemeService implements FlowbiteThemeService<NavbarBrandProperties> {
|
|
6
|
+
private readonly baseTheme;
|
|
7
|
+
getClasses(properties: NavbarBrandProperties): NavbarBrandClass;
|
|
8
|
+
}
|