@impartner/design-components 1.1.3 → 2.0.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/README.md +5 -4
- package/constants/fontawesome-icons.d.ts +2 -2
- package/{esm2020 → esm2022}/constants/fontawesome-icons.mjs +1 -1
- package/{esm2020 → esm2022}/lib/alert/alert.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/alert/alert.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/avatar/avatar.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/avatar/avatar.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/avatar-group/avatar-group.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/avatar-group/avatar-group.module.mjs +5 -5
- package/esm2022/lib/backdrop/backdrop.component.mjs +52 -0
- package/{esm2020 → esm2022}/lib/backdrop/backdrop.module.mjs +6 -6
- package/esm2022/lib/badge/badge.component.mjs +105 -0
- package/{esm2020 → esm2022}/lib/badge/badge.module.mjs +6 -6
- package/{esm2020 → esm2022}/lib/badge/types/badge-size.mjs +1 -1
- package/{esm2020 → esm2022}/lib/branding/branded.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/branding/branding.module.mjs +6 -6
- package/{esm2020 → esm2022}/lib/breadcrumb/breadcrumb-item.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/breadcrumb/breadcrumb.component.mjs +5 -5
- package/{esm2020 → esm2022}/lib/breadcrumb/breadcrumb.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/button/button.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/button/button.module.mjs +6 -6
- package/{esm2020 → esm2022}/lib/button-group/button-group.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/button-group/button-group.module.mjs +6 -6
- package/{esm2020 → esm2022}/lib/card-heading/card-heading.component.mjs +5 -5
- package/{esm2020 → esm2022}/lib/card-heading/card-heading.module.mjs +6 -6
- package/esm2022/lib/data-card/data-card.component.mjs +123 -0
- package/esm2022/lib/data-card/data-card.module.mjs +21 -0
- package/{esm2020 → esm2022}/lib/design-components.module.mjs +61 -61
- package/{esm2020 → esm2022}/lib/dropdown/components/dropdown-item/dropdown-item.component.mjs +4 -4
- package/esm2022/lib/dropdown/dropdown.component.mjs +143 -0
- package/{esm2020 → esm2022}/lib/dropdown/dropdown.module.mjs +6 -6
- package/{esm2020 → esm2022}/lib/file-upload/directives/file-drop.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/file-upload/file-upload.component.mjs +30 -30
- package/{esm2020 → esm2022}/lib/file-upload/file-upload.module.mjs +8 -8
- package/{esm2020 → esm2022}/lib/file-upload/pipes/human-readable-byte-size.pipe.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/controls/checkbox/checkbox.component.mjs +49 -49
- package/{esm2020 → esm2022}/lib/form-field/controls/checkbox/checkbox.module.mjs +5 -5
- package/esm2022/lib/form-field/controls/input/input.directive.mjs +233 -0
- package/esm2022/lib/form-field/controls/radio/radio-button/radio-button.component.mjs +260 -0
- package/esm2022/lib/form-field/controls/radio/radio-group/radio-group.directive.mjs +289 -0
- package/{esm2020 → esm2022}/lib/form-field/controls/radio/radio.module.mjs +5 -5
- package/esm2022/lib/form-field/controls/select/option/select-option.component.mjs +139 -0
- package/esm2022/lib/form-field/controls/select/select-model.mjs +150 -0
- package/esm2022/lib/form-field/controls/select/select.component.mjs +522 -0
- package/{esm2020 → esm2022}/lib/form-field/controls/select/select.module.mjs +9 -9
- package/{esm2020 → esm2022}/lib/form-field/controls/shared/toggle/components/toggle-input/toggle-input.component.mjs +4 -4
- package/esm2022/lib/form-field/controls/shared/toggle/toggle.component.mjs +96 -0
- package/{esm2020 → esm2022}/lib/form-field/controls/shared/toggle/toggle.module.mjs +6 -6
- package/{esm2020 → esm2022}/lib/form-field/directives/corner-hint.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/directives/error.directive.mjs +4 -4
- package/esm2022/lib/form-field/directives/form-root.directive.mjs +91 -0
- package/{esm2020 → esm2022}/lib/form-field/directives/hint.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/directives/label.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/directives/prefix.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/directives/suffix.directive.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/form-field.component.mjs +11 -11
- package/{esm2020 → esm2022}/lib/form-field/impdc-forms.module.mjs +28 -28
- package/{esm2020 → esm2022}/lib/form-field/services/error-state-matcher.service.mjs +7 -7
- package/{esm2020 → esm2022}/lib/form-field/services/unique-selection-dispatcher.service.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/shared/disabled.mixin.mjs +5 -5
- package/esm2022/lib/form-field/shared/error-state.mixin.mjs +24 -0
- package/{esm2020 → esm2022}/lib/form-field/shared/form-field-control.mjs +4 -4
- package/{esm2020 → esm2022}/lib/form-field/shared/tab-index.mixin.mjs +6 -6
- package/{esm2020 → esm2022}/lib/icon/icon.component.mjs +5 -5
- package/{esm2020 → esm2022}/lib/icon/icon.module.mjs +6 -6
- package/esm2022/lib/modal/modal.component.mjs +260 -0
- package/{esm2020 → esm2022}/lib/modal/modal.module.mjs +14 -14
- package/{esm2020 → esm2022}/lib/modal/types/modal-component-sizes.mjs +1 -1
- package/{esm2020 → esm2022}/lib/modal/types/modal-theme.mjs +1 -1
- package/esm2022/lib/pagination/pagination.component.mjs +176 -0
- package/esm2022/lib/pagination/pagination.module.mjs +41 -0
- package/{esm2020 → esm2022}/lib/progress-bar/progress-bar.component.mjs +5 -5
- package/{esm2020 → esm2022}/lib/progress-bar/progress-bar.module.mjs +5 -5
- package/esm2022/lib/scrollable/scrollable.component.mjs +186 -0
- package/{esm2020 → esm2022}/lib/scrollable/scrollable.module.mjs +6 -6
- package/esm2022/lib/select-icon/select-icon.component.mjs +308 -0
- package/{esm2020 → esm2022}/lib/select-icon/select-icon.module.mjs +13 -13
- package/{esm2020 → esm2022}/lib/size-detection/directive/size-detector.directive.mjs +5 -5
- package/{esm2020 → esm2022}/lib/size-detection/size-detection.module.mjs +5 -5
- package/{esm2020 → esm2022}/lib/spinner/spinner.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/spinner/spinner.module.mjs +5 -5
- package/esm2022/lib/table/components/bulk-actions/bulk-actions.component.mjs +11 -0
- package/esm2022/lib/table/components/column-heading/column-heading.component.mjs +38 -0
- package/esm2022/lib/table/components/index.mjs +4 -0
- package/esm2022/lib/table/components/row-actions/row-actions.component.mjs +61 -0
- package/esm2022/lib/table/constants/index.mjs +3 -0
- package/esm2022/lib/table/constants/public-table.constants.mjs +2 -0
- package/esm2022/lib/table/constants/table.constants.mjs +24 -0
- package/esm2022/lib/table/containers/index.mjs +2 -0
- package/esm2022/lib/table/containers/table.component.mjs +403 -0
- package/esm2022/lib/table/directives/index.mjs +3 -0
- package/esm2022/lib/table/directives/table-inject-component.directive.mjs +46 -0
- package/esm2022/lib/table/directives/table.directive.mjs +35 -0
- package/esm2022/lib/table/enumerations/index.mjs +2 -0
- package/esm2022/lib/table/enumerations/table-column-type.mjs +21 -0
- package/esm2022/lib/table/helpers/index.mjs +2 -0
- package/esm2022/lib/table/helpers/table-theme.helper.mjs +31 -0
- package/esm2022/lib/table/index.mjs +8 -0
- package/esm2022/lib/table/interfaces/cell-renderer.interface.mjs +2 -0
- package/esm2022/lib/table/interfaces/custom-cell-renderer-components.type.mjs +2 -0
- package/esm2022/lib/table/interfaces/index.mjs +11 -0
- package/esm2022/lib/table/interfaces/sort-by-payload.interface.mjs +2 -0
- package/esm2022/lib/table/interfaces/table-cell-option.interface.mjs +2 -0
- package/esm2022/lib/table/interfaces/table-column-defs.type.mjs +2 -0
- package/esm2022/lib/table/interfaces/table-event-payload.interface.mjs +2 -0
- package/esm2022/lib/table/interfaces/table-row-action-payload.interface.mjs +2 -0
- package/esm2022/lib/table/interfaces/table-row-action.interface.mjs +2 -0
- package/esm2022/lib/table/interfaces/table-row-item.interface.mjs +2 -0
- package/esm2022/lib/table/table.module.mjs +96 -0
- package/{esm2020 → esm2022}/lib/text-highlight/text-highlight.component.mjs +6 -6
- package/{esm2020 → esm2022}/lib/text-highlight/text-highlight.module.mjs +6 -6
- package/{esm2020 → esm2022}/services/index.mjs +1 -1
- package/esm2022/services/interaction.service.mjs +88 -0
- package/{esm2020 → esm2022}/types/component-theme.mjs +1 -1
- package/{fesm2020 → fesm2022}/impartner-design-components.mjs +3768 -2988
- package/fesm2022/impartner-design-components.mjs.map +1 -0
- package/lib/alert/alert.component.d.ts +1 -1
- package/lib/alert/theme/alert-theme.d.ts +1 -1
- package/lib/avatar/avatar.component.d.ts +1 -1
- package/lib/avatar-group/avatar-group.component.d.ts +1 -1
- package/lib/backdrop/backdrop.component.d.ts +9 -6
- package/lib/badge/badge.component.d.ts +3 -2
- package/lib/badge/types/badge-icon.d.ts +1 -1
- package/lib/badge/types/badge-size.d.ts +1 -1
- package/lib/branding/branded.directive.d.ts +1 -1
- package/lib/breadcrumb/breadcrumb-item.component.d.ts +1 -1
- package/lib/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/lib/button/button.component.d.ts +1 -1
- package/lib/button/themes/button-theme.d.ts +1 -1
- package/lib/button-group/button-group.component.d.ts +1 -1
- package/lib/card-heading/card-heading.component.d.ts +1 -1
- package/lib/data-card/data-card.component.d.ts +14 -18
- package/lib/data-card/data-card.module.d.ts +2 -1
- package/lib/dropdown/components/dropdown-item/dropdown-item.component.d.ts +1 -1
- package/lib/dropdown/dropdown.component.d.ts +6 -5
- package/lib/dropdown/types/dropdown-position.d.ts +1 -1
- package/lib/file-upload/directives/file-drop.directive.d.ts +1 -1
- package/lib/file-upload/file-upload.component.d.ts +1 -1
- package/lib/form-field/controls/checkbox/checkbox.component.d.ts +1 -1
- package/lib/form-field/controls/input/input.directive.d.ts +1 -1
- package/lib/form-field/controls/radio/radio-button/radio-button.component.d.ts +1 -1
- package/lib/form-field/controls/radio/radio-group/radio-group.directive.d.ts +1 -1
- package/lib/form-field/controls/select/option/select-option.component.d.ts +4 -4
- package/lib/form-field/controls/select/select.component.d.ts +1 -1
- package/lib/form-field/controls/shared/toggle/components/toggle-input/toggle-input.component.d.ts +1 -1
- package/lib/form-field/controls/shared/toggle/toggle.component.d.ts +1 -1
- package/lib/form-field/directives/corner-hint.directive.d.ts +1 -1
- package/lib/form-field/directives/error.directive.d.ts +1 -1
- package/lib/form-field/directives/form-root.directive.d.ts +2 -2
- package/lib/form-field/directives/hint.directive.d.ts +1 -1
- package/lib/form-field/directives/label.directive.d.ts +1 -1
- package/lib/form-field/directives/prefix.directive.d.ts +1 -1
- package/lib/form-field/directives/suffix.directive.d.ts +1 -1
- package/lib/form-field/form-field.component.d.ts +1 -1
- package/lib/form-field/services/unique-selection-dispatcher.service.d.ts +1 -1
- package/lib/form-field/shared/constructors.type.d.ts +2 -2
- package/lib/form-field/shared/disabled.mixin.d.ts +1 -1
- package/lib/form-field/shared/error-state.mixin.d.ts +1 -1
- package/lib/form-field/shared/form-field-control.d.ts +1 -1
- package/lib/form-field/shared/tab-index.mixin.d.ts +1 -1
- package/lib/icon/icon.component.d.ts +1 -1
- package/lib/modal/modal.component.d.ts +17 -10
- package/lib/modal/types/modal-component-sizes.d.ts +1 -1
- package/lib/modal/types/modal-theme.d.ts +1 -1
- package/lib/pagination/pagination.component.d.ts +18 -3
- package/lib/pagination/pagination.module.d.ts +2 -1
- package/lib/progress-bar/progress-bar.component.d.ts +1 -1
- package/lib/scrollable/scrollable.component.d.ts +1 -1
- package/lib/select-icon/select-icon.component.d.ts +1 -1
- package/lib/size-detection/directive/size-detector.directive.d.ts +1 -1
- package/lib/spinner/spinner.component.d.ts +1 -1
- package/lib/table/components/bulk-actions/bulk-actions.component.d.ts +5 -0
- package/lib/table/components/column-heading/column-heading.component.d.ts +14 -0
- package/lib/table/components/index.d.ts +3 -0
- package/lib/table/components/row-actions/row-actions.component.d.ts +21 -0
- package/lib/table/constants/index.d.ts +2 -0
- package/lib/table/constants/public-table.constants.d.ts +1 -0
- package/lib/table/constants/table.constants.d.ts +10 -0
- package/lib/table/containers/index.d.ts +1 -0
- package/lib/table/containers/table.component.d.ts +133 -0
- package/lib/table/directives/index.d.ts +2 -0
- package/lib/table/directives/table-inject-component.directive.d.ts +16 -0
- package/lib/table/directives/table.directive.d.ts +15 -0
- package/lib/table/enumerations/index.d.ts +1 -0
- package/lib/table/enumerations/table-column-type.d.ts +19 -0
- package/lib/table/helpers/index.d.ts +1 -0
- package/lib/table/helpers/table-theme.helper.d.ts +7 -0
- package/lib/table/index.d.ts +7 -2
- package/lib/table/interfaces/cell-renderer.interface.d.ts +6 -0
- package/lib/table/interfaces/custom-cell-renderer-components.type.d.ts +3 -0
- package/lib/table/interfaces/index.d.ts +10 -0
- package/lib/table/interfaces/sort-by-payload.interface.d.ts +5 -0
- package/lib/table/interfaces/table-cell-option.interface.d.ts +4 -0
- package/lib/table/interfaces/table-column-defs.type.d.ts +29 -0
- package/lib/table/interfaces/table-event-payload.interface.d.ts +6 -0
- package/lib/table/interfaces/table-row-action-payload.interface.d.ts +6 -0
- package/lib/table/interfaces/table-row-action.interface.d.ts +9 -0
- package/lib/table/interfaces/table-row-item.interface.d.ts +9 -0
- package/lib/table/table.module.d.ts +17 -3
- package/lib/text-highlight/text-highlight.component.d.ts +1 -1
- package/package.json +15 -20
- package/services/index.d.ts +1 -1
- package/services/interaction.service.d.ts +20 -10
- package/types/component-size.d.ts +2 -2
- package/types/component-theme.d.ts +1 -1
- package/utilities/boolean-props.d.ts +1 -1
- package/utilities/number-props.d.ts +1 -1
- package/esm2020/lib/backdrop/backdrop.component.mjs +0 -40
- package/esm2020/lib/badge/badge.component.mjs +0 -99
- package/esm2020/lib/data-card/data-card.component.mjs +0 -128
- package/esm2020/lib/data-card/data-card.module.mjs +0 -20
- package/esm2020/lib/dropdown/dropdown.component.mjs +0 -142
- package/esm2020/lib/form-field/controls/input/input.directive.mjs +0 -233
- package/esm2020/lib/form-field/controls/radio/radio-button/radio-button.component.mjs +0 -260
- package/esm2020/lib/form-field/controls/radio/radio-group/radio-group.directive.mjs +0 -289
- package/esm2020/lib/form-field/controls/select/option/select-option.component.mjs +0 -139
- package/esm2020/lib/form-field/controls/select/select-model.mjs +0 -150
- package/esm2020/lib/form-field/controls/select/select.component.mjs +0 -522
- package/esm2020/lib/form-field/controls/shared/toggle/toggle.component.mjs +0 -96
- package/esm2020/lib/form-field/directives/form-root.directive.mjs +0 -91
- package/esm2020/lib/form-field/shared/error-state.mixin.mjs +0 -24
- package/esm2020/lib/modal/modal.component.mjs +0 -187
- package/esm2020/lib/pagination/pagination.component.mjs +0 -145
- package/esm2020/lib/pagination/pagination.module.mjs +0 -37
- package/esm2020/lib/scrollable/scrollable.component.mjs +0 -186
- package/esm2020/lib/select-icon/select-icon.component.mjs +0 -308
- package/esm2020/lib/table/index.mjs +0 -3
- package/esm2020/lib/table/table.component.mjs +0 -33
- package/esm2020/lib/table/table.module.mjs +0 -19
- package/esm2020/services/interaction.service.mjs +0 -81
- package/fesm2015/impartner-design-components.mjs +0 -8595
- package/fesm2015/impartner-design-components.mjs.map +0 -1
- package/fesm2020/impartner-design-components.mjs.map +0 -1
- package/lib/table/table.component.d.ts +0 -15
- /package/{esm2020 → esm2022}/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/impartner-design-components.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/alert/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/alert/theme/alert-theme.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/alert/theme/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/avatar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/avatar-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/backdrop/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/badge/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/badge/types/badge-icon.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/badge/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/branding/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/breadcrumb/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/button/themes/button-theme.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/button/themes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/button-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/card-heading/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/data-card/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/dropdown/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/dropdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/dropdown/types/dropdown-position.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/dropdown/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/file-upload/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/file-upload/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/file-upload/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/checkbox/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/radio/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/radio/injection-tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/radio/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/radio/interfaces/radio-button.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/radio/interfaces/radio-change-event.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/radio/interfaces/radio-group.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/select/option/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/select/option-parent.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/shared/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/shared/toggle/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/controls/shared/toggle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/form-field-errors.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/impdc-forms.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/shared/constructors.type.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/form-field/shared/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/modal/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/modal/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pagination/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/progress-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/scrollable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/select-icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/size-detection/directive/element-size.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/size-detection/directive/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/size-detection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/spinner/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/text-highlight/index.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/types/component-size.mjs +0 -0
- /package/{esm2020 → esm2022}/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/utilities/boolean-props.mjs +0 -0
- /package/{esm2020 → esm2022}/utilities/dc.mjs +0 -0
- /package/{esm2020 → esm2022}/utilities/index.mjs +0 -0
- /package/{esm2020 → esm2022}/utilities/lc.mjs +0 -0
- /package/{esm2020 → esm2022}/utilities/number-props.mjs +0 -0
- /package/{esm2020 → esm2022}/utilities/sanitize.mjs +0 -0
|
@@ -42,5 +42,5 @@ export declare class AlertComponent {
|
|
|
42
42
|
get themeIconName(): string;
|
|
43
43
|
closeAlert(): void;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "impdc-alert, [impdc-alert]", never, { "theme": "theme"; "show": "show"; "headingText": "headingText"; "bodyText": "bodyText"; "inline": "inline"; "hideIcon": "hideIcon"; "dismissible": "dismissible"; }, { "dismiss": "dismiss"; }, never, ["[icon]", "[heading]", "*", "[action]"], false>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "impdc-alert, [impdc-alert]", never, { "theme": { "alias": "theme"; "required": false; }; "show": { "alias": "show"; "required": false; }; "headingText": { "alias": "headingText"; "required": false; }; "bodyText": { "alias": "bodyText"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["[icon]", "[heading]", "*", "[action]"], false, never>;
|
|
46
46
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type AlertTheme = 'warning' | 'danger' | 'info' | 'success';
|
|
@@ -24,5 +24,5 @@ export declare class AvatarComponent {
|
|
|
24
24
|
size: PrimaryComponentSizes;
|
|
25
25
|
get avatarHasImg(): boolean;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "impdc-avatar", never, { "imgSrc": "imgSrc"; "initials": "initials"; "status": "status"; "size": "size"; }, {}, never, never, false>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "impdc-avatar", never, { "imgSrc": { "alias": "imgSrc"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "status": { "alias": "status"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
28
|
}
|
|
@@ -6,5 +6,5 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class AvatarGroupComponent {
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupComponent, "impdc-avatar-group", never, {}, {}, never, ["impdc-avatar"], false>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupComponent, "impdc-avatar-group", never, {}, {}, never, ["impdc-avatar"], false, never>;
|
|
10
10
|
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { InteractionService } from '../../services';
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { IBackdropComponent, InteractionService } from '../../services';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* The `BackdropComponent` (`<impdc-backdrop`) is a component to mask the background when an interaction is taking place.
|
|
6
6
|
* This component needs to be added to the body of the host application if a backdrop is desired.
|
|
7
7
|
* To use, import `BackdropModule` or another module that imports and exports that module from `@impartner/design-components`.
|
|
8
8
|
*/
|
|
9
|
-
export declare class BackdropComponent implements OnInit, OnDestroy {
|
|
10
|
-
private
|
|
9
|
+
export declare class BackdropComponent implements OnInit, OnDestroy, IBackdropComponent {
|
|
10
|
+
private readonly _interactionService;
|
|
11
|
+
private readonly _changeDetector;
|
|
12
|
+
private readonly _ngDestroy;
|
|
11
13
|
private _valid;
|
|
12
|
-
|
|
14
|
+
private _showBackdrop;
|
|
15
|
+
constructor(_interactionService: InteractionService, _changeDetector: ChangeDetectorRef);
|
|
13
16
|
get valid(): boolean;
|
|
14
17
|
get show(): boolean;
|
|
15
18
|
ngOnInit(): void;
|
|
@@ -17,5 +20,5 @@ export declare class BackdropComponent implements OnInit, OnDestroy {
|
|
|
17
20
|
invalidate(): void;
|
|
18
21
|
validate(): void;
|
|
19
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackdropComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BackdropComponent, "impdc-backdrop", never, {}, {}, never, never, false>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BackdropComponent, "impdc-backdrop", never, {}, {}, never, never, false, never>;
|
|
21
24
|
}
|
|
@@ -38,11 +38,12 @@ export declare class BadgeComponent {
|
|
|
38
38
|
/**
|
|
39
39
|
* An event emitted when the component is dismissed.
|
|
40
40
|
*/
|
|
41
|
-
dismiss: EventEmitter<
|
|
41
|
+
dismiss: EventEmitter<Event | MouseEvent>;
|
|
42
42
|
private get classBadge();
|
|
43
43
|
private get classBadgeRounded();
|
|
44
|
+
private get classNoPadding();
|
|
44
45
|
private _dismissed;
|
|
45
46
|
handleDismiss(event: MouseEvent | Event): void;
|
|
46
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "impdc-badge, [impdc-badge]", never, { "text": "text"; "icon": "icon"; "theme": "theme"; "size": "size"; "hideBg": "hideBg"; "rounded": "rounded"; "dismissable": "dismissable"; }, { "dismiss": "dismiss"; }, never, never, false>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "impdc-badge, [impdc-badge]", never, { "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hideBg": { "alias": "hideBg"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "dismissable": { "alias": "dismissable"; "required": false; }; }, { "dismiss": "dismiss"; }, never, never, false, never>;
|
|
48
49
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type BadgeIcon = '' | 'arrow-up' | 'arrow-down' | 'dot';
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class BrandedDirective {
|
|
3
3
|
private brandedClass;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrandedDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BrandedDirective, "[impdcBranded]", never, {}, {}, never, never, false>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BrandedDirective, "[impdcBranded]", never, {}, {}, never, never, false, never>;
|
|
6
6
|
}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class BreadcrumbItemComponent {
|
|
4
4
|
contentTemplate: TemplateRef<never>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemComponent, "impdc-breadcrumb-item", never, {}, {}, never, ["*"], false>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemComponent, "impdc-breadcrumb-item", never, {}, {}, never, ["*"], false, never>;
|
|
7
7
|
}
|
|
@@ -17,5 +17,5 @@ export declare class BreadcrumbComponent implements AfterViewInit {
|
|
|
17
17
|
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
18
18
|
ngAfterViewInit(): void;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "impdc-breadcrumb, div[impdc-breadcrumb]", never, { "label": "label"; }, {}, ["breadcrumbItems"], never, false>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "impdc-breadcrumb, div[impdc-breadcrumb]", never, { "label": { "alias": "label"; "required": false; }; }, {}, ["breadcrumbItems"], never, false, never>;
|
|
21
21
|
}
|
|
@@ -43,5 +43,5 @@ export declare class ButtonComponent {
|
|
|
43
43
|
private get attrTitle();
|
|
44
44
|
private get attrAriaLabel();
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[impdcButton]", never, { "type": "type"; "theme": "theme"; "text": "text"; "disabled": "disabled"; "titleText": "titleText"; "ariaLabel": "ariaLabel"; }, {}, never, ["*", "[right]"], false>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[impdcButton]", never, { "type": { "alias": "type"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "text": { "alias": "text"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "titleText": { "alias": "titleText"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*", "[right]"], false, never>;
|
|
47
47
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type ButtonTheme = 'primary' | 'secondary' | 'danger' | 'secondary-danger' | 'custom' | 'close';
|
|
@@ -18,5 +18,5 @@ export declare class ButtonGroupComponent {
|
|
|
18
18
|
private attrRole;
|
|
19
19
|
private get attrAriaLabel();
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "impdc-button-group, [impdc-button-group]", never, { "vertical": "vertical"; "ariaLabel": "ariaLabel"; }, {}, never, ["*"], false>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "impdc-button-group, [impdc-button-group]", never, { "vertical": { "alias": "vertical"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
22
22
|
}
|
|
@@ -14,5 +14,5 @@ export declare class CardHeadingComponent {
|
|
|
14
14
|
description: string;
|
|
15
15
|
constructor();
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeadingComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeadingComponent, "impdc-card-heading, div[impdc-card-heading]", never, { "title": "title"; "description": "description"; }, {}, never, ["impdc-avatar", "button[impdcButton]", "*"], false>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeadingComponent, "impdc-card-heading, div[impdc-card-heading]", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, ["impdc-avatar", "button[impdcButton]", "*"], false, never>;
|
|
18
18
|
}
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
+
import { ComponentTheme } from '../../types';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* The `CardHeadingComponent` (`<impdc-data-card` or `<any impdc-data-card`) is to display data snapshots with support for
|
|
5
6
|
* previous values and differences.
|
|
7
|
+
*
|
|
6
8
|
* To use, import `DataCardModule` or another module that imports and exports that module from `@impartner/design-components`.
|
|
9
|
+
*
|
|
10
|
+
* An icon may be displayed in the card via Angular content projection and the `icon` attribute.
|
|
7
11
|
*/
|
|
8
12
|
export declare class DataCardComponent {
|
|
13
|
+
protected readonly BadgeTheme: typeof ComponentTheme;
|
|
14
|
+
protected iconContentElementRef: ElementRef<HTMLElement>;
|
|
9
15
|
/**
|
|
10
16
|
* The subject text for the Data Card.
|
|
11
17
|
*/
|
|
@@ -16,6 +22,7 @@ export declare class DataCardComponent {
|
|
|
16
22
|
current: string;
|
|
17
23
|
/**
|
|
18
24
|
* The previous data value. Any number/currency format is supported.
|
|
25
|
+
* Only displayed when an icon is not provided via Angular content projection.
|
|
19
26
|
*/
|
|
20
27
|
previous: string;
|
|
21
28
|
/**
|
|
@@ -31,18 +38,6 @@ export declare class DataCardComponent {
|
|
|
31
38
|
* When stacking multiple Data Card elements together, it's common to combine their borders.
|
|
32
39
|
*/
|
|
33
40
|
sharedBorders: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Makes the title stand out more than it does by default.
|
|
36
|
-
*/
|
|
37
|
-
titleAttention: boolean;
|
|
38
|
-
/**
|
|
39
|
-
* Determines if the difference value will be wrapped in a `rounded-pill`.
|
|
40
|
-
*/
|
|
41
|
-
differencePill: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Changes the text color for the current value.
|
|
44
|
-
*/
|
|
45
|
-
currentColor: string;
|
|
46
41
|
/**
|
|
47
42
|
* Changes the color of the icon.
|
|
48
43
|
*/
|
|
@@ -54,19 +49,20 @@ export declare class DataCardComponent {
|
|
|
54
49
|
/**
|
|
55
50
|
* Emitted when the link text is clicked.
|
|
56
51
|
*/
|
|
57
|
-
linkClicked: EventEmitter<
|
|
52
|
+
linkClicked: EventEmitter<Event | MouseEvent>;
|
|
58
53
|
/**
|
|
59
54
|
* Emitted when the corner content is clicked.
|
|
60
55
|
*/
|
|
61
|
-
cornerClicked: EventEmitter<
|
|
56
|
+
cornerClicked: EventEmitter<Event | MouseEvent>;
|
|
62
57
|
private get classDataCard();
|
|
63
58
|
private get classDataCardSharedBorders();
|
|
64
59
|
get differenceNumber(): number;
|
|
65
60
|
get differenceNegative(): boolean;
|
|
66
61
|
get differencePositive(): boolean;
|
|
67
62
|
get differenceDisplay(): string;
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
protected get hasIcon(): boolean;
|
|
64
|
+
protected handleLinkClick(event: MouseEvent | Event): void;
|
|
65
|
+
protected handleCornerClick(event: MouseEvent | Event): void;
|
|
70
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataCardComponent, never>;
|
|
71
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DataCardComponent, "impdc-data-card, [impdc-data-card]", never, { "title": "title"; "current": "current"; "previous": "previous"; "difference": "difference"; "linkText": "linkText"; "
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataCardComponent, "impdc-data-card, [impdc-data-card]", never, { "title": { "alias": "title"; "required": false; }; "current": { "alias": "current"; "required": false; }; "previous": { "alias": "previous"; "required": false; }; "difference": { "alias": "difference"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "sharedBorders": { "alias": "sharedBorders"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "iconBgColor": { "alias": "iconBgColor"; "required": false; }; }, { "linkClicked": "linkClicked"; "cornerClicked": "cornerClicked"; }, never, ["[icon]", "*", "[corner]", "[footer]"], false, never>;
|
|
72
68
|
}
|
|
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./data-card.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "../icon/icon.module";
|
|
5
|
+
import * as i4 from "../badge/badge.module";
|
|
5
6
|
export declare class DataCardModule {
|
|
6
7
|
constructor();
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataCardModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DataCardModule, [typeof i1.DataCardComponent], [typeof i2.CommonModule, typeof i3.IconModule], [typeof i3.IconModule, typeof i1.DataCardComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DataCardModule, [typeof i1.DataCardComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.BadgeModule], [typeof i3.IconModule, typeof i1.DataCardComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<DataCardModule>;
|
|
10
11
|
}
|
|
@@ -7,5 +7,5 @@ export declare class DropdownItemComponent {
|
|
|
7
7
|
divider: boolean;
|
|
8
8
|
template: TemplateRef<never>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent, "impdc-dropdown-item", never, { "divider": "divider"; }, {}, never, ["*"], false>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent, "impdc-dropdown-item", never, { "divider": { "alias": "divider"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
11
11
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, QueryList, OnInit, OnDestroy } from '@angular/core';
|
|
2
|
-
import { InteractionService } from '../../services';
|
|
2
|
+
import { IInteractableComponent, InteractionService } from '../../services';
|
|
3
3
|
import { ButtonTheme } from '../button';
|
|
4
4
|
import { DropdownItemComponent } from './components';
|
|
5
5
|
import { DropdownPosition } from './types';
|
|
@@ -10,9 +10,10 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
* To use, import `DropdownModule` or another module that imports and exports that module from `@impartner/design-components`.
|
|
11
11
|
* `DropdownModule` imports and exports [ButtonModule](./?path=/docs/design-components-button).
|
|
12
12
|
*/
|
|
13
|
-
export declare class DropdownComponent implements OnInit, OnDestroy {
|
|
13
|
+
export declare class DropdownComponent implements OnInit, OnDestroy, IInteractableComponent {
|
|
14
14
|
private _interactionService;
|
|
15
|
-
private _interactableId;
|
|
15
|
+
private readonly _interactableId;
|
|
16
|
+
private _initialized;
|
|
16
17
|
/**
|
|
17
18
|
* Whether or not the dropdown list is showing.
|
|
18
19
|
*/
|
|
@@ -53,7 +54,7 @@ export declare class DropdownComponent implements OnInit, OnDestroy {
|
|
|
53
54
|
handleHostClick($event: MouseEvent): void;
|
|
54
55
|
handleDocumentClick(): void;
|
|
55
56
|
constructor(_interactionService: InteractionService);
|
|
56
|
-
get interactableId():
|
|
57
|
+
get interactableId(): string;
|
|
57
58
|
get valid(): boolean;
|
|
58
59
|
get shown(): boolean;
|
|
59
60
|
ngOnInit(): void;
|
|
@@ -62,5 +63,5 @@ export declare class DropdownComponent implements OnInit, OnDestroy {
|
|
|
62
63
|
handleButtonClick(event: MouseEvent): void;
|
|
63
64
|
hide(): void;
|
|
64
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "impdc-dropdown, [impdc-dropdown]",
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "impdc-dropdown, [impdc-dropdown]", ["impdcDropdown"], { "show": { "alias": "show"; "required": false; }; "buttonTheme": { "alias": "buttonTheme"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "position": { "alias": "position"; "required": false; }; "split": { "alias": "split"; "required": false; }; }, { "toggle": "toggle"; "buttonClick": "buttonClick"; }, ["items"], ["*", "[toggle]"], false, never>;
|
|
66
67
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type DropdownPosition = 'down' | 'right' | 'left' | 'up';
|
|
@@ -7,5 +7,5 @@ export declare class FileDropDirective {
|
|
|
7
7
|
onDragLeave(event: DragEvent): void;
|
|
8
8
|
OnDrop(event: DragEvent): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileDropDirective, never>;
|
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FileDropDirective, "[impdcFileDrop]", never, {}, { "filesDropped": "filesDropped"; }, never, never, false>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FileDropDirective, "[impdcFileDrop]", never, {}, { "filesDropped": "filesDropped"; }, never, never, false, never>;
|
|
11
11
|
}
|
|
@@ -100,6 +100,6 @@ export declare class FileUploadComponent extends _FileUploadComponentBase implem
|
|
|
100
100
|
private _getExtensions;
|
|
101
101
|
private _acceptedFileType;
|
|
102
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, [null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; self: true; }]>;
|
|
103
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "impdc-file-upload, [impdc-file-upload]", never, { "disabled": "disabled"; "tabIndex": "tabIndex"; "multiple": "multiple"; "uploadText": "uploadText"; "accept": "accept"; "errorStateMatcher": "errorStateMatcher"; "value": "value"; "id": "id"; "required": "required"; }, {}, never, never, false>;
|
|
103
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "impdc-file-upload, [impdc-file-upload]", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "uploadText": { "alias": "uploadText"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, never, false, never>;
|
|
104
104
|
}
|
|
105
105
|
export {};
|
|
@@ -128,6 +128,6 @@ export declare class CheckboxComponent extends _CheckboxComponentMixinBase imple
|
|
|
128
128
|
*/
|
|
129
129
|
protected _preventBubblingFromLabel(event: MouseEvent): void;
|
|
130
130
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, [null, { attribute: "tabindex"; }, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; self: true; }]>;
|
|
131
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "impdc-checkbox", ["impdcCheckControl"], { "tabIndex": "tabIndex"; "id": "id"; "label": "label"; "description": "description"; "isSwitch": "isSwitch"; "switchIcons": "switchIcons"; "inline": "inline"; "checked": "checked"; "indeterminate": "indeterminate"; "disabled": "disabled"; "errorStateMatcher": "errorStateMatcher"; "required": "required"; }, { "change": "change"; "indeterminateChange": "indeterminateChange"; }, never, never, false>;
|
|
131
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "impdc-checkbox", ["impdcCheckControl"], { "tabIndex": { "alias": "tabIndex"; "required": false; }; "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; "isSwitch": { "alias": "isSwitch"; "required": false; }; "switchIcons": { "alias": "switchIcons"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "change": "change"; "indeterminateChange": "indeterminateChange"; }, never, never, false, never>;
|
|
132
132
|
}
|
|
133
133
|
export {};
|
|
@@ -79,6 +79,6 @@ export declare class InputDirective extends _InputDirectiveBase implements Impdc
|
|
|
79
79
|
protected _typeIsValid(inputType: string): boolean;
|
|
80
80
|
protected _onInput(): void;
|
|
81
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective, [null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, { optional: true; }, null]>;
|
|
82
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective, "input[impdcInput], textarea[impdcInput], select[impdcNativeSelect]", ["impdcInput"], { "disabled": "disabled"; "id": "id"; "type": "type"; "required": "required"; "readonly": "readonly"; "errorStateMatcher": "errorStateMatcher"; "value": "value"; }, {}, never, never, false>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective, "input[impdcInput], textarea[impdcInput], select[impdcNativeSelect]", ["impdcInput"], { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
83
83
|
}
|
|
84
84
|
export {};
|
|
@@ -93,6 +93,6 @@ export declare class RadioButtonComponent extends _RadioButtonComponentMixinBase
|
|
|
93
93
|
protected _onInputChange(event: Event): void;
|
|
94
94
|
protected _updateTabIndex(): void;
|
|
95
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, [null, null, { attribute: "tabindex"; }, { optional: true; }]>;
|
|
96
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "impdc-radio-button", ["impdcRadioButton"], { "tabIndex": "tabIndex"; "id": "id"; "name": "name"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "checked": "checked"; "value": "value"; "inline": "inline"; "disabled": "disabled"; "required": "required"; "label": "label"; "description": "description"; }, { "change": "change"; }, never, never, false>;
|
|
96
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "impdc-radio-button", ["impdcRadioButton"], { "tabIndex": { "alias": "tabIndex"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "value": { "alias": "value"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
|
|
97
97
|
}
|
|
98
98
|
export {};
|
|
@@ -99,6 +99,6 @@ export declare class RadioGroupDirective<TRadioButton extends IRadioButton = IRa
|
|
|
99
99
|
protected _updateRadioOptionNames(): void;
|
|
100
100
|
protected _updateSelectedRadioOptionFromValue(): void;
|
|
101
101
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupDirective<any>, [null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; self: true; }]>;
|
|
102
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioGroupDirective<any>, "impdc-radio-group", ["impdcRadioGroup"], { "name": "name"; "inline": "inline"; "selected": "selected"; "errorStateMatcher": "errorStateMatcher"; "value": "value"; "id": "id"; "disabled": "disabled"; "required": "required"; }, { "change": "change"; }, ["_radioOptions"], never, false>;
|
|
102
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioGroupDirective<any>, "impdc-radio-group", ["impdcRadioGroup"], { "name": { "alias": "name"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "change": "change"; }, ["_radioOptions"], never, false, never>;
|
|
103
103
|
}
|
|
104
104
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef,
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { NgbDropdownItem } from '@ng-bootstrap/ng-bootstrap';
|
|
3
3
|
import { BooleanInput } from '../../../../../utilities';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
@@ -39,7 +39,7 @@ export declare class SelectOptionComponent<T = any> extends NgbDropdownItem impl
|
|
|
39
39
|
set disabled(value: BooleanInput);
|
|
40
40
|
/** @ignore */
|
|
41
41
|
readonly onSelectionChange: EventEmitter<SelectOptionSelectionChangeEvent<T>>;
|
|
42
|
-
constructor(_parent: ISelectOptionParentComponent, _changeDetector: ChangeDetectorRef
|
|
42
|
+
constructor(_parent: ISelectOptionParentComponent, _changeDetector: ChangeDetectorRef);
|
|
43
43
|
/** @ignore */
|
|
44
44
|
select(): void;
|
|
45
45
|
/** @ignore */
|
|
@@ -55,6 +55,6 @@ export declare class SelectOptionComponent<T = any> extends NgbDropdownItem impl
|
|
|
55
55
|
protected _selectViaInteraction(): void;
|
|
56
56
|
private _emitSelectionChangeEvent;
|
|
57
57
|
private _isInteractionKeyEvent;
|
|
58
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectOptionComponent<any>, [{ optional: true; }, null
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectOptionComponent<any>, "impdc-select-option", never, { "value": "value"; "label": "label"; "id": "id"; "disabled": "disabled"; }, { "onSelectionChange": "onSelectionChange"; }, never, never, false>;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectOptionComponent<any>, [{ optional: true; }, null]>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectOptionComponent<any>, "impdc-select-option", never, { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; }, never, never, false, never>;
|
|
60
60
|
}
|
|
@@ -165,6 +165,6 @@ export declare class SelectComponent extends _SelectComponentBase implements OnI
|
|
|
165
165
|
private _propagateChanges;
|
|
166
166
|
private _buildChangeEvent;
|
|
167
167
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [null, null, { attribute: "tabindex"; }, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; self: true; }]>;
|
|
168
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "impdc-select", ["impdcSelect"], { "disabled": "disabled"; "tabIndex": "tabIndex"; "placeholder": "placeholder"; "required": "required"; "multiple": "multiple"; "compareWith": "compareWith"; "errorStateMatcher": "errorStateMatcher"; "value": "value"; "id": "id"; }, { "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, ["options"], ["*"], false>;
|
|
168
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "impdc-select", ["impdcSelect"], { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, ["options"], ["*"], false, never>;
|
|
169
169
|
}
|
|
170
170
|
export {};
|
package/lib/form-field/controls/shared/toggle/components/toggle-input/toggle-input.component.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class ToggleInputComponent {
|
|
3
3
|
classFormCheck: boolean;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleInputComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleInputComponent, "input[impdc-toggle-input]", never, {}, {}, never, never, false>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleInputComponent, "input[impdc-toggle-input]", never, {}, {}, never, never, false, never>;
|
|
6
6
|
}
|
|
@@ -22,5 +22,5 @@ export declare class ToggleComponent implements AfterViewChecked {
|
|
|
22
22
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
23
23
|
ngAfterViewChecked(): void;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "impdc-toggle", never, { "isSwitch": "isSwitch"; "label": "label"; "description": "description"; "inline": "inline"; "switchIcons": "switchIcons"; }, {}, ["inputRef"], ["[impdc-toggle-input]"], false>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "impdc-toggle", never, { "isSwitch": { "alias": "isSwitch"; "required": false; }; "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "switchIcons": { "alias": "switchIcons"; "required": false; }; }, {}, ["inputRef"], ["[impdc-toggle-input]"], false, never>;
|
|
26
26
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CornerHintDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CornerHintDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CornerHintDirective, "impdc-corner-hint", never, {}, {}, never, never, false>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CornerHintDirective, "impdc-corner-hint", never, {}, {}, never, never, false, never>;
|
|
5
5
|
}
|
|
@@ -4,5 +4,5 @@ export declare const IMPDC_ERROR: InjectionToken<ErrorDirective>;
|
|
|
4
4
|
export declare class ErrorDirective {
|
|
5
5
|
id: string;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ErrorDirective, "impdc-error, [impdc-error]", never, { "id": "id"; }, {}, never, never, false>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ErrorDirective, "impdc-error, [impdc-error]", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
8
|
}
|
|
@@ -13,7 +13,7 @@ export declare class RootFormGroupDirective implements ImpdcFormRoot {
|
|
|
13
13
|
get submitted(): boolean;
|
|
14
14
|
get form(): FormGroupDirective | NgForm;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<RootFormGroupDirective, [{ host: true; }, { optional: true; skipSelf: true; }]>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RootFormGroupDirective, "[formGroup]", never, {}, {}, never, never, false>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RootFormGroupDirective, "[formGroup]", never, {}, {}, never, never, false, never>;
|
|
17
17
|
}
|
|
18
18
|
export declare class RootNgFormDirective implements ImpdcFormRoot {
|
|
19
19
|
private _ngForm;
|
|
@@ -22,5 +22,5 @@ export declare class RootNgFormDirective implements ImpdcFormRoot {
|
|
|
22
22
|
get submitted(): boolean;
|
|
23
23
|
get form(): FormGroupDirective | NgForm;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<RootNgFormDirective, [{ host: true; }, { optional: true; skipSelf: true; }]>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RootNgFormDirective, "[ngForm]", never, {}, {}, never, never, false>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RootNgFormDirective, "[ngForm]", never, {}, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class HintDirective {
|
|
3
3
|
id: string;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<HintDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HintDirective, "impdc-hint", never, { "id": "id"; }, {}, never, never, false>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HintDirective, "impdc-hint", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>;
|
|
6
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class LabelDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<LabelDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LabelDirective, "impdc-label", never, {}, {}, never, never, false>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LabelDirective, "impdc-label", never, {}, {}, never, never, false, never>;
|
|
5
5
|
}
|
|
@@ -5,5 +5,5 @@ export declare class PrefixDirective {
|
|
|
5
5
|
set isTextSelector(value: '');
|
|
6
6
|
isText: boolean;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrefixDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PrefixDirective, "[impdcPrefix], [impdcTextPrefix]", never, { "isTextSelector": "impdcTextPrefix"; }, {}, never, never, false>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PrefixDirective, "[impdcPrefix], [impdcTextPrefix]", never, { "isTextSelector": { "alias": "impdcTextPrefix"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
9
|
}
|
|
@@ -5,5 +5,5 @@ export declare class SuffixDirective {
|
|
|
5
5
|
set isTextSelector(value: '');
|
|
6
6
|
isText: boolean;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuffixDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SuffixDirective, "[impdcSuffix], [impdcTextSuffix]", never, { "isTextSelector": "impdcTextSuffix"; }, {}, never, never, false>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SuffixDirective, "[impdcSuffix], [impdcTextSuffix]", never, { "isTextSelector": { "alias": "impdcTextSuffix"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
9
|
}
|
|
@@ -35,5 +35,5 @@ export declare class FormFieldComponent implements AfterViewInit, AfterContentIn
|
|
|
35
35
|
/** Initializes the prefix and suffix containers. */
|
|
36
36
|
private _initializePrefixAndSuffix;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "impdc-form-field", ["impdcFormField"], {}, {}, ["_formFieldControl", "_prefixChildren", "_suffixChildren", "_errorChildren"], ["impdc-label", "impdc-corner-hint", "[impdcPrefix]", "[impdcTextPrefix]", "*", "[impdcTextSuffix]", "[impdcSuffix]", "impdc-hint", "impdc-error, [impdc-error]"], false>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "impdc-form-field", ["impdcFormField"], {}, {}, ["_formFieldControl", "_prefixChildren", "_suffixChildren", "_errorChildren"], ["impdc-label", "impdc-corner-hint", "[impdcPrefix]", "[impdcTextPrefix]", "*", "[impdcTextSuffix]", "[impdcSuffix]", "impdc-hint", "impdc-error, [impdc-error]"], false, never>;
|
|
39
39
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
3
|
+
export type UniqueSelectionDispatcherListener = (id: string, name: string) => void;
|
|
4
4
|
/**
|
|
5
5
|
* Class to coordinate unique selection based on name.
|
|
6
6
|
* Intended to be consumed as an Angular service.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @docs-private */
|
|
2
|
-
export
|
|
2
|
+
export type Constructor<T> = new (...args: any[]) => T;
|
|
3
3
|
/**
|
|
4
4
|
* This is a permissive type for abstract class constructors.
|
|
5
5
|
* @docs-private
|
|
6
6
|
*/
|
|
7
|
-
export
|
|
7
|
+
export type AbstractConstructor<T = object> = abstract new (...args: any[]) => T;
|
|
@@ -4,7 +4,7 @@ export interface CanDisable {
|
|
|
4
4
|
/** Whether the component is disabled. */
|
|
5
5
|
disabled: boolean;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
type CanDisableCtor = Constructor<CanDisable> & AbstractConstructor<CanDisable>;
|
|
8
8
|
/** Mixin to augment a directive with a `disabled` property. */
|
|
9
9
|
export declare function mixinDisabled<T extends AbstractConstructor<{}>>(base: T): CanDisableCtor & T;
|
|
10
10
|
export {};
|
|
@@ -11,7 +11,7 @@ export interface ICanUpdateErrorState {
|
|
|
11
11
|
errorState: boolean;
|
|
12
12
|
errorStateMatcher: ErrorStateMatcher | undefined;
|
|
13
13
|
}
|
|
14
|
-
|
|
14
|
+
type CanUpdateErrorStateCtor = Constructor<ICanUpdateErrorState> & AbstractConstructor<ICanUpdateErrorState>;
|
|
15
15
|
/**
|
|
16
16
|
* @docs-private
|
|
17
17
|
*/
|
|
@@ -20,5 +20,5 @@ export declare abstract class ImpdcFormFieldControl<T> {
|
|
|
20
20
|
readonly controlType?: string;
|
|
21
21
|
abstract readonly supportsAffixes: boolean;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImpdcFormFieldControl<any>, never>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ImpdcFormFieldControl<any>, never, never, {}, {}, never, never, false>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ImpdcFormFieldControl<any>, never, never, {}, {}, never, never, false, never>;
|
|
24
24
|
}
|
|
@@ -7,7 +7,7 @@ export interface HasTabIndex {
|
|
|
7
7
|
/** Tabindex to which to fall back to if no value is set. */
|
|
8
8
|
defaultTabIndex: number;
|
|
9
9
|
}
|
|
10
|
-
|
|
10
|
+
type HasTabIndexCtor = Constructor<HasTabIndex> & AbstractConstructor<HasTabIndex>;
|
|
11
11
|
/** Mixin to augment a directive with a `tabIndex` property. */
|
|
12
12
|
export declare function mixinTabIndex<T extends AbstractConstructor<CanDisable>>(base: T, defaultTabIndex?: number): HasTabIndexCtor & T;
|
|
13
13
|
export {};
|
|
@@ -30,5 +30,5 @@ export declare class IconComponent implements AfterContentChecked {
|
|
|
30
30
|
get computedSize(): string;
|
|
31
31
|
ngAfterContentChecked(): void;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "impdc-icon, [impdc-icon]", never, { "name": "name"; "theme": "theme"; "size": "size"; }, {}, never, never, false>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "impdc-icon, [impdc-icon]", never, { "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
34
34
|
}
|