@ethlete/cdk 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +761 -0
- package/README.md +7 -0
- package/esm2020/ethlete-cdk.mjs +5 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/lib/components/accordion/accordion.imports.mjs +11 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.animations.mjs +9 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.mjs +86 -0
- package/esm2020/lib/components/accordion/components/accordion/index.mjs +2 -0
- package/esm2020/lib/components/accordion/components/accordion/public-api.mjs +4 -0
- package/esm2020/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +53 -0
- package/esm2020/lib/components/accordion/components/accordion-group/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/components/index.mjs +2 -0
- package/esm2020/lib/components/accordion/components/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +17 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +20 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +17 -0
- package/esm2020/lib/components/accordion/partials/accordion-label/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +20 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/index.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/public-api.mjs +5 -0
- package/esm2020/lib/components/accordion/public-api.mjs +4 -0
- package/esm2020/lib/components/bracket/bracket.imports.mjs +4 -0
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.mjs +342 -0
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.types.mjs +2 -0
- package/esm2020/lib/components/bracket/components/bracket/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/components/index.mjs +2 -0
- package/esm2020/lib/components/bracket/components/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/constants/bracket.constants.mjs +12 -0
- package/esm2020/lib/components/bracket/constants/index.mjs +2 -0
- package/esm2020/lib/components/bracket/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +19 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +19 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +19 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +19 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/public-api.mjs +8 -0
- package/esm2020/lib/components/bracket/types/bracket-config.types.mjs +2 -0
- package/esm2020/lib/components/bracket/types/bracket.types.mjs +2 -0
- package/esm2020/lib/components/bracket/types/index.mjs +2 -0
- package/esm2020/lib/components/bracket/types/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/utils/bracket-config.utils.mjs +13 -0
- package/esm2020/lib/components/bracket/utils/bracket.utils.mjs +335 -0
- package/esm2020/lib/components/bracket/utils/index.mjs +2 -0
- package/esm2020/lib/components/bracket/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/button/button.imports.mjs +3 -0
- package/esm2020/lib/components/button/components/button/button.component.mjs +18 -0
- package/esm2020/lib/components/button/components/button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/components/index.mjs +2 -0
- package/esm2020/lib/components/button/components/public-api.mjs +3 -0
- package/esm2020/lib/components/button/components/query-button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/components/query-button/query-button.component.mjs +25 -0
- package/esm2020/lib/components/button/directives/button/button.directive.mjs +83 -0
- package/esm2020/lib/components/button/directives/button/index.mjs +2 -0
- package/esm2020/lib/components/button/directives/button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/directives/index.mjs +2 -0
- package/esm2020/lib/components/button/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/button/directives/query-button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/directives/query-button/query-button.directive.mjs +110 -0
- package/esm2020/lib/components/button/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/checkbox/checkbox.imports.mjs +9 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +23 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +54 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +18 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +44 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +36 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +80 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +38 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/checkbox/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/error/components/error/error.component.mjs +56 -0
- package/esm2020/lib/components/forms/components/error/components/error/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/components/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/email-input/email-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/email-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/input-field/input-field.component.mjs +57 -0
- package/esm2020/lib/components/forms/components/input/components/input-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/number-input/number-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/number-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/password-input/password-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/password-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/public-api.mjs +8 -0
- package/esm2020/lib/components/forms/components/input/components/search-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/search-input/search-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/text-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/textarea-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +52 -0
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/directives/email-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +51 -0
- package/esm2020/lib/components/forms/components/input/directives/number-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +54 -0
- package/esm2020/lib/components/forms/components/input/directives/password-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/public-api.mjs +8 -0
- package/esm2020/lib/components/forms/components/input/directives/search-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +54 -0
- package/esm2020/lib/components/forms/components/input/directives/text-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/input.imports.mjs +19 -0
- package/esm2020/lib/components/forms/components/input/partials/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +22 -0
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +22 -0
- package/esm2020/lib/components/forms/components/input/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/label/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/components/label/label.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/label/components/label/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/components/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +33 -0
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/label.imports.mjs +4 -0
- package/esm2020/lib/components/forms/components/label/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/public-api.mjs +10 -0
- package/esm2020/lib/components/forms/components/radio/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/radio/components/radio/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio/radio.component.mjs +27 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +35 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/radio/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +63 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +36 -0
- package/esm2020/lib/components/forms/components/radio/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/radio/radio.imports.mjs +3 -0
- package/esm2020/lib/components/forms/components/radio/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/types/radio.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +37 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +25 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +73 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +68 -0
- package/esm2020/lib/components/forms/components/segmented-button/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/segmented-button/segmented-button.imports.mjs +7 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/native-select/native-select.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/native-select-option/native-select-option.component.mjs +32 -0
- package/esm2020/lib/components/forms/components/select/components/native-select-option/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/select/components/select-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/select-field/select-field.component.mjs +53 -0
- package/esm2020/lib/components/forms/components/select/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.mjs +58 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.mjs +56 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/select/native-select.imports.mjs +13 -0
- package/esm2020/lib/components/forms/components/select/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/select/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/types/select.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +23 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/slide-toggle/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/components/slider/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/slider/slider.component.mjs +342 -0
- package/esm2020/lib/components/forms/components/slider/components/slider-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/slider/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/slider.imports.mjs +3 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +42 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +42 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +41 -0
- package/esm2020/lib/components/forms/directives/if-input-empty/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +41 -0
- package/esm2020/lib/components/forms/directives/if-input-filled/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input/input.directive.mjs +233 -0
- package/esm2020/lib/components/forms/directives/input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +30 -0
- package/esm2020/lib/components/forms/directives/input-prefix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +30 -0
- package/esm2020/lib/components/forms/directives/input-suffix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +19 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/public-api.mjs +12 -0
- package/esm2020/lib/components/forms/directives/static-form-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +78 -0
- package/esm2020/lib/components/forms/directives/static-form-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +29 -0
- package/esm2020/lib/components/forms/directives/writeable-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +71 -0
- package/esm2020/lib/components/forms/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/services/default-validator-errors.service.mjs +51 -0
- package/esm2020/lib/components/forms/services/form-field-state.service.mjs +24 -0
- package/esm2020/lib/components/forms/services/form-group-state.service.mjs +21 -0
- package/esm2020/lib/components/forms/services/index.mjs +2 -0
- package/esm2020/lib/components/forms/services/input-state.service.mjs +35 -0
- package/esm2020/lib/components/forms/services/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/types/input.types.mjs +2 -0
- package/esm2020/lib/components/forms/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/utils/decorated-form-field.base.mjs +22 -0
- package/esm2020/lib/components/forms/utils/decorated-input.base.mjs +44 -0
- package/esm2020/lib/components/forms/utils/index.mjs +2 -0
- package/esm2020/lib/components/forms/utils/input.base.mjs +20 -0
- package/esm2020/lib/components/forms/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/icons/chevron-icon/chevron-icon.component.mjs +36 -0
- package/esm2020/lib/components/icons/chevron-icon/index.mjs +2 -0
- package/esm2020/lib/components/icons/chevron-icon/public-api.mjs +2 -0
- package/esm2020/lib/components/icons/icon.imports.mjs +3 -0
- package/esm2020/lib/components/icons/index.mjs +2 -0
- package/esm2020/lib/components/icons/public-api.mjs +3 -0
- package/esm2020/lib/components/masonry/components/index.mjs +2 -0
- package/esm2020/lib/components/masonry/components/masonry/masonry.component.mjs +199 -0
- package/esm2020/lib/components/masonry/components/masonry/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/components/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/masonry.imports.mjs +4 -0
- package/esm2020/lib/components/masonry/partials/index.mjs +2 -0
- package/esm2020/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +74 -0
- package/esm2020/lib/components/masonry/partials/masonry-item/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/public-api.mjs +5 -0
- package/esm2020/lib/components/masonry/types/masonry.types.mjs +2 -0
- package/esm2020/lib/components/masonry/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.mjs +14 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +51 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.mjs +30 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +43 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +103 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +49 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/public-api.mjs +8 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +113 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +48 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +31 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.mjs +7 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.mjs +93 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.mjs +18 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +51 -0
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/dialog.constants.mjs +32 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/dialog.imports.mjs +10 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +64 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +43 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +49 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/dialog/public-api.mjs +8 -0
- package/esm2020/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +109 -0
- package/esm2020/lib/components/overlay/components/dialog/services/dialog.service.mjs +31 -0
- package/esm2020/lib/components/overlay/components/dialog/services/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/services/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/dialog/types/dialog.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog-config.mjs +7 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog-ref.mjs +114 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog.utils.mjs +18 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/public-api.mjs +5 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +62 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/toggletip.constants.mjs +11 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +196 -0
- package/esm2020/lib/components/overlay/components/toggletip/public-api.mjs +7 -0
- package/esm2020/lib/components/overlay/components/toggletip/toggletip.imports.mjs +3 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/toggletip.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip-config.mjs +6 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip.util.mjs +6 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +60 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/tooltip.constants.mjs +11 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +240 -0
- package/esm2020/lib/components/overlay/components/tooltip/public-api.mjs +7 -0
- package/esm2020/lib/components/overlay/components/tooltip/tooltip.imports.mjs +3 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/tooltip.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip-config.mjs +6 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip.util.mjs +6 -0
- package/esm2020/lib/components/overlay/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/services/dynamic-overlay.service.mjs +29 -0
- package/esm2020/lib/components/overlay/services/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/types/dynamic-overlay.types.mjs +2 -0
- package/esm2020/lib/components/overlay/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/types/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/components/index.mjs +2 -0
- package/esm2020/lib/components/pagination/components/pagination/pagination.component.mjs +105 -0
- package/esm2020/lib/components/pagination/components/pagination/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/components/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/pagination.imports.mjs +3 -0
- package/esm2020/lib/components/pagination/partials/index.mjs +2 -0
- package/esm2020/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +32 -0
- package/esm2020/lib/components/pagination/partials/pagination-link/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/public-api.mjs +5 -0
- package/esm2020/lib/components/pagination/services/index.mjs +2 -0
- package/esm2020/lib/components/pagination/services/pagination-head.service.mjs +59 -0
- package/esm2020/lib/components/pagination/services/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/types/index.mjs +2 -0
- package/esm2020/lib/components/pagination/types/pagination.types.mjs +2 -0
- package/esm2020/lib/components/pagination/types/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/utils/index.mjs +2 -0
- package/esm2020/lib/components/pagination/utils/pagination.util.mjs +79 -0
- package/esm2020/lib/components/pagination/utils/public-api.mjs +2 -0
- package/esm2020/lib/components/picture/picture-data.directive.mjs +55 -0
- package/esm2020/lib/components/picture/picture.component.mjs +40 -0
- package/esm2020/lib/components/picture/picture.component.types.mjs +2 -0
- package/esm2020/lib/components/picture/public-api.mjs +4 -0
- package/esm2020/lib/components/progress-spinner/progress-spinner.component.mjs +105 -0
- package/esm2020/lib/components/progress-spinner/public-api.mjs +2 -0
- package/esm2020/lib/components/public-api.mjs +16 -0
- package/esm2020/lib/components/scrollable/components/index.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/public-api.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/scrollable/public-api.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/scrollable/scrollable.component.mjs +129 -0
- package/esm2020/lib/components/scrollable/index.mjs +2 -0
- package/esm2020/lib/components/scrollable/public-api.mjs +3 -0
- package/esm2020/lib/components/scrollable/scrollable.imports.mjs +3 -0
- package/esm2020/lib/components/skeleton/components/index.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/skeleton/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/skeleton/skeleton.component.mjs +31 -0
- package/esm2020/lib/components/skeleton/partials/index.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/skeleton-item/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +19 -0
- package/esm2020/lib/components/skeleton/public-api.mjs +4 -0
- package/esm2020/lib/components/skeleton/skeleton.imports.mjs +4 -0
- package/esm2020/lib/components/sort/components/index.mjs +2 -0
- package/esm2020/lib/components/sort/components/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/components/sort-header/public-api.mjs +3 -0
- package/esm2020/lib/components/sort/components/sort-header/sort-header.component.mjs +224 -0
- package/esm2020/lib/components/sort/components/sort-header/sort-header.types.mjs +2 -0
- package/esm2020/lib/components/sort/index.mjs +2 -0
- package/esm2020/lib/components/sort/partials/index.mjs +2 -0
- package/esm2020/lib/components/sort/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/partials/sort/public-api.mjs +3 -0
- package/esm2020/lib/components/sort/partials/sort/sort.directive.mjs +157 -0
- package/esm2020/lib/components/sort/partials/sort/sort.types.mjs +2 -0
- package/esm2020/lib/components/sort/public-api.mjs +6 -0
- package/esm2020/lib/components/sort/services/index.mjs +2 -0
- package/esm2020/lib/components/sort/services/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/services/sort-header-intl.mjs +23 -0
- package/esm2020/lib/components/sort/sort.imports.mjs +8 -0
- package/esm2020/lib/components/sort/types/index.mjs +2 -0
- package/esm2020/lib/components/sort/types/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/types/sort-direction.mjs +2 -0
- package/esm2020/lib/components/table/components/index.mjs +2 -0
- package/esm2020/lib/components/table/components/public-api.mjs +2 -0
- package/esm2020/lib/components/table/components/table/public-api.mjs +2 -0
- package/esm2020/lib/components/table/components/table/table.component.mjs +141 -0
- package/esm2020/lib/components/table/constants/index.mjs +2 -0
- package/esm2020/lib/components/table/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/table/constants/table-data-source.constants.mjs +2 -0
- package/esm2020/lib/components/table/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell/cell.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/cells/cell/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/column-def/column-def.directive.mjs +44 -0
- package/esm2020/lib/components/table/partials/cells/column-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/column-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +19 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/public-api.mjs +9 -0
- package/esm2020/lib/components/table/partials/cells/text-column/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/text-column/text-column.component.mjs +55 -0
- package/esm2020/lib/components/table/partials/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/public-api.mjs +5 -0
- package/esm2020/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/footer-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/footer-row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/header-row/header-row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/header-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/header-row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +20 -0
- package/esm2020/lib/components/table/partials/rows/no-data-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/public-api.mjs +9 -0
- package/esm2020/lib/components/table/partials/rows/recycle-rows/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/rows/row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/row/row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/row-def/row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/table-busy/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/table-busy/table-busy.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/table-busy-outlet/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +15 -0
- package/esm2020/lib/components/table/public-api.mjs +7 -0
- package/esm2020/lib/components/table/table.imports.mjs +23 -0
- package/esm2020/lib/components/table/types/index.mjs +2 -0
- package/esm2020/lib/components/table/types/public-api.mjs +2 -0
- package/esm2020/lib/components/table/types/table-data-source.types.mjs +2 -0
- package/esm2020/lib/components/table/utils/public-api.mjs +2 -0
- package/esm2020/lib/components/table/utils/table-data-source.mjs +168 -0
- package/esm2020/lib/components/tabs/animations/index.mjs +2 -0
- package/esm2020/lib/components/tabs/animations/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/animations/tabs.animations.mjs +26 -0
- package/esm2020/lib/components/tabs/components/index.mjs +2 -0
- package/esm2020/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +261 -0
- package/esm2020/lib/components/tabs/components/inline-tabs/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +86 -0
- package/esm2020/lib/components/tabs/components/nav-tabs/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/components/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/partials/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +100 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +135 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +25 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +22 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +43 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +30 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +48 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/public-api.mjs +8 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +203 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +37 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/public-api.mjs +7 -0
- package/esm2020/lib/components/tabs/tab.imports.mjs +16 -0
- package/esm2020/lib/components/tabs/types/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/types/tab-config.types.mjs +3 -0
- package/esm2020/lib/components/tabs/utils/active-tab-underline.util.mjs +111 -0
- package/esm2020/lib/components/tabs/utils/index.mjs +2 -0
- package/esm2020/lib/components/tabs/utils/paginated-tab-header.directive.mjs +284 -0
- package/esm2020/lib/components/tabs/utils/public-api.mjs +3 -0
- package/esm2020/lib/public-api.mjs +4 -0
- package/esm2020/lib/services/index.mjs +2 -0
- package/esm2020/lib/services/public-api.mjs +2 -0
- package/esm2020/lib/services/swipe-handler.service.mjs +88 -0
- package/esm2020/lib/types/index.mjs +2 -0
- package/esm2020/lib/types/public-api.mjs +2 -0
- package/esm2020/lib/types/swipe.types.mjs +2 -0
- package/fesm2015/ethlete-cdk.mjs +9106 -0
- package/fesm2015/ethlete-cdk.mjs.map +1 -0
- package/fesm2020/ethlete-cdk.mjs +9037 -0
- package/fesm2020/ethlete-cdk.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/lib/components/accordion/accordion.imports.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.animations.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.constants.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.d.ts +30 -0
- package/lib/components/accordion/components/accordion/index.d.ts +1 -0
- package/lib/components/accordion/components/accordion/public-api.d.ts +3 -0
- package/lib/components/accordion/components/accordion-group/accordion-group.component.d.ts +13 -0
- package/lib/components/accordion/components/accordion-group/public-api.d.ts +1 -0
- package/lib/components/accordion/components/index.d.ts +1 -0
- package/lib/components/accordion/components/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.d.ts +5 -0
- package/lib/components/accordion/partials/accordion-hint/public-api.d.ts +1 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.d.ts +3 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.d.ts +8 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/accordion-label/accordion-label.directive.d.ts +5 -0
- package/lib/components/accordion/partials/accordion-label/public-api.d.ts +1 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.d.ts +3 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.d.ts +8 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/index.d.ts +1 -0
- package/lib/components/accordion/partials/public-api.d.ts +4 -0
- package/lib/components/accordion/public-api.d.ts +3 -0
- package/lib/components/bracket/bracket.imports.d.ts +3 -0
- package/lib/components/bracket/components/bracket/bracket.component.d.ts +55 -0
- package/lib/components/bracket/components/bracket/bracket.component.types.d.ts +5 -0
- package/lib/components/bracket/components/bracket/public-api.d.ts +2 -0
- package/lib/components/bracket/components/index.d.ts +1 -0
- package/lib/components/bracket/components/public-api.d.ts +1 -0
- package/lib/components/bracket/constants/bracket.constants.d.ts +8 -0
- package/lib/components/bracket/constants/index.d.ts +1 -0
- package/lib/components/bracket/constants/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-match/bracket-match.directive.d.ts +8 -0
- package/lib/components/bracket/directives/bracket-match/index.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-match/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-round/bracket-round.directive.d.ts +8 -0
- package/lib/components/bracket/directives/bracket-round/index.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-round/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/index.d.ts +1 -0
- package/lib/components/bracket/directives/public-api.d.ts +2 -0
- package/lib/components/bracket/partials/bracket-match/bracket-match.component.d.ts +8 -0
- package/lib/components/bracket/partials/bracket-match/index.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-match/public-api.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.d.ts +8 -0
- package/lib/components/bracket/partials/bracket-round-header/index.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-round-header/public-api.d.ts +1 -0
- package/lib/components/bracket/partials/index.d.ts +1 -0
- package/lib/components/bracket/partials/public-api.d.ts +2 -0
- package/lib/components/bracket/public-api.d.ts +7 -0
- package/lib/components/bracket/types/bracket-config.types.d.ts +5 -0
- package/lib/components/bracket/types/bracket.types.d.ts +30 -0
- package/lib/components/bracket/types/index.d.ts +1 -0
- package/lib/components/bracket/types/public-api.d.ts +2 -0
- package/lib/components/bracket/utils/bracket-config.utils.d.ts +6 -0
- package/lib/components/bracket/utils/bracket.utils.d.ts +37 -0
- package/lib/components/bracket/utils/index.d.ts +1 -0
- package/lib/components/bracket/utils/public-api.d.ts +2 -0
- package/lib/components/button/button.imports.d.ts +2 -0
- package/lib/components/button/components/button/button.component.d.ts +8 -0
- package/lib/components/button/components/button/public-api.d.ts +1 -0
- package/lib/components/button/components/index.d.ts +1 -0
- package/lib/components/button/components/public-api.d.ts +2 -0
- package/lib/components/button/components/query-button/public-api.d.ts +1 -0
- package/lib/components/button/components/query-button/query-button.component.d.ts +9 -0
- package/lib/components/button/directives/button/button.directive.d.ts +25 -0
- package/lib/components/button/directives/button/index.d.ts +1 -0
- package/lib/components/button/directives/button/public-api.d.ts +1 -0
- package/lib/components/button/directives/index.d.ts +1 -0
- package/lib/components/button/directives/public-api.d.ts +2 -0
- package/lib/components/button/directives/query-button/public-api.d.ts +1 -0
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +24 -0
- package/lib/components/button/public-api.d.ts +3 -0
- package/lib/components/forms/components/checkbox/checkbox.imports.d.ts +3 -0
- package/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.d.ts +10 -0
- package/lib/components/forms/components/checkbox/components/checkbox/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.d.ts +11 -0
- package/lib/components/forms/components/checkbox/components/checkbox-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.d.ts +7 -0
- package/lib/components/forms/components/checkbox/components/checkbox-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts +15 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.d.ts +12 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.d.ts +18 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +13 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/public-api.d.ts +4 -0
- package/lib/components/forms/components/checkbox/public-api.d.ts +3 -0
- package/lib/components/forms/components/error/components/error/error.component.d.ts +16 -0
- package/lib/components/forms/components/error/components/error/public-api.d.ts +1 -0
- package/lib/components/forms/components/error/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/error/index.d.ts +1 -0
- package/lib/components/forms/components/error/public-api.d.ts +1 -0
- package/lib/components/forms/components/index.d.ts +1 -0
- package/lib/components/forms/components/input/components/email-input/email-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/email-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/index.d.ts +1 -0
- package/lib/components/forms/components/input/components/input-field/input-field.component.d.ts +11 -0
- package/lib/components/forms/components/input/components/input-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/number-input/number-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/number-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/password-input/password-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/password-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/public-api.d.ts +7 -0
- package/lib/components/forms/components/input/components/search-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/search-input/search-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/text-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/text-input/text-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/textarea-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/textarea-input/textarea-input.component.d.ts +17 -0
- package/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.d.ts +12 -0
- package/lib/components/forms/components/input/directives/autosize-textarea/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/email-input/email-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/email-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/number-input/number-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/number-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/password-input/password-input.directive.d.ts +16 -0
- package/lib/components/forms/components/input/directives/password-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/public-api.d.ts +7 -0
- package/lib/components/forms/components/input/directives/search-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/search-input/search-input.directive.d.ts +14 -0
- package/lib/components/forms/components/input/directives/text-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/text-input/text-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/textarea-input/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/textarea-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/input.imports.d.ts +4 -0
- package/lib/components/forms/components/input/partials/index.d.ts +1 -0
- package/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.d.ts +8 -0
- package/lib/components/forms/components/input/partials/password-input-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/partials/public-api.d.ts +2 -0
- package/lib/components/forms/components/input/partials/search-input-clear/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.d.ts +8 -0
- package/lib/components/forms/components/input/public-api.d.ts +4 -0
- package/lib/components/forms/components/label/components/index.d.ts +1 -0
- package/lib/components/forms/components/label/components/label/label.component.d.ts +10 -0
- package/lib/components/forms/components/label/components/label/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/directives/index.d.ts +1 -0
- package/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.d.ts +10 -0
- package/lib/components/forms/components/label/directives/label-suffix/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/directives/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/label.imports.d.ts +3 -0
- package/lib/components/forms/components/label/public-api.d.ts +3 -0
- package/lib/components/forms/components/public-api.d.ts +9 -0
- package/lib/components/forms/components/radio/components/index.d.ts +1 -0
- package/lib/components/forms/components/radio/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/radio/components/radio/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio/radio.component.d.ts +11 -0
- package/lib/components/forms/components/radio/components/radio-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio-field/radio-field.component.d.ts +7 -0
- package/lib/components/forms/components/radio/components/radio-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio-group/radio-group.component.d.ts +11 -0
- package/lib/components/forms/components/radio/directives/index.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/radio/directives/radio/index.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +22 -0
- package/lib/components/forms/components/radio/directives/radio-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts +13 -0
- package/lib/components/forms/components/radio/directives/radio-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +10 -0
- package/lib/components/forms/components/radio/public-api.d.ts +4 -0
- package/lib/components/forms/components/radio/radio.imports.d.ts +2 -0
- package/lib/components/forms/components/radio/types/index.d.ts +1 -0
- package/lib/components/forms/components/radio/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/types/radio.types.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.d.ts +14 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.d.ts +7 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.d.ts +11 -0
- package/lib/components/forms/components/segmented-button/directives/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +26 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.d.ts +13 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +14 -0
- package/lib/components/forms/components/segmented-button/public-api.d.ts +4 -0
- package/lib/components/forms/components/segmented-button/segmented-button.imports.d.ts +2 -0
- package/lib/components/forms/components/segmented-button/types/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/types/segmented-button.types.d.ts +1 -0
- package/lib/components/forms/components/select/components/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/native-select.component.d.ts +10 -0
- package/lib/components/forms/components/select/components/native-select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select-option/native-select-option.component.d.ts +11 -0
- package/lib/components/forms/components/select/components/native-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select-field/select-field.component.d.ts +11 -0
- package/lib/components/forms/components/select/directives/index.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.d.ts +18 -0
- package/lib/components/forms/components/select/directives/native-select-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-option/index.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.d.ts +22 -0
- package/lib/components/forms/components/select/directives/native-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/directives/public-api.d.ts +2 -0
- package/lib/components/forms/components/select/native-select.imports.d.ts +4 -0
- package/lib/components/forms/components/select/public-api.d.ts +4 -0
- package/lib/components/forms/components/select/types/index.d.ts +1 -0
- package/lib/components/forms/components/select/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/types/select.types.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/index.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/public-api.d.ts +2 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.d.ts +10 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.d.ts +10 -0
- package/lib/components/forms/components/slide-toggle/directives/index.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.d.ts +13 -0
- package/lib/components/forms/components/slide-toggle/public-api.d.ts +3 -0
- package/lib/components/forms/components/slide-toggle/slide-toggle.imports.d.ts +2 -0
- package/lib/components/forms/components/slider/components/index.d.ts +1 -0
- package/lib/components/forms/components/slider/components/public-api.d.ts +2 -0
- package/lib/components/forms/components/slider/components/slider/public-api.d.ts +1 -0
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +64 -0
- package/lib/components/forms/components/slider/components/slider-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/slider/components/slider-field/slider-field.component.d.ts +10 -0
- package/lib/components/forms/components/slider/public-api.d.ts +2 -0
- package/lib/components/forms/components/slider/slider.imports.d.ts +2 -0
- package/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +12 -0
- package/lib/components/forms/directives/dynamic-form-field/public-api.d.ts +1 -0
- package/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.d.ts +12 -0
- package/lib/components/forms/directives/dynamic-form-group/public-api.d.ts +1 -0
- package/lib/components/forms/directives/if-input-empty/if-input-empty.directive.d.ts +12 -0
- package/lib/components/forms/directives/if-input-empty/public-api.d.ts +1 -0
- package/lib/components/forms/directives/if-input-filled/if-input-filled.directive.d.ts +12 -0
- package/lib/components/forms/directives/if-input-filled/public-api.d.ts +1 -0
- package/lib/components/forms/directives/index.d.ts +1 -0
- package/lib/components/forms/directives/input/index.d.ts +1 -0
- package/lib/components/forms/directives/input/input.directive.d.ts +62 -0
- package/lib/components/forms/directives/input/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input-prefix/input-prefix.directive.d.ts +7 -0
- package/lib/components/forms/directives/input-prefix/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input-suffix/input-suffix.directive.d.ts +7 -0
- package/lib/components/forms/directives/input-suffix/public-api.d.ts +1 -0
- package/lib/components/forms/directives/native-input-ref/index.d.ts +1 -0
- package/lib/components/forms/directives/native-input-ref/native-input-ref.directive.d.ts +8 -0
- package/lib/components/forms/directives/native-input-ref/public-api.d.ts +1 -0
- package/lib/components/forms/directives/public-api.d.ts +11 -0
- package/lib/components/forms/directives/static-form-field/public-api.d.ts +1 -0
- package/lib/components/forms/directives/static-form-field/static-form-field.directive.d.ts +15 -0
- package/lib/components/forms/directives/static-form-group/public-api.d.ts +1 -0
- package/lib/components/forms/directives/static-form-group/static-form-group.directive.d.ts +7 -0
- package/lib/components/forms/directives/writeable-input/public-api.d.ts +1 -0
- package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +20 -0
- package/lib/components/forms/public-api.d.ts +4 -0
- package/lib/components/forms/services/default-validator-errors.service.d.ts +17 -0
- package/lib/components/forms/services/form-field-state.service.d.ts +14 -0
- package/lib/components/forms/services/form-group-state.service.d.ts +10 -0
- package/lib/components/forms/services/index.d.ts +1 -0
- package/lib/components/forms/services/input-state.service.d.ts +28 -0
- package/lib/components/forms/services/public-api.d.ts +4 -0
- package/lib/components/forms/types/index.d.ts +1 -0
- package/lib/components/forms/types/input.types.d.ts +25 -0
- package/lib/components/forms/types/public-api.d.ts +1 -0
- package/lib/components/forms/utils/decorated-form-field.base.d.ts +7 -0
- package/lib/components/forms/utils/decorated-input.base.d.ts +15 -0
- package/lib/components/forms/utils/index.d.ts +1 -0
- package/lib/components/forms/utils/input.base.d.ts +10 -0
- package/lib/components/forms/utils/public-api.d.ts +3 -0
- package/lib/components/icons/chevron-icon/chevron-icon.component.d.ts +5 -0
- package/lib/components/icons/chevron-icon/index.d.ts +1 -0
- package/lib/components/icons/chevron-icon/public-api.d.ts +1 -0
- package/lib/components/icons/icon.imports.d.ts +2 -0
- package/lib/components/icons/index.d.ts +1 -0
- package/lib/components/icons/public-api.d.ts +2 -0
- package/lib/components/masonry/components/index.d.ts +1 -0
- package/lib/components/masonry/components/masonry/masonry.component.d.ts +34 -0
- package/lib/components/masonry/components/masonry/public-api.d.ts +1 -0
- package/lib/components/masonry/components/public-api.d.ts +1 -0
- package/lib/components/masonry/masonry.imports.d.ts +3 -0
- package/lib/components/masonry/partials/index.d.ts +1 -0
- package/lib/components/masonry/partials/masonry-item/masonry-item.component.d.ts +20 -0
- package/lib/components/masonry/partials/masonry-item/public-api.d.ts +1 -0
- package/lib/components/masonry/partials/public-api.d.ts +1 -0
- package/lib/components/masonry/public-api.d.ts +4 -0
- package/lib/components/masonry/types/masonry.types.d.ts +4 -0
- package/lib/components/masonry/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.d.ts +14 -0
- package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.d.ts +14 -0
- package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/components/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.d.ts +17 -0
- package/lib/components/overlay/components/bottom-sheet/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.d.ts +16 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.d.ts +22 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/public-api.d.ts +3 -0
- package/lib/components/overlay/components/bottom-sheet/public-api.d.ts +7 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.d.ts +35 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/services/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/services/public-api.d.ts +3 -0
- package/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.d.ts +84 -0
- package/lib/components/overlay/components/bottom-sheet/types/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.d.ts +2 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.d.ts +29 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.d.ts +13 -0
- package/lib/components/overlay/components/bottom-sheet/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/utils/public-api.d.ts +3 -0
- package/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.d.ts +14 -0
- package/lib/components/overlay/components/dialog/components/dialog-container/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/components/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/constants/dialog.constants.d.ts +15 -0
- package/lib/components/overlay/components/dialog/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/dialog.imports.d.ts +14 -0
- package/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.d.ts +16 -0
- package/lib/components/overlay/components/dialog/partials/dialog-close/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.d.ts +16 -0
- package/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.d.ts +11 -0
- package/lib/components/overlay/components/dialog/partials/dialog-title/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/public-api.d.ts +3 -0
- package/lib/components/overlay/components/dialog/public-api.d.ts +7 -0
- package/lib/components/overlay/components/dialog/services/dialog-base.service.d.ts +35 -0
- package/lib/components/overlay/components/dialog/services/dialog.service.d.ts +11 -0
- package/lib/components/overlay/components/dialog/services/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/services/public-api.d.ts +2 -0
- package/lib/components/overlay/components/dialog/types/dialog.types.d.ts +142 -0
- package/lib/components/overlay/components/dialog/types/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/utils/dialog-config.d.ts +2 -0
- package/lib/components/overlay/components/dialog/utils/dialog-ref.d.ts +31 -0
- package/lib/components/overlay/components/dialog/utils/dialog.utils.d.ts +13 -0
- package/lib/components/overlay/components/dialog/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/utils/public-api.d.ts +3 -0
- package/lib/components/overlay/components/index.d.ts +1 -0
- package/lib/components/overlay/components/public-api.d.ts +4 -0
- package/lib/components/overlay/components/toggletip/components/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/toggletip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.d.ts +19 -0
- package/lib/components/overlay/components/toggletip/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/constants/toggletip.constants.d.ts +6 -0
- package/lib/components/overlay/components/toggletip/directives/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/toggletip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +38 -0
- package/lib/components/overlay/components/toggletip/public-api.d.ts +6 -0
- package/lib/components/overlay/components/toggletip/toggletip.imports.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/types/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/types/toggletip.types.d.ts +31 -0
- package/lib/components/overlay/components/toggletip/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/utils/public-api.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/utils/toggletip-config.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/utils/toggletip.util.d.ts +5 -0
- package/lib/components/overlay/components/tooltip/components/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.d.ts +19 -0
- package/lib/components/overlay/components/tooltip/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/constants/tooltip.constants.d.ts +6 -0
- package/lib/components/overlay/components/tooltip/directives/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/tooltip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +44 -0
- package/lib/components/overlay/components/tooltip/public-api.d.ts +6 -0
- package/lib/components/overlay/components/tooltip/tooltip.imports.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/types/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/types/tooltip.types.d.ts +31 -0
- package/lib/components/overlay/components/tooltip/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/utils/public-api.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/utils/tooltip-config.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/utils/tooltip.util.d.ts +5 -0
- package/lib/components/overlay/public-api.d.ts +3 -0
- package/lib/components/overlay/services/dynamic-overlay.service.d.ts +17 -0
- package/lib/components/overlay/services/public-api.d.ts +1 -0
- package/lib/components/overlay/types/dynamic-overlay.types.d.ts +8 -0
- package/lib/components/overlay/types/index.d.ts +1 -0
- package/lib/components/overlay/types/public-api.d.ts +1 -0
- package/lib/components/pagination/components/index.d.ts +1 -0
- package/lib/components/pagination/components/pagination/pagination.component.d.ts +31 -0
- package/lib/components/pagination/components/pagination/public-api.d.ts +1 -0
- package/lib/components/pagination/components/public-api.d.ts +1 -0
- package/lib/components/pagination/pagination.imports.d.ts +2 -0
- package/lib/components/pagination/partials/index.d.ts +1 -0
- package/lib/components/pagination/partials/pagination-link/pagination-link.directive.d.ts +10 -0
- package/lib/components/pagination/partials/pagination-link/public-api.d.ts +1 -0
- package/lib/components/pagination/partials/public-api.d.ts +1 -0
- package/lib/components/pagination/public-api.d.ts +4 -0
- package/lib/components/pagination/services/index.d.ts +1 -0
- package/lib/components/pagination/services/pagination-head.service.d.ts +16 -0
- package/lib/components/pagination/services/public-api.d.ts +1 -0
- package/lib/components/pagination/types/index.d.ts +1 -0
- package/lib/components/pagination/types/pagination.types.d.ts +18 -0
- package/lib/components/pagination/types/public-api.d.ts +1 -0
- package/lib/components/pagination/utils/index.d.ts +1 -0
- package/lib/components/pagination/utils/pagination.util.d.ts +2 -0
- package/lib/components/pagination/utils/public-api.d.ts +1 -0
- package/lib/components/picture/picture-data.directive.d.ts +21 -0
- package/lib/components/picture/picture.component.d.ts +12 -0
- package/lib/components/picture/picture.component.types.d.ts +4 -0
- package/lib/components/picture/public-api.d.ts +3 -0
- package/lib/components/progress-spinner/progress-spinner.component.d.ts +35 -0
- package/lib/components/progress-spinner/public-api.d.ts +1 -0
- package/lib/components/public-api.d.ts +15 -0
- package/lib/components/scrollable/components/index.d.ts +1 -0
- package/lib/components/scrollable/components/public-api.d.ts +1 -0
- package/lib/components/scrollable/components/scrollable/public-api.d.ts +1 -0
- package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +38 -0
- package/lib/components/scrollable/index.d.ts +1 -0
- package/lib/components/scrollable/public-api.d.ts +2 -0
- package/lib/components/scrollable/scrollable.imports.d.ts +2 -0
- package/lib/components/skeleton/components/index.d.ts +1 -0
- package/lib/components/skeleton/components/public-api.d.ts +1 -0
- package/lib/components/skeleton/components/skeleton/public-api.d.ts +1 -0
- package/lib/components/skeleton/components/skeleton/skeleton.component.d.ts +10 -0
- package/lib/components/skeleton/partials/index.d.ts +1 -0
- package/lib/components/skeleton/partials/public-api.d.ts +1 -0
- package/lib/components/skeleton/partials/skeleton-item/public-api.d.ts +1 -0
- package/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.d.ts +6 -0
- package/lib/components/skeleton/public-api.d.ts +3 -0
- package/lib/components/skeleton/skeleton.imports.d.ts +3 -0
- package/lib/components/sort/components/index.d.ts +1 -0
- package/lib/components/sort/components/public-api.d.ts +1 -0
- package/lib/components/sort/components/sort-header/public-api.d.ts +2 -0
- package/lib/components/sort/components/sort-header/sort-header.component.d.ts +56 -0
- package/lib/components/sort/components/sort-header/sort-header.types.d.ts +9 -0
- package/lib/components/sort/index.d.ts +1 -0
- package/lib/components/sort/partials/index.d.ts +1 -0
- package/lib/components/sort/partials/public-api.d.ts +1 -0
- package/lib/components/sort/partials/sort/public-api.d.ts +2 -0
- package/lib/components/sort/partials/sort/sort.directive.d.ts +43 -0
- package/lib/components/sort/partials/sort/sort.types.d.ts +15 -0
- package/lib/components/sort/public-api.d.ts +5 -0
- package/lib/components/sort/services/index.d.ts +1 -0
- package/lib/components/sort/services/public-api.d.ts +1 -0
- package/lib/components/sort/services/sort-header-intl.d.ts +14 -0
- package/lib/components/sort/sort.imports.d.ts +8 -0
- package/lib/components/sort/types/index.d.ts +1 -0
- package/lib/components/sort/types/public-api.d.ts +1 -0
- package/lib/components/sort/types/sort-direction.d.ts +1 -0
- package/lib/components/table/components/index.d.ts +1 -0
- package/lib/components/table/components/public-api.d.ts +1 -0
- package/lib/components/table/components/table/public-api.d.ts +1 -0
- package/lib/components/table/components/table/table.component.d.ts +26 -0
- package/lib/components/table/constants/index.d.ts +1 -0
- package/lib/components/table/constants/public-api.d.ts +1 -0
- package/lib/components/table/constants/table-data-source.constants.d.ts +1 -0
- package/lib/components/table/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell/cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/cell/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/cell-def/cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/cell-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/column-def/column-def.directive.d.ts +12 -0
- package/lib/components/table/partials/cells/column-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/column-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/footer-cell/footer-cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/footer-cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/footer-cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell/header-cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/header-cell/index.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/header-cell-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/public-api.d.ts +8 -0
- package/lib/components/table/partials/cells/text-column/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/text-column/text-column.component.d.ts +7 -0
- package/lib/components/table/partials/index.d.ts +1 -0
- package/lib/components/table/partials/public-api.d.ts +4 -0
- package/lib/components/table/partials/rows/footer-row/footer-row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/footer-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/rows/footer-row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/header-row/header-row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/header-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/header-row-def/header-row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/rows/header-row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/no-data-row/no-data-row.directive.d.ts +7 -0
- package/lib/components/table/partials/rows/no-data-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/public-api.d.ts +8 -0
- package/lib/components/table/partials/rows/recycle-rows/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.d.ts +5 -0
- package/lib/components/table/partials/rows/row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/row/row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/row-def/row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/table-busy/public-api.d.ts +1 -0
- package/lib/components/table/partials/table-busy/table-busy.directive.d.ts +9 -0
- package/lib/components/table/partials/table-busy-outlet/public-api.d.ts +1 -0
- package/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.d.ts +10 -0
- package/lib/components/table/public-api.d.ts +6 -0
- package/lib/components/table/table.imports.d.ts +3 -0
- package/lib/components/table/types/index.d.ts +1 -0
- package/lib/components/table/types/public-api.d.ts +1 -0
- package/lib/components/table/types/table-data-source.types.d.ts +15 -0
- package/lib/components/table/utils/public-api.d.ts +1 -0
- package/lib/components/table/utils/table-data-source.d.ts +33 -0
- package/lib/components/tabs/animations/index.d.ts +1 -0
- package/lib/components/tabs/animations/public-api.d.ts +1 -0
- package/lib/components/tabs/animations/tabs.animations.d.ts +4 -0
- package/lib/components/tabs/components/index.d.ts +1 -0
- package/lib/components/tabs/components/inline-tabs/inline-tabs.component.d.ts +72 -0
- package/lib/components/tabs/components/inline-tabs/public-api.d.ts +1 -0
- package/lib/components/tabs/components/nav-tabs/nav-tabs.component.d.ts +28 -0
- package/lib/components/tabs/components/nav-tabs/public-api.d.ts +1 -0
- package/lib/components/tabs/components/public-api.d.ts +2 -0
- package/lib/components/tabs/partials/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.d.ts +41 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.d.ts +39 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.d.ts +8 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.d.ts +9 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.d.ts +19 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.d.ts +11 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.d.ts +17 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/public-api.d.ts +7 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.d.ts +48 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.d.ts +10 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/public-api.d.ts +2 -0
- package/lib/components/tabs/partials/public-api.d.ts +2 -0
- package/lib/components/tabs/public-api.d.ts +6 -0
- package/lib/components/tabs/tab.imports.d.ts +3 -0
- package/lib/components/tabs/types/public-api.d.ts +1 -0
- package/lib/components/tabs/types/tab-config.types.d.ts +8 -0
- package/lib/components/tabs/utils/active-tab-underline.util.d.ts +41 -0
- package/lib/components/tabs/utils/index.d.ts +1 -0
- package/lib/components/tabs/utils/paginated-tab-header.directive.d.ts +79 -0
- package/lib/components/tabs/utils/public-api.d.ts +2 -0
- package/lib/public-api.d.ts +3 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/public-api.d.ts +1 -0
- package/lib/services/swipe-handler.service.d.ts +12 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/public-api.d.ts +1 -0
- package/lib/types/swipe.types.d.ts +19 -0
- package/package.json +37 -0
- package/src/lib/styles/active-tab-underline.css +50 -0
- package/src/lib/styles/cdk.css +11 -0
- package/src/lib/styles/easing.css +40 -0
- package/src/lib/styles/index.css +3 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './segmented-button';
|
|
2
|
+
export * from './segmented-button-field';
|
|
3
|
+
export * from './segmented-button-group';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vY29tcG9uZW50cy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zZWdtZW50ZWQtYnV0dG9uJztcbmV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi1maWVsZCc7XG5leHBvcnQgKiBmcm9tICcuL3NlZ21lbnRlZC1idXR0b24tZ3JvdXAnO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { AsyncPipe, NgClass } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ElementRef, ViewChild, ViewEncapsulation, inject, } from '@angular/core';
|
|
3
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
4
|
+
import { InputBase } from '../../../../utils';
|
|
5
|
+
import { SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SegmentedButtonDirective } from '../../directives';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../directives/segmented-button/segmented-button.directive";
|
|
8
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
9
|
+
export class SegmentedButtonComponent extends InputBase {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
this.segmentedButton = inject(SEGMENTED_BUTTON_TOKEN);
|
|
13
|
+
this.segmentedButtonGroup = inject(SEGMENTED_BUTTON_GROUP_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
ngOnInit() {
|
|
16
|
+
super.ngOnInit();
|
|
17
|
+
if (!this.activeIndicator) {
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
this.segmentedButton._setActiveIndicatorElement(this.activeIndicator.nativeElement);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
SegmentedButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
+
SegmentedButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SegmentedButtonComponent, isStandalone: true, selector: "et-segmented-button", host: { classAttribute: "et-segmented-button" }, viewQueries: [{ propertyName: "activeIndicator", first: true, predicate: ["activeIndicator"], descendants: true, static: true }], usesInheritance: true, hostDirectives: [{ directive: i1.SegmentedButtonDirective, inputs: ["value", "value", "disabled", "disabled"] }, { directive: i2.InputDirective }], ngImport: i0, template: "<button\n [attr.tabindex]=\"(input.disabled$ | async) ? -1 : 0\"\n [attr.aria-pressed]=\"segmentedButton.checked$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n [disabled]=\"segmentedButton.disabled$ | async\"\n [attr.id]=\"input.id\"\n (click)=\"segmentedButton._onInputInteraction($event)\"\n (blur)=\"segmentedButton._controlTouched()\"\n class=\"et-segmented-button-button\"\n type=\"button\"\n>\n <div #activeIndicator class=\"et-segmented-button-button-active-indicator\"></div>\n\n <span class=\"et-segmented-button-button-content\">\n <ng-content />\n </span>\n</button>\n", styles: [":where(.et-segmented-button){--et-segmented-button-active-indicator-color: #e0e0e0;--et-segmented-button-active-indicator-radius: 1px}.et-segmented-button-button{position:relative}.et-segmented-button-button-content{position:relative;z-index:2}.et-segmented-button-button-active-indicator{position:absolute;inset:0;background-color:var(--et-segmented-button-active-indicator-color);border-radius:var(--et-segmented-button-active-indicator-radius);opacity:0;z-index:1}.et-segmented-button--checked .et-segmented-button-button-active-indicator{opacity:1}\n"], 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: SegmentedButtonComponent, decorators: [{
|
|
26
|
+
type: Component,
|
|
27
|
+
args: [{ selector: 'et-segmented-button', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
28
|
+
class: 'et-segmented-button',
|
|
29
|
+
}, imports: [AsyncPipe, NgClass, NativeInputRefDirective], hostDirectives: [
|
|
30
|
+
{ directive: SegmentedButtonDirective, inputs: ['value', 'disabled'] },
|
|
31
|
+
{ directive: InputDirective },
|
|
32
|
+
], template: "<button\n [attr.tabindex]=\"(input.disabled$ | async) ? -1 : 0\"\n [attr.aria-pressed]=\"segmentedButton.checked$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n [disabled]=\"segmentedButton.disabled$ | async\"\n [attr.id]=\"input.id\"\n (click)=\"segmentedButton._onInputInteraction($event)\"\n (blur)=\"segmentedButton._controlTouched()\"\n class=\"et-segmented-button-button\"\n type=\"button\"\n>\n <div #activeIndicator class=\"et-segmented-button-button-active-indicator\"></div>\n\n <span class=\"et-segmented-button-button-content\">\n <ng-content />\n </span>\n</button>\n", styles: [":where(.et-segmented-button){--et-segmented-button-active-indicator-color: #e0e0e0;--et-segmented-button-active-indicator-radius: 1px}.et-segmented-button-button{position:relative}.et-segmented-button-button-content{position:relative;z-index:2}.et-segmented-button-button-active-indicator{position:absolute;inset:0;background-color:var(--et-segmented-button-active-indicator-color);border-radius:var(--et-segmented-button-active-indicator-radius);opacity:0;z-index:1}.et-segmented-button--checked .et-segmented-button-button-active-indicator{opacity:1}\n"] }]
|
|
33
|
+
}], propDecorators: { activeIndicator: [{
|
|
34
|
+
type: ViewChild,
|
|
35
|
+
args: ['activeIndicator', { static: true }]
|
|
36
|
+
}] } });
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi9zZWdtZW50ZWQtYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL3NlZ21lbnRlZC1idXR0b24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxPQUFPLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUNyRCxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBRVYsU0FBUyxFQUNULGlCQUFpQixFQUNqQixNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsc0JBQXNCLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQWtCbEgsTUFBTSxPQUFPLHdCQUF5QixTQUFRLFNBQVM7SUFoQnZEOztRQWlCcUIsb0JBQWUsR0FBRyxNQUFNLENBQUMsc0JBQXNCLENBQUMsQ0FBQztRQUNqRCx5QkFBb0IsR0FBRyxNQUFNLENBQUMsNEJBQTRCLENBQUMsQ0FBQztLQWNoRjtJQVRVLFFBQVE7UUFDZixLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7UUFFakIsSUFBSSxDQUFDLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFDekIsT0FBTztTQUNSO1FBRUQsSUFBSSxDQUFDLGVBQWUsQ0FBQywwQkFBMEIsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQ3RGLENBQUM7O3FIQWZVLHdCQUF3Qjt5R0FBeEIsd0JBQXdCLDZhQzlCckMseXFCQWtCQSwrbEJETVksU0FBUzsyRkFNUix3QkFBd0I7a0JBaEJwQyxTQUFTOytCQUNFLHFCQUFxQixjQUduQixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLHFCQUFxQjtxQkFDN0IsV0FDUSxDQUFDLFNBQVMsRUFBRSxPQUFPLEVBQUUsdUJBQXVCLENBQUMsa0JBQ3RDO3dCQUNkLEVBQUUsU0FBUyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sRUFBRSxDQUFDLE9BQU8sRUFBRSxVQUFVLENBQUMsRUFBRTt3QkFDdEUsRUFBRSxTQUFTLEVBQUUsY0FBYyxFQUFFO3FCQUM5Qjs4QkFPRCxlQUFlO3NCQURkLFNBQVM7dUJBQUMsaUJBQWlCLEVBQUUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlLCBOZ0NsYXNzIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIE9uSW5pdCxcbiAgVmlld0NoaWxkLFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbiAgaW5qZWN0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRCYXNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHsgU0VHTUVOVEVEX0JVVFRPTl9HUk9VUF9UT0tFTiwgU0VHTUVOVEVEX0JVVFRPTl9UT0tFTiwgU2VnbWVudGVkQnV0dG9uRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LXNlZ21lbnRlZC1idXR0b24nLFxuICB0ZW1wbGF0ZVVybDogJy4vc2VnbWVudGVkLWJ1dHRvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlZ21lbnRlZC1idXR0b24uY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LXNlZ21lbnRlZC1idXR0b24nLFxuICB9LFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlLCBOZ0NsYXNzLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZV0sXG4gIGhvc3REaXJlY3RpdmVzOiBbXG4gICAgeyBkaXJlY3RpdmU6IFNlZ21lbnRlZEJ1dHRvbkRpcmVjdGl2ZSwgaW5wdXRzOiBbJ3ZhbHVlJywgJ2Rpc2FibGVkJ10gfSxcbiAgICB7IGRpcmVjdGl2ZTogSW5wdXREaXJlY3RpdmUgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgU2VnbWVudGVkQnV0dG9uQ29tcG9uZW50IGV4dGVuZHMgSW5wdXRCYXNlIGltcGxlbWVudHMgT25Jbml0IHtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IHNlZ21lbnRlZEJ1dHRvbiA9IGluamVjdChTRUdNRU5URURfQlVUVE9OX1RPS0VOKTtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IHNlZ21lbnRlZEJ1dHRvbkdyb3VwID0gaW5qZWN0KFNFR01FTlRFRF9CVVRUT05fR1JPVVBfVE9LRU4pO1xuXG4gIEBWaWV3Q2hpbGQoJ2FjdGl2ZUluZGljYXRvcicsIHsgc3RhdGljOiB0cnVlIH0pXG4gIGFjdGl2ZUluZGljYXRvcj86IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+O1xuXG4gIG92ZXJyaWRlIG5nT25Jbml0KCkge1xuICAgIHN1cGVyLm5nT25Jbml0KCk7XG5cbiAgICBpZiAoIXRoaXMuYWN0aXZlSW5kaWNhdG9yKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5zZWdtZW50ZWRCdXR0b24uX3NldEFjdGl2ZUluZGljYXRvckVsZW1lbnQodGhpcy5hY3RpdmVJbmRpY2F0b3IubmF0aXZlRWxlbWVudCk7XG4gIH1cbn1cbiIsIjxidXR0b25cbiAgW2F0dHIudGFiaW5kZXhdPVwiKGlucHV0LmRpc2FibGVkJCB8IGFzeW5jKSA/IC0xIDogMFwiXG4gIFthdHRyLmFyaWEtcHJlc3NlZF09XCJzZWdtZW50ZWRCdXR0b24uY2hlY2tlZCQgfCBhc3luY1wiXG4gIFthdHRyLmFyaWEtcmVxdWlyZWRdPVwiKGlucHV0LnJlcXVpcmVkJCB8IGFzeW5jKSB8fCBudWxsXCJcbiAgW2F0dHIuYXJpYS1kZXNjcmliZWRieV09XCJpbnB1dC5kZXNjcmliZWRCeSQgfCBhc3luY1wiXG4gIFtkaXNhYmxlZF09XCJzZWdtZW50ZWRCdXR0b24uZGlzYWJsZWQkIHwgYXN5bmNcIlxuICBbYXR0ci5pZF09XCJpbnB1dC5pZFwiXG4gIChjbGljayk9XCJzZWdtZW50ZWRCdXR0b24uX29uSW5wdXRJbnRlcmFjdGlvbigkZXZlbnQpXCJcbiAgKGJsdXIpPVwic2VnbWVudGVkQnV0dG9uLl9jb250cm9sVG91Y2hlZCgpXCJcbiAgY2xhc3M9XCJldC1zZWdtZW50ZWQtYnV0dG9uLWJ1dHRvblwiXG4gIHR5cGU9XCJidXR0b25cIlxuPlxuICA8ZGl2ICNhY3RpdmVJbmRpY2F0b3IgY2xhc3M9XCJldC1zZWdtZW50ZWQtYnV0dG9uLWJ1dHRvbi1hY3RpdmUtaW5kaWNhdG9yXCI+PC9kaXY+XG5cbiAgPHNwYW4gY2xhc3M9XCJldC1zZWdtZW50ZWQtYnV0dG9uLWJ1dHRvbi1jb250ZW50XCI+XG4gICAgPG5nLWNvbnRlbnQgLz5cbiAgPC9zcGFuPlxuPC9idXR0b24+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi1maWVsZC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button-field.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uLWZpZWxkL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQ0FBb0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi1maWVsZC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { StaticFormFieldDirective } from '../../../../directives';
|
|
3
|
+
import { SegmentedButtonFieldDirective } 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/segmented-button-field/segmented-button-field.directive";
|
|
7
|
+
export class SegmentedButtonFieldComponent {
|
|
8
|
+
}
|
|
9
|
+
SegmentedButtonFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
+
SegmentedButtonFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SegmentedButtonFieldComponent, isStandalone: true, selector: "et-segmented-button-field", host: { classAttribute: "et-form-field et-segmented-button-field" }, hostDirectives: [{ directive: i1.StaticFormFieldDirective }, { directive: i2.SegmentedButtonFieldDirective }], ngImport: i0, template: `
|
|
11
|
+
<div class="et-segmented-button-field-container">
|
|
12
|
+
<ng-content select="et-segmented-button" />
|
|
13
|
+
</div>
|
|
14
|
+
`, isInline: true, styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonFieldComponent, decorators: [{
|
|
16
|
+
type: Component,
|
|
17
|
+
args: [{ selector: 'et-segmented-button-field', template: `
|
|
18
|
+
<div class="et-segmented-button-field-container">
|
|
19
|
+
<ng-content select="et-segmented-button" />
|
|
20
|
+
</div>
|
|
21
|
+
`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
22
|
+
class: 'et-form-field et-segmented-button-field',
|
|
23
|
+
}, imports: [], hostDirectives: [StaticFormFieldDirective, SegmentedButtonFieldDirective] }]
|
|
24
|
+
}] });
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi1maWVsZC9zZWdtZW50ZWQtYnV0dG9uLWZpZWxkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3RGLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2xFLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBbUJqRSxNQUFNLE9BQU8sNkJBQTZCOzswSEFBN0IsNkJBQTZCOzhHQUE3Qiw2QkFBNkIseVFBZjlCOzs7O0dBSVQ7MkZBV1UsNkJBQTZCO2tCQWpCekMsU0FBUzsrQkFDRSwyQkFBMkIsWUFDM0I7Ozs7R0FJVCxjQUVXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUseUNBQXlDO3FCQUNqRCxXQUNRLEVBQUUsa0JBQ0ssQ0FBQyx3QkFBd0IsRUFBRSw2QkFBNkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdGF0aWNGb3JtRmllbGREaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IFNlZ21lbnRlZEJ1dHRvbkZpZWxkRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LXNlZ21lbnRlZC1idXR0b24tZmllbGQnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJldC1zZWdtZW50ZWQtYnV0dG9uLWZpZWxkLWNvbnRhaW5lclwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtc2VnbWVudGVkLWJ1dHRvblwiIC8+XG4gICAgPC9kaXY+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL3NlZ21lbnRlZC1idXR0b24tZmllbGQuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LWZvcm0tZmllbGQgZXQtc2VnbWVudGVkLWJ1dHRvbi1maWVsZCcsXG4gIH0sXG4gIGltcG9ydHM6IFtdLFxuICBob3N0RGlyZWN0aXZlczogW1N0YXRpY0Zvcm1GaWVsZERpcmVjdGl2ZSwgU2VnbWVudGVkQnV0dG9uRmllbGREaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBTZWdtZW50ZWRCdXR0b25GaWVsZENvbXBvbmVudCB7fVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi1ncm91cC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button-group.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uLWdyb3VwL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQ0FBb0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi1ncm91cC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { AsyncPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation, forwardRef, inject } from '@angular/core';
|
|
3
|
+
import { DynamicFormGroupDirective, StaticFormGroupDirective, WriteableInputDirective } from '../../../../directives';
|
|
4
|
+
import { InputStateService } from '../../../../services';
|
|
5
|
+
import { ErrorComponent } from '../../../error';
|
|
6
|
+
import { SegmentedButtonGroupDirective } 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/segmented-button-group/segmented-button-group.directive";
|
|
12
|
+
export class SegmentedButtonGroupComponent {
|
|
13
|
+
constructor() {
|
|
14
|
+
this.inputState = inject(InputStateService);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
SegmentedButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
+
SegmentedButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SegmentedButtonGroupComponent, isStandalone: true, selector: "et-segmented-button-group", host: { classAttribute: "et-form-group et-segmented-button-group" }, hostDirectives: [{ directive: i1.StaticFormGroupDirective }, { directive: i2.WriteableInputDirective }, { directive: i0.forwardRef(function () { return i3.DynamicFormGroupDirective; }), inputs: ["hideErrorMessage", "hideErrorMessage"] }, { directive: i4.SegmentedButtonGroupDirective }], ngImport: i0, template: `
|
|
19
|
+
<div class="et-segmented-button-group-container">
|
|
20
|
+
<ng-content select="et-segmented-button-field" />
|
|
21
|
+
</div>
|
|
22
|
+
<et-error [errors]="inputState.errors$ | async" />
|
|
23
|
+
`, isInline: true, styles: [":where(.et-segmented-button-group){--et-segmented-button-group-gap: 1rem}.et-segmented-button-group-container{display:flex;gap:var(--et-segmented-button-group-gap)}\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: SegmentedButtonGroupComponent, decorators: [{
|
|
25
|
+
type: Component,
|
|
26
|
+
args: [{ selector: 'et-segmented-button-group', template: `
|
|
27
|
+
<div class="et-segmented-button-group-container">
|
|
28
|
+
<ng-content select="et-segmented-button-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-segmented-button-group',
|
|
33
|
+
}, hostDirectives: [
|
|
34
|
+
StaticFormGroupDirective,
|
|
35
|
+
WriteableInputDirective,
|
|
36
|
+
{
|
|
37
|
+
directive: forwardRef(() => DynamicFormGroupDirective),
|
|
38
|
+
inputs: ['hideErrorMessage'],
|
|
39
|
+
},
|
|
40
|
+
SegmentedButtonGroupDirective,
|
|
41
|
+
], imports: [ErrorComponent, AsyncPipe], styles: [":where(.et-segmented-button-group){--et-segmented-button-group-gap: 1rem}.et-segmented-button-group-container{display:flex;gap:var(--et-segmented-button-group-gap)}\n"] }]
|
|
42
|
+
}] });
|
|
43
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi1ncm91cC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi1ncm91cC9zZWdtZW50ZWQtYnV0dG9uLWdyb3VwLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFHLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSx3QkFBd0IsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3RILE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNoRCxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7Ozs7O0FBNEJqRSxNQUFNLE9BQU8sNkJBQTZCO0lBMUIxQztRQTJCcUIsZUFBVSxHQUFHLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0tBQzNEOzswSEFGWSw2QkFBNkI7OEdBQTdCLDZCQUE2QiwwYkF4QjlCOzs7OztHQUtULGdQQWlCUyxjQUFjLG9FQUFFLFNBQVM7MkZBRXhCLDZCQUE2QjtrQkExQnpDLFNBQVM7K0JBQ0UsMkJBQTJCLFlBQzNCOzs7OztHQUtULGNBRVcsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CO3dCQUNKLEtBQUssRUFBRSx5Q0FBeUM7cUJBQ2pELGtCQUNlO3dCQUNkLHdCQUF3Qjt3QkFDeEIsdUJBQXVCO3dCQUN2Qjs0QkFDRSxTQUFTLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHlCQUF5QixDQUFDOzRCQUN0RCxNQUFNLEVBQUUsQ0FBQyxrQkFBa0IsQ0FBQzt5QkFDN0I7d0JBQ0QsNkJBQTZCO3FCQUM5QixXQUNRLENBQUMsY0FBYyxFQUFFLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzeW5jUGlwZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiwgZm9yd2FyZFJlZiwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEeW5hbWljRm9ybUdyb3VwRGlyZWN0aXZlLCBTdGF0aWNGb3JtR3JvdXBEaXJlY3RpdmUsIFdyaXRlYWJsZUlucHV0RGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBJbnB1dFN0YXRlU2VydmljZSB9IGZyb20gJy4uLy4uLy4uLy4uL3NlcnZpY2VzJztcbmltcG9ydCB7IEVycm9yQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vZXJyb3InO1xuaW1wb3J0IHsgU2VnbWVudGVkQnV0dG9uR3JvdXBEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtc2VnbWVudGVkLWJ1dHRvbi1ncm91cCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImV0LXNlZ21lbnRlZC1idXR0b24tZ3JvdXAtY29udGFpbmVyXCI+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJldC1zZWdtZW50ZWQtYnV0dG9uLWZpZWxkXCIgLz5cbiAgICA8L2Rpdj5cbiAgICA8ZXQtZXJyb3IgW2Vycm9yc109XCJpbnB1dFN0YXRlLmVycm9ycyQgfCBhc3luY1wiIC8+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL3NlZ21lbnRlZC1idXR0b24tZ3JvdXAuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LWZvcm0tZ3JvdXAgZXQtc2VnbWVudGVkLWJ1dHRvbi1ncm91cCcsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbXG4gICAgU3RhdGljRm9ybUdyb3VwRGlyZWN0aXZlLFxuICAgIFdyaXRlYWJsZUlucHV0RGlyZWN0aXZlLFxuICAgIHtcbiAgICAgIGRpcmVjdGl2ZTogZm9yd2FyZFJlZigoKSA9PiBEeW5hbWljRm9ybUdyb3VwRGlyZWN0aXZlKSxcbiAgICAgIGlucHV0czogWydoaWRlRXJyb3JNZXNzYWdlJ10sXG4gICAgfSxcbiAgICBTZWdtZW50ZWRCdXR0b25Hcm91cERpcmVjdGl2ZSxcbiAgXSxcbiAgaW1wb3J0czogW0Vycm9yQ29tcG9uZW50LCBBc3luY1BpcGVdLFxufSlcbmV4cG9ydCBjbGFzcyBTZWdtZW50ZWRCdXR0b25Hcm91cENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBpbnB1dFN0YXRlID0gaW5qZWN0KElucHV0U3RhdGVTZXJ2aWNlKTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2RpcmVjdGl2ZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './segmented-button-field/public-api';
|
|
2
|
+
export * from './segmented-button-group/public-api';
|
|
3
|
+
export * from './segmented-button/public-api';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vZGlyZWN0aXZlcy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLCtCQUErQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zZWdtZW50ZWQtYnV0dG9uLWZpZWxkL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9zZWdtZW50ZWQtYnV0dG9uLWdyb3VwL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9zZWdtZW50ZWQtYnV0dG9uL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2RpcmVjdGl2ZXMvc2VnbWVudGVkLWJ1dHRvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vZGlyZWN0aXZlcy9zZWdtZW50ZWQtYnV0dG9uL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
+
import { Directive, InjectionToken, Input, inject } from '@angular/core';
|
|
3
|
+
import { DestroyService, createReactiveBindings } 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 SEGMENTED_BUTTON_TOKEN = new InjectionToken('ET_SEGMENTED_BUTTON_DIRECTIVE_TOKEN');
|
|
8
|
+
export class SegmentedButtonDirective {
|
|
9
|
+
constructor() {
|
|
10
|
+
this._activeIndicatorElement$ = new BehaviorSubject(null);
|
|
11
|
+
this.input = inject(INPUT_TOKEN);
|
|
12
|
+
this._value$ = new BehaviorSubject(null);
|
|
13
|
+
this._disabled$ = new BehaviorSubject(false);
|
|
14
|
+
this.checked$ = combineLatest([this.input.value$, this._value$]).pipe(map(([inputValue, value]) => inputValue === value));
|
|
15
|
+
this.disabled$ = combineLatest([this.input.disabled$, this._disabled$]).pipe(map(([inputDisabled, disabled]) => inputDisabled || disabled));
|
|
16
|
+
this._bindings = createReactiveBindings({
|
|
17
|
+
attribute: ['class.et-segmented-button--checked'],
|
|
18
|
+
observable: this.checked$,
|
|
19
|
+
}, {
|
|
20
|
+
attribute: ['class.et-segmented-button--disabled'],
|
|
21
|
+
observable: this.disabled$,
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
get value() {
|
|
25
|
+
return this._value$.getValue();
|
|
26
|
+
}
|
|
27
|
+
set value(value) {
|
|
28
|
+
this._value$.next(value);
|
|
29
|
+
}
|
|
30
|
+
get disabled() {
|
|
31
|
+
return this._disabled$.getValue();
|
|
32
|
+
}
|
|
33
|
+
set disabled(value) {
|
|
34
|
+
this._disabled$.next(coerceBooleanProperty(value));
|
|
35
|
+
}
|
|
36
|
+
get activeIndicatorElement$() {
|
|
37
|
+
return this._activeIndicatorElement$.asObservable();
|
|
38
|
+
}
|
|
39
|
+
get activeIndicatorElement() {
|
|
40
|
+
return this._activeIndicatorElement$.getValue();
|
|
41
|
+
}
|
|
42
|
+
_setActiveIndicatorElement(element) {
|
|
43
|
+
this._activeIndicatorElement$.next(element);
|
|
44
|
+
}
|
|
45
|
+
_onInputInteraction(event) {
|
|
46
|
+
event.stopPropagation();
|
|
47
|
+
if (this.disabled) {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
this.input._updateValue(this.value);
|
|
51
|
+
this.input._markAsTouched();
|
|
52
|
+
this.input._setShouldDisplayError(true);
|
|
53
|
+
}
|
|
54
|
+
_controlTouched() {
|
|
55
|
+
this.input._markAsTouched();
|
|
56
|
+
this.input._setShouldDisplayError(true);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
SegmentedButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
SegmentedButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: SegmentedButtonDirective, isStandalone: true, inputs: { value: "value", disabled: "disabled" }, providers: [{ provide: SEGMENTED_BUTTON_TOKEN, useExisting: SegmentedButtonDirective }, DestroyService], exportAs: ["etSegmentedButton"], ngImport: i0 });
|
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonDirective, decorators: [{
|
|
62
|
+
type: Directive,
|
|
63
|
+
args: [{
|
|
64
|
+
standalone: true,
|
|
65
|
+
providers: [{ provide: SEGMENTED_BUTTON_TOKEN, useExisting: SegmentedButtonDirective }, DestroyService],
|
|
66
|
+
exportAs: 'etSegmentedButton',
|
|
67
|
+
}]
|
|
68
|
+
}], propDecorators: { value: [{
|
|
69
|
+
type: Input
|
|
70
|
+
}], disabled: [{
|
|
71
|
+
type: Input
|
|
72
|
+
}] } });
|
|
73
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2RpcmVjdGl2ZXMvc2VnbWVudGVkLWJ1dHRvbi9zZWdtZW50ZWQtYnV0dG9uLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWdCLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDNUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6RSxPQUFPLEVBQUUsY0FBYyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxlQUFlLEVBQUUsYUFBYSxFQUFFLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMzRCxPQUFPLEVBQUUsV0FBVyxFQUFrQixNQUFNLHdCQUF3QixDQUFDOztBQUdyRSxNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBRyxJQUFJLGNBQWMsQ0FDdEQscUNBQXFDLENBQ3RDLENBQUM7QUFPRixNQUFNLE9BQU8sd0JBQXdCO0lBTHJDO1FBTW1CLDZCQUF3QixHQUFHLElBQUksZUFBZSxDQUFxQixJQUFJLENBQUMsQ0FBQztRQUNqRixVQUFLLEdBQUcsTUFBTSxDQUF1QyxXQUFXLENBQUMsQ0FBQztRQVNuRSxZQUFPLEdBQUcsSUFBSSxlQUFlLENBQXVCLElBQUksQ0FBQyxDQUFDO1FBUzFELGVBQVUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUV2QyxhQUFRLEdBQUcsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUN2RSxHQUFHLENBQUMsQ0FBQyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsRUFBRSxFQUFFLENBQUMsVUFBVSxLQUFLLEtBQUssQ0FBQyxDQUNuRCxDQUFDO1FBRU8sY0FBUyxHQUFHLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDOUUsR0FBRyxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsUUFBUSxDQUFDLEVBQUUsRUFBRSxDQUFDLGFBQWEsSUFBSSxRQUFRLENBQUMsQ0FDOUQsQ0FBQztRQUVPLGNBQVMsR0FBRyxzQkFBc0IsQ0FDekM7WUFDRSxTQUFTLEVBQUUsQ0FBQyxvQ0FBb0MsQ0FBQztZQUNqRCxVQUFVLEVBQUUsSUFBSSxDQUFDLFFBQVE7U0FDMUIsRUFDRDtZQUNFLFNBQVMsRUFBRSxDQUFDLHFDQUFxQyxDQUFDO1lBQ2xELFVBQVUsRUFBRSxJQUFJLENBQUMsU0FBUztTQUMzQixDQUNGLENBQUM7S0ErQkg7SUFsRUMsSUFDSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ2pDLENBQUM7SUFDRCxJQUFJLEtBQUssQ0FBQyxLQUEyQjtRQUNuQyxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBR0QsSUFDSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFDRCxJQUFJLFFBQVEsQ0FBQyxLQUFtQjtRQUM5QixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ3JELENBQUM7SUFzQkQsSUFBSSx1QkFBdUI7UUFDekIsT0FBTyxJQUFJLENBQUMsd0JBQXdCLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDdEQsQ0FBQztJQUVELElBQUksc0JBQXNCO1FBQ3hCLE9BQU8sSUFBSSxDQUFDLHdCQUF3QixDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ2xELENBQUM7SUFFRCwwQkFBMEIsQ0FBQyxPQUFvQjtRQUM3QyxJQUFJLENBQUMsd0JBQXdCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQzlDLENBQUM7SUFFRCxtQkFBbUIsQ0FBQyxLQUFZO1FBQzlCLEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUV4QixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsT0FBTztTQUNSO1FBRUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRXBDLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDOztxSEFyRVUsd0JBQXdCO3lHQUF4Qix3QkFBd0IsbUZBSHhCLENBQUMsRUFBRSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsV0FBVyxFQUFFLHdCQUF3QixFQUFFLEVBQUUsY0FBYyxDQUFDOzJGQUc1Rix3QkFBd0I7a0JBTHBDLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLFdBQVcsMEJBQTBCLEVBQUUsRUFBRSxjQUFjLENBQUM7b0JBQ3ZHLFFBQVEsRUFBRSxtQkFBbUI7aUJBQzlCOzhCQU1LLEtBQUs7c0JBRFIsS0FBSztnQkFVRixRQUFRO3NCQURYLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCb29sZWFuSW5wdXQsIGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIEluamVjdGlvblRva2VuLCBJbnB1dCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEZXN0cm95U2VydmljZSwgY3JlYXRlUmVhY3RpdmVCaW5kaW5ncyB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCBtYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElOUFVUX1RPS0VOLCBJbnB1dERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgU2VnbWVudGVkQnV0dG9uVmFsdWUgfSBmcm9tICcuLi8uLi90eXBlcyc7XG5cbmV4cG9ydCBjb25zdCBTRUdNRU5URURfQlVUVE9OX1RPS0VOID0gbmV3IEluamVjdGlvblRva2VuPFNlZ21lbnRlZEJ1dHRvbkRpcmVjdGl2ZT4oXG4gICdFVF9TRUdNRU5URURfQlVUVE9OX0RJUkVDVElWRV9UT0tFTicsXG4pO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBTRUdNRU5URURfQlVUVE9OX1RPS0VOLCB1c2VFeGlzdGluZzogU2VnbWVudGVkQnV0dG9uRGlyZWN0aXZlIH0sIERlc3Ryb3lTZXJ2aWNlXSxcbiAgZXhwb3J0QXM6ICdldFNlZ21lbnRlZEJ1dHRvbicsXG59KVxuZXhwb3J0IGNsYXNzIFNlZ21lbnRlZEJ1dHRvbkRpcmVjdGl2ZSB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2FjdGl2ZUluZGljYXRvckVsZW1lbnQkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxIVE1MRWxlbWVudCB8IG51bGw+KG51bGwpO1xuICByZWFkb25seSBpbnB1dCA9IGluamVjdDxJbnB1dERpcmVjdGl2ZTxTZWdtZW50ZWRCdXR0b25WYWx1ZT4+KElOUFVUX1RPS0VOKTtcblxuICBASW5wdXQoKVxuICBnZXQgdmFsdWUoKSB7XG4gICAgcmV0dXJuIHRoaXMuX3ZhbHVlJC5nZXRWYWx1ZSgpO1xuICB9XG4gIHNldCB2YWx1ZSh2YWx1ZTogU2VnbWVudGVkQnV0dG9uVmFsdWUpIHtcbiAgICB0aGlzLl92YWx1ZSQubmV4dCh2YWx1ZSk7XG4gIH1cbiAgcHJpdmF0ZSBfdmFsdWUkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxTZWdtZW50ZWRCdXR0b25WYWx1ZT4obnVsbCk7XG5cbiAgQElucHV0KClcbiAgZ2V0IGRpc2FibGVkKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9kaXNhYmxlZCQuZ2V0VmFsdWUoKTtcbiAgfVxuICBzZXQgZGlzYWJsZWQodmFsdWU6IEJvb2xlYW5JbnB1dCkge1xuICAgIHRoaXMuX2Rpc2FibGVkJC5uZXh0KGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSh2YWx1ZSkpO1xuICB9XG4gIHByaXZhdGUgX2Rpc2FibGVkJCA9IG5ldyBCZWhhdmlvclN1YmplY3QoZmFsc2UpO1xuXG4gIHJlYWRvbmx5IGNoZWNrZWQkID0gY29tYmluZUxhdGVzdChbdGhpcy5pbnB1dC52YWx1ZSQsIHRoaXMuX3ZhbHVlJF0pLnBpcGUoXG4gICAgbWFwKChbaW5wdXRWYWx1ZSwgdmFsdWVdKSA9PiBpbnB1dFZhbHVlID09PSB2YWx1ZSksXG4gICk7XG5cbiAgcmVhZG9ubHkgZGlzYWJsZWQkID0gY29tYmluZUxhdGVzdChbdGhpcy5pbnB1dC5kaXNhYmxlZCQsIHRoaXMuX2Rpc2FibGVkJF0pLnBpcGUoXG4gICAgbWFwKChbaW5wdXREaXNhYmxlZCwgZGlzYWJsZWRdKSA9PiBpbnB1dERpc2FibGVkIHx8IGRpc2FibGVkKSxcbiAgKTtcblxuICByZWFkb25seSBfYmluZGluZ3MgPSBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzKFxuICAgIHtcbiAgICAgIGF0dHJpYnV0ZTogWydjbGFzcy5ldC1zZWdtZW50ZWQtYnV0dG9uLS1jaGVja2VkJ10sXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLmNoZWNrZWQkLFxuICAgIH0sXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXNlZ21lbnRlZC1idXR0b24tLWRpc2FibGVkJ10sXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLmRpc2FibGVkJCxcbiAgICB9LFxuICApO1xuXG4gIGdldCBhY3RpdmVJbmRpY2F0b3JFbGVtZW50JCgpIHtcbiAgICByZXR1cm4gdGhpcy5fYWN0aXZlSW5kaWNhdG9yRWxlbWVudCQuYXNPYnNlcnZhYmxlKCk7XG4gIH1cblxuICBnZXQgYWN0aXZlSW5kaWNhdG9yRWxlbWVudCgpIHtcbiAgICByZXR1cm4gdGhpcy5fYWN0aXZlSW5kaWNhdG9yRWxlbWVudCQuZ2V0VmFsdWUoKTtcbiAgfVxuXG4gIF9zZXRBY3RpdmVJbmRpY2F0b3JFbGVtZW50KGVsZW1lbnQ6IEhUTUxFbGVtZW50KSB7XG4gICAgdGhpcy5fYWN0aXZlSW5kaWNhdG9yRWxlbWVudCQubmV4dChlbGVtZW50KTtcbiAgfVxuXG4gIF9vbklucHV0SW50ZXJhY3Rpb24oZXZlbnQ6IEV2ZW50KSB7XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG5cbiAgICBpZiAodGhpcy5kaXNhYmxlZCkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKHRoaXMudmFsdWUpO1xuXG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICAgIHRoaXMuaW5wdXQuX3NldFNob3VsZERpc3BsYXlFcnJvcih0cnVlKTtcbiAgfVxuXG4gIF9jb250cm9sVG91Y2hlZCgpIHtcbiAgICB0aGlzLmlucHV0Ll9tYXJrQXNUb3VjaGVkKCk7XG4gICAgdGhpcy5pbnB1dC5fc2V0U2hvdWxkRGlzcGxheUVycm9yKHRydWUpO1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button-field.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vZGlyZWN0aXZlcy9zZWdtZW50ZWQtYnV0dG9uLWZpZWxkL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQ0FBb0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi1maWVsZC5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -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 { SEGMENTED_BUTTON_TOKEN } from '../segmented-button';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export const SEGMENTED_BUTTON_FIELD_TOKEN = new InjectionToken('ET_SEGMENTED_BUTTON_FIELD_DIRECTIVE_TOKEN');
|
|
8
|
+
export class SegmentedButtonFieldDirective {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.inputState = inject(InputStateService);
|
|
11
|
+
this._bindings = createReactiveBindings();
|
|
12
|
+
}
|
|
13
|
+
ngAfterContentInit() {
|
|
14
|
+
if (!this._segmentedButton) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
this._bindings.push({
|
|
18
|
+
attribute: 'class.et-segmented-button-field--checked',
|
|
19
|
+
observable: this._segmentedButton.changes.pipe(startWith(this._segmentedButton)).pipe(switchMap((buttons) => combineLatest(buttons.map((button) => button.checked$))), map((checked) => checked.some((value) => value))),
|
|
20
|
+
});
|
|
21
|
+
this._bindings.push({
|
|
22
|
+
attribute: 'class.et-segmented-button-field--disabled',
|
|
23
|
+
observable: this._segmentedButton.changes.pipe(startWith(this._segmentedButton)).pipe(switchMap((buttons) => combineLatest(buttons.map((button) => button.disabled$))), map((disabled) => disabled.some((value) => value))),
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
SegmentedButtonFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonFieldDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
28
|
+
SegmentedButtonFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: SegmentedButtonFieldDirective, isStandalone: true, providers: [{ provide: SEGMENTED_BUTTON_FIELD_TOKEN, useExisting: SegmentedButtonFieldDirective }, DestroyService], queries: [{ propertyName: "_segmentedButton", predicate: i0.forwardRef(function () { return SEGMENTED_BUTTON_TOKEN; }), descendants: true }], exportAs: ["etSegmentedButtonField"], ngImport: i0 });
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonFieldDirective, decorators: [{
|
|
30
|
+
type: Directive,
|
|
31
|
+
args: [{
|
|
32
|
+
standalone: true,
|
|
33
|
+
providers: [{ provide: SEGMENTED_BUTTON_FIELD_TOKEN, useExisting: SegmentedButtonFieldDirective }, DestroyService],
|
|
34
|
+
exportAs: 'etSegmentedButtonField',
|
|
35
|
+
}]
|
|
36
|
+
}], propDecorators: { _segmentedButton: [{
|
|
37
|
+
type: ContentChildren,
|
|
38
|
+
args: [forwardRef(() => SEGMENTED_BUTTON_TOKEN), { descendants: true }]
|
|
39
|
+
}] } });
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi1maWVsZC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2RpcmVjdGl2ZXMvc2VnbWVudGVkLWJ1dHRvbi1maWVsZC9zZWdtZW50ZWQtYnV0dG9uLWZpZWxkLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQW9CLGVBQWUsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakgsT0FBTyxFQUFFLHNCQUFzQixFQUFFLGNBQWMsRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdkYsT0FBTyxFQUFFLGFBQWEsRUFBRSxHQUFHLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUNoRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUV6RCxPQUFPLEVBQUUsc0JBQXNCLEVBQTRCLE1BQU0scUJBQXFCLENBQUM7O0FBRXZGLE1BQU0sQ0FBQyxNQUFNLDRCQUE0QixHQUFHLElBQUksY0FBYyxDQUM1RCwyQ0FBMkMsQ0FDNUMsQ0FBQztBQU9GLE1BQU0sT0FBTyw2QkFBNkI7SUFMMUM7UUFNVyxlQUFVLEdBQUcsTUFBTSxDQUEwQyxpQkFBaUIsQ0FBQyxDQUFDO1FBRWhGLGNBQVMsR0FBRyxzQkFBc0IsRUFBRSxDQUFDO0tBMEIvQztJQXJCQyxrQkFBa0I7UUFDaEIsSUFBSSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsRUFBRTtZQUMxQixPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQztZQUNsQixTQUFTLEVBQUUsMENBQTBDO1lBQ3JELFVBQVUsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQ25GLFNBQVMsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLEVBQy9FLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FDakQ7U0FDRixDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQztZQUNsQixTQUFTLEVBQUUsMkNBQTJDO1lBQ3RELFVBQVUsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQ25GLFNBQVMsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQ2hGLEdBQUcsQ0FBQyxDQUFDLFFBQVEsRUFBRSxFQUFFLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FDbkQ7U0FDRixDQUFDLENBQUM7SUFDTCxDQUFDOzswSEE1QlUsNkJBQTZCOzhHQUE3Qiw2QkFBNkIsaUNBSDdCLENBQUMsRUFBRSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsV0FBVyxFQUFFLDZCQUE2QixFQUFFLEVBQUUsY0FBYyxDQUFDLDhGQVFoRixzQkFBc0I7MkZBTDdDLDZCQUE2QjtrQkFMekMsU0FBUzttQkFBQztvQkFDVCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsV0FBVywrQkFBK0IsRUFBRSxFQUFFLGNBQWMsQ0FBQztvQkFDbEgsUUFBUSxFQUFFLHdCQUF3QjtpQkFDbkM7OEJBT1MsZ0JBQWdCO3NCQUR2QixlQUFlO3VCQUFDLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQyxFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFmdGVyQ29udGVudEluaXQsIENvbnRlbnRDaGlsZHJlbiwgRGlyZWN0aXZlLCBmb3J3YXJkUmVmLCBpbmplY3QsIEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzLCBEZXN0cm95U2VydmljZSwgVHlwZWRRdWVyeUxpc3QgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIG1hcCwgc3RhcnRXaXRoLCBzd2l0Y2hNYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElucHV0U3RhdGVTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vc2VydmljZXMnO1xuaW1wb3J0IHsgU2VnbWVudGVkQnV0dG9uVmFsdWUgfSBmcm9tICcuLi8uLi90eXBlcyc7XG5pbXBvcnQgeyBTRUdNRU5URURfQlVUVE9OX1RPS0VOLCBTZWdtZW50ZWRCdXR0b25EaXJlY3RpdmUgfSBmcm9tICcuLi9zZWdtZW50ZWQtYnV0dG9uJztcblxuZXhwb3J0IGNvbnN0IFNFR01FTlRFRF9CVVRUT05fRklFTERfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48U2VnbWVudGVkQnV0dG9uRmllbGREaXJlY3RpdmU+KFxuICAnRVRfU0VHTUVOVEVEX0JVVFRPTl9GSUVMRF9ESVJFQ1RJVkVfVE9LRU4nLFxuKTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogU0VHTUVOVEVEX0JVVFRPTl9GSUVMRF9UT0tFTiwgdXNlRXhpc3Rpbmc6IFNlZ21lbnRlZEJ1dHRvbkZpZWxkRGlyZWN0aXZlIH0sIERlc3Ryb3lTZXJ2aWNlXSxcbiAgZXhwb3J0QXM6ICdldFNlZ21lbnRlZEJ1dHRvbkZpZWxkJyxcbn0pXG5leHBvcnQgY2xhc3MgU2VnbWVudGVkQnV0dG9uRmllbGREaXJlY3RpdmUgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0IHtcbiAgcmVhZG9ubHkgaW5wdXRTdGF0ZSA9IGluamVjdDxJbnB1dFN0YXRlU2VydmljZTxTZWdtZW50ZWRCdXR0b25WYWx1ZT4+KElucHV0U3RhdGVTZXJ2aWNlKTtcblxuICByZWFkb25seSBfYmluZGluZ3MgPSBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzKCk7XG5cbiAgQENvbnRlbnRDaGlsZHJlbihmb3J3YXJkUmVmKCgpID0+IFNFR01FTlRFRF9CVVRUT05fVE9LRU4pLCB7IGRlc2NlbmRhbnRzOiB0cnVlIH0pXG4gIHByaXZhdGUgX3NlZ21lbnRlZEJ1dHRvbj86IFR5cGVkUXVlcnlMaXN0PFNlZ21lbnRlZEJ1dHRvbkRpcmVjdGl2ZT47XG5cbiAgbmdBZnRlckNvbnRlbnRJbml0KCk6IHZvaWQge1xuICAgIGlmICghdGhpcy5fc2VnbWVudGVkQnV0dG9uKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5fYmluZGluZ3MucHVzaCh7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1zZWdtZW50ZWQtYnV0dG9uLWZpZWxkLS1jaGVja2VkJyxcbiAgICAgIG9ic2VydmFibGU6IHRoaXMuX3NlZ21lbnRlZEJ1dHRvbi5jaGFuZ2VzLnBpcGUoc3RhcnRXaXRoKHRoaXMuX3NlZ21lbnRlZEJ1dHRvbikpLnBpcGUoXG4gICAgICAgIHN3aXRjaE1hcCgoYnV0dG9ucykgPT4gY29tYmluZUxhdGVzdChidXR0b25zLm1hcCgoYnV0dG9uKSA9PiBidXR0b24uY2hlY2tlZCQpKSksXG4gICAgICAgIG1hcCgoY2hlY2tlZCkgPT4gY2hlY2tlZC5zb21lKCh2YWx1ZSkgPT4gdmFsdWUpKSxcbiAgICAgICksXG4gICAgfSk7XG5cbiAgICB0aGlzLl9iaW5kaW5ncy5wdXNoKHtcbiAgICAgIGF0dHJpYnV0ZTogJ2NsYXNzLmV0LXNlZ21lbnRlZC1idXR0b24tZmllbGQtLWRpc2FibGVkJyxcbiAgICAgIG9ic2VydmFibGU6IHRoaXMuX3NlZ21lbnRlZEJ1dHRvbi5jaGFuZ2VzLnBpcGUoc3RhcnRXaXRoKHRoaXMuX3NlZ21lbnRlZEJ1dHRvbikpLnBpcGUoXG4gICAgICAgIHN3aXRjaE1hcCgoYnV0dG9ucykgPT4gY29tYmluZUxhdGVzdChidXR0b25zLm1hcCgoYnV0dG9uKSA9PiBidXR0b24uZGlzYWJsZWQkKSkpLFxuICAgICAgICBtYXAoKGRpc2FibGVkKSA9PiBkaXNhYmxlZC5zb21lKCh2YWx1ZSkgPT4gdmFsdWUpKSxcbiAgICAgICksXG4gICAgfSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button-group.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vZGlyZWN0aXZlcy9zZWdtZW50ZWQtYnV0dG9uLWdyb3VwL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQ0FBb0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi1ncm91cC5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { ContentChildren, Directive, forwardRef, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createFlipAnimation, createReactiveBindings, DestroyService, TypedQueryList } from '@ethlete/core';
|
|
3
|
+
import { combineLatest, map, pairwise, startWith, takeUntil, tap } from 'rxjs';
|
|
4
|
+
import { FormGroupStateService, InputStateService } from '../../../../services';
|
|
5
|
+
import { SEGMENTED_BUTTON_TOKEN } from '../public-api';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export const SEGMENTED_BUTTON_GROUP_TOKEN = new InjectionToken('ET_SEGMENTED_BUTTON_GROUP_DIRECTIVE_TOKEN');
|
|
8
|
+
let nextUniqueId = 0;
|
|
9
|
+
export class SegmentedButtonGroupDirective {
|
|
10
|
+
constructor() {
|
|
11
|
+
this._formGroupStateService = inject(FormGroupStateService);
|
|
12
|
+
this._inputStateService = inject(InputStateService);
|
|
13
|
+
this._destroy$ = inject(DestroyService, { host: true }).destroy$;
|
|
14
|
+
this.name = `et-segmented-button-group-${++nextUniqueId}`;
|
|
15
|
+
this._bindings = createReactiveBindings({
|
|
16
|
+
attribute: 'aria-labelledby',
|
|
17
|
+
observable: this._formGroupStateService.describedBy$.pipe(map((describedBy) => {
|
|
18
|
+
return {
|
|
19
|
+
render: !!describedBy,
|
|
20
|
+
value: `${describedBy}`,
|
|
21
|
+
};
|
|
22
|
+
})),
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
ngAfterContentInit() {
|
|
26
|
+
if (!this._segmentedButtons) {
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
combineLatest([
|
|
30
|
+
this._segmentedButtons.changes.pipe(startWith(this._segmentedButtons)),
|
|
31
|
+
this._inputStateService.value$.pipe(pairwise()),
|
|
32
|
+
])
|
|
33
|
+
.pipe(tap(([buttons, [prevValue, currValue]]) => {
|
|
34
|
+
const prevActiveIndicator = buttons.find((button) => button.value === prevValue);
|
|
35
|
+
const currActiveIndicator = buttons.find((button) => button.value === currValue);
|
|
36
|
+
if (!prevActiveIndicator ||
|
|
37
|
+
!currActiveIndicator ||
|
|
38
|
+
prevActiveIndicator === currActiveIndicator ||
|
|
39
|
+
!prevActiveIndicator.activeIndicatorElement ||
|
|
40
|
+
!currActiveIndicator.activeIndicatorElement) {
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
const flip = createFlipAnimation({
|
|
44
|
+
originElement: prevActiveIndicator.activeIndicatorElement,
|
|
45
|
+
element: currActiveIndicator.activeIndicatorElement,
|
|
46
|
+
});
|
|
47
|
+
flip.play();
|
|
48
|
+
}), takeUntil(this._destroy$))
|
|
49
|
+
.subscribe();
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
SegmentedButtonGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
53
|
+
SegmentedButtonGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: SegmentedButtonGroupDirective, isStandalone: true, host: { attributes: { "role": "group" } }, providers: [{ provide: SEGMENTED_BUTTON_GROUP_TOKEN, useExisting: SegmentedButtonGroupDirective }, DestroyService], queries: [{ propertyName: "_segmentedButtons", predicate: i0.forwardRef(function () { return SEGMENTED_BUTTON_TOKEN; }), descendants: true }], exportAs: ["etSegmentedButtonGroup"], ngImport: i0 });
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SegmentedButtonGroupDirective, decorators: [{
|
|
55
|
+
type: Directive,
|
|
56
|
+
args: [{
|
|
57
|
+
standalone: true,
|
|
58
|
+
providers: [{ provide: SEGMENTED_BUTTON_GROUP_TOKEN, useExisting: SegmentedButtonGroupDirective }, DestroyService],
|
|
59
|
+
exportAs: 'etSegmentedButtonGroup',
|
|
60
|
+
host: {
|
|
61
|
+
role: 'group',
|
|
62
|
+
},
|
|
63
|
+
}]
|
|
64
|
+
}], propDecorators: { _segmentedButtons: [{
|
|
65
|
+
type: ContentChildren,
|
|
66
|
+
args: [forwardRef(() => SEGMENTED_BUTTON_TOKEN), { descendants: true }]
|
|
67
|
+
}] } });
|
|
68
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi1ncm91cC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2RpcmVjdGl2ZXMvc2VnbWVudGVkLWJ1dHRvbi1ncm91cC9zZWdtZW50ZWQtYnV0dG9uLWdyb3VwLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQW9CLGVBQWUsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakgsT0FBTyxFQUFFLG1CQUFtQixFQUFFLHNCQUFzQixFQUFFLGNBQWMsRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDNUcsT0FBTyxFQUFFLGFBQWEsRUFBRSxHQUFHLEVBQUUsUUFBUSxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9FLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBRWhGLE9BQU8sRUFBRSxzQkFBc0IsRUFBNEIsTUFBTSxlQUFlLENBQUM7O0FBRWpGLE1BQU0sQ0FBQyxNQUFNLDRCQUE0QixHQUFHLElBQUksY0FBYyxDQUM1RCwyQ0FBMkMsQ0FDNUMsQ0FBQztBQUVGLElBQUksWUFBWSxHQUFHLENBQUMsQ0FBQztBQVVyQixNQUFNLE9BQU8sNkJBQTZCO0lBUjFDO1FBU21CLDJCQUFzQixHQUFHLE1BQU0sQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO1FBQ3ZELHVCQUFrQixHQUNqQyxNQUFNLENBQTZELGlCQUFpQixDQUFDLENBQUM7UUFDdkUsY0FBUyxHQUFHLE1BQU0sQ0FBQyxjQUFjLEVBQUUsRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxRQUFRLENBQUM7UUFFcEUsU0FBSSxHQUFHLDZCQUE2QixFQUFFLFlBQVksRUFBRSxDQUFDO1FBRXJELGNBQVMsR0FBRyxzQkFBc0IsQ0FBQztZQUMxQyxTQUFTLEVBQUUsaUJBQWlCO1lBQzVCLFVBQVUsRUFBRSxJQUFJLENBQUMsc0JBQXNCLENBQUMsWUFBWSxDQUFDLElBQUksQ0FDdkQsR0FBRyxDQUFDLENBQUMsV0FBVyxFQUFFLEVBQUU7Z0JBQ2xCLE9BQU87b0JBQ0wsTUFBTSxFQUFFLENBQUMsQ0FBQyxXQUFXO29CQUNyQixLQUFLLEVBQUUsR0FBRyxXQUFXLEVBQUU7aUJBQ3hCLENBQUM7WUFDSixDQUFDLENBQUMsQ0FDSDtTQUNGLENBQUMsQ0FBQztLQXdDSjtJQW5DQyxrQkFBa0I7UUFDaEIsSUFBSSxDQUFDLElBQUksQ0FBQyxpQkFBaUIsRUFBRTtZQUMzQixPQUFPO1NBQ1I7UUFFRCxhQUFhLENBQUM7WUFDWixJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUM7WUFDdEUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7U0FDaEQsQ0FBQzthQUNDLElBQUksQ0FDSCxHQUFHLENBQUMsQ0FBQyxDQUFDLE9BQU8sRUFBRSxDQUFDLFNBQVMsRUFBRSxTQUFTLENBQUMsQ0FBQyxFQUFFLEVBQUU7WUFDeEMsTUFBTSxtQkFBbUIsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxNQUFNLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQyxDQUFDO1lBQ2pGLE1BQU0sbUJBQW1CLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsTUFBTSxDQUFDLEtBQUssS0FBSyxTQUFTLENBQUMsQ0FBQztZQUVqRixJQUNFLENBQUMsbUJBQW1CO2dCQUNwQixDQUFDLG1CQUFtQjtnQkFDcEIsbUJBQW1CLEtBQUssbUJBQW1CO2dCQUMzQyxDQUFDLG1CQUFtQixDQUFDLHNCQUFzQjtnQkFDM0MsQ0FBQyxtQkFBbUIsQ0FBQyxzQkFBc0IsRUFDM0M7Z0JBQ0EsT0FBTzthQUNSO1lBRUQsTUFBTSxJQUFJLEdBQUcsbUJBQW1CLENBQUM7Z0JBQy9CLGFBQWEsRUFBRSxtQkFBbUIsQ0FBQyxzQkFBc0I7Z0JBQ3pELE9BQU8sRUFBRSxtQkFBbUIsQ0FBQyxzQkFBc0I7YUFDcEQsQ0FBQyxDQUFDO1lBRUgsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ2QsQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDOzswSEF6RFUsNkJBQTZCOzhHQUE3Qiw2QkFBNkIsNEVBTjdCLENBQUMsRUFBRSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsV0FBVyxFQUFFLDZCQUE2QixFQUFFLEVBQUUsY0FBYyxDQUFDLCtGQTBCaEYsc0JBQXNCOzJGQXBCN0MsNkJBQTZCO2tCQVJ6QyxTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxXQUFXLCtCQUErQixFQUFFLEVBQUUsY0FBYyxDQUFDO29CQUNsSCxRQUFRLEVBQUUsd0JBQXdCO29CQUNsQyxJQUFJLEVBQUU7d0JBQ0osSUFBSSxFQUFFLE9BQU87cUJBQ2Q7aUJBQ0Y7OEJBc0JTLGlCQUFpQjtzQkFEeEIsZUFBZTt1QkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsc0JBQXNCLENBQUMsRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBZnRlckNvbnRlbnRJbml0LCBDb250ZW50Q2hpbGRyZW4sIERpcmVjdGl2ZSwgZm9yd2FyZFJlZiwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgY3JlYXRlRmxpcEFuaW1hdGlvbiwgY3JlYXRlUmVhY3RpdmVCaW5kaW5ncywgRGVzdHJveVNlcnZpY2UsIFR5cGVkUXVlcnlMaXN0IH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBjb21iaW5lTGF0ZXN0LCBtYXAsIHBhaXJ3aXNlLCBzdGFydFdpdGgsIHRha2VVbnRpbCwgdGFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBGb3JtR3JvdXBTdGF0ZVNlcnZpY2UsIElucHV0U3RhdGVTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vc2VydmljZXMnO1xuaW1wb3J0IHsgU2VnbWVudGVkQnV0dG9uVmFsdWUgfSBmcm9tICcuLi8uLi90eXBlcyc7XG5pbXBvcnQgeyBTRUdNRU5URURfQlVUVE9OX1RPS0VOLCBTZWdtZW50ZWRCdXR0b25EaXJlY3RpdmUgfSBmcm9tICcuLi9wdWJsaWMtYXBpJztcblxuZXhwb3J0IGNvbnN0IFNFR01FTlRFRF9CVVRUT05fR1JPVVBfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48U2VnbWVudGVkQnV0dG9uR3JvdXBEaXJlY3RpdmU+KFxuICAnRVRfU0VHTUVOVEVEX0JVVFRPTl9HUk9VUF9ESVJFQ1RJVkVfVE9LRU4nLFxuKTtcblxubGV0IG5leHRVbmlxdWVJZCA9IDA7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFNFR01FTlRFRF9CVVRUT05fR1JPVVBfVE9LRU4sIHVzZUV4aXN0aW5nOiBTZWdtZW50ZWRCdXR0b25Hcm91cERpcmVjdGl2ZSB9LCBEZXN0cm95U2VydmljZV0sXG4gIGV4cG9ydEFzOiAnZXRTZWdtZW50ZWRCdXR0b25Hcm91cCcsXG4gIGhvc3Q6IHtcbiAgICByb2xlOiAnZ3JvdXAnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBTZWdtZW50ZWRCdXR0b25Hcm91cERpcmVjdGl2ZSBpbXBsZW1lbnRzIEFmdGVyQ29udGVudEluaXQge1xuICBwcml2YXRlIHJlYWRvbmx5IF9mb3JtR3JvdXBTdGF0ZVNlcnZpY2UgPSBpbmplY3QoRm9ybUdyb3VwU3RhdGVTZXJ2aWNlKTtcbiAgcHJpdmF0ZSByZWFkb25seSBfaW5wdXRTdGF0ZVNlcnZpY2UgPVxuICAgIGluamVjdDxJbnB1dFN0YXRlU2VydmljZTxTZWdtZW50ZWRCdXR0b25WYWx1ZSwgSFRNTEJ1dHRvbkVsZW1lbnQ+PihJbnB1dFN0YXRlU2VydmljZSk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kkID0gaW5qZWN0KERlc3Ryb3lTZXJ2aWNlLCB7IGhvc3Q6IHRydWUgfSkuZGVzdHJveSQ7XG5cbiAgcmVhZG9ubHkgbmFtZSA9IGBldC1zZWdtZW50ZWQtYnV0dG9uLWdyb3VwLSR7KytuZXh0VW5pcXVlSWR9YDtcblxuICByZWFkb25seSBfYmluZGluZ3MgPSBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzKHtcbiAgICBhdHRyaWJ1dGU6ICdhcmlhLWxhYmVsbGVkYnknLFxuICAgIG9ic2VydmFibGU6IHRoaXMuX2Zvcm1Hcm91cFN0YXRlU2VydmljZS5kZXNjcmliZWRCeSQucGlwZShcbiAgICAgIG1hcCgoZGVzY3JpYmVkQnkpID0+IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICByZW5kZXI6ICEhZGVzY3JpYmVkQnksXG4gICAgICAgICAgdmFsdWU6IGAke2Rlc2NyaWJlZEJ5fWAsXG4gICAgICAgIH07XG4gICAgICB9KSxcbiAgICApLFxuICB9KTtcblxuICBAQ29udGVudENoaWxkcmVuKGZvcndhcmRSZWYoKCkgPT4gU0VHTUVOVEVEX0JVVFRPTl9UT0tFTiksIHsgZGVzY2VuZGFudHM6IHRydWUgfSlcbiAgcHJpdmF0ZSBfc2VnbWVudGVkQnV0dG9ucz86IFR5cGVkUXVlcnlMaXN0PFNlZ21lbnRlZEJ1dHRvbkRpcmVjdGl2ZT47XG5cbiAgbmdBZnRlckNvbnRlbnRJbml0KCk6IHZvaWQge1xuICAgIGlmICghdGhpcy5fc2VnbWVudGVkQnV0dG9ucykge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbWJpbmVMYXRlc3QoW1xuICAgICAgdGhpcy5fc2VnbWVudGVkQnV0dG9ucy5jaGFuZ2VzLnBpcGUoc3RhcnRXaXRoKHRoaXMuX3NlZ21lbnRlZEJ1dHRvbnMpKSxcbiAgICAgIHRoaXMuX2lucHV0U3RhdGVTZXJ2aWNlLnZhbHVlJC5waXBlKHBhaXJ3aXNlKCkpLFxuICAgIF0pXG4gICAgICAucGlwZShcbiAgICAgICAgdGFwKChbYnV0dG9ucywgW3ByZXZWYWx1ZSwgY3VyclZhbHVlXV0pID0+IHtcbiAgICAgICAgICBjb25zdCBwcmV2QWN0aXZlSW5kaWNhdG9yID0gYnV0dG9ucy5maW5kKChidXR0b24pID0+IGJ1dHRvbi52YWx1ZSA9PT0gcHJldlZhbHVlKTtcbiAgICAgICAgICBjb25zdCBjdXJyQWN0aXZlSW5kaWNhdG9yID0gYnV0dG9ucy5maW5kKChidXR0b24pID0+IGJ1dHRvbi52YWx1ZSA9PT0gY3VyclZhbHVlKTtcblxuICAgICAgICAgIGlmIChcbiAgICAgICAgICAgICFwcmV2QWN0aXZlSW5kaWNhdG9yIHx8XG4gICAgICAgICAgICAhY3VyckFjdGl2ZUluZGljYXRvciB8fFxuICAgICAgICAgICAgcHJldkFjdGl2ZUluZGljYXRvciA9PT0gY3VyckFjdGl2ZUluZGljYXRvciB8fFxuICAgICAgICAgICAgIXByZXZBY3RpdmVJbmRpY2F0b3IuYWN0aXZlSW5kaWNhdG9yRWxlbWVudCB8fFxuICAgICAgICAgICAgIWN1cnJBY3RpdmVJbmRpY2F0b3IuYWN0aXZlSW5kaWNhdG9yRWxlbWVudFxuICAgICAgICAgICkge1xuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICAgIH1cblxuICAgICAgICAgIGNvbnN0IGZsaXAgPSBjcmVhdGVGbGlwQW5pbWF0aW9uKHtcbiAgICAgICAgICAgIG9yaWdpbkVsZW1lbnQ6IHByZXZBY3RpdmVJbmRpY2F0b3IuYWN0aXZlSW5kaWNhdG9yRWxlbWVudCxcbiAgICAgICAgICAgIGVsZW1lbnQ6IGN1cnJBY3RpdmVJbmRpY2F0b3IuYWN0aXZlSW5kaWNhdG9yRWxlbWVudCxcbiAgICAgICAgICB9KTtcblxuICAgICAgICAgIGZsaXAucGxheSgpO1xuICAgICAgICB9KSxcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kkKSxcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './directives';
|
|
3
|
+
export * from './segmented-button.imports';
|
|
4
|
+
export * from './types';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcyc7XG5leHBvcnQgKiBmcm9tICcuL3NlZ21lbnRlZC1idXR0b24uaW1wb3J0cyc7XG5leHBvcnQgKiBmcm9tICcuL3R5cGVzJztcbiJdfQ==
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SegmentedButtonComponent, SegmentedButtonFieldComponent, SegmentedButtonGroupComponent } from './components';
|
|
2
|
+
export const SegmentedButtonImports = [
|
|
3
|
+
SegmentedButtonComponent,
|
|
4
|
+
SegmentedButtonFieldComponent,
|
|
5
|
+
SegmentedButtonGroupComponent,
|
|
6
|
+
];
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi5pbXBvcnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvc2VnbWVudGVkLWJ1dHRvbi9zZWdtZW50ZWQtYnV0dG9uLmltcG9ydHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHdCQUF3QixFQUFFLDZCQUE2QixFQUFFLDZCQUE2QixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRXRILE1BQU0sQ0FBQyxNQUFNLHNCQUFzQixHQUFHO0lBQ3BDLHdCQUF3QjtJQUN4Qiw2QkFBNkI7SUFDN0IsNkJBQTZCO0NBQ3JCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTZWdtZW50ZWRCdXR0b25Db21wb25lbnQsIFNlZ21lbnRlZEJ1dHRvbkZpZWxkQ29tcG9uZW50LCBTZWdtZW50ZWRCdXR0b25Hcm91cENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5cbmV4cG9ydCBjb25zdCBTZWdtZW50ZWRCdXR0b25JbXBvcnRzID0gW1xuICBTZWdtZW50ZWRCdXR0b25Db21wb25lbnQsXG4gIFNlZ21lbnRlZEJ1dHRvbkZpZWxkQ29tcG9uZW50LFxuICBTZWdtZW50ZWRCdXR0b25Hcm91cENvbXBvbmVudCxcbl0gYXMgY29uc3Q7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL3R5cGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './segmented-button.types';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vdHlwZXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zZWdtZW50ZWQtYnV0dG9uLnR5cGVzJztcbiJdfQ==
|
package/esm2020/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VnbWVudGVkLWJ1dHRvbi50eXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlZ21lbnRlZC1idXR0b24vdHlwZXMvc2VnbWVudGVkLWJ1dHRvbi50eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgU2VnbWVudGVkQnV0dG9uVmFsdWUgPSBzdHJpbmcgfCBudW1iZXIgfCBib29sZWFuIHwgbnVsbDtcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWxlY3QvY29tcG9uZW50cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AsyncPipe, NgForOf, NgTemplateOutlet } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { DestroyService } from '@ethlete/core';
|
|
4
|
+
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
5
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
6
|
+
import { NativeSelectInputDirective as NativeSelectDirective, NATIVE_SELECT_INPUT_TOKEN } from '../../directives';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/native-select-input/native-select-input.directive";
|
|
9
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
10
|
+
export class NativeSelectInputComponent extends DecoratedInputBase {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.select = inject(NATIVE_SELECT_INPUT_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
NativeSelectInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NativeSelectInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
NativeSelectInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: NativeSelectInputComponent, isStandalone: true, selector: "et-native-select", host: { classAttribute: "et-native-select" }, providers: [DestroyService], usesInheritance: true, hostDirectives: [{ directive: i1.NativeSelectInputDirective }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete"] }], ngImport: i0, template: "<ng-template>\n <ng-content select=\"et-native-select-option\" />\n</ng-template>\n\n<ng-content select=\"[etInputPrefix]\" />\n\n<select\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"select._onInputInteraction($event)\"\n (blur)=\"select._controlTouched()\"\n class=\"et-native-select-native-input\"\n etNativeInputRef\n>\n <option\n *ngFor=\"let option of select.options; trackBy: select._trackByFn\"\n [value]=\"option.value\"\n [disabled]=\"option.disabled\"\n [attr.selected]=\"option.value === input.value ? '' : null\"\n [attr.hidden]=\"option.hidden ? '' : null\"\n class=\"et-native-select-native-option\"\n >\n <ng-container *ngTemplateOutlet=\"option.textTemplate$ | async\" />\n </option>\n</select>\n\n<ng-content select=\"[etInputSuffix]\" />\n", dependencies: [{ kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }, { kind: "directive", type: NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NativeSelectInputComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'et-native-select', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
+
class: 'et-native-select',
|
|
22
|
+
}, providers: [DestroyService], imports: [NativeInputRefDirective, NgForOf, NgTemplateOutlet, AsyncPipe], hostDirectives: [NativeSelectDirective, { directive: InputDirective, inputs: ['autocomplete'] }], template: "<ng-template>\n <ng-content select=\"et-native-select-option\" />\n</ng-template>\n\n<ng-content select=\"[etInputPrefix]\" />\n\n<select\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"select._onInputInteraction($event)\"\n (blur)=\"select._controlTouched()\"\n class=\"et-native-select-native-input\"\n etNativeInputRef\n>\n <option\n *ngFor=\"let option of select.options; trackBy: select._trackByFn\"\n [value]=\"option.value\"\n [disabled]=\"option.disabled\"\n [attr.selected]=\"option.value === input.value ? '' : null\"\n [attr.hidden]=\"option.hidden ? '' : null\"\n class=\"et-native-select-native-option\"\n >\n <ng-container *ngTemplateOutlet=\"option.textTemplate$ | async\" />\n </option>\n</select>\n\n<ng-content select=\"[etInputSuffix]\" />\n" }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF0aXZlLXNlbGVjdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWxlY3QvY29tcG9uZW50cy9uYXRpdmUtc2VsZWN0L25hdGl2ZS1zZWxlY3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvc2VsZWN0L2NvbXBvbmVudHMvbmF0aXZlLXNlbGVjdC9uYXRpdmUtc2VsZWN0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDdkUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMvQyxPQUFPLEVBQUUsY0FBYyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDakYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDdkQsT0FBTyxFQUFFLDBCQUEwQixJQUFJLHFCQUFxQixFQUFFLHlCQUF5QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7QUFlbEgsTUFBTSxPQUFPLDBCQUEyQixTQUFRLGtCQUFrQjtJQWJsRTs7UUFjcUIsV0FBTSxHQUFHLE1BQU0sQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDO0tBQy9EOzt1SEFGWSwwQkFBMEI7MkdBQTFCLDBCQUEwQiw2R0FKMUIsQ0FBQyxjQUFjLENBQUMsNkxDaEI3QixzZ0NBK0JBLDRDRGRZLHVCQUF1QixvSkFBRSxPQUFPLG1IQUFFLGdCQUFnQiwrSUFBRSxTQUFTOzJGQUc1RCwwQkFBMEI7a0JBYnRDLFNBQVM7K0JBQ0Usa0JBQWtCLGNBRWhCLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsa0JBQWtCO3FCQUMxQixhQUNVLENBQUMsY0FBYyxDQUFDLFdBQ2xCLENBQUMsdUJBQXVCLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFNBQVMsQ0FBQyxrQkFDeEQsQ0FBQyxxQkFBcUIsRUFBRSxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsY0FBYyxDQUFDLEVBQUUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzeW5jUGlwZSwgTmdGb3JPZiwgTmdUZW1wbGF0ZU91dGxldCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgSW5wdXREaXJlY3RpdmUsIE5hdGl2ZUlucHV0UmVmRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBEZWNvcmF0ZWRJbnB1dEJhc2UgfSBmcm9tICcuLi8uLi8uLi8uLi91dGlscyc7XG5pbXBvcnQgeyBOYXRpdmVTZWxlY3RJbnB1dERpcmVjdGl2ZSBhcyBOYXRpdmVTZWxlY3REaXJlY3RpdmUsIE5BVElWRV9TRUxFQ1RfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtbmF0aXZlLXNlbGVjdCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9uYXRpdmUtc2VsZWN0LmNvbXBvbmVudC5odG1sJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LW5hdGl2ZS1zZWxlY3QnLFxuICB9LFxuICBwcm92aWRlcnM6IFtEZXN0cm95U2VydmljZV0sXG4gIGltcG9ydHM6IFtOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZSwgTmdGb3JPZiwgTmdUZW1wbGF0ZU91dGxldCwgQXN5bmNQaXBlXSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtOYXRpdmVTZWxlY3REaXJlY3RpdmUsIHsgZGlyZWN0aXZlOiBJbnB1dERpcmVjdGl2ZSwgaW5wdXRzOiBbJ2F1dG9jb21wbGV0ZSddIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBOYXRpdmVTZWxlY3RJbnB1dENvbXBvbmVudCBleHRlbmRzIERlY29yYXRlZElucHV0QmFzZSB7XG4gIHByb3RlY3RlZCByZWFkb25seSBzZWxlY3QgPSBpbmplY3QoTkFUSVZFX1NFTEVDVF9JTlBVVF9UT0tFTik7XG59XG4iLCI8bmctdGVtcGxhdGU+XG4gIDxuZy1jb250ZW50IHNlbGVjdD1cImV0LW5hdGl2ZS1zZWxlY3Qtb3B0aW9uXCIgLz5cbjwvbmctdGVtcGxhdGU+XG5cbjxuZy1jb250ZW50IHNlbGVjdD1cIltldElucHV0UHJlZml4XVwiIC8+XG5cbjxzZWxlY3RcbiAgW2F0dHIuaWRdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiaW5wdXQubGFiZWxJZCQgfCBhc3luY1wiXG4gIFtyZXF1aXJlZF09XCJpbnB1dC5yZXF1aXJlZCQgfCBhc3luY1wiXG4gIFtkaXNhYmxlZF09XCJpbnB1dC5kaXNhYmxlZCQgfCBhc3luY1wiXG4gIFthdHRyLmF1dG9jb21wbGV0ZV09XCJpbnB1dC5hdXRvY29tcGxldGUgfHwgbnVsbFwiXG4gIFthdHRyLmFyaWEtZGVzY3JpYmVkYnldPVwiaW5wdXQuZGVzY3JpYmVkQnkkIHwgYXN5bmNcIlxuICAoaW5wdXQpPVwic2VsZWN0Ll9vbklucHV0SW50ZXJhY3Rpb24oJGV2ZW50KVwiXG4gIChibHVyKT1cInNlbGVjdC5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtbmF0aXZlLXNlbGVjdC1uYXRpdmUtaW5wdXRcIlxuICBldE5hdGl2ZUlucHV0UmVmXG4+XG4gIDxvcHRpb25cbiAgICAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIHNlbGVjdC5vcHRpb25zOyB0cmFja0J5OiBzZWxlY3QuX3RyYWNrQnlGblwiXG4gICAgW3ZhbHVlXT1cIm9wdGlvbi52YWx1ZVwiXG4gICAgW2Rpc2FibGVkXT1cIm9wdGlvbi5kaXNhYmxlZFwiXG4gICAgW2F0dHIuc2VsZWN0ZWRdPVwib3B0aW9uLnZhbHVlID09PSBpbnB1dC52YWx1ZSA/ICcnIDogbnVsbFwiXG4gICAgW2F0dHIuaGlkZGVuXT1cIm9wdGlvbi5oaWRkZW4gPyAnJyA6IG51bGxcIlxuICAgIGNsYXNzPVwiZXQtbmF0aXZlLXNlbGVjdC1uYXRpdmUtb3B0aW9uXCJcbiAgPlxuICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJvcHRpb24udGV4dFRlbXBsYXRlJCB8IGFzeW5jXCIgLz5cbiAgPC9vcHRpb24+XG48L3NlbGVjdD5cblxuPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2V0SW5wdXRTdWZmaXhdXCIgLz5cbiJdfQ==
|
package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './native-select.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlbGVjdC9jb21wb25lbnRzL25hdGl2ZS1zZWxlY3QvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9uYXRpdmUtc2VsZWN0LmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, inject, TemplateRef, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
import { NativeSelectOptionDirective } from '../../directives';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../directives/native-select-option/native-select-option.directive";
|
|
5
|
+
export class NativeSelectOptionComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.option = inject(NativeSelectOptionDirective);
|
|
8
|
+
}
|
|
9
|
+
ngOnInit() {
|
|
10
|
+
this.option._setTextTemplate(this.textTpl ?? null);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
NativeSelectOptionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NativeSelectOptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
+
NativeSelectOptionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: NativeSelectOptionComponent, isStandalone: true, selector: "et-native-select-option", host: { classAttribute: "et-native-select-option" }, viewQueries: [{ propertyName: "textTpl", first: true, predicate: ["textTpl"], descendants: true, static: true }], hostDirectives: [{ directive: i1.NativeSelectOptionDirective, inputs: ["value", "value", "disabled", "disabled", "hidden", "hidden"] }], ngImport: i0, template: ` <ng-template #textTpl> <ng-content /></ng-template> `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NativeSelectOptionComponent, decorators: [{
|
|
16
|
+
type: Component,
|
|
17
|
+
args: [{
|
|
18
|
+
selector: 'et-native-select-option',
|
|
19
|
+
template: ` <ng-template #textTpl> <ng-content /></ng-template> `,
|
|
20
|
+
standalone: true,
|
|
21
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
22
|
+
encapsulation: ViewEncapsulation.None,
|
|
23
|
+
host: {
|
|
24
|
+
class: 'et-native-select-option',
|
|
25
|
+
},
|
|
26
|
+
hostDirectives: [{ directive: NativeSelectOptionDirective, inputs: ['value', 'disabled', 'hidden'] }],
|
|
27
|
+
}]
|
|
28
|
+
}], propDecorators: { textTpl: [{
|
|
29
|
+
type: ViewChild,
|
|
30
|
+
args: ['textTpl', { static: true }]
|
|
31
|
+
}] } });
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF0aXZlLXNlbGVjdC1vcHRpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvc2VsZWN0L2NvbXBvbmVudHMvbmF0aXZlLXNlbGVjdC1vcHRpb24vbmF0aXZlLXNlbGVjdC1vcHRpb24uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULE1BQU0sRUFFTixXQUFXLEVBQ1gsU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7O0FBYS9ELE1BQU0sT0FBTywyQkFBMkI7SUFYeEM7UUFZcUIsV0FBTSxHQUFHLE1BQU0sQ0FBQywyQkFBMkIsQ0FBQyxDQUFDO0tBUWpFO0lBSEMsUUFBUTtRQUNOLElBQUksQ0FBQyxNQUFNLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLE9BQU8sSUFBSSxJQUFJLENBQUMsQ0FBQztJQUNyRCxDQUFDOzt3SEFSVSwyQkFBMkI7NEdBQTNCLDJCQUEyQixtWUFUNUIsdURBQXVEOzJGQVN0RCwyQkFBMkI7a0JBWHZDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHlCQUF5QjtvQkFDbkMsUUFBUSxFQUFFLHVEQUF1RDtvQkFDakUsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSx5QkFBeUI7cUJBQ2pDO29CQUNELGNBQWMsRUFBRSxDQUFDLEVBQUUsU0FBUyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sRUFBRSxDQUFDLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxDQUFDLEVBQUUsQ0FBQztpQkFDdEc7OEJBS0MsT0FBTztzQkFETixTQUFTO3VCQUFDLFNBQVMsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBpbmplY3QsXG4gIE9uSW5pdCxcbiAgVGVtcGxhdGVSZWYsXG4gIFZpZXdDaGlsZCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTmF0aXZlU2VsZWN0T3B0aW9uRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LW5hdGl2ZS1zZWxlY3Qtb3B0aW9uJyxcbiAgdGVtcGxhdGU6IGAgPG5nLXRlbXBsYXRlICN0ZXh0VHBsPiA8bmctY29udGVudCAvPjwvbmctdGVtcGxhdGU+IGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1uYXRpdmUtc2VsZWN0LW9wdGlvbicsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IE5hdGl2ZVNlbGVjdE9wdGlvbkRpcmVjdGl2ZSwgaW5wdXRzOiBbJ3ZhbHVlJywgJ2Rpc2FibGVkJywgJ2hpZGRlbiddIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBOYXRpdmVTZWxlY3RPcHRpb25Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgb3B0aW9uID0gaW5qZWN0KE5hdGl2ZVNlbGVjdE9wdGlvbkRpcmVjdGl2ZSk7XG5cbiAgQFZpZXdDaGlsZCgndGV4dFRwbCcsIHsgc3RhdGljOiB0cnVlIH0pXG4gIHRleHRUcGw/OiBUZW1wbGF0ZVJlZjx1bmtub3duPjtcblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLm9wdGlvbi5fc2V0VGV4dFRlbXBsYXRlKHRoaXMudGV4dFRwbCA/PyBudWxsKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './native-select-option.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlbGVjdC9jb21wb25lbnRzL25hdGl2ZS1zZWxlY3Qtb3B0aW9uL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbmF0aXZlLXNlbGVjdC1vcHRpb24uY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './native-select-option/public-api';
|
|
2
|
+
export * from './native-select/public-api';
|
|
3
|
+
export * from './select-field/public-api';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlbGVjdC9jb21wb25lbnRzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL25hdGl2ZS1zZWxlY3Qtb3B0aW9uL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9uYXRpdmUtc2VsZWN0L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9zZWxlY3QtZmllbGQvcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './select-field.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3NlbGVjdC9jb21wb25lbnRzL3NlbGVjdC1maWVsZC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NlbGVjdC1maWVsZC5jb21wb25lbnQnO1xuIl19
|