@ethlete/cdk 2.3.1 → 2.3.3
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 +12 -0
- package/esm2022/lib/components/accordion/components/accordion/accordion.component.mjs +87 -0
- package/esm2022/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +60 -0
- package/esm2022/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +18 -0
- package/esm2022/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +21 -0
- package/esm2022/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +18 -0
- package/esm2022/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +21 -0
- package/esm2022/lib/components/bracket/components/bracket/bracket.component.mjs +343 -0
- package/esm2022/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +20 -0
- package/esm2022/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +20 -0
- package/esm2022/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +20 -0
- package/esm2022/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +20 -0
- package/esm2022/lib/components/button/components/button/button.component.mjs +19 -0
- package/esm2022/lib/components/button/components/query-button/query-button.component.mjs +26 -0
- package/esm2022/lib/components/button/directives/button/button.directive.mjs +83 -0
- package/esm2022/lib/components/button/directives/query-button/query-button.directive.mjs +110 -0
- package/esm2022/lib/components/forms/components/checkbox/checkbox.imports.mjs +11 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +6 -5
- package/esm2022/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +55 -0
- package/esm2022/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +18 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +45 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +37 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +84 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +39 -0
- package/esm2022/lib/components/forms/components/error/components/error/error.component.mjs +57 -0
- package/esm2022/lib/components/forms/components/input/components/email-input/email-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/input-field/input-field.component.mjs +58 -0
- package/esm2022/lib/components/forms/components/input/components/number-input/number-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/password-input/password-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/search-input/search-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/text-input/text-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +43 -0
- package/esm2022/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +52 -0
- package/esm2022/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +51 -0
- package/esm2022/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +52 -0
- package/esm2022/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +55 -0
- package/esm2022/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +55 -0
- package/esm2022/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +51 -0
- package/esm2022/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +51 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/input/input.imports.mjs +3 -1
- package/esm2022/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/label/components/label/label.component.mjs +52 -0
- package/esm2022/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +34 -0
- package/esm2022/lib/components/forms/components/label/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/radio/components/radio/radio.component.mjs +28 -0
- package/esm2022/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +36 -0
- package/esm2022/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +44 -0
- package/esm2022/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +64 -0
- package/esm2022/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +41 -0
- package/esm2022/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +37 -0
- package/esm2022/lib/components/forms/components/radio/radio.imports.mjs +4 -0
- package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +38 -0
- package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +26 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +8 -7
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +74 -0
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +41 -0
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +69 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/native-select/native-select.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/native-select/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-input/native-select-input.directive.mjs +59 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-input/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/native-select-option.directive.mjs +57 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/public-api.mjs +3 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/native-select.imports.mjs +17 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/native-select-option/native-select-option.component.mjs +33 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/native-select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/public-api.mjs +6 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/types/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/types/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/types/select.types.mjs +2 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/select/components/public-api.mjs +2 -2
- package/esm2022/lib/components/forms/components/select/components/select/components/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/components/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/components/select/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/components/select/select.component.mjs +49 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/public-api.mjs +4 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-body/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.mjs +18 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-option/select-option.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/tree-select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/tree-select-option/tree-select-option.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/select/components/select/public-api.mjs +4 -0
- package/esm2022/lib/components/forms/components/select/components/select/select.imports.mjs +15 -0
- package/esm2022/lib/components/forms/components/select/components/select-field/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select-field/select-field.component.mjs +54 -0
- package/esm2022/lib/components/forms/components/select/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +52 -0
- package/esm2022/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +41 -0
- package/esm2022/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +4 -0
- package/esm2022/lib/components/forms/components/slider/components/slider/slider.component.mjs +343 -0
- package/esm2022/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +52 -0
- package/esm2022/lib/components/forms/components/slider/slider.imports.mjs +4 -0
- package/esm2022/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +43 -0
- package/esm2022/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +43 -0
- package/esm2022/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +41 -0
- package/esm2022/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +41 -0
- package/esm2022/lib/components/forms/directives/input/input.directive.mjs +234 -0
- package/esm2022/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +31 -0
- package/esm2022/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +31 -0
- package/esm2022/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +20 -0
- package/esm2022/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +77 -0
- package/esm2022/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +30 -0
- package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +70 -0
- package/esm2022/lib/components/forms/services/default-validator-errors.service.mjs +52 -0
- package/esm2022/lib/components/forms/services/form-field-state.service.mjs +25 -0
- package/esm2022/lib/components/forms/services/form-group-state.service.mjs +22 -0
- package/esm2022/lib/components/forms/services/input-state.service.mjs +36 -0
- package/esm2022/lib/components/forms/utils/decorated-form-field.base.mjs +23 -0
- package/esm2022/lib/components/forms/utils/decorated-input.base.mjs +45 -0
- package/esm2022/lib/components/forms/utils/input.base.mjs +21 -0
- package/esm2022/lib/components/icons/chevron-icon/chevron-icon.component.mjs +37 -0
- package/esm2022/lib/components/masonry/components/masonry/masonry.component.mjs +205 -0
- package/esm2022/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +75 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +52 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +44 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +104 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +50 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +114 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +49 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +32 -0
- package/esm2022/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +52 -0
- package/esm2022/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +65 -0
- package/esm2022/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +44 -0
- package/esm2022/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +50 -0
- package/esm2022/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +110 -0
- package/esm2022/lib/components/overlay/components/dialog/services/dialog.service.mjs +32 -0
- package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/dialog-ref.mjs +2 -2
- package/esm2022/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +63 -0
- package/esm2022/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +131 -0
- package/esm2022/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +61 -0
- package/esm2022/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +165 -0
- package/esm2022/lib/components/overlay/services/dynamic-overlay.service.mjs +30 -0
- package/esm2022/lib/components/pagination/components/pagination/pagination.component.mjs +106 -0
- package/esm2022/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +33 -0
- package/esm2022/lib/components/pagination/services/pagination-head.service.mjs +60 -0
- package/esm2022/lib/components/picture/picture-data.directive.mjs +56 -0
- package/esm2022/lib/components/picture/picture.component.mjs +41 -0
- package/esm2022/lib/components/progress-spinner/progress-spinner.component.mjs +106 -0
- package/esm2022/lib/components/scrollable/components/scrollable/scrollable.component.mjs +130 -0
- package/{esm2020 → esm2022}/lib/components/skeleton/components/skeleton/skeleton.component.mjs +6 -5
- package/esm2022/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +20 -0
- package/esm2022/lib/components/sort/components/sort-header/sort-header.component.mjs +225 -0
- package/esm2022/lib/components/sort/partials/sort/sort.directive.mjs +158 -0
- package/esm2022/lib/components/sort/services/sort-header-intl.mjs +24 -0
- package/esm2022/lib/components/table/components/table/table.component.mjs +142 -0
- package/esm2022/lib/components/table/partials/cells/cell/cell.directive.mjs +19 -0
- package/esm2022/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +17 -0
- package/esm2022/lib/components/table/partials/cells/column-def/column-def.directive.mjs +45 -0
- package/esm2022/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +19 -0
- package/esm2022/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +17 -0
- package/esm2022/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +20 -0
- package/esm2022/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +17 -0
- package/{esm2020 → esm2022}/lib/components/table/partials/cells/text-column/text-column.component.mjs +8 -7
- package/esm2022/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/header-row/header-row.component.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +21 -0
- package/esm2022/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +17 -0
- package/esm2022/lib/components/table/partials/rows/row/row.component.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/row-def/row-def.directive.mjs +27 -0
- package/esm2022/lib/components/table/partials/table-busy/table-busy.directive.mjs +19 -0
- package/esm2022/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +16 -0
- package/esm2022/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +274 -0
- package/esm2022/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +91 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +101 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +136 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +26 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +23 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +44 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +31 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +49 -0
- package/esm2022/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +204 -0
- package/esm2022/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +38 -0
- package/esm2022/lib/components/tabs/utils/active-tab-underline.util.mjs +112 -0
- package/esm2022/lib/components/tabs/utils/paginated-tab-header.directive.mjs +284 -0
- package/esm2022/lib/services/swipe-handler.service.mjs +89 -0
- package/{fesm2020 → fesm2022}/ethlete-cdk.mjs +1010 -1026
- package/fesm2022/ethlete-cdk.mjs.map +1 -0
- package/lib/components/accordion/components/accordion/accordion.component.d.ts +1 -1
- package/lib/components/accordion/components/accordion-group/accordion-group.component.d.ts +1 -1
- package/lib/components/bracket/components/bracket/bracket.component.d.ts +1 -1
- package/lib/components/button/directives/button/button.directive.d.ts +1 -1
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +1 -1
- package/lib/components/forms/components/checkbox/checkbox.imports.d.ts +2 -1
- package/lib/components/forms/components/error/components/error/error.component.d.ts +1 -1
- package/lib/components/forms/components/input/components/textarea-input/textarea-input.component.d.ts +1 -1
- package/lib/components/forms/components/input/input.imports.d.ts +2 -1
- package/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.d.ts +1 -1
- package/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.d.ts +1 -1
- package/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.d.ts +1 -1
- package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +1 -1
- package/lib/components/forms/components/radio/radio.imports.d.ts +2 -1
- package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +1 -1
- package/lib/components/forms/components/select/components/native-select/{native-select.component.d.ts → components/native-select/native-select.component.d.ts} +4 -4
- package/lib/components/forms/components/select/components/native-select/components/native-select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-input/native-select-input.directive.d.ts +1 -1
- package/lib/components/forms/components/select/components/native-select/directives/native-select-option/index.d.ts +1 -0
- package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-option/native-select-option.directive.d.ts +1 -1
- package/lib/components/forms/components/select/{native-select.imports.d.ts → components/native-select/native-select.imports.d.ts} +6 -3
- package/lib/components/forms/components/select/components/native-select/partials/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/partials/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/public-api.d.ts +5 -1
- package/lib/components/forms/components/select/components/native-select/types/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/public-api.d.ts +1 -1
- package/lib/components/forms/components/select/components/select/components/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/components/select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/components/select/select.component.d.ts +17 -0
- package/lib/components/forms/components/select/components/select/partials/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select/partials/select-body/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.d.ts +7 -0
- package/lib/components/forms/components/select/components/select/partials/select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/select-option/select-option.component.d.ts +5 -0
- package/lib/components/forms/components/select/components/select/partials/tree-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/tree-select-option/tree-select-option.component.d.ts +5 -0
- package/lib/components/forms/components/select/components/select/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select/select.imports.d.ts +6 -0
- package/lib/components/forms/components/select/components/select-field/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/select-field/select-field.component.d.ts +1 -1
- package/lib/components/forms/components/select/public-api.d.ts +0 -3
- package/lib/components/forms/components/slide-toggle/slide-toggle.imports.d.ts +2 -1
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +1 -1
- package/lib/components/forms/components/slider/slider.imports.d.ts +2 -1
- package/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +1 -1
- package/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.d.ts +1 -1
- package/lib/components/forms/directives/input/input.directive.d.ts +1 -1
- package/lib/components/masonry/components/masonry/masonry.component.d.ts +1 -1
- package/lib/components/masonry/partials/masonry-item/masonry-item.component.d.ts +1 -1
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.d.ts +1 -1
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.d.ts +1 -1
- package/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.d.ts +1 -1
- package/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.d.ts +1 -1
- package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +11 -18
- package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +6 -17
- package/lib/components/pagination/components/pagination/pagination.component.d.ts +1 -1
- package/lib/components/pagination/partials/pagination-link/pagination-link.directive.d.ts +1 -1
- package/lib/components/picture/picture-data.directive.d.ts +1 -1
- package/lib/components/picture/picture.component.d.ts +1 -1
- package/lib/components/progress-spinner/progress-spinner.component.d.ts +1 -1
- package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +1 -1
- package/lib/components/skeleton/components/skeleton/skeleton.component.d.ts +1 -1
- package/lib/components/sort/components/sort-header/sort-header.component.d.ts +1 -1
- package/lib/components/sort/partials/sort/sort.directive.d.ts +1 -1
- package/lib/components/table/components/table/table.component.d.ts +1 -1
- package/lib/components/table/partials/cells/column-def/column-def.directive.d.ts +1 -1
- package/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.d.ts +1 -1
- package/lib/components/table/partials/rows/header-row-def/header-row-def.directive.d.ts +1 -1
- package/lib/components/table/partials/rows/row-def/row-def.directive.d.ts +1 -1
- package/lib/components/tabs/components/inline-tabs/inline-tabs.component.d.ts +1 -1
- package/lib/components/tabs/components/nav-tabs/nav-tabs.component.d.ts +1 -1
- package/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.d.ts +1 -1
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.d.ts +1 -1
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.d.ts +1 -1
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.d.ts +1 -1
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.d.ts +1 -1
- package/lib/components/tabs/utils/active-tab-underline.util.d.ts +1 -1
- package/lib/components/tabs/utils/paginated-tab-header.directive.d.ts +2 -3
- package/package.json +11 -18
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.mjs +0 -86
- package/esm2020/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +0 -53
- package/esm2020/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +0 -17
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +0 -20
- package/esm2020/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +0 -17
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +0 -20
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.mjs +0 -342
- package/esm2020/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +0 -19
- package/esm2020/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +0 -19
- package/esm2020/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +0 -19
- package/esm2020/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +0 -19
- package/esm2020/lib/components/button/components/button/button.component.mjs +0 -18
- package/esm2020/lib/components/button/components/query-button/query-button.component.mjs +0 -25
- package/esm2020/lib/components/button/directives/button/button.directive.mjs +0 -83
- package/esm2020/lib/components/button/directives/query-button/query-button.directive.mjs +0 -110
- package/esm2020/lib/components/forms/components/checkbox/checkbox.imports.mjs +0 -9
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +0 -54
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +0 -18
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +0 -44
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +0 -36
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +0 -80
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +0 -38
- package/esm2020/lib/components/forms/components/error/components/error/error.component.mjs +0 -56
- package/esm2020/lib/components/forms/components/input/components/email-input/email-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/input-field/input-field.component.mjs +0 -57
- package/esm2020/lib/components/forms/components/input/components/number-input/number-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/password-input/password-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/search-input/search-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +0 -43
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +0 -52
- package/esm2020/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +0 -50
- package/esm2020/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +0 -51
- package/esm2020/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +0 -54
- package/esm2020/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +0 -54
- package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +0 -50
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +0 -50
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +0 -22
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +0 -22
- package/esm2020/lib/components/forms/components/label/components/label/label.component.mjs +0 -51
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +0 -33
- package/esm2020/lib/components/forms/components/radio/components/radio/radio.component.mjs +0 -27
- package/esm2020/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +0 -35
- package/esm2020/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +0 -43
- package/esm2020/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +0 -63
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +0 -40
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +0 -36
- package/esm2020/lib/components/forms/components/radio/radio.imports.mjs +0 -3
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +0 -37
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +0 -25
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +0 -73
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +0 -40
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +0 -68
- package/esm2020/lib/components/forms/components/select/components/native-select/native-select.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/components/native-select-option/native-select-option.component.mjs +0 -32
- package/esm2020/lib/components/forms/components/select/components/native-select-option/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/components/select-field/select-field.component.mjs +0 -53
- package/esm2020/lib/components/forms/components/select/directives/index.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.mjs +0 -58
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/index.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.mjs +0 -56
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/public-api.mjs +0 -3
- package/esm2020/lib/components/forms/components/select/native-select.imports.mjs +0 -13
- package/esm2020/lib/components/forms/components/select/public-api.mjs +0 -5
- package/esm2020/lib/components/forms/components/select/types/index.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/types/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/types/select.types.mjs +0 -2
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +0 -23
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +0 -51
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +0 -40
- package/esm2020/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +0 -3
- package/esm2020/lib/components/forms/components/slider/components/slider/slider.component.mjs +0 -342
- package/esm2020/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +0 -51
- package/esm2020/lib/components/forms/components/slider/slider.imports.mjs +0 -3
- package/esm2020/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +0 -42
- package/esm2020/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +0 -42
- package/esm2020/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +0 -41
- package/esm2020/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +0 -41
- package/esm2020/lib/components/forms/directives/input/input.directive.mjs +0 -233
- package/esm2020/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +0 -30
- package/esm2020/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +0 -30
- package/esm2020/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +0 -19
- package/esm2020/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +0 -78
- package/esm2020/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +0 -29
- package/esm2020/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +0 -71
- package/esm2020/lib/components/forms/services/default-validator-errors.service.mjs +0 -51
- package/esm2020/lib/components/forms/services/form-field-state.service.mjs +0 -24
- package/esm2020/lib/components/forms/services/form-group-state.service.mjs +0 -21
- package/esm2020/lib/components/forms/services/input-state.service.mjs +0 -35
- package/esm2020/lib/components/forms/utils/decorated-form-field.base.mjs +0 -22
- package/esm2020/lib/components/forms/utils/decorated-input.base.mjs +0 -44
- package/esm2020/lib/components/forms/utils/input.base.mjs +0 -20
- package/esm2020/lib/components/icons/chevron-icon/chevron-icon.component.mjs +0 -36
- package/esm2020/lib/components/masonry/components/masonry/masonry.component.mjs +0 -199
- package/esm2020/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +0 -74
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +0 -51
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +0 -43
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +0 -103
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +0 -49
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +0 -113
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +0 -48
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +0 -31
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +0 -51
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +0 -64
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +0 -43
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +0 -49
- package/esm2020/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +0 -109
- package/esm2020/lib/components/overlay/components/dialog/services/dialog.service.mjs +0 -31
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +0 -62
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +0 -196
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +0 -60
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +0 -240
- package/esm2020/lib/components/overlay/services/dynamic-overlay.service.mjs +0 -29
- package/esm2020/lib/components/pagination/components/pagination/pagination.component.mjs +0 -105
- package/esm2020/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +0 -32
- package/esm2020/lib/components/pagination/services/pagination-head.service.mjs +0 -59
- package/esm2020/lib/components/picture/picture-data.directive.mjs +0 -55
- package/esm2020/lib/components/picture/picture.component.mjs +0 -40
- package/esm2020/lib/components/progress-spinner/progress-spinner.component.mjs +0 -105
- package/esm2020/lib/components/scrollable/components/scrollable/scrollable.component.mjs +0 -129
- package/esm2020/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +0 -19
- package/esm2020/lib/components/sort/components/sort-header/sort-header.component.mjs +0 -224
- package/esm2020/lib/components/sort/partials/sort/sort.directive.mjs +0 -157
- package/esm2020/lib/components/sort/services/sort-header-intl.mjs +0 -23
- package/esm2020/lib/components/table/components/table/table.component.mjs +0 -141
- package/esm2020/lib/components/table/partials/cells/cell/cell.directive.mjs +0 -18
- package/esm2020/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/cells/column-def/column-def.directive.mjs +0 -44
- package/esm2020/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +0 -18
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +0 -19
- package/esm2020/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/header-row/header-row.component.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +0 -20
- package/esm2020/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/rows/row/row.component.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/row-def/row-def.directive.mjs +0 -26
- package/esm2020/lib/components/table/partials/table-busy/table-busy.directive.mjs +0 -18
- package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +0 -15
- package/esm2020/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +0 -261
- package/esm2020/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +0 -86
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +0 -100
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +0 -135
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +0 -25
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +0 -22
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +0 -43
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +0 -30
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +0 -48
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +0 -203
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +0 -37
- package/esm2020/lib/components/tabs/utils/active-tab-underline.util.mjs +0 -111
- package/esm2020/lib/components/tabs/utils/paginated-tab-header.directive.mjs +0 -284
- package/esm2020/lib/services/swipe-handler.service.mjs +0 -88
- package/fesm2015/ethlete-cdk.mjs +0 -9106
- package/fesm2015/ethlete-cdk.mjs.map +0 -1
- package/fesm2020/ethlete-cdk.mjs.map +0 -1
- /package/{esm2020 → esm2022}/ethlete-cdk.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/accordion.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/accordion.component.animations.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/accordion.component.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-hint/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-hint-wrapper/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-label-wrapper/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/bracket.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/bracket/bracket.component.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/bracket/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/constants/bracket.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-match/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-match/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-round/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-round/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-match/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-match/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-round-header/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-round-header/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/bracket-config.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/bracket.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/bracket-config.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/bracket.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/button.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/query-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/query-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/components/error/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/email-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/input-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/number-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/password-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/search-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/text-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/textarea-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/autosize-textarea/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/email-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/number-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/password-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/search-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/text-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/textarea-input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/textarea-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/password-input-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/components/label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/directives/label-suffix/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/label.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/radio-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/radio-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/types/radio.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/segmented-button.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/select/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/select/components/select-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/slider/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/slider-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/dynamic-form-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/dynamic-form-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/if-input-empty/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/if-input-filled/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input-prefix/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input-suffix/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/native-input-ref/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/native-input-ref/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/static-form-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/static-form-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/writeable-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/types/input.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/chevron-icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/chevron-icon/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/icon.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/components/masonry/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/masonry.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/partials/masonry-item/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/types/masonry.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/components/dialog-container/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/constants/dialog.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/dialog.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/dialog-close/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/dialog-title/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/types/dialog.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/dialog-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/dialog.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/components/toggletip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/constants/toggletip.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/directives/toggletip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/toggletip.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/types/toggletip.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/toggletip-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/toggletip.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/components/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/constants/tooltip.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/directives/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/tooltip.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/types/tooltip.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/tooltip-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/tooltip.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/types/dynamic-overlay.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/components/pagination/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/pagination.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/partials/pagination-link/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/types/pagination.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/utils/pagination.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/picture/picture.component.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/picture/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/progress-spinner/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/components/scrollable/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/scrollable.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/components/skeleton/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/partials/skeleton-item/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/skeleton.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/sort-header/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/sort-header/sort-header.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/sort/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/sort/sort.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/sort.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/types/sort-direction.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/components/table/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/constants/table-data-source.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell-def/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/column-def/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/column-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/footer-cell/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/footer-cell-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell-def/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/text-column/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/footer-row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/footer-row-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/header-row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/header-row-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/no-data-row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/recycle-rows/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/row-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/table-busy/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/table-busy-outlet/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/table.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/types/table-data-source.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/utils/table-data-source.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/animations/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/animations/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/animations/tabs.animations.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/inline-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/nav-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/tab.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/types/tab-config.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/swipe.types.mjs +0 -0
- /package/lib/components/forms/components/{select/directives → label}/index.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives/native-select-option → components/native-select/components}/index.d.ts +0 -0
- /package/lib/components/forms/components/select/{types → components/native-select/directives}/index.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-input/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-option/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives → components/native-select/directives}/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/components/{native-select-option → native-select/partials/native-select-option}/native-select-option.component.d.ts +0 -0
- /package/lib/components/forms/components/select/components/{native-select-option → native-select/partials/native-select-option}/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{types → components/native-select/types}/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{types → components/native-select/types}/select.types.d.ts +0 -0
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
-
import { DestroyService } from '@ethlete/core';
|
|
3
|
-
import { BehaviorSubject, combineLatest, takeUntil, tap } from 'rxjs';
|
|
4
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export const PASSWORD_INPUT_TOKEN = new InjectionToken('ET_PASSWORD_INPUT_DIRECTIVE_TOKEN');
|
|
7
|
-
export class PasswordInputDirective {
|
|
8
|
-
constructor() {
|
|
9
|
-
this._destroy$ = inject(DestroyService, { host: true }).destroy$;
|
|
10
|
-
this.input = inject(INPUT_TOKEN);
|
|
11
|
-
this.showPassword$ = new BehaviorSubject(false);
|
|
12
|
-
}
|
|
13
|
-
ngOnInit() {
|
|
14
|
-
combineLatest([this.input.value$, this.input.nativeInputRef$])
|
|
15
|
-
.pipe(tap(([value, nativeInputRef]) => {
|
|
16
|
-
if (!nativeInputRef)
|
|
17
|
-
return;
|
|
18
|
-
if (value !== nativeInputRef.element.nativeElement.value) {
|
|
19
|
-
nativeInputRef.element.nativeElement.value = value ?? '';
|
|
20
|
-
}
|
|
21
|
-
}), takeUntil(this._destroy$))
|
|
22
|
-
.subscribe();
|
|
23
|
-
}
|
|
24
|
-
_onInputInteraction(event) {
|
|
25
|
-
event.stopPropagation();
|
|
26
|
-
const input = event.target;
|
|
27
|
-
const value = input.value;
|
|
28
|
-
if (value === '') {
|
|
29
|
-
this.input._updateValue(null);
|
|
30
|
-
}
|
|
31
|
-
else {
|
|
32
|
-
this.input._updateValue(value);
|
|
33
|
-
}
|
|
34
|
-
this.input._markAsTouched();
|
|
35
|
-
}
|
|
36
|
-
_controlTouched() {
|
|
37
|
-
this.input._markAsTouched();
|
|
38
|
-
this.input._setShouldDisplayError(true);
|
|
39
|
-
}
|
|
40
|
-
_toggleShowPassword() {
|
|
41
|
-
this.showPassword$.next(!this.showPassword$.value);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
PasswordInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PasswordInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
45
|
-
PasswordInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: PasswordInputDirective, isStandalone: true, providers: [{ provide: PASSWORD_INPUT_TOKEN, useExisting: PasswordInputDirective }, DestroyService], exportAs: ["etPasswordInput"], ngImport: i0 });
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PasswordInputDirective, decorators: [{
|
|
47
|
-
type: Directive,
|
|
48
|
-
args: [{
|
|
49
|
-
standalone: true,
|
|
50
|
-
exportAs: 'etPasswordInput',
|
|
51
|
-
providers: [{ provide: PASSWORD_INPUT_TOKEN, useExisting: PasswordInputDirective }, DestroyService],
|
|
52
|
-
}]
|
|
53
|
-
}] });
|
|
54
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtaW5wdXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvZGlyZWN0aXZlcy9wYXNzd29yZC1pbnB1dC9wYXNzd29yZC1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsU0FBUyxFQUFFLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUN0RSxPQUFPLEVBQWtCLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQUVyRSxNQUFNLENBQUMsTUFBTSxvQkFBb0IsR0FBRyxJQUFJLGNBQWMsQ0FBeUIsbUNBQW1DLENBQUMsQ0FBQztBQU9wSCxNQUFNLE9BQU8sc0JBQXNCO0lBTG5DO1FBTW1CLGNBQVMsR0FBRyxNQUFNLENBQUMsY0FBYyxFQUFFLEVBQUUsSUFBSSxFQUFFLElBQUksRUFBRSxDQUFDLENBQUMsUUFBUSxDQUFDO1FBQ3BFLFVBQUssR0FBRyxNQUFNLENBQWdDLFdBQVcsQ0FBQyxDQUFDO1FBQzNELGtCQUFhLEdBQUcsSUFBSSxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7S0F3Q3JEO0lBdENDLFFBQVE7UUFDTixhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQzNELElBQUksQ0FDSCxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxjQUFjLENBQUMsRUFBRSxFQUFFO1lBQzlCLElBQUksQ0FBQyxjQUFjO2dCQUFFLE9BQU87WUFFNUIsSUFBSSxLQUFLLEtBQUssY0FBYyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO2dCQUN4RCxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsS0FBSyxJQUFJLEVBQUUsQ0FBQzthQUMxRDtRQUNILENBQUMsQ0FBQyxFQUNGLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQzFCO2FBQ0EsU0FBUyxFQUFFLENBQUM7SUFDakIsQ0FBQztJQUVELG1CQUFtQixDQUFDLEtBQVk7UUFDOUIsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBRXhCLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxNQUEwQixDQUFDO1FBQy9DLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7UUFFMUIsSUFBSSxLQUFLLEtBQUssRUFBRSxFQUFFO1lBQ2hCLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQy9CO2FBQU07WUFDTCxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNoQztRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQztJQUVELG1CQUFtQjtRQUNqQixJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDckQsQ0FBQzs7bUhBMUNVLHNCQUFzQjt1R0FBdEIsc0JBQXNCLGlDQUZ0QixDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLGNBQWMsQ0FBQzsyRkFFeEYsc0JBQXNCO2tCQUxsQyxTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLHdCQUF3QixFQUFFLEVBQUUsY0FBYyxDQUFDO2lCQUNwRyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCB0YWtlVW50aWwsIHRhcCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSW5wdXREaXJlY3RpdmUsIElOUFVUX1RPS0VOIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5cbmV4cG9ydCBjb25zdCBQQVNTV09SRF9JTlBVVF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxQYXNzd29yZElucHV0RGlyZWN0aXZlPignRVRfUEFTU1dPUkRfSU5QVVRfRElSRUNUSVZFX1RPS0VOJyk7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBleHBvcnRBczogJ2V0UGFzc3dvcmRJbnB1dCcsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogUEFTU1dPUkRfSU5QVVRfVE9LRU4sIHVzZUV4aXN0aW5nOiBQYXNzd29yZElucHV0RGlyZWN0aXZlIH0sIERlc3Ryb3lTZXJ2aWNlXSxcbn0pXG5leHBvcnQgY2xhc3MgUGFzc3dvcmRJbnB1dERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kkID0gaW5qZWN0KERlc3Ryb3lTZXJ2aWNlLCB7IGhvc3Q6IHRydWUgfSkuZGVzdHJveSQ7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPHN0cmluZyB8IG51bGw+PihJTlBVVF9UT0tFTik7XG4gIHJlYWRvbmx5IHNob3dQYXNzd29yZCQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0KGZhbHNlKTtcblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LnZhbHVlJCwgdGhpcy5pbnB1dC5uYXRpdmVJbnB1dFJlZiRdKVxuICAgICAgLnBpcGUoXG4gICAgICAgIHRhcCgoW3ZhbHVlLCBuYXRpdmVJbnB1dFJlZl0pID0+IHtcbiAgICAgICAgICBpZiAoIW5hdGl2ZUlucHV0UmVmKSByZXR1cm47XG5cbiAgICAgICAgICBpZiAodmFsdWUgIT09IG5hdGl2ZUlucHV0UmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZSkge1xuICAgICAgICAgICAgbmF0aXZlSW5wdXRSZWYuZWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlID0gdmFsdWUgPz8gJyc7XG4gICAgICAgICAgfVxuICAgICAgICB9KSxcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kkKSxcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoKTtcbiAgfVxuXG4gIF9vbklucHV0SW50ZXJhY3Rpb24oZXZlbnQ6IEV2ZW50KSB7XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG5cbiAgICBjb25zdCBpbnB1dCA9IGV2ZW50LnRhcmdldCBhcyBIVE1MSW5wdXRFbGVtZW50O1xuICAgIGNvbnN0IHZhbHVlID0gaW5wdXQudmFsdWU7XG5cbiAgICBpZiAodmFsdWUgPT09ICcnKSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZShudWxsKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5pbnB1dC5fdXBkYXRlVmFsdWUodmFsdWUpO1xuICAgIH1cblxuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgfVxuXG4gIF9jb250cm9sVG91Y2hlZCgpIHtcbiAgICB0aGlzLmlucHV0Ll9tYXJrQXNUb3VjaGVkKCk7XG4gICAgdGhpcy5pbnB1dC5fc2V0U2hvdWxkRGlzcGxheUVycm9yKHRydWUpO1xuICB9XG5cbiAgX3RvZ2dsZVNob3dQYXNzd29yZCgpIHtcbiAgICB0aGlzLnNob3dQYXNzd29yZCQubmV4dCghdGhpcy5zaG93UGFzc3dvcmQkLnZhbHVlKTtcbiAgfVxufVxuIl19
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
-
import { DestroyService } from '@ethlete/core';
|
|
3
|
-
import { combineLatest, takeUntil, tap } from 'rxjs';
|
|
4
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export const SEARCH_INPUT_TOKEN = new InjectionToken('ET_SEARCH_INPUT_DIRECTIVE_TOKEN');
|
|
7
|
-
export class SearchInputDirective {
|
|
8
|
-
constructor() {
|
|
9
|
-
this._destroy$ = inject(DestroyService, { host: true }).destroy$;
|
|
10
|
-
this.input = inject(INPUT_TOKEN);
|
|
11
|
-
}
|
|
12
|
-
ngOnInit() {
|
|
13
|
-
combineLatest([this.input.value$, this.input.nativeInputRef$])
|
|
14
|
-
.pipe(tap(([value, nativeInputRef]) => {
|
|
15
|
-
if (!nativeInputRef)
|
|
16
|
-
return;
|
|
17
|
-
if (value !== nativeInputRef.element.nativeElement.value) {
|
|
18
|
-
nativeInputRef.element.nativeElement.value = value ?? '';
|
|
19
|
-
}
|
|
20
|
-
}), takeUntil(this._destroy$))
|
|
21
|
-
.subscribe();
|
|
22
|
-
}
|
|
23
|
-
_onInputInteraction(event) {
|
|
24
|
-
event.stopPropagation();
|
|
25
|
-
const input = event.target;
|
|
26
|
-
const value = input.value;
|
|
27
|
-
if (value === '') {
|
|
28
|
-
this.input._updateValue(null);
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
this.input._updateValue(value);
|
|
32
|
-
}
|
|
33
|
-
this.input._markAsTouched();
|
|
34
|
-
}
|
|
35
|
-
_controlTouched() {
|
|
36
|
-
this.input._markAsTouched();
|
|
37
|
-
this.input._setShouldDisplayError(true);
|
|
38
|
-
}
|
|
39
|
-
_clear() {
|
|
40
|
-
this.input._updateValue(null);
|
|
41
|
-
this._controlTouched();
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
SearchInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
45
|
-
SearchInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: SearchInputDirective, isStandalone: true, providers: [{ provide: SEARCH_INPUT_TOKEN, useExisting: SearchInputDirective }, DestroyService], exportAs: ["etSearchInput"], ngImport: i0 });
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputDirective, decorators: [{
|
|
47
|
-
type: Directive,
|
|
48
|
-
args: [{
|
|
49
|
-
standalone: true,
|
|
50
|
-
exportAs: 'etSearchInput',
|
|
51
|
-
providers: [{ provide: SEARCH_INPUT_TOKEN, useExisting: SearchInputDirective }, DestroyService],
|
|
52
|
-
}]
|
|
53
|
-
}] });
|
|
54
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2RpcmVjdGl2ZXMvc2VhcmNoLWlucHV0L3NlYXJjaC1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBa0IsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLElBQUksY0FBYyxDQUF1QixpQ0FBaUMsQ0FBQyxDQUFDO0FBTzlHLE1BQU0sT0FBTyxvQkFBb0I7SUFMakM7UUFNbUIsY0FBUyxHQUFHLE1BQU0sQ0FBQyxjQUFjLEVBQUUsRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxRQUFRLENBQUM7UUFDcEUsVUFBSyxHQUFHLE1BQU0sQ0FBZ0MsV0FBVyxDQUFDLENBQUM7S0F5Q3JFO0lBdkNDLFFBQVE7UUFDTixhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQzNELElBQUksQ0FDSCxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxjQUFjLENBQUMsRUFBRSxFQUFFO1lBQzlCLElBQUksQ0FBQyxjQUFjO2dCQUFFLE9BQU87WUFFNUIsSUFBSSxLQUFLLEtBQUssY0FBYyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO2dCQUN4RCxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsS0FBSyxJQUFJLEVBQUUsQ0FBQzthQUMxRDtRQUNILENBQUMsQ0FBQyxFQUNGLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQzFCO2FBQ0EsU0FBUyxFQUFFLENBQUM7SUFDakIsQ0FBQztJQUVELG1CQUFtQixDQUFDLEtBQVk7UUFDOUIsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBRXhCLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxNQUEwQixDQUFDO1FBQy9DLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7UUFFMUIsSUFBSSxLQUFLLEtBQUssRUFBRSxFQUFFO1lBQ2hCLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQy9CO2FBQU07WUFDTCxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNoQztRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQztJQUVELE1BQU07UUFDSixJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM5QixJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDekIsQ0FBQzs7aUhBMUNVLG9CQUFvQjtxR0FBcEIsb0JBQW9CLGlDQUZwQixDQUFDLEVBQUUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLFdBQVcsRUFBRSxvQkFBb0IsRUFBRSxFQUFFLGNBQWMsQ0FBQzsyRkFFcEYsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsZUFBZTtvQkFDekIsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsV0FBVyxzQkFBc0IsRUFBRSxFQUFFLGNBQWMsQ0FBQztpQkFDaEciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRGVzdHJveVNlcnZpY2UgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIHRha2VVbnRpbCwgdGFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJbnB1dERpcmVjdGl2ZSwgSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcblxuZXhwb3J0IGNvbnN0IFNFQVJDSF9JTlBVVF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxTZWFyY2hJbnB1dERpcmVjdGl2ZT4oJ0VUX1NFQVJDSF9JTlBVVF9ESVJFQ1RJVkVfVE9LRU4nKTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGV4cG9ydEFzOiAnZXRTZWFyY2hJbnB1dCcsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogU0VBUkNIX0lOUFVUX1RPS0VOLCB1c2VFeGlzdGluZzogU2VhcmNoSW5wdXREaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBTZWFyY2hJbnB1dERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kkID0gaW5qZWN0KERlc3Ryb3lTZXJ2aWNlLCB7IGhvc3Q6IHRydWUgfSkuZGVzdHJveSQ7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPHN0cmluZyB8IG51bGw+PihJTlBVVF9UT0tFTik7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgY29tYmluZUxhdGVzdChbdGhpcy5pbnB1dC52YWx1ZSQsIHRoaXMuaW5wdXQubmF0aXZlSW5wdXRSZWYkXSlcbiAgICAgIC5waXBlKFxuICAgICAgICB0YXAoKFt2YWx1ZSwgbmF0aXZlSW5wdXRSZWZdKSA9PiB7XG4gICAgICAgICAgaWYgKCFuYXRpdmVJbnB1dFJlZikgcmV0dXJuO1xuXG4gICAgICAgICAgaWYgKHZhbHVlICE9PSBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUpIHtcbiAgICAgICAgICAgIG5hdGl2ZUlucHV0UmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZSA9IHZhbHVlID8/ICcnO1xuICAgICAgICAgIH1cbiAgICAgICAgfSksXG4gICAgICAgIHRha2VVbnRpbCh0aGlzLl9kZXN0cm95JCksXG4gICAgICApXG4gICAgICAuc3Vic2NyaWJlKCk7XG4gIH1cblxuICBfb25JbnB1dEludGVyYWN0aW9uKGV2ZW50OiBFdmVudCkge1xuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuXG4gICAgY29uc3QgaW5wdXQgPSBldmVudC50YXJnZXQgYXMgSFRNTElucHV0RWxlbWVudDtcbiAgICBjb25zdCB2YWx1ZSA9IGlucHV0LnZhbHVlO1xuXG4gICAgaWYgKHZhbHVlID09PSAnJykge1xuICAgICAgdGhpcy5pbnB1dC5fdXBkYXRlVmFsdWUobnVsbCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKHZhbHVlKTtcbiAgICB9XG5cbiAgICB0aGlzLmlucHV0Ll9tYXJrQXNUb3VjaGVkKCk7XG4gIH1cblxuICBfY29udHJvbFRvdWNoZWQoKSB7XG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICAgIHRoaXMuaW5wdXQuX3NldFNob3VsZERpc3BsYXlFcnJvcih0cnVlKTtcbiAgfVxuXG4gIF9jbGVhcigpIHtcbiAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZShudWxsKTtcbiAgICB0aGlzLl9jb250cm9sVG91Y2hlZCgpO1xuICB9XG59XG4iXX0=
|
package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
-
import { DestroyService } from '@ethlete/core';
|
|
3
|
-
import { combineLatest, takeUntil, tap } from 'rxjs';
|
|
4
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export const TEXT_INPUT_TOKEN = new InjectionToken('ET_TEXT_INPUT_DIRECTIVE_TOKEN');
|
|
7
|
-
export class TextInputDirective {
|
|
8
|
-
constructor() {
|
|
9
|
-
this._destroy$ = inject(DestroyService, { host: true }).destroy$;
|
|
10
|
-
this.input = inject(INPUT_TOKEN);
|
|
11
|
-
}
|
|
12
|
-
ngOnInit() {
|
|
13
|
-
combineLatest([this.input.value$, this.input.nativeInputRef$])
|
|
14
|
-
.pipe(tap(([value, nativeInputRef]) => {
|
|
15
|
-
if (!nativeInputRef)
|
|
16
|
-
return;
|
|
17
|
-
if (value !== nativeInputRef.element.nativeElement.value) {
|
|
18
|
-
nativeInputRef.element.nativeElement.value = value ?? '';
|
|
19
|
-
}
|
|
20
|
-
}), takeUntil(this._destroy$))
|
|
21
|
-
.subscribe();
|
|
22
|
-
}
|
|
23
|
-
_onInputInteraction(event) {
|
|
24
|
-
event.stopPropagation();
|
|
25
|
-
const input = event.target;
|
|
26
|
-
const value = input.value;
|
|
27
|
-
if (value === '') {
|
|
28
|
-
this.input._updateValue(null);
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
this.input._updateValue(value);
|
|
32
|
-
}
|
|
33
|
-
this.input._markAsTouched();
|
|
34
|
-
}
|
|
35
|
-
_controlTouched() {
|
|
36
|
-
this.input._markAsTouched();
|
|
37
|
-
this.input._setShouldDisplayError(true);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
TextInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
-
TextInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: TextInputDirective, isStandalone: true, providers: [{ provide: TEXT_INPUT_TOKEN, useExisting: TextInputDirective }, DestroyService], exportAs: ["etTextInput"], ngImport: i0 });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextInputDirective, decorators: [{
|
|
43
|
-
type: Directive,
|
|
44
|
-
args: [{
|
|
45
|
-
standalone: true,
|
|
46
|
-
exportAs: 'etTextInput',
|
|
47
|
-
providers: [{ provide: TEXT_INPUT_TOKEN, useExisting: TextInputDirective }, DestroyService],
|
|
48
|
-
}]
|
|
49
|
-
}] });
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1pbnB1dC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9kaXJlY3RpdmVzL3RleHQtaW5wdXQvdGV4dC1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBa0IsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLElBQUksY0FBYyxDQUFxQiwrQkFBK0IsQ0FBQyxDQUFDO0FBT3hHLE1BQU0sT0FBTyxrQkFBa0I7SUFML0I7UUFNbUIsY0FBUyxHQUFHLE1BQU0sQ0FBQyxjQUFjLEVBQUUsRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxRQUFRLENBQUM7UUFDcEUsVUFBSyxHQUFHLE1BQU0sQ0FBZ0MsV0FBVyxDQUFDLENBQUM7S0FvQ3JFO0lBbENDLFFBQVE7UUFDTixhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQzNELElBQUksQ0FDSCxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxjQUFjLENBQUMsRUFBRSxFQUFFO1lBQzlCLElBQUksQ0FBQyxjQUFjO2dCQUFFLE9BQU87WUFFNUIsSUFBSSxLQUFLLEtBQUssY0FBYyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO2dCQUN4RCxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsS0FBSyxJQUFJLEVBQUUsQ0FBQzthQUMxRDtRQUNILENBQUMsQ0FBQyxFQUNGLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQzFCO2FBQ0EsU0FBUyxFQUFFLENBQUM7SUFDakIsQ0FBQztJQUVELG1CQUFtQixDQUFDLEtBQVk7UUFDOUIsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBRXhCLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxNQUEwQixDQUFDO1FBQy9DLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7UUFFMUIsSUFBSSxLQUFLLEtBQUssRUFBRSxFQUFFO1lBQ2hCLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQy9CO2FBQU07WUFDTCxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNoQztRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQzs7K0dBckNVLGtCQUFrQjttR0FBbEIsa0JBQWtCLGlDQUZsQixDQUFDLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFdBQVcsRUFBRSxrQkFBa0IsRUFBRSxFQUFFLGNBQWMsQ0FBQzsyRkFFaEYsa0JBQWtCO2tCQUw5QixTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsYUFBYTtvQkFDdkIsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsV0FBVyxvQkFBb0IsRUFBRSxFQUFFLGNBQWMsQ0FBQztpQkFDNUYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRGVzdHJveVNlcnZpY2UgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIHRha2VVbnRpbCwgdGFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJbnB1dERpcmVjdGl2ZSwgSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcblxuZXhwb3J0IGNvbnN0IFRFWFRfSU5QVVRfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48VGV4dElucHV0RGlyZWN0aXZlPignRVRfVEVYVF9JTlBVVF9ESVJFQ1RJVkVfVE9LRU4nKTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGV4cG9ydEFzOiAnZXRUZXh0SW5wdXQnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFRFWFRfSU5QVVRfVE9LRU4sIHVzZUV4aXN0aW5nOiBUZXh0SW5wdXREaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBUZXh0SW5wdXREaXJlY3RpdmUgaW1wbGVtZW50cyBPbkluaXQge1xuICBwcml2YXRlIHJlYWRvbmx5IF9kZXN0cm95JCA9IGluamVjdChEZXN0cm95U2VydmljZSwgeyBob3N0OiB0cnVlIH0pLmRlc3Ryb3kkO1xuICByZWFkb25seSBpbnB1dCA9IGluamVjdDxJbnB1dERpcmVjdGl2ZTxzdHJpbmcgfCBudWxsPj4oSU5QVVRfVE9LRU4pO1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIGNvbWJpbmVMYXRlc3QoW3RoaXMuaW5wdXQudmFsdWUkLCB0aGlzLmlucHV0Lm5hdGl2ZUlucHV0UmVmJF0pXG4gICAgICAucGlwZShcbiAgICAgICAgdGFwKChbdmFsdWUsIG5hdGl2ZUlucHV0UmVmXSkgPT4ge1xuICAgICAgICAgIGlmICghbmF0aXZlSW5wdXRSZWYpIHJldHVybjtcblxuICAgICAgICAgIGlmICh2YWx1ZSAhPT0gbmF0aXZlSW5wdXRSZWYuZWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlKSB7XG4gICAgICAgICAgICBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUgPSB2YWx1ZSA/PyAnJztcbiAgICAgICAgICB9XG4gICAgICAgIH0pLFxuICAgICAgICB0YWtlVW50aWwodGhpcy5fZGVzdHJveSQpLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuICB9XG5cbiAgX29uSW5wdXRJbnRlcmFjdGlvbihldmVudDogRXZlbnQpIHtcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcblxuICAgIGNvbnN0IGlucHV0ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQ7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC52YWx1ZTtcblxuICAgIGlmICh2YWx1ZSA9PT0gJycpIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKG51bGwpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICB9XG5cbiAgX2NvbnRyb2xUb3VjaGVkKCkge1xuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
-
import { DestroyService } from '@ethlete/core';
|
|
3
|
-
import { combineLatest, takeUntil, tap } from 'rxjs';
|
|
4
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export const TEXTAREA_INPUT_TOKEN = new InjectionToken('ET_TEXTAREA_INPUT_DIRECTIVE_TOKEN');
|
|
7
|
-
export class TextareaInputDirective {
|
|
8
|
-
constructor() {
|
|
9
|
-
this._destroy$ = inject(DestroyService, { host: true }).destroy$;
|
|
10
|
-
this.input = inject(INPUT_TOKEN);
|
|
11
|
-
}
|
|
12
|
-
ngOnInit() {
|
|
13
|
-
combineLatest([this.input.value$, this.input.nativeInputRef$])
|
|
14
|
-
.pipe(tap(([value, nativeInputRef]) => {
|
|
15
|
-
if (!nativeInputRef)
|
|
16
|
-
return;
|
|
17
|
-
if (value !== nativeInputRef.element.nativeElement.value) {
|
|
18
|
-
nativeInputRef.element.nativeElement.value = value ?? '';
|
|
19
|
-
}
|
|
20
|
-
}), takeUntil(this._destroy$))
|
|
21
|
-
.subscribe();
|
|
22
|
-
}
|
|
23
|
-
_onInputInteraction(event) {
|
|
24
|
-
event.stopPropagation();
|
|
25
|
-
const input = event.target;
|
|
26
|
-
const value = input.value;
|
|
27
|
-
if (value === '') {
|
|
28
|
-
this.input._updateValue(null);
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
this.input._updateValue(value);
|
|
32
|
-
}
|
|
33
|
-
this.input._markAsTouched();
|
|
34
|
-
}
|
|
35
|
-
_controlTouched() {
|
|
36
|
-
this.input._markAsTouched();
|
|
37
|
-
this.input._setShouldDisplayError(true);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
TextareaInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextareaInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
-
TextareaInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: TextareaInputDirective, isStandalone: true, providers: [{ provide: TEXTAREA_INPUT_TOKEN, useExisting: TextareaInputDirective }, DestroyService], exportAs: ["etTextareaInput"], ngImport: i0 });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextareaInputDirective, decorators: [{
|
|
43
|
-
type: Directive,
|
|
44
|
-
args: [{
|
|
45
|
-
standalone: true,
|
|
46
|
-
exportAs: 'etTextareaInput',
|
|
47
|
-
providers: [{ provide: TEXTAREA_INPUT_TOKEN, useExisting: TextareaInputDirective }, DestroyService],
|
|
48
|
-
}]
|
|
49
|
-
}] });
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEtaW5wdXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvZGlyZWN0aXZlcy90ZXh0YXJlYS1pbnB1dC90ZXh0YXJlYS1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBa0IsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLElBQUksY0FBYyxDQUF5QixtQ0FBbUMsQ0FBQyxDQUFDO0FBT3BILE1BQU0sT0FBTyxzQkFBc0I7SUFMbkM7UUFNbUIsY0FBUyxHQUFHLE1BQU0sQ0FBQyxjQUFjLEVBQUUsRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxRQUFRLENBQUM7UUFDcEUsVUFBSyxHQUFHLE1BQU0sQ0FBZ0MsV0FBVyxDQUFDLENBQUM7S0FvQ3JFO0lBbENDLFFBQVE7UUFDTixhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQzNELElBQUksQ0FDSCxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxjQUFjLENBQUMsRUFBRSxFQUFFO1lBQzlCLElBQUksQ0FBQyxjQUFjO2dCQUFFLE9BQU87WUFFNUIsSUFBSSxLQUFLLEtBQUssY0FBYyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO2dCQUN4RCxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsS0FBSyxJQUFJLEVBQUUsQ0FBQzthQUMxRDtRQUNILENBQUMsQ0FBQyxFQUNGLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQzFCO2FBQ0EsU0FBUyxFQUFFLENBQUM7SUFDakIsQ0FBQztJQUVELG1CQUFtQixDQUFDLEtBQVk7UUFDOUIsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBRXhCLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxNQUE2QixDQUFDO1FBQ2xELE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7UUFFMUIsSUFBSSxLQUFLLEtBQUssRUFBRSxFQUFFO1lBQ2hCLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQy9CO2FBQU07WUFDTCxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNoQztRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQzs7bUhBckNVLHNCQUFzQjt1R0FBdEIsc0JBQXNCLGlDQUZ0QixDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsRUFBRSxzQkFBc0IsRUFBRSxFQUFFLGNBQWMsQ0FBQzsyRkFFeEYsc0JBQXNCO2tCQUxsQyxTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLHdCQUF3QixFQUFFLEVBQUUsY0FBYyxDQUFDO2lCQUNwRyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgY29tYmluZUxhdGVzdCwgdGFrZVVudGlsLCB0YXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBJTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5leHBvcnQgY29uc3QgVEVYVEFSRUFfSU5QVVRfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48VGV4dGFyZWFJbnB1dERpcmVjdGl2ZT4oJ0VUX1RFWFRBUkVBX0lOUFVUX0RJUkVDVElWRV9UT0tFTicpO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldFRleHRhcmVhSW5wdXQnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFRFWFRBUkVBX0lOUFVUX1RPS0VOLCB1c2VFeGlzdGluZzogVGV4dGFyZWFJbnB1dERpcmVjdGl2ZSB9LCBEZXN0cm95U2VydmljZV0sXG59KVxuZXhwb3J0IGNsYXNzIFRleHRhcmVhSW5wdXREaXJlY3RpdmUgaW1wbGVtZW50cyBPbkluaXQge1xuICBwcml2YXRlIHJlYWRvbmx5IF9kZXN0cm95JCA9IGluamVjdChEZXN0cm95U2VydmljZSwgeyBob3N0OiB0cnVlIH0pLmRlc3Ryb3kkO1xuICByZWFkb25seSBpbnB1dCA9IGluamVjdDxJbnB1dERpcmVjdGl2ZTxzdHJpbmcgfCBudWxsPj4oSU5QVVRfVE9LRU4pO1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIGNvbWJpbmVMYXRlc3QoW3RoaXMuaW5wdXQudmFsdWUkLCB0aGlzLmlucHV0Lm5hdGl2ZUlucHV0UmVmJF0pXG4gICAgICAucGlwZShcbiAgICAgICAgdGFwKChbdmFsdWUsIG5hdGl2ZUlucHV0UmVmXSkgPT4ge1xuICAgICAgICAgIGlmICghbmF0aXZlSW5wdXRSZWYpIHJldHVybjtcblxuICAgICAgICAgIGlmICh2YWx1ZSAhPT0gbmF0aXZlSW5wdXRSZWYuZWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlKSB7XG4gICAgICAgICAgICBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUgPSB2YWx1ZSA/PyAnJztcbiAgICAgICAgICB9XG4gICAgICAgIH0pLFxuICAgICAgICB0YWtlVW50aWwodGhpcy5fZGVzdHJveSQpLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuICB9XG5cbiAgX29uSW5wdXRJbnRlcmFjdGlvbihldmVudDogRXZlbnQpIHtcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcblxuICAgIGNvbnN0IGlucHV0ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxUZXh0QXJlYUVsZW1lbnQ7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC52YWx1ZTtcblxuICAgIGlmICh2YWx1ZSA9PT0gJycpIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKG51bGwpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICB9XG5cbiAgX2NvbnRyb2xUb3VjaGVkKCkge1xuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, inject, Input, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
4
|
-
import { PASSWORD_INPUT_TOKEN } from '../../directives';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class PasswordInputToggleComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
this.passwordInput = inject(PASSWORD_INPUT_TOKEN);
|
|
9
|
-
this.input = inject(INPUT_TOKEN);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
PasswordInputToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PasswordInputToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
-
PasswordInputToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: PasswordInputToggleComponent, isStandalone: true, selector: "et-password-input-toggle", inputs: { ariaLabel: "ariaLabel" }, host: { classAttribute: "et-password-input-toggle" }, ngImport: i0, template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-pressed]=\"passwordInput.showPassword$ | async\"\n [class.et-password-input-toggle-button--active]=\"passwordInput.showPassword$ | async\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"passwordInput._toggleShowPassword(); input.focusInputVia()\"\n class=\"et-password-input-toggle-button\"\n type=\"button\"\n tabindex=\"-1\"\n>\n <ng-content />\n</button>\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PasswordInputToggleComponent, decorators: [{
|
|
15
|
-
type: Component,
|
|
16
|
-
args: [{ selector: 'et-password-input-toggle', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
17
|
-
class: 'et-password-input-toggle',
|
|
18
|
-
}, imports: [AsyncPipe], template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-pressed]=\"passwordInput.showPassword$ | async\"\n [class.et-password-input-toggle-button--active]=\"passwordInput.showPassword$ | async\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"passwordInput._toggleShowPassword(); input.focusInputVia()\"\n class=\"et-password-input-toggle-button\"\n type=\"button\"\n tabindex=\"-1\"\n>\n <ng-content />\n</button>\n" }]
|
|
19
|
-
}], propDecorators: { ariaLabel: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}] } });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtaW5wdXQtdG9nZ2xlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3Bhc3N3b3JkLWlucHV0LXRvZ2dsZS9wYXNzd29yZC1pbnB1dC10b2dnbGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvcGFydGlhbHMvcGFzc3dvcmQtaW5wdXQtdG9nZ2xlL3Bhc3N3b3JkLWlucHV0LXRvZ2dsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFjeEQsTUFBTSxPQUFPLDRCQUE0QjtJQVp6QztRQWFxQixrQkFBYSxHQUFHLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1FBQzdDLFVBQUssR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7S0FJaEQ7O3lIQU5ZLDRCQUE0Qjs2R0FBNUIsNEJBQTRCLDhLQ2pCekMsNGRBYUEscURERVksU0FBUzsyRkFFUiw0QkFBNEI7a0JBWnhDLFNBQVM7K0JBQ0UsMEJBQTBCLGNBR3hCLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsMEJBQTBCO3FCQUNsQyxXQUNRLENBQUMsU0FBUyxDQUFDOzhCQU9wQixTQUFTO3NCQURSLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElOUFVUX1RPS0VOIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBQQVNTV09SRF9JTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1wYXNzd29yZC1pbnB1dC10b2dnbGUnLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFzc3dvcmQtaW5wdXQtdG9nZ2xlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFzc3dvcmQtaW5wdXQtdG9nZ2xlLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1wYXNzd29yZC1pbnB1dC10b2dnbGUnLFxuICB9LFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlXSxcbn0pXG5leHBvcnQgY2xhc3MgUGFzc3dvcmRJbnB1dFRvZ2dsZUNvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBwYXNzd29yZElucHV0ID0gaW5qZWN0KFBBU1NXT1JEX0lOUFVUX1RPS0VOKTtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0KElOUFVUX1RPS0VOKTtcblxuICBASW5wdXQoKVxuICBhcmlhTGFiZWw/OiBzdHJpbmc7XG59XG4iLCI8YnV0dG9uXG4gIFthdHRyLmFyaWEtY29udHJvbHNdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5hcmlhLXByZXNzZWRdPVwicGFzc3dvcmRJbnB1dC5zaG93UGFzc3dvcmQkIHwgYXN5bmNcIlxuICBbY2xhc3MuZXQtcGFzc3dvcmQtaW5wdXQtdG9nZ2xlLWJ1dHRvbi0tYWN0aXZlXT1cInBhc3N3b3JkSW5wdXQuc2hvd1Bhc3N3b3JkJCB8IGFzeW5jXCJcbiAgW2F0dHIuYXJpYS1sYWJlbF09XCJhcmlhTGFiZWwgfHwgbnVsbFwiXG4gIFtkaXNhYmxlZF09XCJpbnB1dC5kaXNhYmxlZCQgfCBhc3luY1wiXG4gIChjbGljayk9XCJwYXNzd29yZElucHV0Ll90b2dnbGVTaG93UGFzc3dvcmQoKTsgaW5wdXQuZm9jdXNJbnB1dFZpYSgpXCJcbiAgY2xhc3M9XCJldC1wYXNzd29yZC1pbnB1dC10b2dnbGUtYnV0dG9uXCJcbiAgdHlwZT1cImJ1dHRvblwiXG4gIHRhYmluZGV4PVwiLTFcIlxuPlxuICA8bmctY29udGVudCAvPlxuPC9idXR0b24+XG4iXX0=
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, inject, Input, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
4
|
-
import { SEARCH_INPUT_TOKEN } from '../../directives';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class SearchInputClearComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
this.searchInput = inject(SEARCH_INPUT_TOKEN);
|
|
9
|
-
this.input = inject(INPUT_TOKEN);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
SearchInputClearComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputClearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
-
SearchInputClearComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SearchInputClearComponent, isStandalone: true, selector: "et-search-input-clear", inputs: { ariaLabel: "ariaLabel" }, host: { classAttribute: "et-search-input-clear" }, ngImport: i0, template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"searchInput._clear(); input.focusInputVia()\"\n class=\"et-search-input-clear-button\"\n type=\"button\"\n>\n <ng-content />\n</button>\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputClearComponent, decorators: [{
|
|
15
|
-
type: Component,
|
|
16
|
-
args: [{ selector: 'et-search-input-clear', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
17
|
-
class: 'et-search-input-clear',
|
|
18
|
-
}, imports: [AsyncPipe], template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"searchInput._clear(); input.focusInputVia()\"\n class=\"et-search-input-clear-button\"\n type=\"button\"\n>\n <ng-content />\n</button>\n" }]
|
|
19
|
-
}], propDecorators: { ariaLabel: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}] } });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LWNsZWFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3NlYXJjaC1pbnB1dC1jbGVhci9zZWFyY2gtaW5wdXQtY2xlYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvcGFydGlhbHMvc2VhcmNoLWlucHV0LWNsZWFyL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFjdEQsTUFBTSxPQUFPLHlCQUF5QjtJQVp0QztRQWFxQixnQkFBVyxHQUFHLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBQ3pDLFVBQUssR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7S0FJaEQ7O3NIQU5ZLHlCQUF5QjswR0FBekIseUJBQXlCLHdLQ2pCdEMsNlJBVUEscURES1ksU0FBUzsyRkFFUix5QkFBeUI7a0JBWnJDLFNBQVM7K0JBQ0UsdUJBQXVCLGNBR3JCLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsdUJBQXVCO3FCQUMvQixXQUNRLENBQUMsU0FBUyxDQUFDOzhCQU9wQixTQUFTO3NCQURSLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElOUFVUX1RPS0VOIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBTRUFSQ0hfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtc2VhcmNoLWlucHV0LWNsZWFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtc2VhcmNoLWlucHV0LWNsZWFyJyxcbiAgfSxcbiAgaW1wb3J0czogW0FzeW5jUGlwZV0sXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaElucHV0Q2xlYXJDb21wb25lbnQge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgc2VhcmNoSW5wdXQgPSBpbmplY3QoU0VBUkNIX0lOUFVUX1RPS0VOKTtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0KElOUFVUX1RPS0VOKTtcblxuICBASW5wdXQoKVxuICBhcmlhTGFiZWw/OiBzdHJpbmc7XG59XG4iLCI8YnV0dG9uXG4gIFthdHRyLmFyaWEtY29udHJvbHNdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5hcmlhLWxhYmVsXT1cImFyaWFMYWJlbCB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cImlucHV0LmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgKGNsaWNrKT1cInNlYXJjaElucHV0Ll9jbGVhcigpOyBpbnB1dC5mb2N1c0lucHV0VmlhKClcIlxuICBjbGFzcz1cImV0LXNlYXJjaC1pbnB1dC1jbGVhci1idXR0b25cIlxuICB0eXBlPVwiYnV0dG9uXCJcbj5cbiAgPG5nLWNvbnRlbnQgLz5cbjwvYnV0dG9uPlxuIl19
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, inject, InjectionToken, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import { FormFieldStateService } from '../../../../services';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export const LABEL_TOKEN = new InjectionToken('ET_LABEL_COMPONENT_TOKEN');
|
|
6
|
-
let nextUniqueId = 0;
|
|
7
|
-
export class LabelComponent {
|
|
8
|
-
constructor() {
|
|
9
|
-
this.formFieldStateService = inject(FormFieldStateService);
|
|
10
|
-
this.id = `et-label-${++nextUniqueId}`;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
LabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
-
LabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: LabelComponent, isStandalone: true, selector: "et-label", host: { classAttribute: "et-label" }, providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }], exportAs: ["etLabel"], ngImport: i0, template: `
|
|
15
|
-
<label
|
|
16
|
-
[attr.for]="formFieldStateService.inputId$ | async"
|
|
17
|
-
[attr.aria-owns]="formFieldStateService.inputId$ | async"
|
|
18
|
-
[id]="id"
|
|
19
|
-
class="et-label-native-label"
|
|
20
|
-
>
|
|
21
|
-
<ng-content />
|
|
22
|
-
</label>
|
|
23
|
-
<ng-content select="[etLabelSuffix]" />
|
|
24
|
-
`, isInline: true, dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelComponent, decorators: [{
|
|
26
|
-
type: Component,
|
|
27
|
-
args: [{
|
|
28
|
-
selector: 'et-label',
|
|
29
|
-
template: `
|
|
30
|
-
<label
|
|
31
|
-
[attr.for]="formFieldStateService.inputId$ | async"
|
|
32
|
-
[attr.aria-owns]="formFieldStateService.inputId$ | async"
|
|
33
|
-
[id]="id"
|
|
34
|
-
class="et-label-native-label"
|
|
35
|
-
>
|
|
36
|
-
<ng-content />
|
|
37
|
-
</label>
|
|
38
|
-
<ng-content select="[etLabelSuffix]" />
|
|
39
|
-
`,
|
|
40
|
-
encapsulation: ViewEncapsulation.None,
|
|
41
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
42
|
-
standalone: true,
|
|
43
|
-
exportAs: 'etLabel',
|
|
44
|
-
imports: [AsyncPipe],
|
|
45
|
-
providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }],
|
|
46
|
-
host: {
|
|
47
|
-
class: 'et-label',
|
|
48
|
-
},
|
|
49
|
-
}]
|
|
50
|
-
}] });
|
|
51
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvbGFiZWwvY29tcG9uZW50cy9sYWJlbC9sYWJlbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFN0QsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBRTFGLElBQUksWUFBWSxHQUFHLENBQUMsQ0FBQztBQXlCckIsTUFBTSxPQUFPLGNBQWM7SUF2QjNCO1FBd0JxQiwwQkFBcUIsR0FBRyxNQUFNLENBQUMscUJBQXFCLENBQUMsQ0FBQztRQUVoRSxPQUFFLEdBQUcsWUFBWSxFQUFFLFlBQVksRUFBRSxDQUFDO0tBQzVDOzsyR0FKWSxjQUFjOytGQUFkLGNBQWMsNkZBTGQsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLGNBQWMsRUFBRSxDQUFDLGlEQWhCeEQ7Ozs7Ozs7Ozs7R0FVVCx1REFLUyxTQUFTOzJGQU1SLGNBQWM7a0JBdkIxQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxVQUFVO29CQUNwQixRQUFRLEVBQUU7Ozs7Ozs7Ozs7R0FVVDtvQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsU0FBUztvQkFDbkIsT0FBTyxFQUFFLENBQUMsU0FBUyxDQUFDO29CQUNwQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxDQUFDO29CQUNsRSxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtRmllbGRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5cbmV4cG9ydCBjb25zdCBMQUJFTF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxMYWJlbENvbXBvbmVudD4oJ0VUX0xBQkVMX0NPTVBPTkVOVF9UT0tFTicpO1xuXG5sZXQgbmV4dFVuaXF1ZUlkID0gMDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtbGFiZWwnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxsYWJlbFxuICAgICAgW2F0dHIuZm9yXT1cImZvcm1GaWVsZFN0YXRlU2VydmljZS5pbnB1dElkJCB8IGFzeW5jXCJcbiAgICAgIFthdHRyLmFyaWEtb3duc109XCJmb3JtRmllbGRTdGF0ZVNlcnZpY2UuaW5wdXRJZCQgfCBhc3luY1wiXG4gICAgICBbaWRdPVwiaWRcIlxuICAgICAgY2xhc3M9XCJldC1sYWJlbC1uYXRpdmUtbGFiZWxcIlxuICAgID5cbiAgICAgIDxuZy1jb250ZW50IC8+XG4gICAgPC9sYWJlbD5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbZXRMYWJlbFN1ZmZpeF1cIiAvPlxuICBgLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldExhYmVsJyxcbiAgaW1wb3J0czogW0FzeW5jUGlwZV0sXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogTEFCRUxfVE9LRU4sIHVzZUV4aXN0aW5nOiBMYWJlbENvbXBvbmVudCB9XSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtbGFiZWwnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBMYWJlbENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBmb3JtRmllbGRTdGF0ZVNlcnZpY2UgPSBpbmplY3QoRm9ybUZpZWxkU3RhdGVTZXJ2aWNlKTtcblxuICByZWFkb25seSBpZCA9IGBldC1sYWJlbC0keysrbmV4dFVuaXF1ZUlkfWA7XG59XG4iXX0=
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
-
import { Directive, HostBinding, Input } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class LabelSuffixDirective {
|
|
5
|
-
constructor() {
|
|
6
|
-
this._showToScreenReader = false;
|
|
7
|
-
}
|
|
8
|
-
get showToScreenReader() {
|
|
9
|
-
return this._showToScreenReader;
|
|
10
|
-
}
|
|
11
|
-
set showToScreenReader(value) {
|
|
12
|
-
this._showToScreenReader = coerceBooleanProperty(value);
|
|
13
|
-
}
|
|
14
|
-
get _attrAriaHidden() {
|
|
15
|
-
return this.showToScreenReader ? null : 'true';
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
LabelSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelSuffixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
19
|
-
LabelSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: LabelSuffixDirective, isStandalone: true, selector: "[etLabelSuffix]", inputs: { showToScreenReader: "showToScreenReader" }, host: { properties: { "attr.aria-hidden": "this._attrAriaHidden" } }, exportAs: ["etLabelSuffix"], ngImport: i0 });
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelSuffixDirective, decorators: [{
|
|
21
|
-
type: Directive,
|
|
22
|
-
args: [{
|
|
23
|
-
selector: '[etLabelSuffix]',
|
|
24
|
-
standalone: true,
|
|
25
|
-
exportAs: 'etLabelSuffix',
|
|
26
|
-
}]
|
|
27
|
-
}], propDecorators: { showToScreenReader: [{
|
|
28
|
-
type: Input
|
|
29
|
-
}], _attrAriaHidden: [{
|
|
30
|
-
type: HostBinding,
|
|
31
|
-
args: ['attr.aria-hidden']
|
|
32
|
-
}] } });
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwtc3VmZml4LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvbGFiZWwtc3VmZml4L2xhYmVsLXN1ZmZpeC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPOUQsTUFBTSxPQUFPLG9CQUFvQjtJQUxqQztRQWFVLHdCQUFtQixHQUFHLEtBQUssQ0FBQztLQU1yQztJQWJDLElBQ0ksa0JBQWtCO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLG1CQUFtQixDQUFDO0lBQ2xDLENBQUM7SUFDRCxJQUFJLGtCQUFrQixDQUFDLEtBQW1CO1FBQ3hDLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxRCxDQUFDO0lBR0QsSUFDWSxlQUFlO1FBQ3pCLE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUNqRCxDQUFDOztpSEFiVSxvQkFBb0I7cUdBQXBCLG9CQUFvQjsyRkFBcEIsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsZUFBZTtpQkFDMUI7OEJBR0ssa0JBQWtCO3NCQURyQixLQUFLO2dCQVVNLGVBQWU7c0JBRDFCLFdBQVc7dUJBQUMsa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQm9vbGVhbklucHV0LCBjb2VyY2VCb29sZWFuUHJvcGVydHkgfSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBIb3N0QmluZGluZywgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2V0TGFiZWxTdWZmaXhdJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldExhYmVsU3VmZml4Jyxcbn0pXG5leHBvcnQgY2xhc3MgTGFiZWxTdWZmaXhEaXJlY3RpdmUge1xuICBASW5wdXQoKVxuICBnZXQgc2hvd1RvU2NyZWVuUmVhZGVyKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9zaG93VG9TY3JlZW5SZWFkZXI7XG4gIH1cbiAgc2V0IHNob3dUb1NjcmVlblJlYWRlcih2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fc2hvd1RvU2NyZWVuUmVhZGVyID0gY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKTtcbiAgfVxuICBwcml2YXRlIF9zaG93VG9TY3JlZW5SZWFkZXIgPSBmYWxzZTtcblxuICBASG9zdEJpbmRpbmcoJ2F0dHIuYXJpYS1oaWRkZW4nKVxuICBwcml2YXRlIGdldCBfYXR0ckFyaWFIaWRkZW4oKSB7XG4gICAgcmV0dXJuIHRoaXMuc2hvd1RvU2NyZWVuUmVhZGVyID8gbnVsbCA6ICd0cnVlJztcbiAgfVxufVxuIl19
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe, NgClass } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import { InputDirective, NativeInputRefDirective } from '../../../../directives';
|
|
4
|
-
import { InputBase } from '../../../../utils';
|
|
5
|
-
import { RadioDirective, RADIO_GROUP_TOKEN, RADIO_TOKEN } from '../../directives';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "../../directives/radio/radio.directive";
|
|
8
|
-
import * as i2 from "../../../../directives/input/input.directive";
|
|
9
|
-
export class RadioComponent extends InputBase {
|
|
10
|
-
constructor() {
|
|
11
|
-
super(...arguments);
|
|
12
|
-
this.radio = inject(RADIO_TOKEN);
|
|
13
|
-
this.radioGroup = inject(RADIO_GROUP_TOKEN);
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
RadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
-
RadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioComponent, isStandalone: true, selector: "et-radio", host: { classAttribute: "et-radio" }, usesInheritance: true, hostDirectives: [{ directive: i1.RadioDirective, inputs: ["value", "value", "disabled", "disabled"] }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete"] }], ngImport: i0, template: "<input\n [attr.tabindex]=\"(radio.disabled$ | async) ? -1 : 0\"\n [attr.checked]=\"(radio.checked$ | async) || null\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [disabled]=\"radio.disabled$ | async\"\n [attr.id]=\"input.id\"\n [attr.name]=\"radioGroup.name\"\n (click)=\"radio._onInputInteraction($event)\"\n (blur)=\"radio._controlTouched()\"\n class=\"et-radio-native-input\"\n type=\"radio\"\n etNativeInputRef\n/>\n\n<div [ngClass]=\"{ 'et-radio-check--active': radio.checked$ | async }\" class=\"et-radio-check\"></div>\n", styles: [":where(.et-radio){--et-radio-size: 25px;--et-radio-check-size: 10px;--et-radio-border-radius: 50%;--et-radio-border-color: #e5e5e5;--et-radio-state-color: #e5e5e5;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);border:1px solid var(--et-radio-border-color);border-radius:var(--et-radio-border-radius);display:inline-grid}:where(.et-radio-check){inline-size:var(--et-radio-check-size);block-size:var(--et-radio-check-size);border-radius:var(--et-radio-border-radius)}:where(.et-radio-check).et-radio-check--active{background-color:var(--et-radio-state-color)}.et-radio{position:relative;align-items:center;justify-items:center}.et-radio-native-input,.et-radio-check{grid-area:1/1/2/2}.et-radio-native-input{z-index:1;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);opacity:0;margin:0;border:none}.et-radio:not(.et-radio--disabled) .et-radio-native-input{cursor:pointer}\n"], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioComponent, decorators: [{
|
|
19
|
-
type: Component,
|
|
20
|
-
args: [{ selector: 'et-radio', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
21
|
-
class: 'et-radio',
|
|
22
|
-
}, imports: [AsyncPipe, NgClass, NativeInputRefDirective], hostDirectives: [
|
|
23
|
-
{ directive: RadioDirective, inputs: ['value', 'disabled'] },
|
|
24
|
-
{ directive: InputDirective, inputs: ['autocomplete'] },
|
|
25
|
-
], template: "<input\n [attr.tabindex]=\"(radio.disabled$ | async) ? -1 : 0\"\n [attr.checked]=\"(radio.checked$ | async) || null\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [disabled]=\"radio.disabled$ | async\"\n [attr.id]=\"input.id\"\n [attr.name]=\"radioGroup.name\"\n (click)=\"radio._onInputInteraction($event)\"\n (blur)=\"radio._controlTouched()\"\n class=\"et-radio-native-input\"\n type=\"radio\"\n etNativeInputRef\n/>\n\n<div [ngClass]=\"{ 'et-radio-check--active': radio.checked$ | async }\" class=\"et-radio-check\"></div>\n", styles: [":where(.et-radio){--et-radio-size: 25px;--et-radio-check-size: 10px;--et-radio-border-radius: 50%;--et-radio-border-color: #e5e5e5;--et-radio-state-color: #e5e5e5;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);border:1px solid var(--et-radio-border-color);border-radius:var(--et-radio-border-radius);display:inline-grid}:where(.et-radio-check){inline-size:var(--et-radio-check-size);block-size:var(--et-radio-check-size);border-radius:var(--et-radio-border-radius)}:where(.et-radio-check).et-radio-check--active{background-color:var(--et-radio-state-color)}.et-radio{position:relative;align-items:center;justify-items:center}.et-radio-native-input,.et-radio-check{grid-area:1/1/2/2}.et-radio-native-input{z-index:1;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);opacity:0;margin:0;border:none}.et-radio:not(.et-radio--disabled) .et-radio-native-input{cursor:pointer}\n"] }]
|
|
26
|
-
}] });
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby9yYWRpby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9jb21wb25lbnRzL3JhZGlvL3JhZGlvLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDckQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsY0FBYyxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBa0JsRixNQUFNLE9BQU8sY0FBZSxTQUFRLFNBQVM7SUFoQjdDOztRQWlCcUIsVUFBSyxHQUFHLE1BQU0sQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUM1QixlQUFVLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7S0FDM0Q7OzJHQUhZLGNBQWM7K0ZBQWQsY0FBYyxxVEN0QjNCLG9tQkFnQkEsNjdCREFZLFNBQVMsOENBQUUsT0FBTyxvRkFBRSx1QkFBdUI7MkZBTTFDLGNBQWM7a0JBaEIxQixTQUFTOytCQUNFLFVBQVUsY0FHUixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCLFdBQ1EsQ0FBQyxTQUFTLEVBQUUsT0FBTyxFQUFFLHVCQUF1QixDQUFDLGtCQUN0Qzt3QkFDZCxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQyxFQUFFO3dCQUM1RCxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsY0FBYyxDQUFDLEVBQUU7cUJBQ3hEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlLCBOZ0NsYXNzIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRCYXNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHsgUmFkaW9EaXJlY3RpdmUsIFJBRElPX0dST1VQX1RPS0VOLCBSQURJT19UT0tFTiB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1yYWRpbycsXG4gIHRlbXBsYXRlVXJsOiAnLi9yYWRpby5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3JhZGlvLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1yYWRpbycsXG4gIH0sXG4gIGltcG9ydHM6IFtBc3luY1BpcGUsIE5nQ2xhc3MsIE5hdGl2ZUlucHV0UmVmRGlyZWN0aXZlXSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICB7IGRpcmVjdGl2ZTogUmFkaW9EaXJlY3RpdmUsIGlucHV0czogWyd2YWx1ZScsICdkaXNhYmxlZCddIH0sXG4gICAgeyBkaXJlY3RpdmU6IElucHV0RGlyZWN0aXZlLCBpbnB1dHM6IFsnYXV0b2NvbXBsZXRlJ10gfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9Db21wb25lbnQgZXh0ZW5kcyBJbnB1dEJhc2Uge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgcmFkaW8gPSBpbmplY3QoUkFESU9fVE9LRU4pO1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgcmFkaW9Hcm91cCA9IGluamVjdChSQURJT19HUk9VUF9UT0tFTik7XG59XG4iLCI8aW5wdXRcbiAgW2F0dHIudGFiaW5kZXhdPVwiKHJhZGlvLmRpc2FibGVkJCB8IGFzeW5jKSA/IC0xIDogMFwiXG4gIFthdHRyLmNoZWNrZWRdPVwiKHJhZGlvLmNoZWNrZWQkIHwgYXN5bmMpIHx8IG51bGxcIlxuICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiaW5wdXQubGFiZWxJZCQgfCBhc3luY1wiXG4gIFthdHRyLmFyaWEtcmVxdWlyZWRdPVwiKGlucHV0LnJlcXVpcmVkJCB8IGFzeW5jKSB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cInJhZGlvLmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgW2F0dHIuaWRdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5uYW1lXT1cInJhZGlvR3JvdXAubmFtZVwiXG4gIChjbGljayk9XCJyYWRpby5fb25JbnB1dEludGVyYWN0aW9uKCRldmVudClcIlxuICAoYmx1cik9XCJyYWRpby5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtcmFkaW8tbmF0aXZlLWlucHV0XCJcbiAgdHlwZT1cInJhZGlvXCJcbiAgZXROYXRpdmVJbnB1dFJlZlxuLz5cblxuPGRpdiBbbmdDbGFzc109XCJ7ICdldC1yYWRpby1jaGVjay0tYWN0aXZlJzogcmFkaW8uY2hlY2tlZCQgfCBhc3luYyB9XCIgY2xhc3M9XCJldC1yYWRpby1jaGVja1wiPjwvZGl2PlxuIl19
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import { StaticFormFieldDirective } from '../../../../directives';
|
|
3
|
-
import { RadioFieldDirective } from '../../directives';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "../../../../directives/static-form-field/static-form-field.directive";
|
|
6
|
-
import * as i2 from "../../directives/radio-field/radio-field.directive";
|
|
7
|
-
export class RadioFieldComponent {
|
|
8
|
-
}
|
|
9
|
-
RadioFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
-
RadioFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioFieldComponent, isStandalone: true, selector: "et-radio-field", host: { classAttribute: "et-form-field et-radio-field" }, hostDirectives: [{ directive: i1.StaticFormFieldDirective }, { directive: i2.RadioFieldDirective }], ngImport: i0, template: `
|
|
11
|
-
<div class="et-radio-field-container">
|
|
12
|
-
<ng-content select="et-radio" />
|
|
13
|
-
<ng-content select="et-label" />
|
|
14
|
-
</div>
|
|
15
|
-
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldComponent, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'et-radio-field',
|
|
20
|
-
template: `
|
|
21
|
-
<div class="et-radio-field-container">
|
|
22
|
-
<ng-content select="et-radio" />
|
|
23
|
-
<ng-content select="et-label" />
|
|
24
|
-
</div>
|
|
25
|
-
`,
|
|
26
|
-
standalone: true,
|
|
27
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28
|
-
encapsulation: ViewEncapsulation.None,
|
|
29
|
-
host: {
|
|
30
|
-
class: 'et-form-field et-radio-field',
|
|
31
|
-
},
|
|
32
|
-
hostDirectives: [StaticFormFieldDirective, RadioFieldDirective],
|
|
33
|
-
}]
|
|
34
|
-
}] });
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1maWVsZC9yYWRpby1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQWtCdkQsTUFBTSxPQUFPLG1CQUFtQjs7Z0hBQW5CLG1CQUFtQjtvR0FBbkIsbUJBQW1CLHlPQWRwQjs7Ozs7R0FLVDsyRkFTVSxtQkFBbUI7a0JBaEIvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLFFBQVEsRUFBRTs7Ozs7R0FLVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLDhCQUE4QjtxQkFDdEM7b0JBQ0QsY0FBYyxFQUFFLENBQUMsd0JBQXdCLEVBQUUsbUJBQW1CLENBQUM7aUJBQ2hFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0YXRpY0Zvcm1GaWVsZERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUmFkaW9GaWVsZERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1yYWRpby1maWVsZCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImV0LXJhZGlvLWZpZWxkLWNvbnRhaW5lclwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtcmFkaW9cIiAvPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtbGFiZWxcIiAvPlxuICAgIDwvZGl2PlxuICBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtZm9ybS1maWVsZCBldC1yYWRpby1maWVsZCcsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbU3RhdGljRm9ybUZpZWxkRGlyZWN0aXZlLCBSYWRpb0ZpZWxkRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9GaWVsZENvbXBvbmVudCB7fVxuIl19
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, forwardRef, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import { DynamicFormGroupDirective, StaticFormGroupDirective, WriteableInputDirective } from '../../../../directives';
|
|
4
|
-
import { InputStateService } from '../../../../services';
|
|
5
|
-
import { ErrorComponent } from '../../../error';
|
|
6
|
-
import { RadioGroupDirective } from '../../directives';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
import * as i1 from "../../../../directives/static-form-group/static-form-group.directive";
|
|
9
|
-
import * as i2 from "../../../../directives/writeable-input/writeable-input.directive";
|
|
10
|
-
import * as i3 from "../../../../directives/dynamic-form-group/dynamic-form-group.directive";
|
|
11
|
-
import * as i4 from "../../directives/radio-group/radio-group.directive";
|
|
12
|
-
export class RadioGroupComponent {
|
|
13
|
-
constructor() {
|
|
14
|
-
this.inputState = inject(InputStateService);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
RadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
-
RadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioGroupComponent, isStandalone: true, selector: "et-radio-group", host: { classAttribute: "et-form-group et-radio-group" }, hostDirectives: [{ directive: i1.StaticFormGroupDirective }, { directive: i2.WriteableInputDirective }, { directive: i0.forwardRef(function () { return i3.DynamicFormGroupDirective; }), inputs: ["hideErrorMessage", "hideErrorMessage"] }, { directive: i4.RadioGroupDirective }], ngImport: i0, template: `
|
|
19
|
-
<div class="et-radio-group-container">
|
|
20
|
-
<ng-content select="et-radio-field" />
|
|
21
|
-
</div>
|
|
22
|
-
<et-error [errors]="inputState.errors$ | async" />
|
|
23
|
-
`, isInline: true, styles: [":where(.et-radio-group){display:block}\n"], dependencies: [{ kind: "component", type: ErrorComponent, selector: "et-error", inputs: ["errors"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupComponent, decorators: [{
|
|
25
|
-
type: Component,
|
|
26
|
-
args: [{ selector: 'et-radio-group', template: `
|
|
27
|
-
<div class="et-radio-group-container">
|
|
28
|
-
<ng-content select="et-radio-field" />
|
|
29
|
-
</div>
|
|
30
|
-
<et-error [errors]="inputState.errors$ | async" />
|
|
31
|
-
`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
32
|
-
class: 'et-form-group et-radio-group',
|
|
33
|
-
}, hostDirectives: [
|
|
34
|
-
StaticFormGroupDirective,
|
|
35
|
-
WriteableInputDirective,
|
|
36
|
-
{
|
|
37
|
-
directive: forwardRef(() => DynamicFormGroupDirective),
|
|
38
|
-
inputs: ['hideErrorMessage'],
|
|
39
|
-
},
|
|
40
|
-
RadioGroupDirective,
|
|
41
|
-
], imports: [ErrorComponent, AsyncPipe], styles: [":where(.et-radio-group){display:block}\n"] }]
|
|
42
|
-
}] });
|
|
43
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZ3JvdXAuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1ncm91cC9yYWRpby1ncm91cC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRyxPQUFPLEVBQUUseUJBQXlCLEVBQUUsd0JBQXdCLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN0SCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDaEQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7OztBQTRCdkQsTUFBTSxPQUFPLG1CQUFtQjtJQTFCaEM7UUEyQnFCLGVBQVUsR0FBRyxNQUFNLENBQUMsaUJBQWlCLENBQUMsQ0FBQztLQUMzRDs7Z0hBRlksbUJBQW1CO29HQUFuQixtQkFBbUIsMFpBeEJwQjs7Ozs7R0FLVCxrSEFpQlMsY0FBYyxvRUFBRSxTQUFTOzJGQUV4QixtQkFBbUI7a0JBMUIvQixTQUFTOytCQUNFLGdCQUFnQixZQUNoQjs7Ozs7R0FLVCxjQUVXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsOEJBQThCO3FCQUN0QyxrQkFDZTt3QkFDZCx3QkFBd0I7d0JBQ3hCLHVCQUF1Qjt3QkFDdkI7NEJBQ0UsU0FBUyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQzs0QkFDdEQsTUFBTSxFQUFFLENBQUMsa0JBQWtCLENBQUM7eUJBQzdCO3dCQUNELG1CQUFtQjtxQkFDcEIsV0FDUSxDQUFDLGNBQWMsRUFBRSxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgZm9yd2FyZFJlZiwgaW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRHluYW1pY0Zvcm1Hcm91cERpcmVjdGl2ZSwgU3RhdGljRm9ybUdyb3VwRGlyZWN0aXZlLCBXcml0ZWFibGVJbnB1dERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBFcnJvckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2Vycm9yJztcbmltcG9ydCB7IFJhZGlvR3JvdXBEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtcmFkaW8tZ3JvdXAnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJldC1yYWRpby1ncm91cC1jb250YWluZXJcIj5cbiAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImV0LXJhZGlvLWZpZWxkXCIgLz5cbiAgICA8L2Rpdj5cbiAgICA8ZXQtZXJyb3IgW2Vycm9yc109XCJpbnB1dFN0YXRlLmVycm9ycyQgfCBhc3luY1wiIC8+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL3JhZGlvLWdyb3VwLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1mb3JtLWdyb3VwIGV0LXJhZGlvLWdyb3VwJyxcbiAgfSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICBTdGF0aWNGb3JtR3JvdXBEaXJlY3RpdmUsXG4gICAgV3JpdGVhYmxlSW5wdXREaXJlY3RpdmUsXG4gICAge1xuICAgICAgZGlyZWN0aXZlOiBmb3J3YXJkUmVmKCgpID0+IER5bmFtaWNGb3JtR3JvdXBEaXJlY3RpdmUpLFxuICAgICAgaW5wdXRzOiBbJ2hpZGVFcnJvck1lc3NhZ2UnXSxcbiAgICB9LFxuICAgIFJhZGlvR3JvdXBEaXJlY3RpdmUsXG4gIF0sXG4gIGltcG9ydHM6IFtFcnJvckNvbXBvbmVudCwgQXN5bmNQaXBlXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9Hcm91cENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBpbnB1dFN0YXRlID0gaW5qZWN0KElucHV0U3RhdGVTZXJ2aWNlKTtcbn1cbiJdfQ==
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
-
import { Directive, inject, InjectionToken, Input } from '@angular/core';
|
|
3
|
-
import { createReactiveBindings, DestroyService } from '@ethlete/core';
|
|
4
|
-
import { BehaviorSubject, combineLatest, map } from 'rxjs';
|
|
5
|
-
import { INPUT_TOKEN } from '../../../../directives';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export const RADIO_TOKEN = new InjectionToken('ET_RADIO_DIRECTIVE_TOKEN');
|
|
8
|
-
export class RadioDirective {
|
|
9
|
-
constructor() {
|
|
10
|
-
this.input = inject(INPUT_TOKEN);
|
|
11
|
-
this._value$ = new BehaviorSubject(null);
|
|
12
|
-
this._disabled$ = new BehaviorSubject(false);
|
|
13
|
-
this.checked$ = combineLatest([this.input.value$, this._value$]).pipe(map(([inputValue, value]) => inputValue === value));
|
|
14
|
-
this.disabled$ = combineLatest([this.input.disabled$, this._disabled$]).pipe(map(([inputDisabled, disabled]) => inputDisabled || disabled));
|
|
15
|
-
this._bindings = createReactiveBindings({
|
|
16
|
-
attribute: ['class.et-radio--checked'],
|
|
17
|
-
observable: this.checked$,
|
|
18
|
-
}, {
|
|
19
|
-
attribute: ['class.et-radio--disabled'],
|
|
20
|
-
observable: this.disabled$,
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
get value() {
|
|
24
|
-
return this._value$.getValue();
|
|
25
|
-
}
|
|
26
|
-
set value(value) {
|
|
27
|
-
this._value$.next(value);
|
|
28
|
-
}
|
|
29
|
-
get disabled() {
|
|
30
|
-
return this._disabled$.getValue();
|
|
31
|
-
}
|
|
32
|
-
set disabled(value) {
|
|
33
|
-
this._disabled$.next(coerceBooleanProperty(value));
|
|
34
|
-
}
|
|
35
|
-
_onInputInteraction(event) {
|
|
36
|
-
event.stopPropagation();
|
|
37
|
-
if (this.disabled) {
|
|
38
|
-
return;
|
|
39
|
-
}
|
|
40
|
-
this.input._updateValue(this.value);
|
|
41
|
-
this.input._markAsTouched();
|
|
42
|
-
this.input._setShouldDisplayError(true);
|
|
43
|
-
}
|
|
44
|
-
_controlTouched() {
|
|
45
|
-
this.input._markAsTouched();
|
|
46
|
-
this.input._setShouldDisplayError(true);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
RadioDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
50
|
-
RadioDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioDirective, isStandalone: true, inputs: { value: "value", disabled: "disabled" }, providers: [{ provide: RADIO_TOKEN, useExisting: RadioDirective }, DestroyService], exportAs: ["etRadio"], ngImport: i0 });
|
|
51
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioDirective, decorators: [{
|
|
52
|
-
type: Directive,
|
|
53
|
-
args: [{
|
|
54
|
-
standalone: true,
|
|
55
|
-
providers: [{ provide: RADIO_TOKEN, useExisting: RadioDirective }, DestroyService],
|
|
56
|
-
exportAs: 'etRadio',
|
|
57
|
-
}]
|
|
58
|
-
}], propDecorators: { value: [{
|
|
59
|
-
type: Input
|
|
60
|
-
}], disabled: [{
|
|
61
|
-
type: Input
|
|
62
|
-
}] } });
|
|
63
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby9yYWRpby5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RSxPQUFPLEVBQUUsZUFBZSxFQUFFLGFBQWEsRUFBRSxHQUFHLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDM0QsT0FBTyxFQUFrQixXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7QUFHckUsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBTzFGLE1BQU0sT0FBTyxjQUFjO0lBTDNCO1FBTVcsVUFBSyxHQUFHLE1BQU0sQ0FBNkIsV0FBVyxDQUFDLENBQUM7UUFTekQsWUFBTyxHQUFHLElBQUksZUFBZSxDQUFhLElBQUksQ0FBQyxDQUFDO1FBU2hELGVBQVUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUV2QyxhQUFRLEdBQUcsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUN2RSxHQUFHLENBQUMsQ0FBQyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsRUFBRSxFQUFFLENBQUMsVUFBVSxLQUFLLEtBQUssQ0FBQyxDQUNuRCxDQUFDO1FBRU8sY0FBUyxHQUFHLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDOUUsR0FBRyxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsUUFBUSxDQUFDLEVBQUUsRUFBRSxDQUFDLGFBQWEsSUFBSSxRQUFRLENBQUMsQ0FDOUQsQ0FBQztRQUVPLGNBQVMsR0FBRyxzQkFBc0IsQ0FDekM7WUFDRSxTQUFTLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztZQUN0QyxVQUFVLEVBQUUsSUFBSSxDQUFDLFFBQVE7U0FDMUIsRUFDRDtZQUNFLFNBQVMsRUFBRSxDQUFDLDBCQUEwQixDQUFDO1lBQ3ZDLFVBQVUsRUFBRSxJQUFJLENBQUMsU0FBUztTQUMzQixDQUNGLENBQUM7S0FtQkg7SUF0REMsSUFDSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ2pDLENBQUM7SUFDRCxJQUFJLEtBQUssQ0FBQyxLQUFpQjtRQUN6QixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBR0QsSUFDSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFDRCxJQUFJLFFBQVEsQ0FBQyxLQUFtQjtRQUM5QixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ3JELENBQUM7SUFzQkQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2pCLE9BQU87U0FDUjtRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVwQyxJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQzs7MkdBeERVLGNBQWM7K0ZBQWQsY0FBYyxtRkFIZCxDQUFDLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLEVBQUUsY0FBYyxFQUFFLEVBQUUsY0FBYyxDQUFDOzJGQUd2RSxjQUFjO2tCQUwxQixTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxFQUFFLGNBQWMsQ0FBQztvQkFDbEYsUUFBUSxFQUFFLFNBQVM7aUJBQ3BCOzhCQUtLLEtBQUs7c0JBRFIsS0FBSztnQkFVRixRQUFRO3NCQURYLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCb29sZWFuSW5wdXQsIGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzLCBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCBtYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBJTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUmFkaW9WYWx1ZSB9IGZyb20gJy4uLy4uL3R5cGVzJztcblxuZXhwb3J0IGNvbnN0IFJBRElPX1RPS0VOID0gbmV3IEluamVjdGlvblRva2VuPFJhZGlvRGlyZWN0aXZlPignRVRfUkFESU9fRElSRUNUSVZFX1RPS0VOJyk7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFJBRElPX1RPS0VOLCB1c2VFeGlzdGluZzogUmFkaW9EaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW8nLFxufSlcbmV4cG9ydCBjbGFzcyBSYWRpb0RpcmVjdGl2ZSB7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPFJhZGlvVmFsdWU+PihJTlBVVF9UT0tFTik7XG5cbiAgQElucHV0KClcbiAgZ2V0IHZhbHVlKCkge1xuICAgIHJldHVybiB0aGlzLl92YWx1ZSQuZ2V0VmFsdWUoKTtcbiAgfVxuICBzZXQgdmFsdWUodmFsdWU6IFJhZGlvVmFsdWUpIHtcbiAgICB0aGlzLl92YWx1ZSQubmV4dCh2YWx1ZSk7XG4gIH1cbiAgcHJpdmF0ZSBfdmFsdWUkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxSYWRpb1ZhbHVlPihudWxsKTtcblxuICBASW5wdXQoKVxuICBnZXQgZGlzYWJsZWQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2Rpc2FibGVkJC5nZXRWYWx1ZSgpO1xuICB9XG4gIHNldCBkaXNhYmxlZCh2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fZGlzYWJsZWQkLm5leHQoY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKSk7XG4gIH1cbiAgcHJpdmF0ZSBfZGlzYWJsZWQkID0gbmV3IEJlaGF2aW9yU3ViamVjdChmYWxzZSk7XG5cbiAgcmVhZG9ubHkgY2hlY2tlZCQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LnZhbHVlJCwgdGhpcy5fdmFsdWUkXSkucGlwZShcbiAgICBtYXAoKFtpbnB1dFZhbHVlLCB2YWx1ZV0pID0+IGlucHV0VmFsdWUgPT09IHZhbHVlKSxcbiAgKTtcblxuICByZWFkb25seSBkaXNhYmxlZCQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LmRpc2FibGVkJCwgdGhpcy5fZGlzYWJsZWQkXSkucGlwZShcbiAgICBtYXAoKFtpbnB1dERpc2FibGVkLCBkaXNhYmxlZF0pID0+IGlucHV0RGlzYWJsZWQgfHwgZGlzYWJsZWQpLFxuICApO1xuXG4gIHJlYWRvbmx5IF9iaW5kaW5ncyA9IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MoXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXJhZGlvLS1jaGVja2VkJ10sXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLmNoZWNrZWQkLFxuICAgIH0sXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXJhZGlvLS1kaXNhYmxlZCddLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5kaXNhYmxlZCQsXG4gICAgfSxcbiAgKTtcblxuICBfb25JbnB1dEludGVyYWN0aW9uKGV2ZW50OiBFdmVudCkge1xuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuXG4gICAgaWYgKHRoaXMuZGlzYWJsZWQpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh0aGlzLnZhbHVlKTtcblxuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cblxuICBfY29udHJvbFRvdWNoZWQoKSB7XG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICAgIHRoaXMuaW5wdXQuX3NldFNob3VsZERpc3BsYXlFcnJvcih0cnVlKTtcbiAgfVxufVxuIl19
|