@mozaic-ds/angular 0.23.2-beta.4 → 0.24.0-beta.0
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/adeo/README.md +0 -0
- package/adeo/assets/special-icons/checkbox-checked-disabled.svg +3 -0
- package/adeo/assets/special-icons/checkbox-checked.svg +3 -0
- package/adeo/assets/special-icons/checkbox-indeterminate-disabled.svg +3 -0
- package/adeo/assets/special-icons/checkbox-indeterminate.svg +3 -0
- package/adeo/assets/special-icons/invalid-cross.svg +3 -0
- package/adeo/assets/special-icons/layer-cross.svg +3 -0
- package/adeo/assets/special-icons/notification-danger-m.svg +4 -0
- package/adeo/assets/special-icons/notification-danger-s.svg +4 -0
- package/adeo/assets/special-icons/notification-information-m.svg +5 -0
- package/adeo/assets/special-icons/notification-information-s.svg +5 -0
- package/adeo/assets/special-icons/notification-success-m.svg +4 -0
- package/adeo/assets/special-icons/notification-success-s.svg +4 -0
- package/adeo/assets/special-icons/notification-warning-m.svg +5 -0
- package/adeo/assets/special-icons/notification-warning-s.svg +5 -0
- package/adeo/assets/special-icons/remove-tag.svg +3 -0
- package/adeo/assets/special-icons/toggle-checked-disabled.svg +3 -0
- package/adeo/assets/special-icons/toggle-checked.svg +3 -0
- package/adeo/assets/special-icons/toggle-cross-disabled.svg +3 -0
- package/adeo/assets/special-icons/toggle-cross.svg +3 -0
- package/adeo/assets/special-icons/tooltip-triangle.svg +3 -0
- package/adeo/assets/special-icons/valid-check-mark.svg +11 -0
- package/adeo/assets/tokens/adeo/android/colors.xml +491 -0
- package/adeo/assets/tokens/adeo/android/font_dimens.xml +18 -0
- package/adeo/assets/tokens/adeo/css/_variables.scss +635 -0
- package/adeo/assets/tokens/adeo/css/root.scss +487 -0
- package/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.h +499 -0
- package/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.m +511 -0
- package/adeo/assets/tokens/adeo/ios/StyleDictionaryColor.swift +494 -0
- package/adeo/assets/tokens/adeo/ios/StyleDictionarySize.h +69 -0
- package/adeo/assets/tokens/adeo/ios/StyleDictionarySize.m +70 -0
- package/adeo/assets/tokens/adeo/ios/StyleDictionarySize.swift +71 -0
- package/adeo/assets/tokens/adeo/js/tokens.js +583 -0
- package/adeo/assets/tokens/adeo/js/tokensObject.js +9787 -0
- package/adeo/assets/tokens/adeo/scss/_tokens.scss +1645 -0
- package/adeo/common/global-events/global-events.module.d.ts +6 -0
- package/adeo/common/global-events/global-events.service.d.ts +11 -0
- package/adeo/common/global-events/public-api.d.ts +2 -0
- package/adeo/common/index.d.ts +2 -0
- package/adeo/common/utils/boolean-property.d.ts +1 -0
- package/adeo/common/utils/generate-id.d.ts +1 -0
- package/adeo/common/utils/get-random-number.d.ts +1 -0
- package/adeo/common/utils/index.d.ts +4 -0
- package/adeo/common/utils/overwrite-style.d.ts +2 -0
- package/adeo/common/utils/public-api.d.ts +1 -0
- package/adeo/components/autocomplete/autocomplete.component.d.ts +59 -0
- package/adeo/components/autocomplete/autocomplete.module.d.ts +15 -0
- package/adeo/components/autocomplete/index.d.ts +2 -0
- package/adeo/components/autocomplete/public-api.d.ts +1 -0
- package/adeo/components/badge/badge.component.d.ts +8 -0
- package/adeo/components/badge/badge.d.ts +3 -0
- package/adeo/components/badge/badge.module.d.ts +8 -0
- package/adeo/components/badge/index.d.ts +2 -0
- package/adeo/components/button/button.component.d.ts +16 -0
- package/adeo/components/button/button.d.ts +7 -0
- package/adeo/components/button/button.module.d.ts +8 -0
- package/adeo/components/button/index.d.ts +2 -0
- package/adeo/components/checkbox/checkbox.component.d.ts +21 -0
- package/adeo/components/checkbox/checkbox.module.d.ts +8 -0
- package/adeo/components/checkbox/public-api.d.ts +2 -0
- package/adeo/components/datatable/components/caption/moz-datatable-caption.component.d.ts +11 -0
- package/adeo/components/datatable/components/content/moz-datatable-content-cell.component.d.ts +8 -0
- package/adeo/components/datatable/components/footer/moz-datatable-footer.component.d.ts +18 -0
- package/adeo/components/datatable/components/header/moz-datatable-header-cell.component.d.ts +8 -0
- package/adeo/components/datatable/components/row/moz-datatable-row-expansion-content.component.d.ts +7 -0
- package/adeo/components/datatable/components/selection/moz-datatable-selection.component.d.ts +26 -0
- package/adeo/components/datatable/directives/moz-datatable-sort.directive.d.ts +15 -0
- package/adeo/components/datatable/model/column-def.d.ts +11 -0
- package/adeo/components/datatable/model/datatable-settings.d.ts +29 -0
- package/adeo/components/datatable/model/footer-settings.d.ts +17 -0
- package/adeo/components/datatable/model/row-data.d.ts +5 -0
- package/adeo/components/datatable/model/selection-settings.d.ts +16 -0
- package/adeo/components/datatable/moz-datatable.component.d.ts +53 -0
- package/adeo/components/datatable/moz-datatable.module.d.ts +22 -0
- package/adeo/components/datatable/public-api.d.ts +13 -0
- package/adeo/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.d.ts +29 -0
- package/adeo/components/datatable-management/moz-datatable-management.component.d.ts +16 -0
- package/adeo/components/datatable-management/moz-datatable-management.module.d.ts +15 -0
- package/adeo/components/datatable-management/public-api.d.ts +3 -0
- package/adeo/components/dialog/classes/dialog-config.d.ts +9 -0
- package/adeo/components/dialog/classes/dialog-injector.d.ts +10 -0
- package/adeo/components/dialog/classes/dialog-ref.d.ts +25 -0
- package/adeo/components/dialog/classes/index.d.ts +3 -0
- package/adeo/components/dialog/dialog-animation.d.ts +1 -0
- package/adeo/components/dialog/dialog.component.d.ts +23 -0
- package/adeo/components/dialog/dialog.module.d.ts +8 -0
- package/adeo/components/dialog/dialog.service.d.ts +20 -0
- package/adeo/components/dialog/interfaces/dialog-config.d.ts +7 -0
- package/adeo/components/dialog/interfaces/dialog-di-params.d.ts +6 -0
- package/adeo/components/dialog/interfaces/dialog-ref.d.ts +18 -0
- package/adeo/components/dialog/interfaces/index.d.ts +3 -0
- package/adeo/components/dialog/public-api.d.ts +5 -0
- package/adeo/components/dialog/tokens/dialog-config.token.d.ts +2 -0
- package/adeo/components/dialog/tokens/dialog-data.token.d.ts +2 -0
- package/adeo/components/dialog/tokens/dialog-ref.token.d.ts +2 -0
- package/adeo/components/dialog/tokens/index.d.ts +3 -0
- package/adeo/components/dropdown/dropdown.component.d.ts +54 -0
- package/adeo/components/dropdown/dropdown.module.d.ts +14 -0
- package/adeo/components/dropdown/index.d.ts +2 -0
- package/adeo/components/dropdown/public-api.d.ts +1 -0
- package/adeo/components/field/directives/input-icon.directive.d.ts +7 -0
- package/adeo/components/field/field-error.component.d.ts +5 -0
- package/adeo/components/field/field.component.d.ts +16 -0
- package/adeo/components/field/field.module.d.ts +10 -0
- package/adeo/components/field/public-api.d.ts +4 -0
- package/adeo/components/heading/heading-alignment.d.ts +1 -0
- package/adeo/components/heading/heading-weight-type.d.ts +1 -0
- package/adeo/components/heading/heading.component.d.ts +14 -0
- package/adeo/components/heading/heading.module.d.ts +8 -0
- package/adeo/components/heading/index.d.ts +4 -0
- package/adeo/components/heading/public-api.d.ts +1 -0
- package/adeo/components/icon/icon-size.d.ts +6 -0
- package/adeo/components/icon/icon.component.d.ts +15 -0
- package/adeo/components/icon/icon.module.d.ts +8 -0
- package/adeo/components/icon/icon.service.d.ts +13 -0
- package/adeo/components/icon/public-api.d.ts +3 -0
- package/adeo/components/layer/classes/layer-injector.d.ts +10 -0
- package/adeo/components/layer/classes/layer-ref.d.ts +21 -0
- package/adeo/components/layer/interfaces/index.d.ts +3 -0
- package/adeo/components/layer/interfaces/layer-config.d.ts +5 -0
- package/adeo/components/layer/interfaces/layer-di-params.d.ts +6 -0
- package/adeo/components/layer/interfaces/layer-ref.d.ts +15 -0
- package/adeo/components/layer/layer-animation.d.ts +1 -0
- package/adeo/components/layer/layer.component.d.ts +20 -0
- package/adeo/components/layer/layer.module.d.ts +9 -0
- package/adeo/components/layer/layer.service.d.ts +19 -0
- package/adeo/components/layer/public-api.d.ts +5 -0
- package/adeo/components/layer/tokens/index.d.ts +3 -0
- package/adeo/components/layer/tokens/layer-config.token.d.ts +2 -0
- package/adeo/components/layer/tokens/layer-data.token.d.ts +2 -0
- package/adeo/components/layer/tokens/layer-ref.token.d.ts +2 -0
- package/adeo/components/listbox/index.d.ts +3 -0
- package/adeo/components/listbox/listbox.component.d.ts +18 -0
- package/adeo/components/listbox/listbox.module.d.ts +10 -0
- package/adeo/components/listbox/model/listbox-item.d.ts +6 -0
- package/adeo/components/listbox/public-api.d.ts +1 -0
- package/adeo/components/loader/loader.component.d.ts +25 -0
- package/adeo/components/loader/loader.d.ts +16 -0
- package/adeo/components/loader/loader.module.d.ts +8 -0
- package/adeo/components/loader/loader.service.d.ts +18 -0
- package/adeo/components/loader/public-api.d.ts +3 -0
- package/adeo/components/notification/notification-animation.d.ts +1 -0
- package/adeo/components/notification/notification-container.component.d.ts +12 -0
- package/adeo/components/notification/notification-footer.d.ts +5 -0
- package/adeo/components/notification/notification-message.d.ts +5 -0
- package/adeo/components/notification/notification-title.d.ts +5 -0
- package/adeo/components/notification/notification.component.d.ts +9 -0
- package/adeo/components/notification/notification.d.ts +15 -0
- package/adeo/components/notification/notification.module.d.ts +15 -0
- package/adeo/components/notification/notification.service.d.ts +16 -0
- package/adeo/components/notification/public-api.d.ts +8 -0
- package/adeo/components/pagination/pagination.component.d.ts +48 -0
- package/adeo/components/pagination/pagination.d.ts +7 -0
- package/adeo/components/pagination/pagination.module.d.ts +13 -0
- package/adeo/components/pagination/public-api.d.ts +2 -0
- package/adeo/components/progress-bar/progress-bar-size.d.ts +1 -0
- package/adeo/components/progress-bar/progress-bar-theme.d.ts +1 -0
- package/adeo/components/progress-bar/progress-bar.component.d.ts +15 -0
- package/adeo/components/progress-bar/progress-bar.module.d.ts +8 -0
- package/adeo/components/progress-bar/public-api.d.ts +2 -0
- package/adeo/components/public-api.d.ts +26 -0
- package/adeo/components/select/public-api.d.ts +2 -0
- package/adeo/components/select/select-size.d.ts +5 -0
- package/adeo/components/select/select.component.d.ts +8 -0
- package/adeo/components/select/select.module.d.ts +8 -0
- package/adeo/components/stepper/public-api.d.ts +3 -0
- package/adeo/components/stepper/step-state.d.ts +1 -0
- package/adeo/components/stepper/step.component.d.ts +20 -0
- package/adeo/components/stepper/stepper.component.d.ts +20 -0
- package/adeo/components/stepper/stepper.module.d.ts +10 -0
- package/adeo/components/tabs/public-api.d.ts +3 -0
- package/adeo/components/tabs/tab-selectors.d.ts +2 -0
- package/adeo/components/tabs/tab.component.d.ts +16 -0
- package/adeo/components/tabs/tabs.component.d.ts +36 -0
- package/adeo/components/tabs/tabs.module.d.ts +9 -0
- package/adeo/components/tag/public-api.d.ts +2 -0
- package/adeo/components/tag/tag-type.d.ts +5 -0
- package/adeo/components/tag/tag.component.d.ts +23 -0
- package/adeo/components/tag/tag.module.d.ts +9 -0
- package/adeo/components/taglist/components/taglist-layer-content/taglist-layer-content.component.d.ts +14 -0
- package/adeo/components/taglist/index.d.ts +3 -0
- package/adeo/components/taglist/public-api.d.ts +1 -0
- package/adeo/components/taglist/taglist.component.d.ts +26 -0
- package/adeo/components/taglist/taglist.module.d.ts +11 -0
- package/adeo/components/text-area/public-api.d.ts +2 -0
- package/adeo/components/text-area/text-area.component.d.ts +12 -0
- package/adeo/components/text-area/text-area.module.d.ts +7 -0
- package/adeo/components/text-input/public-api.d.ts +2 -0
- package/adeo/components/text-input/text-input.component.d.ts +21 -0
- package/adeo/components/text-input/text-input.d.ts +1 -0
- package/adeo/components/text-input/text-input.module.d.ts +10 -0
- package/adeo/components/toggle/public-api.d.ts +2 -0
- package/adeo/components/toggle/toggle-size.d.ts +1 -0
- package/adeo/components/toggle/toggle.component.d.ts +22 -0
- package/adeo/components/toggle/toggle.module.d.ts +8 -0
- package/adeo/components/tooltip/directive/tooltip.directive.d.ts +18 -0
- package/adeo/components/tooltip/index.d.ts +3 -0
- package/adeo/components/tooltip/public-api.d.ts +1 -0
- package/adeo/components/tooltip/tooltip-position.d.ts +1 -0
- package/adeo/components/tooltip/tooltip.component.d.ts +8 -0
- package/adeo/components/tooltip/tooltip.module.d.ts +9 -0
- package/adeo/esm2020/common/global-events/global-events.module.mjs +15 -0
- package/adeo/esm2020/common/global-events/global-events.service.mjs +30 -0
- package/adeo/esm2020/common/global-events/public-api.mjs +3 -0
- package/adeo/esm2020/common/index.mjs +3 -0
- package/adeo/esm2020/common/utils/boolean-property.mjs +4 -0
- package/adeo/esm2020/common/utils/generate-id.mjs +7 -0
- package/adeo/esm2020/common/utils/get-random-number.mjs +6 -0
- package/adeo/esm2020/common/utils/index.mjs +5 -0
- package/adeo/esm2020/common/utils/overwrite-style.mjs +5 -0
- package/adeo/esm2020/common/utils/public-api.mjs +2 -0
- package/adeo/esm2020/components/autocomplete/autocomplete.component.mjs +252 -0
- package/adeo/esm2020/components/autocomplete/autocomplete.module.mjs +48 -0
- package/adeo/esm2020/components/autocomplete/index.mjs +3 -0
- package/adeo/esm2020/components/autocomplete/public-api.mjs +2 -0
- package/adeo/esm2020/components/badge/badge.component.mjs +30 -0
- package/adeo/esm2020/components/badge/badge.mjs +2 -0
- package/adeo/esm2020/components/badge/badge.module.mjs +18 -0
- package/adeo/esm2020/components/badge/index.mjs +3 -0
- package/adeo/esm2020/components/button/button.component.mjs +53 -0
- package/adeo/esm2020/components/button/button.mjs +2 -0
- package/adeo/esm2020/components/button/button.module.mjs +18 -0
- package/adeo/esm2020/components/button/index.mjs +3 -0
- package/adeo/esm2020/components/checkbox/checkbox.component.mjs +58 -0
- package/adeo/esm2020/components/checkbox/checkbox.module.mjs +21 -0
- package/adeo/esm2020/components/checkbox/public-api.mjs +3 -0
- package/adeo/esm2020/components/datatable/components/caption/moz-datatable-caption.component.mjs +26 -0
- package/adeo/esm2020/components/datatable/components/content/moz-datatable-content-cell.component.mjs +16 -0
- package/adeo/esm2020/components/datatable/components/footer/moz-datatable-footer.component.mjs +56 -0
- package/adeo/esm2020/components/datatable/components/header/moz-datatable-header-cell.component.mjs +16 -0
- package/adeo/esm2020/components/datatable/components/row/moz-datatable-row-expansion-content.component.mjs +14 -0
- package/adeo/esm2020/components/datatable/components/selection/moz-datatable-selection.component.mjs +289 -0
- package/adeo/esm2020/components/datatable/directives/moz-datatable-sort.directive.mjs +65 -0
- package/adeo/esm2020/components/datatable/model/column-def.mjs +2 -0
- package/adeo/esm2020/components/datatable/model/datatable-settings.mjs +2 -0
- package/adeo/esm2020/components/datatable/model/footer-settings.mjs +2 -0
- package/adeo/esm2020/components/datatable/model/row-data.mjs +2 -0
- package/adeo/esm2020/components/datatable/model/selection-settings.mjs +2 -0
- package/adeo/esm2020/components/datatable/moz-datatable.component.mjs +161 -0
- package/adeo/esm2020/components/datatable/moz-datatable.module.mjs +87 -0
- package/adeo/esm2020/components/datatable/public-api.mjs +14 -0
- package/adeo/esm2020/components/datatable-management/components/moz-datatable-management-content/moz-datatable-management-content.component.mjs +80 -0
- package/adeo/esm2020/components/datatable-management/moz-datatable-management.component.mjs +45 -0
- package/adeo/esm2020/components/datatable-management/moz-datatable-management.module.mjs +45 -0
- package/adeo/esm2020/components/datatable-management/public-api.mjs +4 -0
- package/adeo/esm2020/components/dialog/classes/dialog-config.mjs +9 -0
- package/adeo/esm2020/components/dialog/classes/dialog-injector.mjs +22 -0
- package/adeo/esm2020/components/dialog/classes/dialog-ref.mjs +49 -0
- package/adeo/esm2020/components/dialog/classes/index.mjs +4 -0
- package/adeo/esm2020/components/dialog/dialog-animation.mjs +18 -0
- package/adeo/esm2020/components/dialog/dialog.component.mjs +57 -0
- package/adeo/esm2020/components/dialog/dialog.module.mjs +20 -0
- package/adeo/esm2020/components/dialog/dialog.service.mjs +67 -0
- package/adeo/esm2020/components/dialog/interfaces/dialog-config.mjs +2 -0
- package/adeo/esm2020/components/dialog/interfaces/dialog-di-params.mjs +2 -0
- package/adeo/esm2020/components/dialog/interfaces/dialog-ref.mjs +2 -0
- package/adeo/esm2020/components/dialog/interfaces/index.mjs +4 -0
- package/adeo/esm2020/components/dialog/public-api.mjs +6 -0
- package/adeo/esm2020/components/dialog/tokens/dialog-config.token.mjs +3 -0
- package/adeo/esm2020/components/dialog/tokens/dialog-data.token.mjs +3 -0
- package/adeo/esm2020/components/dialog/tokens/dialog-ref.token.mjs +3 -0
- package/adeo/esm2020/components/dialog/tokens/index.mjs +4 -0
- package/adeo/esm2020/components/dropdown/dropdown.component.mjs +217 -0
- package/adeo/esm2020/components/dropdown/dropdown.module.mjs +44 -0
- package/adeo/esm2020/components/dropdown/index.mjs +3 -0
- package/adeo/esm2020/components/dropdown/public-api.mjs +2 -0
- package/adeo/esm2020/components/field/directives/input-icon.directive.mjs +15 -0
- package/adeo/esm2020/components/field/field-error.component.mjs +13 -0
- package/adeo/esm2020/components/field/field.component.mjs +40 -0
- package/adeo/esm2020/components/field/field.module.mjs +20 -0
- package/adeo/esm2020/components/field/public-api.mjs +5 -0
- package/adeo/esm2020/components/heading/heading-alignment.mjs +2 -0
- package/adeo/esm2020/components/heading/heading-weight-type.mjs +2 -0
- package/adeo/esm2020/components/heading/heading.component.mjs +32 -0
- package/adeo/esm2020/components/heading/heading.module.mjs +18 -0
- package/adeo/esm2020/components/heading/index.mjs +5 -0
- package/adeo/esm2020/components/heading/public-api.mjs +2 -0
- package/adeo/esm2020/components/icon/icon-size.mjs +8 -0
- package/adeo/esm2020/components/icon/icon.component.mjs +49 -0
- package/adeo/esm2020/components/icon/icon.module.mjs +18 -0
- package/adeo/esm2020/components/icon/icon.service.mjs +42 -0
- package/adeo/esm2020/components/icon/public-api.mjs +4 -0
- package/adeo/esm2020/components/layer/classes/layer-injector.mjs +22 -0
- package/adeo/esm2020/components/layer/classes/layer-ref.mjs +38 -0
- package/adeo/esm2020/components/layer/interfaces/index.mjs +4 -0
- package/adeo/esm2020/components/layer/interfaces/layer-config.mjs +2 -0
- package/adeo/esm2020/components/layer/interfaces/layer-di-params.mjs +2 -0
- package/adeo/esm2020/components/layer/interfaces/layer-ref.mjs +2 -0
- package/adeo/esm2020/components/layer/layer-animation.mjs +18 -0
- package/adeo/esm2020/components/layer/layer.component.mjs +45 -0
- package/adeo/esm2020/components/layer/layer.module.mjs +21 -0
- package/adeo/esm2020/components/layer/layer.service.mjs +56 -0
- package/adeo/esm2020/components/layer/public-api.mjs +6 -0
- package/adeo/esm2020/components/layer/tokens/index.mjs +4 -0
- package/adeo/esm2020/components/layer/tokens/layer-config.token.mjs +3 -0
- package/adeo/esm2020/components/layer/tokens/layer-data.token.mjs +3 -0
- package/adeo/esm2020/components/layer/tokens/layer-ref.token.mjs +3 -0
- package/adeo/esm2020/components/listbox/index.mjs +4 -0
- package/adeo/esm2020/components/listbox/listbox.component.mjs +68 -0
- package/adeo/esm2020/components/listbox/listbox.module.mjs +20 -0
- package/adeo/esm2020/components/listbox/model/listbox-item.mjs +2 -0
- package/adeo/esm2020/components/listbox/public-api.mjs +2 -0
- package/adeo/esm2020/components/loader/loader.component.mjs +47 -0
- package/adeo/esm2020/components/loader/loader.mjs +11 -0
- package/adeo/esm2020/components/loader/loader.module.mjs +20 -0
- package/adeo/esm2020/components/loader/loader.service.mjs +53 -0
- package/adeo/esm2020/components/loader/public-api.mjs +4 -0
- package/adeo/esm2020/components/notification/notification-animation.mjs +21 -0
- package/adeo/esm2020/components/notification/notification-container.component.mjs +38 -0
- package/adeo/esm2020/components/notification/notification-footer.mjs +11 -0
- package/adeo/esm2020/components/notification/notification-message.mjs +11 -0
- package/adeo/esm2020/components/notification/notification-title.mjs +11 -0
- package/adeo/esm2020/components/notification/notification.component.mjs +29 -0
- package/adeo/esm2020/components/notification/notification.mjs +8 -0
- package/adeo/esm2020/components/notification/notification.module.mjs +66 -0
- package/adeo/esm2020/components/notification/notification.service.mjs +40 -0
- package/adeo/esm2020/components/notification/public-api.mjs +9 -0
- package/adeo/esm2020/components/pagination/pagination.component.mjs +140 -0
- package/adeo/esm2020/components/pagination/pagination.mjs +4 -0
- package/adeo/esm2020/components/pagination/pagination.module.mjs +23 -0
- package/adeo/esm2020/components/pagination/public-api.mjs +3 -0
- package/adeo/esm2020/components/progress-bar/progress-bar-size.mjs +2 -0
- package/adeo/esm2020/components/progress-bar/progress-bar-theme.mjs +2 -0
- package/adeo/esm2020/components/progress-bar/progress-bar.component.mjs +38 -0
- package/adeo/esm2020/components/progress-bar/progress-bar.module.mjs +18 -0
- package/adeo/esm2020/components/progress-bar/public-api.mjs +3 -0
- package/adeo/esm2020/components/public-api.mjs +27 -0
- package/adeo/esm2020/components/select/public-api.mjs +3 -0
- package/adeo/esm2020/components/select/select-size.mjs +6 -0
- package/adeo/esm2020/components/select/select.component.mjs +25 -0
- package/adeo/esm2020/components/select/select.module.mjs +18 -0
- package/adeo/esm2020/components/stepper/public-api.mjs +4 -0
- package/adeo/esm2020/components/stepper/step-state.mjs +2 -0
- package/adeo/esm2020/components/stepper/step.component.mjs +51 -0
- package/adeo/esm2020/components/stepper/stepper.component.mjs +79 -0
- package/adeo/esm2020/components/stepper/stepper.module.mjs +20 -0
- package/adeo/esm2020/components/tabs/public-api.mjs +4 -0
- package/adeo/esm2020/components/tabs/tab-selectors.mjs +3 -0
- package/adeo/esm2020/components/tabs/tab.component.mjs +53 -0
- package/adeo/esm2020/components/tabs/tabs.component.mjs +128 -0
- package/adeo/esm2020/components/tabs/tabs.module.mjs +19 -0
- package/adeo/esm2020/components/tag/public-api.mjs +3 -0
- package/adeo/esm2020/components/tag/tag-type.mjs +2 -0
- package/adeo/esm2020/components/tag/tag.component.mjs +61 -0
- package/adeo/esm2020/components/tag/tag.module.mjs +19 -0
- package/adeo/esm2020/components/taglist/components/taglist-layer-content/taglist-layer-content.component.mjs +35 -0
- package/adeo/esm2020/components/taglist/index.mjs +4 -0
- package/adeo/esm2020/components/taglist/public-api.mjs +2 -0
- package/adeo/esm2020/components/taglist/taglist.component.mjs +76 -0
- package/adeo/esm2020/components/taglist/taglist.module.mjs +21 -0
- package/adeo/esm2020/components/text-area/public-api.mjs +3 -0
- package/adeo/esm2020/components/text-area/text-area.component.mjs +43 -0
- package/adeo/esm2020/components/text-area/text-area.module.mjs +16 -0
- package/adeo/esm2020/components/text-input/public-api.mjs +3 -0
- package/adeo/esm2020/components/text-input/text-input.component.mjs +64 -0
- package/adeo/esm2020/components/text-input/text-input.mjs +2 -0
- package/adeo/esm2020/components/text-input/text-input.module.mjs +20 -0
- package/adeo/esm2020/components/toggle/public-api.mjs +3 -0
- package/adeo/esm2020/components/toggle/toggle-size.mjs +2 -0
- package/adeo/esm2020/components/toggle/toggle.component.mjs +59 -0
- package/adeo/esm2020/components/toggle/toggle.module.mjs +18 -0
- package/adeo/esm2020/components/tooltip/directive/tooltip.directive.mjs +85 -0
- package/adeo/esm2020/components/tooltip/index.mjs +4 -0
- package/adeo/esm2020/components/tooltip/public-api.mjs +2 -0
- package/adeo/esm2020/components/tooltip/tooltip-position.mjs +2 -0
- package/adeo/esm2020/components/tooltip/tooltip.component.mjs +20 -0
- package/adeo/esm2020/components/tooltip/tooltip.module.mjs +19 -0
- package/adeo/esm2020/mozaic-ds-angular.mjs +5 -0
- package/adeo/esm2020/public-api.mjs +3 -0
- package/adeo/fesm2015/mozaic-ds-angular.mjs +3722 -0
- package/adeo/fesm2015/mozaic-ds-angular.mjs.map +1 -0
- package/adeo/fesm2020/mozaic-ds-angular.mjs +3681 -0
- package/adeo/fesm2020/mozaic-ds-angular.mjs.map +1 -0
- package/adeo/index.d.ts +5 -0
- package/adeo/package.json +40 -0
- package/adeo/public-api.d.ts +2 -0
- package/assets/tokens/adeo/android/colors.xml +11 -2
- package/assets/tokens/adeo/css/_variables.scss +11 -2
- package/assets/tokens/adeo/css/root.scss +12 -3
- package/assets/tokens/adeo/ios/StyleDictionaryColor.h +10 -1
- package/assets/tokens/adeo/ios/StyleDictionaryColor.m +11 -2
- package/assets/tokens/adeo/ios/StyleDictionaryColor.swift +11 -2
- package/assets/tokens/adeo/js/tokens.js +11 -2
- package/assets/tokens/adeo/js/tokensObject.js +165 -15
- package/assets/tokens/adeo/scss/_tokens.scss +31 -3
- package/components/heading/heading-alignment.d.ts +1 -0
- package/components/heading/heading-weight-type.d.ts +1 -0
- package/components/heading/heading.component.d.ts +14 -0
- package/components/heading/heading.module.d.ts +8 -0
- package/components/heading/index.d.ts +4 -0
- package/components/heading/public-api.d.ts +1 -0
- package/components/public-api.d.ts +1 -0
- package/esm2020/components/heading/heading-alignment.mjs +2 -0
- package/esm2020/components/heading/heading-weight-type.mjs +2 -0
- package/esm2020/components/heading/heading.component.mjs +32 -0
- package/esm2020/components/heading/heading.module.mjs +18 -0
- package/esm2020/components/heading/index.mjs +5 -0
- package/esm2020/components/heading/public-api.mjs +2 -0
- package/esm2020/components/public-api.mjs +2 -1
- package/fesm2015/mozaic-ds-angular.mjs +44 -1
- package/fesm2015/mozaic-ds-angular.mjs.map +1 -1
- package/fesm2020/mozaic-ds-angular.mjs +44 -1
- package/fesm2020/mozaic-ds-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ComponentRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DialogComponent } from '../dialog.component';
|
|
4
|
+
import { DialogConfig, DialogRef } from '../interfaces';
|
|
5
|
+
export declare class DialogRefModel implements DialogRef {
|
|
6
|
+
dialogConfig: DialogConfig;
|
|
7
|
+
private readonly _config$;
|
|
8
|
+
private readonly _afterClosed$;
|
|
9
|
+
private readonly _id;
|
|
10
|
+
private _dialogElement;
|
|
11
|
+
private _componentRef;
|
|
12
|
+
constructor(dialogConfig: DialogConfig);
|
|
13
|
+
get afterClosed$(): Observable<unknown>;
|
|
14
|
+
get config$(): Observable<DialogConfig>;
|
|
15
|
+
get config(): DialogConfig;
|
|
16
|
+
get id(): string;
|
|
17
|
+
get dialogElement(): HTMLElement;
|
|
18
|
+
get componentRef(): ComponentRef<DialogComponent>;
|
|
19
|
+
init(config: DialogConfig): void;
|
|
20
|
+
updateConfig(config: DialogConfig): void;
|
|
21
|
+
close<T = unknown>(result?: T): void;
|
|
22
|
+
setDialogElement(element: HTMLElement): void;
|
|
23
|
+
setComponentRef(componentRef: ComponentRef<DialogComponent>): void;
|
|
24
|
+
destroy(): void;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const dialogAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ComponentRef, OnDestroy, Type } from '@angular/core';
|
|
2
|
+
import { DialogConfig, DialogRef } from './interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DialogComponent implements AfterViewInit, OnDestroy {
|
|
5
|
+
private config;
|
|
6
|
+
private cd;
|
|
7
|
+
dialogRef: DialogRef;
|
|
8
|
+
childComponentType: Type<any>;
|
|
9
|
+
private readonly contentViewRef;
|
|
10
|
+
childComponentRef?: ComponentRef<any>;
|
|
11
|
+
constructor(config: DialogConfig, cd: ChangeDetectorRef);
|
|
12
|
+
get title(): string;
|
|
13
|
+
get hasCross(): boolean;
|
|
14
|
+
get minHeight(): string;
|
|
15
|
+
get layerIndex(): number;
|
|
16
|
+
get dialogContainerIndex(): number;
|
|
17
|
+
ngAfterViewInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
close(): void;
|
|
20
|
+
private initChildComponent;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "moz-dialog", never, { "dialogRef": "dialogRef"; "childComponentType": "childComponentType"; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dialog.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class DialogModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogModule, [typeof i1.DialogComponent], [typeof i2.CommonModule], never>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DialogModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ApplicationRef, ComponentFactoryResolver, Injector, Type } from '@angular/core';
|
|
2
|
+
import { DialogConfig, DialogRef } from './interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DialogService {
|
|
5
|
+
private readonly componentFactoryResolver;
|
|
6
|
+
private readonly injector;
|
|
7
|
+
private readonly applicationRef;
|
|
8
|
+
private readonly document;
|
|
9
|
+
private _layer;
|
|
10
|
+
constructor(componentFactoryResolver: ComponentFactoryResolver, injector: Injector, applicationRef: ApplicationRef, document: Document);
|
|
11
|
+
open(component: Type<any>, config?: DialogConfig): DialogRef;
|
|
12
|
+
private createDialog;
|
|
13
|
+
private createComponentRef;
|
|
14
|
+
private initDialogRefAfterClosedObserver;
|
|
15
|
+
private appendDialogComponentToBody;
|
|
16
|
+
private applyDataForCreatedDialogInstance;
|
|
17
|
+
private addLayer;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ComponentRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DialogConfig } from '.';
|
|
4
|
+
import { DialogComponent } from '../dialog.component';
|
|
5
|
+
export interface DialogRef {
|
|
6
|
+
afterClosed$: Observable<unknown>;
|
|
7
|
+
config$: Observable<DialogConfig>;
|
|
8
|
+
config: DialogConfig;
|
|
9
|
+
id: string;
|
|
10
|
+
dialogElement: HTMLElement;
|
|
11
|
+
componentRef: ComponentRef<DialogComponent>;
|
|
12
|
+
init(config: DialogConfig): void;
|
|
13
|
+
updateConfig(config: DialogConfig): void;
|
|
14
|
+
close<T = unknown>(result?: T): void;
|
|
15
|
+
setDialogElement(element: HTMLElement): void;
|
|
16
|
+
setComponentRef(componentRef: ComponentRef<DialogComponent>): void;
|
|
17
|
+
destroy(): void;
|
|
18
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ListboxItem } from '../listbox/model/listbox-item';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
5
|
+
import { TagItem } from '../tag/tag-type';
|
|
6
|
+
import { TaglistComponent } from '../taglist/taglist.component';
|
|
7
|
+
import { ButtonSizes } from '../button/button';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DropdownComponent implements AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
10
|
+
private eRef;
|
|
11
|
+
private cd;
|
|
12
|
+
listboxItems: ListboxItem[];
|
|
13
|
+
multiple: boolean;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
loading: boolean;
|
|
17
|
+
clearfield: boolean;
|
|
18
|
+
valid: boolean;
|
|
19
|
+
invalid: boolean;
|
|
20
|
+
showSelectedTags: boolean;
|
|
21
|
+
maxShowingSelectedTags: number;
|
|
22
|
+
size: ButtonSizes;
|
|
23
|
+
layerTagsTitle: string;
|
|
24
|
+
layerTagsIcon: string;
|
|
25
|
+
taglistComponent: TaglistComponent;
|
|
26
|
+
listboxElementRef: ElementRef;
|
|
27
|
+
openState: boolean;
|
|
28
|
+
selectedItems: ListboxItem[] | ListboxItem | undefined;
|
|
29
|
+
originalListboxParent?: HTMLElement | null;
|
|
30
|
+
destroyed: Subject<unknown>;
|
|
31
|
+
onChange: any;
|
|
32
|
+
onTouch: any;
|
|
33
|
+
constructor(eRef: ElementRef, cd: ChangeDetectorRef);
|
|
34
|
+
writeValue(value: ListboxItem[] | ListboxItem | undefined): void;
|
|
35
|
+
registerOnChange(fn: any): void;
|
|
36
|
+
registerOnTouched(fn: any): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
ngAfterViewInit(): void;
|
|
39
|
+
clickout(event: Event): void;
|
|
40
|
+
openListbox(): void;
|
|
41
|
+
closeListbox(): void;
|
|
42
|
+
itemsSelectedListboxEvent(listboxItemSelected: ListboxItem[] | ListboxItem): void;
|
|
43
|
+
clearFieldEvent(): void;
|
|
44
|
+
getMultiSelectedLabel(): string;
|
|
45
|
+
getSelectedListboxItems(): ListboxItem[];
|
|
46
|
+
getSelectedListboxItem(): ListboxItem | undefined;
|
|
47
|
+
getLabelFromMultipleSelection(): string;
|
|
48
|
+
getLabelFromMonoSelection(): string;
|
|
49
|
+
canClearField(): boolean;
|
|
50
|
+
getTagItemsFromSelectedItems(): TagItem[];
|
|
51
|
+
removeTagEvent($event: TagItem): void;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "moz-dropdown", never, { "listboxItems": "listboxItems"; "multiple": "multiple"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "clearfield": "clearfield"; "valid": "valid"; "invalid": "invalid"; "showSelectedTags": "showSelectedTags"; "maxShowingSelectedTags": "maxShowingSelectedTags"; "size": "size"; "layerTagsTitle": "layerTagsTitle"; "layerTagsIcon": "layerTagsIcon"; }, {}, never, never, false, never>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dropdown.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../listbox/listbox.module";
|
|
6
|
+
import * as i5 from "../loader/loader.module";
|
|
7
|
+
import * as i6 from "../icon/icon.module";
|
|
8
|
+
import * as i7 from "../tag/tag.module";
|
|
9
|
+
import * as i8 from "../taglist/taglist.module";
|
|
10
|
+
export declare class DropdownModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DropdownModule, [typeof i1.DropdownComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.ListboxModule, typeof i5.LoaderModule, typeof i6.IconModule, typeof i7.TagModule, typeof i8.TaglistModule], [typeof i1.DropdownComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DropdownModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const MOZ_INPUT_ICON: InjectionToken<InputIconDirective>;
|
|
4
|
+
export declare class InputIconDirective {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputIconDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InputIconDirective, "[mozInputIcon]", never, {}, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FieldErrorComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldErrorComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldErrorComponent, "moz-field-error", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
|
+
import { InputIconDirective } from './directives/input-icon.directive';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FieldComponent {
|
|
5
|
+
private readonly cd;
|
|
6
|
+
label: string;
|
|
7
|
+
requirementText: string;
|
|
8
|
+
helpText: string;
|
|
9
|
+
InputIconDirective?: QueryList<InputIconDirective>;
|
|
10
|
+
get viewLabel(): boolean;
|
|
11
|
+
get hasInputIcon(): import("rxjs").Observable<boolean> | undefined;
|
|
12
|
+
constructor(cd: ChangeDetectorRef);
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "moz-field", never, { "label": "label"; "requirementText": "requirementText"; "helpText": "helpText"; }, {}, ["InputIconDirective"], ["*", "[mozInputIcon]", "[moz-input]", "moz-field-error"], false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./field.component";
|
|
3
|
+
import * as i2 from "./field-error.component";
|
|
4
|
+
import * as i3 from "./directives/input-icon.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
export declare class FieldModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FieldModule, [typeof i1.FieldComponent, typeof i2.FieldErrorComponent, typeof i3.InputIconDirective], [typeof i4.CommonModule], [typeof i1.FieldComponent, typeof i2.FieldErrorComponent, typeof i3.InputIconDirective]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FieldModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type HeadingResponsiveAlignment = 'left' | 'center' | 'right';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type HeadingWeightType = 'light' | 'regular' | 'semi-bold';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HeadingWeightType } from './heading-weight-type';
|
|
2
|
+
import { HeadingResponsiveAlignment } from './heading-alignment';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HeadingComponent {
|
|
5
|
+
size: string;
|
|
6
|
+
weight?: HeadingWeightType;
|
|
7
|
+
underline: boolean;
|
|
8
|
+
lightest: boolean;
|
|
9
|
+
alignment?: HeadingResponsiveAlignment;
|
|
10
|
+
lineHeightXS: boolean;
|
|
11
|
+
underlineColor?: string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeadingComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeadingComponent, "moz-heading", never, { "size": "size"; "weight": "weight"; "underline": "underline"; "lightest": "lightest"; "alignment": "alignment"; "lineHeightXS": "lineHeightXS"; "underlineColor": "underlineColor"; }, {}, never, ["*"], false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./heading.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class HeadingModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeadingModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HeadingModule, [typeof i1.HeadingComponent], [typeof i2.CommonModule], [typeof i1.HeadingComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HeadingModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { IconService } from './icon.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconComponent implements OnChanges {
|
|
5
|
+
private readonly iconService;
|
|
6
|
+
private readonly elementRef;
|
|
7
|
+
iconName: string;
|
|
8
|
+
constructor(iconService: IconService, elementRef: ElementRef);
|
|
9
|
+
ngOnChanges({ iconName }: SimpleChanges): void;
|
|
10
|
+
private needRenderIcon;
|
|
11
|
+
private getSizeClass;
|
|
12
|
+
private drawIcon;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "moz-icon", never, { "iconName": "iconName"; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class IconModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, [typeof i1.IconComponent], [typeof i2.CommonModule], [typeof i1.IconComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconService {
|
|
5
|
+
private http;
|
|
6
|
+
private cachedIcons;
|
|
7
|
+
private cachedRequests;
|
|
8
|
+
constructor(http: HttpClient);
|
|
9
|
+
getIcon(name: string): Observable<string>;
|
|
10
|
+
private getNotFoundError;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconService, [{ host: true; }]>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IconService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { LayerDIParams } from '../interfaces/layer-di-params';
|
|
3
|
+
export declare class LayerInjector implements Injector {
|
|
4
|
+
private readonly parentInjector;
|
|
5
|
+
private readonly layerRef;
|
|
6
|
+
private additionalTokens;
|
|
7
|
+
constructor({ injector, layerRef }: LayerDIParams);
|
|
8
|
+
get(token: unknown, notFoundValue?: unknown, flags?: unknown): any;
|
|
9
|
+
private initAdditionalTokens;
|
|
10
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { LayerConfig } from '../interfaces';
|
|
4
|
+
import { LayerRef } from '../interfaces/layer-ref';
|
|
5
|
+
import { LayerComponent } from '../layer.component';
|
|
6
|
+
export declare class LayerRefModel<R = unknown> implements LayerRef<R> {
|
|
7
|
+
layerConfig: LayerConfig;
|
|
8
|
+
private readonly _config$;
|
|
9
|
+
private _componentRef;
|
|
10
|
+
private _afterClosed$;
|
|
11
|
+
get afterClosed$(): Observable<R | undefined>;
|
|
12
|
+
get config$(): Observable<LayerConfig<any>>;
|
|
13
|
+
get config(): LayerConfig<any>;
|
|
14
|
+
get componentRef(): ComponentRef<LayerComponent>;
|
|
15
|
+
constructor(layerConfig: LayerConfig);
|
|
16
|
+
init(config: LayerConfig): void;
|
|
17
|
+
updateConfig(config: LayerConfig): void;
|
|
18
|
+
close(result?: R): void;
|
|
19
|
+
setComponentRef(componentRef: ComponentRef<LayerComponent>): void;
|
|
20
|
+
destroy(): void;
|
|
21
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ComponentRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { LayerComponent } from '../layer.component';
|
|
4
|
+
import { LayerConfig } from './layer-config';
|
|
5
|
+
export interface LayerRef<R = unknown> {
|
|
6
|
+
afterClosed$: Observable<unknown>;
|
|
7
|
+
config$: Observable<LayerConfig>;
|
|
8
|
+
config: LayerConfig;
|
|
9
|
+
componentRef: ComponentRef<LayerComponent>;
|
|
10
|
+
init(config: LayerConfig): void;
|
|
11
|
+
updateConfig(config: LayerConfig): void;
|
|
12
|
+
close(result?: R): void;
|
|
13
|
+
setComponentRef(componentRef: ComponentRef<LayerComponent>): void;
|
|
14
|
+
destroy(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const layerAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ComponentRef, Type } from '@angular/core';
|
|
2
|
+
import { LayerConfig } from './interfaces';
|
|
3
|
+
import { LayerRef } from './interfaces/layer-ref';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LayerComponent implements AfterViewInit {
|
|
6
|
+
private readonly layerRef;
|
|
7
|
+
private readonly config;
|
|
8
|
+
private readonly cd;
|
|
9
|
+
private readonly contentViewRef;
|
|
10
|
+
childComponentRef?: ComponentRef<any>;
|
|
11
|
+
childComponentType: Type<any>;
|
|
12
|
+
get title(): string;
|
|
13
|
+
get icon(): string | undefined;
|
|
14
|
+
constructor(layerRef: LayerRef, config: LayerConfig, cd: ChangeDetectorRef);
|
|
15
|
+
ngAfterViewInit(): void;
|
|
16
|
+
private initChildComponent;
|
|
17
|
+
close(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayerComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerComponent, "moz-layer", never, {}, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./layer.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
5
|
+
export declare class LayerModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayerModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LayerModule, [typeof i1.LayerComponent], [typeof i2.CommonModule, typeof i3.IconModule], [typeof i1.LayerComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LayerModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ApplicationRef, ComponentFactoryResolver, Injector, Type } from '@angular/core';
|
|
2
|
+
import { LayerRefModel } from './classes/layer-ref';
|
|
3
|
+
import { LayerConfig } from './interfaces';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LayerService {
|
|
6
|
+
private readonly componentFactoryResolver;
|
|
7
|
+
private readonly injector;
|
|
8
|
+
private readonly applicationRef;
|
|
9
|
+
private readonly document;
|
|
10
|
+
constructor(componentFactoryResolver: ComponentFactoryResolver, injector: Injector, applicationRef: ApplicationRef, document: Document);
|
|
11
|
+
open<T, K>(component: Type<T>, config?: LayerConfig<K>): LayerRefModel<unknown>;
|
|
12
|
+
private createLayer;
|
|
13
|
+
private initDialogRefAfterClosedObserver;
|
|
14
|
+
private createComponentRef;
|
|
15
|
+
private appendLayerComponentToBody;
|
|
16
|
+
private applyChildComponent;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayerService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayerService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ListboxItem } from './model/listbox-item';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ListboxComponent implements OnInit {
|
|
5
|
+
listboxItems: ListboxItem[];
|
|
6
|
+
multiple: boolean;
|
|
7
|
+
isOpen: boolean;
|
|
8
|
+
selectedItems: ListboxItem[] | ListboxItem | undefined;
|
|
9
|
+
customMaxWidth?: string;
|
|
10
|
+
itemsSelected: EventEmitter<ListboxItem | ListboxItem[]>;
|
|
11
|
+
uuid: number;
|
|
12
|
+
selectedItem?: string;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
selectedItemEvent(listboxItem: ListboxItem): void;
|
|
15
|
+
isChecked(listboxItem: ListboxItem): boolean;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListboxComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListboxComponent, "moz-listbox", never, { "listboxItems": "listboxItems"; "multiple": "multiple"; "isOpen": "isOpen"; "selectedItems": "selectedItems"; "customMaxWidth": "customMaxWidth"; }, { "itemsSelected": "itemsSelected"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./listbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../icon/icon.module";
|
|
6
|
+
export declare class ListboxModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListboxModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ListboxModule, [typeof i1.ListboxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.IconModule], [typeof i1.ListboxComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ListboxModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { LoaderSize, LoaderTheme } from './loader';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LoaderComponent {
|
|
5
|
+
readonly cd: ChangeDetectorRef;
|
|
6
|
+
size: LoaderSize;
|
|
7
|
+
theme: LoaderTheme;
|
|
8
|
+
isOverlay: boolean;
|
|
9
|
+
hideOverlay: boolean;
|
|
10
|
+
text: string;
|
|
11
|
+
get viewText(): boolean;
|
|
12
|
+
get overlayCssClasses(): {
|
|
13
|
+
'mc-overlay-loader': boolean;
|
|
14
|
+
'is-visible': boolean;
|
|
15
|
+
};
|
|
16
|
+
get loaderCssClasses(): {
|
|
17
|
+
[x: string]: boolean;
|
|
18
|
+
'mc-loader': boolean;
|
|
19
|
+
};
|
|
20
|
+
get viewBoxSize(): string;
|
|
21
|
+
get radius(): number;
|
|
22
|
+
constructor(cd: ChangeDetectorRef);
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "moz-loader", never, { "size": "size"; "theme": "theme"; }, {}, never, never, false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type LoaderSize = 's' | 'm' | 'l';
|
|
2
|
+
export type LoaderTheme = 'primary' | 'dark' | 'light';
|
|
3
|
+
export declare const CIRCLE_VIEW_BOX_SIZES: {
|
|
4
|
+
s: string;
|
|
5
|
+
m: string;
|
|
6
|
+
l: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const CIRCLE_RADIUSES: {
|
|
9
|
+
s: number;
|
|
10
|
+
m: number;
|
|
11
|
+
l: number;
|
|
12
|
+
};
|
|
13
|
+
export type LoaderConfig = {
|
|
14
|
+
size: LoaderSize;
|
|
15
|
+
text: string;
|
|
16
|
+
};
|