@ethlete/cdk 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +761 -0
- package/README.md +7 -0
- package/esm2020/ethlete-cdk.mjs +5 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/lib/components/accordion/accordion.imports.mjs +11 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.animations.mjs +9 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.mjs +86 -0
- package/esm2020/lib/components/accordion/components/accordion/index.mjs +2 -0
- package/esm2020/lib/components/accordion/components/accordion/public-api.mjs +4 -0
- package/esm2020/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +53 -0
- package/esm2020/lib/components/accordion/components/accordion-group/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/components/index.mjs +2 -0
- package/esm2020/lib/components/accordion/components/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +17 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +20 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +17 -0
- package/esm2020/lib/components/accordion/partials/accordion-label/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +20 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/index.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/public-api.mjs +5 -0
- package/esm2020/lib/components/accordion/public-api.mjs +4 -0
- package/esm2020/lib/components/bracket/bracket.imports.mjs +4 -0
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.mjs +342 -0
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.types.mjs +2 -0
- package/esm2020/lib/components/bracket/components/bracket/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/components/index.mjs +2 -0
- package/esm2020/lib/components/bracket/components/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/constants/bracket.constants.mjs +12 -0
- package/esm2020/lib/components/bracket/constants/index.mjs +2 -0
- package/esm2020/lib/components/bracket/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +19 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +19 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +19 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +19 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/public-api.mjs +8 -0
- package/esm2020/lib/components/bracket/types/bracket-config.types.mjs +2 -0
- package/esm2020/lib/components/bracket/types/bracket.types.mjs +2 -0
- package/esm2020/lib/components/bracket/types/index.mjs +2 -0
- package/esm2020/lib/components/bracket/types/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/utils/bracket-config.utils.mjs +13 -0
- package/esm2020/lib/components/bracket/utils/bracket.utils.mjs +335 -0
- package/esm2020/lib/components/bracket/utils/index.mjs +2 -0
- package/esm2020/lib/components/bracket/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/button/button.imports.mjs +3 -0
- package/esm2020/lib/components/button/components/button/button.component.mjs +18 -0
- package/esm2020/lib/components/button/components/button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/components/index.mjs +2 -0
- package/esm2020/lib/components/button/components/public-api.mjs +3 -0
- package/esm2020/lib/components/button/components/query-button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/components/query-button/query-button.component.mjs +25 -0
- package/esm2020/lib/components/button/directives/button/button.directive.mjs +83 -0
- package/esm2020/lib/components/button/directives/button/index.mjs +2 -0
- package/esm2020/lib/components/button/directives/button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/directives/index.mjs +2 -0
- package/esm2020/lib/components/button/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/button/directives/query-button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/directives/query-button/query-button.directive.mjs +110 -0
- package/esm2020/lib/components/button/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/checkbox/checkbox.imports.mjs +9 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +23 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +54 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +18 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +44 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +36 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +80 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +38 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/checkbox/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/error/components/error/error.component.mjs +56 -0
- package/esm2020/lib/components/forms/components/error/components/error/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/components/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/email-input/email-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/email-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/input-field/input-field.component.mjs +57 -0
- package/esm2020/lib/components/forms/components/input/components/input-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/number-input/number-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/number-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/password-input/password-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/password-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/public-api.mjs +8 -0
- package/esm2020/lib/components/forms/components/input/components/search-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/search-input/search-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/text-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/textarea-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +52 -0
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/directives/email-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +51 -0
- package/esm2020/lib/components/forms/components/input/directives/number-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +54 -0
- package/esm2020/lib/components/forms/components/input/directives/password-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/public-api.mjs +8 -0
- package/esm2020/lib/components/forms/components/input/directives/search-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +54 -0
- package/esm2020/lib/components/forms/components/input/directives/text-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/input.imports.mjs +19 -0
- package/esm2020/lib/components/forms/components/input/partials/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +22 -0
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +22 -0
- package/esm2020/lib/components/forms/components/input/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/label/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/components/label/label.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/label/components/label/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/components/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +33 -0
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/label.imports.mjs +4 -0
- package/esm2020/lib/components/forms/components/label/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/public-api.mjs +10 -0
- package/esm2020/lib/components/forms/components/radio/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/radio/components/radio/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio/radio.component.mjs +27 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +35 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/radio/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +63 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +36 -0
- package/esm2020/lib/components/forms/components/radio/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/radio/radio.imports.mjs +3 -0
- package/esm2020/lib/components/forms/components/radio/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/types/radio.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +37 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +25 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +73 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +68 -0
- package/esm2020/lib/components/forms/components/segmented-button/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/segmented-button/segmented-button.imports.mjs +7 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/native-select/native-select.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/native-select-option/native-select-option.component.mjs +32 -0
- package/esm2020/lib/components/forms/components/select/components/native-select-option/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/select/components/select-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/select-field/select-field.component.mjs +53 -0
- package/esm2020/lib/components/forms/components/select/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.mjs +58 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.mjs +56 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/select/native-select.imports.mjs +13 -0
- package/esm2020/lib/components/forms/components/select/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/select/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/types/select.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +23 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/slide-toggle/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/components/slider/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/slider/slider.component.mjs +342 -0
- package/esm2020/lib/components/forms/components/slider/components/slider-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/slider/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/slider.imports.mjs +3 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +42 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +42 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +41 -0
- package/esm2020/lib/components/forms/directives/if-input-empty/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +41 -0
- package/esm2020/lib/components/forms/directives/if-input-filled/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input/input.directive.mjs +233 -0
- package/esm2020/lib/components/forms/directives/input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +30 -0
- package/esm2020/lib/components/forms/directives/input-prefix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +30 -0
- package/esm2020/lib/components/forms/directives/input-suffix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +19 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/public-api.mjs +12 -0
- package/esm2020/lib/components/forms/directives/static-form-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +78 -0
- package/esm2020/lib/components/forms/directives/static-form-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +29 -0
- package/esm2020/lib/components/forms/directives/writeable-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +71 -0
- package/esm2020/lib/components/forms/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/services/default-validator-errors.service.mjs +51 -0
- package/esm2020/lib/components/forms/services/form-field-state.service.mjs +24 -0
- package/esm2020/lib/components/forms/services/form-group-state.service.mjs +21 -0
- package/esm2020/lib/components/forms/services/index.mjs +2 -0
- package/esm2020/lib/components/forms/services/input-state.service.mjs +35 -0
- package/esm2020/lib/components/forms/services/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/types/input.types.mjs +2 -0
- package/esm2020/lib/components/forms/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/utils/decorated-form-field.base.mjs +22 -0
- package/esm2020/lib/components/forms/utils/decorated-input.base.mjs +44 -0
- package/esm2020/lib/components/forms/utils/index.mjs +2 -0
- package/esm2020/lib/components/forms/utils/input.base.mjs +20 -0
- package/esm2020/lib/components/forms/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/icons/chevron-icon/chevron-icon.component.mjs +36 -0
- package/esm2020/lib/components/icons/chevron-icon/index.mjs +2 -0
- package/esm2020/lib/components/icons/chevron-icon/public-api.mjs +2 -0
- package/esm2020/lib/components/icons/icon.imports.mjs +3 -0
- package/esm2020/lib/components/icons/index.mjs +2 -0
- package/esm2020/lib/components/icons/public-api.mjs +3 -0
- package/esm2020/lib/components/masonry/components/index.mjs +2 -0
- package/esm2020/lib/components/masonry/components/masonry/masonry.component.mjs +199 -0
- package/esm2020/lib/components/masonry/components/masonry/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/components/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/masonry.imports.mjs +4 -0
- package/esm2020/lib/components/masonry/partials/index.mjs +2 -0
- package/esm2020/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +74 -0
- package/esm2020/lib/components/masonry/partials/masonry-item/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/public-api.mjs +5 -0
- package/esm2020/lib/components/masonry/types/masonry.types.mjs +2 -0
- package/esm2020/lib/components/masonry/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.mjs +14 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +51 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.mjs +30 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +43 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +103 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +49 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/public-api.mjs +8 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +113 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +48 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +31 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.mjs +7 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.mjs +93 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.mjs +18 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +51 -0
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/dialog.constants.mjs +32 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/dialog.imports.mjs +10 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +64 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +43 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +49 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/dialog/public-api.mjs +8 -0
- package/esm2020/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +109 -0
- package/esm2020/lib/components/overlay/components/dialog/services/dialog.service.mjs +31 -0
- package/esm2020/lib/components/overlay/components/dialog/services/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/services/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/dialog/types/dialog.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog-config.mjs +7 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog-ref.mjs +114 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog.utils.mjs +18 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/public-api.mjs +5 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +62 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/toggletip.constants.mjs +11 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +196 -0
- package/esm2020/lib/components/overlay/components/toggletip/public-api.mjs +7 -0
- package/esm2020/lib/components/overlay/components/toggletip/toggletip.imports.mjs +3 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/toggletip.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip-config.mjs +6 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip.util.mjs +6 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +60 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/tooltip.constants.mjs +11 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +240 -0
- package/esm2020/lib/components/overlay/components/tooltip/public-api.mjs +7 -0
- package/esm2020/lib/components/overlay/components/tooltip/tooltip.imports.mjs +3 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/tooltip.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip-config.mjs +6 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip.util.mjs +6 -0
- package/esm2020/lib/components/overlay/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/services/dynamic-overlay.service.mjs +29 -0
- package/esm2020/lib/components/overlay/services/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/types/dynamic-overlay.types.mjs +2 -0
- package/esm2020/lib/components/overlay/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/types/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/components/index.mjs +2 -0
- package/esm2020/lib/components/pagination/components/pagination/pagination.component.mjs +105 -0
- package/esm2020/lib/components/pagination/components/pagination/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/components/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/pagination.imports.mjs +3 -0
- package/esm2020/lib/components/pagination/partials/index.mjs +2 -0
- package/esm2020/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +32 -0
- package/esm2020/lib/components/pagination/partials/pagination-link/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/public-api.mjs +5 -0
- package/esm2020/lib/components/pagination/services/index.mjs +2 -0
- package/esm2020/lib/components/pagination/services/pagination-head.service.mjs +59 -0
- package/esm2020/lib/components/pagination/services/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/types/index.mjs +2 -0
- package/esm2020/lib/components/pagination/types/pagination.types.mjs +2 -0
- package/esm2020/lib/components/pagination/types/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/utils/index.mjs +2 -0
- package/esm2020/lib/components/pagination/utils/pagination.util.mjs +79 -0
- package/esm2020/lib/components/pagination/utils/public-api.mjs +2 -0
- package/esm2020/lib/components/picture/picture-data.directive.mjs +55 -0
- package/esm2020/lib/components/picture/picture.component.mjs +40 -0
- package/esm2020/lib/components/picture/picture.component.types.mjs +2 -0
- package/esm2020/lib/components/picture/public-api.mjs +4 -0
- package/esm2020/lib/components/progress-spinner/progress-spinner.component.mjs +105 -0
- package/esm2020/lib/components/progress-spinner/public-api.mjs +2 -0
- package/esm2020/lib/components/public-api.mjs +16 -0
- package/esm2020/lib/components/scrollable/components/index.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/public-api.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/scrollable/public-api.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/scrollable/scrollable.component.mjs +129 -0
- package/esm2020/lib/components/scrollable/index.mjs +2 -0
- package/esm2020/lib/components/scrollable/public-api.mjs +3 -0
- package/esm2020/lib/components/scrollable/scrollable.imports.mjs +3 -0
- package/esm2020/lib/components/skeleton/components/index.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/skeleton/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/skeleton/skeleton.component.mjs +31 -0
- package/esm2020/lib/components/skeleton/partials/index.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/skeleton-item/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +19 -0
- package/esm2020/lib/components/skeleton/public-api.mjs +4 -0
- package/esm2020/lib/components/skeleton/skeleton.imports.mjs +4 -0
- package/esm2020/lib/components/sort/components/index.mjs +2 -0
- package/esm2020/lib/components/sort/components/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/components/sort-header/public-api.mjs +3 -0
- package/esm2020/lib/components/sort/components/sort-header/sort-header.component.mjs +224 -0
- package/esm2020/lib/components/sort/components/sort-header/sort-header.types.mjs +2 -0
- package/esm2020/lib/components/sort/index.mjs +2 -0
- package/esm2020/lib/components/sort/partials/index.mjs +2 -0
- package/esm2020/lib/components/sort/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/partials/sort/public-api.mjs +3 -0
- package/esm2020/lib/components/sort/partials/sort/sort.directive.mjs +157 -0
- package/esm2020/lib/components/sort/partials/sort/sort.types.mjs +2 -0
- package/esm2020/lib/components/sort/public-api.mjs +6 -0
- package/esm2020/lib/components/sort/services/index.mjs +2 -0
- package/esm2020/lib/components/sort/services/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/services/sort-header-intl.mjs +23 -0
- package/esm2020/lib/components/sort/sort.imports.mjs +8 -0
- package/esm2020/lib/components/sort/types/index.mjs +2 -0
- package/esm2020/lib/components/sort/types/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/types/sort-direction.mjs +2 -0
- package/esm2020/lib/components/table/components/index.mjs +2 -0
- package/esm2020/lib/components/table/components/public-api.mjs +2 -0
- package/esm2020/lib/components/table/components/table/public-api.mjs +2 -0
- package/esm2020/lib/components/table/components/table/table.component.mjs +141 -0
- package/esm2020/lib/components/table/constants/index.mjs +2 -0
- package/esm2020/lib/components/table/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/table/constants/table-data-source.constants.mjs +2 -0
- package/esm2020/lib/components/table/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell/cell.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/cells/cell/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/column-def/column-def.directive.mjs +44 -0
- package/esm2020/lib/components/table/partials/cells/column-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/column-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +19 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/public-api.mjs +9 -0
- package/esm2020/lib/components/table/partials/cells/text-column/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/text-column/text-column.component.mjs +55 -0
- package/esm2020/lib/components/table/partials/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/public-api.mjs +5 -0
- package/esm2020/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/footer-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/footer-row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/header-row/header-row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/header-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/header-row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +20 -0
- package/esm2020/lib/components/table/partials/rows/no-data-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/public-api.mjs +9 -0
- package/esm2020/lib/components/table/partials/rows/recycle-rows/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/rows/row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/row/row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/row-def/row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/table-busy/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/table-busy/table-busy.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/table-busy-outlet/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +15 -0
- package/esm2020/lib/components/table/public-api.mjs +7 -0
- package/esm2020/lib/components/table/table.imports.mjs +23 -0
- package/esm2020/lib/components/table/types/index.mjs +2 -0
- package/esm2020/lib/components/table/types/public-api.mjs +2 -0
- package/esm2020/lib/components/table/types/table-data-source.types.mjs +2 -0
- package/esm2020/lib/components/table/utils/public-api.mjs +2 -0
- package/esm2020/lib/components/table/utils/table-data-source.mjs +168 -0
- package/esm2020/lib/components/tabs/animations/index.mjs +2 -0
- package/esm2020/lib/components/tabs/animations/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/animations/tabs.animations.mjs +26 -0
- package/esm2020/lib/components/tabs/components/index.mjs +2 -0
- package/esm2020/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +261 -0
- package/esm2020/lib/components/tabs/components/inline-tabs/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +86 -0
- package/esm2020/lib/components/tabs/components/nav-tabs/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/components/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/partials/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +100 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +135 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +25 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +22 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +43 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +30 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +48 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/public-api.mjs +8 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +203 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +37 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/public-api.mjs +7 -0
- package/esm2020/lib/components/tabs/tab.imports.mjs +16 -0
- package/esm2020/lib/components/tabs/types/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/types/tab-config.types.mjs +3 -0
- package/esm2020/lib/components/tabs/utils/active-tab-underline.util.mjs +111 -0
- package/esm2020/lib/components/tabs/utils/index.mjs +2 -0
- package/esm2020/lib/components/tabs/utils/paginated-tab-header.directive.mjs +284 -0
- package/esm2020/lib/components/tabs/utils/public-api.mjs +3 -0
- package/esm2020/lib/public-api.mjs +4 -0
- package/esm2020/lib/services/index.mjs +2 -0
- package/esm2020/lib/services/public-api.mjs +2 -0
- package/esm2020/lib/services/swipe-handler.service.mjs +88 -0
- package/esm2020/lib/types/index.mjs +2 -0
- package/esm2020/lib/types/public-api.mjs +2 -0
- package/esm2020/lib/types/swipe.types.mjs +2 -0
- package/fesm2015/ethlete-cdk.mjs +9106 -0
- package/fesm2015/ethlete-cdk.mjs.map +1 -0
- package/fesm2020/ethlete-cdk.mjs +9037 -0
- package/fesm2020/ethlete-cdk.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/lib/components/accordion/accordion.imports.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.animations.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.constants.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.d.ts +30 -0
- package/lib/components/accordion/components/accordion/index.d.ts +1 -0
- package/lib/components/accordion/components/accordion/public-api.d.ts +3 -0
- package/lib/components/accordion/components/accordion-group/accordion-group.component.d.ts +13 -0
- package/lib/components/accordion/components/accordion-group/public-api.d.ts +1 -0
- package/lib/components/accordion/components/index.d.ts +1 -0
- package/lib/components/accordion/components/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.d.ts +5 -0
- package/lib/components/accordion/partials/accordion-hint/public-api.d.ts +1 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.d.ts +3 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.d.ts +8 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/accordion-label/accordion-label.directive.d.ts +5 -0
- package/lib/components/accordion/partials/accordion-label/public-api.d.ts +1 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.d.ts +3 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.d.ts +8 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/index.d.ts +1 -0
- package/lib/components/accordion/partials/public-api.d.ts +4 -0
- package/lib/components/accordion/public-api.d.ts +3 -0
- package/lib/components/bracket/bracket.imports.d.ts +3 -0
- package/lib/components/bracket/components/bracket/bracket.component.d.ts +55 -0
- package/lib/components/bracket/components/bracket/bracket.component.types.d.ts +5 -0
- package/lib/components/bracket/components/bracket/public-api.d.ts +2 -0
- package/lib/components/bracket/components/index.d.ts +1 -0
- package/lib/components/bracket/components/public-api.d.ts +1 -0
- package/lib/components/bracket/constants/bracket.constants.d.ts +8 -0
- package/lib/components/bracket/constants/index.d.ts +1 -0
- package/lib/components/bracket/constants/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-match/bracket-match.directive.d.ts +8 -0
- package/lib/components/bracket/directives/bracket-match/index.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-match/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-round/bracket-round.directive.d.ts +8 -0
- package/lib/components/bracket/directives/bracket-round/index.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-round/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/index.d.ts +1 -0
- package/lib/components/bracket/directives/public-api.d.ts +2 -0
- package/lib/components/bracket/partials/bracket-match/bracket-match.component.d.ts +8 -0
- package/lib/components/bracket/partials/bracket-match/index.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-match/public-api.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.d.ts +8 -0
- package/lib/components/bracket/partials/bracket-round-header/index.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-round-header/public-api.d.ts +1 -0
- package/lib/components/bracket/partials/index.d.ts +1 -0
- package/lib/components/bracket/partials/public-api.d.ts +2 -0
- package/lib/components/bracket/public-api.d.ts +7 -0
- package/lib/components/bracket/types/bracket-config.types.d.ts +5 -0
- package/lib/components/bracket/types/bracket.types.d.ts +30 -0
- package/lib/components/bracket/types/index.d.ts +1 -0
- package/lib/components/bracket/types/public-api.d.ts +2 -0
- package/lib/components/bracket/utils/bracket-config.utils.d.ts +6 -0
- package/lib/components/bracket/utils/bracket.utils.d.ts +37 -0
- package/lib/components/bracket/utils/index.d.ts +1 -0
- package/lib/components/bracket/utils/public-api.d.ts +2 -0
- package/lib/components/button/button.imports.d.ts +2 -0
- package/lib/components/button/components/button/button.component.d.ts +8 -0
- package/lib/components/button/components/button/public-api.d.ts +1 -0
- package/lib/components/button/components/index.d.ts +1 -0
- package/lib/components/button/components/public-api.d.ts +2 -0
- package/lib/components/button/components/query-button/public-api.d.ts +1 -0
- package/lib/components/button/components/query-button/query-button.component.d.ts +9 -0
- package/lib/components/button/directives/button/button.directive.d.ts +25 -0
- package/lib/components/button/directives/button/index.d.ts +1 -0
- package/lib/components/button/directives/button/public-api.d.ts +1 -0
- package/lib/components/button/directives/index.d.ts +1 -0
- package/lib/components/button/directives/public-api.d.ts +2 -0
- package/lib/components/button/directives/query-button/public-api.d.ts +1 -0
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +24 -0
- package/lib/components/button/public-api.d.ts +3 -0
- package/lib/components/forms/components/checkbox/checkbox.imports.d.ts +3 -0
- package/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.d.ts +10 -0
- package/lib/components/forms/components/checkbox/components/checkbox/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.d.ts +11 -0
- package/lib/components/forms/components/checkbox/components/checkbox-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.d.ts +7 -0
- package/lib/components/forms/components/checkbox/components/checkbox-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts +15 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.d.ts +12 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.d.ts +18 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +13 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/public-api.d.ts +4 -0
- package/lib/components/forms/components/checkbox/public-api.d.ts +3 -0
- package/lib/components/forms/components/error/components/error/error.component.d.ts +16 -0
- package/lib/components/forms/components/error/components/error/public-api.d.ts +1 -0
- package/lib/components/forms/components/error/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/error/index.d.ts +1 -0
- package/lib/components/forms/components/error/public-api.d.ts +1 -0
- package/lib/components/forms/components/index.d.ts +1 -0
- package/lib/components/forms/components/input/components/email-input/email-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/email-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/index.d.ts +1 -0
- package/lib/components/forms/components/input/components/input-field/input-field.component.d.ts +11 -0
- package/lib/components/forms/components/input/components/input-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/number-input/number-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/number-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/password-input/password-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/password-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/public-api.d.ts +7 -0
- package/lib/components/forms/components/input/components/search-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/search-input/search-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/text-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/text-input/text-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/textarea-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/textarea-input/textarea-input.component.d.ts +17 -0
- package/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.d.ts +12 -0
- package/lib/components/forms/components/input/directives/autosize-textarea/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/email-input/email-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/email-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/number-input/number-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/number-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/password-input/password-input.directive.d.ts +16 -0
- package/lib/components/forms/components/input/directives/password-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/public-api.d.ts +7 -0
- package/lib/components/forms/components/input/directives/search-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/search-input/search-input.directive.d.ts +14 -0
- package/lib/components/forms/components/input/directives/text-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/text-input/text-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/textarea-input/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/textarea-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/input.imports.d.ts +4 -0
- package/lib/components/forms/components/input/partials/index.d.ts +1 -0
- package/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.d.ts +8 -0
- package/lib/components/forms/components/input/partials/password-input-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/partials/public-api.d.ts +2 -0
- package/lib/components/forms/components/input/partials/search-input-clear/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.d.ts +8 -0
- package/lib/components/forms/components/input/public-api.d.ts +4 -0
- package/lib/components/forms/components/label/components/index.d.ts +1 -0
- package/lib/components/forms/components/label/components/label/label.component.d.ts +10 -0
- package/lib/components/forms/components/label/components/label/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/directives/index.d.ts +1 -0
- package/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.d.ts +10 -0
- package/lib/components/forms/components/label/directives/label-suffix/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/directives/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/label.imports.d.ts +3 -0
- package/lib/components/forms/components/label/public-api.d.ts +3 -0
- package/lib/components/forms/components/public-api.d.ts +9 -0
- package/lib/components/forms/components/radio/components/index.d.ts +1 -0
- package/lib/components/forms/components/radio/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/radio/components/radio/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio/radio.component.d.ts +11 -0
- package/lib/components/forms/components/radio/components/radio-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio-field/radio-field.component.d.ts +7 -0
- package/lib/components/forms/components/radio/components/radio-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio-group/radio-group.component.d.ts +11 -0
- package/lib/components/forms/components/radio/directives/index.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/radio/directives/radio/index.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +22 -0
- package/lib/components/forms/components/radio/directives/radio-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts +13 -0
- package/lib/components/forms/components/radio/directives/radio-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +10 -0
- package/lib/components/forms/components/radio/public-api.d.ts +4 -0
- package/lib/components/forms/components/radio/radio.imports.d.ts +2 -0
- package/lib/components/forms/components/radio/types/index.d.ts +1 -0
- package/lib/components/forms/components/radio/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/types/radio.types.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.d.ts +14 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.d.ts +7 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.d.ts +11 -0
- package/lib/components/forms/components/segmented-button/directives/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +26 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.d.ts +13 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +14 -0
- package/lib/components/forms/components/segmented-button/public-api.d.ts +4 -0
- package/lib/components/forms/components/segmented-button/segmented-button.imports.d.ts +2 -0
- package/lib/components/forms/components/segmented-button/types/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/types/segmented-button.types.d.ts +1 -0
- package/lib/components/forms/components/select/components/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/native-select.component.d.ts +10 -0
- package/lib/components/forms/components/select/components/native-select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select-option/native-select-option.component.d.ts +11 -0
- package/lib/components/forms/components/select/components/native-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select-field/select-field.component.d.ts +11 -0
- package/lib/components/forms/components/select/directives/index.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.d.ts +18 -0
- package/lib/components/forms/components/select/directives/native-select-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-option/index.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.d.ts +22 -0
- package/lib/components/forms/components/select/directives/native-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/directives/public-api.d.ts +2 -0
- package/lib/components/forms/components/select/native-select.imports.d.ts +4 -0
- package/lib/components/forms/components/select/public-api.d.ts +4 -0
- package/lib/components/forms/components/select/types/index.d.ts +1 -0
- package/lib/components/forms/components/select/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/types/select.types.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/index.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/public-api.d.ts +2 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.d.ts +10 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.d.ts +10 -0
- package/lib/components/forms/components/slide-toggle/directives/index.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.d.ts +13 -0
- package/lib/components/forms/components/slide-toggle/public-api.d.ts +3 -0
- package/lib/components/forms/components/slide-toggle/slide-toggle.imports.d.ts +2 -0
- package/lib/components/forms/components/slider/components/index.d.ts +1 -0
- package/lib/components/forms/components/slider/components/public-api.d.ts +2 -0
- package/lib/components/forms/components/slider/components/slider/public-api.d.ts +1 -0
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +64 -0
- package/lib/components/forms/components/slider/components/slider-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/slider/components/slider-field/slider-field.component.d.ts +10 -0
- package/lib/components/forms/components/slider/public-api.d.ts +2 -0
- package/lib/components/forms/components/slider/slider.imports.d.ts +2 -0
- package/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +12 -0
- package/lib/components/forms/directives/dynamic-form-field/public-api.d.ts +1 -0
- package/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.d.ts +12 -0
- package/lib/components/forms/directives/dynamic-form-group/public-api.d.ts +1 -0
- package/lib/components/forms/directives/if-input-empty/if-input-empty.directive.d.ts +12 -0
- package/lib/components/forms/directives/if-input-empty/public-api.d.ts +1 -0
- package/lib/components/forms/directives/if-input-filled/if-input-filled.directive.d.ts +12 -0
- package/lib/components/forms/directives/if-input-filled/public-api.d.ts +1 -0
- package/lib/components/forms/directives/index.d.ts +1 -0
- package/lib/components/forms/directives/input/index.d.ts +1 -0
- package/lib/components/forms/directives/input/input.directive.d.ts +62 -0
- package/lib/components/forms/directives/input/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input-prefix/input-prefix.directive.d.ts +7 -0
- package/lib/components/forms/directives/input-prefix/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input-suffix/input-suffix.directive.d.ts +7 -0
- package/lib/components/forms/directives/input-suffix/public-api.d.ts +1 -0
- package/lib/components/forms/directives/native-input-ref/index.d.ts +1 -0
- package/lib/components/forms/directives/native-input-ref/native-input-ref.directive.d.ts +8 -0
- package/lib/components/forms/directives/native-input-ref/public-api.d.ts +1 -0
- package/lib/components/forms/directives/public-api.d.ts +11 -0
- package/lib/components/forms/directives/static-form-field/public-api.d.ts +1 -0
- package/lib/components/forms/directives/static-form-field/static-form-field.directive.d.ts +15 -0
- package/lib/components/forms/directives/static-form-group/public-api.d.ts +1 -0
- package/lib/components/forms/directives/static-form-group/static-form-group.directive.d.ts +7 -0
- package/lib/components/forms/directives/writeable-input/public-api.d.ts +1 -0
- package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +20 -0
- package/lib/components/forms/public-api.d.ts +4 -0
- package/lib/components/forms/services/default-validator-errors.service.d.ts +17 -0
- package/lib/components/forms/services/form-field-state.service.d.ts +14 -0
- package/lib/components/forms/services/form-group-state.service.d.ts +10 -0
- package/lib/components/forms/services/index.d.ts +1 -0
- package/lib/components/forms/services/input-state.service.d.ts +28 -0
- package/lib/components/forms/services/public-api.d.ts +4 -0
- package/lib/components/forms/types/index.d.ts +1 -0
- package/lib/components/forms/types/input.types.d.ts +25 -0
- package/lib/components/forms/types/public-api.d.ts +1 -0
- package/lib/components/forms/utils/decorated-form-field.base.d.ts +7 -0
- package/lib/components/forms/utils/decorated-input.base.d.ts +15 -0
- package/lib/components/forms/utils/index.d.ts +1 -0
- package/lib/components/forms/utils/input.base.d.ts +10 -0
- package/lib/components/forms/utils/public-api.d.ts +3 -0
- package/lib/components/icons/chevron-icon/chevron-icon.component.d.ts +5 -0
- package/lib/components/icons/chevron-icon/index.d.ts +1 -0
- package/lib/components/icons/chevron-icon/public-api.d.ts +1 -0
- package/lib/components/icons/icon.imports.d.ts +2 -0
- package/lib/components/icons/index.d.ts +1 -0
- package/lib/components/icons/public-api.d.ts +2 -0
- package/lib/components/masonry/components/index.d.ts +1 -0
- package/lib/components/masonry/components/masonry/masonry.component.d.ts +34 -0
- package/lib/components/masonry/components/masonry/public-api.d.ts +1 -0
- package/lib/components/masonry/components/public-api.d.ts +1 -0
- package/lib/components/masonry/masonry.imports.d.ts +3 -0
- package/lib/components/masonry/partials/index.d.ts +1 -0
- package/lib/components/masonry/partials/masonry-item/masonry-item.component.d.ts +20 -0
- package/lib/components/masonry/partials/masonry-item/public-api.d.ts +1 -0
- package/lib/components/masonry/partials/public-api.d.ts +1 -0
- package/lib/components/masonry/public-api.d.ts +4 -0
- package/lib/components/masonry/types/masonry.types.d.ts +4 -0
- package/lib/components/masonry/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.d.ts +14 -0
- package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.d.ts +14 -0
- package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/components/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.d.ts +17 -0
- package/lib/components/overlay/components/bottom-sheet/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.d.ts +16 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.d.ts +22 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/public-api.d.ts +3 -0
- package/lib/components/overlay/components/bottom-sheet/public-api.d.ts +7 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.d.ts +35 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/services/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/services/public-api.d.ts +3 -0
- package/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.d.ts +84 -0
- package/lib/components/overlay/components/bottom-sheet/types/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.d.ts +2 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.d.ts +29 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.d.ts +13 -0
- package/lib/components/overlay/components/bottom-sheet/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/utils/public-api.d.ts +3 -0
- package/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.d.ts +14 -0
- package/lib/components/overlay/components/dialog/components/dialog-container/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/components/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/constants/dialog.constants.d.ts +15 -0
- package/lib/components/overlay/components/dialog/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/dialog.imports.d.ts +14 -0
- package/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.d.ts +16 -0
- package/lib/components/overlay/components/dialog/partials/dialog-close/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.d.ts +16 -0
- package/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.d.ts +11 -0
- package/lib/components/overlay/components/dialog/partials/dialog-title/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/public-api.d.ts +3 -0
- package/lib/components/overlay/components/dialog/public-api.d.ts +7 -0
- package/lib/components/overlay/components/dialog/services/dialog-base.service.d.ts +35 -0
- package/lib/components/overlay/components/dialog/services/dialog.service.d.ts +11 -0
- package/lib/components/overlay/components/dialog/services/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/services/public-api.d.ts +2 -0
- package/lib/components/overlay/components/dialog/types/dialog.types.d.ts +142 -0
- package/lib/components/overlay/components/dialog/types/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/utils/dialog-config.d.ts +2 -0
- package/lib/components/overlay/components/dialog/utils/dialog-ref.d.ts +31 -0
- package/lib/components/overlay/components/dialog/utils/dialog.utils.d.ts +13 -0
- package/lib/components/overlay/components/dialog/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/utils/public-api.d.ts +3 -0
- package/lib/components/overlay/components/index.d.ts +1 -0
- package/lib/components/overlay/components/public-api.d.ts +4 -0
- package/lib/components/overlay/components/toggletip/components/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/toggletip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.d.ts +19 -0
- package/lib/components/overlay/components/toggletip/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/constants/toggletip.constants.d.ts +6 -0
- package/lib/components/overlay/components/toggletip/directives/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/toggletip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +38 -0
- package/lib/components/overlay/components/toggletip/public-api.d.ts +6 -0
- package/lib/components/overlay/components/toggletip/toggletip.imports.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/types/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/types/toggletip.types.d.ts +31 -0
- package/lib/components/overlay/components/toggletip/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/utils/public-api.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/utils/toggletip-config.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/utils/toggletip.util.d.ts +5 -0
- package/lib/components/overlay/components/tooltip/components/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.d.ts +19 -0
- package/lib/components/overlay/components/tooltip/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/constants/tooltip.constants.d.ts +6 -0
- package/lib/components/overlay/components/tooltip/directives/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/tooltip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +44 -0
- package/lib/components/overlay/components/tooltip/public-api.d.ts +6 -0
- package/lib/components/overlay/components/tooltip/tooltip.imports.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/types/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/types/tooltip.types.d.ts +31 -0
- package/lib/components/overlay/components/tooltip/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/utils/public-api.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/utils/tooltip-config.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/utils/tooltip.util.d.ts +5 -0
- package/lib/components/overlay/public-api.d.ts +3 -0
- package/lib/components/overlay/services/dynamic-overlay.service.d.ts +17 -0
- package/lib/components/overlay/services/public-api.d.ts +1 -0
- package/lib/components/overlay/types/dynamic-overlay.types.d.ts +8 -0
- package/lib/components/overlay/types/index.d.ts +1 -0
- package/lib/components/overlay/types/public-api.d.ts +1 -0
- package/lib/components/pagination/components/index.d.ts +1 -0
- package/lib/components/pagination/components/pagination/pagination.component.d.ts +31 -0
- package/lib/components/pagination/components/pagination/public-api.d.ts +1 -0
- package/lib/components/pagination/components/public-api.d.ts +1 -0
- package/lib/components/pagination/pagination.imports.d.ts +2 -0
- package/lib/components/pagination/partials/index.d.ts +1 -0
- package/lib/components/pagination/partials/pagination-link/pagination-link.directive.d.ts +10 -0
- package/lib/components/pagination/partials/pagination-link/public-api.d.ts +1 -0
- package/lib/components/pagination/partials/public-api.d.ts +1 -0
- package/lib/components/pagination/public-api.d.ts +4 -0
- package/lib/components/pagination/services/index.d.ts +1 -0
- package/lib/components/pagination/services/pagination-head.service.d.ts +16 -0
- package/lib/components/pagination/services/public-api.d.ts +1 -0
- package/lib/components/pagination/types/index.d.ts +1 -0
- package/lib/components/pagination/types/pagination.types.d.ts +18 -0
- package/lib/components/pagination/types/public-api.d.ts +1 -0
- package/lib/components/pagination/utils/index.d.ts +1 -0
- package/lib/components/pagination/utils/pagination.util.d.ts +2 -0
- package/lib/components/pagination/utils/public-api.d.ts +1 -0
- package/lib/components/picture/picture-data.directive.d.ts +21 -0
- package/lib/components/picture/picture.component.d.ts +12 -0
- package/lib/components/picture/picture.component.types.d.ts +4 -0
- package/lib/components/picture/public-api.d.ts +3 -0
- package/lib/components/progress-spinner/progress-spinner.component.d.ts +35 -0
- package/lib/components/progress-spinner/public-api.d.ts +1 -0
- package/lib/components/public-api.d.ts +15 -0
- package/lib/components/scrollable/components/index.d.ts +1 -0
- package/lib/components/scrollable/components/public-api.d.ts +1 -0
- package/lib/components/scrollable/components/scrollable/public-api.d.ts +1 -0
- package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +38 -0
- package/lib/components/scrollable/index.d.ts +1 -0
- package/lib/components/scrollable/public-api.d.ts +2 -0
- package/lib/components/scrollable/scrollable.imports.d.ts +2 -0
- package/lib/components/skeleton/components/index.d.ts +1 -0
- package/lib/components/skeleton/components/public-api.d.ts +1 -0
- package/lib/components/skeleton/components/skeleton/public-api.d.ts +1 -0
- package/lib/components/skeleton/components/skeleton/skeleton.component.d.ts +10 -0
- package/lib/components/skeleton/partials/index.d.ts +1 -0
- package/lib/components/skeleton/partials/public-api.d.ts +1 -0
- package/lib/components/skeleton/partials/skeleton-item/public-api.d.ts +1 -0
- package/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.d.ts +6 -0
- package/lib/components/skeleton/public-api.d.ts +3 -0
- package/lib/components/skeleton/skeleton.imports.d.ts +3 -0
- package/lib/components/sort/components/index.d.ts +1 -0
- package/lib/components/sort/components/public-api.d.ts +1 -0
- package/lib/components/sort/components/sort-header/public-api.d.ts +2 -0
- package/lib/components/sort/components/sort-header/sort-header.component.d.ts +56 -0
- package/lib/components/sort/components/sort-header/sort-header.types.d.ts +9 -0
- package/lib/components/sort/index.d.ts +1 -0
- package/lib/components/sort/partials/index.d.ts +1 -0
- package/lib/components/sort/partials/public-api.d.ts +1 -0
- package/lib/components/sort/partials/sort/public-api.d.ts +2 -0
- package/lib/components/sort/partials/sort/sort.directive.d.ts +43 -0
- package/lib/components/sort/partials/sort/sort.types.d.ts +15 -0
- package/lib/components/sort/public-api.d.ts +5 -0
- package/lib/components/sort/services/index.d.ts +1 -0
- package/lib/components/sort/services/public-api.d.ts +1 -0
- package/lib/components/sort/services/sort-header-intl.d.ts +14 -0
- package/lib/components/sort/sort.imports.d.ts +8 -0
- package/lib/components/sort/types/index.d.ts +1 -0
- package/lib/components/sort/types/public-api.d.ts +1 -0
- package/lib/components/sort/types/sort-direction.d.ts +1 -0
- package/lib/components/table/components/index.d.ts +1 -0
- package/lib/components/table/components/public-api.d.ts +1 -0
- package/lib/components/table/components/table/public-api.d.ts +1 -0
- package/lib/components/table/components/table/table.component.d.ts +26 -0
- package/lib/components/table/constants/index.d.ts +1 -0
- package/lib/components/table/constants/public-api.d.ts +1 -0
- package/lib/components/table/constants/table-data-source.constants.d.ts +1 -0
- package/lib/components/table/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell/cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/cell/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/cell-def/cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/cell-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/column-def/column-def.directive.d.ts +12 -0
- package/lib/components/table/partials/cells/column-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/column-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/footer-cell/footer-cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/footer-cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/footer-cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell/header-cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/header-cell/index.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/header-cell-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/public-api.d.ts +8 -0
- package/lib/components/table/partials/cells/text-column/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/text-column/text-column.component.d.ts +7 -0
- package/lib/components/table/partials/index.d.ts +1 -0
- package/lib/components/table/partials/public-api.d.ts +4 -0
- package/lib/components/table/partials/rows/footer-row/footer-row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/footer-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/rows/footer-row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/header-row/header-row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/header-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/header-row-def/header-row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/rows/header-row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/no-data-row/no-data-row.directive.d.ts +7 -0
- package/lib/components/table/partials/rows/no-data-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/public-api.d.ts +8 -0
- package/lib/components/table/partials/rows/recycle-rows/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.d.ts +5 -0
- package/lib/components/table/partials/rows/row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/row/row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/row-def/row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/table-busy/public-api.d.ts +1 -0
- package/lib/components/table/partials/table-busy/table-busy.directive.d.ts +9 -0
- package/lib/components/table/partials/table-busy-outlet/public-api.d.ts +1 -0
- package/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.d.ts +10 -0
- package/lib/components/table/public-api.d.ts +6 -0
- package/lib/components/table/table.imports.d.ts +3 -0
- package/lib/components/table/types/index.d.ts +1 -0
- package/lib/components/table/types/public-api.d.ts +1 -0
- package/lib/components/table/types/table-data-source.types.d.ts +15 -0
- package/lib/components/table/utils/public-api.d.ts +1 -0
- package/lib/components/table/utils/table-data-source.d.ts +33 -0
- package/lib/components/tabs/animations/index.d.ts +1 -0
- package/lib/components/tabs/animations/public-api.d.ts +1 -0
- package/lib/components/tabs/animations/tabs.animations.d.ts +4 -0
- package/lib/components/tabs/components/index.d.ts +1 -0
- package/lib/components/tabs/components/inline-tabs/inline-tabs.component.d.ts +72 -0
- package/lib/components/tabs/components/inline-tabs/public-api.d.ts +1 -0
- package/lib/components/tabs/components/nav-tabs/nav-tabs.component.d.ts +28 -0
- package/lib/components/tabs/components/nav-tabs/public-api.d.ts +1 -0
- package/lib/components/tabs/components/public-api.d.ts +2 -0
- package/lib/components/tabs/partials/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.d.ts +41 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.d.ts +39 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.d.ts +8 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.d.ts +9 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.d.ts +19 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.d.ts +11 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.d.ts +17 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/public-api.d.ts +7 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.d.ts +48 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.d.ts +10 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/public-api.d.ts +2 -0
- package/lib/components/tabs/partials/public-api.d.ts +2 -0
- package/lib/components/tabs/public-api.d.ts +6 -0
- package/lib/components/tabs/tab.imports.d.ts +3 -0
- package/lib/components/tabs/types/public-api.d.ts +1 -0
- package/lib/components/tabs/types/tab-config.types.d.ts +8 -0
- package/lib/components/tabs/utils/active-tab-underline.util.d.ts +41 -0
- package/lib/components/tabs/utils/index.d.ts +1 -0
- package/lib/components/tabs/utils/paginated-tab-header.directive.d.ts +79 -0
- package/lib/components/tabs/utils/public-api.d.ts +2 -0
- package/lib/public-api.d.ts +3 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/public-api.d.ts +1 -0
- package/lib/services/swipe-handler.service.d.ts +12 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/public-api.d.ts +1 -0
- package/lib/types/swipe.types.d.ts +19 -0
- package/package.json +37 -0
- package/src/lib/styles/active-tab-underline.css +50 -0
- package/src/lib/styles/cdk.css +11 -0
- package/src/lib/styles/easing.css +40 -0
- package/src/lib/styles/index.css +3 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { ContentChild, ContentChildren, Directive, forwardRef, inject, InjectionToken, } from '@angular/core';
|
|
2
|
+
import { DestroyService, TypedQueryList } from '@ethlete/core';
|
|
3
|
+
import { BehaviorSubject, combineLatest, map, of, startWith, switchMap, takeUntil, tap, withLatestFrom, } from 'rxjs';
|
|
4
|
+
import { CheckboxGroupControlDirective, CHECKBOX_GROUP_CONTROL_TOKEN, } from '../checkbox-group-control/checkbox-group-control.directive';
|
|
5
|
+
import { CHECKBOX_TOKEN } from '../checkbox/checkbox.directive';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export const CHECKBOX_GROUP_TOKEN = new InjectionToken('ET_CHECKBOX_GROUP_DIRECTIVE_TOKEN');
|
|
8
|
+
export class CheckboxGroupDirective {
|
|
9
|
+
constructor() {
|
|
10
|
+
this._destroy$ = inject(DestroyService, { host: true }).destroy$;
|
|
11
|
+
this.checkboxesWithoutGroupCtrlObservable$ = new BehaviorSubject(null);
|
|
12
|
+
this.checkboxesWithoutGroupCtrl$ = this.checkboxesWithoutGroupCtrlObservable$.pipe(switchMap((value) => value ?? of([])));
|
|
13
|
+
}
|
|
14
|
+
ngAfterContentInit() {
|
|
15
|
+
if (!this.groupControl) {
|
|
16
|
+
console.warn('A checkbox group without a group control is totally useless.');
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
if (!this.checkboxes) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
this.checkboxesWithoutGroupCtrlObservable$.next(this.checkboxes.changes.pipe(startWith(this.checkboxes), map((queryList) => queryList.toArray().filter((cb) => cb.input.id !== this.groupControl?.checkbox.input.id))));
|
|
23
|
+
if (this.groupControl.input.usesImplicitControl) {
|
|
24
|
+
this.checkboxesWithoutGroupCtrl$
|
|
25
|
+
.pipe(switchMap((checkboxes) => combineLatest(checkboxes.map((checkbox) => checkbox.input.disabled$))), map((disabledMap) => disabledMap.every((disabled) => disabled)), tap((allDisabled) => this.groupControl?.input._updateDisabled(allDisabled)), takeUntil(this._destroy$))
|
|
26
|
+
.subscribe();
|
|
27
|
+
}
|
|
28
|
+
this._monitorCheckboxes();
|
|
29
|
+
}
|
|
30
|
+
_monitorCheckboxes() {
|
|
31
|
+
if (!this.checkboxesWithoutGroupCtrl$) {
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
this.checkboxesWithoutGroupCtrl$
|
|
35
|
+
.pipe(takeUntil(this._destroy$), switchMap((checkboxes) => combineLatest(checkboxes.map((checkbox) => checkbox.input.value$)).pipe(tap((checkStates) => {
|
|
36
|
+
if (!this.groupControl) {
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
const allChecked = checkStates.every((checked) => checked);
|
|
40
|
+
const allUnchecked = checkStates.every((checked) => !checked);
|
|
41
|
+
if (allChecked) {
|
|
42
|
+
this.groupControl.input._updateValue(true);
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
this.groupControl.input._updateValue(false, { emitEvent: false });
|
|
46
|
+
}
|
|
47
|
+
this.groupControl.checkbox.indeterminate$.next(!allChecked && !allUnchecked);
|
|
48
|
+
}))))
|
|
49
|
+
.subscribe();
|
|
50
|
+
this.groupControl?.input.valueChange$
|
|
51
|
+
.pipe(startWith(this.groupControl?.input.value), withLatestFrom(this.checkboxesWithoutGroupCtrl$), takeUntil(this._destroy$), tap(([checked, checkboxes]) => {
|
|
52
|
+
for (const checkbox of checkboxes ?? []) {
|
|
53
|
+
if (checkbox.input.id !== this.groupControl?.input.id) {
|
|
54
|
+
checkbox.input._updateValue(!!checked);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}))
|
|
58
|
+
.subscribe();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
CheckboxGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: CheckboxGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
62
|
+
CheckboxGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: CheckboxGroupDirective, isStandalone: true, host: { attributes: { "role": "group" } }, providers: [DestroyService, { provide: CHECKBOX_GROUP_TOKEN, useExisting: CheckboxGroupDirective }], queries: [{ propertyName: "groupControl", first: true, predicate: i0.forwardRef(function () { return CHECKBOX_GROUP_CONTROL_TOKEN; }), descendants: true }, { propertyName: "checkboxes", predicate: i0.forwardRef(function () { return CHECKBOX_TOKEN; }), descendants: true }], exportAs: ["etCheckboxGroup"], ngImport: i0 });
|
|
63
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: CheckboxGroupDirective, decorators: [{
|
|
64
|
+
type: Directive,
|
|
65
|
+
args: [{
|
|
66
|
+
standalone: true,
|
|
67
|
+
host: {
|
|
68
|
+
role: 'group',
|
|
69
|
+
},
|
|
70
|
+
exportAs: 'etCheckboxGroup',
|
|
71
|
+
providers: [DestroyService, { provide: CHECKBOX_GROUP_TOKEN, useExisting: CheckboxGroupDirective }],
|
|
72
|
+
}]
|
|
73
|
+
}], propDecorators: { checkboxes: [{
|
|
74
|
+
type: ContentChildren,
|
|
75
|
+
args: [forwardRef(() => CHECKBOX_TOKEN), { descendants: true }]
|
|
76
|
+
}], groupControl: [{
|
|
77
|
+
type: ContentChild,
|
|
78
|
+
args: [forwardRef(() => CHECKBOX_GROUP_CONTROL_TOKEN)]
|
|
79
|
+
}] } });
|
|
80
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtZ3JvdXAuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvY2hlY2tib3gvZGlyZWN0aXZlcy9jaGVja2JveC1ncm91cC9jaGVja2JveC1ncm91cC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUVMLFlBQVksRUFDWixlQUFlLEVBQ2YsU0FBUyxFQUNULFVBQVUsRUFDVixNQUFNLEVBQ04sY0FBYyxHQUNmLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxjQUFjLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9ELE9BQU8sRUFDTCxlQUFlLEVBQ2YsYUFBYSxFQUNiLEdBQUcsRUFFSCxFQUFFLEVBQ0YsU0FBUyxFQUNULFNBQVMsRUFDVCxTQUFTLEVBQ1QsR0FBRyxFQUNILGNBQWMsR0FDZixNQUFNLE1BQU0sQ0FBQztBQUNkLE9BQU8sRUFDTCw2QkFBNkIsRUFDN0IsNEJBQTRCLEdBQzdCLE1BQU0sNERBQTRELENBQUM7QUFDcEUsT0FBTyxFQUFxQixjQUFjLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQzs7QUFFbkYsTUFBTSxDQUFDLE1BQU0sb0JBQW9CLEdBQUcsSUFBSSxjQUFjLENBQXlCLG1DQUFtQyxDQUFDLENBQUM7QUFVcEgsTUFBTSxPQUFPLHNCQUFzQjtJQVJuQztRQVNtQixjQUFTLEdBQUcsTUFBTSxDQUFDLGNBQWMsRUFBRSxFQUFFLElBQUksRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDLFFBQVEsQ0FBQztRQVFwRSwwQ0FBcUMsR0FBRyxJQUFJLGVBQWUsQ0FBeUMsSUFBSSxDQUFDLENBQUM7UUFFMUcsZ0NBQTJCLEdBQUcsSUFBSSxDQUFDLHFDQUFxQyxDQUFDLElBQUksQ0FDcEYsU0FBUyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLElBQUksRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQ3RDLENBQUM7S0ErRUg7SUE3RUMsa0JBQWtCO1FBQ2hCLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxJQUFJLENBQUMsOERBQThELENBQUMsQ0FBQztZQUM3RSxPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNwQixPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMscUNBQXFDLENBQUMsSUFBSSxDQUM3QyxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQzFCLFNBQVMsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLEVBQzFCLEdBQUcsQ0FBQyxDQUFDLFNBQVMsRUFBRSxFQUFFLENBQUMsU0FBUyxDQUFDLE9BQU8sRUFBRSxDQUFDLE1BQU0sQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxFQUFFLEtBQUssSUFBSSxDQUFDLFlBQVksRUFBRSxRQUFRLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQzdHLENBQ0YsQ0FBQztRQUVGLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsbUJBQW1CLEVBQUU7WUFDL0MsSUFBSSxDQUFDLDJCQUEyQjtpQkFDN0IsSUFBSSxDQUNILFNBQVMsQ0FBQyxDQUFDLFVBQVUsRUFBRSxFQUFFLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUNoRyxHQUFHLENBQUMsQ0FBQyxXQUFXLEVBQUUsRUFBRSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQy9ELEdBQUcsQ0FBQyxDQUFDLFdBQVcsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxLQUFLLENBQUMsZUFBZSxDQUFDLFdBQVcsQ0FBQyxDQUFDLEVBQzNFLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQzFCO2lCQUNBLFNBQVMsRUFBRSxDQUFDO1NBQ2hCO1FBRUQsSUFBSSxDQUFDLGtCQUFrQixFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUVPLGtCQUFrQjtRQUN4QixJQUFJLENBQUMsSUFBSSxDQUFDLDJCQUEyQixFQUFFO1lBQ3JDLE9BQU87U0FDUjtRQUVELElBQUksQ0FBQywyQkFBMkI7YUFDN0IsSUFBSSxDQUNILFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEVBQ3pCLFNBQVMsQ0FBQyxDQUFDLFVBQVUsRUFBRSxFQUFFLENBQ3ZCLGFBQWEsQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUNyRSxHQUFHLENBQUMsQ0FBQyxXQUFXLEVBQUUsRUFBRTtZQUNsQixJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRTtnQkFDdEIsT0FBTzthQUNSO1lBRUQsTUFBTSxVQUFVLEdBQUcsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDM0QsTUFBTSxZQUFZLEdBQUcsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUU5RCxJQUFJLFVBQVUsRUFBRTtnQkFDZCxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7YUFDNUM7aUJBQU07Z0JBQ0wsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLEtBQUssRUFBRSxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDO2FBQ25FO1lBRUQsSUFBSSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxDQUFDLFVBQVUsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQy9FLENBQUMsQ0FBQyxDQUNILENBQ0YsQ0FDRjthQUNBLFNBQVMsRUFBRSxDQUFDO1FBRWYsSUFBSSxDQUFDLFlBQVksRUFBRSxLQUFLLENBQUMsWUFBWTthQUNsQyxJQUFJLENBQ0gsU0FBUyxDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsS0FBSyxDQUFDLEtBQUssQ0FBQyxFQUN6QyxjQUFjLENBQUMsSUFBSSxDQUFDLDJCQUEyQixDQUFDLEVBQ2hELFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEVBQ3pCLEdBQUcsQ0FBQyxDQUFDLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQyxFQUFFLEVBQUU7WUFDNUIsS0FBSyxNQUFNLFFBQVEsSUFBSSxVQUFVLElBQUksRUFBRSxFQUFFO2dCQUN2QyxJQUFJLFFBQVEsQ0FBQyxLQUFLLENBQUMsRUFBRSxLQUFLLElBQUksQ0FBQyxZQUFZLEVBQUUsS0FBSyxDQUFDLEVBQUUsRUFBRTtvQkFDckQsUUFBUSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDO2lCQUN4QzthQUNGO1FBQ0gsQ0FBQyxDQUFDLENBQ0g7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDOzttSEEzRlUsc0JBQXNCO3VHQUF0QixzQkFBc0IsNEVBRnRCLENBQUMsY0FBYyxFQUFFLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsRUFBRSxzQkFBc0IsRUFBRSxDQUFDLHVHQVFwRSw0QkFBNEIsdUdBSHpCLGNBQWM7MkZBSHJDLHNCQUFzQjtrQkFSbEMsU0FBUzttQkFBQztvQkFDVCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsSUFBSSxFQUFFO3dCQUNKLElBQUksRUFBRSxPQUFPO3FCQUNkO29CQUNELFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFNBQVMsRUFBRSxDQUFDLGNBQWMsRUFBRSxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLHdCQUF3QixFQUFFLENBQUM7aUJBQ3BHOzhCQUtVLFVBQVU7c0JBRGxCLGVBQWU7dUJBQUMsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLGNBQWMsQ0FBQyxFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRTtnQkFJL0QsWUFBWTtzQkFEcEIsWUFBWTt1QkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsNEJBQTRCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlckNvbnRlbnRJbml0LFxuICBDb250ZW50Q2hpbGQsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgRGlyZWN0aXZlLFxuICBmb3J3YXJkUmVmLFxuICBpbmplY3QsXG4gIEluamVjdGlvblRva2VuLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERlc3Ryb3lTZXJ2aWNlLCBUeXBlZFF1ZXJ5TGlzdCB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHtcbiAgQmVoYXZpb3JTdWJqZWN0LFxuICBjb21iaW5lTGF0ZXN0LFxuICBtYXAsXG4gIE9ic2VydmFibGUsXG4gIG9mLFxuICBzdGFydFdpdGgsXG4gIHN3aXRjaE1hcCxcbiAgdGFrZVVudGlsLFxuICB0YXAsXG4gIHdpdGhMYXRlc3RGcm9tLFxufSBmcm9tICdyeGpzJztcbmltcG9ydCB7XG4gIENoZWNrYm94R3JvdXBDb250cm9sRGlyZWN0aXZlLFxuICBDSEVDS0JPWF9HUk9VUF9DT05UUk9MX1RPS0VOLFxufSBmcm9tICcuLi9jaGVja2JveC1ncm91cC1jb250cm9sL2NoZWNrYm94LWdyb3VwLWNvbnRyb2wuZGlyZWN0aXZlJztcbmltcG9ydCB7IENoZWNrYm94RGlyZWN0aXZlLCBDSEVDS0JPWF9UT0tFTiB9IGZyb20gJy4uL2NoZWNrYm94L2NoZWNrYm94LmRpcmVjdGl2ZSc7XG5cbmV4cG9ydCBjb25zdCBDSEVDS0JPWF9HUk9VUF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxDaGVja2JveEdyb3VwRGlyZWN0aXZlPignRVRfQ0hFQ0tCT1hfR1JPVVBfRElSRUNUSVZFX1RPS0VOJyk7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBob3N0OiB7XG4gICAgcm9sZTogJ2dyb3VwJyxcbiAgfSxcbiAgZXhwb3J0QXM6ICdldENoZWNrYm94R3JvdXAnLFxuICBwcm92aWRlcnM6IFtEZXN0cm95U2VydmljZSwgeyBwcm92aWRlOiBDSEVDS0JPWF9HUk9VUF9UT0tFTiwgdXNlRXhpc3Rpbmc6IENoZWNrYm94R3JvdXBEaXJlY3RpdmUgfV0sXG59KVxuZXhwb3J0IGNsYXNzIENoZWNrYm94R3JvdXBEaXJlY3RpdmUgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveSQgPSBpbmplY3QoRGVzdHJveVNlcnZpY2UsIHsgaG9zdDogdHJ1ZSB9KS5kZXN0cm95JDtcblxuICBAQ29udGVudENoaWxkcmVuKGZvcndhcmRSZWYoKCkgPT4gQ0hFQ0tCT1hfVE9LRU4pLCB7IGRlc2NlbmRhbnRzOiB0cnVlIH0pXG4gIHJlYWRvbmx5IGNoZWNrYm94ZXM/OiBUeXBlZFF1ZXJ5TGlzdDxDaGVja2JveERpcmVjdGl2ZT47XG5cbiAgQENvbnRlbnRDaGlsZChmb3J3YXJkUmVmKCgpID0+IENIRUNLQk9YX0dST1VQX0NPTlRST0xfVE9LRU4pKVxuICByZWFkb25seSBncm91cENvbnRyb2w/OiBDaGVja2JveEdyb3VwQ29udHJvbERpcmVjdGl2ZTtcblxuICByZWFkb25seSBjaGVja2JveGVzV2l0aG91dEdyb3VwQ3RybE9ic2VydmFibGUkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxPYnNlcnZhYmxlPENoZWNrYm94RGlyZWN0aXZlW10+IHwgbnVsbD4obnVsbCk7XG5cbiAgcmVhZG9ubHkgY2hlY2tib3hlc1dpdGhvdXRHcm91cEN0cmwkID0gdGhpcy5jaGVja2JveGVzV2l0aG91dEdyb3VwQ3RybE9ic2VydmFibGUkLnBpcGUoXG4gICAgc3dpdGNoTWFwKCh2YWx1ZSkgPT4gdmFsdWUgPz8gb2YoW10pKSxcbiAgKTtcblxuICBuZ0FmdGVyQ29udGVudEluaXQoKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLmdyb3VwQ29udHJvbCkge1xuICAgICAgY29uc29sZS53YXJuKCdBIGNoZWNrYm94IGdyb3VwIHdpdGhvdXQgYSBncm91cCBjb250cm9sIGlzIHRvdGFsbHkgdXNlbGVzcy4nKTtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBpZiAoIXRoaXMuY2hlY2tib3hlcykge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRoaXMuY2hlY2tib3hlc1dpdGhvdXRHcm91cEN0cmxPYnNlcnZhYmxlJC5uZXh0KFxuICAgICAgdGhpcy5jaGVja2JveGVzLmNoYW5nZXMucGlwZShcbiAgICAgICAgc3RhcnRXaXRoKHRoaXMuY2hlY2tib3hlcyksXG4gICAgICAgIG1hcCgocXVlcnlMaXN0KSA9PiBxdWVyeUxpc3QudG9BcnJheSgpLmZpbHRlcigoY2IpID0+IGNiLmlucHV0LmlkICE9PSB0aGlzLmdyb3VwQ29udHJvbD8uY2hlY2tib3guaW5wdXQuaWQpKSxcbiAgICAgICksXG4gICAgKTtcblxuICAgIGlmICh0aGlzLmdyb3VwQ29udHJvbC5pbnB1dC51c2VzSW1wbGljaXRDb250cm9sKSB7XG4gICAgICB0aGlzLmNoZWNrYm94ZXNXaXRob3V0R3JvdXBDdHJsJFxuICAgICAgICAucGlwZShcbiAgICAgICAgICBzd2l0Y2hNYXAoKGNoZWNrYm94ZXMpID0+IGNvbWJpbmVMYXRlc3QoY2hlY2tib3hlcy5tYXAoKGNoZWNrYm94KSA9PiBjaGVja2JveC5pbnB1dC5kaXNhYmxlZCQpKSksXG4gICAgICAgICAgbWFwKChkaXNhYmxlZE1hcCkgPT4gZGlzYWJsZWRNYXAuZXZlcnkoKGRpc2FibGVkKSA9PiBkaXNhYmxlZCkpLFxuICAgICAgICAgIHRhcCgoYWxsRGlzYWJsZWQpID0+IHRoaXMuZ3JvdXBDb250cm9sPy5pbnB1dC5fdXBkYXRlRGlzYWJsZWQoYWxsRGlzYWJsZWQpKSxcbiAgICAgICAgICB0YWtlVW50aWwodGhpcy5fZGVzdHJveSQpLFxuICAgICAgICApXG4gICAgICAgIC5zdWJzY3JpYmUoKTtcbiAgICB9XG5cbiAgICB0aGlzLl9tb25pdG9yQ2hlY2tib3hlcygpO1xuICB9XG5cbiAgcHJpdmF0ZSBfbW9uaXRvckNoZWNrYm94ZXMoKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLmNoZWNrYm94ZXNXaXRob3V0R3JvdXBDdHJsJCkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRoaXMuY2hlY2tib3hlc1dpdGhvdXRHcm91cEN0cmwkXG4gICAgICAucGlwZShcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kkKSxcbiAgICAgICAgc3dpdGNoTWFwKChjaGVja2JveGVzKSA9PlxuICAgICAgICAgIGNvbWJpbmVMYXRlc3QoY2hlY2tib3hlcy5tYXAoKGNoZWNrYm94KSA9PiBjaGVja2JveC5pbnB1dC52YWx1ZSQpKS5waXBlKFxuICAgICAgICAgICAgdGFwKChjaGVja1N0YXRlcykgPT4ge1xuICAgICAgICAgICAgICBpZiAoIXRoaXMuZ3JvdXBDb250cm9sKSB7XG4gICAgICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgY29uc3QgYWxsQ2hlY2tlZCA9IGNoZWNrU3RhdGVzLmV2ZXJ5KChjaGVja2VkKSA9PiBjaGVja2VkKTtcbiAgICAgICAgICAgICAgY29uc3QgYWxsVW5jaGVja2VkID0gY2hlY2tTdGF0ZXMuZXZlcnkoKGNoZWNrZWQpID0+ICFjaGVja2VkKTtcblxuICAgICAgICAgICAgICBpZiAoYWxsQ2hlY2tlZCkge1xuICAgICAgICAgICAgICAgIHRoaXMuZ3JvdXBDb250cm9sLmlucHV0Ll91cGRhdGVWYWx1ZSh0cnVlKTtcbiAgICAgICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgICAgICB0aGlzLmdyb3VwQ29udHJvbC5pbnB1dC5fdXBkYXRlVmFsdWUoZmFsc2UsIHsgZW1pdEV2ZW50OiBmYWxzZSB9KTtcbiAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgIHRoaXMuZ3JvdXBDb250cm9sLmNoZWNrYm94LmluZGV0ZXJtaW5hdGUkLm5leHQoIWFsbENoZWNrZWQgJiYgIWFsbFVuY2hlY2tlZCk7XG4gICAgICAgICAgICB9KSxcbiAgICAgICAgICApLFxuICAgICAgICApLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuXG4gICAgdGhpcy5ncm91cENvbnRyb2w/LmlucHV0LnZhbHVlQ2hhbmdlJFxuICAgICAgLnBpcGUoXG4gICAgICAgIHN0YXJ0V2l0aCh0aGlzLmdyb3VwQ29udHJvbD8uaW5wdXQudmFsdWUpLFxuICAgICAgICB3aXRoTGF0ZXN0RnJvbSh0aGlzLmNoZWNrYm94ZXNXaXRob3V0R3JvdXBDdHJsJCksXG4gICAgICAgIHRha2VVbnRpbCh0aGlzLl9kZXN0cm95JCksXG4gICAgICAgIHRhcCgoW2NoZWNrZWQsIGNoZWNrYm94ZXNdKSA9PiB7XG4gICAgICAgICAgZm9yIChjb25zdCBjaGVja2JveCBvZiBjaGVja2JveGVzID8/IFtdKSB7XG4gICAgICAgICAgICBpZiAoY2hlY2tib3guaW5wdXQuaWQgIT09IHRoaXMuZ3JvdXBDb250cm9sPy5pbnB1dC5pZCkge1xuICAgICAgICAgICAgICBjaGVja2JveC5pbnB1dC5fdXBkYXRlVmFsdWUoISFjaGVja2VkKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIH0pLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9jaGVja2JveC9kaXJlY3RpdmVzL2NoZWNrYm94LWdyb3VwL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './checkbox-group.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2NoZWNrYm94L2RpcmVjdGl2ZXMvY2hlY2tib3gtZ3JvdXAvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jaGVja2JveC1ncm91cC5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createReactiveBindings, DestroyService } from '@ethlete/core';
|
|
3
|
+
import { map, of } from 'rxjs';
|
|
4
|
+
import { INPUT_TOKEN } from '../../../../directives';
|
|
5
|
+
import { CHECKBOX_TOKEN } from '../checkbox';
|
|
6
|
+
import { CHECKBOX_GROUP_TOKEN } from '../checkbox-group';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export const CHECKBOX_GROUP_CONTROL_TOKEN = new InjectionToken('ET_CHECKBOX_GROUP_CONTROL_TOKEN');
|
|
9
|
+
export class CheckboxGroupControlDirective {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.checkbox = inject(CHECKBOX_TOKEN);
|
|
12
|
+
this.input = inject(INPUT_TOKEN);
|
|
13
|
+
this.group = inject(CHECKBOX_GROUP_TOKEN);
|
|
14
|
+
this._bindings = createReactiveBindings();
|
|
15
|
+
}
|
|
16
|
+
ngAfterContentInit() {
|
|
17
|
+
this._bindings.push({
|
|
18
|
+
attribute: ['aria-controls'],
|
|
19
|
+
elementRef: this.input.nativeInputRef?.element,
|
|
20
|
+
observable: this.group.checkboxesWithoutGroupCtrl$.pipe(map((checkboxes) => ({
|
|
21
|
+
render: true,
|
|
22
|
+
value: checkboxes.map((checkbox) => checkbox.input.id).join(' '),
|
|
23
|
+
}))) ?? of(false),
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
CheckboxGroupControlDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: CheckboxGroupControlDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
28
|
+
CheckboxGroupControlDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: CheckboxGroupControlDirective, isStandalone: true, selector: "[etCheckboxGroupControl]", providers: [{ provide: CHECKBOX_GROUP_CONTROL_TOKEN, useExisting: CheckboxGroupControlDirective }, DestroyService], exportAs: ["etCheckboxGroupControl"], ngImport: i0 });
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: CheckboxGroupControlDirective, decorators: [{
|
|
30
|
+
type: Directive,
|
|
31
|
+
args: [{
|
|
32
|
+
selector: '[etCheckboxGroupControl]',
|
|
33
|
+
standalone: true,
|
|
34
|
+
exportAs: 'etCheckboxGroupControl',
|
|
35
|
+
providers: [{ provide: CHECKBOX_GROUP_CONTROL_TOKEN, useExisting: CheckboxGroupControlDirective }, DestroyService],
|
|
36
|
+
}]
|
|
37
|
+
}] });
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtZ3JvdXAtY29udHJvbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9jaGVja2JveC9kaXJlY3RpdmVzL2NoZWNrYm94LWdyb3VwLWNvbnRyb2wvY2hlY2tib3gtZ3JvdXAtY29udHJvbC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFvQixTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxHQUFHLEVBQUUsRUFBRSxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBa0IsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDckUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUM3QyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7QUFFekQsTUFBTSxDQUFDLE1BQU0sNEJBQTRCLEdBQUcsSUFBSSxjQUFjLENBQzVELGlDQUFpQyxDQUNsQyxDQUFDO0FBUUYsTUFBTSxPQUFPLDZCQUE2QjtJQU4xQztRQU9XLGFBQVEsR0FBRyxNQUFNLENBQUMsY0FBYyxDQUFDLENBQUM7UUFDbEMsVUFBSyxHQUFHLE1BQU0sQ0FBMEIsV0FBVyxDQUFDLENBQUM7UUFDckQsVUFBSyxHQUFHLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1FBRXJDLGNBQVMsR0FBRyxzQkFBc0IsRUFBRSxDQUFDO0tBZS9DO0lBYkMsa0JBQWtCO1FBQ2hCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDO1lBQ2xCLFNBQVMsRUFBRSxDQUFDLGVBQWUsQ0FBQztZQUM1QixVQUFVLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUUsT0FBTztZQUM5QyxVQUFVLEVBQ1IsSUFBSSxDQUFDLEtBQUssQ0FBQywyQkFBMkIsQ0FBQyxJQUFJLENBQ3pDLEdBQUcsQ0FBQyxDQUFDLFVBQVUsRUFBRSxFQUFFLENBQUMsQ0FBQztnQkFDbkIsTUFBTSxFQUFFLElBQUk7Z0JBQ1osS0FBSyxFQUFFLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQzthQUNqRSxDQUFDLENBQUMsQ0FDSixJQUFJLEVBQUUsQ0FBQyxLQUFLLENBQUM7U0FDakIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7MEhBbkJVLDZCQUE2Qjs4R0FBN0IsNkJBQTZCLHVFQUY3QixDQUFDLEVBQUUsT0FBTyxFQUFFLDRCQUE0QixFQUFFLFdBQVcsRUFBRSw2QkFBNkIsRUFBRSxFQUFFLGNBQWMsQ0FBQzsyRkFFdkcsNkJBQTZCO2tCQU56QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSwwQkFBMEI7b0JBQ3BDLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsd0JBQXdCO29CQUNsQyxTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxXQUFXLCtCQUErQixFQUFFLEVBQUUsY0FBYyxDQUFDO2lCQUNuSCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFmdGVyQ29udGVudEluaXQsIERpcmVjdGl2ZSwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgY3JlYXRlUmVhY3RpdmVCaW5kaW5ncywgRGVzdHJveVNlcnZpY2UgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IG1hcCwgb2YgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBJTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgQ0hFQ0tCT1hfVE9LRU4gfSBmcm9tICcuLi9jaGVja2JveCc7XG5pbXBvcnQgeyBDSEVDS0JPWF9HUk9VUF9UT0tFTiB9IGZyb20gJy4uL2NoZWNrYm94LWdyb3VwJztcblxuZXhwb3J0IGNvbnN0IENIRUNLQk9YX0dST1VQX0NPTlRST0xfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48Q2hlY2tib3hHcm91cENvbnRyb2xEaXJlY3RpdmU+KFxuICAnRVRfQ0hFQ0tCT1hfR1JPVVBfQ09OVFJPTF9UT0tFTicsXG4pO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZXRDaGVja2JveEdyb3VwQ29udHJvbF0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBleHBvcnRBczogJ2V0Q2hlY2tib3hHcm91cENvbnRyb2wnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENIRUNLQk9YX0dST1VQX0NPTlRST0xfVE9LRU4sIHVzZUV4aXN0aW5nOiBDaGVja2JveEdyb3VwQ29udHJvbERpcmVjdGl2ZSB9LCBEZXN0cm95U2VydmljZV0sXG59KVxuZXhwb3J0IGNsYXNzIENoZWNrYm94R3JvdXBDb250cm9sRGlyZWN0aXZlIGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCB7XG4gIHJlYWRvbmx5IGNoZWNrYm94ID0gaW5qZWN0KENIRUNLQk9YX1RPS0VOKTtcbiAgcmVhZG9ubHkgaW5wdXQgPSBpbmplY3Q8SW5wdXREaXJlY3RpdmU8Ym9vbGVhbj4+KElOUFVUX1RPS0VOKTtcbiAgcmVhZG9ubHkgZ3JvdXAgPSBpbmplY3QoQ0hFQ0tCT1hfR1JPVVBfVE9LRU4pO1xuXG4gIHJlYWRvbmx5IF9iaW5kaW5ncyA9IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MoKTtcblxuICBuZ0FmdGVyQ29udGVudEluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5fYmluZGluZ3MucHVzaCh7XG4gICAgICBhdHRyaWJ1dGU6IFsnYXJpYS1jb250cm9scyddLFxuICAgICAgZWxlbWVudFJlZjogdGhpcy5pbnB1dC5uYXRpdmVJbnB1dFJlZj8uZWxlbWVudCxcbiAgICAgIG9ic2VydmFibGU6XG4gICAgICAgIHRoaXMuZ3JvdXAuY2hlY2tib3hlc1dpdGhvdXRHcm91cEN0cmwkLnBpcGUoXG4gICAgICAgICAgbWFwKChjaGVja2JveGVzKSA9PiAoe1xuICAgICAgICAgICAgcmVuZGVyOiB0cnVlLFxuICAgICAgICAgICAgdmFsdWU6IGNoZWNrYm94ZXMubWFwKChjaGVja2JveCkgPT4gY2hlY2tib3guaW5wdXQuaWQpLmpvaW4oJyAnKSxcbiAgICAgICAgICB9KSksXG4gICAgICAgICkgPz8gb2YoZmFsc2UpLFxuICAgIH0pO1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './checkbox-group-control.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2NoZWNrYm94L2RpcmVjdGl2ZXMvY2hlY2tib3gtZ3JvdXAtY29udHJvbC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0NBQW9DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NoZWNrYm94LWdyb3VwLWNvbnRyb2wuZGlyZWN0aXZlJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9jaGVja2JveC9kaXJlY3RpdmVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './checkbox-field/public-api';
|
|
2
|
+
export * from './checkbox-group-control/public-api';
|
|
3
|
+
export * from './checkbox-group/public-api';
|
|
4
|
+
export * from './checkbox/public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2NoZWNrYm94L2RpcmVjdGl2ZXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLHVCQUF1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jaGVja2JveC1maWVsZC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vY2hlY2tib3gtZ3JvdXAtY29udHJvbC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vY2hlY2tib3gtZ3JvdXAvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2NoZWNrYm94L3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './checkbox.imports';
|
|
2
|
+
export * from './components/public-api';
|
|
3
|
+
export * from './directives/public-api';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2NoZWNrYm94L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NoZWNrYm94LmltcG9ydHMnO1xuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { AsyncPipe, JsonPipe, NgIf } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, Input, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { createReactiveBindings, DestroyService } from '@ethlete/core';
|
|
4
|
+
import { BehaviorSubject, map, of } from 'rxjs';
|
|
5
|
+
import { DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN } from '../../../../directives';
|
|
6
|
+
import { FormFieldStateService, FormGroupStateService, VALIDATOR_ERROR_SERVICE_TOKEN } from '../../../../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
let _uniqueIdCounter = 0;
|
|
9
|
+
export class ErrorComponent {
|
|
10
|
+
constructor() {
|
|
11
|
+
this._validatorErrorsService = inject(VALIDATOR_ERROR_SERVICE_TOKEN);
|
|
12
|
+
this._formFieldOrGroupStateService = inject(FormFieldStateService, { optional: true }) ?? inject(FormGroupStateService);
|
|
13
|
+
this._dynamicFormGroupOrField = inject(DYNAMIC_FORM_FIELD_TOKEN, { optional: true }) ?? inject(DYNAMIC_FORM_GROUP_TOKEN);
|
|
14
|
+
this.errorText$ = new BehaviorSubject(null);
|
|
15
|
+
this.id = `et-error-${_uniqueIdCounter++}`;
|
|
16
|
+
this._errors = null;
|
|
17
|
+
this._bindings = createReactiveBindings({
|
|
18
|
+
attribute: 'class.et-error--has-errors',
|
|
19
|
+
observable: this.errorText$.pipe(map((v) => !!v)),
|
|
20
|
+
}, {
|
|
21
|
+
attribute: 'class.cdk-visually-hidden',
|
|
22
|
+
observable: this._dynamicFormGroupOrField.hideErrorMessage$,
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
get errors() {
|
|
26
|
+
return this._errors;
|
|
27
|
+
}
|
|
28
|
+
set errors(v) {
|
|
29
|
+
this._errors = v;
|
|
30
|
+
if (v) {
|
|
31
|
+
const errorText = this._validatorErrorsService.parse(v);
|
|
32
|
+
if (typeof errorText === 'string') {
|
|
33
|
+
this.errorText$.next(of(errorText));
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
this.errorText$.next(errorText);
|
|
37
|
+
}
|
|
38
|
+
this._formFieldOrGroupStateService.errorId$.next(this.id);
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
this.errorText$.next(null);
|
|
42
|
+
this._formFieldOrGroupStateService.errorId$.next(null);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
ErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
47
|
+
ErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: ErrorComponent, isStandalone: true, selector: "et-error", inputs: { errors: "errors" }, host: { classAttribute: "et-error" }, providers: [DestroyService], ngImport: i0, template: "<ng-container *ngIf=\"errorText$ | async | async as text\">\n <span [id]=\"id\" aria-atomic=\"true\" aria-live=\"polite\"> {{ text }} </span>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ErrorComponent, decorators: [{
|
|
49
|
+
type: Component,
|
|
50
|
+
args: [{ selector: 'et-error', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
51
|
+
class: 'et-error',
|
|
52
|
+
}, imports: [JsonPipe, NgIf, AsyncPipe], providers: [DestroyService], hostDirectives: [], template: "<ng-container *ngIf=\"errorText$ | async | async as text\">\n <span [id]=\"id\" aria-atomic=\"true\" aria-live=\"polite\"> {{ text }} </span>\n</ng-container>\n" }]
|
|
53
|
+
}], propDecorators: { errors: [{
|
|
54
|
+
type: Input
|
|
55
|
+
}] } });
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvZXJyb3IvY29tcG9uZW50cy9lcnJvci9lcnJvci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9lcnJvci9jb21wb25lbnRzL2Vycm9yL2Vycm9yLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVELE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVyRyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxlQUFlLEVBQUUsR0FBRyxFQUFjLEVBQUUsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUM1RCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUM1RixPQUFPLEVBQUUscUJBQXFCLEVBQUUscUJBQXFCLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFbkgsSUFBSSxnQkFBZ0IsR0FBRyxDQUFDLENBQUM7QUFnQnpCLE1BQU0sT0FBTyxjQUFjO0lBZDNCO1FBZW1CLDRCQUF1QixHQUFHLE1BQU0sQ0FBQyw2QkFBNkIsQ0FBQyxDQUFDO1FBQ2hFLGtDQUE2QixHQUM1QyxNQUFNLENBQUMscUJBQXFCLEVBQUUsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsSUFBSSxNQUFNLENBQUMscUJBQXFCLENBQUMsQ0FBQztRQUVwRSw2QkFBd0IsR0FDdkMsTUFBTSxDQUFDLHdCQUF3QixFQUFFLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDLElBQUksTUFBTSxDQUFDLHdCQUF3QixDQUFDLENBQUM7UUFFeEUsZUFBVSxHQUFHLElBQUksZUFBZSxDQUE0QixJQUFJLENBQUMsQ0FBQztRQUU1RSxPQUFFLEdBQUcsWUFBWSxnQkFBZ0IsRUFBRSxFQUFFLENBQUM7UUF3QnZDLFlBQU8sR0FBNEIsSUFBSSxDQUFDO1FBRXZDLGNBQVMsR0FBRyxzQkFBc0IsQ0FDekM7WUFDRSxTQUFTLEVBQUUsNEJBQTRCO1lBQ3ZDLFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUNsRCxFQUNEO1lBQ0UsU0FBUyxFQUFFLDJCQUEyQjtZQUN0QyxVQUFVLEVBQUUsSUFBSSxDQUFDLHdCQUF3QixDQUFDLGlCQUFpQjtTQUM1RCxDQUNGLENBQUM7S0FDSDtJQWxDQyxJQUNXLE1BQU07UUFDZixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUM7SUFDdEIsQ0FBQztJQUNELElBQVcsTUFBTSxDQUFDLENBQTBCO1FBQzFDLElBQUksQ0FBQyxPQUFPLEdBQUcsQ0FBQyxDQUFDO1FBRWpCLElBQUksQ0FBQyxFQUFFO1lBQ0wsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLHVCQUF1QixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUV4RCxJQUFJLE9BQU8sU0FBUyxLQUFLLFFBQVEsRUFBRTtnQkFDakMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7YUFDckM7aUJBQU07Z0JBQ0wsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7YUFDakM7WUFFRCxJQUFJLENBQUMsNkJBQTZCLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7U0FDM0Q7YUFBTTtZQUNMLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQzNCLElBQUksQ0FBQyw2QkFBNkIsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ3hEO0lBQ0gsQ0FBQzs7MkdBakNVLGNBQWM7K0ZBQWQsY0FBYywySEFIZCxDQUFDLGNBQWMsQ0FBQywwQkNyQjdCLG1LQUdBLDBERGlCc0IsSUFBSSx3RkFBRSxTQUFTOzJGQUl4QixjQUFjO2tCQWQxQixTQUFTOytCQUNFLFVBQVUsY0FHUixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCLFdBQ1EsQ0FBQyxRQUFRLEVBQUUsSUFBSSxFQUFFLFNBQVMsQ0FBQyxhQUN6QixDQUFDLGNBQWMsQ0FBQyxrQkFDWCxFQUFFOzhCQWVQLE1BQU07c0JBRGhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUsIEpzb25QaXBlLCBOZ0lmIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgSW5wdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBWYWxpZGF0aW9uRXJyb3JzIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgY3JlYXRlUmVhY3RpdmVCaW5kaW5ncywgRGVzdHJveVNlcnZpY2UgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IEJlaGF2aW9yU3ViamVjdCwgbWFwLCBPYnNlcnZhYmxlLCBvZiB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgRFlOQU1JQ19GT1JNX0ZJRUxEX1RPS0VOLCBEWU5BTUlDX0ZPUk1fR1JPVVBfVE9LRU4gfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IEZvcm1GaWVsZFN0YXRlU2VydmljZSwgRm9ybUdyb3VwU3RhdGVTZXJ2aWNlLCBWQUxJREFUT1JfRVJST1JfU0VSVklDRV9UT0tFTiB9IGZyb20gJy4uLy4uLy4uLy4uL3NlcnZpY2VzJztcblxubGV0IF91bmlxdWVJZENvdW50ZXIgPSAwO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1lcnJvcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9lcnJvci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Vycm9yLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1lcnJvcicsXG4gIH0sXG4gIGltcG9ydHM6IFtKc29uUGlwZSwgTmdJZiwgQXN5bmNQaXBlXSxcbiAgcHJvdmlkZXJzOiBbRGVzdHJveVNlcnZpY2VdLFxuICBob3N0RGlyZWN0aXZlczogW10sXG59KVxuZXhwb3J0IGNsYXNzIEVycm9yQ29tcG9uZW50IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfdmFsaWRhdG9yRXJyb3JzU2VydmljZSA9IGluamVjdChWQUxJREFUT1JfRVJST1JfU0VSVklDRV9UT0tFTik7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2Zvcm1GaWVsZE9yR3JvdXBTdGF0ZVNlcnZpY2UgPVxuICAgIGluamVjdChGb3JtRmllbGRTdGF0ZVNlcnZpY2UsIHsgb3B0aW9uYWw6IHRydWUgfSkgPz8gaW5qZWN0KEZvcm1Hcm91cFN0YXRlU2VydmljZSk7XG5cbiAgcHJpdmF0ZSByZWFkb25seSBfZHluYW1pY0Zvcm1Hcm91cE9yRmllbGQgPVxuICAgIGluamVjdChEWU5BTUlDX0ZPUk1fRklFTERfVE9LRU4sIHsgb3B0aW9uYWw6IHRydWUgfSkgPz8gaW5qZWN0KERZTkFNSUNfRk9STV9HUk9VUF9UT0tFTik7XG5cbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGVycm9yVGV4dCQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PE9ic2VydmFibGU8c3RyaW5nPiB8IG51bGw+KG51bGwpO1xuXG4gIHJlYWRvbmx5IGlkID0gYGV0LWVycm9yLSR7X3VuaXF1ZUlkQ291bnRlcisrfWA7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGdldCBlcnJvcnMoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2Vycm9ycztcbiAgfVxuICBwdWJsaWMgc2V0IGVycm9ycyh2OiBWYWxpZGF0aW9uRXJyb3JzIHwgbnVsbCkge1xuICAgIHRoaXMuX2Vycm9ycyA9IHY7XG5cbiAgICBpZiAodikge1xuICAgICAgY29uc3QgZXJyb3JUZXh0ID0gdGhpcy5fdmFsaWRhdG9yRXJyb3JzU2VydmljZS5wYXJzZSh2KTtcblxuICAgICAgaWYgKHR5cGVvZiBlcnJvclRleHQgPT09ICdzdHJpbmcnKSB7XG4gICAgICAgIHRoaXMuZXJyb3JUZXh0JC5uZXh0KG9mKGVycm9yVGV4dCkpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgdGhpcy5lcnJvclRleHQkLm5leHQoZXJyb3JUZXh0KTtcbiAgICAgIH1cblxuICAgICAgdGhpcy5fZm9ybUZpZWxkT3JHcm91cFN0YXRlU2VydmljZS5lcnJvcklkJC5uZXh0KHRoaXMuaWQpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmVycm9yVGV4dCQubmV4dChudWxsKTtcbiAgICAgIHRoaXMuX2Zvcm1GaWVsZE9yR3JvdXBTdGF0ZVNlcnZpY2UuZXJyb3JJZCQubmV4dChudWxsKTtcbiAgICB9XG4gIH1cbiAgcHJpdmF0ZSBfZXJyb3JzOiBWYWxpZGF0aW9uRXJyb3JzIHwgbnVsbCA9IG51bGw7XG5cbiAgcmVhZG9ubHkgX2JpbmRpbmdzID0gY3JlYXRlUmVhY3RpdmVCaW5kaW5ncyhcbiAgICB7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1lcnJvci0taGFzLWVycm9ycycsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLmVycm9yVGV4dCQucGlwZShtYXAoKHYpID0+ICEhdikpLFxuICAgIH0sXG4gICAge1xuICAgICAgYXR0cmlidXRlOiAnY2xhc3MuY2RrLXZpc3VhbGx5LWhpZGRlbicsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLl9keW5hbWljRm9ybUdyb3VwT3JGaWVsZC5oaWRlRXJyb3JNZXNzYWdlJCxcbiAgICB9LFxuICApO1xufVxuIiwiPG5nLWNvbnRhaW5lciAqbmdJZj1cImVycm9yVGV4dCQgfCBhc3luYyB8IGFzeW5jIGFzIHRleHRcIj5cbiAgPHNwYW4gW2lkXT1cImlkXCIgYXJpYS1hdG9taWM9XCJ0cnVlXCIgYXJpYS1saXZlPVwicG9saXRlXCI+IHt7IHRleHQgfX0gPC9zcGFuPlxuPC9uZy1jb250YWluZXI+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './error.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2Vycm9yL2NvbXBvbmVudHMvZXJyb3IvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lcnJvci5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './error/public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2Vycm9yL2NvbXBvbmVudHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lcnJvci9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9lcnJvci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './components/public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2Vycm9yL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DestroyService } from '@ethlete/core';
|
|
4
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
5
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
6
|
+
import { EMAIL_INPUT_TOKEN, EmailInputDirective } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/email-input/email-input.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
10
|
+
export class EmailInputComponent extends DecoratedInputBase {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.emailInput = inject(EMAIL_INPUT_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
EmailInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EmailInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
EmailInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: EmailInputComponent, isStandalone: true, selector: "et-email-input", host: { classAttribute: "et-email-input" }, providers: [DestroyService], usesInheritance: true, hostDirectives: [{ directive: i1.EmailInputDirective }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"emailInput._onInputInteraction($event)\"\n (blur)=\"emailInput._controlTouched()\"\n class=\"et-input-native-control et-email-input-native-control\"\n type=\"email\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EmailInputComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-email-input', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-email-input',
|
|
22
|
+
}, providers: [DestroyService], imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [EmailInputDirective, { directive: InputDirective, inputs: ['autocomplete', 'placeholder'] }], template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"emailInput._onInputInteraction($event)\"\n (blur)=\"emailInput._controlTouched()\"\n class=\"et-input-native-control et-email-input-native-control\"\n type=\"email\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n" }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1haWwtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvY29tcG9uZW50cy9lbWFpbC1pbnB1dC9lbWFpbC1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL2VtYWlsLWlucHV0L2VtYWlsLWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUM1QyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQWdCMUUsTUFBTSxPQUFPLG1CQUFvQixTQUFRLGtCQUFrQjtJQWQzRDs7UUFlcUIsZUFBVSxHQUFHLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0tBQzNEOztnSEFGWSxtQkFBbUI7b0dBQW5CLG1CQUFtQix5R0FKbkIsQ0FBQyxjQUFjLENBQUMsb05DakI3Qix5bkJBa0JBLHFEREFZLFNBQVMsOENBQUUsdUJBQXVCOzJGQUdqQyxtQkFBbUI7a0JBZC9CLFNBQVM7K0JBQ0UsZ0JBQWdCLGNBR2QsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CO3dCQUNKLEtBQUssRUFBRSxnQkFBZ0I7cUJBQ3hCLGFBQ1UsQ0FBQyxjQUFjLENBQUMsV0FDbEIsQ0FBQyxTQUFTLEVBQUUsdUJBQXVCLENBQUMsa0JBQzdCLENBQUMsbUJBQW1CLEVBQUUsRUFBRSxTQUFTLEVBQUUsY0FBYyxFQUFFLE1BQU0sRUFBRSxDQUFDLGNBQWMsRUFBRSxhQUFhLENBQUMsRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERlc3Ryb3lTZXJ2aWNlIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBJbnB1dERpcmVjdGl2ZSwgTmF0aXZlSW5wdXRSZWZEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IERlY29yYXRlZElucHV0QmFzZSB9IGZyb20gJy4uLy4uLy4uLy4uL3V0aWxzJztcbmltcG9ydCB7IEVNQUlMX0lOUFVUX1RPS0VOLCBFbWFpbElucHV0RGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LWVtYWlsLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2VtYWlsLWlucHV0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZW1haWwtaW5wdXQuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LWVtYWlsLWlucHV0JyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbRGVzdHJveVNlcnZpY2VdLFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZV0sXG4gIGhvc3REaXJlY3RpdmVzOiBbRW1haWxJbnB1dERpcmVjdGl2ZSwgeyBkaXJlY3RpdmU6IElucHV0RGlyZWN0aXZlLCBpbnB1dHM6IFsnYXV0b2NvbXBsZXRlJywgJ3BsYWNlaG9sZGVyJ10gfV0sXG59KVxuZXhwb3J0IGNsYXNzIEVtYWlsSW5wdXRDb21wb25lbnQgZXh0ZW5kcyBEZWNvcmF0ZWRJbnB1dEJhc2Uge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgZW1haWxJbnB1dCA9IGluamVjdChFTUFJTF9JTlBVVF9UT0tFTik7XG59XG4iLCI8bmctY29udGVudCBzZWxlY3Q9XCJbZXRJbnB1dFByZWZpeF1cIiAvPlxuXG48aW5wdXRcbiAgW2F0dHIuaWRdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiaW5wdXQubGFiZWxJZCQgfCBhc3luY1wiXG4gIFtyZXF1aXJlZF09XCJpbnB1dC5yZXF1aXJlZCQgfCBhc3luY1wiXG4gIFtkaXNhYmxlZF09XCJpbnB1dC5kaXNhYmxlZCQgfCBhc3luY1wiXG4gIFthdHRyLmF1dG9jb21wbGV0ZV09XCJpbnB1dC5hdXRvY29tcGxldGUgfHwgbnVsbFwiXG4gIFthdHRyLnBsYWNlaG9sZGVyXT1cImlucHV0LnBsYWNlaG9sZGVyIHx8IG51bGxcIlxuICBbYXR0ci5hcmlhLWRlc2NyaWJlZGJ5XT1cImlucHV0LmRlc2NyaWJlZEJ5JCB8IGFzeW5jXCJcbiAgKGlucHV0KT1cImVtYWlsSW5wdXQuX29uSW5wdXRJbnRlcmFjdGlvbigkZXZlbnQpXCJcbiAgKGJsdXIpPVwiZW1haWxJbnB1dC5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtaW5wdXQtbmF0aXZlLWNvbnRyb2wgZXQtZW1haWwtaW5wdXQtbmF0aXZlLWNvbnRyb2xcIlxuICB0eXBlPVwiZW1haWxcIlxuICBldE5hdGl2ZUlucHV0UmVmXG4vPlxuXG48bmctY29udGVudCBzZWxlY3Q9XCJbZXRJbnB1dFN1ZmZpeF1cIiAvPlxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './email-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvZW1haWwtaW5wdXQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbWFpbC1pbnB1dC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { AsyncPipe, NgIf } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation, forwardRef, inject } from '@angular/core';
|
|
3
|
+
import { DynamicFormFieldDirective, StaticFormFieldDirective, WriteableInputDirective } from '../../../../directives';
|
|
4
|
+
import { InputStateService } from '../../../../services';
|
|
5
|
+
import { DecoratedFormFieldBase } from '../../../../utils';
|
|
6
|
+
import { ErrorComponent } from '../../../error';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../../../directives/static-form-field/static-form-field.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/writeable-input/writeable-input.directive";
|
|
10
|
+
import * as i3 from "../../../../directives/dynamic-form-field/dynamic-form-field.directive";
|
|
11
|
+
export class InputFieldComponent extends DecoratedFormFieldBase {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments);
|
|
14
|
+
this.inputState = inject(InputStateService);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
InputFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InputFieldComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
+
InputFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: InputFieldComponent, isStandalone: true, selector: "et-input-field", host: { classAttribute: "et-form-field et-input-field" }, usesInheritance: true, hostDirectives: [{ directive: i1.StaticFormFieldDirective }, { directive: i2.WriteableInputDirective }, { directive: i0.forwardRef(function () { return i3.DynamicFormFieldDirective; }), inputs: ["hideErrorMessage", "hideErrorMessage"] }], ngImport: i0, template: `
|
|
19
|
+
<ng-content select="et-label" />
|
|
20
|
+
<div class="et-input-field-input">
|
|
21
|
+
<ng-content
|
|
22
|
+
select="et-number-input, et-text-input, et-email-input, et-password-input, et-search-input, et-textarea-input"
|
|
23
|
+
/>
|
|
24
|
+
</div>
|
|
25
|
+
<et-error [errors]="inputState.errors$ | async" />
|
|
26
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ErrorComponent, selector: "et-error", inputs: ["errors"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
27
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InputFieldComponent, decorators: [{
|
|
28
|
+
type: Component,
|
|
29
|
+
args: [{
|
|
30
|
+
selector: 'et-input-field',
|
|
31
|
+
template: `
|
|
32
|
+
<ng-content select="et-label" />
|
|
33
|
+
<div class="et-input-field-input">
|
|
34
|
+
<ng-content
|
|
35
|
+
select="et-number-input, et-text-input, et-email-input, et-password-input, et-search-input, et-textarea-input"
|
|
36
|
+
/>
|
|
37
|
+
</div>
|
|
38
|
+
<et-error [errors]="inputState.errors$ | async" />
|
|
39
|
+
`,
|
|
40
|
+
standalone: true,
|
|
41
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
42
|
+
encapsulation: ViewEncapsulation.None,
|
|
43
|
+
host: {
|
|
44
|
+
class: 'et-form-field et-input-field',
|
|
45
|
+
},
|
|
46
|
+
hostDirectives: [
|
|
47
|
+
StaticFormFieldDirective,
|
|
48
|
+
WriteableInputDirective,
|
|
49
|
+
{
|
|
50
|
+
directive: forwardRef(() => DynamicFormFieldDirective),
|
|
51
|
+
inputs: ['hideErrorMessage'],
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
imports: [ErrorComponent, NgIf, AsyncPipe],
|
|
55
|
+
}]
|
|
56
|
+
}] });
|
|
57
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvY29tcG9uZW50cy9pbnB1dC1maWVsZC9pbnB1dC1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFRLGlCQUFpQixFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDaEgsT0FBTyxFQUFFLHlCQUF5QixFQUFFLHdCQUF3QixFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdEgsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDekQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDM0QsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7OztBQTZCaEQsTUFBTSxPQUFPLG1CQUFvQixTQUFRLHNCQUFzQjtJQTNCL0Q7O1FBNEJxQixlQUFVLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7S0FDM0Q7O2dIQUZZLG1CQUFtQjtvR0FBbkIsbUJBQW1CLDBZQXpCcEI7Ozs7Ozs7O0dBUVQsNERBZVMsY0FBYyxvRUFBUSxTQUFTOzJGQUU5QixtQkFBbUI7a0JBM0IvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLFFBQVEsRUFBRTs7Ozs7Ozs7R0FRVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLDhCQUE4QjtxQkFDdEM7b0JBQ0QsY0FBYyxFQUFFO3dCQUNkLHdCQUF3Qjt3QkFDeEIsdUJBQXVCO3dCQUN2Qjs0QkFDRSxTQUFTLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHlCQUF5QixDQUFvQzs0QkFDekYsTUFBTSxFQUFFLENBQUMsa0JBQWtCLENBQUM7eUJBQzdCO3FCQUNGO29CQUNELE9BQU8sRUFBRSxDQUFDLGNBQWMsRUFBRSxJQUFJLEVBQUUsU0FBUyxDQUFDO2lCQUMzQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzeW5jUGlwZSwgTmdJZiB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBUeXBlLCBWaWV3RW5jYXBzdWxhdGlvbiwgZm9yd2FyZFJlZiwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEeW5hbWljRm9ybUZpZWxkRGlyZWN0aXZlLCBTdGF0aWNGb3JtRmllbGREaXJlY3RpdmUsIFdyaXRlYWJsZUlucHV0RGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBJbnB1dFN0YXRlU2VydmljZSB9IGZyb20gJy4uLy4uLy4uLy4uL3NlcnZpY2VzJztcbmltcG9ydCB7IERlY29yYXRlZEZvcm1GaWVsZEJhc2UgfSBmcm9tICcuLi8uLi8uLi8uLi91dGlscyc7XG5pbXBvcnQgeyBFcnJvckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2Vycm9yJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtaW5wdXQtZmllbGQnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImV0LWxhYmVsXCIgLz5cbiAgICA8ZGl2IGNsYXNzPVwiZXQtaW5wdXQtZmllbGQtaW5wdXRcIj5cbiAgICAgIDxuZy1jb250ZW50XG4gICAgICAgIHNlbGVjdD1cImV0LW51bWJlci1pbnB1dCwgZXQtdGV4dC1pbnB1dCwgZXQtZW1haWwtaW5wdXQsIGV0LXBhc3N3b3JkLWlucHV0LCBldC1zZWFyY2gtaW5wdXQsIGV0LXRleHRhcmVhLWlucHV0XCJcbiAgICAgIC8+XG4gICAgPC9kaXY+XG4gICAgPGV0LWVycm9yIFtlcnJvcnNdPVwiaW5wdXRTdGF0ZS5lcnJvcnMkIHwgYXN5bmNcIiAvPlxuICBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtZm9ybS1maWVsZCBldC1pbnB1dC1maWVsZCcsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbXG4gICAgU3RhdGljRm9ybUZpZWxkRGlyZWN0aXZlLFxuICAgIFdyaXRlYWJsZUlucHV0RGlyZWN0aXZlLFxuICAgIHtcbiAgICAgIGRpcmVjdGl2ZTogZm9yd2FyZFJlZigoKSA9PiBEeW5hbWljRm9ybUZpZWxkRGlyZWN0aXZlKSBhcyBUeXBlPER5bmFtaWNGb3JtRmllbGREaXJlY3RpdmU+LFxuICAgICAgaW5wdXRzOiBbJ2hpZGVFcnJvck1lc3NhZ2UnXSxcbiAgICB9LFxuICBdLFxuICBpbXBvcnRzOiBbRXJyb3JDb21wb25lbnQsIE5nSWYsIEFzeW5jUGlwZV0sXG59KVxuZXhwb3J0IGNsYXNzIElucHV0RmllbGRDb21wb25lbnQgZXh0ZW5kcyBEZWNvcmF0ZWRGb3JtRmllbGRCYXNlIHtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGlucHV0U3RhdGUgPSBpbmplY3QoSW5wdXRTdGF0ZVNlcnZpY2UpO1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './input-field.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvaW5wdXQtZmllbGQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9pbnB1dC1maWVsZC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DestroyService } from '@ethlete/core';
|
|
4
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
5
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
6
|
+
import { NumberInputDirective, NUMBER_INPUT_TOKEN } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/number-input/number-input.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
10
|
+
export class NumberInputComponent extends DecoratedInputBase {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.numberInput = inject(NUMBER_INPUT_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
NumberInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NumberInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
NumberInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: NumberInputComponent, isStandalone: true, selector: "et-number-input", host: { classAttribute: "et-number-input" }, providers: [DestroyService], usesInheritance: true, hostDirectives: [{ directive: i1.NumberInputDirective }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"numberInput._onInputInteraction($event)\"\n (blur)=\"numberInput._controlTouched()\"\n class=\"et-input-native-control et-number-input-native-control\"\n type=\"number\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NumberInputComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-number-input', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-number-input',
|
|
22
|
+
}, providers: [DestroyService], imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [NumberInputDirective, { directive: InputDirective, inputs: ['autocomplete', 'placeholder'] }], template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"numberInput._onInputInteraction($event)\"\n (blur)=\"numberInput._controlTouched()\"\n class=\"et-input-native-control et-number-input-native-control\"\n type=\"number\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n" }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWlucHV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvbnVtYmVyLWlucHV0L251bWJlci1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL251bWJlci1pbnB1dC9udW1iZXItaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzlGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBZ0I1RSxNQUFNLE9BQU8sb0JBQXFCLFNBQVEsa0JBQWtCO0lBZDVEOztRQWVxQixnQkFBVyxHQUFHLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO0tBQzdEOztpSEFGWSxvQkFBb0I7cUdBQXBCLG9CQUFvQiwyR0FKcEIsQ0FBQyxjQUFjLENBQUMscU5DakI3Qiw2bkJBa0JBLHFEREFZLFNBQVMsOENBQUUsdUJBQXVCOzJGQUdqQyxvQkFBb0I7a0JBZGhDLFNBQVM7K0JBQ0UsaUJBQWlCLGNBR2YsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CO3dCQUNKLEtBQUssRUFBRSxpQkFBaUI7cUJBQ3pCLGFBQ1UsQ0FBQyxjQUFjLENBQUMsV0FDbEIsQ0FBQyxTQUFTLEVBQUUsdUJBQXVCLENBQUMsa0JBQzdCLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxTQUFTLEVBQUUsY0FBYyxFQUFFLE1BQU0sRUFBRSxDQUFDLGNBQWMsRUFBRSxhQUFhLENBQUMsRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERlc3Ryb3lTZXJ2aWNlIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBJbnB1dERpcmVjdGl2ZSwgTmF0aXZlSW5wdXRSZWZEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IERlY29yYXRlZElucHV0QmFzZSB9IGZyb20gJy4uLy4uLy4uLy4uL3V0aWxzJztcbmltcG9ydCB7IE51bWJlcklucHV0RGlyZWN0aXZlLCBOVU1CRVJfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtbnVtYmVyLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL251bWJlci1pbnB1dC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL251bWJlci1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtbnVtYmVyLWlucHV0JyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbRGVzdHJveVNlcnZpY2VdLFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZV0sXG4gIGhvc3REaXJlY3RpdmVzOiBbTnVtYmVySW5wdXREaXJlY3RpdmUsIHsgZGlyZWN0aXZlOiBJbnB1dERpcmVjdGl2ZSwgaW5wdXRzOiBbJ2F1dG9jb21wbGV0ZScsICdwbGFjZWhvbGRlciddIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBOdW1iZXJJbnB1dENvbXBvbmVudCBleHRlbmRzIERlY29yYXRlZElucHV0QmFzZSB7XG4gIHByb3RlY3RlZCByZWFkb25seSBudW1iZXJJbnB1dCA9IGluamVjdChOVU1CRVJfSU5QVVRfVE9LRU4pO1xufVxuIiwiPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2V0SW5wdXRQcmVmaXhdXCIgLz5cblxuPGlucHV0XG4gIFthdHRyLmlkXT1cImlucHV0LmlkXCJcbiAgW2F0dHIuYXJpYS1sYWJlbGxlZGJ5XT1cImlucHV0LmxhYmVsSWQkIHwgYXN5bmNcIlxuICBbcmVxdWlyZWRdPVwiaW5wdXQucmVxdWlyZWQkIHwgYXN5bmNcIlxuICBbZGlzYWJsZWRdPVwiaW5wdXQuZGlzYWJsZWQkIHwgYXN5bmNcIlxuICBbYXR0ci5hdXRvY29tcGxldGVdPVwiaW5wdXQuYXV0b2NvbXBsZXRlIHx8IG51bGxcIlxuICBbYXR0ci5wbGFjZWhvbGRlcl09XCJpbnB1dC5wbGFjZWhvbGRlciB8fCBudWxsXCJcbiAgW2F0dHIuYXJpYS1kZXNjcmliZWRieV09XCJpbnB1dC5kZXNjcmliZWRCeSQgfCBhc3luY1wiXG4gIChpbnB1dCk9XCJudW1iZXJJbnB1dC5fb25JbnB1dEludGVyYWN0aW9uKCRldmVudClcIlxuICAoYmx1cik9XCJudW1iZXJJbnB1dC5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtaW5wdXQtbmF0aXZlLWNvbnRyb2wgZXQtbnVtYmVyLWlucHV0LW5hdGl2ZS1jb250cm9sXCJcbiAgdHlwZT1cIm51bWJlclwiXG4gIGV0TmF0aXZlSW5wdXRSZWZcbi8+XG5cbjxuZy1jb250ZW50IHNlbGVjdD1cIltldElucHV0U3VmZml4XVwiIC8+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './number-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvbnVtYmVyLWlucHV0L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbnVtYmVyLWlucHV0LmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DestroyService } from '@ethlete/core';
|
|
4
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
5
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
6
|
+
import { PasswordInputDirective, PASSWORD_INPUT_TOKEN } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/password-input/password-input.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
10
|
+
export class PasswordInputComponent extends DecoratedInputBase {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.passwordInput = inject(PASSWORD_INPUT_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
PasswordInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PasswordInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
PasswordInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: PasswordInputComponent, isStandalone: true, selector: "et-password-input", host: { classAttribute: "et-password-input" }, providers: [DestroyService], usesInheritance: true, hostDirectives: [{ directive: i1.PasswordInputDirective }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.type]=\"(passwordInput.showPassword$ | async) ? 'text' : 'password'\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"passwordInput._onInputInteraction($event)\"\n (blur)=\"passwordInput._controlTouched()\"\n class=\"et-input-native-control et-password-input-native-control\"\n etNativeInputRef\n spellcheck=\"false\"\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PasswordInputComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-password-input', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-password-input',
|
|
22
|
+
}, providers: [DestroyService], imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [PasswordInputDirective, { directive: InputDirective, inputs: ['autocomplete', 'placeholder'] }], template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.type]=\"(passwordInput.showPassword$ | async) ? 'text' : 'password'\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"passwordInput._onInputInteraction($event)\"\n (blur)=\"passwordInput._controlTouched()\"\n class=\"et-input-native-control et-password-input-native-control\"\n etNativeInputRef\n spellcheck=\"false\"\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n" }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvY29tcG9uZW50cy9wYXNzd29yZC1pbnB1dC9wYXNzd29yZC1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL3Bhc3N3b3JkLWlucHV0L3Bhc3N3b3JkLWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUM1QyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQWdCaEYsTUFBTSxPQUFPLHNCQUF1QixTQUFRLGtCQUFrQjtJQWQ5RDs7UUFlcUIsa0JBQWEsR0FBRyxNQUFNLENBQUMsb0JBQW9CLENBQUMsQ0FBQztLQUNqRTs7bUhBRlksc0JBQXNCO3VHQUF0QixzQkFBc0IsK0dBSnRCLENBQUMsY0FBYyxDQUFDLHVOQ2pCN0IsdXRCQW1CQSxxREREWSxTQUFTLDhDQUFFLHVCQUF1QjsyRkFHakMsc0JBQXNCO2tCQWRsQyxTQUFTOytCQUNFLG1CQUFtQixjQUdqQixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLG1CQUFtQjtxQkFDM0IsYUFDVSxDQUFDLGNBQWMsQ0FBQyxXQUNsQixDQUFDLFNBQVMsRUFBRSx1QkFBdUIsQ0FBQyxrQkFDN0IsQ0FBQyxzQkFBc0IsRUFBRSxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsY0FBYyxFQUFFLGFBQWEsQ0FBQyxFQUFFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRGVzdHJveVNlcnZpY2UgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgRGVjb3JhdGVkSW5wdXRCYXNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHsgUGFzc3dvcmRJbnB1dERpcmVjdGl2ZSwgUEFTU1dPUkRfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtcGFzc3dvcmQtaW5wdXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFzc3dvcmQtaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wYXNzd29yZC1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtcGFzc3dvcmQtaW5wdXQnLFxuICB9LFxuICBwcm92aWRlcnM6IFtEZXN0cm95U2VydmljZV0sXG4gIGltcG9ydHM6IFtBc3luY1BpcGUsIE5hdGl2ZUlucHV0UmVmRGlyZWN0aXZlXSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtQYXNzd29yZElucHV0RGlyZWN0aXZlLCB7IGRpcmVjdGl2ZTogSW5wdXREaXJlY3RpdmUsIGlucHV0czogWydhdXRvY29tcGxldGUnLCAncGxhY2Vob2xkZXInXSB9XSxcbn0pXG5leHBvcnQgY2xhc3MgUGFzc3dvcmRJbnB1dENvbXBvbmVudCBleHRlbmRzIERlY29yYXRlZElucHV0QmFzZSB7XG4gIHByb3RlY3RlZCByZWFkb25seSBwYXNzd29yZElucHV0ID0gaW5qZWN0KFBBU1NXT1JEX0lOUFVUX1RPS0VOKTtcbn1cbiIsIjxuZy1jb250ZW50IHNlbGVjdD1cIltldElucHV0UHJlZml4XVwiIC8+XG5cbjxpbnB1dFxuICBbYXR0ci5pZF09XCJpbnB1dC5pZFwiXG4gIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCJpbnB1dC5sYWJlbElkJCB8IGFzeW5jXCJcbiAgW3JlcXVpcmVkXT1cImlucHV0LnJlcXVpcmVkJCB8IGFzeW5jXCJcbiAgW2Rpc2FibGVkXT1cImlucHV0LmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgW2F0dHIudHlwZV09XCIocGFzc3dvcmRJbnB1dC5zaG93UGFzc3dvcmQkIHwgYXN5bmMpID8gJ3RleHQnIDogJ3Bhc3N3b3JkJ1wiXG4gIFthdHRyLmF1dG9jb21wbGV0ZV09XCJpbnB1dC5hdXRvY29tcGxldGUgfHwgbnVsbFwiXG4gIFthdHRyLnBsYWNlaG9sZGVyXT1cImlucHV0LnBsYWNlaG9sZGVyIHx8IG51bGxcIlxuICBbYXR0ci5hcmlhLWRlc2NyaWJlZGJ5XT1cImlucHV0LmRlc2NyaWJlZEJ5JCB8IGFzeW5jXCJcbiAgKGlucHV0KT1cInBhc3N3b3JkSW5wdXQuX29uSW5wdXRJbnRlcmFjdGlvbigkZXZlbnQpXCJcbiAgKGJsdXIpPVwicGFzc3dvcmRJbnB1dC5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtaW5wdXQtbmF0aXZlLWNvbnRyb2wgZXQtcGFzc3dvcmQtaW5wdXQtbmF0aXZlLWNvbnRyb2xcIlxuICBldE5hdGl2ZUlucHV0UmVmXG4gIHNwZWxsY2hlY2s9XCJmYWxzZVwiXG4vPlxuXG48bmctY29udGVudCBzZWxlY3Q9XCJbZXRJbnB1dFN1ZmZpeF1cIiAvPlxuIl19
|
package/esm2020/lib/components/forms/components/input/components/password-input/public-api.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './password-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvcGFzc3dvcmQtaW5wdXQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wYXNzd29yZC1pbnB1dC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './email-input/public-api';
|
|
2
|
+
export * from './input-field/public-api';
|
|
3
|
+
export * from './number-input/public-api';
|
|
4
|
+
export * from './password-input/public-api';
|
|
5
|
+
export * from './search-input/public-api';
|
|
6
|
+
export * from './text-input/public-api';
|
|
7
|
+
export * from './textarea-input/public-api';
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDZCQUE2QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbWFpbC1pbnB1dC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQtZmllbGQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL251bWJlci1pbnB1dC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcGFzc3dvcmQtaW5wdXQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3NlYXJjaC1pbnB1dC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dC1pbnB1dC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dGFyZWEtaW5wdXQvcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './search-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvc2VhcmNoLWlucHV0L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VhcmNoLWlucHV0LmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DestroyService } from '@ethlete/core';
|
|
4
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
5
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
6
|
+
import { SearchInputDirective, SEARCH_INPUT_TOKEN } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/search-input/search-input.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
10
|
+
export class SearchInputComponent extends DecoratedInputBase {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.searchInput = inject(SEARCH_INPUT_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
SearchInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
SearchInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SearchInputComponent, isStandalone: true, selector: "et-search-input", host: { classAttribute: "et-search-input" }, providers: [DestroyService], usesInheritance: true, hostDirectives: [{ directive: i1.SearchInputDirective }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"searchInput._onInputInteraction($event)\"\n (blur)=\"searchInput._controlTouched()\"\n (keyup.escape)=\"searchInput._clear()\"\n class=\"et-input-native-control et-search-input-native-control\"\n type=\"search\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [".et-search-input input[type=search]::-webkit-search-cancel-button,.et-search-input input[type=search]::-webkit-search-decoration{-webkit-appearance:none}\n"], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-search-input', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-search-input',
|
|
22
|
+
}, providers: [DestroyService], imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [SearchInputDirective, { directive: InputDirective, inputs: ['autocomplete', 'placeholder'] }], template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"searchInput._onInputInteraction($event)\"\n (blur)=\"searchInput._controlTouched()\"\n (keyup.escape)=\"searchInput._clear()\"\n class=\"et-input-native-control et-search-input-native-control\"\n type=\"search\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [".et-search-input input[type=search]::-webkit-search-cancel-button,.et-search-input input[type=search]::-webkit-search-decoration{-webkit-appearance:none}\n"] }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvc2VhcmNoLWlucHV0L3NlYXJjaC1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL3NlYXJjaC1pbnB1dC9zZWFyY2gtaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzlGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBZ0I1RSxNQUFNLE9BQU8sb0JBQXFCLFNBQVEsa0JBQWtCO0lBZDVEOztRQWVxQixnQkFBVyxHQUFHLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO0tBQzdEOztpSEFGWSxvQkFBb0I7cUdBQXBCLG9CQUFvQiwyR0FKcEIsQ0FBQyxjQUFjLENBQUMscU5DakI3Qix3cUJBbUJBLGdORERZLFNBQVMsOENBQUUsdUJBQXVCOzJGQUdqQyxvQkFBb0I7a0JBZGhDLFNBQVM7K0JBQ0UsaUJBQWlCLGNBR2YsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CO3dCQUNKLEtBQUssRUFBRSxpQkFBaUI7cUJBQ3pCLGFBQ1UsQ0FBQyxjQUFjLENBQUMsV0FDbEIsQ0FBQyxTQUFTLEVBQUUsdUJBQXVCLENBQUMsa0JBQzdCLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxTQUFTLEVBQUUsY0FBYyxFQUFFLE1BQU0sRUFBRSxDQUFDLGNBQWMsRUFBRSxhQUFhLENBQUMsRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERlc3Ryb3lTZXJ2aWNlIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBJbnB1dERpcmVjdGl2ZSwgTmF0aXZlSW5wdXRSZWZEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IERlY29yYXRlZElucHV0QmFzZSB9IGZyb20gJy4uLy4uLy4uLy4uL3V0aWxzJztcbmltcG9ydCB7IFNlYXJjaElucHV0RGlyZWN0aXZlLCBTRUFSQ0hfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtc2VhcmNoLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlYXJjaC1pbnB1dC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtc2VhcmNoLWlucHV0JyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbRGVzdHJveVNlcnZpY2VdLFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZV0sXG4gIGhvc3REaXJlY3RpdmVzOiBbU2VhcmNoSW5wdXREaXJlY3RpdmUsIHsgZGlyZWN0aXZlOiBJbnB1dERpcmVjdGl2ZSwgaW5wdXRzOiBbJ2F1dG9jb21wbGV0ZScsICdwbGFjZWhvbGRlciddIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBTZWFyY2hJbnB1dENvbXBvbmVudCBleHRlbmRzIERlY29yYXRlZElucHV0QmFzZSB7XG4gIHByb3RlY3RlZCByZWFkb25seSBzZWFyY2hJbnB1dCA9IGluamVjdChTRUFSQ0hfSU5QVVRfVE9LRU4pO1xufVxuIiwiPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2V0SW5wdXRQcmVmaXhdXCIgLz5cblxuPGlucHV0XG4gIFthdHRyLmlkXT1cImlucHV0LmlkXCJcbiAgW2F0dHIuYXJpYS1sYWJlbGxlZGJ5XT1cImlucHV0LmxhYmVsSWQkIHwgYXN5bmNcIlxuICBbcmVxdWlyZWRdPVwiaW5wdXQucmVxdWlyZWQkIHwgYXN5bmNcIlxuICBbZGlzYWJsZWRdPVwiaW5wdXQuZGlzYWJsZWQkIHwgYXN5bmNcIlxuICBbYXR0ci5hdXRvY29tcGxldGVdPVwiaW5wdXQuYXV0b2NvbXBsZXRlIHx8IG51bGxcIlxuICBbYXR0ci5wbGFjZWhvbGRlcl09XCJpbnB1dC5wbGFjZWhvbGRlciB8fCBudWxsXCJcbiAgW2F0dHIuYXJpYS1kZXNjcmliZWRieV09XCJpbnB1dC5kZXNjcmliZWRCeSQgfCBhc3luY1wiXG4gIChpbnB1dCk9XCJzZWFyY2hJbnB1dC5fb25JbnB1dEludGVyYWN0aW9uKCRldmVudClcIlxuICAoYmx1cik9XCJzZWFyY2hJbnB1dC5fY29udHJvbFRvdWNoZWQoKVwiXG4gIChrZXl1cC5lc2NhcGUpPVwic2VhcmNoSW5wdXQuX2NsZWFyKClcIlxuICBjbGFzcz1cImV0LWlucHV0LW5hdGl2ZS1jb250cm9sIGV0LXNlYXJjaC1pbnB1dC1uYXRpdmUtY29udHJvbFwiXG4gIHR5cGU9XCJzZWFyY2hcIlxuICBldE5hdGl2ZUlucHV0UmVmXG4vPlxuXG48bmctY29udGVudCBzZWxlY3Q9XCJbZXRJbnB1dFN1ZmZpeF1cIiAvPlxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './text-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvdGV4dC1pbnB1dC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsd0JBQXdCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RleHQtaW5wdXQuY29tcG9uZW50JztcbiJdfQ==
|
package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DestroyService } from '@ethlete/core';
|
|
4
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
5
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
6
|
+
import { TextInputDirective, TEXT_INPUT_TOKEN } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/text-input/text-input.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
10
|
+
export class TextInputComponent extends DecoratedInputBase {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.textInput = inject(TEXT_INPUT_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
TextInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
TextInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TextInputComponent, isStandalone: true, selector: "et-text-input", host: { classAttribute: "et-text-input" }, providers: [DestroyService], usesInheritance: true, hostDirectives: [{ directive: i1.TextInputDirective }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"textInput._onInputInteraction($event)\"\n (blur)=\"textInput._controlTouched()\"\n class=\"et-input-native-control et-text-input-native-control\"\n type=\"text\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextInputComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-text-input', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-text-input',
|
|
22
|
+
}, providers: [DestroyService], imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [TextInputDirective, { directive: InputDirective, inputs: ['autocomplete', 'placeholder'] }], template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"textInput._onInputInteraction($event)\"\n (blur)=\"textInput._controlTouched()\"\n class=\"et-input-native-control et-text-input-native-control\"\n type=\"text\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n" }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL3RleHQtaW5wdXQvdGV4dC1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9jb21wb25lbnRzL3RleHQtaW5wdXQvdGV4dC1pbnB1dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMvQyxPQUFPLEVBQUUsY0FBYyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDakYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDdkQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLGdCQUFnQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7QUFnQnhFLE1BQU0sT0FBTyxrQkFBbUIsU0FBUSxrQkFBa0I7SUFkMUQ7O1FBZXFCLGNBQVMsR0FBRyxNQUFNLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztLQUN6RDs7K0dBRlksa0JBQWtCO21HQUFsQixrQkFBa0IsdUdBSmxCLENBQUMsY0FBYyxDQUFDLG1OQ2pCN0IscW5CQWtCQSxxRERBWSxTQUFTLDhDQUFFLHVCQUF1QjsyRkFHakMsa0JBQWtCO2tCQWQ5QixTQUFTOytCQUNFLGVBQWUsY0FHYixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLGVBQWU7cUJBQ3ZCLGFBQ1UsQ0FBQyxjQUFjLENBQUMsV0FDbEIsQ0FBQyxTQUFTLEVBQUUsdUJBQXVCLENBQUMsa0JBQzdCLENBQUMsa0JBQWtCLEVBQUUsRUFBRSxTQUFTLEVBQUUsY0FBYyxFQUFFLE1BQU0sRUFBRSxDQUFDLGNBQWMsRUFBRSxhQUFhLENBQUMsRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERlc3Ryb3lTZXJ2aWNlIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBJbnB1dERpcmVjdGl2ZSwgTmF0aXZlSW5wdXRSZWZEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IERlY29yYXRlZElucHV0QmFzZSB9IGZyb20gJy4uLy4uLy4uLy4uL3V0aWxzJztcbmltcG9ydCB7IFRleHRJbnB1dERpcmVjdGl2ZSwgVEVYVF9JTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC10ZXh0LWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3RleHQtaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi90ZXh0LWlucHV0LmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC10ZXh0LWlucHV0JyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbRGVzdHJveVNlcnZpY2VdLFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZV0sXG4gIGhvc3REaXJlY3RpdmVzOiBbVGV4dElucHV0RGlyZWN0aXZlLCB7IGRpcmVjdGl2ZTogSW5wdXREaXJlY3RpdmUsIGlucHV0czogWydhdXRvY29tcGxldGUnLCAncGxhY2Vob2xkZXInXSB9XSxcbn0pXG5leHBvcnQgY2xhc3MgVGV4dElucHV0Q29tcG9uZW50IGV4dGVuZHMgRGVjb3JhdGVkSW5wdXRCYXNlIHtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IHRleHRJbnB1dCA9IGluamVjdChURVhUX0lOUFVUX1RPS0VOKTtcbn1cbiIsIjxuZy1jb250ZW50IHNlbGVjdD1cIltldElucHV0UHJlZml4XVwiIC8+XG5cbjxpbnB1dFxuICBbYXR0ci5pZF09XCJpbnB1dC5pZFwiXG4gIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCJpbnB1dC5sYWJlbElkJCB8IGFzeW5jXCJcbiAgW3JlcXVpcmVkXT1cImlucHV0LnJlcXVpcmVkJCB8IGFzeW5jXCJcbiAgW2Rpc2FibGVkXT1cImlucHV0LmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgW2F0dHIuYXV0b2NvbXBsZXRlXT1cImlucHV0LmF1dG9jb21wbGV0ZSB8fCBudWxsXCJcbiAgW2F0dHIucGxhY2Vob2xkZXJdPVwiaW5wdXQucGxhY2Vob2xkZXIgfHwgbnVsbFwiXG4gIFthdHRyLmFyaWEtZGVzY3JpYmVkYnldPVwiaW5wdXQuZGVzY3JpYmVkQnkkIHwgYXN5bmNcIlxuICAoaW5wdXQpPVwidGV4dElucHV0Ll9vbklucHV0SW50ZXJhY3Rpb24oJGV2ZW50KVwiXG4gIChibHVyKT1cInRleHRJbnB1dC5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtaW5wdXQtbmF0aXZlLWNvbnRyb2wgZXQtdGV4dC1pbnB1dC1uYXRpdmUtY29udHJvbFwiXG4gIHR5cGU9XCJ0ZXh0XCJcbiAgZXROYXRpdmVJbnB1dFJlZlxuLz5cblxuPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2V0SW5wdXRTdWZmaXhdXCIgLz5cbiJdfQ==
|
package/esm2020/lib/components/forms/components/input/components/textarea-input/public-api.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './textarea-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2NvbXBvbmVudHMvdGV4dGFyZWEtaW5wdXQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi90ZXh0YXJlYS1pbnB1dC5jb21wb25lbnQnO1xuIl19
|