@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
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createDestroy } 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 NUMBER_INPUT_TOKEN = new InjectionToken('ET_NUMBER_INPUT_DIRECTIVE_TOKEN');
|
|
7
|
+
class NumberInputDirective {
|
|
8
|
+
constructor() {
|
|
9
|
+
this._destroy$ = createDestroy();
|
|
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
|
+
const val = value !== null ? `${value}` : '';
|
|
18
|
+
if (val !== nativeInputRef.element.nativeElement.value) {
|
|
19
|
+
nativeInputRef.element.nativeElement.value = val;
|
|
20
|
+
}
|
|
21
|
+
}), takeUntil(this._destroy$))
|
|
22
|
+
.subscribe();
|
|
23
|
+
}
|
|
24
|
+
_onInputInteraction(event) {
|
|
25
|
+
event.stopPropagation();
|
|
26
|
+
const input = event.target;
|
|
27
|
+
const value = input.valueAsNumber;
|
|
28
|
+
if (Number.isNaN(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
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NumberInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
41
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: NumberInputDirective, isStandalone: true, providers: [{ provide: NUMBER_INPUT_TOKEN, useExisting: NumberInputDirective }], exportAs: ["etNumberInput"], ngImport: i0 }); }
|
|
42
|
+
}
|
|
43
|
+
export { NumberInputDirective };
|
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NumberInputDirective, decorators: [{
|
|
45
|
+
type: Directive,
|
|
46
|
+
args: [{
|
|
47
|
+
standalone: true,
|
|
48
|
+
exportAs: 'etNumberInput',
|
|
49
|
+
providers: [{ provide: NUMBER_INPUT_TOKEN, useExisting: NumberInputDirective }],
|
|
50
|
+
}]
|
|
51
|
+
}] });
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWlucHV0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2RpcmVjdGl2ZXMvbnVtYmVyLWlucHV0L251bWJlci1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUMsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxXQUFXLEVBQWtCLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLElBQUksY0FBYyxDQUF1QixpQ0FBaUMsQ0FBQyxDQUFDO0FBRTlHLE1BS2Esb0JBQW9CO0lBTGpDO1FBTW1CLGNBQVMsR0FBRyxhQUFhLEVBQUUsQ0FBQztRQUNwQyxVQUFLLEdBQUcsTUFBTSxDQUFnQyxXQUFXLENBQUMsQ0FBQztLQXNDckU7SUFwQ0MsUUFBUTtRQUNOLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7YUFDM0QsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLGNBQWMsQ0FBQyxFQUFFLEVBQUU7WUFDOUIsSUFBSSxDQUFDLGNBQWM7Z0JBQUUsT0FBTztZQUU1QixNQUFNLEdBQUcsR0FBRyxLQUFLLEtBQUssSUFBSSxDQUFDLENBQUMsQ0FBQyxHQUFHLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUM7WUFFN0MsSUFBSSxHQUFHLEtBQUssY0FBYyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO2dCQUN0RCxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsR0FBRyxDQUFDO2FBQ2xEO1FBQ0gsQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQTBCLENBQUM7UUFDL0MsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLGFBQWEsQ0FBQztRQUVsQyxJQUFJLE1BQU0sQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLEVBQUU7WUFDdkIsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDL0I7YUFBTTtZQUNMLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO1FBRUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUM5QixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDOzhHQXZDVSxvQkFBb0I7a0dBQXBCLG9CQUFvQixpQ0FGcEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxXQUFXLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQzs7U0FFcEUsb0JBQW9COzJGQUFwQixvQkFBb0I7a0JBTGhDLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxlQUFlO29CQUN6QixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxXQUFXLHNCQUFzQixFQUFFLENBQUM7aUJBQ2hGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbmplY3QsIEluamVjdGlvblRva2VuLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGNyZWF0ZURlc3Ryb3kgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIHRha2VVbnRpbCwgdGFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJTlBVVF9UT0tFTiwgSW5wdXREaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcblxuZXhwb3J0IGNvbnN0IE5VTUJFUl9JTlBVVF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxOdW1iZXJJbnB1dERpcmVjdGl2ZT4oJ0VUX05VTUJFUl9JTlBVVF9ESVJFQ1RJVkVfVE9LRU4nKTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGV4cG9ydEFzOiAnZXROdW1iZXJJbnB1dCcsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogTlVNQkVSX0lOUFVUX1RPS0VOLCB1c2VFeGlzdGluZzogTnVtYmVySW5wdXREaXJlY3RpdmUgfV0sXG59KVxuZXhwb3J0IGNsYXNzIE51bWJlcklucHV0RGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveSQgPSBjcmVhdGVEZXN0cm95KCk7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPG51bWJlciB8IG51bGw+PihJTlBVVF9UT0tFTik7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgY29tYmluZUxhdGVzdChbdGhpcy5pbnB1dC52YWx1ZSQsIHRoaXMuaW5wdXQubmF0aXZlSW5wdXRSZWYkXSlcbiAgICAgIC5waXBlKFxuICAgICAgICB0YXAoKFt2YWx1ZSwgbmF0aXZlSW5wdXRSZWZdKSA9PiB7XG4gICAgICAgICAgaWYgKCFuYXRpdmVJbnB1dFJlZikgcmV0dXJuO1xuXG4gICAgICAgICAgY29uc3QgdmFsID0gdmFsdWUgIT09IG51bGwgPyBgJHt2YWx1ZX1gIDogJyc7XG5cbiAgICAgICAgICBpZiAodmFsICE9PSBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUpIHtcbiAgICAgICAgICAgIG5hdGl2ZUlucHV0UmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZSA9IHZhbDtcbiAgICAgICAgICB9XG4gICAgICAgIH0pLFxuICAgICAgICB0YWtlVW50aWwodGhpcy5fZGVzdHJveSQpLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuICB9XG5cbiAgX29uSW5wdXRJbnRlcmFjdGlvbihldmVudDogRXZlbnQpIHtcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcblxuICAgIGNvbnN0IGlucHV0ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQ7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC52YWx1ZUFzTnVtYmVyO1xuXG4gICAgaWYgKE51bWJlci5pc05hTih2YWx1ZSkpIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKG51bGwpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICB9XG5cbiAgX2NvbnRyb2xUb3VjaGVkKCkge1xuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createDestroy } 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
|
+
class PasswordInputDirective {
|
|
8
|
+
constructor() {
|
|
9
|
+
this._destroy$ = createDestroy();
|
|
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
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: PasswordInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
44
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: PasswordInputDirective, isStandalone: true, providers: [{ provide: PASSWORD_INPUT_TOKEN, useExisting: PasswordInputDirective }], exportAs: ["etPasswordInput"], ngImport: i0 }); }
|
|
45
|
+
}
|
|
46
|
+
export { PasswordInputDirective };
|
|
47
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: PasswordInputDirective, decorators: [{
|
|
48
|
+
type: Directive,
|
|
49
|
+
args: [{
|
|
50
|
+
standalone: true,
|
|
51
|
+
exportAs: 'etPasswordInput',
|
|
52
|
+
providers: [{ provide: PASSWORD_INPUT_TOKEN, useExisting: PasswordInputDirective }],
|
|
53
|
+
}]
|
|
54
|
+
}] });
|
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtaW5wdXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvZGlyZWN0aXZlcy9wYXNzd29yZC1pbnB1dC9wYXNzd29yZC1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUMsT0FBTyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsU0FBUyxFQUFFLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUN0RSxPQUFPLEVBQUUsV0FBVyxFQUFrQixNQUFNLHdCQUF3QixDQUFDOztBQUVyRSxNQUFNLENBQUMsTUFBTSxvQkFBb0IsR0FBRyxJQUFJLGNBQWMsQ0FBeUIsbUNBQW1DLENBQUMsQ0FBQztBQUVwSCxNQUthLHNCQUFzQjtJQUxuQztRQU1tQixjQUFTLEdBQUcsYUFBYSxFQUFFLENBQUM7UUFDcEMsVUFBSyxHQUFHLE1BQU0sQ0FBZ0MsV0FBVyxDQUFDLENBQUM7UUFDM0Qsa0JBQWEsR0FBRyxJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztLQXdDckQ7SUF0Q0MsUUFBUTtRQUNOLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7YUFDM0QsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLGNBQWMsQ0FBQyxFQUFFLEVBQUU7WUFDOUIsSUFBSSxDQUFDLGNBQWM7Z0JBQUUsT0FBTztZQUU1QixJQUFJLEtBQUssS0FBSyxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUU7Z0JBQ3hELGNBQWMsQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLEtBQUssR0FBRyxLQUFLLElBQUksRUFBRSxDQUFDO2FBQzFEO1FBQ0gsQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQTBCLENBQUM7UUFDL0MsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQztRQUUxQixJQUFJLEtBQUssS0FBSyxFQUFFLEVBQUU7WUFDaEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDL0I7YUFBTTtZQUNMLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO1FBRUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUM5QixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRUQsbUJBQW1CO1FBQ2pCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNyRCxDQUFDOzhHQTFDVSxzQkFBc0I7a0dBQXRCLHNCQUFzQixpQ0FGdEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLEVBQUUsc0JBQXNCLEVBQUUsQ0FBQzs7U0FFeEUsc0JBQXNCOzJGQUF0QixzQkFBc0I7a0JBTGxDLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsd0JBQXdCLEVBQUUsQ0FBQztpQkFDcEYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgY3JlYXRlRGVzdHJveSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCB0YWtlVW50aWwsIHRhcCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSU5QVVRfVE9LRU4sIElucHV0RGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5cbmV4cG9ydCBjb25zdCBQQVNTV09SRF9JTlBVVF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxQYXNzd29yZElucHV0RGlyZWN0aXZlPignRVRfUEFTU1dPUkRfSU5QVVRfRElSRUNUSVZFX1RPS0VOJyk7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBleHBvcnRBczogJ2V0UGFzc3dvcmRJbnB1dCcsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogUEFTU1dPUkRfSU5QVVRfVE9LRU4sIHVzZUV4aXN0aW5nOiBQYXNzd29yZElucHV0RGlyZWN0aXZlIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBQYXNzd29yZElucHV0RGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveSQgPSBjcmVhdGVEZXN0cm95KCk7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPHN0cmluZyB8IG51bGw+PihJTlBVVF9UT0tFTik7XG4gIHJlYWRvbmx5IHNob3dQYXNzd29yZCQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0KGZhbHNlKTtcblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LnZhbHVlJCwgdGhpcy5pbnB1dC5uYXRpdmVJbnB1dFJlZiRdKVxuICAgICAgLnBpcGUoXG4gICAgICAgIHRhcCgoW3ZhbHVlLCBuYXRpdmVJbnB1dFJlZl0pID0+IHtcbiAgICAgICAgICBpZiAoIW5hdGl2ZUlucHV0UmVmKSByZXR1cm47XG5cbiAgICAgICAgICBpZiAodmFsdWUgIT09IG5hdGl2ZUlucHV0UmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZSkge1xuICAgICAgICAgICAgbmF0aXZlSW5wdXRSZWYuZWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlID0gdmFsdWUgPz8gJyc7XG4gICAgICAgICAgfVxuICAgICAgICB9KSxcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kkKSxcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoKTtcbiAgfVxuXG4gIF9vbklucHV0SW50ZXJhY3Rpb24oZXZlbnQ6IEV2ZW50KSB7XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG5cbiAgICBjb25zdCBpbnB1dCA9IGV2ZW50LnRhcmdldCBhcyBIVE1MSW5wdXRFbGVtZW50O1xuICAgIGNvbnN0IHZhbHVlID0gaW5wdXQudmFsdWU7XG5cbiAgICBpZiAodmFsdWUgPT09ICcnKSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZShudWxsKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5pbnB1dC5fdXBkYXRlVmFsdWUodmFsdWUpO1xuICAgIH1cblxuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgfVxuXG4gIF9jb250cm9sVG91Y2hlZCgpIHtcbiAgICB0aGlzLmlucHV0Ll9tYXJrQXNUb3VjaGVkKCk7XG4gICAgdGhpcy5pbnB1dC5fc2V0U2hvdWxkRGlzcGxheUVycm9yKHRydWUpO1xuICB9XG5cbiAgX3RvZ2dsZVNob3dQYXNzd29yZCgpIHtcbiAgICB0aGlzLnNob3dQYXNzd29yZCQubmV4dCghdGhpcy5zaG93UGFzc3dvcmQkLnZhbHVlKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createDestroy } 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
|
+
class SearchInputDirective {
|
|
8
|
+
constructor() {
|
|
9
|
+
this._destroy$ = createDestroy();
|
|
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
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: SearchInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
44
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: SearchInputDirective, isStandalone: true, providers: [{ provide: SEARCH_INPUT_TOKEN, useExisting: SearchInputDirective }], exportAs: ["etSearchInput"], ngImport: i0 }); }
|
|
45
|
+
}
|
|
46
|
+
export { SearchInputDirective };
|
|
47
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: SearchInputDirective, decorators: [{
|
|
48
|
+
type: Directive,
|
|
49
|
+
args: [{
|
|
50
|
+
standalone: true,
|
|
51
|
+
exportAs: 'etSearchInput',
|
|
52
|
+
providers: [{ provide: SEARCH_INPUT_TOKEN, useExisting: SearchInputDirective }],
|
|
53
|
+
}]
|
|
54
|
+
}] });
|
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2RpcmVjdGl2ZXMvc2VhcmNoLWlucHV0L3NlYXJjaC1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUMsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxXQUFXLEVBQWtCLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLElBQUksY0FBYyxDQUF1QixpQ0FBaUMsQ0FBQyxDQUFDO0FBRTlHLE1BS2Esb0JBQW9CO0lBTGpDO1FBTW1CLGNBQVMsR0FBRyxhQUFhLEVBQUUsQ0FBQztRQUNwQyxVQUFLLEdBQUcsTUFBTSxDQUFnQyxXQUFXLENBQUMsQ0FBQztLQXlDckU7SUF2Q0MsUUFBUTtRQUNOLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7YUFDM0QsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLGNBQWMsQ0FBQyxFQUFFLEVBQUU7WUFDOUIsSUFBSSxDQUFDLGNBQWM7Z0JBQUUsT0FBTztZQUU1QixJQUFJLEtBQUssS0FBSyxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUU7Z0JBQ3hELGNBQWMsQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLEtBQUssR0FBRyxLQUFLLElBQUksRUFBRSxDQUFDO2FBQzFEO1FBQ0gsQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQTBCLENBQUM7UUFDL0MsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQztRQUUxQixJQUFJLEtBQUssS0FBSyxFQUFFLEVBQUU7WUFDaEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDL0I7YUFBTTtZQUNMLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO1FBRUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUM5QixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQzlCLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUN6QixDQUFDOzhHQTFDVSxvQkFBb0I7a0dBQXBCLG9CQUFvQixpQ0FGcEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxXQUFXLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQzs7U0FFcEUsb0JBQW9COzJGQUFwQixvQkFBb0I7a0JBTGhDLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxlQUFlO29CQUN6QixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxXQUFXLHNCQUFzQixFQUFFLENBQUM7aUJBQ2hGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbmplY3QsIEluamVjdGlvblRva2VuLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGNyZWF0ZURlc3Ryb3kgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIHRha2VVbnRpbCwgdGFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJTlBVVF9UT0tFTiwgSW5wdXREaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcblxuZXhwb3J0IGNvbnN0IFNFQVJDSF9JTlBVVF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxTZWFyY2hJbnB1dERpcmVjdGl2ZT4oJ0VUX1NFQVJDSF9JTlBVVF9ESVJFQ1RJVkVfVE9LRU4nKTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGV4cG9ydEFzOiAnZXRTZWFyY2hJbnB1dCcsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogU0VBUkNIX0lOUFVUX1RPS0VOLCB1c2VFeGlzdGluZzogU2VhcmNoSW5wdXREaXJlY3RpdmUgfV0sXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaElucHV0RGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveSQgPSBjcmVhdGVEZXN0cm95KCk7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPHN0cmluZyB8IG51bGw+PihJTlBVVF9UT0tFTik7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgY29tYmluZUxhdGVzdChbdGhpcy5pbnB1dC52YWx1ZSQsIHRoaXMuaW5wdXQubmF0aXZlSW5wdXRSZWYkXSlcbiAgICAgIC5waXBlKFxuICAgICAgICB0YXAoKFt2YWx1ZSwgbmF0aXZlSW5wdXRSZWZdKSA9PiB7XG4gICAgICAgICAgaWYgKCFuYXRpdmVJbnB1dFJlZikgcmV0dXJuO1xuXG4gICAgICAgICAgaWYgKHZhbHVlICE9PSBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUpIHtcbiAgICAgICAgICAgIG5hdGl2ZUlucHV0UmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZSA9IHZhbHVlID8/ICcnO1xuICAgICAgICAgIH1cbiAgICAgICAgfSksXG4gICAgICAgIHRha2VVbnRpbCh0aGlzLl9kZXN0cm95JCksXG4gICAgICApXG4gICAgICAuc3Vic2NyaWJlKCk7XG4gIH1cblxuICBfb25JbnB1dEludGVyYWN0aW9uKGV2ZW50OiBFdmVudCkge1xuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuXG4gICAgY29uc3QgaW5wdXQgPSBldmVudC50YXJnZXQgYXMgSFRNTElucHV0RWxlbWVudDtcbiAgICBjb25zdCB2YWx1ZSA9IGlucHV0LnZhbHVlO1xuXG4gICAgaWYgKHZhbHVlID09PSAnJykge1xuICAgICAgdGhpcy5pbnB1dC5fdXBkYXRlVmFsdWUobnVsbCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKHZhbHVlKTtcbiAgICB9XG5cbiAgICB0aGlzLmlucHV0Ll9tYXJrQXNUb3VjaGVkKCk7XG4gIH1cblxuICBfY29udHJvbFRvdWNoZWQoKSB7XG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICAgIHRoaXMuaW5wdXQuX3NldFNob3VsZERpc3BsYXlFcnJvcih0cnVlKTtcbiAgfVxuXG4gIF9jbGVhcigpIHtcbiAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZShudWxsKTtcbiAgICB0aGlzLl9jb250cm9sVG91Y2hlZCgpO1xuICB9XG59XG4iXX0=
|
package/esm2022/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createDestroy } 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
|
+
class TextInputDirective {
|
|
8
|
+
constructor() {
|
|
9
|
+
this._destroy$ = createDestroy();
|
|
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
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: TextInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
40
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: TextInputDirective, isStandalone: true, providers: [{ provide: TEXT_INPUT_TOKEN, useExisting: TextInputDirective }], exportAs: ["etTextInput"], ngImport: i0 }); }
|
|
41
|
+
}
|
|
42
|
+
export { TextInputDirective };
|
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: TextInputDirective, decorators: [{
|
|
44
|
+
type: Directive,
|
|
45
|
+
args: [{
|
|
46
|
+
standalone: true,
|
|
47
|
+
exportAs: 'etTextInput',
|
|
48
|
+
providers: [{ provide: TEXT_INPUT_TOKEN, useExisting: TextInputDirective }],
|
|
49
|
+
}]
|
|
50
|
+
}] });
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1pbnB1dC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9pbnB1dC9kaXJlY3RpdmVzL3RleHQtaW5wdXQvdGV4dC1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUMsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxXQUFXLEVBQWtCLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLElBQUksY0FBYyxDQUFxQiwrQkFBK0IsQ0FBQyxDQUFDO0FBRXhHLE1BS2Esa0JBQWtCO0lBTC9CO1FBTW1CLGNBQVMsR0FBRyxhQUFhLEVBQUUsQ0FBQztRQUNwQyxVQUFLLEdBQUcsTUFBTSxDQUFnQyxXQUFXLENBQUMsQ0FBQztLQW9DckU7SUFsQ0MsUUFBUTtRQUNOLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7YUFDM0QsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLGNBQWMsQ0FBQyxFQUFFLEVBQUU7WUFDOUIsSUFBSSxDQUFDLGNBQWM7Z0JBQUUsT0FBTztZQUU1QixJQUFJLEtBQUssS0FBSyxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUU7Z0JBQ3hELGNBQWMsQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLEtBQUssR0FBRyxLQUFLLElBQUksRUFBRSxDQUFDO2FBQzFEO1FBQ0gsQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQTBCLENBQUM7UUFDL0MsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQztRQUUxQixJQUFJLEtBQUssS0FBSyxFQUFFLEVBQUU7WUFDaEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDL0I7YUFBTTtZQUNMLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO1FBRUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUM5QixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDOzhHQXJDVSxrQkFBa0I7a0dBQWxCLGtCQUFrQixpQ0FGbEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsQ0FBQzs7U0FFaEUsa0JBQWtCOzJGQUFsQixrQkFBa0I7a0JBTDlCLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxhQUFhO29CQUN2QixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLG9CQUFvQixFQUFFLENBQUM7aUJBQzVFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbmplY3QsIEluamVjdGlvblRva2VuLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGNyZWF0ZURlc3Ryb3kgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIHRha2VVbnRpbCwgdGFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJTlBVVF9UT0tFTiwgSW5wdXREaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcblxuZXhwb3J0IGNvbnN0IFRFWFRfSU5QVVRfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48VGV4dElucHV0RGlyZWN0aXZlPignRVRfVEVYVF9JTlBVVF9ESVJFQ1RJVkVfVE9LRU4nKTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGV4cG9ydEFzOiAnZXRUZXh0SW5wdXQnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFRFWFRfSU5QVVRfVE9LRU4sIHVzZUV4aXN0aW5nOiBUZXh0SW5wdXREaXJlY3RpdmUgfV0sXG59KVxuZXhwb3J0IGNsYXNzIFRleHRJbnB1dERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kkID0gY3JlYXRlRGVzdHJveSgpO1xuICByZWFkb25seSBpbnB1dCA9IGluamVjdDxJbnB1dERpcmVjdGl2ZTxzdHJpbmcgfCBudWxsPj4oSU5QVVRfVE9LRU4pO1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIGNvbWJpbmVMYXRlc3QoW3RoaXMuaW5wdXQudmFsdWUkLCB0aGlzLmlucHV0Lm5hdGl2ZUlucHV0UmVmJF0pXG4gICAgICAucGlwZShcbiAgICAgICAgdGFwKChbdmFsdWUsIG5hdGl2ZUlucHV0UmVmXSkgPT4ge1xuICAgICAgICAgIGlmICghbmF0aXZlSW5wdXRSZWYpIHJldHVybjtcblxuICAgICAgICAgIGlmICh2YWx1ZSAhPT0gbmF0aXZlSW5wdXRSZWYuZWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlKSB7XG4gICAgICAgICAgICBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUgPSB2YWx1ZSA/PyAnJztcbiAgICAgICAgICB9XG4gICAgICAgIH0pLFxuICAgICAgICB0YWtlVW50aWwodGhpcy5fZGVzdHJveSQpLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuICB9XG5cbiAgX29uSW5wdXRJbnRlcmFjdGlvbihldmVudDogRXZlbnQpIHtcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcblxuICAgIGNvbnN0IGlucHV0ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQ7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC52YWx1ZTtcblxuICAgIGlmICh2YWx1ZSA9PT0gJycpIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKG51bGwpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICB9XG5cbiAgX2NvbnRyb2xUb3VjaGVkKCkge1xuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Directive, inject, InjectionToken } from '@angular/core';
|
|
2
|
+
import { createDestroy } 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
|
+
class TextareaInputDirective {
|
|
8
|
+
constructor() {
|
|
9
|
+
this._destroy$ = createDestroy();
|
|
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
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: TextareaInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
40
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: TextareaInputDirective, isStandalone: true, providers: [{ provide: TEXTAREA_INPUT_TOKEN, useExisting: TextareaInputDirective }], exportAs: ["etTextareaInput"], ngImport: i0 }); }
|
|
41
|
+
}
|
|
42
|
+
export { TextareaInputDirective };
|
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: TextareaInputDirective, decorators: [{
|
|
44
|
+
type: Directive,
|
|
45
|
+
args: [{
|
|
46
|
+
standalone: true,
|
|
47
|
+
exportAs: 'etTextareaInput',
|
|
48
|
+
providers: [{ provide: TEXTAREA_INPUT_TOKEN, useExisting: TextareaInputDirective }],
|
|
49
|
+
}]
|
|
50
|
+
}] });
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEtaW5wdXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvZGlyZWN0aXZlcy90ZXh0YXJlYS1pbnB1dC90ZXh0YXJlYS1pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUMsT0FBTyxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxXQUFXLEVBQWtCLE1BQU0sd0JBQXdCLENBQUM7O0FBRXJFLE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLElBQUksY0FBYyxDQUF5QixtQ0FBbUMsQ0FBQyxDQUFDO0FBRXBILE1BS2Esc0JBQXNCO0lBTG5DO1FBTW1CLGNBQVMsR0FBRyxhQUFhLEVBQUUsQ0FBQztRQUNwQyxVQUFLLEdBQUcsTUFBTSxDQUFnQyxXQUFXLENBQUMsQ0FBQztLQW9DckU7SUFsQ0MsUUFBUTtRQUNOLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7YUFDM0QsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLGNBQWMsQ0FBQyxFQUFFLEVBQUU7WUFDOUIsSUFBSSxDQUFDLGNBQWM7Z0JBQUUsT0FBTztZQUU1QixJQUFJLEtBQUssS0FBSyxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUU7Z0JBQ3hELGNBQWMsQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLEtBQUssR0FBRyxLQUFLLElBQUksRUFBRSxDQUFDO2FBQzFEO1FBQ0gsQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLEVBQUUsQ0FBQztJQUNqQixDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQTZCLENBQUM7UUFDbEQsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQztRQUUxQixJQUFJLEtBQUssS0FBSyxFQUFFLEVBQUU7WUFDaEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDL0I7YUFBTTtZQUNMLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO1FBRUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUM5QixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMxQyxDQUFDOzhHQXJDVSxzQkFBc0I7a0dBQXRCLHNCQUFzQixpQ0FGdEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLEVBQUUsc0JBQXNCLEVBQUUsQ0FBQzs7U0FFeEUsc0JBQXNCOzJGQUF0QixzQkFBc0I7a0JBTGxDLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsd0JBQXdCLEVBQUUsQ0FBQztpQkFDcEYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgY3JlYXRlRGVzdHJveSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgY29tYmluZUxhdGVzdCwgdGFrZVVudGlsLCB0YXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElOUFVUX1RPS0VOLCBJbnB1dERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5leHBvcnQgY29uc3QgVEVYVEFSRUFfSU5QVVRfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48VGV4dGFyZWFJbnB1dERpcmVjdGl2ZT4oJ0VUX1RFWFRBUkVBX0lOUFVUX0RJUkVDVElWRV9UT0tFTicpO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldFRleHRhcmVhSW5wdXQnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFRFWFRBUkVBX0lOUFVUX1RPS0VOLCB1c2VFeGlzdGluZzogVGV4dGFyZWFJbnB1dERpcmVjdGl2ZSB9XSxcbn0pXG5leHBvcnQgY2xhc3MgVGV4dGFyZWFJbnB1dERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kkID0gY3JlYXRlRGVzdHJveSgpO1xuICByZWFkb25seSBpbnB1dCA9IGluamVjdDxJbnB1dERpcmVjdGl2ZTxzdHJpbmcgfCBudWxsPj4oSU5QVVRfVE9LRU4pO1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIGNvbWJpbmVMYXRlc3QoW3RoaXMuaW5wdXQudmFsdWUkLCB0aGlzLmlucHV0Lm5hdGl2ZUlucHV0UmVmJF0pXG4gICAgICAucGlwZShcbiAgICAgICAgdGFwKChbdmFsdWUsIG5hdGl2ZUlucHV0UmVmXSkgPT4ge1xuICAgICAgICAgIGlmICghbmF0aXZlSW5wdXRSZWYpIHJldHVybjtcblxuICAgICAgICAgIGlmICh2YWx1ZSAhPT0gbmF0aXZlSW5wdXRSZWYuZWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlKSB7XG4gICAgICAgICAgICBuYXRpdmVJbnB1dFJlZi5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWUgPSB2YWx1ZSA/PyAnJztcbiAgICAgICAgICB9XG4gICAgICAgIH0pLFxuICAgICAgICB0YWtlVW50aWwodGhpcy5fZGVzdHJveSQpLFxuICAgICAgKVxuICAgICAgLnN1YnNjcmliZSgpO1xuICB9XG5cbiAgX29uSW5wdXRJbnRlcmFjdGlvbihldmVudDogRXZlbnQpIHtcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcblxuICAgIGNvbnN0IGlucHV0ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxUZXh0QXJlYUVsZW1lbnQ7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC52YWx1ZTtcblxuICAgIGlmICh2YWx1ZSA9PT0gJycpIHtcbiAgICAgIHRoaXMuaW5wdXQuX3VwZGF0ZVZhbHVlKG51bGwpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICB9XG5cbiAgX2NvbnRyb2xUb3VjaGVkKCkge1xuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IfInputEmptyDirective, IfInputFilledDirective, InputPrefixDirective, InputSuffixDirective, } from '../../directives';
|
|
2
|
+
import { LabelComponent } from '../label';
|
|
2
3
|
import { EmailInputComponent, InputFieldComponent, NumberInputComponent, PasswordInputComponent, SearchInputComponent, TextInputComponent, TextareaInputComponent, } from './components';
|
|
3
4
|
import { PasswordInputToggleComponent, SearchInputClearComponent } from './partials';
|
|
4
5
|
export const InputImports = [
|
|
@@ -15,5 +16,6 @@ export const InputImports = [
|
|
|
15
16
|
IfInputEmptyDirective,
|
|
16
17
|
SearchInputClearComponent,
|
|
17
18
|
EmailInputComponent,
|
|
19
|
+
LabelComponent,
|
|
18
20
|
];
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQuaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L2lucHV0LmltcG9ydHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHFCQUFxQixFQUNyQixzQkFBc0IsRUFDdEIsb0JBQW9CLEVBQ3BCLG9CQUFvQixHQUNyQixNQUFNLGtCQUFrQixDQUFDO0FBQzFCLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFDMUMsT0FBTyxFQUNMLG1CQUFtQixFQUNuQixtQkFBbUIsRUFDbkIsb0JBQW9CLEVBQ3BCLHNCQUFzQixFQUN0QixvQkFBb0IsRUFDcEIsa0JBQWtCLEVBQ2xCLHNCQUFzQixHQUN2QixNQUFNLGNBQWMsQ0FBQztBQUN0QixPQUFPLEVBQUUsNEJBQTRCLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFFckYsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHO0lBQzFCLG1CQUFtQjtJQUNuQixvQkFBb0I7SUFDcEIsb0JBQW9CO0lBQ3BCLHNCQUFzQjtJQUN0Qiw0QkFBNEI7SUFDNUIsa0JBQWtCO0lBQ2xCLHNCQUFzQjtJQUN0QixvQkFBb0I7SUFDcEIsb0JBQW9CO0lBQ3BCLHNCQUFzQjtJQUN0QixxQkFBcUI7SUFDckIseUJBQXlCO0lBQ3pCLG1CQUFtQjtJQUNuQixjQUFjO0NBQ04sQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIElmSW5wdXRFbXB0eURpcmVjdGl2ZSxcbiAgSWZJbnB1dEZpbGxlZERpcmVjdGl2ZSxcbiAgSW5wdXRQcmVmaXhEaXJlY3RpdmUsXG4gIElucHV0U3VmZml4RGlyZWN0aXZlLFxufSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IExhYmVsQ29tcG9uZW50IH0gZnJvbSAnLi4vbGFiZWwnO1xuaW1wb3J0IHtcbiAgRW1haWxJbnB1dENvbXBvbmVudCxcbiAgSW5wdXRGaWVsZENvbXBvbmVudCxcbiAgTnVtYmVySW5wdXRDb21wb25lbnQsXG4gIFBhc3N3b3JkSW5wdXRDb21wb25lbnQsXG4gIFNlYXJjaElucHV0Q29tcG9uZW50LFxuICBUZXh0SW5wdXRDb21wb25lbnQsXG4gIFRleHRhcmVhSW5wdXRDb21wb25lbnQsXG59IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBQYXNzd29yZElucHV0VG9nZ2xlQ29tcG9uZW50LCBTZWFyY2hJbnB1dENsZWFyQ29tcG9uZW50IH0gZnJvbSAnLi9wYXJ0aWFscyc7XG5cbmV4cG9ydCBjb25zdCBJbnB1dEltcG9ydHMgPSBbXG4gIElucHV0RmllbGRDb21wb25lbnQsXG4gIE51bWJlcklucHV0Q29tcG9uZW50LFxuICBTZWFyY2hJbnB1dENvbXBvbmVudCxcbiAgUGFzc3dvcmRJbnB1dENvbXBvbmVudCxcbiAgUGFzc3dvcmRJbnB1dFRvZ2dsZUNvbXBvbmVudCxcbiAgVGV4dElucHV0Q29tcG9uZW50LFxuICBUZXh0YXJlYUlucHV0Q29tcG9uZW50LFxuICBJbnB1dFByZWZpeERpcmVjdGl2ZSxcbiAgSW5wdXRTdWZmaXhEaXJlY3RpdmUsXG4gIElmSW5wdXRGaWxsZWREaXJlY3RpdmUsXG4gIElmSW5wdXRFbXB0eURpcmVjdGl2ZSxcbiAgU2VhcmNoSW5wdXRDbGVhckNvbXBvbmVudCxcbiAgRW1haWxJbnB1dENvbXBvbmVudCxcbiAgTGFiZWxDb21wb25lbnQsXG5dIGFzIGNvbnN0O1xuIl19
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
class PasswordInputToggleComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.passwordInput = inject(PASSWORD_INPUT_TOKEN);
|
|
9
|
+
this.input = inject(INPUT_TOKEN);
|
|
10
|
+
}
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: PasswordInputToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", 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 }); }
|
|
13
|
+
}
|
|
14
|
+
export { PasswordInputToggleComponent };
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: PasswordInputToggleComponent, decorators: [{
|
|
16
|
+
type: Component,
|
|
17
|
+
args: [{ selector: 'et-password-input-toggle', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
18
|
+
class: 'et-password-input-toggle',
|
|
19
|
+
}, 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" }]
|
|
20
|
+
}], propDecorators: { ariaLabel: [{
|
|
21
|
+
type: Input
|
|
22
|
+
}] } });
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtaW5wdXQtdG9nZ2xlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3Bhc3N3b3JkLWlucHV0LXRvZ2dsZS9wYXNzd29yZC1pbnB1dC10b2dnbGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvcGFydGlhbHMvcGFzc3dvcmQtaW5wdXQtdG9nZ2xlL3Bhc3N3b3JkLWlucHV0LXRvZ2dsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFFeEQsTUFZYSw0QkFBNEI7SUFaekM7UUFhcUIsa0JBQWEsR0FBRyxNQUFNLENBQUMsb0JBQW9CLENBQUMsQ0FBQztRQUM3QyxVQUFLLEdBQUcsTUFBTSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0tBSWhEOzhHQU5ZLDRCQUE0QjtrR0FBNUIsNEJBQTRCLDhLQ2pCekMsNGRBYUEscURERVksU0FBUzs7U0FFUiw0QkFBNEI7MkZBQTVCLDRCQUE0QjtrQkFaeEMsU0FBUzsrQkFDRSwwQkFBMEIsY0FHeEIsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CO3dCQUNKLEtBQUssRUFBRSwwQkFBMEI7cUJBQ2xDLFdBQ1EsQ0FBQyxTQUFTLENBQUM7OEJBT3BCLFNBQVM7c0JBRFIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzeW5jUGlwZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QsIElucHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IFBBU1NXT1JEX0lOUFVUX1RPS0VOIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LXBhc3N3b3JkLWlucHV0LXRvZ2dsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYXNzd29yZC1pbnB1dC10b2dnbGUuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wYXNzd29yZC1pbnB1dC10b2dnbGUuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LXBhc3N3b3JkLWlucHV0LXRvZ2dsZScsXG4gIH0sXG4gIGltcG9ydHM6IFtBc3luY1BpcGVdLFxufSlcbmV4cG9ydCBjbGFzcyBQYXNzd29yZElucHV0VG9nZ2xlQ29tcG9uZW50IHtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IHBhc3N3b3JkSW5wdXQgPSBpbmplY3QoUEFTU1dPUkRfSU5QVVRfVE9LRU4pO1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgaW5wdXQgPSBpbmplY3QoSU5QVVRfVE9LRU4pO1xuXG4gIEBJbnB1dCgpXG4gIGFyaWFMYWJlbD86IHN0cmluZztcbn1cbiIsIjxidXR0b25cbiAgW2F0dHIuYXJpYS1jb250cm9sc109XCJpbnB1dC5pZFwiXG4gIFthdHRyLmFyaWEtcHJlc3NlZF09XCJwYXNzd29yZElucHV0LnNob3dQYXNzd29yZCQgfCBhc3luY1wiXG4gIFtjbGFzcy5ldC1wYXNzd29yZC1pbnB1dC10b2dnbGUtYnV0dG9uLS1hY3RpdmVdPVwicGFzc3dvcmRJbnB1dC5zaG93UGFzc3dvcmQkIHwgYXN5bmNcIlxuICBbYXR0ci5hcmlhLWxhYmVsXT1cImFyaWFMYWJlbCB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cImlucHV0LmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgKGNsaWNrKT1cInBhc3N3b3JkSW5wdXQuX3RvZ2dsZVNob3dQYXNzd29yZCgpOyBpbnB1dC5mb2N1c0lucHV0VmlhKClcIlxuICBjbGFzcz1cImV0LXBhc3N3b3JkLWlucHV0LXRvZ2dsZS1idXR0b25cIlxuICB0eXBlPVwiYnV0dG9uXCJcbiAgdGFiaW5kZXg9XCItMVwiXG4+XG4gIDxuZy1jb250ZW50IC8+XG48L2J1dHRvbj5cbiJdfQ==
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
class SearchInputClearComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.searchInput = inject(SEARCH_INPUT_TOKEN);
|
|
9
|
+
this.input = inject(INPUT_TOKEN);
|
|
10
|
+
}
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: SearchInputClearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", 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 }); }
|
|
13
|
+
}
|
|
14
|
+
export { SearchInputClearComponent };
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: SearchInputClearComponent, decorators: [{
|
|
16
|
+
type: Component,
|
|
17
|
+
args: [{ selector: 'et-search-input-clear', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
18
|
+
class: 'et-search-input-clear',
|
|
19
|
+
}, 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" }]
|
|
20
|
+
}], propDecorators: { ariaLabel: [{
|
|
21
|
+
type: Input
|
|
22
|
+
}] } });
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LWNsZWFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3NlYXJjaC1pbnB1dC1jbGVhci9zZWFyY2gtaW5wdXQtY2xlYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvcGFydGlhbHMvc2VhcmNoLWlucHV0LWNsZWFyL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFFdEQsTUFZYSx5QkFBeUI7SUFadEM7UUFhcUIsZ0JBQVcsR0FBRyxNQUFNLENBQUMsa0JBQWtCLENBQUMsQ0FBQztRQUN6QyxVQUFLLEdBQUcsTUFBTSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0tBSWhEOzhHQU5ZLHlCQUF5QjtrR0FBekIseUJBQXlCLHdLQ2pCdEMsNlJBVUEscURES1ksU0FBUzs7U0FFUix5QkFBeUI7MkZBQXpCLHlCQUF5QjtrQkFackMsU0FBUzsrQkFDRSx1QkFBdUIsY0FHckIsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CO3dCQUNKLEtBQUssRUFBRSx1QkFBdUI7cUJBQy9CLFdBQ1EsQ0FBQyxTQUFTLENBQUM7OEJBT3BCLFNBQVM7c0JBRFIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzeW5jUGlwZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QsIElucHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IFNFQVJDSF9JTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1zZWFyY2gtaW5wdXQtY2xlYXInLFxuICB0ZW1wbGF0ZVVybDogJy4vc2VhcmNoLWlucHV0LWNsZWFyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vc2VhcmNoLWlucHV0LWNsZWFyLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1zZWFyY2gtaW5wdXQtY2xlYXInLFxuICB9LFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlXSxcbn0pXG5leHBvcnQgY2xhc3MgU2VhcmNoSW5wdXRDbGVhckNvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBzZWFyY2hJbnB1dCA9IGluamVjdChTRUFSQ0hfSU5QVVRfVE9LRU4pO1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgaW5wdXQgPSBpbmplY3QoSU5QVVRfVE9LRU4pO1xuXG4gIEBJbnB1dCgpXG4gIGFyaWFMYWJlbD86IHN0cmluZztcbn1cbiIsIjxidXR0b25cbiAgW2F0dHIuYXJpYS1jb250cm9sc109XCJpbnB1dC5pZFwiXG4gIFthdHRyLmFyaWEtbGFiZWxdPVwiYXJpYUxhYmVsIHx8IG51bGxcIlxuICBbZGlzYWJsZWRdPVwiaW5wdXQuZGlzYWJsZWQkIHwgYXN5bmNcIlxuICAoY2xpY2spPVwic2VhcmNoSW5wdXQuX2NsZWFyKCk7IGlucHV0LmZvY3VzSW5wdXRWaWEoKVwiXG4gIGNsYXNzPVwiZXQtc2VhcmNoLWlucHV0LWNsZWFyLWJ1dHRvblwiXG4gIHR5cGU9XCJidXR0b25cIlxuPlxuICA8bmctY29udGVudCAvPlxuPC9idXR0b24+XG4iXX0=
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
class LabelComponent {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.formFieldStateService = inject(FormFieldStateService);
|
|
10
|
+
this.id = `et-label-${++nextUniqueId}`;
|
|
11
|
+
}
|
|
12
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: LabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: LabelComponent, isStandalone: true, selector: "et-label", host: { classAttribute: "et-label" }, providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }], exportAs: ["etLabel"], ngImport: i0, template: `
|
|
14
|
+
<label
|
|
15
|
+
[attr.for]="formFieldStateService.inputId$ | async"
|
|
16
|
+
[attr.aria-owns]="formFieldStateService.inputId$ | async"
|
|
17
|
+
[id]="id"
|
|
18
|
+
class="et-label-native-label"
|
|
19
|
+
>
|
|
20
|
+
<ng-content />
|
|
21
|
+
</label>
|
|
22
|
+
<ng-content select="[etLabelSuffix]" />
|
|
23
|
+
`, isInline: true, dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
24
|
+
}
|
|
25
|
+
export { LabelComponent };
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: LabelComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{
|
|
29
|
+
selector: 'et-label',
|
|
30
|
+
template: `
|
|
31
|
+
<label
|
|
32
|
+
[attr.for]="formFieldStateService.inputId$ | async"
|
|
33
|
+
[attr.aria-owns]="formFieldStateService.inputId$ | async"
|
|
34
|
+
[id]="id"
|
|
35
|
+
class="et-label-native-label"
|
|
36
|
+
>
|
|
37
|
+
<ng-content />
|
|
38
|
+
</label>
|
|
39
|
+
<ng-content select="[etLabelSuffix]" />
|
|
40
|
+
`,
|
|
41
|
+
encapsulation: ViewEncapsulation.None,
|
|
42
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
43
|
+
standalone: true,
|
|
44
|
+
exportAs: 'etLabel',
|
|
45
|
+
imports: [AsyncPipe],
|
|
46
|
+
providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }],
|
|
47
|
+
host: {
|
|
48
|
+
class: 'et-label',
|
|
49
|
+
},
|
|
50
|
+
}]
|
|
51
|
+
}] });
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvbGFiZWwvY29tcG9uZW50cy9sYWJlbC9sYWJlbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFN0QsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBRTFGLElBQUksWUFBWSxHQUFHLENBQUMsQ0FBQztBQUVyQixNQXVCYSxjQUFjO0lBdkIzQjtRQXdCcUIsMEJBQXFCLEdBQUcsTUFBTSxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFFaEUsT0FBRSxHQUFHLFlBQVksRUFBRSxZQUFZLEVBQUUsQ0FBQztLQUM1Qzs4R0FKWSxjQUFjO2tHQUFkLGNBQWMsNkZBTGQsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLGNBQWMsRUFBRSxDQUFDLGlEQWhCeEQ7Ozs7Ozs7Ozs7R0FVVCx1REFLUyxTQUFTOztTQU1SLGNBQWM7MkZBQWQsY0FBYztrQkF2QjFCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFVBQVU7b0JBQ3BCLFFBQVEsRUFBRTs7Ozs7Ozs7OztHQVVUO29CQUNELGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxTQUFTO29CQUNuQixPQUFPLEVBQUUsQ0FBQyxTQUFTLENBQUM7b0JBQ3BCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLGdCQUFnQixFQUFFLENBQUM7b0JBQ2xFLElBQUksRUFBRTt3QkFDSixLQUFLLEVBQUUsVUFBVTtxQkFDbEI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1GaWVsZFN0YXRlU2VydmljZSB9IGZyb20gJy4uLy4uLy4uLy4uL3NlcnZpY2VzJztcblxuZXhwb3J0IGNvbnN0IExBQkVMX1RPS0VOID0gbmV3IEluamVjdGlvblRva2VuPExhYmVsQ29tcG9uZW50PignRVRfTEFCRUxfQ09NUE9ORU5UX1RPS0VOJyk7XG5cbmxldCBuZXh0VW5pcXVlSWQgPSAwO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1sYWJlbCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGxhYmVsXG4gICAgICBbYXR0ci5mb3JdPVwiZm9ybUZpZWxkU3RhdGVTZXJ2aWNlLmlucHV0SWQkIHwgYXN5bmNcIlxuICAgICAgW2F0dHIuYXJpYS1vd25zXT1cImZvcm1GaWVsZFN0YXRlU2VydmljZS5pbnB1dElkJCB8IGFzeW5jXCJcbiAgICAgIFtpZF09XCJpZFwiXG4gICAgICBjbGFzcz1cImV0LWxhYmVsLW5hdGl2ZS1sYWJlbFwiXG4gICAgPlxuICAgICAgPG5nLWNvbnRlbnQgLz5cbiAgICA8L2xhYmVsPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltldExhYmVsU3VmZml4XVwiIC8+XG4gIGAsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBleHBvcnRBczogJ2V0TGFiZWwnLFxuICBpbXBvcnRzOiBbQXN5bmNQaXBlXSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBMQUJFTF9UT0tFTiwgdXNlRXhpc3Rpbmc6IExhYmVsQ29tcG9uZW50IH1dLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1sYWJlbCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIExhYmVsQ29tcG9uZW50IHtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGZvcm1GaWVsZFN0YXRlU2VydmljZSA9IGluamVjdChGb3JtRmllbGRTdGF0ZVNlcnZpY2UpO1xuXG4gIHJlYWRvbmx5IGlkID0gYGV0LWxhYmVsLSR7KytuZXh0VW5pcXVlSWR9YDtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
+
import { Directive, HostBinding, Input } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
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
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: LabelSuffixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
18
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: LabelSuffixDirective, isStandalone: true, selector: "[etLabelSuffix]", inputs: { showToScreenReader: "showToScreenReader" }, host: { properties: { "attr.aria-hidden": "this._attrAriaHidden" } }, exportAs: ["etLabelSuffix"], ngImport: i0 }); }
|
|
19
|
+
}
|
|
20
|
+
export { LabelSuffixDirective };
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: LabelSuffixDirective, decorators: [{
|
|
22
|
+
type: Directive,
|
|
23
|
+
args: [{
|
|
24
|
+
selector: '[etLabelSuffix]',
|
|
25
|
+
standalone: true,
|
|
26
|
+
exportAs: 'etLabelSuffix',
|
|
27
|
+
}]
|
|
28
|
+
}], propDecorators: { showToScreenReader: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], _attrAriaHidden: [{
|
|
31
|
+
type: HostBinding,
|
|
32
|
+
args: ['attr.aria-hidden']
|
|
33
|
+
}] } });
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwtc3VmZml4LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvbGFiZWwtc3VmZml4L2xhYmVsLXN1ZmZpeC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFFOUQsTUFLYSxvQkFBb0I7SUFMakM7UUFhVSx3QkFBbUIsR0FBRyxLQUFLLENBQUM7S0FNckM7SUFiQyxJQUNJLGtCQUFrQjtRQUNwQixPQUFPLElBQUksQ0FBQyxtQkFBbUIsQ0FBQztJQUNsQyxDQUFDO0lBQ0QsSUFBSSxrQkFBa0IsQ0FBQyxLQUFtQjtRQUN4QyxJQUFJLENBQUMsbUJBQW1CLEdBQUcscUJBQXFCLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDMUQsQ0FBQztJQUdELElBQ1ksZUFBZTtRQUN6QixPQUFPLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFDakQsQ0FBQzs4R0FiVSxvQkFBb0I7a0dBQXBCLG9CQUFvQjs7U0FBcEIsb0JBQW9COzJGQUFwQixvQkFBb0I7a0JBTGhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGlCQUFpQjtvQkFDM0IsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRSxlQUFlO2lCQUMxQjs4QkFHSyxrQkFBa0I7c0JBRHJCLEtBQUs7Z0JBVU0sZUFBZTtzQkFEMUIsV0FBVzt1QkFBQyxrQkFBa0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCb29sZWFuSW5wdXQsIGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIEhvc3RCaW5kaW5nLCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZXRMYWJlbFN1ZmZpeF0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBleHBvcnRBczogJ2V0TGFiZWxTdWZmaXgnLFxufSlcbmV4cG9ydCBjbGFzcyBMYWJlbFN1ZmZpeERpcmVjdGl2ZSB7XG4gIEBJbnB1dCgpXG4gIGdldCBzaG93VG9TY3JlZW5SZWFkZXIoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX3Nob3dUb1NjcmVlblJlYWRlcjtcbiAgfVxuICBzZXQgc2hvd1RvU2NyZWVuUmVhZGVyKHZhbHVlOiBCb29sZWFuSW5wdXQpIHtcbiAgICB0aGlzLl9zaG93VG9TY3JlZW5SZWFkZXIgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICB9XG4gIHByaXZhdGUgX3Nob3dUb1NjcmVlblJlYWRlciA9IGZhbHNlO1xuXG4gIEBIb3N0QmluZGluZygnYXR0ci5hcmlhLWhpZGRlbicpXG4gIHByaXZhdGUgZ2V0IF9hdHRyQXJpYUhpZGRlbigpIHtcbiAgICByZXR1cm4gdGhpcy5zaG93VG9TY3JlZW5SZWFkZXIgPyBudWxsIDogJ3RydWUnO1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9sYWJlbC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
class RadioComponent extends InputBase {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
this.radio = inject(RADIO_TOKEN);
|
|
13
|
+
this.radioGroup = inject(RADIO_GROUP_TOKEN);
|
|
14
|
+
}
|
|
15
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", 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 }); }
|
|
17
|
+
}
|
|
18
|
+
export { RadioComponent };
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RadioComponent, decorators: [{
|
|
20
|
+
type: Component,
|
|
21
|
+
args: [{ selector: 'et-radio', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
22
|
+
class: 'et-radio',
|
|
23
|
+
}, imports: [AsyncPipe, NgClass, NativeInputRefDirective], hostDirectives: [
|
|
24
|
+
{ directive: RadioDirective, inputs: ['value', 'disabled'] },
|
|
25
|
+
{ directive: InputDirective, inputs: ['autocomplete'] },
|
|
26
|
+
], 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"] }]
|
|
27
|
+
}] });
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby9yYWRpby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9jb21wb25lbnRzL3JhZGlvL3JhZGlvLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDckQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsY0FBYyxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBRWxGLE1BZ0JhLGNBQWUsU0FBUSxTQUFTO0lBaEI3Qzs7UUFpQnFCLFVBQUssR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7UUFDNUIsZUFBVSxHQUFHLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0tBQzNEOzhHQUhZLGNBQWM7a0dBQWQsY0FBYyxxVEN0QjNCLG9tQkFnQkEsNjdCREFZLFNBQVMsOENBQUUsT0FBTyxvRkFBRSx1QkFBdUI7O1NBTTFDLGNBQWM7MkZBQWQsY0FBYztrQkFoQjFCLFNBQVM7K0JBQ0UsVUFBVSxjQUdSLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsVUFBVTtxQkFDbEIsV0FDUSxDQUFDLFNBQVMsRUFBRSxPQUFPLEVBQUUsdUJBQXVCLENBQUMsa0JBQ3RDO3dCQUNkLEVBQUUsU0FBUyxFQUFFLGNBQWMsRUFBRSxNQUFNLEVBQUUsQ0FBQyxPQUFPLEVBQUUsVUFBVSxDQUFDLEVBQUU7d0JBQzVELEVBQUUsU0FBUyxFQUFFLGNBQWMsRUFBRSxNQUFNLEVBQUUsQ0FBQyxjQUFjLENBQUMsRUFBRTtxQkFDeEQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUsIE5nQ2xhc3MgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSW5wdXREaXJlY3RpdmUsIE5hdGl2ZUlucHV0UmVmRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBJbnB1dEJhc2UgfSBmcm9tICcuLi8uLi8uLi8uLi91dGlscyc7XG5pbXBvcnQgeyBSYWRpb0RpcmVjdGl2ZSwgUkFESU9fR1JPVVBfVE9LRU4sIFJBRElPX1RPS0VOIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LXJhZGlvJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3JhZGlvLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcmFkaW8uY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LXJhZGlvJyxcbiAgfSxcbiAgaW1wb3J0czogW0FzeW5jUGlwZSwgTmdDbGFzcywgTmF0aXZlSW5wdXRSZWZEaXJlY3RpdmVdLFxuICBob3N0RGlyZWN0aXZlczogW1xuICAgIHsgZGlyZWN0aXZlOiBSYWRpb0RpcmVjdGl2ZSwgaW5wdXRzOiBbJ3ZhbHVlJywgJ2Rpc2FibGVkJ10gfSxcbiAgICB7IGRpcmVjdGl2ZTogSW5wdXREaXJlY3RpdmUsIGlucHV0czogWydhdXRvY29tcGxldGUnXSB9LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBSYWRpb0NvbXBvbmVudCBleHRlbmRzIElucHV0QmFzZSB7XG4gIHByb3RlY3RlZCByZWFkb25seSByYWRpbyA9IGluamVjdChSQURJT19UT0tFTik7XG4gIHByb3RlY3RlZCByZWFkb25seSByYWRpb0dyb3VwID0gaW5qZWN0KFJBRElPX0dST1VQX1RPS0VOKTtcbn1cbiIsIjxpbnB1dFxuICBbYXR0ci50YWJpbmRleF09XCIocmFkaW8uZGlzYWJsZWQkIHwgYXN5bmMpID8gLTEgOiAwXCJcbiAgW2F0dHIuY2hlY2tlZF09XCIocmFkaW8uY2hlY2tlZCQgfCBhc3luYykgfHwgbnVsbFwiXG4gIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCJpbnB1dC5sYWJlbElkJCB8IGFzeW5jXCJcbiAgW2F0dHIuYXJpYS1yZXF1aXJlZF09XCIoaW5wdXQucmVxdWlyZWQkIHwgYXN5bmMpIHx8IG51bGxcIlxuICBbZGlzYWJsZWRdPVwicmFkaW8uZGlzYWJsZWQkIHwgYXN5bmNcIlxuICBbYXR0ci5pZF09XCJpbnB1dC5pZFwiXG4gIFthdHRyLm5hbWVdPVwicmFkaW9Hcm91cC5uYW1lXCJcbiAgKGNsaWNrKT1cInJhZGlvLl9vbklucHV0SW50ZXJhY3Rpb24oJGV2ZW50KVwiXG4gIChibHVyKT1cInJhZGlvLl9jb250cm9sVG91Y2hlZCgpXCJcbiAgY2xhc3M9XCJldC1yYWRpby1uYXRpdmUtaW5wdXRcIlxuICB0eXBlPVwicmFkaW9cIlxuICBldE5hdGl2ZUlucHV0UmVmXG4vPlxuXG48ZGl2IFtuZ0NsYXNzXT1cInsgJ2V0LXJhZGlvLWNoZWNrLS1hY3RpdmUnOiByYWRpby5jaGVja2VkJCB8IGFzeW5jIH1cIiBjbGFzcz1cImV0LXJhZGlvLWNoZWNrXCI+PC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
class RadioFieldComponent {
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RadioFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", 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: `
|
|
10
|
+
<div class="et-radio-field-container">
|
|
11
|
+
<ng-content select="et-radio" />
|
|
12
|
+
<ng-content select="et-label" />
|
|
13
|
+
</div>
|
|
14
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
15
|
+
}
|
|
16
|
+
export { RadioFieldComponent };
|
|
17
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RadioFieldComponent, decorators: [{
|
|
18
|
+
type: Component,
|
|
19
|
+
args: [{
|
|
20
|
+
selector: 'et-radio-field',
|
|
21
|
+
template: `
|
|
22
|
+
<div class="et-radio-field-container">
|
|
23
|
+
<ng-content select="et-radio" />
|
|
24
|
+
<ng-content select="et-label" />
|
|
25
|
+
</div>
|
|
26
|
+
`,
|
|
27
|
+
standalone: true,
|
|
28
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
29
|
+
encapsulation: ViewEncapsulation.None,
|
|
30
|
+
host: {
|
|
31
|
+
class: 'et-form-field et-radio-field',
|
|
32
|
+
},
|
|
33
|
+
hostDirectives: [StaticFormFieldDirective, RadioFieldDirective],
|
|
34
|
+
}]
|
|
35
|
+
}] });
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1maWVsZC9yYWRpby1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQUV2RCxNQWdCYSxtQkFBbUI7OEdBQW5CLG1CQUFtQjtrR0FBbkIsbUJBQW1CLHlPQWRwQjs7Ozs7R0FLVDs7U0FTVSxtQkFBbUI7MkZBQW5CLG1CQUFtQjtrQkFoQi9CLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsUUFBUSxFQUFFOzs7OztHQUtUO29CQUNELFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7b0JBQ3JDLElBQUksRUFBRTt3QkFDSixLQUFLLEVBQUUsOEJBQThCO3FCQUN0QztvQkFDRCxjQUFjLEVBQUUsQ0FBQyx3QkFBd0IsRUFBRSxtQkFBbUIsQ0FBQztpQkFDaEUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3RhdGljRm9ybUZpZWxkRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBSYWRpb0ZpZWxkRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LXJhZGlvLWZpZWxkJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8ZGl2IGNsYXNzPVwiZXQtcmFkaW8tZmllbGQtY29udGFpbmVyXCI+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJldC1yYWRpb1wiIC8+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJldC1sYWJlbFwiIC8+XG4gICAgPC9kaXY+XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1mb3JtLWZpZWxkIGV0LXJhZGlvLWZpZWxkJyxcbiAgfSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtTdGF0aWNGb3JtRmllbGREaXJlY3RpdmUsIFJhZGlvRmllbGREaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBSYWRpb0ZpZWxkQ29tcG9uZW50IHt9XG4iXX0=
|