@ethlete/cdk 2.3.1 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/esm2022/lib/components/accordion/components/accordion/accordion.component.mjs +87 -0
- package/esm2022/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +60 -0
- package/esm2022/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +18 -0
- package/esm2022/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +21 -0
- package/esm2022/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +18 -0
- package/esm2022/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +21 -0
- package/esm2022/lib/components/bracket/components/bracket/bracket.component.mjs +343 -0
- package/esm2022/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +20 -0
- package/esm2022/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +20 -0
- package/esm2022/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +20 -0
- package/esm2022/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +20 -0
- package/esm2022/lib/components/button/components/button/button.component.mjs +19 -0
- package/esm2022/lib/components/button/components/query-button/query-button.component.mjs +26 -0
- package/esm2022/lib/components/button/directives/button/button.directive.mjs +83 -0
- package/esm2022/lib/components/button/directives/query-button/query-button.directive.mjs +110 -0
- package/esm2022/lib/components/forms/components/checkbox/checkbox.imports.mjs +11 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +6 -5
- package/esm2022/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +55 -0
- package/esm2022/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +18 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +45 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +37 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +84 -0
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +39 -0
- package/esm2022/lib/components/forms/components/error/components/error/error.component.mjs +57 -0
- package/esm2022/lib/components/forms/components/input/components/email-input/email-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/input-field/input-field.component.mjs +58 -0
- package/esm2022/lib/components/forms/components/input/components/number-input/number-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/password-input/password-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/search-input/search-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/text-input/text-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +43 -0
- package/esm2022/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +52 -0
- package/esm2022/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +51 -0
- package/esm2022/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +52 -0
- package/esm2022/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +55 -0
- package/esm2022/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +55 -0
- package/esm2022/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +51 -0
- package/esm2022/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +51 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/input/input.imports.mjs +3 -1
- package/esm2022/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/label/components/label/label.component.mjs +52 -0
- package/esm2022/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +34 -0
- package/esm2022/lib/components/forms/components/label/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/radio/components/radio/radio.component.mjs +28 -0
- package/esm2022/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +36 -0
- package/esm2022/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +44 -0
- package/esm2022/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +64 -0
- package/esm2022/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +41 -0
- package/esm2022/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +37 -0
- package/esm2022/lib/components/forms/components/radio/radio.imports.mjs +4 -0
- package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +38 -0
- package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +26 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +8 -7
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +74 -0
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +41 -0
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +69 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/native-select/native-select.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/native-select/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/components/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-input/native-select-input.directive.mjs +59 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-input/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/native-select-option.directive.mjs +57 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/directives/public-api.mjs +3 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/native-select.imports.mjs +17 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/native-select-option/native-select-option.component.mjs +33 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/native-select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/partials/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/public-api.mjs +6 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/types/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/types/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/native-select/types/select.types.mjs +2 -0
- package/{esm2020 → esm2022}/lib/components/forms/components/select/components/public-api.mjs +2 -2
- package/esm2022/lib/components/forms/components/select/components/select/components/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/components/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/components/select/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/components/select/select.component.mjs +49 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/public-api.mjs +4 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-body/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.mjs +18 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-option/select-option.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/tree-select-option/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select/partials/tree-select-option/tree-select-option.component.mjs +23 -0
- package/esm2022/lib/components/forms/components/select/components/select/public-api.mjs +4 -0
- package/esm2022/lib/components/forms/components/select/components/select/select.imports.mjs +15 -0
- package/esm2022/lib/components/forms/components/select/components/select-field/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/select-field/select-field.component.mjs +54 -0
- package/esm2022/lib/components/forms/components/select/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +52 -0
- package/esm2022/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +41 -0
- package/esm2022/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +4 -0
- package/esm2022/lib/components/forms/components/slider/components/slider/slider.component.mjs +343 -0
- package/esm2022/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +52 -0
- package/esm2022/lib/components/forms/components/slider/slider.imports.mjs +4 -0
- package/esm2022/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +43 -0
- package/esm2022/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +43 -0
- package/esm2022/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +41 -0
- package/esm2022/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +41 -0
- package/esm2022/lib/components/forms/directives/input/input.directive.mjs +234 -0
- package/esm2022/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +31 -0
- package/esm2022/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +31 -0
- package/esm2022/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +20 -0
- package/esm2022/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +77 -0
- package/esm2022/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +30 -0
- package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +70 -0
- package/esm2022/lib/components/forms/services/default-validator-errors.service.mjs +52 -0
- package/esm2022/lib/components/forms/services/form-field-state.service.mjs +25 -0
- package/esm2022/lib/components/forms/services/form-group-state.service.mjs +22 -0
- package/esm2022/lib/components/forms/services/input-state.service.mjs +36 -0
- package/esm2022/lib/components/forms/utils/decorated-form-field.base.mjs +23 -0
- package/esm2022/lib/components/forms/utils/decorated-input.base.mjs +45 -0
- package/esm2022/lib/components/forms/utils/input.base.mjs +21 -0
- package/esm2022/lib/components/icons/chevron-icon/chevron-icon.component.mjs +37 -0
- package/esm2022/lib/components/masonry/components/masonry/masonry.component.mjs +205 -0
- package/esm2022/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +75 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +52 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +44 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +104 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +50 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +114 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +49 -0
- package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +32 -0
- package/esm2022/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +52 -0
- package/esm2022/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +65 -0
- package/esm2022/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +44 -0
- package/esm2022/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +50 -0
- package/esm2022/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +110 -0
- package/esm2022/lib/components/overlay/components/dialog/services/dialog.service.mjs +32 -0
- package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/dialog-ref.mjs +2 -2
- package/esm2022/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +63 -0
- package/esm2022/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +131 -0
- package/esm2022/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +61 -0
- package/esm2022/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +165 -0
- package/esm2022/lib/components/overlay/services/dynamic-overlay.service.mjs +30 -0
- package/esm2022/lib/components/pagination/components/pagination/pagination.component.mjs +106 -0
- package/esm2022/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +33 -0
- package/esm2022/lib/components/pagination/services/pagination-head.service.mjs +60 -0
- package/esm2022/lib/components/picture/picture-data.directive.mjs +56 -0
- package/esm2022/lib/components/picture/picture.component.mjs +41 -0
- package/esm2022/lib/components/progress-spinner/progress-spinner.component.mjs +106 -0
- package/esm2022/lib/components/scrollable/components/scrollable/scrollable.component.mjs +130 -0
- package/{esm2020 → esm2022}/lib/components/skeleton/components/skeleton/skeleton.component.mjs +6 -5
- package/esm2022/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +20 -0
- package/esm2022/lib/components/sort/components/sort-header/sort-header.component.mjs +225 -0
- package/esm2022/lib/components/sort/partials/sort/sort.directive.mjs +158 -0
- package/esm2022/lib/components/sort/services/sort-header-intl.mjs +24 -0
- package/esm2022/lib/components/table/components/table/table.component.mjs +142 -0
- package/esm2022/lib/components/table/partials/cells/cell/cell.directive.mjs +19 -0
- package/esm2022/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +17 -0
- package/esm2022/lib/components/table/partials/cells/column-def/column-def.directive.mjs +45 -0
- package/esm2022/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +19 -0
- package/esm2022/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +17 -0
- package/esm2022/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +20 -0
- package/esm2022/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +17 -0
- package/{esm2020 → esm2022}/lib/components/table/partials/cells/text-column/text-column.component.mjs +8 -7
- package/esm2022/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/header-row/header-row.component.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +21 -0
- package/esm2022/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +17 -0
- package/esm2022/lib/components/table/partials/rows/row/row.component.mjs +27 -0
- package/esm2022/lib/components/table/partials/rows/row-def/row-def.directive.mjs +27 -0
- package/esm2022/lib/components/table/partials/table-busy/table-busy.directive.mjs +19 -0
- package/esm2022/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +16 -0
- package/esm2022/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +274 -0
- package/esm2022/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +91 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +101 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +136 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +26 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +23 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +44 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +31 -0
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +49 -0
- package/esm2022/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +204 -0
- package/esm2022/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +38 -0
- package/esm2022/lib/components/tabs/utils/active-tab-underline.util.mjs +112 -0
- package/esm2022/lib/components/tabs/utils/paginated-tab-header.directive.mjs +284 -0
- package/esm2022/lib/services/swipe-handler.service.mjs +89 -0
- package/{fesm2020 → fesm2022}/ethlete-cdk.mjs +1010 -1026
- package/fesm2022/ethlete-cdk.mjs.map +1 -0
- package/lib/components/accordion/components/accordion/accordion.component.d.ts +1 -1
- package/lib/components/accordion/components/accordion-group/accordion-group.component.d.ts +1 -1
- package/lib/components/bracket/components/bracket/bracket.component.d.ts +1 -1
- package/lib/components/button/directives/button/button.directive.d.ts +1 -1
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +1 -1
- package/lib/components/forms/components/checkbox/checkbox.imports.d.ts +2 -1
- package/lib/components/forms/components/error/components/error/error.component.d.ts +1 -1
- package/lib/components/forms/components/input/components/textarea-input/textarea-input.component.d.ts +1 -1
- package/lib/components/forms/components/input/input.imports.d.ts +2 -1
- package/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.d.ts +1 -1
- package/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.d.ts +1 -1
- package/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.d.ts +1 -1
- package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +1 -1
- package/lib/components/forms/components/radio/radio.imports.d.ts +2 -1
- package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +1 -1
- package/lib/components/forms/components/select/components/native-select/{native-select.component.d.ts → components/native-select/native-select.component.d.ts} +4 -4
- package/lib/components/forms/components/select/components/native-select/components/native-select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-input/native-select-input.directive.d.ts +1 -1
- package/lib/components/forms/components/select/components/native-select/directives/native-select-option/index.d.ts +1 -0
- package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-option/native-select-option.directive.d.ts +1 -1
- package/lib/components/forms/components/select/{native-select.imports.d.ts → components/native-select/native-select.imports.d.ts} +6 -3
- package/lib/components/forms/components/select/components/native-select/partials/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/partials/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/public-api.d.ts +5 -1
- package/lib/components/forms/components/select/components/native-select/types/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/public-api.d.ts +1 -1
- package/lib/components/forms/components/select/components/select/components/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/components/select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/components/select/select.component.d.ts +17 -0
- package/lib/components/forms/components/select/components/select/partials/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select/partials/select-body/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.d.ts +7 -0
- package/lib/components/forms/components/select/components/select/partials/select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/select-option/select-option.component.d.ts +5 -0
- package/lib/components/forms/components/select/components/select/partials/tree-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select/partials/tree-select-option/tree-select-option.component.d.ts +5 -0
- package/lib/components/forms/components/select/components/select/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select/select.imports.d.ts +6 -0
- package/lib/components/forms/components/select/components/select-field/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/select-field/select-field.component.d.ts +1 -1
- package/lib/components/forms/components/select/public-api.d.ts +0 -3
- package/lib/components/forms/components/slide-toggle/slide-toggle.imports.d.ts +2 -1
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +1 -1
- package/lib/components/forms/components/slider/slider.imports.d.ts +2 -1
- package/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +1 -1
- package/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.d.ts +1 -1
- package/lib/components/forms/directives/input/input.directive.d.ts +1 -1
- package/lib/components/masonry/components/masonry/masonry.component.d.ts +1 -1
- package/lib/components/masonry/partials/masonry-item/masonry-item.component.d.ts +1 -1
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.d.ts +1 -1
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.d.ts +1 -1
- package/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.d.ts +1 -1
- package/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.d.ts +1 -1
- package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +11 -18
- package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +6 -17
- package/lib/components/pagination/components/pagination/pagination.component.d.ts +1 -1
- package/lib/components/pagination/partials/pagination-link/pagination-link.directive.d.ts +1 -1
- package/lib/components/picture/picture-data.directive.d.ts +1 -1
- package/lib/components/picture/picture.component.d.ts +1 -1
- package/lib/components/progress-spinner/progress-spinner.component.d.ts +1 -1
- package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +1 -1
- package/lib/components/skeleton/components/skeleton/skeleton.component.d.ts +1 -1
- package/lib/components/sort/components/sort-header/sort-header.component.d.ts +1 -1
- package/lib/components/sort/partials/sort/sort.directive.d.ts +1 -1
- package/lib/components/table/components/table/table.component.d.ts +1 -1
- package/lib/components/table/partials/cells/column-def/column-def.directive.d.ts +1 -1
- package/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.d.ts +1 -1
- package/lib/components/table/partials/rows/header-row-def/header-row-def.directive.d.ts +1 -1
- package/lib/components/table/partials/rows/row-def/row-def.directive.d.ts +1 -1
- package/lib/components/tabs/components/inline-tabs/inline-tabs.component.d.ts +1 -1
- package/lib/components/tabs/components/nav-tabs/nav-tabs.component.d.ts +1 -1
- package/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.d.ts +1 -1
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.d.ts +1 -1
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.d.ts +1 -1
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.d.ts +1 -1
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.d.ts +1 -1
- package/lib/components/tabs/utils/active-tab-underline.util.d.ts +1 -1
- package/lib/components/tabs/utils/paginated-tab-header.directive.d.ts +2 -3
- package/package.json +11 -18
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.mjs +0 -86
- package/esm2020/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +0 -53
- package/esm2020/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +0 -17
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +0 -20
- package/esm2020/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +0 -17
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +0 -20
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.mjs +0 -342
- package/esm2020/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +0 -19
- package/esm2020/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +0 -19
- package/esm2020/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +0 -19
- package/esm2020/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +0 -19
- package/esm2020/lib/components/button/components/button/button.component.mjs +0 -18
- package/esm2020/lib/components/button/components/query-button/query-button.component.mjs +0 -25
- package/esm2020/lib/components/button/directives/button/button.directive.mjs +0 -83
- package/esm2020/lib/components/button/directives/query-button/query-button.directive.mjs +0 -110
- package/esm2020/lib/components/forms/components/checkbox/checkbox.imports.mjs +0 -9
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +0 -54
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +0 -18
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +0 -44
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +0 -36
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +0 -80
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +0 -38
- package/esm2020/lib/components/forms/components/error/components/error/error.component.mjs +0 -56
- package/esm2020/lib/components/forms/components/input/components/email-input/email-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/input-field/input-field.component.mjs +0 -57
- package/esm2020/lib/components/forms/components/input/components/number-input/number-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/password-input/password-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/search-input/search-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +0 -43
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +0 -52
- package/esm2020/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +0 -50
- package/esm2020/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +0 -51
- package/esm2020/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +0 -54
- package/esm2020/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +0 -54
- package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +0 -50
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +0 -50
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +0 -22
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +0 -22
- package/esm2020/lib/components/forms/components/label/components/label/label.component.mjs +0 -51
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +0 -33
- package/esm2020/lib/components/forms/components/radio/components/radio/radio.component.mjs +0 -27
- package/esm2020/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +0 -35
- package/esm2020/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +0 -43
- package/esm2020/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +0 -63
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +0 -40
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +0 -36
- package/esm2020/lib/components/forms/components/radio/radio.imports.mjs +0 -3
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +0 -37
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +0 -25
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +0 -73
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +0 -40
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +0 -68
- package/esm2020/lib/components/forms/components/select/components/native-select/native-select.component.mjs +0 -24
- package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/components/native-select-option/native-select-option.component.mjs +0 -32
- package/esm2020/lib/components/forms/components/select/components/native-select-option/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/components/select-field/select-field.component.mjs +0 -53
- package/esm2020/lib/components/forms/components/select/directives/index.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.mjs +0 -58
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/index.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.mjs +0 -56
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/directives/public-api.mjs +0 -3
- package/esm2020/lib/components/forms/components/select/native-select.imports.mjs +0 -13
- package/esm2020/lib/components/forms/components/select/public-api.mjs +0 -5
- package/esm2020/lib/components/forms/components/select/types/index.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/types/public-api.mjs +0 -2
- package/esm2020/lib/components/forms/components/select/types/select.types.mjs +0 -2
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +0 -23
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +0 -51
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +0 -40
- package/esm2020/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +0 -3
- package/esm2020/lib/components/forms/components/slider/components/slider/slider.component.mjs +0 -342
- package/esm2020/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +0 -51
- package/esm2020/lib/components/forms/components/slider/slider.imports.mjs +0 -3
- package/esm2020/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +0 -42
- package/esm2020/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +0 -42
- package/esm2020/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +0 -41
- package/esm2020/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +0 -41
- package/esm2020/lib/components/forms/directives/input/input.directive.mjs +0 -233
- package/esm2020/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +0 -30
- package/esm2020/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +0 -30
- package/esm2020/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +0 -19
- package/esm2020/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +0 -78
- package/esm2020/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +0 -29
- package/esm2020/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +0 -71
- package/esm2020/lib/components/forms/services/default-validator-errors.service.mjs +0 -51
- package/esm2020/lib/components/forms/services/form-field-state.service.mjs +0 -24
- package/esm2020/lib/components/forms/services/form-group-state.service.mjs +0 -21
- package/esm2020/lib/components/forms/services/input-state.service.mjs +0 -35
- package/esm2020/lib/components/forms/utils/decorated-form-field.base.mjs +0 -22
- package/esm2020/lib/components/forms/utils/decorated-input.base.mjs +0 -44
- package/esm2020/lib/components/forms/utils/input.base.mjs +0 -20
- package/esm2020/lib/components/icons/chevron-icon/chevron-icon.component.mjs +0 -36
- package/esm2020/lib/components/masonry/components/masonry/masonry.component.mjs +0 -199
- package/esm2020/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +0 -74
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +0 -51
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +0 -43
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +0 -103
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +0 -49
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +0 -113
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +0 -48
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +0 -31
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +0 -51
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +0 -64
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +0 -43
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +0 -49
- package/esm2020/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +0 -109
- package/esm2020/lib/components/overlay/components/dialog/services/dialog.service.mjs +0 -31
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +0 -62
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +0 -196
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +0 -60
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +0 -240
- package/esm2020/lib/components/overlay/services/dynamic-overlay.service.mjs +0 -29
- package/esm2020/lib/components/pagination/components/pagination/pagination.component.mjs +0 -105
- package/esm2020/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +0 -32
- package/esm2020/lib/components/pagination/services/pagination-head.service.mjs +0 -59
- package/esm2020/lib/components/picture/picture-data.directive.mjs +0 -55
- package/esm2020/lib/components/picture/picture.component.mjs +0 -40
- package/esm2020/lib/components/progress-spinner/progress-spinner.component.mjs +0 -105
- package/esm2020/lib/components/scrollable/components/scrollable/scrollable.component.mjs +0 -129
- package/esm2020/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +0 -19
- package/esm2020/lib/components/sort/components/sort-header/sort-header.component.mjs +0 -224
- package/esm2020/lib/components/sort/partials/sort/sort.directive.mjs +0 -157
- package/esm2020/lib/components/sort/services/sort-header-intl.mjs +0 -23
- package/esm2020/lib/components/table/components/table/table.component.mjs +0 -141
- package/esm2020/lib/components/table/partials/cells/cell/cell.directive.mjs +0 -18
- package/esm2020/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/cells/column-def/column-def.directive.mjs +0 -44
- package/esm2020/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +0 -18
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +0 -19
- package/esm2020/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/header-row/header-row.component.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +0 -20
- package/esm2020/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +0 -16
- package/esm2020/lib/components/table/partials/rows/row/row.component.mjs +0 -26
- package/esm2020/lib/components/table/partials/rows/row-def/row-def.directive.mjs +0 -26
- package/esm2020/lib/components/table/partials/table-busy/table-busy.directive.mjs +0 -18
- package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +0 -15
- package/esm2020/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +0 -261
- package/esm2020/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +0 -86
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +0 -100
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +0 -135
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +0 -25
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +0 -22
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +0 -43
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +0 -30
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +0 -48
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +0 -203
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +0 -37
- package/esm2020/lib/components/tabs/utils/active-tab-underline.util.mjs +0 -111
- package/esm2020/lib/components/tabs/utils/paginated-tab-header.directive.mjs +0 -284
- package/esm2020/lib/services/swipe-handler.service.mjs +0 -88
- package/fesm2015/ethlete-cdk.mjs +0 -9106
- package/fesm2015/ethlete-cdk.mjs.map +0 -1
- package/fesm2020/ethlete-cdk.mjs.map +0 -1
- /package/{esm2020 → esm2022}/ethlete-cdk.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/accordion.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/accordion.component.animations.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/accordion.component.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/accordion-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-hint/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-hint-wrapper/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/accordion-label-wrapper/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/accordion/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/bracket.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/bracket/bracket.component.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/bracket/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/constants/bracket.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-match/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-match/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-round/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/bracket-round/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-match/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-match/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-round-header/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/bracket-round-header/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/bracket-config.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/bracket.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/bracket-config.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/bracket.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/bracket/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/button.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/components/query-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/directives/query-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/checkbox-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/components/error/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/error/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/email-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/input-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/number-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/password-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/search-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/text-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/components/textarea-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/autosize-textarea/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/email-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/number-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/password-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/search-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/text-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/textarea-input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/directives/textarea-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/password-input-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/components/label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/directives/label-suffix/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/label.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/radio-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/components/radio-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/directives/radio-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/radio/types/radio.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/segmented-button.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/select/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/select/components/select-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slide-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/slider/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/components/slider-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/components/slider/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/dynamic-form-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/dynamic-form-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/if-input-empty/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/if-input-filled/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input-prefix/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/input-suffix/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/native-input-ref/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/native-input-ref/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/static-form-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/static-form-group/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/directives/writeable-input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/types/input.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/forms/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/chevron-icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/chevron-icon/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/icon.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/icons/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/components/masonry/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/masonry.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/partials/masonry-item/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/types/masonry.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/masonry/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/bottom-sheet/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/components/dialog-container/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/constants/dialog.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/dialog.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/dialog-close/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/dialog-title/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/types/dialog.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/dialog-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/dialog.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/dialog/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/components/toggletip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/constants/toggletip.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/directives/toggletip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/toggletip.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/types/toggletip.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/toggletip-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/toggletip/utils/toggletip.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/components/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/constants/tooltip.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/directives/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/directives/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/tooltip.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/types/tooltip.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/tooltip-config.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/components/tooltip/utils/tooltip.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/types/dynamic-overlay.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/overlay/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/components/pagination/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/pagination.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/partials/pagination-link/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/types/pagination.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/utils/pagination.util.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/pagination/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/picture/picture.component.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/picture/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/progress-spinner/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/components/scrollable/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/scrollable/scrollable.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/components/skeleton/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/partials/skeleton-item/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/skeleton/skeleton.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/sort-header/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/components/sort-header/sort-header.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/sort/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/partials/sort/sort.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/sort.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sort/types/sort-direction.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/components/table/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/constants/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/constants/table-data-source.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell-def/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/cell-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/column-def/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/column-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/footer-cell/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/footer-cell-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell-def/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/header-cell-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/cells/text-column/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/footer-row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/footer-row-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/header-row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/header-row-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/no-data-row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/recycle-rows/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/row/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/rows/row-def/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/table-busy/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/partials/table-busy-outlet/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/table.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/types/table-data-source.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/table/utils/table-data-source.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/animations/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/animations/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/animations/tabs.animations.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/inline-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/nav-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/components/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/inline-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/nav-tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/partials/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/tab.imports.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/types/tab-config.types.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tabs/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/services/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/swipe.types.mjs +0 -0
- /package/lib/components/forms/components/{select/directives → label}/index.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives/native-select-option → components/native-select/components}/index.d.ts +0 -0
- /package/lib/components/forms/components/select/{types → components/native-select/directives}/index.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-input/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives → components/native-select/directives}/native-select-option/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{directives → components/native-select/directives}/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/components/{native-select-option → native-select/partials/native-select-option}/native-select-option.component.d.ts +0 -0
- /package/lib/components/forms/components/select/components/{native-select-option → native-select/partials/native-select-option}/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{types → components/native-select/types}/public-api.d.ts +0 -0
- /package/lib/components/forms/components/select/{types → components/native-select/types}/select.types.d.ts +0 -0
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
import { Directionality } from '@angular/cdk/bidi';
|
|
2
|
-
import { TemplatePortal } from '@angular/cdk/portal';
|
|
3
|
-
import { CdkScrollableModule } from '@angular/cdk/scrolling';
|
|
4
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, Optional, Output, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
5
|
-
import { distinctUntilChanged, startWith, Subject, Subscription } from 'rxjs';
|
|
6
|
-
import { tabAnimations } from '../../../animations';
|
|
7
|
-
import { InlineTabBodyHostDirective } from '../inline-tab-body-host';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "@angular/cdk/bidi";
|
|
10
|
-
import * as i2 from "@angular/cdk/scrolling";
|
|
11
|
-
export class InlineTabBodyComponent {
|
|
12
|
-
set position(position) {
|
|
13
|
-
this._positionIndex = position;
|
|
14
|
-
this._computePositionAnimationState();
|
|
15
|
-
}
|
|
16
|
-
constructor(_elementRef, _dir, changeDetectorRef) {
|
|
17
|
-
this._elementRef = _elementRef;
|
|
18
|
-
this._dir = _dir;
|
|
19
|
-
this._centeringSub = Subscription.EMPTY;
|
|
20
|
-
this._leavingSub = Subscription.EMPTY;
|
|
21
|
-
this._dirChangeSubscription = Subscription.EMPTY;
|
|
22
|
-
this._translateTabComplete = new Subject();
|
|
23
|
-
this._onCentering = new EventEmitter();
|
|
24
|
-
this._beforeCentering = new EventEmitter();
|
|
25
|
-
this._afterLeavingCenter = new EventEmitter();
|
|
26
|
-
this._onCentered = new EventEmitter(true);
|
|
27
|
-
this.animationDuration = '500ms';
|
|
28
|
-
this.preserveContent = false;
|
|
29
|
-
if (_dir) {
|
|
30
|
-
this._dirChangeSubscription = _dir.change.subscribe((dir) => {
|
|
31
|
-
this._computePositionAnimationState(dir);
|
|
32
|
-
changeDetectorRef.markForCheck();
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
this._translateTabComplete
|
|
36
|
-
.pipe(distinctUntilChanged((x, y) => {
|
|
37
|
-
return x.fromState === y.fromState && x.toState === y.toState;
|
|
38
|
-
}))
|
|
39
|
-
.subscribe((event) => {
|
|
40
|
-
if (this._isCenterPosition(event.toState) && this._isCenterPosition(this._position)) {
|
|
41
|
-
this._onCentered.emit();
|
|
42
|
-
}
|
|
43
|
-
if (this._isCenterPosition(event.fromState) && !this._isCenterPosition(this._position)) {
|
|
44
|
-
this._afterLeavingCenter.emit();
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
ngOnInit() {
|
|
49
|
-
if (this._position == 'center' && this.origin != null) {
|
|
50
|
-
this._position = this._computePositionFromOrigin(this.origin);
|
|
51
|
-
}
|
|
52
|
-
this._centeringSub = this._beforeCentering
|
|
53
|
-
.pipe(startWith(this._isCenterPosition(this._position)))
|
|
54
|
-
.subscribe((isCentering) => {
|
|
55
|
-
if (isCentering && !this._portalHost.hasAttached()) {
|
|
56
|
-
this._portalHost.attach(this._content);
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
this._leavingSub = this._afterLeavingCenter.subscribe(() => {
|
|
60
|
-
if (!this.preserveContent) {
|
|
61
|
-
this._portalHost.detach();
|
|
62
|
-
}
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
ngOnDestroy() {
|
|
66
|
-
this._dirChangeSubscription.unsubscribe();
|
|
67
|
-
this._translateTabComplete.complete();
|
|
68
|
-
this._centeringSub.unsubscribe();
|
|
69
|
-
this._leavingSub.unsubscribe();
|
|
70
|
-
}
|
|
71
|
-
_onTranslateTabStarted(event) {
|
|
72
|
-
const isCentering = this._isCenterPosition(event.toState);
|
|
73
|
-
this._beforeCentering.emit(isCentering);
|
|
74
|
-
if (isCentering) {
|
|
75
|
-
this._onCentering.emit(this._elementRef.nativeElement.clientHeight);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
_getLayoutDirection() {
|
|
79
|
-
return this._dir && this._dir.value === 'rtl' ? 'rtl' : 'ltr';
|
|
80
|
-
}
|
|
81
|
-
_isCenterPosition(position) {
|
|
82
|
-
return position == 'center' || position == 'left-origin-center' || position == 'right-origin-center';
|
|
83
|
-
}
|
|
84
|
-
_computePositionAnimationState(dir = this._getLayoutDirection()) {
|
|
85
|
-
if (this._positionIndex < 0) {
|
|
86
|
-
this._position = dir == 'ltr' ? 'left' : 'right';
|
|
87
|
-
}
|
|
88
|
-
else if (this._positionIndex > 0) {
|
|
89
|
-
this._position = dir == 'ltr' ? 'right' : 'left';
|
|
90
|
-
}
|
|
91
|
-
else {
|
|
92
|
-
this._position = 'center';
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
_computePositionFromOrigin(origin) {
|
|
96
|
-
const dir = this._getLayoutDirection();
|
|
97
|
-
if ((dir == 'ltr' && origin <= 0) || (dir == 'rtl' && origin > 0)) {
|
|
98
|
-
return 'left-origin-center';
|
|
99
|
-
}
|
|
100
|
-
return 'right-origin-center';
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
InlineTabBodyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabBodyComponent, deps: [{ token: i0.ElementRef }, { token: i1.Directionality, optional: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
104
|
-
InlineTabBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: InlineTabBodyComponent, isStandalone: true, selector: "et-inline-tab-body", inputs: { _content: ["content", "_content"], origin: "origin", animationDuration: "animationDuration", preserveContent: "preserveContent", position: "position" }, outputs: { _onCentering: "_onCentering", _beforeCentering: "_beforeCentering", _afterLeavingCenter: "_afterLeavingCenter", _onCentered: "_onCentered" }, host: { classAttribute: "et-inline-tab-body" }, viewQueries: [{ propertyName: "_portalHost", first: true, predicate: InlineTabBodyHostDirective, descendants: true, static: true }], ngImport: i0, template: "<div\n #content\n [@translateTab]=\"{\n value: _position,\n params: { animationDuration: '0ms' }\n }\"\n (@translateTab.start)=\"_onTranslateTabStarted($event)\"\n (@translateTab.done)=\"_translateTabComplete.next($event)\"\n cdkScrollable\n>\n <ng-template etInlineTabBodyHost />\n</div>\n", dependencies: [{ kind: "ngmodule", type: CdkScrollableModule }, { kind: "directive", type: i2.CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "directive", type: InlineTabBodyHostDirective, selector: "[etInlineTabBodyHost]" }], animations: [tabAnimations.translateTab], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabBodyComponent, decorators: [{
|
|
106
|
-
type: Component,
|
|
107
|
-
args: [{ selector: 'et-inline-tab-body', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.Default, animations: [tabAnimations.translateTab], standalone: true, imports: [CdkScrollableModule, InlineTabBodyHostDirective], host: {
|
|
108
|
-
class: 'et-inline-tab-body',
|
|
109
|
-
}, template: "<div\n #content\n [@translateTab]=\"{\n value: _position,\n params: { animationDuration: '0ms' }\n }\"\n (@translateTab.start)=\"_onTranslateTabStarted($event)\"\n (@translateTab.done)=\"_translateTabComplete.next($event)\"\n cdkScrollable\n>\n <ng-template etInlineTabBodyHost />\n</div>\n" }]
|
|
110
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.Directionality, decorators: [{
|
|
111
|
-
type: Optional
|
|
112
|
-
}] }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { _onCentering: [{
|
|
113
|
-
type: Output
|
|
114
|
-
}], _beforeCentering: [{
|
|
115
|
-
type: Output
|
|
116
|
-
}], _afterLeavingCenter: [{
|
|
117
|
-
type: Output
|
|
118
|
-
}], _onCentered: [{
|
|
119
|
-
type: Output
|
|
120
|
-
}], _portalHost: [{
|
|
121
|
-
type: ViewChild,
|
|
122
|
-
args: [InlineTabBodyHostDirective, { static: true }]
|
|
123
|
-
}], _content: [{
|
|
124
|
-
type: Input,
|
|
125
|
-
args: ['content']
|
|
126
|
-
}], origin: [{
|
|
127
|
-
type: Input
|
|
128
|
-
}], animationDuration: [{
|
|
129
|
-
type: Input
|
|
130
|
-
}], preserveContent: [{
|
|
131
|
-
type: Input
|
|
132
|
-
}], position: [{
|
|
133
|
-
type: Input
|
|
134
|
-
}] } });
|
|
135
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXRhYi1ib2R5LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJzL3BhcnRpYWxzL2lubGluZS10YWJzL2lubGluZS10YWItYm9keS9pbmxpbmUtdGFiLWJvZHkuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYnMvcGFydGlhbHMvaW5saW5lLXRhYnMvaW5saW5lLXRhYi1ib2R5L2lubGluZS10YWItYm9keS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQWEsY0FBYyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDOUQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3JELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQzdELE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsWUFBWSxFQUNaLEtBQUssRUFHTCxRQUFRLEVBQ1IsTUFBTSxFQUNOLFNBQVMsRUFDVCxpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFNBQVMsRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQzlFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNwRCxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQzs7OztBQWtCckUsTUFBTSxPQUFPLHNCQUFzQjtJQXNDakMsSUFDSSxRQUFRLENBQUMsUUFBZ0I7UUFDM0IsSUFBSSxDQUFDLGNBQWMsR0FBRyxRQUFRLENBQUM7UUFDL0IsSUFBSSxD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bUI7c0JBRDNCLE1BQU07Z0JBSUUsV0FBVztzQkFEbkIsTUFBTTtnQkFJUCxXQUFXO3NCQURWLFNBQVM7dUJBQUMsMEJBQTBCLEVBQUUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFO2dCQUt2RCxRQUFRO3NCQURQLEtBQUs7dUJBQUMsU0FBUztnQkFJaEIsTUFBTTtzQkFETCxLQUFLO2dCQUlOLGlCQUFpQjtzQkFEaEIsS0FBSztnQkFJTixlQUFlO3NCQURkLEtBQUs7Z0JBSUYsUUFBUTtzQkFEWCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQW5pbWF0aW9uRXZlbnQgfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcbmltcG9ydCB7IERpcmVjdGlvbiwgRGlyZWN0aW9uYWxpdHkgfSBmcm9tICdAYW5ndWxhci9jZGsvYmlkaSc7XG5pbXBvcnQgeyBUZW1wbGF0ZVBvcnRhbCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuaW1wb3J0IHsgQ2RrU2Nyb2xsYWJsZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9zY3JvbGxpbmcnO1xuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBPcHRpb25hbCxcbiAgT3V0cHV0LFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGRpc3RpbmN0VW50aWxDaGFuZ2VkLCBzdGFydFdpdGgsIFN1YmplY3QsIFN1YnNjcmlwdGlvbiB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgdGFiQW5pbWF0aW9ucyB9IGZyb20gJy4uLy4uLy4uL2FuaW1hdGlvbnMnO1xuaW1wb3J0IHsgSW5saW5lVGFiQm9keUhvc3REaXJlY3RpdmUgfSBmcm9tICcuLi9pbmxpbmUtdGFiLWJvZHktaG9zdCc7XG5cbmV4cG9ydCB0eXBlIElubGluZVRhYkJvZHlQb3NpdGlvblN0YXRlID0gJ2xlZnQnIHwgJ2NlbnRlcicgfCAncmlnaHQnIHwgJ2xlZnQtb3JpZ2luLWNlbnRlcicgfCAncmlnaHQtb3JpZ2luLWNlbnRlcic7XG5cbmV4cG9ydCB0eXBlIElubGluZVRhYkJvZHlPcmlnaW5TdGF0ZSA9ICdsZWZ0JyB8ICdyaWdodCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LWlubGluZS10YWItYm9keScsXG4gIHRlbXBsYXRlVXJsOiAnaW5saW5lLXRhYi1ib2R5LmNvbXBvbmVudC5odG1sJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5EZWZhdWx0LFxuICBhbmltYXRpb25zOiBbdGFiQW5pbWF0aW9ucy50cmFuc2xhdGVUYWJdLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ2RrU2Nyb2xsYWJsZU1vZHVsZSwgSW5saW5lVGFiQm9keUhvc3REaXJlY3RpdmVdLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1pbmxpbmUtdGFiLWJvZHknLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBJbmxpbmVUYWJCb2R5Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBwcml2YXRlIF9wb3NpdGlvbkluZGV4ITogbnVtYmVyO1xuICBwcml2YXRlIF9jZW50ZXJpbmdTdWIgPSBTdWJzY3JpcHRpb24uRU1QVFk7XG4gIHByaXZhdGUgX2xlYXZpbmdTdWIgPSBTdWJzY3JpcHRpb24uRU1QVFk7XG4gIHByaXZhdGUgX2RpckNoYW5nZVN1YnNjcmlwdGlvbiA9IFN1YnNjcmlwdGlvbi5FTVBUWTtcblxuICBfcG9zaXRpb24hOiBJbmxpbmVUYWJCb2R5UG9zaXRpb25TdGF0ZTtcblxuICByZWFkb25seSBfdHJhbnNsYXRlVGFiQ29tcGxldGUgPSBuZXcgU3ViamVjdDxBbmltYXRpb25FdmVudD4oKTtcblxuICBAT3V0cHV0KClcbiAgcmVhZG9ubHkgX29uQ2VudGVyaW5nID0gbmV3IEV2ZW50RW1pdHRlcjxudW1iZXI+KCk7XG5cbiAgQE91dHB1dCgpXG4gIHJlYWRvbmx5IF9iZWZvcmVDZW50ZXJpbmcgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG5cbiAgQE91dHB1dCgpXG4gIHJlYWRvbmx5IF9hZnRlckxlYXZpbmdDZW50ZXIgPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XG5cbiAgQE91dHB1dCgpXG4gIHJlYWRvbmx5IF9vbkNlbnRlcmVkID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPih0cnVlKTtcblxuICBAVmlld0NoaWxkKElubGluZVRhYkJvZHlIb3N0RGlyZWN0aXZlLCB7IHN0YXRpYzogdHJ1ZSB9KVxuICBfcG9ydGFsSG9zdCE6IElubGluZVRhYkJvZHlIb3N0RGlyZWN0aXZlO1xuXG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8taW5wdXQtcmVuYW1lXG4gIEBJbnB1dCgnY29udGVudCcpXG4gIF9jb250ZW50ITogVGVtcGxhdGVQb3J0YWw7XG5cbiAgQElucHV0KClcbiAgb3JpZ2luITogbnVtYmVyIHwgbnVsbDtcblxuICBASW5wdXQoKVxuICBhbmltYXRpb25EdXJhdGlvbiA9ICc1MDBtcyc7XG5cbiAgQElucHV0KClcbiAgcHJlc2VydmVDb250ZW50ID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgc2V0IHBvc2l0aW9uKHBvc2l0aW9uOiBudW1iZXIpIHtcbiAgICB0aGlzLl9wb3NpdGlvbkluZGV4ID0gcG9zaXRpb247XG4gICAgdGhpcy5fY29tcHV0ZVBvc2l0aW9uQW5pbWF0aW9uU3RhdGUoKTtcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+LFxuICAgIEBPcHRpb25hbCgpIHByaXZhdGUgX2RpcjogRGlyZWN0aW9uYWxpdHksXG4gICAgY2hhbmdlRGV0ZWN0b3JSZWY6IENoYW5nZURldGVjdG9yUmVmLFxuICApIHtcbiAgICBpZiAoX2Rpcikge1xuICAgICAgdGhpcy5fZGlyQ2hhbmdlU3Vic2NyaXB0aW9uID0gX2Rpci5jaGFuZ2Uuc3Vic2NyaWJlKChkaXI6IERpcmVjdGlvbikgPT4ge1xuICAgICAgICB0aGlzLl9jb21wdXRlUG9zaXRpb25BbmltYXRpb25TdGF0ZShkaXIpO1xuICAgICAgICBjaGFuZ2VEZXRlY3RvclJlZi5tYXJrRm9yQ2hlY2soKTtcbiAgICAgIH0pO1xuICAgIH1cblxuICAgIHRoaXMuX3RyYW5zbGF0ZVRhYkNvbXBsZXRlXG4gICAgICAucGlwZShcbiAgICAgICAgZGlzdGluY3RVbnRpbENoYW5nZWQoKHgsIHkpID0+IHtcbiAgICAgICAgICByZXR1cm4geC5mcm9tU3RhdGUgPT09IHkuZnJvbVN0YXRlICYmIHgudG9TdGF0ZSA9PT0geS50b1N0YXRlO1xuICAgICAgICB9KSxcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoKGV2ZW50KSA9PiB7XG4gICAgICAgIGlmICh0aGlzLl9pc0NlbnRlclBvc2l0aW9uKGV2ZW50LnRvU3RhdGUpICYmIHRoaXMuX2lzQ2VudGVyUG9zaXRpb24odGhpcy5fcG9zaXRpb24pKSB7XG4gICAgICAgICAgdGhpcy5fb25DZW50ZXJlZC5lbWl0KCk7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAodGhpcy5faXNDZW50ZXJQb3NpdGlvbihldmVudC5mcm9tU3RhdGUpICYmICF0aGlzLl9pc0NlbnRlclBvc2l0aW9uKHRoaXMuX3Bvc2l0aW9uKSkge1xuICAgICAgICAgIHRoaXMuX2FmdGVyTGVhdmluZ0NlbnRlci5lbWl0KCk7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICB9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgaWYgKHRoaXMuX3Bvc2l0aW9uID09ICdjZW50ZXInICYmIHRoaXMub3JpZ2luICE9IG51bGwpIHtcbiAgICAgIHRoaXMuX3Bvc2l0aW9uID0gdGhpcy5fY29tcHV0ZVBvc2l0aW9uRnJvbU9yaWdpbih0aGlzLm9yaWdpbik7XG4gICAgfVxuXG4gICAgdGhpcy5fY2VudGVyaW5nU3ViID0gdGhpcy5fYmVmb3JlQ2VudGVyaW5nXG4gICAgICAucGlwZShzdGFydFdpdGgodGhpcy5faXNDZW50ZXJQb3NpdGlvbih0aGlzLl9wb3NpdGlvbikpKVxuICAgICAgLnN1YnNjcmliZSgoaXNDZW50ZXJpbmc6IGJvb2xlYW4pID0+IHtcbiAgICAgICAgaWYgKGlzQ2VudGVyaW5nICYmICF0aGlzLl9wb3J0YWxIb3N0Lmhhc0F0dGFjaGVkKCkpIHtcbiAgICAgICAgICB0aGlzLl9wb3J0YWxIb3N0LmF0dGFjaCh0aGlzLl9jb250ZW50KTtcbiAgICAgICAgfVxuICAgICAgfSk7XG5cbiAgICB0aGlzLl9sZWF2aW5nU3ViID0gdGhpcy5fYWZ0ZXJMZWF2aW5nQ2VudGVyLnN1YnNjcmliZSgoKSA9PiB7XG4gICAgICBpZiAoIXRoaXMucHJlc2VydmVDb250ZW50KSB7XG4gICAgICAgIHRoaXMuX3BvcnRhbEhvc3QuZGV0YWNoKCk7XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLl9kaXJDaGFuZ2VTdWJzY3JpcHRpb24udW5zdWJzY3JpYmUoKTtcbiAgICB0aGlzLl90cmFuc2xhdGVUYWJDb21wbGV0ZS5jb21wbGV0ZSgpO1xuICAgIHRoaXMuX2NlbnRlcmluZ1N1Yi51bnN1YnNjcmliZSgpO1xuICAgIHRoaXMuX2xlYXZpbmdTdWIudW5zdWJzY3JpYmUoKTtcbiAgfVxuXG4gIF9vblRyYW5zbGF0ZVRhYlN0YXJ0ZWQoZXZlbnQ6IEFuaW1hdGlvbkV2ZW50KTogdm9pZCB7XG4gICAgY29uc3QgaXNDZW50ZXJpbmcgPSB0aGlzLl9pc0NlbnRlclBvc2l0aW9uKGV2ZW50LnRvU3RhdGUpO1xuICAgIHRoaXMuX2JlZm9yZUNlbnRlcmluZy5lbWl0KGlzQ2VudGVyaW5nKTtcbiAgICBpZiAoaXNDZW50ZXJpbmcpIHtcbiAgICAgIHRoaXMuX29uQ2VudGVyaW5nLmVtaXQodGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmNsaWVudEhlaWdodCk7XG4gICAgfVxuICB9XG5cbiAgX2dldExheW91dERpcmVjdGlvbigpOiBEaXJlY3Rpb24ge1xuICAgIHJldHVybiB0aGlzLl9kaXIgJiYgdGhpcy5fZGlyLnZhbHVlID09PSAncnRsJyA/ICdydGwnIDogJ2x0cic7XG4gIH1cblxuICBfaXNDZW50ZXJQb3NpdGlvbihwb3NpdGlvbjogSW5saW5lVGFiQm9keVBvc2l0aW9uU3RhdGUgfCBzdHJpbmcpOiBib29sZWFuIHtcbiAgICByZXR1cm4gcG9zaXRpb24gPT0gJ2NlbnRlcicgfHwgcG9zaXRpb24gPT0gJ2xlZnQtb3JpZ2luLWNlbnRlcicgfHwgcG9zaXRpb24gPT0gJ3JpZ2h0LW9yaWdpbi1jZW50ZXInO1xuICB9XG5cbiAgcHJpdmF0ZSBfY29tcHV0ZVBvc2l0aW9uQW5pbWF0aW9uU3RhdGUoZGlyOiBEaXJlY3Rpb24gPSB0aGlzLl9nZXRMYXlvdXREaXJlY3Rpb24oKSkge1xuICAgIGlmICh0aGlzLl9wb3NpdGlvbkluZGV4IDwgMCkge1xuICAgICAgdGhpcy5fcG9zaXRpb24gPSBkaXIgPT0gJ2x0cicgPyAnbGVmdCcgOiAncmlnaHQnO1xuICAgIH0gZWxzZSBpZiAodGhpcy5fcG9zaXRpb25JbmRleCA+IDApIHtcbiAgICAgIHRoaXMuX3Bvc2l0aW9uID0gZGlyID09ICdsdHInID8gJ3JpZ2h0JyA6ICdsZWZ0JztcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5fcG9zaXRpb24gPSAnY2VudGVyJztcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIF9jb21wdXRlUG9zaXRpb25Gcm9tT3JpZ2luKG9yaWdpbjogbnVtYmVyKTogSW5saW5lVGFiQm9keVBvc2l0aW9uU3RhdGUge1xuICAgIGNvbnN0IGRpciA9IHRoaXMuX2dldExheW91dERpcmVjdGlvbigpO1xuXG4gICAgaWYgKChkaXIgPT0gJ2x0cicgJiYgb3JpZ2luIDw9IDApIHx8IChkaXIgPT0gJ3J0bCcgJiYgb3JpZ2luID4gMCkpIHtcbiAgICAgIHJldHVybiAnbGVmdC1vcmlnaW4tY2VudGVyJztcbiAgICB9XG5cbiAgICByZXR1cm4gJ3JpZ2h0LW9yaWdpbi1jZW50ZXInO1xuICB9XG59XG4iLCI8ZGl2XG4gICNjb250ZW50XG4gIFtAdHJhbnNsYXRlVGFiXT1cIntcbiAgICB2YWx1ZTogX3Bvc2l0aW9uLFxuICAgIHBhcmFtczogeyBhbmltYXRpb25EdXJhdGlvbjogJzBtcycgfVxuICB9XCJcbiAgKEB0cmFuc2xhdGVUYWIuc3RhcnQpPVwiX29uVHJhbnNsYXRlVGFiU3RhcnRlZCgkZXZlbnQpXCJcbiAgKEB0cmFuc2xhdGVUYWIuZG9uZSk9XCJfdHJhbnNsYXRlVGFiQ29tcGxldGUubmV4dCgkZXZlbnQpXCJcbiAgY2RrU2Nyb2xsYWJsZVxuPlxuICA8bmctdGVtcGxhdGUgZXRJbmxpbmVUYWJCb2R5SG9zdCAvPlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { CdkPortalOutlet } from '@angular/cdk/portal';
|
|
2
|
-
import { DOCUMENT } from '@angular/common';
|
|
3
|
-
import { ComponentFactoryResolver, Directive, Inject, ViewContainerRef } from '@angular/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class InlineTabBodyHostDirective extends CdkPortalOutlet {
|
|
6
|
-
constructor(componentFactoryResolver, viewContainerRef, _document) {
|
|
7
|
-
super(componentFactoryResolver, viewContainerRef, _document);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
InlineTabBodyHostDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabBodyHostDirective, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.ViewContainerRef }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11
|
-
InlineTabBodyHostDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: InlineTabBodyHostDirective, isStandalone: true, selector: "[etInlineTabBodyHost]", host: { classAttribute: "et-inline-tab-body-host" }, usesInheritance: true, ngImport: i0 });
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabBodyHostDirective, decorators: [{
|
|
13
|
-
type: Directive,
|
|
14
|
-
args: [{
|
|
15
|
-
selector: '[etInlineTabBodyHost]',
|
|
16
|
-
standalone: true,
|
|
17
|
-
host: {
|
|
18
|
-
class: 'et-inline-tab-body-host',
|
|
19
|
-
},
|
|
20
|
-
}]
|
|
21
|
-
}], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: i0.ViewContainerRef }, { type: Document, decorators: [{
|
|
22
|
-
type: Inject,
|
|
23
|
-
args: [DOCUMENT]
|
|
24
|
-
}] }]; } });
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXRhYi1ib2R5LWhvc3QuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYnMvcGFydGlhbHMvaW5saW5lLXRhYnMvaW5saW5lLXRhYi1ib2R5LWhvc3QvaW5saW5lLXRhYi1ib2R5LWhvc3QuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN0RCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDM0MsT0FBTyxFQUFFLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQXFCLGdCQUFnQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVNqSCxNQUFNLE9BQU8sMEJBQTJCLFNBQVEsZUFBZTtJQUM3RCxZQUNFLHdCQUFrRCxFQUNsRCxnQkFBa0MsRUFDaEIsU0FBbUI7UUFFckMsS0FBSyxDQUFDLHdCQUF3QixFQUFFLGdCQUFnQixFQUFFLFNBQVMsQ0FBQyxDQUFDO0lBQy9ELENBQUM7O3VIQVBVLDBCQUEwQiwwRkFJM0IsUUFBUTsyR0FKUCwwQkFBMEI7MkZBQTFCLDBCQUEwQjtrQkFQdEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsdUJBQXVCO29CQUNqQyxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSx5QkFBeUI7cUJBQ2pDO2lCQUNGOzswQkFLSSxNQUFNOzJCQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDZGtQb3J0YWxPdXRsZXQgfSBmcm9tICdAYW5ndWxhci9jZGsvcG9ydGFsJztcbmltcG9ydCB7IERPQ1VNRU5UIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENvbXBvbmVudEZhY3RvcnlSZXNvbHZlciwgRGlyZWN0aXZlLCBJbmplY3QsIE9uRGVzdHJveSwgT25Jbml0LCBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tldElubGluZVRhYkJvZHlIb3N0XScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LWlubGluZS10YWItYm9keS1ob3N0JyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgSW5saW5lVGFiQm9keUhvc3REaXJlY3RpdmUgZXh0ZW5kcyBDZGtQb3J0YWxPdXRsZXQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIGNvbnN0cnVjdG9yKFxuICAgIGNvbXBvbmVudEZhY3RvcnlSZXNvbHZlcjogQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLFxuICAgIHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYsXG4gICAgQEluamVjdChET0NVTUVOVCkgX2RvY3VtZW50OiBEb2N1bWVudCxcbiAgKSB7XG4gICAgc3VwZXIoY29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCB2aWV3Q29udGFpbmVyUmVmLCBfZG9jdW1lbnQpO1xuICB9XG59XG4iXX0=
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Directive, InjectionToken, TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export const TAB_CONTENT = new InjectionToken('TabContent');
|
|
4
|
-
export class InlineTabContentDirective {
|
|
5
|
-
constructor(template) {
|
|
6
|
-
this.template = template;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
InlineTabContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabContentDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10
|
-
InlineTabContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: InlineTabContentDirective, isStandalone: true, selector: "[etInlineTabContent]", host: { classAttribute: "et-inline-tab-content" }, providers: [{ provide: TAB_CONTENT, useExisting: InlineTabContentDirective }], ngImport: i0 });
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabContentDirective, decorators: [{
|
|
12
|
-
type: Directive,
|
|
13
|
-
args: [{
|
|
14
|
-
selector: '[etInlineTabContent]',
|
|
15
|
-
providers: [{ provide: TAB_CONTENT, useExisting: InlineTabContentDirective }],
|
|
16
|
-
standalone: true,
|
|
17
|
-
host: {
|
|
18
|
-
class: 'et-inline-tab-content',
|
|
19
|
-
},
|
|
20
|
-
}]
|
|
21
|
-
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXRhYi1jb250ZW50LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJzL3BhcnRpYWxzL2lubGluZS10YWJzL2lubGluZS10YWItY29udGVudC9pbmxpbmUtdGFiLWNvbnRlbnQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsY0FBYyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFFdkUsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUE0QixZQUFZLENBQUMsQ0FBQztBQVV2RixNQUFNLE9BQU8seUJBQXlCO0lBQ3BDLFlBQW1CLFFBQThCO1FBQTlCLGFBQVEsR0FBUixRQUFRLENBQXNCO0lBQUcsQ0FBQzs7c0hBRDFDLHlCQUF5QjswR0FBekIseUJBQXlCLHNIQU56QixDQUFDLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLEVBQUUseUJBQXlCLEVBQUUsQ0FBQzsyRkFNbEUseUJBQXlCO2tCQVJyQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxzQkFBc0I7b0JBQ2hDLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLDJCQUEyQixFQUFFLENBQUM7b0JBQzdFLFVBQVUsRUFBRSxJQUFJO29CQUNoQixJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLHVCQUF1QjtxQkFDL0I7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEluamVjdGlvblRva2VuLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgY29uc3QgVEFCX0NPTlRFTlQgPSBuZXcgSW5qZWN0aW9uVG9rZW48SW5saW5lVGFiQ29udGVudERpcmVjdGl2ZT4oJ1RhYkNvbnRlbnQnKTtcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2V0SW5saW5lVGFiQ29udGVudF0nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFRBQl9DT05URU5ULCB1c2VFeGlzdGluZzogSW5saW5lVGFiQ29udGVudERpcmVjdGl2ZSB9XSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtaW5saW5lLXRhYi1jb250ZW50JyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgSW5saW5lVGFiQ29udGVudERpcmVjdGl2ZSB7XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB0ZW1wbGF0ZTogVGVtcGxhdGVSZWY8dW5rbm93bj4pIHt9XG59XG4iXX0=
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { Directionality } from '@angular/cdk/bidi';
|
|
2
|
-
import { ViewportRuler } from '@angular/cdk/scrolling';
|
|
3
|
-
import { NgClass } from '@angular/common';
|
|
4
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChildren, ElementRef, forwardRef, NgZone, Optional, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
5
|
-
import { ObserveContentDirective, ScrollObserverIgnoreTargetDirective, TypedQueryList } from '@ethlete/core';
|
|
6
|
-
import { ScrollableComponent } from '../../../../scrollable';
|
|
7
|
-
import { ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, PaginatedTabHeaderDirective } from '../../../utils';
|
|
8
|
-
import { InlineTabLabelWrapperDirective } from '../inline-tab-label-wrapper';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
import * as i1 from "@angular/cdk/scrolling";
|
|
11
|
-
import * as i2 from "@angular/cdk/bidi";
|
|
12
|
-
export class InlineTabHeaderComponent extends PaginatedTabHeaderDirective {
|
|
13
|
-
constructor(elementRef, changeDetectorRef, viewportRuler, dir, ngZone) {
|
|
14
|
-
super(elementRef, changeDetectorRef, viewportRuler, dir, ngZone);
|
|
15
|
-
}
|
|
16
|
-
ngAfterContentInit() {
|
|
17
|
-
this._activeTabUnderlineManager = new ActiveTabUnderlineBarManager(this._inkBars);
|
|
18
|
-
super.ngAfterContentInit();
|
|
19
|
-
}
|
|
20
|
-
_itemSelected(event) {
|
|
21
|
-
event.preventDefault();
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
InlineTabHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabHeaderComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i1.ViewportRuler }, { token: i2.Directionality, optional: true }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
-
InlineTabHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: InlineTabHeaderComponent, isStandalone: true, selector: "et-inline-tab-header", host: { classAttribute: "et-inline-tab-header" }, queries: [{ propertyName: "_items", predicate: InlineTabLabelWrapperDirective }, { propertyName: "_inkBars", predicate: i0.forwardRef(function () { return ActiveTabUnderlineDirective; }), descendants: true }], viewQueries: [{ propertyName: "_scrollable", first: true, predicate: ScrollableComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<et-scrollable\n [itemSize]=\"itemSize\"\n [renderButtons]=\"renderButtons\"\n [scrollableClass]=\"scrollableClass\"\n [renderMasks]=\"renderMasks\"\n [renderScrollbars]=\"renderScrollbars\"\n (keydown)=\"_handleKeydown($event)\"\n (contentChanged)=\"_onContentChanges()\"\n>\n <ng-content />\n</et-scrollable>\n", dependencies: [{ kind: "component", type: ScrollableComponent, selector: "et-scrollable", inputs: ["itemSize", "direction", "scrollableRole", "scrollableClass", "renderMasks", "renderButtons", "renderScrollbars", "stickyButtons", "cursorDragScroll"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabHeaderComponent, decorators: [{
|
|
27
|
-
type: Component,
|
|
28
|
-
args: [{ selector: 'et-inline-tab-header', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [ScrollableComponent, NgClass, ObserveContentDirective, ScrollObserverIgnoreTargetDirective], host: {
|
|
29
|
-
class: 'et-inline-tab-header',
|
|
30
|
-
}, template: "<et-scrollable\n [itemSize]=\"itemSize\"\n [renderButtons]=\"renderButtons\"\n [scrollableClass]=\"scrollableClass\"\n [renderMasks]=\"renderMasks\"\n [renderScrollbars]=\"renderScrollbars\"\n (keydown)=\"_handleKeydown($event)\"\n (contentChanged)=\"_onContentChanges()\"\n>\n <ng-content />\n</et-scrollable>\n" }]
|
|
31
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1.ViewportRuler }, { type: i2.Directionality, decorators: [{
|
|
32
|
-
type: Optional
|
|
33
|
-
}] }, { type: i0.NgZone }]; }, propDecorators: { _items: [{
|
|
34
|
-
type: ContentChildren,
|
|
35
|
-
args: [InlineTabLabelWrapperDirective, { descendants: false }]
|
|
36
|
-
}], _scrollable: [{
|
|
37
|
-
type: ViewChild,
|
|
38
|
-
args: [ScrollableComponent, { static: true }]
|
|
39
|
-
}], _inkBars: [{
|
|
40
|
-
type: ContentChildren,
|
|
41
|
-
args: [forwardRef(() => ActiveTabUnderlineDirective), { descendants: true }]
|
|
42
|
-
}] } });
|
|
43
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXRhYi1oZWFkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYnMvcGFydGlhbHMvaW5saW5lLXRhYnMvaW5saW5lLXRhYi1oZWFkZXIvaW5saW5lLXRhYi1oZWFkZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYnMvcGFydGlhbHMvaW5saW5lLXRhYnMvaW5saW5lLXRhYi1oZWFkZXIvaW5saW5lLXRhYi1oZWFkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ25ELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDMUMsT0FBTyxFQUdMLHVCQUF1QixFQUN2QixpQkFBaUIsRUFDakIsU0FBUyxFQUNULGVBQWUsRUFDZixVQUFVLEVBQ1YsVUFBVSxFQUNWLE1BQU0sRUFFTixRQUFRLEVBQ1IsU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsdUJBQXVCLEVBQUUsbUNBQW1DLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzdHLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQzdELE9BQU8sRUFBRSw0QkFBNEIsRUFBRSwyQkFBMkIsRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3hILE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLDZCQUE2QixDQUFDOzs7O0FBYTdFLE1BQU0sT0FBTyx3QkFDWCxTQUFRLDJCQUEyQjtJQWNuQyxZQUNFLFVBQXNCLEVBQ3RCLGlCQUFvQyxFQUNwQyxhQUE0QixFQUNoQixHQUFtQixFQUMvQixNQUFjO1FBRWQsS0FBSyxDQUFDLFVBQVUsRUFBRSxpQkFBaUIsRUFBRSxhQUFhLEVBQUUsR0FBRyxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ25FLENBQUM7SUFFUSxrQkFBa0I7UUFDekIsSUFBSSxDQUFDLDBCQUEwQixHQUFHLElBQUksNEJBQTRCLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ2xGLEtBQUssQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFUyxhQUFhLENBQUMsS0FBb0I7UUFDMUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQ3pCLENBQUM7O3FIQWhDVSx3QkFBd0I7eUdBQXhCLHdCQUF3Qix5SkFJbEIsOEJBQThCLDhFQU1iLDJCQUEyQixpR0FIbEQsbUJBQW1CLHFGQ3pDaEMsa1VBV0EsNENEa0JZLG1CQUFtQjsyRkFLbEIsd0JBQXdCO2tCQVhwQyxTQUFTOytCQUNFLHNCQUFzQixpQkFFakIsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxtQkFBbUIsRUFBRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsbUNBQW1DLENBQUMsUUFDL0Y7d0JBQ0osS0FBSyxFQUFFLHNCQUFzQjtxQkFDOUI7OzBCQXFCRSxRQUFRO2lFQWRYLE1BQU07c0JBREwsZUFBZTt1QkFBQyw4QkFBOEIsRUFBRSxFQUFFLFdBQVcsRUFBRSxLQUFLLEVBQUU7Z0JBSXZFLFdBQVc7c0JBRFYsU0FBUzt1QkFBQyxtQkFBbUIsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUU7Z0JBSWhELFFBQVE7c0JBRFAsZUFBZTt1QkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsMkJBQTJCLENBQUMsRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3Rpb25hbGl0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9iaWRpJztcbmltcG9ydCB7IFZpZXdwb3J0UnVsZXIgfSBmcm9tICdAYW5ndWxhci9jZGsvc2Nyb2xsaW5nJztcbmltcG9ydCB7IE5nQ2xhc3MgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgQWZ0ZXJDb250ZW50Q2hlY2tlZCxcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgRWxlbWVudFJlZixcbiAgZm9yd2FyZFJlZixcbiAgTmdab25lLFxuICBPbkRlc3Ryb3ksXG4gIE9wdGlvbmFsLFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE9ic2VydmVDb250ZW50RGlyZWN0aXZlLCBTY3JvbGxPYnNlcnZlcklnbm9yZVRhcmdldERpcmVjdGl2ZSwgVHlwZWRRdWVyeUxpc3QgfSBmcm9tICdAZXRobGV0ZS9jb3JlJztcbmltcG9ydCB7IFNjcm9sbGFibGVDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi9zY3JvbGxhYmxlJztcbmltcG9ydCB7IEFjdGl2ZVRhYlVuZGVybGluZUJhck1hbmFnZXIsIEFjdGl2ZVRhYlVuZGVybGluZURpcmVjdGl2ZSwgUGFnaW5hdGVkVGFiSGVhZGVyRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHsgSW5saW5lVGFiTGFiZWxXcmFwcGVyRGlyZWN0aXZlIH0gZnJvbSAnLi4vaW5saW5lLXRhYi1sYWJlbC13cmFwcGVyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtaW5saW5lLXRhYi1oZWFkZXInLFxuICB0ZW1wbGF0ZVVybDogJ2lubGluZS10YWItaGVhZGVyLmNvbXBvbmVudC5odG1sJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtTY3JvbGxhYmxlQ29tcG9uZW50LCBOZ0NsYXNzLCBPYnNlcnZlQ29udGVudERpcmVjdGl2ZSwgU2Nyb2xsT2JzZXJ2ZXJJZ25vcmVUYXJnZXREaXJlY3RpdmVdLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1pbmxpbmUtdGFiLWhlYWRlcicsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIElubGluZVRhYkhlYWRlckNvbXBvbmVudFxuICBleHRlbmRzIFBhZ2luYXRlZFRhYkhlYWRlckRpcmVjdGl2ZVxuICBpbXBsZW1lbnRzIEFmdGVyQ29udGVudENoZWNrZWQsIEFmdGVyQ29udGVudEluaXQsIE9uRGVzdHJveVxue1xuICBAQ29udGVudENoaWxkcmVuKElubGluZVRhYkxhYmVsV3JhcHBlckRpcmVjdGl2ZSwgeyBkZXNjZW5kYW50czogZmFsc2UgfSlcbiAgX2l0ZW1zITogVHlwZWRRdWVyeUxpc3Q8SW5saW5lVGFiTGFiZWxXcmFwcGVyRGlyZWN0aXZlPjtcblxuICBAVmlld0NoaWxkKFNjcm9sbGFibGVDb21wb25lbnQsIHsgc3RhdGljOiB0cnVlIH0pXG4gIF9zY3JvbGxhYmxlITogU2Nyb2xsYWJsZUNvbXBvbmVudDtcblxuICBAQ29udGVudENoaWxkcmVuKGZvcndhcmRSZWYoKCkgPT4gQWN0aXZlVGFiVW5kZXJsaW5lRGlyZWN0aXZlKSwgeyBkZXNjZW5kYW50czogdHJ1ZSB9KVxuICBfaW5rQmFycyE6IFR5cGVkUXVlcnlMaXN0PEFjdGl2ZVRhYlVuZGVybGluZURpcmVjdGl2ZT47XG5cbiAgX2FjdGl2ZVRhYlVuZGVybGluZU1hbmFnZXI/OiBBY3RpdmVUYWJVbmRlcmxpbmVCYXJNYW5hZ2VyO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsXG4gICAgY2hhbmdlRGV0ZWN0b3JSZWY6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHZpZXdwb3J0UnVsZXI6IFZpZXdwb3J0UnVsZXIsXG4gICAgQE9wdGlvbmFsKCkgZGlyOiBEaXJlY3Rpb25hbGl0eSxcbiAgICBuZ1pvbmU6IE5nWm9uZSxcbiAgKSB7XG4gICAgc3VwZXIoZWxlbWVudFJlZiwgY2hhbmdlRGV0ZWN0b3JSZWYsIHZpZXdwb3J0UnVsZXIsIGRpciwgbmdab25lKTtcbiAgfVxuXG4gIG92ZXJyaWRlIG5nQWZ0ZXJDb250ZW50SW5pdCgpIHtcbiAgICB0aGlzLl9hY3RpdmVUYWJVbmRlcmxpbmVNYW5hZ2VyID0gbmV3IEFjdGl2ZVRhYlVuZGVybGluZUJhck1hbmFnZXIodGhpcy5faW5rQmFycyk7XG4gICAgc3VwZXIubmdBZnRlckNvbnRlbnRJbml0KCk7XG4gIH1cblxuICBwcm90ZWN0ZWQgX2l0ZW1TZWxlY3RlZChldmVudDogS2V5Ym9hcmRFdmVudCkge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gIH1cbn1cbiIsIjxldC1zY3JvbGxhYmxlXG4gIFtpdGVtU2l6ZV09XCJpdGVtU2l6ZVwiXG4gIFtyZW5kZXJCdXR0b25zXT1cInJlbmRlckJ1dHRvbnNcIlxuICBbc2Nyb2xsYWJsZUNsYXNzXT1cInNjcm9sbGFibGVDbGFzc1wiXG4gIFtyZW5kZXJNYXNrc109XCJyZW5kZXJNYXNrc1wiXG4gIFtyZW5kZXJTY3JvbGxiYXJzXT1cInJlbmRlclNjcm9sbGJhcnNcIlxuICAoa2V5ZG93bik9XCJfaGFuZGxlS2V5ZG93bigkZXZlbnQpXCJcbiAgKGNvbnRlbnRDaGFuZ2VkKT1cIl9vbkNvbnRlbnRDaGFuZ2VzKClcIlxuPlxuICA8bmctY29udGVudCAvPlxuPC9ldC1zY3JvbGxhYmxlPlxuIl19
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { CdkPortal } from '@angular/cdk/portal';
|
|
2
|
-
import { Directive, Inject, InjectionToken, Optional, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export const TAB_LABEL = new InjectionToken('TabLabel');
|
|
5
|
-
export const TAB = new InjectionToken('TAB');
|
|
6
|
-
export class InlineTabLabelDirective extends CdkPortal {
|
|
7
|
-
constructor(templateRef, viewContainerRef, _closestTab) {
|
|
8
|
-
super(templateRef, viewContainerRef);
|
|
9
|
-
this._closestTab = _closestTab;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
InlineTabLabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabLabelDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: TAB, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13
|
-
InlineTabLabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: InlineTabLabelDirective, isStandalone: true, selector: "[et-inline-tab-label]", host: { classAttribute: "et-inline-tab-label" }, providers: [{ provide: TAB_LABEL, useExisting: InlineTabLabelDirective }], usesInheritance: true, ngImport: i0 });
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabLabelDirective, decorators: [{
|
|
15
|
-
type: Directive,
|
|
16
|
-
args: [{
|
|
17
|
-
selector: '[et-inline-tab-label]',
|
|
18
|
-
providers: [{ provide: TAB_LABEL, useExisting: InlineTabLabelDirective }],
|
|
19
|
-
standalone: true,
|
|
20
|
-
host: {
|
|
21
|
-
class: 'et-inline-tab-label',
|
|
22
|
-
},
|
|
23
|
-
}]
|
|
24
|
-
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: undefined, decorators: [{
|
|
25
|
-
type: Inject,
|
|
26
|
-
args: [TAB]
|
|
27
|
-
}, {
|
|
28
|
-
type: Optional
|
|
29
|
-
}] }]; } });
|
|
30
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXRhYi1sYWJlbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFicy9wYXJ0aWFscy9pbmxpbmUtdGFicy9pbmxpbmUtdGFiLWxhYmVsL2lubGluZS10YWItbGFiZWwuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNoRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxjQUFjLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFFM0csTUFBTSxDQUFDLE1BQU0sU0FBUyxHQUFHLElBQUksY0FBYyxDQUEwQixVQUFVLENBQUMsQ0FBQztBQUVqRixNQUFNLENBQUMsTUFBTSxHQUFHLEdBQUcsSUFBSSxjQUFjLENBQVUsS0FBSyxDQUFDLENBQUM7QUFVdEQsTUFBTSxPQUFPLHVCQUF3QixTQUFRLFNBQVM7SUFDcEQsWUFDRSxXQUFpQyxFQUNqQyxnQkFBa0MsRUFDRixXQUFvQjtRQUVwRCxLQUFLLENBQUMsV0FBVyxFQUFFLGdCQUFnQixDQUFDLENBQUM7UUFGTCxnQkFBVyxHQUFYLFdBQVcsQ0FBUztJQUd0RCxDQUFDOztvSEFQVSx1QkFBdUIsNkVBSXhCLEdBQUc7d0dBSkYsdUJBQXVCLHFIQU52QixDQUFDLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsdUJBQXVCLEVBQUUsQ0FBQzsyRkFNOUQsdUJBQXVCO2tCQVJuQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSx1QkFBdUI7b0JBQ2pDLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLHlCQUF5QixFQUFFLENBQUM7b0JBQ3pFLFVBQVUsRUFBRSxJQUFJO29CQUNoQixJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLHFCQUFxQjtxQkFDN0I7aUJBQ0Y7OzBCQUtJLE1BQU07MkJBQUMsR0FBRzs7MEJBQUcsUUFBUSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka1BvcnRhbCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBJbmplY3QsIEluamVjdGlvblRva2VuLCBPcHRpb25hbCwgVGVtcGxhdGVSZWYsIFZpZXdDb250YWluZXJSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuZXhwb3J0IGNvbnN0IFRBQl9MQUJFTCA9IG5ldyBJbmplY3Rpb25Ub2tlbjxJbmxpbmVUYWJMYWJlbERpcmVjdGl2ZT4oJ1RhYkxhYmVsJyk7XG5cbmV4cG9ydCBjb25zdCBUQUIgPSBuZXcgSW5qZWN0aW9uVG9rZW48dW5rbm93bj4oJ1RBQicpO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZXQtaW5saW5lLXRhYi1sYWJlbF0nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFRBQl9MQUJFTCwgdXNlRXhpc3Rpbmc6IElubGluZVRhYkxhYmVsRGlyZWN0aXZlIH1dLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1pbmxpbmUtdGFiLWxhYmVsJyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgSW5saW5lVGFiTGFiZWxEaXJlY3RpdmUgZXh0ZW5kcyBDZGtQb3J0YWwge1xuICBjb25zdHJ1Y3RvcihcbiAgICB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8dW5rbm93bj4sXG4gICAgdmlld0NvbnRhaW5lclJlZjogVmlld0NvbnRhaW5lclJlZixcbiAgICBASW5qZWN0KFRBQikgQE9wdGlvbmFsKCkgcHVibGljIF9jbG9zZXN0VGFiOiB1bmtub3duLFxuICApIHtcbiAgICBzdXBlcih0ZW1wbGF0ZVJlZiwgdmlld0NvbnRhaW5lclJlZik7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
-
import { Directive, ElementRef, HostBinding, Input } from '@angular/core';
|
|
3
|
-
import { ActiveTabUnderlineDirective } from '../../../utils';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "../../../utils/active-tab-underline.util";
|
|
6
|
-
export class InlineTabLabelWrapperDirective {
|
|
7
|
-
get disabled() {
|
|
8
|
-
return this._disabled;
|
|
9
|
-
}
|
|
10
|
-
set disabled(value) {
|
|
11
|
-
this._disabled = coerceBooleanProperty(value);
|
|
12
|
-
}
|
|
13
|
-
get attrAriaDisabled() {
|
|
14
|
-
return this.disabled ? 'true' : null;
|
|
15
|
-
}
|
|
16
|
-
constructor(elementRef) {
|
|
17
|
-
this.elementRef = elementRef;
|
|
18
|
-
this._disabled = false;
|
|
19
|
-
}
|
|
20
|
-
focus() {
|
|
21
|
-
this.elementRef.nativeElement.focus();
|
|
22
|
-
}
|
|
23
|
-
getOffsetLeft() {
|
|
24
|
-
return this.elementRef.nativeElement.offsetLeft;
|
|
25
|
-
}
|
|
26
|
-
getOffsetWidth() {
|
|
27
|
-
return this.elementRef.nativeElement.offsetWidth;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
InlineTabLabelWrapperDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabLabelWrapperDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31
|
-
InlineTabLabelWrapperDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: InlineTabLabelWrapperDirective, isStandalone: true, selector: "[etInlineTabLabelWrapper]", inputs: { disabled: "disabled" }, host: { properties: { "attr.aria-disabled": "this.attrAriaDisabled" }, classAttribute: "et-inline-tab-label-wrapper" }, hostDirectives: [{ directive: i1.ActiveTabUnderlineDirective, inputs: ["fitUnderlineToContent", "fitUnderlineToContent"] }], ngImport: i0 });
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InlineTabLabelWrapperDirective, decorators: [{
|
|
33
|
-
type: Directive,
|
|
34
|
-
args: [{
|
|
35
|
-
selector: '[etInlineTabLabelWrapper]',
|
|
36
|
-
standalone: true,
|
|
37
|
-
host: {
|
|
38
|
-
class: 'et-inline-tab-label-wrapper',
|
|
39
|
-
},
|
|
40
|
-
hostDirectives: [{ directive: ActiveTabUnderlineDirective, inputs: ['fitUnderlineToContent'] }],
|
|
41
|
-
}]
|
|
42
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { disabled: [{
|
|
43
|
-
type: Input
|
|
44
|
-
}], attrAriaDisabled: [{
|
|
45
|
-
type: HostBinding,
|
|
46
|
-
args: ['attr.aria-disabled']
|
|
47
|
-
}] } });
|
|
48
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lLXRhYi1sYWJlbC13cmFwcGVyLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJzL3BhcnRpYWxzL2lubGluZS10YWJzL2lubGluZS10YWItbGFiZWwtd3JhcHBlci9pbmxpbmUtdGFiLWxhYmVsLXdyYXBwZXIuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBZ0IscUJBQXFCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUM1RSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7QUFVN0QsTUFBTSxPQUFPLDhCQUE4QjtJQUN6QyxJQUNJLFFBQVE7UUFDVixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUM7SUFDeEIsQ0FBQztJQUNELElBQUksUUFBUSxDQUFDLEtBQW1CO1FBQzlCLElBQUksQ0FBQyxTQUFTLEdBQUcscUJBQXFCLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDaEQsQ0FBQztJQUdELElBQ0ksZ0JBQWdCO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDdkMsQ0FBQztJQUVELFlBQW1CLFVBQXNCO1FBQXRCLGVBQVUsR0FBVixVQUFVLENBQVk7UUFQakMsY0FBUyxHQUFHLEtBQUssQ0FBQztJQU9rQixDQUFDO0lBRTdDLEtBQUs7UUFDSCxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN4QyxDQUFDO0lBRUQsYUFBYTtRQUNYLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsVUFBVSxDQUFDO0lBQ2xELENBQUM7SUFFRCxjQUFjO1FBQ1osT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxXQUFXLENBQUM7SUFDbkQsQ0FBQzs7MkhBM0JVLDhCQUE4QjsrR0FBOUIsOEJBQThCOzJGQUE5Qiw4QkFBOEI7a0JBUjFDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDJCQUEyQjtvQkFDckMsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRTt3QkFDSixLQUFLLEVBQUUsNkJBQTZCO3FCQUNyQztvQkFDRCxjQUFjLEVBQUUsQ0FBQyxFQUFFLFNBQVMsRUFBRSwyQkFBMkIsRUFBRSxNQUFNLEVBQUUsQ0FBQyx1QkFBdUIsQ0FBQyxFQUFFLENBQUM7aUJBQ2hHO2lHQUdLLFFBQVE7c0JBRFgsS0FBSztnQkFVRixnQkFBZ0I7c0JBRG5CLFdBQVc7dUJBQUMsb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQm9vbGVhbklucHV0LCBjb2VyY2VCb29sZWFuUHJvcGVydHkgfSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBIb3N0QmluZGluZywgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFjdGl2ZVRhYlVuZGVybGluZURpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uL3V0aWxzJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2V0SW5saW5lVGFiTGFiZWxXcmFwcGVyXScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LWlubGluZS10YWItbGFiZWwtd3JhcHBlcicsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IEFjdGl2ZVRhYlVuZGVybGluZURpcmVjdGl2ZSwgaW5wdXRzOiBbJ2ZpdFVuZGVybGluZVRvQ29udGVudCddIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBJbmxpbmVUYWJMYWJlbFdyYXBwZXJEaXJlY3RpdmUge1xuICBASW5wdXQoKVxuICBnZXQgZGlzYWJsZWQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2Rpc2FibGVkO1xuICB9XG4gIHNldCBkaXNhYmxlZCh2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fZGlzYWJsZWQgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICB9XG4gIHByaXZhdGUgX2Rpc2FibGVkID0gZmFsc2U7XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmFyaWEtZGlzYWJsZWQnKVxuICBnZXQgYXR0ckFyaWFEaXNhYmxlZCgpIHtcbiAgICByZXR1cm4gdGhpcy5kaXNhYmxlZCA/ICd0cnVlJyA6IG51bGw7XG4gIH1cblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgZWxlbWVudFJlZjogRWxlbWVudFJlZikge31cblxuICBmb2N1cygpOiB2b2lkIHtcbiAgICB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5mb2N1cygpO1xuICB9XG5cbiAgZ2V0T2Zmc2V0TGVmdCgpOiBudW1iZXIge1xuICAgIHJldHVybiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5vZmZzZXRMZWZ0O1xuICB9XG5cbiAgZ2V0T2Zmc2V0V2lkdGgoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQub2Zmc2V0V2lkdGg7XG4gIH1cbn1cbiJdfQ==
|
package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs
DELETED
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
import { FocusMonitor } from '@angular/cdk/a11y';
|
|
2
|
-
import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
|
|
3
|
-
import { SPACE } from '@angular/cdk/keycodes';
|
|
4
|
-
import { Attribute, ChangeDetectorRef, Component, ElementRef, HostBinding, HostListener, Input, NgZone, Optional, } from '@angular/core';
|
|
5
|
-
import { Router, RouterLink, RouterLinkActive } from '@angular/router';
|
|
6
|
-
import { NavTabsComponent } from '../../../components/nav-tabs/nav-tabs.component';
|
|
7
|
-
import { ActiveTabUnderlineDirective } from '../../../utils';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "../../../components/nav-tabs/nav-tabs.component";
|
|
10
|
-
import * as i2 from "@angular/cdk/a11y";
|
|
11
|
-
import * as i3 from "@angular/router";
|
|
12
|
-
import * as i4 from "../../../utils/active-tab-underline.util";
|
|
13
|
-
let nextUniqueId = 0;
|
|
14
|
-
export class NavTabLinkComponent {
|
|
15
|
-
get active() {
|
|
16
|
-
const link = this._link || this._linkWithHref;
|
|
17
|
-
if (!link) {
|
|
18
|
-
return false;
|
|
19
|
-
}
|
|
20
|
-
const options = this._linkConfig
|
|
21
|
-
? isActiveMatchOptions(this._linkConfig?.routerLinkActiveOptions)
|
|
22
|
-
? this._linkConfig?.routerLinkActiveOptions
|
|
23
|
-
: this._linkConfig?.routerLinkActiveOptions.exact
|
|
24
|
-
: false;
|
|
25
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
26
|
-
// Stolen from https://github.com/angular/angular/blob/main/packages/router/src/directives/router_link_active.ts#L217
|
|
27
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
28
|
-
const isActive = link.urlTree ? this._router.isActive(link.urlTree, options) : false;
|
|
29
|
-
return isActive;
|
|
30
|
-
}
|
|
31
|
-
get tabIndex() {
|
|
32
|
-
return this.disabled ? -1 : this._tabIndex;
|
|
33
|
-
}
|
|
34
|
-
set tabIndex(value) {
|
|
35
|
-
this._tabIndex = value != null ? coerceNumberProperty(value) : 0;
|
|
36
|
-
}
|
|
37
|
-
get disabled() {
|
|
38
|
-
return this._disabled;
|
|
39
|
-
}
|
|
40
|
-
set disabled(value) {
|
|
41
|
-
this._disabled = coerceBooleanProperty(value);
|
|
42
|
-
}
|
|
43
|
-
get _attrAriaControls() {
|
|
44
|
-
return this._getAriaControls();
|
|
45
|
-
}
|
|
46
|
-
get _attrAriaCurrent() {
|
|
47
|
-
return this._getAriaCurrent();
|
|
48
|
-
}
|
|
49
|
-
get _attrAriaDisabled() {
|
|
50
|
-
return this.disabled;
|
|
51
|
-
}
|
|
52
|
-
get _attrAriaSelected() {
|
|
53
|
-
return this._getAriaSelected();
|
|
54
|
-
}
|
|
55
|
-
get _attrTabIndex() {
|
|
56
|
-
return this._getTabIndex();
|
|
57
|
-
}
|
|
58
|
-
get _attrRole() {
|
|
59
|
-
return this._getRole();
|
|
60
|
-
}
|
|
61
|
-
constructor(_tabNavBar, elementRef, tabIndex, _focusMonitor, _router, _cdr, _ngZone, _link, _linkWithHref, _linkConfig) {
|
|
62
|
-
this._tabNavBar = _tabNavBar;
|
|
63
|
-
this.elementRef = elementRef;
|
|
64
|
-
this._focusMonitor = _focusMonitor;
|
|
65
|
-
this._router = _router;
|
|
66
|
-
this._cdr = _cdr;
|
|
67
|
-
this._ngZone = _ngZone;
|
|
68
|
-
this._link = _link;
|
|
69
|
-
this._linkWithHref = _linkWithHref;
|
|
70
|
-
this._linkConfig = _linkConfig;
|
|
71
|
-
this._tabIndex = 0;
|
|
72
|
-
this._disabled = false;
|
|
73
|
-
this.id = `et-nav-tab-link-${nextUniqueId++}`;
|
|
74
|
-
this._haltDisabledEvents = (event) => {
|
|
75
|
-
if (this.disabled) {
|
|
76
|
-
event.preventDefault();
|
|
77
|
-
event.stopImmediatePropagation();
|
|
78
|
-
}
|
|
79
|
-
};
|
|
80
|
-
this.tabIndex = parseInt(tabIndex) || 0;
|
|
81
|
-
}
|
|
82
|
-
ngOnInit() {
|
|
83
|
-
this._ngZone.runOutsideAngular(() => {
|
|
84
|
-
this.elementRef.nativeElement.addEventListener('click', this._haltDisabledEvents);
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
ngAfterViewInit() {
|
|
88
|
-
this._focusMonitor.monitor(this.elementRef);
|
|
89
|
-
}
|
|
90
|
-
ngOnDestroy() {
|
|
91
|
-
this._focusMonitor.stopMonitoring(this.elementRef);
|
|
92
|
-
this.elementRef.nativeElement.removeEventListener('click', this._haltDisabledEvents);
|
|
93
|
-
}
|
|
94
|
-
focus() {
|
|
95
|
-
this.elementRef.nativeElement.focus();
|
|
96
|
-
}
|
|
97
|
-
_handleFocus() {
|
|
98
|
-
this._tabNavBar.focusIndex = this._tabNavBar._items.toArray().indexOf(this);
|
|
99
|
-
}
|
|
100
|
-
_handleKeydown(event) {
|
|
101
|
-
if (this._tabNavBar.tabOutlet && event.keyCode === SPACE) {
|
|
102
|
-
this.elementRef.nativeElement.click();
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
_getAriaControls() {
|
|
106
|
-
return this._tabNavBar.tabOutlet
|
|
107
|
-
? this._tabNavBar.tabOutlet?.id
|
|
108
|
-
: this.elementRef.nativeElement.getAttribute('aria-controls');
|
|
109
|
-
}
|
|
110
|
-
_getAriaSelected() {
|
|
111
|
-
if (this._tabNavBar.tabOutlet) {
|
|
112
|
-
return this.active ? 'true' : 'false';
|
|
113
|
-
}
|
|
114
|
-
else {
|
|
115
|
-
return this.elementRef.nativeElement.getAttribute('aria-selected');
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
_getAriaCurrent() {
|
|
119
|
-
return this.active && !this._tabNavBar.tabOutlet ? 'page' : null;
|
|
120
|
-
}
|
|
121
|
-
_getRole() {
|
|
122
|
-
return this._tabNavBar.tabOutlet ? 'tab' : this.elementRef.nativeElement.getAttribute('role');
|
|
123
|
-
}
|
|
124
|
-
_getTabIndex() {
|
|
125
|
-
if (this._tabNavBar.tabOutlet) {
|
|
126
|
-
return this.active && !this.disabled ? 0 : -1;
|
|
127
|
-
}
|
|
128
|
-
else {
|
|
129
|
-
return this.tabIndex;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
_markForCheck() {
|
|
133
|
-
this._cdr.markForCheck();
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
NavTabLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NavTabLinkComponent, deps: [{ token: i1.NavTabsComponent }, { token: i0.ElementRef }, { token: 'tabindex', attribute: true }, { token: i2.FocusMonitor }, { token: i3.Router }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i3.RouterLink, optional: true }, { token: i3.RouterLink, optional: true }, { token: i3.RouterLinkActive, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
137
|
-
NavTabLinkComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: NavTabLinkComponent, isStandalone: true, selector: "[et-nav-tab-link]", inputs: { tabIndex: "tabIndex", disabled: "disabled", id: "id" }, host: { listeners: { "focus": "_handleFocus()", "keydown": "_handleKeydown($event)" }, properties: { "attr.id": "this.id", "attr.aria-controls": "this._attrAriaControls", "attr.aria-current": "this._attrAriaCurrent", "attr.aria-disabled": "this._attrAriaDisabled", "attr.aria-selected": "this._attrAriaSelected", "attr.tabIndex": "this._attrTabIndex", "attr.role": "this._attrRole" }, classAttribute: "et-nav-tab-link" }, hostDirectives: [{ directive: i4.ActiveTabUnderlineDirective, inputs: ["fitUnderlineToContent", "fitUnderlineToContent"] }], ngImport: i0, template: `
|
|
138
|
-
<span class="et-tab-content">
|
|
139
|
-
<ng-content />
|
|
140
|
-
</span>
|
|
141
|
-
`, isInline: true });
|
|
142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NavTabLinkComponent, decorators: [{
|
|
143
|
-
type: Component,
|
|
144
|
-
args: [{
|
|
145
|
-
selector: '[et-nav-tab-link]',
|
|
146
|
-
template: `
|
|
147
|
-
<span class="et-tab-content">
|
|
148
|
-
<ng-content />
|
|
149
|
-
</span>
|
|
150
|
-
`,
|
|
151
|
-
standalone: true,
|
|
152
|
-
host: {
|
|
153
|
-
class: 'et-nav-tab-link',
|
|
154
|
-
},
|
|
155
|
-
hostDirectives: [{ directive: ActiveTabUnderlineDirective, inputs: ['fitUnderlineToContent'] }],
|
|
156
|
-
}]
|
|
157
|
-
}], ctorParameters: function () { return [{ type: i1.NavTabsComponent }, { type: i0.ElementRef }, { type: undefined, decorators: [{
|
|
158
|
-
type: Attribute,
|
|
159
|
-
args: ['tabindex']
|
|
160
|
-
}] }, { type: i2.FocusMonitor }, { type: i3.Router }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i3.RouterLink, decorators: [{
|
|
161
|
-
type: Optional
|
|
162
|
-
}] }, { type: i3.RouterLink, decorators: [{
|
|
163
|
-
type: Optional
|
|
164
|
-
}] }, { type: i3.RouterLinkActive, decorators: [{
|
|
165
|
-
type: Optional
|
|
166
|
-
}] }]; }, propDecorators: { tabIndex: [{
|
|
167
|
-
type: Input
|
|
168
|
-
}], disabled: [{
|
|
169
|
-
type: Input
|
|
170
|
-
}], id: [{
|
|
171
|
-
type: Input
|
|
172
|
-
}, {
|
|
173
|
-
type: HostBinding,
|
|
174
|
-
args: ['attr.id']
|
|
175
|
-
}], _attrAriaControls: [{
|
|
176
|
-
type: HostBinding,
|
|
177
|
-
args: ['attr.aria-controls']
|
|
178
|
-
}], _attrAriaCurrent: [{
|
|
179
|
-
type: HostBinding,
|
|
180
|
-
args: ['attr.aria-current']
|
|
181
|
-
}], _attrAriaDisabled: [{
|
|
182
|
-
type: HostBinding,
|
|
183
|
-
args: ['attr.aria-disabled']
|
|
184
|
-
}], _attrAriaSelected: [{
|
|
185
|
-
type: HostBinding,
|
|
186
|
-
args: ['attr.aria-selected']
|
|
187
|
-
}], _attrTabIndex: [{
|
|
188
|
-
type: HostBinding,
|
|
189
|
-
args: ['attr.tabIndex']
|
|
190
|
-
}], _attrRole: [{
|
|
191
|
-
type: HostBinding,
|
|
192
|
-
args: ['attr.role']
|
|
193
|
-
}], _handleFocus: [{
|
|
194
|
-
type: HostListener,
|
|
195
|
-
args: ['focus']
|
|
196
|
-
}], _handleKeydown: [{
|
|
197
|
-
type: HostListener,
|
|
198
|
-
args: ['keydown', ['$event']]
|
|
199
|
-
}] } });
|
|
200
|
-
function isActiveMatchOptions(options) {
|
|
201
|
-
return !!options.paths;
|
|
202
|
-
}
|
|
203
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2LXRhYi1saW5rLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJzL3BhcnRpYWxzL25hdi10YWJzL25hdi10YWItbGluay9uYXYtdGFiLWxpbmsuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBbUIsWUFBWSxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDbEUsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxvQkFBb0IsRUFBZSxNQUFNLHVCQUF1QixDQUFDO0FBQy9HLE9BQU8sRUFBRSxLQUFLLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUM5QyxPQUFPLEVBRUwsU0FBUyxFQUNULGlCQUFpQixFQUNqQixTQUFTLEVBQ1QsVUFBVSxFQUNWLFdBQVcsRUFDWCxZQUFZLEVBQ1osS0FBSyxFQUNMLE1BQU0sRUFHTixRQUFRLEdBQ1QsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUF3QixNQUFNLEVBQUUsVUFBVSxFQUFFLGdCQUFnQixFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDN0YsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDbkYsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7OztBQUU3RCxJQUFJLFlBQVksR0FBRyxDQUFDLENBQUM7QUFlckIsTUFBTSxPQUFPLG1CQUFtQjtJQUM5QixJQUFJLE1BQU07UUFDUixNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxhQUFhLENBQUM7UUFFOUMsSUFBSSxDQUFDLElBQUksRUFBRTtZQUNULE9BQU8sS0FBSyxDQUFDO1NBQ2Q7UUFFRCxNQUFNLE9BQU8sR0FBbUMsSUFBSSxDQUFDLFdBQVc7WUFDOUQsQ0FBQyxDQUFDLG9CQUFvQixDQUFDLElBQUks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QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxtQkFBbUI7b0JBQzdCLFFBQVEsRUFBRTs7OztHQUlUO29CQUNELFVBQVUsRUFBRSxJQUFJO29CQUNoQixJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLGlCQUFpQjtxQkFDekI7b0JBQ0QsY0FBYyxFQUFFLENBQUMsRUFBRSxTQUFTLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxFQUFFLENBQUMsdUJBQXVCLENBQUMsRUFBRSxDQUFDO2lCQUNoRzs7MEJBOEVJLFNBQVM7MkJBQUMsVUFBVTs7MEJBS3BCLFFBQVE7OzBCQUNSLFFBQVE7OzBCQUNSLFFBQVE7NENBN0RQLFFBQVE7c0JBRFgsS0FBSztnQkFVRixRQUFRO3NCQURYLEtBQUs7Z0JBV04sRUFBRTtzQkFGRCxLQUFLOztzQkFDTCxXQUFXO3VCQUFDLFNBQVM7Z0JBSWxCLGlCQUFpQjtzQkFEcEIsV0FBVzt1QkFBQyxvQkFBb0I7Z0JBTTdCLGdCQUFnQjtzQkFEbkIsV0FBVzt1QkFBQyxtQkFBbUI7Z0JBTTVCLGlCQUFpQjtzQkFEcEIsV0FBVzt1QkFBQyxvQkFBb0I7Z0JBTTdCLGlCQUFpQjtzQkFEcEIsV0FBVzt1QkFBQyxvQkFBb0I7Z0JBTTdCLGFBQWE7c0JBRGhCLFdBQVc7dUJBQUMsZUFBZTtnQkFNeEIsU0FBUztzQkFEWixXQUFXO3VCQUFDLFdBQVc7Z0JBd0N4QixZQUFZO3NCQURYLFlBQVk7dUJBQUMsT0FBTztnQkFNckIsY0FBYztzQkFEYixZQUFZO3VCQUFDLFNBQVMsRUFBRSxDQUFDLFFBQVEsQ0FBQzs7QUFpRHJDLFNBQVMsb0JBQW9CLENBQUMsT0FBa0Q7SUFDOUUsT0FBTyxDQUFDLENBQUUsT0FBZ0MsQ0FBQyxLQUFLLENBQUM7QUFDbkQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZvY3VzYWJsZU9wdGlvbiwgRm9jdXNNb25pdG9yIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2ExMXknO1xuaW1wb3J0IHsgQm9vbGVhbklucHV0LCBjb2VyY2VCb29sZWFuUHJvcGVydHksIGNvZXJjZU51bWJlclByb3BlcnR5LCBOdW1iZXJJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBTUEFDRSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9rZXljb2Rlcyc7XG5pbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBBdHRyaWJ1dGUsXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIEhvc3RCaW5kaW5nLFxuICBIb3N0TGlzdGVuZXIsXG4gIElucHV0LFxuICBOZ1pvbmUsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBPcHRpb25hbCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJc0FjdGl2ZU1hdGNoT3B0aW9ucywgUm91dGVyLCBSb3V0ZXJMaW5rLCBSb3V0ZXJMaW5rQWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IE5hdlRhYnNDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9jb21wb25lbnRzL25hdi10YWJzL25hdi10YWJzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBY3RpdmVUYWJVbmRlcmxpbmVEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi91dGlscyc7XG5cbmxldCBuZXh0VW5pcXVlSWQgPSAwO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdbZXQtbmF2LXRhYi1saW5rXScsXG4gIHRlbXBsYXRlOiBgXG4gICAgPHNwYW4gY2xhc3M9XCJldC10YWItY29udGVudFwiPlxuICAgICAgPG5nLWNvbnRlbnQgLz5cbiAgICA8L3NwYW4+XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LW5hdi10YWItbGluaycsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbeyBkaXJlY3RpdmU6IEFjdGl2ZVRhYlVuZGVybGluZURpcmVjdGl2ZSwgaW5wdXRzOiBbJ2ZpdFVuZGVybGluZVRvQ29udGVudCddIH1dLFxufSlcbmV4cG9ydCBjbGFzcyBOYXZUYWJMaW5rQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBBZnRlclZpZXdJbml0LCBPbkRlc3Ryb3ksIEZvY3VzYWJsZU9wdGlvbiB7XG4gIGdldCBhY3RpdmUoKTogYm9vbGVhbiB7XG4gICAgY29uc3QgbGluayA9IHRoaXMuX2xpbmsgfHwgdGhpcy5fbGlua1dpdGhIcmVmO1xuXG4gICAgaWYgKCFsaW5rKSB7XG4gICAgICByZXR1cm4gZmFsc2U7XG4gICAgfVxuXG4gICAgY29uc3Qgb3B0aW9uczogYm9vbGVhbiB8IElzQWN0aXZlTWF0Y2hPcHRpb25zID0gdGhpcy5fbGlua0NvbmZpZ1xuICAgICAgPyBpc0FjdGl2ZU1hdGNoT3B0aW9ucyh0aGlzLl9saW5rQ29uZmlnPy5yb3V0ZXJMaW5rQWN0aXZlT3B0aW9ucylcbiAgICAgICAgPyB0aGlzLl9saW5rQ29uZmlnPy5yb3V0ZXJMaW5rQWN0aXZlT3B0aW9uc1xuICAgICAgICA6IHRoaXMuX2xpbmtDb25maWc/LnJvdXRlckxpbmtBY3RpdmVPcHRpb25zLmV4YWN0XG4gICAgICA6IGZhbHNlO1xuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uby1leHBsaWNpdC1hbnlcbiAgICAvLyBTdG9sZW4gZnJvbSBodHRwczovL2dpdGh1Yi5jb20vYW5ndWxhci9hbmd1bGFyL2Jsb2IvbWFpbi9wYWNrYWdlcy9yb3V0ZXIvc3JjL2RpcmVjdGl2ZXMvcm91dGVyX2xpbmtfYWN0aXZlLnRzI0wyMTdcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHR5cGVzY3JpcHQtZXNsaW50L25vLWV4cGxpY2l0LWFueVxuICAgIGNvbnN0IGlzQWN0aXZlID0gbGluay51cmxUcmVlID8gdGhpcy5fcm91dGVyLmlzQWN0aXZlKGxpbmsudXJsVHJlZSwgb3B0aW9ucyBhcyBhbnkpIDogZmFsc2U7XG5cbiAgICByZXR1cm4gaXNBY3RpdmU7XG4gIH1cblxuICBASW5wdXQoKVxuICBnZXQgdGFiSW5kZXgoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gdGhpcy5kaXNhYmxlZCA/IC0xIDogdGhpcy5fdGFiSW5kZXg7XG4gIH1cbiAgc2V0IHRhYkluZGV4KHZhbHVlOiBOdW1iZXJJbnB1dCkge1xuICAgIHRoaXMuX3RhYkluZGV4ID0gdmFsdWUgIT0gbnVsbCA/IGNvZXJjZU51bWJlclByb3BlcnR5KHZhbHVlKSA6IDA7XG4gIH1cbiAgcHJpdmF0ZSBfdGFiSW5kZXggPSAwO1xuXG4gIEBJbnB1dCgpXG4gIGdldCBkaXNhYmxlZCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5fZGlzYWJsZWQ7XG4gIH1cbiAgc2V0IGRpc2FibGVkKHZhbHVlOiBCb29sZWFuSW5wdXQpIHtcbiAgICB0aGlzLl9kaXNhYmxlZCA9IGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSh2YWx1ZSk7XG4gIH1cbiAgcHJpdmF0ZSBfZGlzYWJsZWQgPSBmYWxzZTtcblxuICBASW5wdXQoKVxuICBASG9zdEJpbmRpbmcoJ2F0dHIuaWQnKVxuICBpZCA9IGBldC1uYXYtdGFiLWxpbmstJHtuZXh0VW5pcXVlSWQrK31gO1xuXG4gIEBIb3N0QmluZGluZygnYXR0ci5hcmlhLWNvbnRyb2xzJylcbiAgZ2V0IF9hdHRyQXJpYUNvbnRyb2xzKCkge1xuICAgIHJldHVybiB0aGlzLl9nZXRBcmlhQ29udHJvbHMoKTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnYXR0ci5hcmlhLWN1cnJlbnQnKVxuICBnZXQgX2F0dHJBcmlhQ3VycmVudCgpIHtcbiAgICByZXR1cm4gdGhpcy5fZ2V0QXJpYUN1cnJlbnQoKTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnYXR0ci5hcmlhLWRpc2FibGVkJylcbiAgZ2V0IF9hdHRyQXJpYURpc2FibGVkKCkge1xuICAgIHJldHVybiB0aGlzLmRpc2FibGVkO1xuICB9XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmFyaWEtc2VsZWN0ZWQnKVxuICBnZXQgX2F0dHJBcmlhU2VsZWN0ZWQoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2dldEFyaWFTZWxlY3RlZCgpO1xuICB9XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLnRhYkluZGV4JylcbiAgZ2V0IF9hdHRyVGFiSW5kZXgoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2dldFRhYkluZGV4KCk7XG4gIH1cblxuICBASG9zdEJpbmRpbmcoJ2F0dHIucm9sZScpXG4gIGdldCBfYXR0clJvbGUoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2dldFJvbGUoKTtcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgX3RhYk5hdkJhcjogTmF2VGFic0NvbXBvbmVudCxcbiAgICBwdWJsaWMgZWxlbWVudFJlZjogRWxlbWVudFJlZixcbiAgICBAQXR0cmlidXRlKCd0YWJpbmRleCcpIHRhYkluZGV4OiBzdHJpbmcsXG4gICAgcHJpdmF0ZSBfZm9jdXNNb25pdG9yOiBGb2N1c01vbml0b3IsXG4gICAgcHJpdmF0ZSBfcm91dGVyOiBSb3V0ZXIsXG4gICAgcHJpdmF0ZSBfY2RyOiBDaGFuZ2VEZXRlY3RvclJlZixcbiAgICBwcml2YXRlIF9uZ1pvbmU6IE5nWm9uZSxcbiAgICBAT3B0aW9uYWwoKSBwdWJsaWMgX2xpbms/OiBSb3V0ZXJMaW5rLFxuICAgIEBPcHRpb25hbCgpIHB1YmxpYyBfbGlua1dpdGhIcmVmPzogUm91dGVyTGluayxcbiAgICBAT3B0aW9uYWwoKSBwdWJsaWMgX2xpbmtDb25maWc/OiBSb3V0ZXJMaW5rQWN0aXZlLFxuICApIHtcbiAgICB0aGlzLnRhYkluZGV4ID0gcGFyc2VJbnQodGFiSW5kZXgpIHx8IDA7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9uZ1pvbmUucnVuT3V0c2lkZUFuZ3VsYXIoKCkgPT4ge1xuICAgICAgdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuYWRkRXZlbnRMaXN0ZW5lcignY2xpY2snLCB0aGlzLl9oYWx0RGlzYWJsZWRFdmVudHMpO1xuICAgIH0pO1xuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIHRoaXMuX2ZvY3VzTW9uaXRvci5tb25pdG9yKHRoaXMuZWxlbWVudFJlZik7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLl9mb2N1c01vbml0b3Iuc3RvcE1vbml0b3JpbmcodGhpcy5lbGVtZW50UmVmKTtcbiAgICB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5yZW1vdmVFdmVudExpc3RlbmVyKCdjbGljaycsIHRoaXMuX2hhbHREaXNhYmxlZEV2ZW50cyk7XG4gIH1cblxuICBmb2N1cygpIHtcbiAgICB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5mb2N1cygpO1xuICB9XG5cbiAgQEhvc3RMaXN0ZW5lcignZm9jdXMnKVxuICBfaGFuZGxlRm9jdXMoKSB7XG4gICAgdGhpcy5fdGFiTmF2QmFyLmZvY3VzSW5kZXggPSB0aGlzLl90YWJOYXZCYXIuX2l0ZW1zLnRvQXJyYXkoKS5pbmRleE9mKHRoaXMpO1xuICB9XG5cbiAgQEhvc3RMaXN0ZW5lcigna2V5ZG93bicsIFsnJGV2ZW50J10pXG4gIF9oYW5kbGVLZXlkb3duKGV2ZW50OiBLZXlib2FyZEV2ZW50KSB7XG4gICAgaWYgKHRoaXMuX3RhYk5hdkJhci50YWJPdXRsZXQgJiYgZXZlbnQua2V5Q29kZSA9PT0gU1BBQ0UpIHtcbiAgICAgIHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmNsaWNrKCk7XG4gICAgfVxuICB9XG5cbiAgX2dldEFyaWFDb250cm9scygpOiBzdHJpbmcgfCBudWxsIHtcbiAgICByZXR1cm4gdGhpcy5fdGFiTmF2QmFyLnRhYk91dGxldFxuICAgICAgPyB0aGlzLl90YWJOYXZCYXIudGFiT3V0bGV0Py5pZFxuICAgICAgOiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5nZXRBdHRyaWJ1dGUoJ2FyaWEtY29udHJvbHMnKTtcbiAgfVxuXG4gIF9nZXRBcmlhU2VsZWN0ZWQoKTogc3RyaW5nIHwgbnVsbCB7XG4gICAgaWYgKHRoaXMuX3RhYk5hdkJhci50YWJPdXRsZXQpIHtcbiAgICAgIHJldHVybiB0aGlzLmFjdGl2ZSA/ICd0cnVlJyA6ICdmYWxzZSc7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5nZXRBdHRyaWJ1dGUoJ2FyaWEtc2VsZWN0ZWQnKTtcbiAgICB9XG4gIH1cblxuICBfZ2V0QXJpYUN1cnJlbnQoKTogc3RyaW5nIHwgbnVsbCB7XG4gICAgcmV0dXJuIHRoaXMuYWN0aXZlICYmICF0aGlzLl90YWJOYXZCYXIudGFiT3V0bGV0ID8gJ3BhZ2UnIDogbnVsbDtcbiAgfVxuXG4gIF9nZXRSb2xlKCk6IHN0cmluZyB8IG51bGwge1xuICAgIHJldHVybiB0aGlzLl90YWJOYXZCYXIudGFiT3V0bGV0ID8gJ3RhYicgOiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5nZXRBdHRyaWJ1dGUoJ3JvbGUnKTtcbiAgfVxuXG4gIF9nZXRUYWJJbmRleCgpOiBudW1iZXIge1xuICAgIGlmICh0aGlzLl90YWJOYXZCYXIudGFiT3V0bGV0KSB7XG4gICAgICByZXR1cm4gdGhpcy5hY3RpdmUgJiYgIXRoaXMuZGlzYWJsZWQgPyAwIDogLTE7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiB0aGlzLnRhYkluZGV4O1xuICAgIH1cbiAgfVxuXG4gIF9tYXJrRm9yQ2hlY2soKSB7XG4gICAgdGhpcy5fY2RyLm1hcmtGb3JDaGVjaygpO1xuICB9XG5cbiAgcHJpdmF0ZSBfaGFsdERpc2FibGVkRXZlbnRzID0gKGV2ZW50OiBFdmVudCkgPT4ge1xuICAgIGlmICh0aGlzLmRpc2FibGVkKSB7XG4gICAgICBldmVudC5wcmV2ZW50RGVmYXVsdCgpO1xuICAgICAgZXZlbnQuc3RvcEltbWVkaWF0ZVByb3BhZ2F0aW9uKCk7XG4gICAgfVxuICB9O1xufVxuXG5mdW5jdGlvbiBpc0FjdGl2ZU1hdGNoT3B0aW9ucyhvcHRpb25zOiB7IGV4YWN0OiBib29sZWFuIH0gfCBJc0FjdGl2ZU1hdGNoT3B0aW9ucyk6IG9wdGlvbnMgaXMgSXNBY3RpdmVNYXRjaE9wdGlvbnMge1xuICByZXR1cm4gISEob3B0aW9ucyBhcyBJc0FjdGl2ZU1hdGNoT3B0aW9ucykucGF0aHM7XG59XG4iXX0=
|