@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
package/esm2020/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './search-input-clear.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3NlYXJjaC1pbnB1dC1jbGVhci9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0NBQWdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, Input, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { INPUT_TOKEN } from '../../../../directives';
|
|
4
|
+
import { SEARCH_INPUT_TOKEN } from '../../directives';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class SearchInputClearComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.searchInput = inject(SEARCH_INPUT_TOKEN);
|
|
9
|
+
this.input = inject(INPUT_TOKEN);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
SearchInputClearComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputClearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
+
SearchInputClearComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SearchInputClearComponent, isStandalone: true, selector: "et-search-input-clear", inputs: { ariaLabel: "ariaLabel" }, host: { classAttribute: "et-search-input-clear" }, ngImport: i0, template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"searchInput._clear(); input.focusInputVia()\"\n class=\"et-search-input-clear-button\"\n type=\"button\"\n>\n <ng-content />\n</button>\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputClearComponent, decorators: [{
|
|
15
|
+
type: Component,
|
|
16
|
+
args: [{ selector: 'et-search-input-clear', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
17
|
+
class: 'et-search-input-clear',
|
|
18
|
+
}, imports: [AsyncPipe], template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"searchInput._clear(); input.focusInputVia()\"\n class=\"et-search-input-clear-button\"\n type=\"button\"\n>\n <ng-content />\n</button>\n" }]
|
|
19
|
+
}], propDecorators: { ariaLabel: [{
|
|
20
|
+
type: Input
|
|
21
|
+
}] } });
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LWNsZWFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3NlYXJjaC1pbnB1dC1jbGVhci9zZWFyY2gtaW5wdXQtY2xlYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvcGFydGlhbHMvc2VhcmNoLWlucHV0LWNsZWFyL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFjdEQsTUFBTSxPQUFPLHlCQUF5QjtJQVp0QztRQWFxQixnQkFBVyxHQUFHLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBQ3pDLFVBQUssR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7S0FJaEQ7O3NIQU5ZLHlCQUF5QjswR0FBekIseUJBQXlCLHdLQ2pCdEMsNlJBVUEscURES1ksU0FBUzsyRkFFUix5QkFBeUI7a0JBWnJDLFNBQVM7K0JBQ0UsdUJBQXVCLGNBR3JCLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsdUJBQXVCO3FCQUMvQixXQUNRLENBQUMsU0FBUyxDQUFDOzhCQU9wQixTQUFTO3NCQURSLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElOUFVUX1RPS0VOIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBTRUFSQ0hfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtc2VhcmNoLWlucHV0LWNsZWFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtc2VhcmNoLWlucHV0LWNsZWFyJyxcbiAgfSxcbiAgaW1wb3J0czogW0FzeW5jUGlwZV0sXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaElucHV0Q2xlYXJDb21wb25lbnQge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgc2VhcmNoSW5wdXQgPSBpbmplY3QoU0VBUkNIX0lOUFVUX1RPS0VOKTtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0KElOUFVUX1RPS0VOKTtcblxuICBASW5wdXQoKVxuICBhcmlhTGFiZWw/OiBzdHJpbmc7XG59XG4iLCI8YnV0dG9uXG4gIFthdHRyLmFyaWEtY29udHJvbHNdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5hcmlhLWxhYmVsXT1cImFyaWFMYWJlbCB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cImlucHV0LmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgKGNsaWNrKT1cInNlYXJjaElucHV0Ll9jbGVhcigpOyBpbnB1dC5mb2N1c0lucHV0VmlhKClcIlxuICBjbGFzcz1cImV0LXNlYXJjaC1pbnB1dC1jbGVhci1idXR0b25cIlxuICB0eXBlPVwiYnV0dG9uXCJcbj5cbiAgPG5nLWNvbnRlbnQgLz5cbjwvYnV0dG9uPlxuIl19
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './components/public-api';
|
|
2
|
+
export * from './directives/public-api';
|
|
3
|
+
export * from './input.imports';
|
|
4
|
+
export * from './partials/public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyx1QkFBdUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQuaW1wb3J0cyc7XG5leHBvcnQgKiBmcm9tICcuL3BhcnRpYWxzL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9sYWJlbC9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, InjectionToken, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { FormFieldStateService } from '../../../../services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export const LABEL_TOKEN = new InjectionToken('ET_LABEL_COMPONENT_TOKEN');
|
|
6
|
+
let nextUniqueId = 0;
|
|
7
|
+
export class LabelComponent {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.formFieldStateService = inject(FormFieldStateService);
|
|
10
|
+
this.id = `et-label-${++nextUniqueId}`;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
LabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
+
LabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: LabelComponent, isStandalone: true, selector: "et-label", host: { classAttribute: "et-label" }, providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }], exportAs: ["etLabel"], ngImport: i0, template: `
|
|
15
|
+
<label
|
|
16
|
+
[attr.for]="formFieldStateService.inputId$ | async"
|
|
17
|
+
[attr.aria-owns]="formFieldStateService.inputId$ | async"
|
|
18
|
+
[id]="id"
|
|
19
|
+
class="et-label-native-label"
|
|
20
|
+
>
|
|
21
|
+
<ng-content />
|
|
22
|
+
</label>
|
|
23
|
+
<ng-content select="[etLabelSuffix]" />
|
|
24
|
+
`, isInline: true, dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelComponent, decorators: [{
|
|
26
|
+
type: Component,
|
|
27
|
+
args: [{
|
|
28
|
+
selector: 'et-label',
|
|
29
|
+
template: `
|
|
30
|
+
<label
|
|
31
|
+
[attr.for]="formFieldStateService.inputId$ | async"
|
|
32
|
+
[attr.aria-owns]="formFieldStateService.inputId$ | async"
|
|
33
|
+
[id]="id"
|
|
34
|
+
class="et-label-native-label"
|
|
35
|
+
>
|
|
36
|
+
<ng-content />
|
|
37
|
+
</label>
|
|
38
|
+
<ng-content select="[etLabelSuffix]" />
|
|
39
|
+
`,
|
|
40
|
+
encapsulation: ViewEncapsulation.None,
|
|
41
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
42
|
+
standalone: true,
|
|
43
|
+
exportAs: 'etLabel',
|
|
44
|
+
imports: [AsyncPipe],
|
|
45
|
+
providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }],
|
|
46
|
+
host: {
|
|
47
|
+
class: 'et-label',
|
|
48
|
+
},
|
|
49
|
+
}]
|
|
50
|
+
}] });
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvbGFiZWwvY29tcG9uZW50cy9sYWJlbC9sYWJlbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFN0QsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBRTFGLElBQUksWUFBWSxHQUFHLENBQUMsQ0FBQztBQXlCckIsTUFBTSxPQUFPLGNBQWM7SUF2QjNCO1FBd0JxQiwwQkFBcUIsR0FBRyxNQUFNLENBQUMscUJBQXFCLENBQUMsQ0FBQztRQUVoRSxPQUFFLEdBQUcsWUFBWSxFQUFFLFlBQVksRUFBRSxDQUFDO0tBQzVDOzsyR0FKWSxjQUFjOytGQUFkLGNBQWMsNkZBTGQsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLGNBQWMsRUFBRSxDQUFDLGlEQWhCeEQ7Ozs7Ozs7Ozs7R0FVVCx1REFLUyxTQUFTOzJGQU1SLGNBQWM7a0JBdkIxQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxVQUFVO29CQUNwQixRQUFRLEVBQUU7Ozs7Ozs7Ozs7R0FVVDtvQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsU0FBUztvQkFDbkIsT0FBTyxFQUFFLENBQUMsU0FBUyxDQUFDO29CQUNwQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxDQUFDO29CQUNsRSxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtRmllbGRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5cbmV4cG9ydCBjb25zdCBMQUJFTF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxMYWJlbENvbXBvbmVudD4oJ0VUX0xBQkVMX0NPTVBPTkVOVF9UT0tFTicpO1xuXG5sZXQgbmV4dFVuaXF1ZUlkID0gMDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtbGFiZWwnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxsYWJlbFxuICAgICAgW2F0dHIuZm9yXT1cImZvcm1GaWVsZFN0YXRlU2VydmljZS5pbnB1dElkJCB8IGFzeW5jXCJcbiAgICAgIFthdHRyLmFyaWEtb3duc109XCJmb3JtRmllbGRTdGF0ZVNlcnZpY2UuaW5wdXRJZCQgfCBhc3luY1wiXG4gICAgICBbaWRdPVwiaWRcIlxuICAgICAgY2xhc3M9XCJldC1sYWJlbC1uYXRpdmUtbGFiZWxcIlxuICAgID5cbiAgICAgIDxuZy1jb250ZW50IC8+XG4gICAgPC9sYWJlbD5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbZXRMYWJlbFN1ZmZpeF1cIiAvPlxuICBgLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldExhYmVsJyxcbiAgaW1wb3J0czogW0FzeW5jUGlwZV0sXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogTEFCRUxfVE9LRU4sIHVzZUV4aXN0aW5nOiBMYWJlbENvbXBvbmVudCB9XSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtbGFiZWwnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBMYWJlbENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBmb3JtRmllbGRTdGF0ZVNlcnZpY2UgPSBpbmplY3QoRm9ybUZpZWxkU3RhdGVTZXJ2aWNlKTtcblxuICByZWFkb25seSBpZCA9IGBldC1sYWJlbC0keysrbmV4dFVuaXF1ZUlkfWA7XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './label.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2NvbXBvbmVudHMvbGFiZWwvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYWJlbC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './label/public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2NvbXBvbmVudHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYWJlbC9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9sYWJlbC9kaXJlY3RpdmVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
+
import { Directive, HostBinding, Input } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class LabelSuffixDirective {
|
|
5
|
+
constructor() {
|
|
6
|
+
this._showToScreenReader = false;
|
|
7
|
+
}
|
|
8
|
+
get showToScreenReader() {
|
|
9
|
+
return this._showToScreenReader;
|
|
10
|
+
}
|
|
11
|
+
set showToScreenReader(value) {
|
|
12
|
+
this._showToScreenReader = coerceBooleanProperty(value);
|
|
13
|
+
}
|
|
14
|
+
get _attrAriaHidden() {
|
|
15
|
+
return this.showToScreenReader ? null : 'true';
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
LabelSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelSuffixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
19
|
+
LabelSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: LabelSuffixDirective, isStandalone: true, selector: "[etLabelSuffix]", inputs: { showToScreenReader: "showToScreenReader" }, host: { properties: { "attr.aria-hidden": "this._attrAriaHidden" } }, exportAs: ["etLabelSuffix"], ngImport: i0 });
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelSuffixDirective, decorators: [{
|
|
21
|
+
type: Directive,
|
|
22
|
+
args: [{
|
|
23
|
+
selector: '[etLabelSuffix]',
|
|
24
|
+
standalone: true,
|
|
25
|
+
exportAs: 'etLabelSuffix',
|
|
26
|
+
}]
|
|
27
|
+
}], propDecorators: { showToScreenReader: [{
|
|
28
|
+
type: Input
|
|
29
|
+
}], _attrAriaHidden: [{
|
|
30
|
+
type: HostBinding,
|
|
31
|
+
args: ['attr.aria-hidden']
|
|
32
|
+
}] } });
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwtc3VmZml4LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvbGFiZWwtc3VmZml4L2xhYmVsLXN1ZmZpeC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPOUQsTUFBTSxPQUFPLG9CQUFvQjtJQUxqQztRQWFVLHdCQUFtQixHQUFHLEtBQUssQ0FBQztLQU1yQztJQWJDLElBQ0ksa0JBQWtCO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLG1CQUFtQixDQUFDO0lBQ2xDLENBQUM7SUFDRCxJQUFJLGtCQUFrQixDQUFDLEtBQW1CO1FBQ3hDLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxRCxDQUFDO0lBR0QsSUFDWSxlQUFlO1FBQ3pCLE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUNqRCxDQUFDOztpSEFiVSxvQkFBb0I7cUdBQXBCLG9CQUFvQjsyRkFBcEIsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsZUFBZTtpQkFDMUI7OEJBR0ssa0JBQWtCO3NCQURyQixLQUFLO2dCQVVNLGVBQWU7c0JBRDFCLFdBQVc7dUJBQUMsa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQm9vbGVhbklucHV0LCBjb2VyY2VCb29sZWFuUHJvcGVydHkgfSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBIb3N0QmluZGluZywgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2V0TGFiZWxTdWZmaXhdJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldExhYmVsU3VmZml4Jyxcbn0pXG5leHBvcnQgY2xhc3MgTGFiZWxTdWZmaXhEaXJlY3RpdmUge1xuICBASW5wdXQoKVxuICBnZXQgc2hvd1RvU2NyZWVuUmVhZGVyKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9zaG93VG9TY3JlZW5SZWFkZXI7XG4gIH1cbiAgc2V0IHNob3dUb1NjcmVlblJlYWRlcih2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fc2hvd1RvU2NyZWVuUmVhZGVyID0gY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKTtcbiAgfVxuICBwcml2YXRlIF9zaG93VG9TY3JlZW5SZWFkZXIgPSBmYWxzZTtcblxuICBASG9zdEJpbmRpbmcoJ2F0dHIuYXJpYS1oaWRkZW4nKVxuICBwcml2YXRlIGdldCBfYXR0ckFyaWFIaWRkZW4oKSB7XG4gICAgcmV0dXJuIHRoaXMuc2hvd1RvU2NyZWVuUmVhZGVyID8gbnVsbCA6ICd0cnVlJztcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './label-suffix.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvbGFiZWwtc3VmZml4L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGFiZWwtc3VmZml4LmRpcmVjdGl2ZSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './label-suffix/public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYWJlbC1zdWZmaXgvcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { LabelComponent } from './components';
|
|
2
|
+
import { LabelSuffixDirective } from './directives';
|
|
3
|
+
export const LabelImports = [LabelComponent, LabelSuffixDirective];
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2xhYmVsLmltcG9ydHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUM5QyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFFcEQsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHLENBQUMsY0FBYyxFQUFFLG9CQUFvQixDQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBMYWJlbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBMYWJlbFN1ZmZpeERpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcyc7XG5cbmV4cG9ydCBjb25zdCBMYWJlbEltcG9ydHMgPSBbTGFiZWxDb21wb25lbnQsIExhYmVsU3VmZml4RGlyZWN0aXZlXSBhcyBjb25zdDtcbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './components/public-api';
|
|
2
|
+
export * from './directives/public-api';
|
|
3
|
+
export * from './label.imports';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xhYmVsLmltcG9ydHMnO1xuIl19
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './checkbox/public-api';
|
|
2
|
+
export * from './error/public-api';
|
|
3
|
+
export * from './input/public-api';
|
|
4
|
+
export * from './label/public-api';
|
|
5
|
+
export * from './radio/public-api';
|
|
6
|
+
export * from './segmented-button/public-api';
|
|
7
|
+
export * from './select/public-api';
|
|
8
|
+
export * from './slide-toggle/public-api';
|
|
9
|
+
export * from './slider/public-api';
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NoZWNrYm94L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9lcnJvci9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xhYmVsL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vc2VsZWN0L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9zbGlkZS10b2dnbGUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3NsaWRlci9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './radio-field/public-api';
|
|
2
|
+
export * from './radio-group/public-api';
|
|
3
|
+
export * from './radio/public-api';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcmFkaW8tZmllbGQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3JhZGlvLWdyb3VwL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcmFkaW8vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AsyncPipe, NgClass } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
4
|
+
import { InputBase } from '../../../../utils';
|
|
5
|
+
import { RadioDirective, RADIO_GROUP_TOKEN, RADIO_TOKEN } from '../../directives';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../directives/radio/radio.directive";
|
|
8
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
9
|
+
export class RadioComponent extends InputBase {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
this.radio = inject(RADIO_TOKEN);
|
|
13
|
+
this.radioGroup = inject(RADIO_GROUP_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
RadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
RadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioComponent, isStandalone: true, selector: "et-radio", host: { classAttribute: "et-radio" }, usesInheritance: true, hostDirectives: [{ directive: i1.RadioDirective, inputs: ["value", "value", "disabled", "disabled"] }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete"] }], ngImport: i0, template: "<input\n [attr.tabindex]=\"(radio.disabled$ | async) ? -1 : 0\"\n [attr.checked]=\"(radio.checked$ | async) || null\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [disabled]=\"radio.disabled$ | async\"\n [attr.id]=\"input.id\"\n [attr.name]=\"radioGroup.name\"\n (click)=\"radio._onInputInteraction($event)\"\n (blur)=\"radio._controlTouched()\"\n class=\"et-radio-native-input\"\n type=\"radio\"\n etNativeInputRef\n/>\n\n<div [ngClass]=\"{ 'et-radio-check--active': radio.checked$ | async }\" class=\"et-radio-check\"></div>\n", styles: [":where(.et-radio){--et-radio-size: 25px;--et-radio-check-size: 10px;--et-radio-border-radius: 50%;--et-radio-border-color: #e5e5e5;--et-radio-state-color: #e5e5e5;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);border:1px solid var(--et-radio-border-color);border-radius:var(--et-radio-border-radius);display:inline-grid}:where(.et-radio-check){inline-size:var(--et-radio-check-size);block-size:var(--et-radio-check-size);border-radius:var(--et-radio-border-radius)}:where(.et-radio-check).et-radio-check--active{background-color:var(--et-radio-state-color)}.et-radio{position:relative;align-items:center;justify-items:center}.et-radio-native-input,.et-radio-check{grid-area:1/1/2/2}.et-radio-native-input{z-index:1;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);opacity:0;margin:0;border:none}.et-radio:not(.et-radio--disabled) .et-radio-native-input{cursor:pointer}\n"], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { 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: RadioComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-radio', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-radio',
|
|
22
|
+
}, imports: [AsyncPipe, NgClass, NativeInputRefDirective], hostDirectives: [
|
|
23
|
+
{ directive: RadioDirective, inputs: ['value', 'disabled'] },
|
|
24
|
+
{ directive: InputDirective, inputs: ['autocomplete'] },
|
|
25
|
+
], template: "<input\n [attr.tabindex]=\"(radio.disabled$ | async) ? -1 : 0\"\n [attr.checked]=\"(radio.checked$ | async) || null\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [disabled]=\"radio.disabled$ | async\"\n [attr.id]=\"input.id\"\n [attr.name]=\"radioGroup.name\"\n (click)=\"radio._onInputInteraction($event)\"\n (blur)=\"radio._controlTouched()\"\n class=\"et-radio-native-input\"\n type=\"radio\"\n etNativeInputRef\n/>\n\n<div [ngClass]=\"{ 'et-radio-check--active': radio.checked$ | async }\" class=\"et-radio-check\"></div>\n", styles: [":where(.et-radio){--et-radio-size: 25px;--et-radio-check-size: 10px;--et-radio-border-radius: 50%;--et-radio-border-color: #e5e5e5;--et-radio-state-color: #e5e5e5;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);border:1px solid var(--et-radio-border-color);border-radius:var(--et-radio-border-radius);display:inline-grid}:where(.et-radio-check){inline-size:var(--et-radio-check-size);block-size:var(--et-radio-check-size);border-radius:var(--et-radio-border-radius)}:where(.et-radio-check).et-radio-check--active{background-color:var(--et-radio-state-color)}.et-radio{position:relative;align-items:center;justify-items:center}.et-radio-native-input,.et-radio-check{grid-area:1/1/2/2}.et-radio-native-input{z-index:1;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);opacity:0;margin:0;border:none}.et-radio:not(.et-radio--disabled) .et-radio-native-input{cursor:pointer}\n"] }]
|
|
26
|
+
}] });
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby9yYWRpby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9jb21wb25lbnRzL3JhZGlvL3JhZGlvLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDckQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsY0FBYyxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBa0JsRixNQUFNLE9BQU8sY0FBZSxTQUFRLFNBQVM7SUFoQjdDOztRQWlCcUIsVUFBSyxHQUFHLE1BQU0sQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUM1QixlQUFVLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7S0FDM0Q7OzJHQUhZLGNBQWM7K0ZBQWQsY0FBYyxxVEN0QjNCLG9tQkFnQkEsNjdCREFZLFNBQVMsOENBQUUsT0FBTyxvRkFBRSx1QkFBdUI7MkZBTTFDLGNBQWM7a0JBaEIxQixTQUFTOytCQUNFLFVBQVUsY0FHUixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCLFdBQ1EsQ0FBQyxTQUFTLEVBQUUsT0FBTyxFQUFFLHVCQUF1QixDQUFDLGtCQUN0Qzt3QkFDZCxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQyxFQUFFO3dCQUM1RCxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsY0FBYyxDQUFDLEVBQUU7cUJBQ3hEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlLCBOZ0NsYXNzIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRCYXNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHsgUmFkaW9EaXJlY3RpdmUsIFJBRElPX0dST1VQX1RPS0VOLCBSQURJT19UT0tFTiB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1yYWRpbycsXG4gIHRlbXBsYXRlVXJsOiAnLi9yYWRpby5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3JhZGlvLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1yYWRpbycsXG4gIH0sXG4gIGltcG9ydHM6IFtBc3luY1BpcGUsIE5nQ2xhc3MsIE5hdGl2ZUlucHV0UmVmRGlyZWN0aXZlXSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICB7IGRpcmVjdGl2ZTogUmFkaW9EaXJlY3RpdmUsIGlucHV0czogWyd2YWx1ZScsICdkaXNhYmxlZCddIH0sXG4gICAgeyBkaXJlY3RpdmU6IElucHV0RGlyZWN0aXZlLCBpbnB1dHM6IFsnYXV0b2NvbXBsZXRlJ10gfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9Db21wb25lbnQgZXh0ZW5kcyBJbnB1dEJhc2Uge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgcmFkaW8gPSBpbmplY3QoUkFESU9fVE9LRU4pO1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgcmFkaW9Hcm91cCA9IGluamVjdChSQURJT19HUk9VUF9UT0tFTik7XG59XG4iLCI8aW5wdXRcbiAgW2F0dHIudGFiaW5kZXhdPVwiKHJhZGlvLmRpc2FibGVkJCB8IGFzeW5jKSA/IC0xIDogMFwiXG4gIFthdHRyLmNoZWNrZWRdPVwiKHJhZGlvLmNoZWNrZWQkIHwgYXN5bmMpIHx8IG51bGxcIlxuICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiaW5wdXQubGFiZWxJZCQgfCBhc3luY1wiXG4gIFthdHRyLmFyaWEtcmVxdWlyZWRdPVwiKGlucHV0LnJlcXVpcmVkJCB8IGFzeW5jKSB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cInJhZGlvLmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgW2F0dHIuaWRdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5uYW1lXT1cInJhZGlvR3JvdXAubmFtZVwiXG4gIChjbGljayk9XCJyYWRpby5fb25JbnB1dEludGVyYWN0aW9uKCRldmVudClcIlxuICAoYmx1cik9XCJyYWRpby5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtcmFkaW8tbmF0aXZlLWlucHV0XCJcbiAgdHlwZT1cInJhZGlvXCJcbiAgZXROYXRpdmVJbnB1dFJlZlxuLz5cblxuPGRpdiBbbmdDbGFzc109XCJ7ICdldC1yYWRpby1jaGVjay0tYWN0aXZlJzogcmFkaW8uY2hlY2tlZCQgfCBhc3luYyB9XCIgY2xhc3M9XCJldC1yYWRpby1jaGVja1wiPjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio-field.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcmFkaW8tZmllbGQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1maWVsZC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { StaticFormFieldDirective } from '../../../../directives';
|
|
3
|
+
import { RadioFieldDirective } from '../../directives';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../../../../directives/static-form-field/static-form-field.directive";
|
|
6
|
+
import * as i2 from "../../directives/radio-field/radio-field.directive";
|
|
7
|
+
export class RadioFieldComponent {
|
|
8
|
+
}
|
|
9
|
+
RadioFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
+
RadioFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioFieldComponent, isStandalone: true, selector: "et-radio-field", host: { classAttribute: "et-form-field et-radio-field" }, hostDirectives: [{ directive: i1.StaticFormFieldDirective }, { directive: i2.RadioFieldDirective }], ngImport: i0, template: `
|
|
11
|
+
<div class="et-radio-field-container">
|
|
12
|
+
<ng-content select="et-radio" />
|
|
13
|
+
<ng-content select="et-label" />
|
|
14
|
+
</div>
|
|
15
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldComponent, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{
|
|
19
|
+
selector: 'et-radio-field',
|
|
20
|
+
template: `
|
|
21
|
+
<div class="et-radio-field-container">
|
|
22
|
+
<ng-content select="et-radio" />
|
|
23
|
+
<ng-content select="et-label" />
|
|
24
|
+
</div>
|
|
25
|
+
`,
|
|
26
|
+
standalone: true,
|
|
27
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28
|
+
encapsulation: ViewEncapsulation.None,
|
|
29
|
+
host: {
|
|
30
|
+
class: 'et-form-field et-radio-field',
|
|
31
|
+
},
|
|
32
|
+
hostDirectives: [StaticFormFieldDirective, RadioFieldDirective],
|
|
33
|
+
}]
|
|
34
|
+
}] });
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1maWVsZC9yYWRpby1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQWtCdkQsTUFBTSxPQUFPLG1CQUFtQjs7Z0hBQW5CLG1CQUFtQjtvR0FBbkIsbUJBQW1CLHlPQWRwQjs7Ozs7R0FLVDsyRkFTVSxtQkFBbUI7a0JBaEIvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLFFBQVEsRUFBRTs7Ozs7R0FLVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLDhCQUE4QjtxQkFDdEM7b0JBQ0QsY0FBYyxFQUFFLENBQUMsd0JBQXdCLEVBQUUsbUJBQW1CLENBQUM7aUJBQ2hFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0YXRpY0Zvcm1GaWVsZERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUmFkaW9GaWVsZERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1yYWRpby1maWVsZCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImV0LXJhZGlvLWZpZWxkLWNvbnRhaW5lclwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtcmFkaW9cIiAvPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtbGFiZWxcIiAvPlxuICAgIDwvZGl2PlxuICBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtZm9ybS1maWVsZCBldC1yYWRpby1maWVsZCcsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbU3RhdGljRm9ybUZpZWxkRGlyZWN0aXZlLCBSYWRpb0ZpZWxkRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9GaWVsZENvbXBvbmVudCB7fVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio-group.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcmFkaW8tZ3JvdXAvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1ncm91cC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, forwardRef, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DynamicFormGroupDirective, StaticFormGroupDirective, WriteableInputDirective } from '../../../../directives';
|
|
4
|
+
import { InputStateService } from '../../../../services';
|
|
5
|
+
import { ErrorComponent } from '../../../error';
|
|
6
|
+
import { RadioGroupDirective } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../../../directives/static-form-group/static-form-group.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/writeable-input/writeable-input.directive";
|
|
10
|
+
import * as i3 from "../../../../directives/dynamic-form-group/dynamic-form-group.directive";
|
|
11
|
+
import * as i4 from "../../directives/radio-group/radio-group.directive";
|
|
12
|
+
export class RadioGroupComponent {
|
|
13
|
+
constructor() {
|
|
14
|
+
this.inputState = inject(InputStateService);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
RadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
+
RadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioGroupComponent, isStandalone: true, selector: "et-radio-group", host: { classAttribute: "et-form-group et-radio-group" }, hostDirectives: [{ directive: i1.StaticFormGroupDirective }, { directive: i2.WriteableInputDirective }, { directive: i0.forwardRef(function () { return i3.DynamicFormGroupDirective; }), inputs: ["hideErrorMessage", "hideErrorMessage"] }, { directive: i4.RadioGroupDirective }], ngImport: i0, template: `
|
|
19
|
+
<div class="et-radio-group-container">
|
|
20
|
+
<ng-content select="et-radio-field" />
|
|
21
|
+
</div>
|
|
22
|
+
<et-error [errors]="inputState.errors$ | async" />
|
|
23
|
+
`, isInline: true, styles: [":where(.et-radio-group){display:block}\n"], dependencies: [{ kind: "component", type: ErrorComponent, selector: "et-error", inputs: ["errors"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupComponent, decorators: [{
|
|
25
|
+
type: Component,
|
|
26
|
+
args: [{ selector: 'et-radio-group', template: `
|
|
27
|
+
<div class="et-radio-group-container">
|
|
28
|
+
<ng-content select="et-radio-field" />
|
|
29
|
+
</div>
|
|
30
|
+
<et-error [errors]="inputState.errors$ | async" />
|
|
31
|
+
`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
32
|
+
class: 'et-form-group et-radio-group',
|
|
33
|
+
}, hostDirectives: [
|
|
34
|
+
StaticFormGroupDirective,
|
|
35
|
+
WriteableInputDirective,
|
|
36
|
+
{
|
|
37
|
+
directive: forwardRef(() => DynamicFormGroupDirective),
|
|
38
|
+
inputs: ['hideErrorMessage'],
|
|
39
|
+
},
|
|
40
|
+
RadioGroupDirective,
|
|
41
|
+
], imports: [ErrorComponent, AsyncPipe], styles: [":where(.et-radio-group){display:block}\n"] }]
|
|
42
|
+
}] });
|
|
43
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZ3JvdXAuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1ncm91cC9yYWRpby1ncm91cC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRyxPQUFPLEVBQUUseUJBQXlCLEVBQUUsd0JBQXdCLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN0SCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDaEQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7OztBQTRCdkQsTUFBTSxPQUFPLG1CQUFtQjtJQTFCaEM7UUEyQnFCLGVBQVUsR0FBRyxNQUFNLENBQUMsaUJBQWlCLENBQUMsQ0FBQztLQUMzRDs7Z0hBRlksbUJBQW1CO29HQUFuQixtQkFBbUIsMFpBeEJwQjs7Ozs7R0FLVCxrSEFpQlMsY0FBYyxvRUFBRSxTQUFTOzJGQUV4QixtQkFBbUI7a0JBMUIvQixTQUFTOytCQUNFLGdCQUFnQixZQUNoQjs7Ozs7R0FLVCxjQUVXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsOEJBQThCO3FCQUN0QyxrQkFDZTt3QkFDZCx3QkFBd0I7d0JBQ3hCLHVCQUF1Qjt3QkFDdkI7NEJBQ0UsU0FBUyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQzs0QkFDdEQsTUFBTSxFQUFFLENBQUMsa0JBQWtCLENBQUM7eUJBQzdCO3dCQUNELG1CQUFtQjtxQkFDcEIsV0FDUSxDQUFDLGNBQWMsRUFBRSxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgZm9yd2FyZFJlZiwgaW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRHluYW1pY0Zvcm1Hcm91cERpcmVjdGl2ZSwgU3RhdGljRm9ybUdyb3VwRGlyZWN0aXZlLCBXcml0ZWFibGVJbnB1dERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBFcnJvckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2Vycm9yJztcbmltcG9ydCB7IFJhZGlvR3JvdXBEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtcmFkaW8tZ3JvdXAnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJldC1yYWRpby1ncm91cC1jb250YWluZXJcIj5cbiAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImV0LXJhZGlvLWZpZWxkXCIgLz5cbiAgICA8L2Rpdj5cbiAgICA8ZXQtZXJyb3IgW2Vycm9yc109XCJpbnB1dFN0YXRlLmVycm9ycyQgfCBhc3luY1wiIC8+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL3JhZGlvLWdyb3VwLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1mb3JtLWdyb3VwIGV0LXJhZGlvLWdyb3VwJyxcbiAgfSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICBTdGF0aWNGb3JtR3JvdXBEaXJlY3RpdmUsXG4gICAgV3JpdGVhYmxlSW5wdXREaXJlY3RpdmUsXG4gICAge1xuICAgICAgZGlyZWN0aXZlOiBmb3J3YXJkUmVmKCgpID0+IER5bmFtaWNGb3JtR3JvdXBEaXJlY3RpdmUpLFxuICAgICAgaW5wdXRzOiBbJ2hpZGVFcnJvck1lc3NhZ2UnXSxcbiAgICB9LFxuICAgIFJhZGlvR3JvdXBEaXJlY3RpdmUsXG4gIF0sXG4gIGltcG9ydHM6IFtFcnJvckNvbXBvbmVudCwgQXN5bmNQaXBlXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9Hcm91cENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBpbnB1dFN0YXRlID0gaW5qZWN0KElucHV0U3RhdGVTZXJ2aWNlKTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9kaXJlY3RpdmVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './radio-field/public-api';
|
|
2
|
+
export * from './radio-group/public-api';
|
|
3
|
+
export * from './radio/public-api';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcmFkaW8tZmllbGQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3JhZGlvLWdyb3VwL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9kaXJlY3RpdmVzL3JhZGlvL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcmFkaW8vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
+
import { Directive, inject, InjectionToken, Input } from '@angular/core';
|
|
3
|
+
import { createReactiveBindings, DestroyService } from '@ethlete/core';
|
|
4
|
+
import { BehaviorSubject, combineLatest, map } from 'rxjs';
|
|
5
|
+
import { INPUT_TOKEN } from '../../../../directives';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export const RADIO_TOKEN = new InjectionToken('ET_RADIO_DIRECTIVE_TOKEN');
|
|
8
|
+
export class RadioDirective {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.input = inject(INPUT_TOKEN);
|
|
11
|
+
this._value$ = new BehaviorSubject(null);
|
|
12
|
+
this._disabled$ = new BehaviorSubject(false);
|
|
13
|
+
this.checked$ = combineLatest([this.input.value$, this._value$]).pipe(map(([inputValue, value]) => inputValue === value));
|
|
14
|
+
this.disabled$ = combineLatest([this.input.disabled$, this._disabled$]).pipe(map(([inputDisabled, disabled]) => inputDisabled || disabled));
|
|
15
|
+
this._bindings = createReactiveBindings({
|
|
16
|
+
attribute: ['class.et-radio--checked'],
|
|
17
|
+
observable: this.checked$,
|
|
18
|
+
}, {
|
|
19
|
+
attribute: ['class.et-radio--disabled'],
|
|
20
|
+
observable: this.disabled$,
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
get value() {
|
|
24
|
+
return this._value$.getValue();
|
|
25
|
+
}
|
|
26
|
+
set value(value) {
|
|
27
|
+
this._value$.next(value);
|
|
28
|
+
}
|
|
29
|
+
get disabled() {
|
|
30
|
+
return this._disabled$.getValue();
|
|
31
|
+
}
|
|
32
|
+
set disabled(value) {
|
|
33
|
+
this._disabled$.next(coerceBooleanProperty(value));
|
|
34
|
+
}
|
|
35
|
+
_onInputInteraction(event) {
|
|
36
|
+
event.stopPropagation();
|
|
37
|
+
if (this.disabled) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
this.input._updateValue(this.value);
|
|
41
|
+
this.input._markAsTouched();
|
|
42
|
+
this.input._setShouldDisplayError(true);
|
|
43
|
+
}
|
|
44
|
+
_controlTouched() {
|
|
45
|
+
this.input._markAsTouched();
|
|
46
|
+
this.input._setShouldDisplayError(true);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
RadioDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
50
|
+
RadioDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioDirective, isStandalone: true, inputs: { value: "value", disabled: "disabled" }, providers: [{ provide: RADIO_TOKEN, useExisting: RadioDirective }, DestroyService], exportAs: ["etRadio"], ngImport: i0 });
|
|
51
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioDirective, decorators: [{
|
|
52
|
+
type: Directive,
|
|
53
|
+
args: [{
|
|
54
|
+
standalone: true,
|
|
55
|
+
providers: [{ provide: RADIO_TOKEN, useExisting: RadioDirective }, DestroyService],
|
|
56
|
+
exportAs: 'etRadio',
|
|
57
|
+
}]
|
|
58
|
+
}], propDecorators: { value: [{
|
|
59
|
+
type: Input
|
|
60
|
+
}], disabled: [{
|
|
61
|
+
type: Input
|
|
62
|
+
}] } });
|
|
63
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby9yYWRpby5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RSxPQUFPLEVBQUUsZUFBZSxFQUFFLGFBQWEsRUFBRSxHQUFHLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDM0QsT0FBTyxFQUFrQixXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7QUFHckUsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBTzFGLE1BQU0sT0FBTyxjQUFjO0lBTDNCO1FBTVcsVUFBSyxHQUFHLE1BQU0sQ0FBNkIsV0FBVyxDQUFDLENBQUM7UUFTekQsWUFBTyxHQUFHLElBQUksZUFBZSxDQUFhLElBQUksQ0FBQyxDQUFDO1FBU2hELGVBQVUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUV2QyxhQUFRLEdBQUcsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUN2RSxHQUFHLENBQUMsQ0FBQyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsRUFBRSxFQUFFLENBQUMsVUFBVSxLQUFLLEtBQUssQ0FBQyxDQUNuRCxDQUFDO1FBRU8sY0FBUyxHQUFHLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDOUUsR0FBRyxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsUUFBUSxDQUFDLEVBQUUsRUFBRSxDQUFDLGFBQWEsSUFBSSxRQUFRLENBQUMsQ0FDOUQsQ0FBQztRQUVPLGNBQVMsR0FBRyxzQkFBc0IsQ0FDekM7WUFDRSxTQUFTLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztZQUN0QyxVQUFVLEVBQUUsSUFBSSxDQUFDLFFBQVE7U0FDMUIsRUFDRDtZQUNFLFNBQVMsRUFBRSxDQUFDLDBCQUEwQixDQUFDO1lBQ3ZDLFVBQVUsRUFBRSxJQUFJLENBQUMsU0FBUztTQUMzQixDQUNGLENBQUM7S0FtQkg7SUF0REMsSUFDSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ2pDLENBQUM7SUFDRCxJQUFJLEtBQUssQ0FBQyxLQUFpQjtRQUN6QixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBR0QsSUFDSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFDRCxJQUFJLFFBQVEsQ0FBQyxLQUFtQjtRQUM5QixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ3JELENBQUM7SUFzQkQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2pCLE9BQU87U0FDUjtRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVwQyxJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQzs7MkdBeERVLGNBQWM7K0ZBQWQsY0FBYyxtRkFIZCxDQUFDLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLEVBQUUsY0FBYyxFQUFFLEVBQUUsY0FBYyxDQUFDOzJGQUd2RSxjQUFjO2tCQUwxQixTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxFQUFFLGNBQWMsQ0FBQztvQkFDbEYsUUFBUSxFQUFFLFNBQVM7aUJBQ3BCOzhCQUtLLEtBQUs7c0JBRFIsS0FBSztnQkFVRixRQUFRO3NCQURYLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCb29sZWFuSW5wdXQsIGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzLCBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCBtYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBJTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUmFkaW9WYWx1ZSB9IGZyb20gJy4uLy4uL3R5cGVzJztcblxuZXhwb3J0IGNvbnN0IFJBRElPX1RPS0VOID0gbmV3IEluamVjdGlvblRva2VuPFJhZGlvRGlyZWN0aXZlPignRVRfUkFESU9fRElSRUNUSVZFX1RPS0VOJyk7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFJBRElPX1RPS0VOLCB1c2VFeGlzdGluZzogUmFkaW9EaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW8nLFxufSlcbmV4cG9ydCBjbGFzcyBSYWRpb0RpcmVjdGl2ZSB7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPFJhZGlvVmFsdWU+PihJTlBVVF9UT0tFTik7XG5cbiAgQElucHV0KClcbiAgZ2V0IHZhbHVlKCkge1xuICAgIHJldHVybiB0aGlzLl92YWx1ZSQuZ2V0VmFsdWUoKTtcbiAgfVxuICBzZXQgdmFsdWUodmFsdWU6IFJhZGlvVmFsdWUpIHtcbiAgICB0aGlzLl92YWx1ZSQubmV4dCh2YWx1ZSk7XG4gIH1cbiAgcHJpdmF0ZSBfdmFsdWUkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxSYWRpb1ZhbHVlPihudWxsKTtcblxuICBASW5wdXQoKVxuICBnZXQgZGlzYWJsZWQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2Rpc2FibGVkJC5nZXRWYWx1ZSgpO1xuICB9XG4gIHNldCBkaXNhYmxlZCh2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fZGlzYWJsZWQkLm5leHQoY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKSk7XG4gIH1cbiAgcHJpdmF0ZSBfZGlzYWJsZWQkID0gbmV3IEJlaGF2aW9yU3ViamVjdChmYWxzZSk7XG5cbiAgcmVhZG9ubHkgY2hlY2tlZCQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LnZhbHVlJCwgdGhpcy5fdmFsdWUkXSkucGlwZShcbiAgICBtYXAoKFtpbnB1dFZhbHVlLCB2YWx1ZV0pID0+IGlucHV0VmFsdWUgPT09IHZhbHVlKSxcbiAgKTtcblxuICByZWFkb25seSBkaXNhYmxlZCQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LmRpc2FibGVkJCwgdGhpcy5fZGlzYWJsZWQkXSkucGlwZShcbiAgICBtYXAoKFtpbnB1dERpc2FibGVkLCBkaXNhYmxlZF0pID0+IGlucHV0RGlzYWJsZWQgfHwgZGlzYWJsZWQpLFxuICApO1xuXG4gIHJlYWRvbmx5IF9iaW5kaW5ncyA9IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MoXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXJhZGlvLS1jaGVja2VkJ10sXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLmNoZWNrZWQkLFxuICAgIH0sXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXJhZGlvLS1kaXNhYmxlZCddLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5kaXNhYmxlZCQsXG4gICAgfSxcbiAgKTtcblxuICBfb25JbnB1dEludGVyYWN0aW9uKGV2ZW50OiBFdmVudCkge1xuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuXG4gICAgaWYgKHRoaXMuZGlzYWJsZWQpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh0aGlzLnZhbHVlKTtcblxuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cblxuICBfY29udHJvbFRvdWNoZWQoKSB7XG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICAgIHRoaXMuaW5wdXQuX3NldFNob3VsZERpc3BsYXlFcnJvcih0cnVlKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio-field.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcmFkaW8tZmllbGQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1maWVsZC5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ContentChildren, Directive, forwardRef, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createReactiveBindings, DestroyService, TypedQueryList } from '@ethlete/core';
|
|
3
|
+
import { combineLatest, map, startWith, switchMap } from 'rxjs';
|
|
4
|
+
import { InputStateService } from '../../../../services';
|
|
5
|
+
import { RADIO_TOKEN } from '../radio';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export const RADIO_FIELD_TOKEN = new InjectionToken('ET_RADIO_FIELD_DIRECTIVE_TOKEN');
|
|
8
|
+
export class RadioFieldDirective {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.inputState = inject(InputStateService);
|
|
11
|
+
this._bindings = createReactiveBindings();
|
|
12
|
+
}
|
|
13
|
+
ngAfterContentInit() {
|
|
14
|
+
if (!this._radio) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
this._bindings.push({
|
|
18
|
+
attribute: 'class.et-radio-field--checked',
|
|
19
|
+
observable: this._radio.changes.pipe(startWith(this._radio)).pipe(switchMap((radios) => combineLatest(radios.map((radio) => radio.checked$))), map((checked) => checked.some((value) => value))),
|
|
20
|
+
});
|
|
21
|
+
this._bindings.push({
|
|
22
|
+
attribute: 'class.et-radio-field--disabled',
|
|
23
|
+
observable: this._radio.changes.pipe(startWith(this._radio)).pipe(switchMap((radios) => combineLatest(radios.map((radio) => radio.disabled$))), map((disabled) => disabled.some((value) => value))),
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
RadioFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
28
|
+
RadioFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioFieldDirective, isStandalone: true, providers: [{ provide: RADIO_FIELD_TOKEN, useExisting: RadioFieldDirective }, DestroyService], queries: [{ propertyName: "_radio", predicate: i0.forwardRef(function () { return RADIO_TOKEN; }), descendants: true }], exportAs: ["etRadioField"], ngImport: i0 });
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldDirective, decorators: [{
|
|
30
|
+
type: Directive,
|
|
31
|
+
args: [{
|
|
32
|
+
standalone: true,
|
|
33
|
+
providers: [{ provide: RADIO_FIELD_TOKEN, useExisting: RadioFieldDirective }, DestroyService],
|
|
34
|
+
exportAs: 'etRadioField',
|
|
35
|
+
}]
|
|
36
|
+
}], propDecorators: { _radio: [{
|
|
37
|
+
type: ContentChildren,
|
|
38
|
+
args: [forwardRef(() => RADIO_TOKEN), { descendants: true }]
|
|
39
|
+
}] } });
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZmllbGQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby1maWVsZC9yYWRpby1maWVsZC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFvQixlQUFlLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pILE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxjQUFjLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZGLE9BQU8sRUFBRSxhQUFhLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDaEUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFFekQsT0FBTyxFQUFFLFdBQVcsRUFBa0IsTUFBTSxVQUFVLENBQUM7O0FBRXZELE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUFHLElBQUksY0FBYyxDQUFzQixnQ0FBZ0MsQ0FBQyxDQUFDO0FBTzNHLE1BQU0sT0FBTyxtQkFBbUI7SUFMaEM7UUFNVyxlQUFVLEdBQUcsTUFBTSxDQUFnQyxpQkFBaUIsQ0FBQyxDQUFDO1FBRXRFLGNBQVMsR0FBRyxzQkFBc0IsRUFBRSxDQUFDO0tBMEIvQztJQXJCQyxrQkFBa0I7UUFDaEIsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUU7WUFDaEIsT0FBTztTQUNSO1FBRUQsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUM7WUFDbEIsU0FBUyxFQUFFLCtCQUErQjtZQUMxQyxVQUFVLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQy9ELFNBQVMsQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLEVBQzNFLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FDakQ7U0FDRixDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQztZQUNsQixTQUFTLEVBQUUsZ0NBQWdDO1lBQzNDLFVBQVUsRUFBRSxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDL0QsU0FBUyxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFDNUUsR0FBRyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUNuRDtTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7O2dIQTVCVSxtQkFBbUI7b0dBQW5CLG1CQUFtQixpQ0FIbkIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxXQUFXLEVBQUUsbUJBQW1CLEVBQUUsRUFBRSxjQUFjLENBQUMsb0ZBUTNELFdBQVc7MkZBTGxDLG1CQUFtQjtrQkFML0IsU0FBUzttQkFBQztvQkFDVCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsV0FBVyxxQkFBcUIsRUFBRSxFQUFFLGNBQWMsQ0FBQztvQkFDN0YsUUFBUSxFQUFFLGNBQWM7aUJBQ3pCOzhCQU9TLE1BQU07c0JBRGIsZUFBZTt1QkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsV0FBVyxDQUFDLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWZ0ZXJDb250ZW50SW5pdCwgQ29udGVudENoaWxkcmVuLCBEaXJlY3RpdmUsIGZvcndhcmRSZWYsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MsIERlc3Ryb3lTZXJ2aWNlLCBUeXBlZFF1ZXJ5TGlzdCB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgY29tYmluZUxhdGVzdCwgbWFwLCBzdGFydFdpdGgsIHN3aXRjaE1hcCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSW5wdXRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBSYWRpb1ZhbHVlIH0gZnJvbSAnLi4vLi4vdHlwZXMnO1xuaW1wb3J0IHsgUkFESU9fVE9LRU4sIFJhZGlvRGlyZWN0aXZlIH0gZnJvbSAnLi4vcmFkaW8nO1xuXG5leHBvcnQgY29uc3QgUkFESU9fRklFTERfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48UmFkaW9GaWVsZERpcmVjdGl2ZT4oJ0VUX1JBRElPX0ZJRUxEX0RJUkVDVElWRV9UT0tFTicpO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBSQURJT19GSUVMRF9UT0tFTiwgdXNlRXhpc3Rpbmc6IFJhZGlvRmllbGREaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW9GaWVsZCcsXG59KVxuZXhwb3J0IGNsYXNzIFJhZGlvRmllbGREaXJlY3RpdmUgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0IHtcbiAgcmVhZG9ubHkgaW5wdXRTdGF0ZSA9IGluamVjdDxJbnB1dFN0YXRlU2VydmljZTxSYWRpb1ZhbHVlPj4oSW5wdXRTdGF0ZVNlcnZpY2UpO1xuXG4gIHJlYWRvbmx5IF9iaW5kaW5ncyA9IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MoKTtcblxuICBAQ29udGVudENoaWxkcmVuKGZvcndhcmRSZWYoKCkgPT4gUkFESU9fVE9LRU4pLCB7IGRlc2NlbmRhbnRzOiB0cnVlIH0pXG4gIHByaXZhdGUgX3JhZGlvPzogVHlwZWRRdWVyeUxpc3Q8UmFkaW9EaXJlY3RpdmU+O1xuXG4gIG5nQWZ0ZXJDb250ZW50SW5pdCgpOiB2b2lkIHtcbiAgICBpZiAoIXRoaXMuX3JhZGlvKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5fYmluZGluZ3MucHVzaCh7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1yYWRpby1maWVsZC0tY2hlY2tlZCcsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLl9yYWRpby5jaGFuZ2VzLnBpcGUoc3RhcnRXaXRoKHRoaXMuX3JhZGlvKSkucGlwZShcbiAgICAgICAgc3dpdGNoTWFwKChyYWRpb3MpID0+IGNvbWJpbmVMYXRlc3QocmFkaW9zLm1hcCgocmFkaW8pID0+IHJhZGlvLmNoZWNrZWQkKSkpLFxuICAgICAgICBtYXAoKGNoZWNrZWQpID0+IGNoZWNrZWQuc29tZSgodmFsdWUpID0+IHZhbHVlKSksXG4gICAgICApLFxuICAgIH0pO1xuXG4gICAgdGhpcy5fYmluZGluZ3MucHVzaCh7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1yYWRpby1maWVsZC0tZGlzYWJsZWQnLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5fcmFkaW8uY2hhbmdlcy5waXBlKHN0YXJ0V2l0aCh0aGlzLl9yYWRpbykpLnBpcGUoXG4gICAgICAgIHN3aXRjaE1hcCgocmFkaW9zKSA9PiBjb21iaW5lTGF0ZXN0KHJhZGlvcy5tYXAoKHJhZGlvKSA9PiByYWRpby5kaXNhYmxlZCQpKSksXG4gICAgICAgIG1hcCgoZGlzYWJsZWQpID0+IGRpc2FibGVkLnNvbWUoKHZhbHVlKSA9PiB2YWx1ZSkpLFxuICAgICAgKSxcbiAgICB9KTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio-group.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcmFkaW8tZ3JvdXAvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1ncm91cC5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createReactiveBindings, DestroyService } from '@ethlete/core';
|
|
3
|
+
import { map } from 'rxjs';
|
|
4
|
+
import { FormGroupStateService } from '../../../../services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export const RADIO_GROUP_TOKEN = new InjectionToken('ET_RADIO_GROUP_DIRECTIVE_TOKEN');
|
|
7
|
+
let nextUniqueId = 0;
|
|
8
|
+
export class RadioGroupDirective {
|
|
9
|
+
constructor() {
|
|
10
|
+
this._formGroupStateService = inject(FormGroupStateService);
|
|
11
|
+
this.name = `et-radio-group-${++nextUniqueId}`;
|
|
12
|
+
this._bindings = createReactiveBindings({
|
|
13
|
+
attribute: 'aria-labelledby',
|
|
14
|
+
observable: this._formGroupStateService.describedBy$.pipe(map((describedBy) => {
|
|
15
|
+
return {
|
|
16
|
+
render: !!describedBy,
|
|
17
|
+
value: `${describedBy}`,
|
|
18
|
+
};
|
|
19
|
+
})),
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
RadioGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
24
|
+
RadioGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioGroupDirective, isStandalone: true, host: { attributes: { "role": "radiogroup" } }, providers: [{ provide: RADIO_GROUP_TOKEN, useExisting: RadioGroupDirective }, DestroyService], exportAs: ["etRadioGroup"], ngImport: i0 });
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupDirective, decorators: [{
|
|
26
|
+
type: Directive,
|
|
27
|
+
args: [{
|
|
28
|
+
standalone: true,
|
|
29
|
+
providers: [{ provide: RADIO_GROUP_TOKEN, useExisting: RadioGroupDirective }, DestroyService],
|
|
30
|
+
exportAs: 'etRadioGroup',
|
|
31
|
+
host: {
|
|
32
|
+
role: 'radiogroup',
|
|
33
|
+
},
|
|
34
|
+
}]
|
|
35
|
+
}] });
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZ3JvdXAuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby1ncm91cC9yYWRpby1ncm91cC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdkUsT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMzQixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFN0QsTUFBTSxDQUFDLE1BQU0saUJBQWlCLEdBQUcsSUFBSSxjQUFjLENBQXNCLGdDQUFnQyxDQUFDLENBQUM7QUFFM0csSUFBSSxZQUFZLEdBQUcsQ0FBQyxDQUFDO0FBVXJCLE1BQU0sT0FBTyxtQkFBbUI7SUFSaEM7UUFTbUIsMkJBQXNCLEdBQUcsTUFBTSxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFFL0QsU0FBSSxHQUFHLGtCQUFrQixFQUFFLFlBQVksRUFBRSxDQUFDO1FBRTFDLGNBQVMsR0FBRyxzQkFBc0IsQ0FBQztZQUMxQyxTQUFTLEVBQUUsaUJBQWlCO1lBQzVCLFVBQVUsRUFBRSxJQUFJLENBQUMsc0JBQXNCLENBQUMsWUFBWSxDQUFDLElBQUksQ0FDdkQsR0FBRyxDQUFDLENBQUMsV0FBVyxFQUFFLEVBQUU7Z0JBQ2xCLE9BQU87b0JBQ0wsTUFBTSxFQUFFLENBQUMsQ0FBQyxXQUFXO29CQUNyQixLQUFLLEVBQUUsR0FBRyxXQUFXLEVBQUU7aUJBQ3hCLENBQUM7WUFDSixDQUFDLENBQUMsQ0FDSDtTQUNGLENBQUMsQ0FBQztLQUNKOztnSEFoQlksbUJBQW1CO29HQUFuQixtQkFBbUIsaUZBTm5CLENBQUMsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLEVBQUUsY0FBYyxDQUFDOzJGQU1sRixtQkFBbUI7a0JBUi9CLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFdBQVcscUJBQXFCLEVBQUUsRUFBRSxjQUFjLENBQUM7b0JBQzdGLFFBQVEsRUFBRSxjQUFjO29CQUN4QixJQUFJLEVBQUU7d0JBQ0osSUFBSSxFQUFFLFlBQVk7cUJBQ25CO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbmplY3QsIEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzLCBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgbWFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBGb3JtR3JvdXBTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5cbmV4cG9ydCBjb25zdCBSQURJT19HUk9VUF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxSYWRpb0dyb3VwRGlyZWN0aXZlPignRVRfUkFESU9fR1JPVVBfRElSRUNUSVZFX1RPS0VOJyk7XG5cbmxldCBuZXh0VW5pcXVlSWQgPSAwO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBSQURJT19HUk9VUF9UT0tFTiwgdXNlRXhpc3Rpbmc6IFJhZGlvR3JvdXBEaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW9Hcm91cCcsXG4gIGhvc3Q6IHtcbiAgICByb2xlOiAncmFkaW9ncm91cCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIFJhZGlvR3JvdXBEaXJlY3RpdmUge1xuICBwcml2YXRlIHJlYWRvbmx5IF9mb3JtR3JvdXBTdGF0ZVNlcnZpY2UgPSBpbmplY3QoRm9ybUdyb3VwU3RhdGVTZXJ2aWNlKTtcblxuICByZWFkb25seSBuYW1lID0gYGV0LXJhZGlvLWdyb3VwLSR7KytuZXh0VW5pcXVlSWR9YDtcblxuICByZWFkb25seSBfYmluZGluZ3MgPSBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzKHtcbiAgICBhdHRyaWJ1dGU6ICdhcmlhLWxhYmVsbGVkYnknLFxuICAgIG9ic2VydmFibGU6IHRoaXMuX2Zvcm1Hcm91cFN0YXRlU2VydmljZS5kZXNjcmliZWRCeSQucGlwZShcbiAgICAgIG1hcCgoZGVzY3JpYmVkQnkpID0+IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICByZW5kZXI6ICEhZGVzY3JpYmVkQnksXG4gICAgICAgICAgdmFsdWU6IGAke2Rlc2NyaWJlZEJ5fWAsXG4gICAgICAgIH07XG4gICAgICB9KSxcbiAgICApLFxuICB9KTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './components/public-api';
|
|
2
|
+
export * from './directives/public-api';
|
|
3
|
+
export * from './radio.imports';
|
|
4
|
+
export * from './types/public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcmFkaW8uaW1wb3J0cyc7XG5leHBvcnQgKiBmcm9tICcuL3R5cGVzL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { RadioComponent, RadioFieldComponent, RadioGroupComponent } from './components';
|
|
2
|
+
export const RadioImports = [RadioComponent, RadioFieldComponent, RadioGroupComponent];
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL3JhZGlvLmltcG9ydHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxtQkFBbUIsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUV4RixNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsQ0FBQyxjQUFjLEVBQUUsbUJBQW1CLEVBQUUsbUJBQW1CLENBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFJhZGlvQ29tcG9uZW50LCBSYWRpb0ZpZWxkQ29tcG9uZW50LCBSYWRpb0dyb3VwQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzJztcblxuZXhwb3J0IGNvbnN0IFJhZGlvSW1wb3J0cyA9IFtSYWRpb0NvbXBvbmVudCwgUmFkaW9GaWVsZENvbXBvbmVudCwgUmFkaW9Hcm91cENvbXBvbmVudF0gYXMgY29uc3Q7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby90eXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './radio.types';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL3R5cGVzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxlQUFlLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3JhZGlvLnR5cGVzJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8udHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby90eXBlcy9yYWRpby50eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgUmFkaW9WYWx1ZSA9IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCBudWxsO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|