@ethlete/cdk 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +761 -0
- package/README.md +7 -0
- package/esm2020/ethlete-cdk.mjs +5 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/lib/components/accordion/accordion.imports.mjs +11 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.animations.mjs +9 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/components/accordion/accordion.component.mjs +86 -0
- package/esm2020/lib/components/accordion/components/accordion/index.mjs +2 -0
- package/esm2020/lib/components/accordion/components/accordion/public-api.mjs +4 -0
- package/esm2020/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +53 -0
- package/esm2020/lib/components/accordion/components/accordion-group/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/components/index.mjs +2 -0
- package/esm2020/lib/components/accordion/components/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +17 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +20 -0
- package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +17 -0
- package/esm2020/lib/components/accordion/partials/accordion-label/public-api.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +20 -0
- package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/public-api.mjs +3 -0
- package/esm2020/lib/components/accordion/partials/index.mjs +2 -0
- package/esm2020/lib/components/accordion/partials/public-api.mjs +5 -0
- package/esm2020/lib/components/accordion/public-api.mjs +4 -0
- package/esm2020/lib/components/bracket/bracket.imports.mjs +4 -0
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.mjs +342 -0
- package/esm2020/lib/components/bracket/components/bracket/bracket.component.types.mjs +2 -0
- package/esm2020/lib/components/bracket/components/bracket/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/components/index.mjs +2 -0
- package/esm2020/lib/components/bracket/components/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/constants/bracket.constants.mjs +12 -0
- package/esm2020/lib/components/bracket/constants/index.mjs +2 -0
- package/esm2020/lib/components/bracket/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +19 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-match/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +19 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/bracket-round/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/index.mjs +2 -0
- package/esm2020/lib/components/bracket/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +19 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-match/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +19 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/bracket-round-header/public-api.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/index.mjs +2 -0
- package/esm2020/lib/components/bracket/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/public-api.mjs +8 -0
- package/esm2020/lib/components/bracket/types/bracket-config.types.mjs +2 -0
- package/esm2020/lib/components/bracket/types/bracket.types.mjs +2 -0
- package/esm2020/lib/components/bracket/types/index.mjs +2 -0
- package/esm2020/lib/components/bracket/types/public-api.mjs +3 -0
- package/esm2020/lib/components/bracket/utils/bracket-config.utils.mjs +13 -0
- package/esm2020/lib/components/bracket/utils/bracket.utils.mjs +335 -0
- package/esm2020/lib/components/bracket/utils/index.mjs +2 -0
- package/esm2020/lib/components/bracket/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/button/button.imports.mjs +3 -0
- package/esm2020/lib/components/button/components/button/button.component.mjs +18 -0
- package/esm2020/lib/components/button/components/button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/components/index.mjs +2 -0
- package/esm2020/lib/components/button/components/public-api.mjs +3 -0
- package/esm2020/lib/components/button/components/query-button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/components/query-button/query-button.component.mjs +25 -0
- package/esm2020/lib/components/button/directives/button/button.directive.mjs +83 -0
- package/esm2020/lib/components/button/directives/button/index.mjs +2 -0
- package/esm2020/lib/components/button/directives/button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/directives/index.mjs +2 -0
- package/esm2020/lib/components/button/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/button/directives/query-button/public-api.mjs +2 -0
- package/esm2020/lib/components/button/directives/query-button/query-button.directive.mjs +110 -0
- package/esm2020/lib/components/button/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/checkbox/checkbox.imports.mjs +9 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +23 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +54 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +18 -0
- package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +44 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +36 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +80 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +38 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/checkbox/directives/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/checkbox/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/error/components/error/error.component.mjs +56 -0
- package/esm2020/lib/components/forms/components/error/components/error/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/components/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/error/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/email-input/email-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/email-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/input-field/input-field.component.mjs +57 -0
- package/esm2020/lib/components/forms/components/input/components/input-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/number-input/number-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/number-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/password-input/password-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/password-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/public-api.mjs +8 -0
- package/esm2020/lib/components/forms/components/input/components/search-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/search-input/search-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/text-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/input/components/textarea-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +52 -0
- package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/directives/email-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +51 -0
- package/esm2020/lib/components/forms/components/input/directives/number-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +54 -0
- package/esm2020/lib/components/forms/components/input/directives/password-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/public-api.mjs +8 -0
- package/esm2020/lib/components/forms/components/input/directives/search-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +54 -0
- package/esm2020/lib/components/forms/components/input/directives/text-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +50 -0
- package/esm2020/lib/components/forms/components/input/input.imports.mjs +19 -0
- package/esm2020/lib/components/forms/components/input/partials/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +22 -0
- package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +22 -0
- package/esm2020/lib/components/forms/components/input/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/label/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/components/label/label.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/label/components/label/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/components/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +33 -0
- package/esm2020/lib/components/forms/components/label/directives/label-suffix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/label/label.imports.mjs +4 -0
- package/esm2020/lib/components/forms/components/label/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/public-api.mjs +10 -0
- package/esm2020/lib/components/forms/components/radio/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/radio/components/radio/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio/radio.component.mjs +27 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +35 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/radio/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +63 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +36 -0
- package/esm2020/lib/components/forms/components/radio/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/radio/radio.imports.mjs +3 -0
- package/esm2020/lib/components/forms/components/radio/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/radio/types/radio.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +37 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +25 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +43 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +73 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +68 -0
- package/esm2020/lib/components/forms/components/segmented-button/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/segmented-button/segmented-button.imports.mjs +7 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/native-select/native-select.component.mjs +24 -0
- package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/native-select-option/native-select-option.component.mjs +32 -0
- package/esm2020/lib/components/forms/components/select/components/native-select-option/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/select/components/select-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/components/select-field/select-field.component.mjs +53 -0
- package/esm2020/lib/components/forms/components/select/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.mjs +58 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.mjs +56 -0
- package/esm2020/lib/components/forms/components/select/directives/native-select-option/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/directives/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/select/native-select.imports.mjs +13 -0
- package/esm2020/lib/components/forms/components/select/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/components/select/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/select/types/select.types.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +23 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +40 -0
- package/esm2020/lib/components/forms/components/slide-toggle/public-api.mjs +4 -0
- package/esm2020/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/components/index.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/components/slider/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/slider/slider.component.mjs +342 -0
- package/esm2020/lib/components/forms/components/slider/components/slider-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +51 -0
- package/esm2020/lib/components/forms/components/slider/public-api.mjs +3 -0
- package/esm2020/lib/components/forms/components/slider/slider.imports.mjs +3 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +42 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +42 -0
- package/esm2020/lib/components/forms/directives/dynamic-form-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +41 -0
- package/esm2020/lib/components/forms/directives/if-input-empty/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +41 -0
- package/esm2020/lib/components/forms/directives/if-input-filled/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input/input.directive.mjs +233 -0
- package/esm2020/lib/components/forms/directives/input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +30 -0
- package/esm2020/lib/components/forms/directives/input-prefix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +30 -0
- package/esm2020/lib/components/forms/directives/input-suffix/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/index.mjs +2 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +19 -0
- package/esm2020/lib/components/forms/directives/native-input-ref/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/public-api.mjs +12 -0
- package/esm2020/lib/components/forms/directives/static-form-field/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +78 -0
- package/esm2020/lib/components/forms/directives/static-form-group/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +29 -0
- package/esm2020/lib/components/forms/directives/writeable-input/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +71 -0
- package/esm2020/lib/components/forms/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/services/default-validator-errors.service.mjs +51 -0
- package/esm2020/lib/components/forms/services/form-field-state.service.mjs +24 -0
- package/esm2020/lib/components/forms/services/form-group-state.service.mjs +21 -0
- package/esm2020/lib/components/forms/services/index.mjs +2 -0
- package/esm2020/lib/components/forms/services/input-state.service.mjs +35 -0
- package/esm2020/lib/components/forms/services/public-api.mjs +5 -0
- package/esm2020/lib/components/forms/types/index.mjs +2 -0
- package/esm2020/lib/components/forms/types/input.types.mjs +2 -0
- package/esm2020/lib/components/forms/types/public-api.mjs +2 -0
- package/esm2020/lib/components/forms/utils/decorated-form-field.base.mjs +22 -0
- package/esm2020/lib/components/forms/utils/decorated-input.base.mjs +44 -0
- package/esm2020/lib/components/forms/utils/index.mjs +2 -0
- package/esm2020/lib/components/forms/utils/input.base.mjs +20 -0
- package/esm2020/lib/components/forms/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/icons/chevron-icon/chevron-icon.component.mjs +36 -0
- package/esm2020/lib/components/icons/chevron-icon/index.mjs +2 -0
- package/esm2020/lib/components/icons/chevron-icon/public-api.mjs +2 -0
- package/esm2020/lib/components/icons/icon.imports.mjs +3 -0
- package/esm2020/lib/components/icons/index.mjs +2 -0
- package/esm2020/lib/components/icons/public-api.mjs +3 -0
- package/esm2020/lib/components/masonry/components/index.mjs +2 -0
- package/esm2020/lib/components/masonry/components/masonry/masonry.component.mjs +199 -0
- package/esm2020/lib/components/masonry/components/masonry/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/components/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/masonry.imports.mjs +4 -0
- package/esm2020/lib/components/masonry/partials/index.mjs +2 -0
- package/esm2020/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +74 -0
- package/esm2020/lib/components/masonry/partials/masonry-item/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/masonry/public-api.mjs +5 -0
- package/esm2020/lib/components/masonry/types/masonry.types.mjs +2 -0
- package/esm2020/lib/components/masonry/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.mjs +14 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +51 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.mjs +30 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +43 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +103 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +49 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/partials/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/public-api.mjs +8 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +113 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +48 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +31 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/services/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.mjs +7 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.mjs +93 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.mjs +18 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/bottom-sheet/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +51 -0
- package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/dialog.constants.mjs +32 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/dialog.imports.mjs +10 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +64 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +43 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +49 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/partials/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/dialog/public-api.mjs +8 -0
- package/esm2020/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +109 -0
- package/esm2020/lib/components/overlay/components/dialog/services/dialog.service.mjs +31 -0
- package/esm2020/lib/components/overlay/components/dialog/services/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/services/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/dialog/types/dialog.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog-config.mjs +7 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog-ref.mjs +114 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/dialog.utils.mjs +18 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/dialog/utils/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/public-api.mjs +5 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +62 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/constants/toggletip.constants.mjs +11 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +196 -0
- package/esm2020/lib/components/overlay/components/toggletip/public-api.mjs +7 -0
- package/esm2020/lib/components/overlay/components/toggletip/toggletip.imports.mjs +3 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/types/toggletip.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip-config.mjs +6 -0
- package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip.util.mjs +6 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +60 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/constants/tooltip.constants.mjs +11 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +240 -0
- package/esm2020/lib/components/overlay/components/tooltip/public-api.mjs +7 -0
- package/esm2020/lib/components/overlay/components/tooltip/tooltip.imports.mjs +3 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/types/tooltip.types.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/index.mjs +2 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/public-api.mjs +3 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip-config.mjs +6 -0
- package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip.util.mjs +6 -0
- package/esm2020/lib/components/overlay/public-api.mjs +4 -0
- package/esm2020/lib/components/overlay/services/dynamic-overlay.service.mjs +29 -0
- package/esm2020/lib/components/overlay/services/public-api.mjs +2 -0
- package/esm2020/lib/components/overlay/types/dynamic-overlay.types.mjs +2 -0
- package/esm2020/lib/components/overlay/types/index.mjs +2 -0
- package/esm2020/lib/components/overlay/types/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/components/index.mjs +2 -0
- package/esm2020/lib/components/pagination/components/pagination/pagination.component.mjs +105 -0
- package/esm2020/lib/components/pagination/components/pagination/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/components/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/pagination.imports.mjs +3 -0
- package/esm2020/lib/components/pagination/partials/index.mjs +2 -0
- package/esm2020/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +32 -0
- package/esm2020/lib/components/pagination/partials/pagination-link/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/public-api.mjs +5 -0
- package/esm2020/lib/components/pagination/services/index.mjs +2 -0
- package/esm2020/lib/components/pagination/services/pagination-head.service.mjs +59 -0
- package/esm2020/lib/components/pagination/services/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/types/index.mjs +2 -0
- package/esm2020/lib/components/pagination/types/pagination.types.mjs +2 -0
- package/esm2020/lib/components/pagination/types/public-api.mjs +2 -0
- package/esm2020/lib/components/pagination/utils/index.mjs +2 -0
- package/esm2020/lib/components/pagination/utils/pagination.util.mjs +79 -0
- package/esm2020/lib/components/pagination/utils/public-api.mjs +2 -0
- package/esm2020/lib/components/picture/picture-data.directive.mjs +55 -0
- package/esm2020/lib/components/picture/picture.component.mjs +40 -0
- package/esm2020/lib/components/picture/picture.component.types.mjs +2 -0
- package/esm2020/lib/components/picture/public-api.mjs +4 -0
- package/esm2020/lib/components/progress-spinner/progress-spinner.component.mjs +105 -0
- package/esm2020/lib/components/progress-spinner/public-api.mjs +2 -0
- package/esm2020/lib/components/public-api.mjs +16 -0
- package/esm2020/lib/components/scrollable/components/index.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/public-api.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/scrollable/public-api.mjs +2 -0
- package/esm2020/lib/components/scrollable/components/scrollable/scrollable.component.mjs +129 -0
- package/esm2020/lib/components/scrollable/index.mjs +2 -0
- package/esm2020/lib/components/scrollable/public-api.mjs +3 -0
- package/esm2020/lib/components/scrollable/scrollable.imports.mjs +3 -0
- package/esm2020/lib/components/skeleton/components/index.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/skeleton/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/components/skeleton/skeleton.component.mjs +31 -0
- package/esm2020/lib/components/skeleton/partials/index.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/skeleton-item/public-api.mjs +2 -0
- package/esm2020/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +19 -0
- package/esm2020/lib/components/skeleton/public-api.mjs +4 -0
- package/esm2020/lib/components/skeleton/skeleton.imports.mjs +4 -0
- package/esm2020/lib/components/sort/components/index.mjs +2 -0
- package/esm2020/lib/components/sort/components/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/components/sort-header/public-api.mjs +3 -0
- package/esm2020/lib/components/sort/components/sort-header/sort-header.component.mjs +224 -0
- package/esm2020/lib/components/sort/components/sort-header/sort-header.types.mjs +2 -0
- package/esm2020/lib/components/sort/index.mjs +2 -0
- package/esm2020/lib/components/sort/partials/index.mjs +2 -0
- package/esm2020/lib/components/sort/partials/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/partials/sort/public-api.mjs +3 -0
- package/esm2020/lib/components/sort/partials/sort/sort.directive.mjs +157 -0
- package/esm2020/lib/components/sort/partials/sort/sort.types.mjs +2 -0
- package/esm2020/lib/components/sort/public-api.mjs +6 -0
- package/esm2020/lib/components/sort/services/index.mjs +2 -0
- package/esm2020/lib/components/sort/services/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/services/sort-header-intl.mjs +23 -0
- package/esm2020/lib/components/sort/sort.imports.mjs +8 -0
- package/esm2020/lib/components/sort/types/index.mjs +2 -0
- package/esm2020/lib/components/sort/types/public-api.mjs +2 -0
- package/esm2020/lib/components/sort/types/sort-direction.mjs +2 -0
- package/esm2020/lib/components/table/components/index.mjs +2 -0
- package/esm2020/lib/components/table/components/public-api.mjs +2 -0
- package/esm2020/lib/components/table/components/table/public-api.mjs +2 -0
- package/esm2020/lib/components/table/components/table/table.component.mjs +141 -0
- package/esm2020/lib/components/table/constants/index.mjs +2 -0
- package/esm2020/lib/components/table/constants/public-api.mjs +2 -0
- package/esm2020/lib/components/table/constants/table-data-source.constants.mjs +2 -0
- package/esm2020/lib/components/table/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell/cell.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/cells/cell/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/column-def/column-def.directive.mjs +44 -0
- package/esm2020/lib/components/table/partials/cells/column-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/column-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/footer-cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +19 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/header-cell-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/public-api.mjs +9 -0
- package/esm2020/lib/components/table/partials/cells/text-column/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/cells/text-column/text-column.component.mjs +55 -0
- package/esm2020/lib/components/table/partials/index.mjs +2 -0
- package/esm2020/lib/components/table/partials/public-api.mjs +5 -0
- package/esm2020/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/footer-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/footer-row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/header-row/header-row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/header-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/header-row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +20 -0
- package/esm2020/lib/components/table/partials/rows/no-data-row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/public-api.mjs +9 -0
- package/esm2020/lib/components/table/partials/rows/recycle-rows/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +16 -0
- package/esm2020/lib/components/table/partials/rows/row/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/row/row.component.mjs +26 -0
- package/esm2020/lib/components/table/partials/rows/row-def/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/rows/row-def/row-def.directive.mjs +26 -0
- package/esm2020/lib/components/table/partials/table-busy/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/table-busy/table-busy.directive.mjs +18 -0
- package/esm2020/lib/components/table/partials/table-busy-outlet/public-api.mjs +2 -0
- package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +15 -0
- package/esm2020/lib/components/table/public-api.mjs +7 -0
- package/esm2020/lib/components/table/table.imports.mjs +23 -0
- package/esm2020/lib/components/table/types/index.mjs +2 -0
- package/esm2020/lib/components/table/types/public-api.mjs +2 -0
- package/esm2020/lib/components/table/types/table-data-source.types.mjs +2 -0
- package/esm2020/lib/components/table/utils/public-api.mjs +2 -0
- package/esm2020/lib/components/table/utils/table-data-source.mjs +168 -0
- package/esm2020/lib/components/tabs/animations/index.mjs +2 -0
- package/esm2020/lib/components/tabs/animations/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/animations/tabs.animations.mjs +26 -0
- package/esm2020/lib/components/tabs/components/index.mjs +2 -0
- package/esm2020/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +261 -0
- package/esm2020/lib/components/tabs/components/inline-tabs/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +86 -0
- package/esm2020/lib/components/tabs/components/nav-tabs/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/components/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/partials/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +100 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +135 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +25 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +22 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +43 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +30 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +48 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/inline-tabs/public-api.mjs +8 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +203 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +37 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/partials/nav-tabs/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/partials/public-api.mjs +3 -0
- package/esm2020/lib/components/tabs/public-api.mjs +7 -0
- package/esm2020/lib/components/tabs/tab.imports.mjs +16 -0
- package/esm2020/lib/components/tabs/types/public-api.mjs +2 -0
- package/esm2020/lib/components/tabs/types/tab-config.types.mjs +3 -0
- package/esm2020/lib/components/tabs/utils/active-tab-underline.util.mjs +111 -0
- package/esm2020/lib/components/tabs/utils/index.mjs +2 -0
- package/esm2020/lib/components/tabs/utils/paginated-tab-header.directive.mjs +284 -0
- package/esm2020/lib/components/tabs/utils/public-api.mjs +3 -0
- package/esm2020/lib/public-api.mjs +4 -0
- package/esm2020/lib/services/index.mjs +2 -0
- package/esm2020/lib/services/public-api.mjs +2 -0
- package/esm2020/lib/services/swipe-handler.service.mjs +88 -0
- package/esm2020/lib/types/index.mjs +2 -0
- package/esm2020/lib/types/public-api.mjs +2 -0
- package/esm2020/lib/types/swipe.types.mjs +2 -0
- package/fesm2015/ethlete-cdk.mjs +9106 -0
- package/fesm2015/ethlete-cdk.mjs.map +1 -0
- package/fesm2020/ethlete-cdk.mjs +9037 -0
- package/fesm2020/ethlete-cdk.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/lib/components/accordion/accordion.imports.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.animations.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.constants.d.ts +3 -0
- package/lib/components/accordion/components/accordion/accordion.component.d.ts +30 -0
- package/lib/components/accordion/components/accordion/index.d.ts +1 -0
- package/lib/components/accordion/components/accordion/public-api.d.ts +3 -0
- package/lib/components/accordion/components/accordion-group/accordion-group.component.d.ts +13 -0
- package/lib/components/accordion/components/accordion-group/public-api.d.ts +1 -0
- package/lib/components/accordion/components/index.d.ts +1 -0
- package/lib/components/accordion/components/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.d.ts +5 -0
- package/lib/components/accordion/partials/accordion-hint/public-api.d.ts +1 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.d.ts +3 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.d.ts +8 -0
- package/lib/components/accordion/partials/accordion-hint-wrapper/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/accordion-label/accordion-label.directive.d.ts +5 -0
- package/lib/components/accordion/partials/accordion-label/public-api.d.ts +1 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.d.ts +3 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.d.ts +8 -0
- package/lib/components/accordion/partials/accordion-label-wrapper/public-api.d.ts +2 -0
- package/lib/components/accordion/partials/index.d.ts +1 -0
- package/lib/components/accordion/partials/public-api.d.ts +4 -0
- package/lib/components/accordion/public-api.d.ts +3 -0
- package/lib/components/bracket/bracket.imports.d.ts +3 -0
- package/lib/components/bracket/components/bracket/bracket.component.d.ts +55 -0
- package/lib/components/bracket/components/bracket/bracket.component.types.d.ts +5 -0
- package/lib/components/bracket/components/bracket/public-api.d.ts +2 -0
- package/lib/components/bracket/components/index.d.ts +1 -0
- package/lib/components/bracket/components/public-api.d.ts +1 -0
- package/lib/components/bracket/constants/bracket.constants.d.ts +8 -0
- package/lib/components/bracket/constants/index.d.ts +1 -0
- package/lib/components/bracket/constants/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-match/bracket-match.directive.d.ts +8 -0
- package/lib/components/bracket/directives/bracket-match/index.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-match/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-round/bracket-round.directive.d.ts +8 -0
- package/lib/components/bracket/directives/bracket-round/index.d.ts +1 -0
- package/lib/components/bracket/directives/bracket-round/public-api.d.ts +1 -0
- package/lib/components/bracket/directives/index.d.ts +1 -0
- package/lib/components/bracket/directives/public-api.d.ts +2 -0
- package/lib/components/bracket/partials/bracket-match/bracket-match.component.d.ts +8 -0
- package/lib/components/bracket/partials/bracket-match/index.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-match/public-api.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.d.ts +8 -0
- package/lib/components/bracket/partials/bracket-round-header/index.d.ts +1 -0
- package/lib/components/bracket/partials/bracket-round-header/public-api.d.ts +1 -0
- package/lib/components/bracket/partials/index.d.ts +1 -0
- package/lib/components/bracket/partials/public-api.d.ts +2 -0
- package/lib/components/bracket/public-api.d.ts +7 -0
- package/lib/components/bracket/types/bracket-config.types.d.ts +5 -0
- package/lib/components/bracket/types/bracket.types.d.ts +30 -0
- package/lib/components/bracket/types/index.d.ts +1 -0
- package/lib/components/bracket/types/public-api.d.ts +2 -0
- package/lib/components/bracket/utils/bracket-config.utils.d.ts +6 -0
- package/lib/components/bracket/utils/bracket.utils.d.ts +37 -0
- package/lib/components/bracket/utils/index.d.ts +1 -0
- package/lib/components/bracket/utils/public-api.d.ts +2 -0
- package/lib/components/button/button.imports.d.ts +2 -0
- package/lib/components/button/components/button/button.component.d.ts +8 -0
- package/lib/components/button/components/button/public-api.d.ts +1 -0
- package/lib/components/button/components/index.d.ts +1 -0
- package/lib/components/button/components/public-api.d.ts +2 -0
- package/lib/components/button/components/query-button/public-api.d.ts +1 -0
- package/lib/components/button/components/query-button/query-button.component.d.ts +9 -0
- package/lib/components/button/directives/button/button.directive.d.ts +25 -0
- package/lib/components/button/directives/button/index.d.ts +1 -0
- package/lib/components/button/directives/button/public-api.d.ts +1 -0
- package/lib/components/button/directives/index.d.ts +1 -0
- package/lib/components/button/directives/public-api.d.ts +2 -0
- package/lib/components/button/directives/query-button/public-api.d.ts +1 -0
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +24 -0
- package/lib/components/button/public-api.d.ts +3 -0
- package/lib/components/forms/components/checkbox/checkbox.imports.d.ts +3 -0
- package/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.d.ts +10 -0
- package/lib/components/forms/components/checkbox/components/checkbox/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.d.ts +11 -0
- package/lib/components/forms/components/checkbox/components/checkbox-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.d.ts +7 -0
- package/lib/components/forms/components/checkbox/components/checkbox-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts +15 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.d.ts +12 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.d.ts +18 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +13 -0
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/index.d.ts +1 -0
- package/lib/components/forms/components/checkbox/directives/public-api.d.ts +4 -0
- package/lib/components/forms/components/checkbox/public-api.d.ts +3 -0
- package/lib/components/forms/components/error/components/error/error.component.d.ts +16 -0
- package/lib/components/forms/components/error/components/error/public-api.d.ts +1 -0
- package/lib/components/forms/components/error/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/error/index.d.ts +1 -0
- package/lib/components/forms/components/error/public-api.d.ts +1 -0
- package/lib/components/forms/components/index.d.ts +1 -0
- package/lib/components/forms/components/input/components/email-input/email-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/email-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/index.d.ts +1 -0
- package/lib/components/forms/components/input/components/input-field/input-field.component.d.ts +11 -0
- package/lib/components/forms/components/input/components/input-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/number-input/number-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/number-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/password-input/password-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/password-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/public-api.d.ts +7 -0
- package/lib/components/forms/components/input/components/search-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/search-input/search-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/text-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/text-input/text-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/textarea-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/components/textarea-input/textarea-input.component.d.ts +17 -0
- package/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.d.ts +12 -0
- package/lib/components/forms/components/input/directives/autosize-textarea/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/email-input/email-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/email-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/number-input/number-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/number-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/password-input/password-input.directive.d.ts +16 -0
- package/lib/components/forms/components/input/directives/password-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/public-api.d.ts +7 -0
- package/lib/components/forms/components/input/directives/search-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/search-input/search-input.directive.d.ts +14 -0
- package/lib/components/forms/components/input/directives/text-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/text-input/text-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/textarea-input/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/textarea-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/input.imports.d.ts +4 -0
- package/lib/components/forms/components/input/partials/index.d.ts +1 -0
- package/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.d.ts +8 -0
- package/lib/components/forms/components/input/partials/password-input-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/partials/public-api.d.ts +2 -0
- package/lib/components/forms/components/input/partials/search-input-clear/public-api.d.ts +1 -0
- package/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.d.ts +8 -0
- package/lib/components/forms/components/input/public-api.d.ts +4 -0
- package/lib/components/forms/components/label/components/index.d.ts +1 -0
- package/lib/components/forms/components/label/components/label/label.component.d.ts +10 -0
- package/lib/components/forms/components/label/components/label/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/components/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/directives/index.d.ts +1 -0
- package/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.d.ts +10 -0
- package/lib/components/forms/components/label/directives/label-suffix/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/directives/public-api.d.ts +1 -0
- package/lib/components/forms/components/label/label.imports.d.ts +3 -0
- package/lib/components/forms/components/label/public-api.d.ts +3 -0
- package/lib/components/forms/components/public-api.d.ts +9 -0
- package/lib/components/forms/components/radio/components/index.d.ts +1 -0
- package/lib/components/forms/components/radio/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/radio/components/radio/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio/radio.component.d.ts +11 -0
- package/lib/components/forms/components/radio/components/radio-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio-field/radio-field.component.d.ts +7 -0
- package/lib/components/forms/components/radio/components/radio-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/components/radio-group/radio-group.component.d.ts +11 -0
- package/lib/components/forms/components/radio/directives/index.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/radio/directives/radio/index.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +22 -0
- package/lib/components/forms/components/radio/directives/radio-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts +13 -0
- package/lib/components/forms/components/radio/directives/radio-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +10 -0
- package/lib/components/forms/components/radio/public-api.d.ts +4 -0
- package/lib/components/forms/components/radio/radio.imports.d.ts +2 -0
- package/lib/components/forms/components/radio/types/index.d.ts +1 -0
- package/lib/components/forms/components/radio/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/radio/types/radio.types.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.d.ts +14 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.d.ts +7 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.d.ts +11 -0
- package/lib/components/forms/components/segmented-button/directives/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +26 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.d.ts +13 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +14 -0
- package/lib/components/forms/components/segmented-button/public-api.d.ts +4 -0
- package/lib/components/forms/components/segmented-button/segmented-button.imports.d.ts +2 -0
- package/lib/components/forms/components/segmented-button/types/index.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/segmented-button/types/segmented-button.types.d.ts +1 -0
- package/lib/components/forms/components/select/components/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select/native-select.component.d.ts +10 -0
- package/lib/components/forms/components/select/components/native-select/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/native-select-option/native-select-option.component.d.ts +11 -0
- package/lib/components/forms/components/select/components/native-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/select-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/select-field/select-field.component.d.ts +11 -0
- package/lib/components/forms/components/select/directives/index.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.d.ts +18 -0
- package/lib/components/forms/components/select/directives/native-select-input/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-option/index.d.ts +1 -0
- package/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.d.ts +22 -0
- package/lib/components/forms/components/select/directives/native-select-option/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/directives/public-api.d.ts +2 -0
- package/lib/components/forms/components/select/native-select.imports.d.ts +4 -0
- package/lib/components/forms/components/select/public-api.d.ts +4 -0
- package/lib/components/forms/components/select/types/index.d.ts +1 -0
- package/lib/components/forms/components/select/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/types/select.types.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/index.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/public-api.d.ts +2 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.d.ts +10 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.d.ts +10 -0
- package/lib/components/forms/components/slide-toggle/directives/index.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.d.ts +1 -0
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.d.ts +13 -0
- package/lib/components/forms/components/slide-toggle/public-api.d.ts +3 -0
- package/lib/components/forms/components/slide-toggle/slide-toggle.imports.d.ts +2 -0
- package/lib/components/forms/components/slider/components/index.d.ts +1 -0
- package/lib/components/forms/components/slider/components/public-api.d.ts +2 -0
- package/lib/components/forms/components/slider/components/slider/public-api.d.ts +1 -0
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +64 -0
- package/lib/components/forms/components/slider/components/slider-field/public-api.d.ts +1 -0
- package/lib/components/forms/components/slider/components/slider-field/slider-field.component.d.ts +10 -0
- package/lib/components/forms/components/slider/public-api.d.ts +2 -0
- package/lib/components/forms/components/slider/slider.imports.d.ts +2 -0
- package/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +12 -0
- package/lib/components/forms/directives/dynamic-form-field/public-api.d.ts +1 -0
- package/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.d.ts +12 -0
- package/lib/components/forms/directives/dynamic-form-group/public-api.d.ts +1 -0
- package/lib/components/forms/directives/if-input-empty/if-input-empty.directive.d.ts +12 -0
- package/lib/components/forms/directives/if-input-empty/public-api.d.ts +1 -0
- package/lib/components/forms/directives/if-input-filled/if-input-filled.directive.d.ts +12 -0
- package/lib/components/forms/directives/if-input-filled/public-api.d.ts +1 -0
- package/lib/components/forms/directives/index.d.ts +1 -0
- package/lib/components/forms/directives/input/index.d.ts +1 -0
- package/lib/components/forms/directives/input/input.directive.d.ts +62 -0
- package/lib/components/forms/directives/input/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input-prefix/input-prefix.directive.d.ts +7 -0
- package/lib/components/forms/directives/input-prefix/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input-suffix/input-suffix.directive.d.ts +7 -0
- package/lib/components/forms/directives/input-suffix/public-api.d.ts +1 -0
- package/lib/components/forms/directives/native-input-ref/index.d.ts +1 -0
- package/lib/components/forms/directives/native-input-ref/native-input-ref.directive.d.ts +8 -0
- package/lib/components/forms/directives/native-input-ref/public-api.d.ts +1 -0
- package/lib/components/forms/directives/public-api.d.ts +11 -0
- package/lib/components/forms/directives/static-form-field/public-api.d.ts +1 -0
- package/lib/components/forms/directives/static-form-field/static-form-field.directive.d.ts +15 -0
- package/lib/components/forms/directives/static-form-group/public-api.d.ts +1 -0
- package/lib/components/forms/directives/static-form-group/static-form-group.directive.d.ts +7 -0
- package/lib/components/forms/directives/writeable-input/public-api.d.ts +1 -0
- package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +20 -0
- package/lib/components/forms/public-api.d.ts +4 -0
- package/lib/components/forms/services/default-validator-errors.service.d.ts +17 -0
- package/lib/components/forms/services/form-field-state.service.d.ts +14 -0
- package/lib/components/forms/services/form-group-state.service.d.ts +10 -0
- package/lib/components/forms/services/index.d.ts +1 -0
- package/lib/components/forms/services/input-state.service.d.ts +28 -0
- package/lib/components/forms/services/public-api.d.ts +4 -0
- package/lib/components/forms/types/index.d.ts +1 -0
- package/lib/components/forms/types/input.types.d.ts +25 -0
- package/lib/components/forms/types/public-api.d.ts +1 -0
- package/lib/components/forms/utils/decorated-form-field.base.d.ts +7 -0
- package/lib/components/forms/utils/decorated-input.base.d.ts +15 -0
- package/lib/components/forms/utils/index.d.ts +1 -0
- package/lib/components/forms/utils/input.base.d.ts +10 -0
- package/lib/components/forms/utils/public-api.d.ts +3 -0
- package/lib/components/icons/chevron-icon/chevron-icon.component.d.ts +5 -0
- package/lib/components/icons/chevron-icon/index.d.ts +1 -0
- package/lib/components/icons/chevron-icon/public-api.d.ts +1 -0
- package/lib/components/icons/icon.imports.d.ts +2 -0
- package/lib/components/icons/index.d.ts +1 -0
- package/lib/components/icons/public-api.d.ts +2 -0
- package/lib/components/masonry/components/index.d.ts +1 -0
- package/lib/components/masonry/components/masonry/masonry.component.d.ts +34 -0
- package/lib/components/masonry/components/masonry/public-api.d.ts +1 -0
- package/lib/components/masonry/components/public-api.d.ts +1 -0
- package/lib/components/masonry/masonry.imports.d.ts +3 -0
- package/lib/components/masonry/partials/index.d.ts +1 -0
- package/lib/components/masonry/partials/masonry-item/masonry-item.component.d.ts +20 -0
- package/lib/components/masonry/partials/masonry-item/public-api.d.ts +1 -0
- package/lib/components/masonry/partials/public-api.d.ts +1 -0
- package/lib/components/masonry/public-api.d.ts +4 -0
- package/lib/components/masonry/types/masonry.types.d.ts +4 -0
- package/lib/components/masonry/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.d.ts +14 -0
- package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.d.ts +14 -0
- package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/components/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.d.ts +17 -0
- package/lib/components/overlay/components/bottom-sheet/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.d.ts +16 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.d.ts +22 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/partials/public-api.d.ts +3 -0
- package/lib/components/overlay/components/bottom-sheet/public-api.d.ts +7 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.d.ts +35 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.d.ts +11 -0
- package/lib/components/overlay/components/bottom-sheet/services/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/services/public-api.d.ts +3 -0
- package/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.d.ts +84 -0
- package/lib/components/overlay/components/bottom-sheet/types/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.d.ts +2 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.d.ts +29 -0
- package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.d.ts +13 -0
- package/lib/components/overlay/components/bottom-sheet/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/bottom-sheet/utils/public-api.d.ts +3 -0
- package/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.d.ts +14 -0
- package/lib/components/overlay/components/dialog/components/dialog-container/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/components/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/constants/dialog.constants.d.ts +15 -0
- package/lib/components/overlay/components/dialog/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/dialog.imports.d.ts +14 -0
- package/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.d.ts +16 -0
- package/lib/components/overlay/components/dialog/partials/dialog-close/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.d.ts +16 -0
- package/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.d.ts +11 -0
- package/lib/components/overlay/components/dialog/partials/dialog-title/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/partials/public-api.d.ts +3 -0
- package/lib/components/overlay/components/dialog/public-api.d.ts +7 -0
- package/lib/components/overlay/components/dialog/services/dialog-base.service.d.ts +35 -0
- package/lib/components/overlay/components/dialog/services/dialog.service.d.ts +11 -0
- package/lib/components/overlay/components/dialog/services/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/services/public-api.d.ts +2 -0
- package/lib/components/overlay/components/dialog/types/dialog.types.d.ts +142 -0
- package/lib/components/overlay/components/dialog/types/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/dialog/utils/dialog-config.d.ts +2 -0
- package/lib/components/overlay/components/dialog/utils/dialog-ref.d.ts +31 -0
- package/lib/components/overlay/components/dialog/utils/dialog.utils.d.ts +13 -0
- package/lib/components/overlay/components/dialog/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/dialog/utils/public-api.d.ts +3 -0
- package/lib/components/overlay/components/index.d.ts +1 -0
- package/lib/components/overlay/components/public-api.d.ts +4 -0
- package/lib/components/overlay/components/toggletip/components/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/toggletip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.d.ts +19 -0
- package/lib/components/overlay/components/toggletip/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/constants/toggletip.constants.d.ts +6 -0
- package/lib/components/overlay/components/toggletip/directives/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/toggletip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +38 -0
- package/lib/components/overlay/components/toggletip/public-api.d.ts +6 -0
- package/lib/components/overlay/components/toggletip/toggletip.imports.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/types/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/types/toggletip.types.d.ts +31 -0
- package/lib/components/overlay/components/toggletip/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/toggletip/utils/public-api.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/utils/toggletip-config.d.ts +2 -0
- package/lib/components/overlay/components/toggletip/utils/toggletip.util.d.ts +5 -0
- package/lib/components/overlay/components/tooltip/components/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.d.ts +19 -0
- package/lib/components/overlay/components/tooltip/constants/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/constants/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/constants/tooltip.constants.d.ts +6 -0
- package/lib/components/overlay/components/tooltip/directives/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/tooltip/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +44 -0
- package/lib/components/overlay/components/tooltip/public-api.d.ts +6 -0
- package/lib/components/overlay/components/tooltip/tooltip.imports.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/types/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/types/public-api.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/types/tooltip.types.d.ts +31 -0
- package/lib/components/overlay/components/tooltip/utils/index.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/utils/public-api.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/utils/tooltip-config.d.ts +2 -0
- package/lib/components/overlay/components/tooltip/utils/tooltip.util.d.ts +5 -0
- package/lib/components/overlay/public-api.d.ts +3 -0
- package/lib/components/overlay/services/dynamic-overlay.service.d.ts +17 -0
- package/lib/components/overlay/services/public-api.d.ts +1 -0
- package/lib/components/overlay/types/dynamic-overlay.types.d.ts +8 -0
- package/lib/components/overlay/types/index.d.ts +1 -0
- package/lib/components/overlay/types/public-api.d.ts +1 -0
- package/lib/components/pagination/components/index.d.ts +1 -0
- package/lib/components/pagination/components/pagination/pagination.component.d.ts +31 -0
- package/lib/components/pagination/components/pagination/public-api.d.ts +1 -0
- package/lib/components/pagination/components/public-api.d.ts +1 -0
- package/lib/components/pagination/pagination.imports.d.ts +2 -0
- package/lib/components/pagination/partials/index.d.ts +1 -0
- package/lib/components/pagination/partials/pagination-link/pagination-link.directive.d.ts +10 -0
- package/lib/components/pagination/partials/pagination-link/public-api.d.ts +1 -0
- package/lib/components/pagination/partials/public-api.d.ts +1 -0
- package/lib/components/pagination/public-api.d.ts +4 -0
- package/lib/components/pagination/services/index.d.ts +1 -0
- package/lib/components/pagination/services/pagination-head.service.d.ts +16 -0
- package/lib/components/pagination/services/public-api.d.ts +1 -0
- package/lib/components/pagination/types/index.d.ts +1 -0
- package/lib/components/pagination/types/pagination.types.d.ts +18 -0
- package/lib/components/pagination/types/public-api.d.ts +1 -0
- package/lib/components/pagination/utils/index.d.ts +1 -0
- package/lib/components/pagination/utils/pagination.util.d.ts +2 -0
- package/lib/components/pagination/utils/public-api.d.ts +1 -0
- package/lib/components/picture/picture-data.directive.d.ts +21 -0
- package/lib/components/picture/picture.component.d.ts +12 -0
- package/lib/components/picture/picture.component.types.d.ts +4 -0
- package/lib/components/picture/public-api.d.ts +3 -0
- package/lib/components/progress-spinner/progress-spinner.component.d.ts +35 -0
- package/lib/components/progress-spinner/public-api.d.ts +1 -0
- package/lib/components/public-api.d.ts +15 -0
- package/lib/components/scrollable/components/index.d.ts +1 -0
- package/lib/components/scrollable/components/public-api.d.ts +1 -0
- package/lib/components/scrollable/components/scrollable/public-api.d.ts +1 -0
- package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +38 -0
- package/lib/components/scrollable/index.d.ts +1 -0
- package/lib/components/scrollable/public-api.d.ts +2 -0
- package/lib/components/scrollable/scrollable.imports.d.ts +2 -0
- package/lib/components/skeleton/components/index.d.ts +1 -0
- package/lib/components/skeleton/components/public-api.d.ts +1 -0
- package/lib/components/skeleton/components/skeleton/public-api.d.ts +1 -0
- package/lib/components/skeleton/components/skeleton/skeleton.component.d.ts +10 -0
- package/lib/components/skeleton/partials/index.d.ts +1 -0
- package/lib/components/skeleton/partials/public-api.d.ts +1 -0
- package/lib/components/skeleton/partials/skeleton-item/public-api.d.ts +1 -0
- package/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.d.ts +6 -0
- package/lib/components/skeleton/public-api.d.ts +3 -0
- package/lib/components/skeleton/skeleton.imports.d.ts +3 -0
- package/lib/components/sort/components/index.d.ts +1 -0
- package/lib/components/sort/components/public-api.d.ts +1 -0
- package/lib/components/sort/components/sort-header/public-api.d.ts +2 -0
- package/lib/components/sort/components/sort-header/sort-header.component.d.ts +56 -0
- package/lib/components/sort/components/sort-header/sort-header.types.d.ts +9 -0
- package/lib/components/sort/index.d.ts +1 -0
- package/lib/components/sort/partials/index.d.ts +1 -0
- package/lib/components/sort/partials/public-api.d.ts +1 -0
- package/lib/components/sort/partials/sort/public-api.d.ts +2 -0
- package/lib/components/sort/partials/sort/sort.directive.d.ts +43 -0
- package/lib/components/sort/partials/sort/sort.types.d.ts +15 -0
- package/lib/components/sort/public-api.d.ts +5 -0
- package/lib/components/sort/services/index.d.ts +1 -0
- package/lib/components/sort/services/public-api.d.ts +1 -0
- package/lib/components/sort/services/sort-header-intl.d.ts +14 -0
- package/lib/components/sort/sort.imports.d.ts +8 -0
- package/lib/components/sort/types/index.d.ts +1 -0
- package/lib/components/sort/types/public-api.d.ts +1 -0
- package/lib/components/sort/types/sort-direction.d.ts +1 -0
- package/lib/components/table/components/index.d.ts +1 -0
- package/lib/components/table/components/public-api.d.ts +1 -0
- package/lib/components/table/components/table/public-api.d.ts +1 -0
- package/lib/components/table/components/table/table.component.d.ts +26 -0
- package/lib/components/table/constants/index.d.ts +1 -0
- package/lib/components/table/constants/public-api.d.ts +1 -0
- package/lib/components/table/constants/table-data-source.constants.d.ts +1 -0
- package/lib/components/table/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell/cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/cell/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/cell-def/cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/cell-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/column-def/column-def.directive.d.ts +12 -0
- package/lib/components/table/partials/cells/column-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/column-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/footer-cell/footer-cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/footer-cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/footer-cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell/header-cell.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/header-cell/index.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.d.ts +6 -0
- package/lib/components/table/partials/cells/header-cell-def/index.d.ts +1 -0
- package/lib/components/table/partials/cells/header-cell-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/public-api.d.ts +8 -0
- package/lib/components/table/partials/cells/text-column/public-api.d.ts +1 -0
- package/lib/components/table/partials/cells/text-column/text-column.component.d.ts +7 -0
- package/lib/components/table/partials/index.d.ts +1 -0
- package/lib/components/table/partials/public-api.d.ts +4 -0
- package/lib/components/table/partials/rows/footer-row/footer-row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/footer-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/rows/footer-row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/header-row/header-row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/header-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/header-row-def/header-row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/rows/header-row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/no-data-row/no-data-row.directive.d.ts +7 -0
- package/lib/components/table/partials/rows/no-data-row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/public-api.d.ts +8 -0
- package/lib/components/table/partials/rows/recycle-rows/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.d.ts +5 -0
- package/lib/components/table/partials/rows/row/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/row/row.component.d.ts +6 -0
- package/lib/components/table/partials/rows/row-def/public-api.d.ts +1 -0
- package/lib/components/table/partials/rows/row-def/row-def.directive.d.ts +8 -0
- package/lib/components/table/partials/table-busy/public-api.d.ts +1 -0
- package/lib/components/table/partials/table-busy/table-busy.directive.d.ts +9 -0
- package/lib/components/table/partials/table-busy-outlet/public-api.d.ts +1 -0
- package/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.d.ts +10 -0
- package/lib/components/table/public-api.d.ts +6 -0
- package/lib/components/table/table.imports.d.ts +3 -0
- package/lib/components/table/types/index.d.ts +1 -0
- package/lib/components/table/types/public-api.d.ts +1 -0
- package/lib/components/table/types/table-data-source.types.d.ts +15 -0
- package/lib/components/table/utils/public-api.d.ts +1 -0
- package/lib/components/table/utils/table-data-source.d.ts +33 -0
- package/lib/components/tabs/animations/index.d.ts +1 -0
- package/lib/components/tabs/animations/public-api.d.ts +1 -0
- package/lib/components/tabs/animations/tabs.animations.d.ts +4 -0
- package/lib/components/tabs/components/index.d.ts +1 -0
- package/lib/components/tabs/components/inline-tabs/inline-tabs.component.d.ts +72 -0
- package/lib/components/tabs/components/inline-tabs/public-api.d.ts +1 -0
- package/lib/components/tabs/components/nav-tabs/nav-tabs.component.d.ts +28 -0
- package/lib/components/tabs/components/nav-tabs/public-api.d.ts +1 -0
- package/lib/components/tabs/components/public-api.d.ts +2 -0
- package/lib/components/tabs/partials/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.d.ts +41 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.d.ts +39 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.d.ts +8 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.d.ts +9 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.d.ts +19 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.d.ts +11 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.d.ts +17 -0
- package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/inline-tabs/public-api.d.ts +7 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.d.ts +48 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.d.ts +10 -0
- package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.d.ts +1 -0
- package/lib/components/tabs/partials/nav-tabs/public-api.d.ts +2 -0
- package/lib/components/tabs/partials/public-api.d.ts +2 -0
- package/lib/components/tabs/public-api.d.ts +6 -0
- package/lib/components/tabs/tab.imports.d.ts +3 -0
- package/lib/components/tabs/types/public-api.d.ts +1 -0
- package/lib/components/tabs/types/tab-config.types.d.ts +8 -0
- package/lib/components/tabs/utils/active-tab-underline.util.d.ts +41 -0
- package/lib/components/tabs/utils/index.d.ts +1 -0
- package/lib/components/tabs/utils/paginated-tab-header.directive.d.ts +79 -0
- package/lib/components/tabs/utils/public-api.d.ts +2 -0
- package/lib/public-api.d.ts +3 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/public-api.d.ts +1 -0
- package/lib/services/swipe-handler.service.d.ts +12 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/public-api.d.ts +1 -0
- package/lib/types/swipe.types.d.ts +19 -0
- package/package.json +37 -0
- package/src/lib/styles/active-tab-underline.css +50 -0
- package/src/lib/styles/cdk.css +11 -0
- package/src/lib/styles/easing.css +40 -0
- package/src/lib/styles/index.css +3 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CdkHeaderRow, CdkTableModule, CDK_ROW_TEMPLATE } from '@angular/cdk/table';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/cdk/table";
|
|
5
|
+
export class HeaderRowComponent extends CdkHeaderRow {
|
|
6
|
+
}
|
|
7
|
+
HeaderRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
HeaderRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: HeaderRowComponent, isStandalone: true, selector: "et-header-row, tr[et-header-row]", host: { attributes: { "role": "row" }, classAttribute: "et-header-row et-data-table__header-row" }, providers: [{ provide: CdkHeaderRow, useExisting: HeaderRowComponent }], exportAs: ["etHeaderRow"], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "directive", type: i1.CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowComponent, decorators: [{
|
|
10
|
+
type: Component,
|
|
11
|
+
args: [{
|
|
12
|
+
selector: 'et-header-row, tr[et-header-row]',
|
|
13
|
+
template: CDK_ROW_TEMPLATE,
|
|
14
|
+
host: {
|
|
15
|
+
class: 'et-header-row et-data-table__header-row',
|
|
16
|
+
role: 'row',
|
|
17
|
+
},
|
|
18
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
19
|
+
encapsulation: ViewEncapsulation.None,
|
|
20
|
+
exportAs: 'etHeaderRow',
|
|
21
|
+
providers: [{ provide: CdkHeaderRow, useExisting: HeaderRowComponent }],
|
|
22
|
+
standalone: true,
|
|
23
|
+
imports: [CdkTableModule],
|
|
24
|
+
}]
|
|
25
|
+
}] });
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLXJvdy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvcGFydGlhbHMvcm93cy9oZWFkZXItcm93L2hlYWRlci1yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDcEYsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBZ0J0RixNQUFNLE9BQU8sa0JBQW1CLFNBQVEsWUFBWTs7K0dBQXZDLGtCQUFrQjttR0FBbEIsa0JBQWtCLG1MQUpsQixDQUFDLEVBQUUsT0FBTyxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsQ0FBQyxvTEFFN0QsY0FBYzsyRkFFYixrQkFBa0I7a0JBZDlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGtDQUFrQztvQkFDNUMsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSx5Q0FBeUM7d0JBQ2hELElBQUksRUFBRSxLQUFLO3FCQUNaO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxPQUFPO29CQUNoRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsUUFBUSxFQUFFLGFBQWE7b0JBQ3ZCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFlBQVksRUFBRSxXQUFXLG9CQUFvQixFQUFFLENBQUM7b0JBQ3ZFLFVBQVUsRUFBRSxJQUFJO29CQUNoQixPQUFPLEVBQUUsQ0FBQyxjQUFjLENBQUM7aUJBQzFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrSGVhZGVyUm93LCBDZGtUYWJsZU1vZHVsZSwgQ0RLX1JPV19URU1QTEFURSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1oZWFkZXItcm93LCB0cltldC1oZWFkZXItcm93XScsXG4gIHRlbXBsYXRlOiBDREtfUk9XX1RFTVBMQVRFLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1oZWFkZXItcm93IGV0LWRhdGEtdGFibGVfX2hlYWRlci1yb3cnLFxuICAgIHJvbGU6ICdyb3cnLFxuICB9LFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LkRlZmF1bHQsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGV4cG9ydEFzOiAnZXRIZWFkZXJSb3cnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka0hlYWRlclJvdywgdXNlRXhpc3Rpbmc6IEhlYWRlclJvd0NvbXBvbmVudCB9XSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0Nka1RhYmxlTW9kdWxlXSxcbn0pXG5leHBvcnQgY2xhc3MgSGVhZGVyUm93Q29tcG9uZW50IGV4dGVuZHMgQ2RrSGVhZGVyUm93IHt9XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './header-row.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL2hlYWRlci1yb3cvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9oZWFkZXItcm93LmNvbXBvbmVudCc7XG4iXX0=
|
package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CdkHeaderRowDef, CDK_TABLE } from '@angular/cdk/table';
|
|
2
|
+
import { Directive, Inject, IterableDiffers, Optional, TemplateRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class HeaderRowDefDirective extends CdkHeaderRowDef {
|
|
5
|
+
constructor(template, _differs, _table) {
|
|
6
|
+
super(template, _differs, _table);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
HeaderRowDefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowDefDirective, deps: [{ token: i0.TemplateRef }, { token: i0.IterableDiffers }, { token: CDK_TABLE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10
|
+
HeaderRowDefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: HeaderRowDefDirective, isStandalone: true, selector: "[etHeaderRowDef]", inputs: { columns: ["etHeaderRowDef", "columns"], sticky: ["etHeaderRowDefSticky", "sticky"] }, providers: [{ provide: CdkHeaderRowDef, useExisting: HeaderRowDefDirective }], usesInheritance: true, ngImport: i0 });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowDefDirective, decorators: [{
|
|
12
|
+
type: Directive,
|
|
13
|
+
args: [{
|
|
14
|
+
selector: '[etHeaderRowDef]',
|
|
15
|
+
providers: [{ provide: CdkHeaderRowDef, useExisting: HeaderRowDefDirective }],
|
|
16
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
17
|
+
inputs: ['columns: etHeaderRowDef', 'sticky: etHeaderRowDefSticky'],
|
|
18
|
+
standalone: true,
|
|
19
|
+
}]
|
|
20
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.IterableDiffers }, { type: undefined, decorators: [{
|
|
21
|
+
type: Inject,
|
|
22
|
+
args: [CDK_TABLE]
|
|
23
|
+
}, {
|
|
24
|
+
type: Optional
|
|
25
|
+
}] }]; } });
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlL3BhcnRpYWxzL3Jvd3MvaGVhZGVyLXJvdy1kZWYvaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsU0FBUyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsZUFBZSxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFGLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSxlQUFlO0lBQ3hELFlBQ0UsUUFBOEIsRUFDOUIsUUFBeUIsRUFDTSxNQUFnQjtRQUUvQyxLQUFLLENBQUMsUUFBUSxFQUFFLFFBQVEsRUFBRSxNQUFNLENBQUMsQ0FBQztJQUNwQyxDQUFDOztrSEFQVSxxQkFBcUIsNEVBSXRCLFNBQVM7c0dBSlIscUJBQXFCLCtKQUxyQixDQUFDLEVBQUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxXQUFXLEVBQUUscUJBQXFCLEVBQUUsQ0FBQzsyRkFLbEUscUJBQXFCO2tCQVBqQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxrQkFBa0I7b0JBQzVCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxXQUFXLHVCQUF1QixFQUFFLENBQUM7b0JBQzdFLHVFQUF1RTtvQkFDdkUsTUFBTSxFQUFFLENBQUMseUJBQXlCLEVBQUUsOEJBQThCLENBQUM7b0JBQ25FLFVBQVUsRUFBRSxJQUFJO2lCQUNqQjs7MEJBS0ksTUFBTTsyQkFBQyxTQUFTOzswQkFBRyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrSGVhZGVyUm93RGVmLCBDREtfVEFCTEUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBJbmplY3QsIEl0ZXJhYmxlRGlmZmVycywgT3B0aW9uYWwsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tldEhlYWRlclJvd0RlZl0nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka0hlYWRlclJvd0RlZiwgdXNlRXhpc3Rpbmc6IEhlYWRlclJvd0RlZkRpcmVjdGl2ZSB9XSxcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1pbnB1dHMtbWV0YWRhdGEtcHJvcGVydHlcbiAgaW5wdXRzOiBbJ2NvbHVtbnM6IGV0SGVhZGVyUm93RGVmJywgJ3N0aWNreTogZXRIZWFkZXJSb3dEZWZTdGlja3knXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgSGVhZGVyUm93RGVmRGlyZWN0aXZlIGV4dGVuZHMgQ2RrSGVhZGVyUm93RGVmIHtcbiAgY29uc3RydWN0b3IoXG4gICAgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPHVua25vd24+LFxuICAgIF9kaWZmZXJzOiBJdGVyYWJsZURpZmZlcnMsXG4gICAgQEluamVjdChDREtfVEFCTEUpIEBPcHRpb25hbCgpIF90YWJsZT86IHVua25vd24sXG4gICkge1xuICAgIHN1cGVyKHRlbXBsYXRlLCBfZGlmZmVycywgX3RhYmxlKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './header-row-def.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL2hlYWRlci1yb3ctZGVmL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw0QkFBNEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlJztcbiJdfQ==
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CdkNoDataRow } from '@angular/cdk/table';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class NoDataRowDirective extends CdkNoDataRow {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(...arguments);
|
|
7
|
+
this._contentClassName = 'et-no-data-row';
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
NoDataRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NoDataRowDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
11
|
+
NoDataRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: NoDataRowDirective, isStandalone: true, selector: "ng-template[etNoDataRow]", providers: [{ provide: CdkNoDataRow, useExisting: NoDataRowDirective }], usesInheritance: true, ngImport: i0 });
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NoDataRowDirective, decorators: [{
|
|
13
|
+
type: Directive,
|
|
14
|
+
args: [{
|
|
15
|
+
selector: 'ng-template[etNoDataRow]',
|
|
16
|
+
providers: [{ provide: CdkNoDataRow, useExisting: NoDataRowDirective }],
|
|
17
|
+
standalone: true,
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tZGF0YS1yb3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlL3BhcnRpYWxzL3Jvd3Mvbm8tZGF0YS1yb3cvbm8tZGF0YS1yb3cuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNsRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU8xQyxNQUFNLE9BQU8sa0JBQW1CLFNBQVEsWUFBWTtJQUxwRDs7UUFNVyxzQkFBaUIsR0FBRyxnQkFBZ0IsQ0FBQztLQUMvQzs7K0dBRlksa0JBQWtCO21HQUFsQixrQkFBa0IsdUVBSGxCLENBQUMsRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxrQkFBa0IsRUFBRSxDQUFDOzJGQUc1RCxrQkFBa0I7a0JBTDlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDBCQUEwQjtvQkFDcEMsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLFdBQVcsb0JBQW9CLEVBQUUsQ0FBQztvQkFDdkUsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrTm9EYXRhUm93IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICduZy10ZW1wbGF0ZVtldE5vRGF0YVJvd10nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka05vRGF0YVJvdywgdXNlRXhpc3Rpbmc6IE5vRGF0YVJvd0RpcmVjdGl2ZSB9XSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgTm9EYXRhUm93RGlyZWN0aXZlIGV4dGVuZHMgQ2RrTm9EYXRhUm93IHtcbiAgb3ZlcnJpZGUgX2NvbnRlbnRDbGFzc05hbWUgPSAnZXQtbm8tZGF0YS1yb3cnO1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './no-data-row.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL25vLWRhdGEtcm93L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbm8tZGF0YS1yb3cuZGlyZWN0aXZlJztcbiJdfQ==
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './footer-row/public-api';
|
|
2
|
+
export * from './footer-row-def/public-api';
|
|
3
|
+
export * from './header-row/public-api';
|
|
4
|
+
export * from './header-row-def/public-api';
|
|
5
|
+
export * from './no-data-row/public-api';
|
|
6
|
+
export * from './recycle-rows/public-api';
|
|
7
|
+
export * from './row/public-api';
|
|
8
|
+
export * from './row-def/public-api';
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mb290ZXItcm93L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9mb290ZXItcm93LWRlZi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLXJvdy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLXJvdy1kZWYvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL25vLWRhdGEtcm93L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yZWN5Y2xlLXJvd3MvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3Jvdy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcm93LWRlZi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './recycle-rows.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3JlY3ljbGUtcm93cy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3JlY3ljbGUtcm93cy5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { _RecycleViewRepeaterStrategy, _VIEW_REPEATER_STRATEGY } from '@angular/cdk/collections';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class RecycleRowsDirective {
|
|
5
|
+
}
|
|
6
|
+
RecycleRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RecycleRowsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
7
|
+
RecycleRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RecycleRowsDirective, isStandalone: true, selector: "et-table[recycleRows], table[et-table][recycleRows]", providers: [{ provide: _VIEW_REPEATER_STRATEGY, useClass: _RecycleViewRepeaterStrategy }], ngImport: i0 });
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RecycleRowsDirective, decorators: [{
|
|
9
|
+
type: Directive,
|
|
10
|
+
args: [{
|
|
11
|
+
selector: 'et-table[recycleRows], table[et-table][recycleRows]',
|
|
12
|
+
providers: [{ provide: _VIEW_REPEATER_STRATEGY, useClass: _RecycleViewRepeaterStrategy }],
|
|
13
|
+
standalone: true,
|
|
14
|
+
}]
|
|
15
|
+
}] });
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjeWNsZS1yb3dzLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3JlY3ljbGUtcm93cy9yZWN5Y2xlLXJvd3MuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2pHLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBTzFDLE1BQU0sT0FBTyxvQkFBb0I7O2lIQUFwQixvQkFBb0I7cUdBQXBCLG9CQUFvQixrR0FIcEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxRQUFRLEVBQUUsNEJBQTRCLEVBQUUsQ0FBQzsyRkFHOUUsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxxREFBcUQ7b0JBQy9ELFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFFBQVEsRUFBRSw0QkFBNEIsRUFBRSxDQUFDO29CQUN6RixVQUFVLEVBQUUsSUFBSTtpQkFDakIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBfUmVjeWNsZVZpZXdSZXBlYXRlclN0cmF0ZWd5LCBfVklFV19SRVBFQVRFUl9TVFJBVEVHWSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2xsZWN0aW9ucyc7XG5pbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnZXQtdGFibGVbcmVjeWNsZVJvd3NdLCB0YWJsZVtldC10YWJsZV1bcmVjeWNsZVJvd3NdJyxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBfVklFV19SRVBFQVRFUl9TVFJBVEVHWSwgdXNlQ2xhc3M6IF9SZWN5Y2xlVmlld1JlcGVhdGVyU3RyYXRlZ3kgfV0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIFJlY3ljbGVSb3dzRGlyZWN0aXZlIHt9XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './row.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3Jvdy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3Jvdy5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CdkRow, CdkTableModule, CDK_ROW_TEMPLATE } from '@angular/cdk/table';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/cdk/table";
|
|
5
|
+
export class RowComponent extends CdkRow {
|
|
6
|
+
}
|
|
7
|
+
RowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
RowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RowComponent, isStandalone: true, selector: "et-row, [et-row], [et-row]", host: { attributes: { "role": "row" }, classAttribute: "et-row et-data-table__row" }, providers: [{ provide: CdkRow, useExisting: RowComponent }], exportAs: ["etRow"], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "directive", type: i1.CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowComponent, decorators: [{
|
|
10
|
+
type: Component,
|
|
11
|
+
args: [{
|
|
12
|
+
selector: 'et-row, [et-row], [et-row]',
|
|
13
|
+
template: CDK_ROW_TEMPLATE,
|
|
14
|
+
host: {
|
|
15
|
+
class: 'et-row et-data-table__row',
|
|
16
|
+
role: 'row',
|
|
17
|
+
},
|
|
18
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
19
|
+
encapsulation: ViewEncapsulation.None,
|
|
20
|
+
exportAs: 'etRow',
|
|
21
|
+
providers: [{ provide: CdkRow, useExisting: RowComponent }],
|
|
22
|
+
standalone: true,
|
|
23
|
+
imports: [CdkTableModule],
|
|
24
|
+
}]
|
|
25
|
+
}] });
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm93LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3Jvdy9yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDOUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBZ0J0RixNQUFNLE9BQU8sWUFBYSxTQUFRLE1BQU07O3lHQUEzQixZQUFZOzZGQUFaLFlBQVksK0pBSlosQ0FBQyxFQUFFLE9BQU8sRUFBRSxNQUFNLEVBQUUsV0FBVyxFQUFFLFlBQVksRUFBRSxDQUFDLDhLQUVqRCxjQUFjOzJGQUViLFlBQVk7a0JBZHhCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDRCQUE0QjtvQkFDdEMsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSwyQkFBMkI7d0JBQ2xDLElBQUksRUFBRSxLQUFLO3FCQUNaO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxPQUFPO29CQUNoRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsUUFBUSxFQUFFLE9BQU87b0JBQ2pCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLE1BQU0sRUFBRSxXQUFXLGNBQWMsRUFBRSxDQUFDO29CQUMzRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDO2lCQUMxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka1JvdywgQ2RrVGFibGVNb2R1bGUsIENES19ST1dfVEVNUExBVEUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtcm93LCBbZXQtcm93XSwgW2V0LXJvd10nLFxuICB0ZW1wbGF0ZTogQ0RLX1JPV19URU1QTEFURSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtcm93IGV0LWRhdGEtdGFibGVfX3JvdycsXG4gICAgcm9sZTogJ3JvdycsXG4gIH0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuRGVmYXVsdCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgZXhwb3J0QXM6ICdldFJvdycsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogQ2RrUm93LCB1c2VFeGlzdGluZzogUm93Q29tcG9uZW50IH1dLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ2RrVGFibGVNb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBSb3dDb21wb25lbnQgZXh0ZW5kcyBDZGtSb3cge31cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './row-def.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3Jvdy1kZWYvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yb3ctZGVmLmRpcmVjdGl2ZSc7XG4iXX0=
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CdkRowDef, CDK_TABLE } from '@angular/cdk/table';
|
|
2
|
+
import { Directive, Inject, IterableDiffers, Optional, TemplateRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class RowDefDirective extends CdkRowDef {
|
|
5
|
+
constructor(template, _differs, _table) {
|
|
6
|
+
super(template, _differs, _table);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
RowDefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowDefDirective, deps: [{ token: i0.TemplateRef }, { token: i0.IterableDiffers }, { token: CDK_TABLE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10
|
+
RowDefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RowDefDirective, isStandalone: true, selector: "[etRowDef]", inputs: { columns: ["etRowDefColumns", "columns"], when: ["etRowDefWhen", "when"] }, providers: [{ provide: CdkRowDef, useExisting: RowDefDirective }], usesInheritance: true, ngImport: i0 });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowDefDirective, decorators: [{
|
|
12
|
+
type: Directive,
|
|
13
|
+
args: [{
|
|
14
|
+
selector: '[etRowDef]',
|
|
15
|
+
providers: [{ provide: CdkRowDef, useExisting: RowDefDirective }],
|
|
16
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
17
|
+
inputs: ['columns: etRowDefColumns', 'when: etRowDefWhen'],
|
|
18
|
+
standalone: true,
|
|
19
|
+
}]
|
|
20
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.IterableDiffers }, { type: undefined, decorators: [{
|
|
21
|
+
type: Inject,
|
|
22
|
+
args: [CDK_TABLE]
|
|
23
|
+
}, {
|
|
24
|
+
type: Optional
|
|
25
|
+
}] }]; } });
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm93LWRlZi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvcGFydGlhbHMvcm93cy9yb3ctZGVmL3Jvdy1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsU0FBUyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDMUQsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsZUFBZSxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFGLE1BQU0sT0FBTyxlQUFtQixTQUFRLFNBQVk7SUFDbEQsWUFDRSxRQUE4QixFQUM5QixRQUF5QixFQUNNLE1BQWdCO1FBRS9DLEtBQUssQ0FBQyxRQUFRLEVBQUUsUUFBUSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ3BDLENBQUM7OzRHQVBVLGVBQWUsNEVBSWhCLFNBQVM7Z0dBSlIsZUFBZSw4SUFMZixDQUFDLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsZUFBZSxFQUFFLENBQUM7MkZBS3RELGVBQWU7a0JBUDNCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFlBQVk7b0JBQ3RCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLGlCQUFpQixFQUFFLENBQUM7b0JBQ2pFLHVFQUF1RTtvQkFDdkUsTUFBTSxFQUFFLENBQUMsMEJBQTBCLEVBQUUsb0JBQW9CLENBQUM7b0JBQzFELFVBQVUsRUFBRSxJQUFJO2lCQUNqQjs7MEJBS0ksTUFBTTsyQkFBQyxTQUFTOzswQkFBRyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrUm93RGVmLCBDREtfVEFCTEUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBJbmplY3QsIEl0ZXJhYmxlRGlmZmVycywgT3B0aW9uYWwsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tldFJvd0RlZl0nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka1Jvd0RlZiwgdXNlRXhpc3Rpbmc6IFJvd0RlZkRpcmVjdGl2ZSB9XSxcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1pbnB1dHMtbWV0YWRhdGEtcHJvcGVydHlcbiAgaW5wdXRzOiBbJ2NvbHVtbnM6IGV0Um93RGVmQ29sdW1ucycsICd3aGVuOiBldFJvd0RlZldoZW4nXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgUm93RGVmRGlyZWN0aXZlPFQ+IGV4dGVuZHMgQ2RrUm93RGVmPFQ+IHtcbiAgY29uc3RydWN0b3IoXG4gICAgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPHVua25vd24+LFxuICAgIF9kaWZmZXJzOiBJdGVyYWJsZURpZmZlcnMsXG4gICAgQEluamVjdChDREtfVEFCTEUpIEBPcHRpb25hbCgpIF90YWJsZT86IHVua25vd24sXG4gICkge1xuICAgIHN1cGVyKHRlbXBsYXRlLCBfZGlmZmVycywgX3RhYmxlKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './table-busy.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy90YWJsZS1idXN5L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vdGFibGUtYnVzeS5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class TableBusyDirective {
|
|
4
|
+
constructor(templateRef) {
|
|
5
|
+
this.templateRef = templateRef;
|
|
6
|
+
this._contentClassName = 'et-table-busy';
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
TableBusyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10
|
+
TableBusyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: TableBusyDirective, isStandalone: true, selector: "ng-template[etTableBusy]", ngImport: i0 });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyDirective, decorators: [{
|
|
12
|
+
type: Directive,
|
|
13
|
+
args: [{
|
|
14
|
+
selector: 'ng-template[etTableBusy]',
|
|
15
|
+
standalone: true,
|
|
16
|
+
}]
|
|
17
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYnVzeS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvcGFydGlhbHMvdGFibGUtYnVzeS90YWJsZS1idXN5LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNdkQsTUFBTSxPQUFPLGtCQUFrQjtJQUc3QixZQUFtQixXQUFpQztRQUFqQyxnQkFBVyxHQUFYLFdBQVcsQ0FBc0I7UUFGcEQsc0JBQWlCLEdBQUcsZUFBZSxDQUFDO0lBRW1CLENBQUM7OytHQUg3QyxrQkFBa0I7bUdBQWxCLGtCQUFrQjsyRkFBbEIsa0JBQWtCO2tCQUo5QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSwwQkFBMEI7b0JBQ3BDLFVBQVUsRUFBRSxJQUFJO2lCQUNqQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnbmctdGVtcGxhdGVbZXRUYWJsZUJ1c3ldJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVCdXN5RGlyZWN0aXZlIHtcbiAgX2NvbnRlbnRDbGFzc05hbWUgPSAnZXQtdGFibGUtYnVzeSc7XG5cbiAgY29uc3RydWN0b3IocHVibGljIHRlbXBsYXRlUmVmOiBUZW1wbGF0ZVJlZjx1bmtub3duPikge31cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './table-busy-outlet.directive';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy90YWJsZS1idXN5LW91dGxldC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsK0JBQStCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYmxlLWJ1c3ktb3V0bGV0LmRpcmVjdGl2ZSc7XG4iXX0=
|
package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Directive, ElementRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class TableBusyOutletDirective {
|
|
4
|
+
constructor(viewContainer, elementRef) {
|
|
5
|
+
this.viewContainer = viewContainer;
|
|
6
|
+
this.elementRef = elementRef;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
TableBusyOutletDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyOutletDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10
|
+
TableBusyOutletDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: TableBusyOutletDirective, isStandalone: true, selector: "[tableBusyOutlet]", ngImport: i0 });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyOutletDirective, decorators: [{
|
|
12
|
+
type: Directive,
|
|
13
|
+
args: [{ selector: '[tableBusyOutlet]', standalone: true }]
|
|
14
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ElementRef }]; } });
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYnVzeS1vdXRsZXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlL3BhcnRpYWxzL3RhYmxlLWJ1c3ktb3V0bGV0L3RhYmxlLWJ1c3ktb3V0bGV0LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFHeEUsTUFBTSxPQUFPLHdCQUF3QjtJQUNuQyxZQUFtQixhQUErQixFQUFTLFVBQXNCO1FBQTlELGtCQUFhLEdBQWIsYUFBYSxDQUFrQjtRQUFTLGVBQVUsR0FBVixVQUFVLENBQVk7SUFBRyxDQUFDOztxSEFEMUUsd0JBQXdCO3lHQUF4Qix3QkFBd0I7MkZBQXhCLHdCQUF3QjtrQkFEcEMsU0FBUzttQkFBQyxFQUFFLFFBQVEsRUFBRSxtQkFBbUIsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUm93T3V0bGV0IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgVmlld0NvbnRhaW5lclJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHsgc2VsZWN0b3I6ICdbdGFibGVCdXN5T3V0bGV0XScsIHN0YW5kYWxvbmU6IHRydWUgfSlcbmV4cG9ydCBjbGFzcyBUYWJsZUJ1c3lPdXRsZXREaXJlY3RpdmUgaW1wbGVtZW50cyBSb3dPdXRsZXQge1xuICBjb25zdHJ1Y3RvcihwdWJsaWMgdmlld0NvbnRhaW5lcjogVmlld0NvbnRhaW5lclJlZiwgcHVibGljIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHt9XG59XG4iXX0=
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './components/public-api';
|
|
2
|
+
export * from './constants/public-api';
|
|
3
|
+
export * from './partials/public-api';
|
|
4
|
+
export * from './table.imports';
|
|
5
|
+
export * from './types/public-api';
|
|
6
|
+
export * from './utils/public-api';
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9jb25zdGFudHMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3BhcnRpYWxzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi90YWJsZS5pbXBvcnRzJztcbmV4cG9ydCAqIGZyb20gJy4vdHlwZXMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3V0aWxzL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { TableComponent } from './components';
|
|
2
|
+
import { CellDefDirective, CellDirective, ColumnDefDirective, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, NoDataRowDirective, RecycleRowsDirective, RowComponent, RowDefDirective, TableBusyDirective, TextColumnComponent, } from './partials';
|
|
3
|
+
export const TableImports = [
|
|
4
|
+
TableComponent,
|
|
5
|
+
RecycleRowsDirective,
|
|
6
|
+
HeaderCellDefDirective,
|
|
7
|
+
HeaderRowDefDirective,
|
|
8
|
+
ColumnDefDirective,
|
|
9
|
+
CellDefDirective,
|
|
10
|
+
RowDefDirective,
|
|
11
|
+
FooterCellDefDirective,
|
|
12
|
+
FooterRowDefDirective,
|
|
13
|
+
HeaderCellDirective,
|
|
14
|
+
CellDirective,
|
|
15
|
+
FooterCellDirective,
|
|
16
|
+
HeaderRowComponent,
|
|
17
|
+
RowComponent,
|
|
18
|
+
FooterRowComponent,
|
|
19
|
+
NoDataRowDirective,
|
|
20
|
+
TextColumnComponent,
|
|
21
|
+
TableBusyDirective,
|
|
22
|
+
];
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS90YWJsZS5pbXBvcnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDOUMsT0FBTyxFQUNMLGdCQUFnQixFQUNoQixhQUFhLEVBQ2Isa0JBQWtCLEVBQ2xCLHNCQUFzQixFQUN0QixtQkFBbUIsRUFDbkIsa0JBQWtCLEVBQ2xCLHFCQUFxQixFQUNyQixzQkFBc0IsRUFDdEIsbUJBQW1CLEVBQ25CLGtCQUFrQixFQUNsQixxQkFBcUIsRUFDckIsa0JBQWtCLEVBQ2xCLG9CQUFvQixFQUNwQixZQUFZLEVBQ1osZUFBZSxFQUNmLGtCQUFrQixFQUNsQixtQkFBbUIsR0FDcEIsTUFBTSxZQUFZLENBQUM7QUFFcEIsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHO0lBQzFCLGNBQWM7SUFDZCxvQkFBb0I7SUFDcEIsc0JBQXNCO0lBQ3RCLHFCQUFxQjtJQUNyQixrQkFBa0I7SUFDbEIsZ0JBQWdCO0lBQ2hCLGVBQWU7SUFDZixzQkFBc0I7SUFDdEIscUJBQXFCO0lBQ3JCLG1CQUFtQjtJQUNuQixhQUFhO0lBQ2IsbUJBQW1CO0lBQ25CLGtCQUFrQjtJQUNsQixZQUFZO0lBQ1osa0JBQWtCO0lBQ2xCLGtCQUFrQjtJQUNsQixtQkFBbUI7SUFDbkIsa0JBQWtCO0NBQ1YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFRhYmxlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzJztcbmltcG9ydCB7XG4gIENlbGxEZWZEaXJlY3RpdmUsXG4gIENlbGxEaXJlY3RpdmUsXG4gIENvbHVtbkRlZkRpcmVjdGl2ZSxcbiAgRm9vdGVyQ2VsbERlZkRpcmVjdGl2ZSxcbiAgRm9vdGVyQ2VsbERpcmVjdGl2ZSxcbiAgRm9vdGVyUm93Q29tcG9uZW50LFxuICBGb290ZXJSb3dEZWZEaXJlY3RpdmUsXG4gIEhlYWRlckNlbGxEZWZEaXJlY3RpdmUsXG4gIEhlYWRlckNlbGxEaXJlY3RpdmUsXG4gIEhlYWRlclJvd0NvbXBvbmVudCxcbiAgSGVhZGVyUm93RGVmRGlyZWN0aXZlLFxuICBOb0RhdGFSb3dEaXJlY3RpdmUsXG4gIFJlY3ljbGVSb3dzRGlyZWN0aXZlLFxuICBSb3dDb21wb25lbnQsXG4gIFJvd0RlZkRpcmVjdGl2ZSxcbiAgVGFibGVCdXN5RGlyZWN0aXZlLFxuICBUZXh0Q29sdW1uQ29tcG9uZW50LFxufSBmcm9tICcuL3BhcnRpYWxzJztcblxuZXhwb3J0IGNvbnN0IFRhYmxlSW1wb3J0cyA9IFtcbiAgVGFibGVDb21wb25lbnQsXG4gIFJlY3ljbGVSb3dzRGlyZWN0aXZlLFxuICBIZWFkZXJDZWxsRGVmRGlyZWN0aXZlLFxuICBIZWFkZXJSb3dEZWZEaXJlY3RpdmUsXG4gIENvbHVtbkRlZkRpcmVjdGl2ZSxcbiAgQ2VsbERlZkRpcmVjdGl2ZSxcbiAgUm93RGVmRGlyZWN0aXZlLFxuICBGb290ZXJDZWxsRGVmRGlyZWN0aXZlLFxuICBGb290ZXJSb3dEZWZEaXJlY3RpdmUsXG4gIEhlYWRlckNlbGxEaXJlY3RpdmUsXG4gIENlbGxEaXJlY3RpdmUsXG4gIEZvb3RlckNlbGxEaXJlY3RpdmUsXG4gIEhlYWRlclJvd0NvbXBvbmVudCxcbiAgUm93Q29tcG9uZW50LFxuICBGb290ZXJSb3dDb21wb25lbnQsXG4gIE5vRGF0YVJvd0RpcmVjdGl2ZSxcbiAgVGV4dENvbHVtbkNvbXBvbmVudCxcbiAgVGFibGVCdXN5RGlyZWN0aXZlLFxuXSBhcyBjb25zdDtcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './table-data-source.types';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS90eXBlcy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYmxlLWRhdGEtc291cmNlLnR5cGVzJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtZGF0YS1zb3VyY2UudHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvdHlwZXMvdGFibGUtZGF0YS1zb3VyY2UudHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9ic2VydmFibGUsIFN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuZXhwb3J0IGludGVyZmFjZSBUYWJsZURhdGFTb3VyY2VQYWdlRXZlbnQge1xuICBwYWdlSW5kZXg6IG51bWJlcjtcbiAgcGFnZVNpemU6IG51bWJlcjtcbiAgbGVuZ3RoOiBudW1iZXI7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgVGFibGVEYXRhU291cmNlUGFnaW5hdG9yIHtcbiAgcGFnZTogU3ViamVjdDxUYWJsZURhdGFTb3VyY2VQYWdlRXZlbnQ+O1xuICBwYWdlSW5kZXg6IG51bWJlcjtcbiAgaW5pdGlhbGl6ZWQ6IE9ic2VydmFibGU8dm9pZD47XG4gIHBhZ2VTaXplOiBudW1iZXI7XG4gIGxlbmd0aDogbnVtYmVyO1xuICBmaXJzdFBhZ2U6ICgpID0+IHZvaWQ7XG4gIGxhc3RQYWdlOiAoKSA9PiB2b2lkO1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './table-data-source';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS91dGlscy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYmxlLWRhdGEtc291cmNlJztcbiJdfQ==
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { BehaviorSubject, combineLatest, merge, of, Subject, map } from 'rxjs';
|
|
2
|
+
import { DataSource } from '@angular/cdk/collections';
|
|
3
|
+
import { _isNumberValue } from '@angular/cdk/coercion';
|
|
4
|
+
import { MAX_SAFE_INTEGER } from '../constants';
|
|
5
|
+
export class TableDataSource extends DataSource {
|
|
6
|
+
get data() {
|
|
7
|
+
return this._data.value;
|
|
8
|
+
}
|
|
9
|
+
set data(data) {
|
|
10
|
+
data = Array.isArray(data) ? data : [];
|
|
11
|
+
this._data.next(data);
|
|
12
|
+
if (!this._renderChangesSubscription) {
|
|
13
|
+
this._filterData(data);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
get filter() {
|
|
17
|
+
return this._filter.value;
|
|
18
|
+
}
|
|
19
|
+
set filter(filter) {
|
|
20
|
+
this._filter.next(filter);
|
|
21
|
+
if (!this._renderChangesSubscription) {
|
|
22
|
+
this._filterData(this.data);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
get sort() {
|
|
26
|
+
return this._sort;
|
|
27
|
+
}
|
|
28
|
+
set sort(sort) {
|
|
29
|
+
this._sort = sort;
|
|
30
|
+
this._updateChangeSubscription();
|
|
31
|
+
}
|
|
32
|
+
get paginator() {
|
|
33
|
+
return this._paginator;
|
|
34
|
+
}
|
|
35
|
+
set paginator(paginator) {
|
|
36
|
+
this._paginator = paginator;
|
|
37
|
+
this._updateChangeSubscription();
|
|
38
|
+
}
|
|
39
|
+
constructor(initialData = []) {
|
|
40
|
+
super();
|
|
41
|
+
this._renderData = new BehaviorSubject([]);
|
|
42
|
+
this._filter = new BehaviorSubject('');
|
|
43
|
+
this._internalPageChanges = new Subject();
|
|
44
|
+
this._renderChangesSubscription = null;
|
|
45
|
+
this.filteredData = [];
|
|
46
|
+
this._sort = null;
|
|
47
|
+
this._paginator = null;
|
|
48
|
+
this.sortingDataAccessor = (data, sortHeaderId) => {
|
|
49
|
+
const value = data[sortHeaderId];
|
|
50
|
+
if (_isNumberValue(value)) {
|
|
51
|
+
const numberValue = Number(value);
|
|
52
|
+
return numberValue < MAX_SAFE_INTEGER ? numberValue : value;
|
|
53
|
+
}
|
|
54
|
+
return value;
|
|
55
|
+
};
|
|
56
|
+
this.sortData = (data, sort) => {
|
|
57
|
+
const active = sort.active;
|
|
58
|
+
const direction = sort.direction;
|
|
59
|
+
if (!active || direction == '') {
|
|
60
|
+
return data;
|
|
61
|
+
}
|
|
62
|
+
return data.sort((a, b) => {
|
|
63
|
+
let valueA = this.sortingDataAccessor(a, active);
|
|
64
|
+
let valueB = this.sortingDataAccessor(b, active);
|
|
65
|
+
const valueAType = typeof valueA;
|
|
66
|
+
const valueBType = typeof valueB;
|
|
67
|
+
if (valueAType !== valueBType) {
|
|
68
|
+
if (valueAType === 'number') {
|
|
69
|
+
valueA += '';
|
|
70
|
+
}
|
|
71
|
+
if (valueBType === 'number') {
|
|
72
|
+
valueB += '';
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
let comparatorResult = 0;
|
|
76
|
+
if (valueA != null && valueB != null) {
|
|
77
|
+
if (valueA > valueB) {
|
|
78
|
+
comparatorResult = 1;
|
|
79
|
+
}
|
|
80
|
+
else if (valueA < valueB) {
|
|
81
|
+
comparatorResult = -1;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
else if (valueA != null) {
|
|
85
|
+
comparatorResult = 1;
|
|
86
|
+
}
|
|
87
|
+
else if (valueB != null) {
|
|
88
|
+
comparatorResult = -1;
|
|
89
|
+
}
|
|
90
|
+
return comparatorResult * (direction == 'asc' ? 1 : -1);
|
|
91
|
+
});
|
|
92
|
+
};
|
|
93
|
+
this.filterPredicate = (data, filter) => {
|
|
94
|
+
const dataStr = Object.keys(data)
|
|
95
|
+
.reduce((currentTerm, key) => {
|
|
96
|
+
return currentTerm + data[key] + '◬';
|
|
97
|
+
}, '')
|
|
98
|
+
.toLowerCase();
|
|
99
|
+
const transformedFilter = filter.trim().toLowerCase();
|
|
100
|
+
return dataStr.indexOf(transformedFilter) != -1;
|
|
101
|
+
};
|
|
102
|
+
this._data = new BehaviorSubject(initialData);
|
|
103
|
+
this._updateChangeSubscription();
|
|
104
|
+
}
|
|
105
|
+
_updateChangeSubscription() {
|
|
106
|
+
const sortChange = this._sort
|
|
107
|
+
? merge(this._sort.sortChange, this._sort.initialized)
|
|
108
|
+
: of(null);
|
|
109
|
+
const pageChange = this._paginator
|
|
110
|
+
? merge(this._paginator.page, this._internalPageChanges, this._paginator.initialized)
|
|
111
|
+
: of(null);
|
|
112
|
+
const dataStream = this._data;
|
|
113
|
+
const filteredData = combineLatest([dataStream, this._filter]).pipe(map(([data]) => this._filterData(data)));
|
|
114
|
+
const orderedData = combineLatest([filteredData, sortChange]).pipe(map(([data]) => this._orderData(data)));
|
|
115
|
+
const paginatedData = combineLatest([orderedData, pageChange]).pipe(map(([data]) => this._pageData(data)));
|
|
116
|
+
this._renderChangesSubscription?.unsubscribe();
|
|
117
|
+
this._renderChangesSubscription = paginatedData.subscribe((data) => this._renderData.next(data));
|
|
118
|
+
}
|
|
119
|
+
_filterData(data) {
|
|
120
|
+
this.filteredData =
|
|
121
|
+
this.filter == null || this.filter === '' ? data : data.filter((obj) => this.filterPredicate(obj, this.filter));
|
|
122
|
+
if (this.paginator) {
|
|
123
|
+
this._updatePaginator(this.filteredData.length);
|
|
124
|
+
}
|
|
125
|
+
return this.filteredData;
|
|
126
|
+
}
|
|
127
|
+
_orderData(data) {
|
|
128
|
+
if (!this.sort) {
|
|
129
|
+
return data;
|
|
130
|
+
}
|
|
131
|
+
return this.sortData(data.slice(), this.sort);
|
|
132
|
+
}
|
|
133
|
+
_pageData(data) {
|
|
134
|
+
if (!this.paginator) {
|
|
135
|
+
return data;
|
|
136
|
+
}
|
|
137
|
+
const startIndex = this.paginator.pageIndex * this.paginator.pageSize;
|
|
138
|
+
return data.slice(startIndex, startIndex + this.paginator.pageSize);
|
|
139
|
+
}
|
|
140
|
+
_updatePaginator(filteredDataLength) {
|
|
141
|
+
Promise.resolve().then(() => {
|
|
142
|
+
const paginator = this.paginator;
|
|
143
|
+
if (!paginator) {
|
|
144
|
+
return;
|
|
145
|
+
}
|
|
146
|
+
paginator.length = filteredDataLength;
|
|
147
|
+
if (paginator.pageIndex > 0) {
|
|
148
|
+
const lastPageIndex = Math.ceil(paginator.length / paginator.pageSize) - 1 || 0;
|
|
149
|
+
const newPageIndex = Math.min(paginator.pageIndex, lastPageIndex);
|
|
150
|
+
if (newPageIndex !== paginator.pageIndex) {
|
|
151
|
+
paginator.pageIndex = newPageIndex;
|
|
152
|
+
this._internalPageChanges.next();
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
connect() {
|
|
158
|
+
if (!this._renderChangesSubscription) {
|
|
159
|
+
this._updateChangeSubscription();
|
|
160
|
+
}
|
|
161
|
+
return this._renderData;
|
|
162
|
+
}
|
|
163
|
+
disconnect() {
|
|
164
|
+
this._renderChangesSubscription?.unsubscribe();
|
|
165
|
+
this._renderChangesSubscription = null;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtZGF0YS1zb3VyY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvdXRpbHMvdGFibGUtZGF0YS1zb3VyY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsS0FBSyxFQUFjLEVBQUUsRUFBRSxPQUFPLEVBQWdCLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUN6RyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFdEQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBRXZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUVoRCxNQUFNLE9BQU8sZUFBa0YsU0FBUSxVQUFhO0lBU2xILElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUM7SUFDMUIsQ0FBQztJQUNELElBQUksSUFBSSxDQUFDLElBQVM7UUFDaEIsSUFBSSxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRXRCLElBQUksQ0FBQyxJQUFJLENBQUMsMEJBQTBCLEVBQUU7WUFDcEMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztTQUN4QjtJQUNILENBQUM7SUFFRCxJQUFJLE1BQU07UUFDUixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDO0lBQzVCLENBQUM7SUFDRCxJQUFJLE1BQU0sQ0FBQyxNQUFjO1FBQ3ZCLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxD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eyBCZWhhdmlvclN1YmplY3QsIGNvbWJpbmVMYXRlc3QsIG1lcmdlLCBPYnNlcnZhYmxlLCBvZiwgU3ViamVjdCwgU3Vic2NyaXB0aW9uLCBtYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IERhdGFTb3VyY2UgfSBmcm9tICdAYW5ndWxhci9jZGsvY29sbGVjdGlvbnMnO1xuaW1wb3J0IHsgU29ydERpcmVjdGl2ZSwgU29ydCB9IGZyb20gJy4uLy4uL3NvcnQnO1xuaW1wb3J0IHsgX2lzTnVtYmVyVmFsdWUgfSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuaW1wb3J0IHsgVGFibGVEYXRhU291cmNlUGFnZUV2ZW50LCBUYWJsZURhdGFTb3VyY2VQYWdpbmF0b3IgfSBmcm9tICcuLi90eXBlcyc7XG5pbXBvcnQgeyBNQVhfU0FGRV9JTlRFR0VSIH0gZnJvbSAnLi4vY29uc3RhbnRzJztcblxuZXhwb3J0IGNsYXNzIFRhYmxlRGF0YVNvdXJjZTxULCBQIGV4dGVuZHMgVGFibGVEYXRhU291cmNlUGFnaW5hdG9yID0gVGFibGVEYXRhU291cmNlUGFnaW5hdG9yPiBleHRlbmRzIERhdGFTb3VyY2U8VD4ge1xuICBwcml2YXRlIHJlYWRvbmx5IF9kYXRhOiBCZWhhdmlvclN1YmplY3Q8VFtdPjtcbiAgcHJpdmF0ZSByZWFkb25seSBfcmVuZGVyRGF0YSA9IG5ldyBCZWhhdmlvclN1YmplY3Q8VFtdPihbXSk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2ZpbHRlciA9IG5ldyBCZWhhdmlvclN1YmplY3Q8c3RyaW5nPignJyk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2ludGVybmFsUGFnZUNoYW5nZXMgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuXG4gIF9yZW5kZXJDaGFuZ2VzU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb24gfCBudWxsID0gbnVsbDtcbiAgZmlsdGVyZWREYXRhOiBUW10gPSBbXTtcblxuICBnZXQgZGF0YSgpIHtcbiAgICByZXR1cm4gdGhpcy5fZGF0YS52YWx1ZTtcbiAgfVxuICBzZXQgZGF0YShkYXRhOiBUW10pIHtcbiAgICBkYXRhID0gQXJyYXkuaXNBcnJheShkYXRhKSA/IGRhdGEgOiBbXTtcbiAgICB0aGlzLl9kYXRhLm5leHQoZGF0YSk7XG5cbiAgICBpZiAoIXRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24pIHtcbiAgICAgIHRoaXMuX2ZpbHRlckRhdGEoZGF0YSk7XG4gICAgfVxuICB9XG5cbiAgZ2V0IGZpbHRlcigpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLl9maWx0ZXIudmFsdWU7XG4gIH1cbiAgc2V0IGZpbHRlcihmaWx0ZXI6IHN0cmluZykge1xuICAgIHRoaXMuX2ZpbHRlci5uZXh0KGZpbHRlcik7XG5cbiAgICBpZiAoIXRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24pIHtcbiAgICAgIHRoaXMuX2ZpbHRlckRhdGEodGhpcy5kYXRhKTtcbiAgICB9XG4gIH1cblxuICBnZXQgc29ydCgpOiBTb3J0RGlyZWN0aXZlIHwgbnVsbCB7XG4gICAgcmV0dXJuIHRoaXMuX3NvcnQ7XG4gIH1cbiAgc2V0IHNvcnQoc29ydDogU29ydERpcmVjdGl2ZSB8IG51bGwpIHtcbiAgICB0aGlzLl9zb3J0ID0gc29ydDtcbiAgICB0aGlzLl91cGRhdGVDaGFuZ2VTdWJzY3JpcHRpb24oKTtcbiAgfVxuICBwcml2YXRlIF9zb3J0OiBTb3J0RGlyZWN0aXZlIHwgbnVsbCA9IG51bGw7XG5cbiAgZ2V0IHBhZ2luYXRvcigpOiBQIHwgbnVsbCB7XG4gICAgcmV0dXJuIHRoaXMuX3BhZ2luYXRvcjtcbiAgfVxuICBzZXQgcGFnaW5hdG9yKHBhZ2luYXRvcjogUCB8IG51bGwpIHtcbiAgICB0aGlzLl9wYWdpbmF0b3IgPSBwYWdpbmF0b3I7XG4gICAgdGhpcy5fdXBkYXRlQ2hhbmdlU3Vic2NyaXB0aW9uKCk7XG4gIH1cbiAgcHJpdmF0ZSBfcGFnaW5hdG9yOiBQIHwgbnVsbCA9IG51bGw7XG5cbiAgc29ydGluZ0RhdGFBY2Nlc3NvcjogKGRhdGE6IFQsIHNvcnRIZWFkZXJJZDogc3RyaW5nKSA9PiBzdHJpbmcgfCBudW1iZXIgPSAoXG4gICAgZGF0YTogVCxcbiAgICBzb3J0SGVhZGVySWQ6IHN0cmluZyxcbiAgKTogc3RyaW5nIHwgbnVtYmVyID0+IHtcbiAgICBjb25zdCB2YWx1ZSA9IChkYXRhIGFzIHVua25vd24gYXMgUmVjb3JkPHN0cmluZywgdW5rbm93bj4pW3NvcnRIZWFkZXJJZF07XG5cbiAgICBpZiAoX2lzTnVtYmVyVmFsdWUodmFsdWUpKSB7XG4gICAgICBjb25zdCBudW1iZXJWYWx1ZSA9IE51bWJlcih2YWx1ZSk7XG5cbiAgICAgIHJldHVybiBudW1iZXJWYWx1ZSA8IE1BWF9TQUZFX0lOVEVHRVIgPyBudW1iZXJWYWx1ZSA6ICh2YWx1ZSBhcyBudW1iZXIpO1xuICAgIH1cblxuICAgIHJldHVybiB2YWx1ZSBhcyBzdHJpbmc7XG4gIH07XG5cbiAgc29ydERhdGE6IChkYXRhOiBUW10sIHNvcnQ6IFNvcnREaXJlY3RpdmUpID0+IFRbXSA9IChkYXRhOiBUW10sIHNvcnQ6IFNvcnREaXJlY3RpdmUpOiBUW10gPT4ge1xuICAgIGNvbnN0IGFjdGl2ZSA9IHNvcnQuYWN0aXZlO1xuICAgIGNvbnN0IGRpcmVjdGlvbiA9IHNvcnQuZGlyZWN0aW9uO1xuICAgIGlmICghYWN0aXZlIHx8IGRpcmVjdGlvbiA9PSAnJykge1xuICAgICAgcmV0dXJuIGRhdGE7XG4gICAgfVxuXG4gICAgcmV0dXJuIGRhdGEuc29ydCgoYSwgYikgPT4ge1xuICAgICAgbGV0IHZhbHVlQSA9IHRoaXMuc29ydGluZ0RhdGFBY2Nlc3NvcihhLCBhY3RpdmUpO1xuICAgICAgbGV0IHZhbHVlQiA9IHRoaXMuc29ydGluZ0RhdGFBY2Nlc3NvcihiLCBhY3RpdmUpO1xuXG4gICAgICBjb25zdCB2YWx1ZUFUeXBlID0gdHlwZW9mIHZhbHVlQTtcbiAgICAgIGNvbnN0IHZhbHVlQlR5cGUgPSB0eXBlb2YgdmFsdWVCO1xuXG4gICAgICBpZiAodmFsdWVBVHlwZSAhPT0gdmFsdWVCVHlwZSkge1xuICAgICAgICBpZiAodmFsdWVBVHlwZSA9PT0gJ251bWJlcicpIHtcbiAgICAgICAgICB2YWx1ZUEgKz0gJyc7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHZhbHVlQlR5cGUgPT09ICdudW1iZXInKSB7XG4gICAgICAgICAgdmFsdWVCICs9ICcnO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIGxldCBjb21wYXJhdG9yUmVzdWx0ID0gMDtcbiAgICAgIGlmICh2YWx1ZUEgIT0gbnVsbCAmJiB2YWx1ZUIgIT0gbnVsbCkge1xuICAgICAgICBpZiAodmFsdWVBID4gdmFsdWVCKSB7XG4gICAgICAgICAgY29tcGFyYXRvclJlc3VsdCA9IDE7XG4gICAgICAgIH0gZWxzZSBpZiAodmFsdWVBIDwgdmFsdWVCKSB7XG4gICAgICAgICAgY29tcGFyYXRvclJlc3VsdCA9IC0xO1xuICAgICAgICB9XG4gICAgICB9IGVsc2UgaWYgKHZhbHVlQSAhPSBudWxsKSB7XG4gICAgICAgIGNvbXBhcmF0b3JSZXN1bHQgPSAxO1xuICAgICAgfSBlbHNlIGlmICh2YWx1ZUIgIT0gbnVsbCkge1xuICAgICAgICBjb21wYXJhdG9yUmVzdWx0ID0gLTE7XG4gICAgICB9XG5cbiAgICAgIHJldHVybiBjb21wYXJhdG9yUmVzdWx0ICogKGRpcmVjdGlvbiA9PSAnYXNjJyA/IDEgOiAtMSk7XG4gICAgfSk7XG4gIH07XG5cbiAgZmlsdGVyUHJlZGljYXRlOiAoZGF0YTogVCwgZmlsdGVyOiBzdHJpbmcpID0+IGJvb2xlYW4gPSAoZGF0YTogVCwgZmlsdGVyOiBzdHJpbmcpOiBib29sZWFuID0+IHtcbiAgICBjb25zdCBkYXRhU3RyID0gT2JqZWN0LmtleXMoZGF0YSBhcyB1bmtub3duIGFzIFJlY29yZDxzdHJpbmcsIHVua25vd24+KVxuICAgICAgLnJlZHVjZSgoY3VycmVudFRlcm06IHN0cmluZywga2V5OiBzdHJpbmcpID0+IHtcbiAgICAgICAgcmV0dXJuIGN1cnJlbnRUZXJtICsgKGRhdGEgYXMgdW5rbm93biBhcyBSZWNvcmQ8c3RyaW5nLCB1bmtub3duPilba2V5XSArICfil6wnO1xuICAgICAgfSwgJycpXG4gICAgICAudG9Mb3dlckNhc2UoKTtcblxuICAgIGNvbnN0IHRyYW5zZm9ybWVkRmlsdGVyID0gZmlsdGVyLnRyaW0oKS50b0xvd2VyQ2FzZSgpO1xuXG4gICAgcmV0dXJuIGRhdGFTdHIuaW5kZXhPZih0cmFuc2Zvcm1lZEZpbHRlcikgIT0gLTE7XG4gIH07XG5cbiAgY29uc3RydWN0b3IoaW5pdGlhbERhdGE6IFRbXSA9IFtdKSB7XG4gICAgc3VwZXIoKTtcbiAgICB0aGlzLl9kYXRhID0gbmV3IEJlaGF2aW9yU3ViamVjdDxUW10+KGluaXRpYWxEYXRhKTtcbiAgICB0aGlzLl91cGRhdGVDaGFuZ2VTdWJzY3JpcHRpb24oKTtcbiAgfVxuXG4gIF91cGRhdGVDaGFuZ2VTdWJzY3JpcHRpb24oKSB7XG4gICAgY29uc3Qgc29ydENoYW5nZTogT2JzZXJ2YWJsZTxTb3J0IHwgbnVsbCB8IHZvaWQ+ID0gdGhpcy5fc29ydFxuICAgICAgPyAobWVyZ2UodGhpcy5fc29ydC5zb3J0Q2hhbmdlLCB0aGlzLl9zb3J0LmluaXRpYWxpemVkKSBhcyBPYnNlcnZhYmxlPFNvcnQgfCB2b2lkPilcbiAgICAgIDogb2YobnVsbCk7XG4gICAgY29uc3QgcGFnZUNoYW5nZTogT2JzZXJ2YWJsZTxUYWJsZURhdGFTb3VyY2VQYWdlRXZlbnQgfCBudWxsIHwgdm9pZD4gPSB0aGlzLl9wYWdpbmF0b3JcbiAgICAgID8gKG1lcmdlKFxuICAgICAgICAgIHRoaXMuX3BhZ2luYXRvci5wYWdlLFxuICAgICAgICAgIHRoaXMuX2ludGVybmFsUGFnZUNoYW5nZXMsXG4gICAgICAgICAgdGhpcy5fcGFnaW5hdG9yLmluaXRpYWxpemVkLFxuICAgICAgICApIGFzIE9ic2VydmFibGU8VGFibGVEYXRhU291cmNlUGFnZUV2ZW50IHwgdm9pZD4pXG4gICAgICA6IG9mKG51bGwpO1xuICAgIGNvbnN0IGRhdGFTdHJlYW0gPSB0aGlzLl9kYXRhO1xuXG4gICAgY29uc3QgZmlsdGVyZWREYXRhID0gY29tYmluZUxhdGVzdChbZGF0YVN0cmVhbSwgdGhpcy5fZmlsdGVyXSkucGlwZShtYXAoKFtkYXRhXSkgPT4gdGhpcy5fZmlsdGVyRGF0YShkYXRhKSkpO1xuXG4gICAgY29uc3Qgb3JkZXJlZERhdGEgPSBjb21iaW5lTGF0ZXN0KFtmaWx0ZXJlZERhdGEsIHNvcnRDaGFuZ2VdKS5waXBlKG1hcCgoW2RhdGFdKSA9PiB0aGlzLl9vcmRlckRhdGEoZGF0YSkpKTtcblxuICAgIGNvbnN0IHBhZ2luYXRlZERhdGEgPSBjb21iaW5lTGF0ZXN0KFtvcmRlcmVkRGF0YSwgcGFnZUNoYW5nZV0pLnBpcGUobWFwKChbZGF0YV0pID0+IHRoaXMuX3BhZ2VEYXRhKGRhdGEpKSk7XG5cbiAgICB0aGlzLl9yZW5kZXJDaGFuZ2VzU3Vic2NyaXB0aW9uPy51bnN1YnNjcmliZSgpO1xuICAgIHRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24gPSBwYWdpbmF0ZWREYXRhLnN1YnNjcmliZSgoZGF0YSkgPT4gdGhpcy5fcmVuZGVyRGF0YS5uZXh0KGRhdGEpKTtcbiAgfVxuXG4gIF9maWx0ZXJEYXRhKGRhdGE6IFRbXSkge1xuICAgIHRoaXMuZmlsdGVyZWREYXRhID1cbiAgICAgIHRoaXMuZmlsdGVyID09IG51bGwgfHwgdGhpcy5maWx0ZXIgPT09ICcnID8gZGF0YSA6IGRhdGEuZmlsdGVyKChvYmopID0+IHRoaXMuZmlsdGVyUHJlZGljYXRlKG9iaiwgdGhpcy5maWx0ZXIpKTtcblxuICAgIGlmICh0aGlzLnBhZ2luYXRvcikge1xuICAgICAgdGhpcy5fdXBkYXRlUGFnaW5hdG9yKHRoaXMuZmlsdGVyZWREYXRhLmxlbmd0aCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuZmlsdGVyZWREYXRhO1xuICB9XG5cbiAgX29yZGVyRGF0YShkYXRhOiBUW10pOiBUW10ge1xuICAgIGlmICghdGhpcy5zb3J0KSB7XG4gICAgICByZXR1cm4gZGF0YTtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcy5zb3J0RGF0YShkYXRhLnNsaWNlKCksIHRoaXMuc29ydCk7XG4gIH1cblxuICBfcGFnZURhdGEoZGF0YTogVFtdKTogVFtdIHtcbiAgICBpZiAoIXRoaXMucGFnaW5hdG9yKSB7XG4gICAgICByZXR1cm4gZGF0YTtcbiAgICB9XG5cbiAgICBjb25zdCBzdGFydEluZGV4ID0gdGhpcy5wYWdpbmF0b3IucGFnZUluZGV4ICogdGhpcy5wYWdpbmF0b3IucGFnZVNpemU7XG4gICAgcmV0dXJuIGRhdGEuc2xpY2Uoc3RhcnRJbmRleCwgc3RhcnRJbmRleCArIHRoaXMucGFnaW5hdG9yLnBhZ2VTaXplKTtcbiAgfVxuXG4gIF91cGRhdGVQYWdpbmF0b3IoZmlsdGVyZWREYXRhTGVuZ3RoOiBudW1iZXIpIHtcbiAgICBQcm9taXNlLnJlc29sdmUoKS50aGVuKCgpID0+IHtcbiAgICAgIGNvbnN0IHBhZ2luYXRvciA9IHRoaXMucGFnaW5hdG9yO1xuXG4gICAgICBpZiAoIXBhZ2luYXRvcikge1xuICAgICAgICByZXR1cm47XG4gICAgICB9XG5cbiAgICAgIHBhZ2luYXRvci5sZW5ndGggPSBmaWx0ZXJlZERhdGFMZW5ndGg7XG5cbiAgICAgIGlmIChwYWdpbmF0b3IucGFnZUluZGV4ID4gMCkge1xuICAgICAgICBjb25zdCBsYXN0UGFnZUluZGV4ID0gTWF0aC5jZWlsKHBhZ2luYXRvci5sZW5ndGggLyBwYWdpbmF0b3IucGFnZVNpemUpIC0gMSB8fCAwO1xuICAgICAgICBjb25zdCBuZXdQYWdlSW5kZXggPSBNYXRoLm1pbihwYWdpbmF0b3IucGFnZUluZGV4LCBsYXN0UGFnZUluZGV4KTtcblxuICAgICAgICBpZiAobmV3UGFnZUluZGV4ICE9PSBwYWdpbmF0b3IucGFnZUluZGV4KSB7XG4gICAgICAgICAgcGFnaW5hdG9yLnBhZ2VJbmRleCA9IG5ld1BhZ2VJbmRleDtcblxuICAgICAgICAgIHRoaXMuX2ludGVybmFsUGFnZUNoYW5nZXMubmV4dCgpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICBjb25uZWN0KCkge1xuICAgIGlmICghdGhpcy5fcmVuZGVyQ2hhbmdlc1N1YnNjcmlwdGlvbikge1xuICAgICAgdGhpcy5fdXBkYXRlQ2hhbmdlU3Vic2NyaXB0aW9uKCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuX3JlbmRlckRhdGE7XG4gIH1cblxuICBkaXNjb25uZWN0KCkge1xuICAgIHRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24/LnVuc3Vic2NyaWJlKCk7XG4gICAgdGhpcy5fcmVuZGVyQ2hhbmdlc1N1YnNjcmlwdGlvbiA9IG51bGw7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFicy9hbmltYXRpb25zL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './tabs.animations';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJzL2FuaW1hdGlvbnMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi90YWJzLmFuaW1hdGlvbnMnO1xuIl19
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
2
|
+
export const tabAnimations = {
|
|
3
|
+
translateTab: trigger('translateTab', [
|
|
4
|
+
state('center, void, left-origin-center, right-origin-center', style({ transform: 'none' })),
|
|
5
|
+
state('left', style({
|
|
6
|
+
transform: 'translate3d(-100%, 0, 0)',
|
|
7
|
+
minHeight: '1px',
|
|
8
|
+
visibility: 'hidden',
|
|
9
|
+
})),
|
|
10
|
+
state('right', style({
|
|
11
|
+
transform: 'translate3d(100%, 0, 0)',
|
|
12
|
+
minHeight: '1px',
|
|
13
|
+
visibility: 'hidden',
|
|
14
|
+
})),
|
|
15
|
+
transition('* => left, * => right, left => center, right => center', animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)')),
|
|
16
|
+
transition('void => left-origin-center', [
|
|
17
|
+
style({ transform: 'translate3d(-100%, 0, 0)', visibility: 'hidden' }),
|
|
18
|
+
animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)'),
|
|
19
|
+
]),
|
|
20
|
+
transition('void => right-origin-center', [
|
|
21
|
+
style({ transform: 'translate3d(100%, 0, 0)', visibility: 'hidden' }),
|
|
22
|
+
animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)'),
|
|
23
|
+
]),
|
|
24
|
+
]),
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFicy5hbmltYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYnMvYW5pbWF0aW9ucy90YWJzLmFuaW1hdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE9BQU8sRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxPQUFPLEVBQTRCLE1BQU0scUJBQXFCLENBQUM7QUFFM0csTUFBTSxDQUFDLE1BQU0sYUFBYSxHQUV0QjtJQUNGLFlBQVksRUFBRSxPQUFPLENBQUMsY0FBYyxFQUFFO1FBQ3BDLEtBQUssQ0FBQyx1REFBdUQsRUFBRSxLQUFLLENBQUMsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLENBQUMsQ0FBQztRQUU1RixLQUFLLENBQ0gsTUFBTSxFQUNOLEtBQUssQ0FBQztZQUNKLFNBQVMsRUFBRSwwQkFBMEI7WUFDckMsU0FBUyxFQUFFLEtBQUs7WUFDaEIsVUFBVSxFQUFFLFFBQVE7U0FDckIsQ0FBQyxDQUNIO1FBQ0QsS0FBSyxDQUNILE9BQU8sRUFDUCxLQUFLLENBQUM7WUFDSixTQUFTLEVBQUUseUJBQXlCO1lBQ3BDLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLFVBQVUsRUFBRSxRQUFRO1NBQ3JCLENBQUMsQ0FDSDtRQUVELFVBQVUsQ0FDUix3REFBd0QsRUFDeEQsT0FBTyxDQUFDLHNEQUFzRCxDQUFDLENBQ2hFO1FBQ0QsVUFBVSxDQUFDLDRCQUE0QixFQUFFO1lBQ3ZDLEtBQUssQ0FBQyxFQUFFLFNBQVMsRUFBRSwwQkFBMEIsRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLENBQUM7WUFDdEUsT0FBTyxDQUFDLHNEQUFzRCxDQUFDO1NBQ2hFLENBQUM7UUFDRixVQUFVLENBQUMsNkJBQTZCLEVBQUU7WUFDeEMsS0FBSyxDQUFDLEVBQUUsU0FBUyxFQUFFLHlCQUF5QixFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsQ0FBQztZQUNyRSxPQUFPLENBQUMsc0RBQXNELENBQUM7U0FDaEUsQ0FBQztLQUNILENBQUM7Q0FDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyLCBBbmltYXRpb25UcmlnZ2VyTWV0YWRhdGEgfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcblxuZXhwb3J0IGNvbnN0IHRhYkFuaW1hdGlvbnM6IHtcbiAgcmVhZG9ubHkgdHJhbnNsYXRlVGFiOiBBbmltYXRpb25UcmlnZ2VyTWV0YWRhdGE7XG59ID0ge1xuICB0cmFuc2xhdGVUYWI6IHRyaWdnZXIoJ3RyYW5zbGF0ZVRhYicsIFtcbiAgICBzdGF0ZSgnY2VudGVyLCB2b2lkLCBsZWZ0LW9yaWdpbi1jZW50ZXIsIHJpZ2h0LW9yaWdpbi1jZW50ZXInLCBzdHlsZSh7IHRyYW5zZm9ybTogJ25vbmUnIH0pKSxcblxuICAgIHN0YXRlKFxuICAgICAgJ2xlZnQnLFxuICAgICAgc3R5bGUoe1xuICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgtMTAwJSwgMCwgMCknLFxuICAgICAgICBtaW5IZWlnaHQ6ICcxcHgnLFxuICAgICAgICB2aXNpYmlsaXR5OiAnaGlkZGVuJyxcbiAgICAgIH0pLFxuICAgICksXG4gICAgc3RhdGUoXG4gICAgICAncmlnaHQnLFxuICAgICAgc3R5bGUoe1xuICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgxMDAlLCAwLCAwKScsXG4gICAgICAgIG1pbkhlaWdodDogJzFweCcsXG4gICAgICAgIHZpc2liaWxpdHk6ICdoaWRkZW4nLFxuICAgICAgfSksXG4gICAgKSxcblxuICAgIHRyYW5zaXRpb24oXG4gICAgICAnKiA9PiBsZWZ0LCAqID0+IHJpZ2h0LCBsZWZ0ID0+IGNlbnRlciwgcmlnaHQgPT4gY2VudGVyJyxcbiAgICAgIGFuaW1hdGUoJ3t7YW5pbWF0aW9uRHVyYXRpb259fSBjdWJpYy1iZXppZXIoMC4zNSwgMCwgMC4yNSwgMSknKSxcbiAgICApLFxuICAgIHRyYW5zaXRpb24oJ3ZvaWQgPT4gbGVmdC1vcmlnaW4tY2VudGVyJywgW1xuICAgICAgc3R5bGUoeyB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgtMTAwJSwgMCwgMCknLCB2aXNpYmlsaXR5OiAnaGlkZGVuJyB9KSxcbiAgICAgIGFuaW1hdGUoJ3t7YW5pbWF0aW9uRHVyYXRpb259fSBjdWJpYy1iZXppZXIoMC4zNSwgMCwgMC4yNSwgMSknKSxcbiAgICBdKSxcbiAgICB0cmFuc2l0aW9uKCd2b2lkID0+IHJpZ2h0LW9yaWdpbi1jZW50ZXInLCBbXG4gICAgICBzdHlsZSh7IHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDEwMCUsIDAsIDApJywgdmlzaWJpbGl0eTogJ2hpZGRlbicgfSksXG4gICAgICBhbmltYXRlKCd7e2FuaW1hdGlvbkR1cmF0aW9ufX0gY3ViaWMtYmV6aWVyKDAuMzUsIDAsIDAuMjUsIDEpJyksXG4gICAgXSksXG4gIF0pLFxufTtcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFicy9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|