@ethlete/cdk 3.6.0 → 3.8.0
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 +18 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/combobox.imports.mjs +5 -2
- package/esm2022/lib/components/forms/components/select/components/combobox/components/combobox/combobox.component.mjs +6 -3
- package/esm2022/lib/components/forms/components/select/components/combobox/constants/combobox.constants.mjs +6 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/constants/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/constants/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.mjs +65 -6
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/combobox-body-empty-template.directive.mjs +30 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/combobox-body-error-template.directive.mjs +30 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/combobox-body-loading-template.directive.mjs +30 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/public-api.mjs +4 -1
- package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.mjs +5 -4
- package/esm2022/lib/components/forms/components/select/components/combobox/private/combobox.private.types.mjs +1 -1
- package/esm2022/lib/components/forms/components/select/components/combobox/public-api.mjs +3 -1
- package/esm2022/lib/components/forms/components/select/components/combobox/types/combobox.types.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/types/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/types/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/utils/combobox-config.utils.mjs +13 -0
- package/esm2022/lib/components/forms/components/select/components/combobox/utils/public-api.mjs +2 -1
- package/esm2022/lib/components/forms/directives/expose-input-vars/expose-input-vars.directive.mjs +83 -0
- package/esm2022/lib/components/forms/directives/expose-input-vars/index.mjs +2 -0
- package/esm2022/lib/components/forms/directives/expose-input-vars/public-api.mjs +2 -0
- package/esm2022/lib/components/forms/directives/input/input.directive.mjs +10 -2
- package/esm2022/lib/components/forms/directives/public-api.mjs +2 -1
- package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +1 -1
- package/esm2022/lib/components/forms/services/input-state.service.mjs +1 -1
- package/esm2022/lib/components/forms/types/input.types.mjs +1 -1
- package/fesm2022/ethlete-cdk.mjs +260 -11
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/lib/components/forms/components/select/components/combobox/combobox.imports.d.ts +2 -2
- package/lib/components/forms/components/select/components/combobox/components/combobox/combobox.component.d.ts +1 -1
- package/lib/components/forms/components/select/components/combobox/constants/combobox.constants.d.ts +6 -0
- package/lib/components/forms/components/select/components/combobox/constants/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/constants/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.d.ts +25 -3
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/combobox-body-empty-template.directive.d.ts +8 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/combobox-body-error-template.directive.d.ts +8 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/combobox-body-loading-template.directive.d.ts +8 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/directives/public-api.d.ts +3 -0
- package/lib/components/forms/components/select/components/combobox/private/combobox.private.types.d.ts +6 -0
- package/lib/components/forms/components/select/components/combobox/public-api.d.ts +2 -0
- package/lib/components/forms/components/select/components/combobox/types/combobox.types.d.ts +30 -0
- package/lib/components/forms/components/select/components/combobox/types/index.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/types/public-api.d.ts +1 -0
- package/lib/components/forms/components/select/components/combobox/utils/combobox-config.utils.d.ts +6 -0
- package/lib/components/forms/components/select/components/combobox/utils/public-api.d.ts +1 -0
- package/lib/components/forms/directives/expose-input-vars/expose-input-vars.directive.d.ts +30 -0
- package/lib/components/forms/directives/expose-input-vars/index.d.ts +1 -0
- package/lib/components/forms/directives/expose-input-vars/public-api.d.ts +1 -0
- package/lib/components/forms/directives/input/input.directive.d.ts +5 -4
- package/lib/components/forms/directives/public-api.d.ts +1 -0
- package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +2 -1
- package/lib/components/forms/services/input-state.service.d.ts +1 -5
- package/lib/components/forms/types/input.types.d.ts +3 -0
- package/package.json +1 -1
package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs
CHANGED
|
@@ -66,4 +66,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
66
66
|
],
|
|
67
67
|
}]
|
|
68
68
|
}] });
|
|
69
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
69
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVhYmxlLWlucHV0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9kaXJlY3RpdmVzL3dyaXRlYWJsZS1pbnB1dC93cml0ZWFibGUtaW5wdXQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUUsT0FBTyxFQUF3QixpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFHbkQsTUFBTSxDQUFDLE1BQU0scUJBQXFCLEdBQUcsSUFBSSxjQUFjLENBQTBCLG9DQUFvQyxDQUFDLENBQUM7QUFFdkgsTUFBTSxDQUFDLE1BQU0sOEJBQThCLEdBQUc7SUFDNUMsT0FBTyxFQUFFLGlCQUFpQjtJQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHVCQUF1QixDQUFDO0lBQ3RELEtBQUssRUFBRSxJQUFJO0NBQ1osQ0FBQztBQVlGLE1BQU0sT0FBTyx1QkFBdUI7SUFWcEM7UUFXVyx1QkFBa0IsR0FBRyxNQUFNLENBQUMsaUJBQWlCLENBQUMsQ0FBQztRQUUvQyxjQUFTLEdBQUcsc0JBQXNCLENBQ3pDO1lBQ0UsU0FBUyxFQUFFLG1CQUFtQjtZQUM5QixVQUFVLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFNBQVM7U0FDOUMsRUFDRDtZQUNFLFNBQVMsRUFBRSxtQkFBbUI7WUFDOUIsVUFBVSxFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxTQUFTO1NBQzlDLEVBQ0Q7WUFDRSxTQUFTLEVBQUUsMEJBQTBCO1lBQ3JDLFVBQVUsRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsY0FBYztTQUNuRCxFQUNEO1lBQ0UsU0FBUyxFQUFFLHlCQUF5QjtZQUNwQyxVQUFVLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGFBQWE7U0FDbEQsRUFDRDtZQUNFLFNBQVMsRUFBRSxnQkFBZ0I7WUFDM0IsVUFBVSxFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxhQUFhO1NBQ2xELEVBQ0Q7WUFDRSxTQUFTLEVBQUUsK0JBQStCO1lBQzFDLFVBQVUsRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsbUJBQW1CO1NBQ3hELEVBQ0Q7WUFDRSxTQUFTLEVBQUUscUJBQXFCO1lBQ2hDLFVBQVUsRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsV0FBVztTQUNoRCxDQUNGLENBQUM7S0FpQkg7SUFmQyxVQUFVLENBQUMsS0FBYztRQUN2QixJQUFJLENBQUMsa0JBQWtCLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM3QyxDQUFDO0lBRUQsZ0JBQWdCLENBQUMsRUFBc0I7UUFDckMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksR0FBRyxFQUFFLENBQUM7SUFDNUMsQ0FBQztJQUVELGlCQUFpQixDQUFDLEVBQWtCO1FBQ2xDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBQ3hDLENBQUM7SUFFRCxnQkFBZ0IsQ0FBRSxVQUFtQjtRQUNuQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztJQUNyRCxDQUFDOzhHQWhEVSx1QkFBdUI7a0dBQXZCLHVCQUF1QixpQ0FQdkI7WUFDVCw4QkFBOEI7WUFFOUIsaUJBQWlCO1lBQ2pCLEVBQUUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLFdBQVcsRUFBRSx1QkFBdUIsRUFBRTtTQUN6RTs7MkZBRVUsdUJBQXVCO2tCQVZuQyxTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsa0JBQWtCO29CQUM1QixTQUFTLEVBQUU7d0JBQ1QsOEJBQThCO3dCQUU5QixpQkFBaUI7d0JBQ2pCLEVBQUUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLFdBQVcseUJBQXlCLEVBQUU7cUJBQ3pFO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBmb3J3YXJkUmVmLCBpbmplY3QsIEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb250cm9sVmFsdWVBY2Nlc3NvciwgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBJbnB1dFN0YXRlU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzJztcbmltcG9ydCB7IElucHV0VG91Y2hlZEZuLCBJbnB1dFZhbHVlQ2hhbmdlRm4gfSBmcm9tICcuLi8uLi90eXBlcyc7XG5cbmV4cG9ydCBjb25zdCBXUklURUFCTEVfSU5QVVRfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48V3JpdGVhYmxlSW5wdXREaXJlY3RpdmU+KCdFVF9XUklURUFCTEVfSU5QVVRfRElSRUNUSVZFX1RPS0VOJyk7XG5cbmV4cG9ydCBjb25zdCBXUklURUFCTEVfSU5QVVRfVkFMVUVfQUNDRVNTT1IgPSB7XG4gIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBXcml0ZWFibGVJbnB1dERpcmVjdGl2ZSksXG4gIG11bHRpOiB0cnVlLFxufTtcblxuQERpcmVjdGl2ZSh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGV4cG9ydEFzOiAnZXRXcml0ZWFibGVJbnB1dCcsXG4gIHByb3ZpZGVyczogW1xuICAgIFdSSVRFQUJMRV9JTlBVVF9WQUxVRV9BQ0NFU1NPUixcblxuICAgIElucHV0U3RhdGVTZXJ2aWNlLFxuICAgIHsgcHJvdmlkZTogV1JJVEVBQkxFX0lOUFVUX1RPS0VOLCB1c2VFeGlzdGluZzogV3JpdGVhYmxlSW5wdXREaXJlY3RpdmUgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgV3JpdGVhYmxlSW5wdXREaXJlY3RpdmUgaW1wbGVtZW50cyBDb250cm9sVmFsdWVBY2Nlc3NvciB7XG4gIHJlYWRvbmx5IF9pbnB1dFN0YXRlU2VydmljZSA9IGluamVjdChJbnB1dFN0YXRlU2VydmljZSk7XG5cbiAgcmVhZG9ubHkgX2JpbmRpbmdzID0gY3JlYXRlUmVhY3RpdmVCaW5kaW5ncyhcbiAgICB7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1yZXF1aXJlZCcsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLl9pbnB1dFN0YXRlU2VydmljZS5yZXF1aXJlZCQsXG4gICAgfSxcbiAgICB7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1kaXNhYmxlZCcsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLl9pbnB1dFN0YXRlU2VydmljZS5kaXNhYmxlZCQsXG4gICAgfSxcbiAgICB7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC12YWx1ZS1pcy10cnV0aHknLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5faW5wdXRTdGF0ZVNlcnZpY2UudmFsdWVJc1RydXRoeSQsXG4gICAgfSxcbiAgICB7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC12YWx1ZS1pcy1mYWxzeScsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLl9pbnB1dFN0YXRlU2VydmljZS52YWx1ZUlzRmFsc3kkLFxuICAgIH0sXG4gICAge1xuICAgICAgYXR0cmlidXRlOiAnY2xhc3MuZXQtZW1wdHknLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5faW5wdXRTdGF0ZVNlcnZpY2UudmFsdWVJc0VtcHR5JCxcbiAgICB9LFxuICAgIHtcbiAgICAgIGF0dHJpYnV0ZTogJ2NsYXNzLmV0LXNob3VsZC1kaXNwbGF5LWVycm9yJyxcbiAgICAgIG9ic2VydmFibGU6IHRoaXMuX2lucHV0U3RhdGVTZXJ2aWNlLnNob3VsZERpc3BsYXlFcnJvciQsXG4gICAgfSxcbiAgICB7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1hdXRvZmlsbGVkJyxcbiAgICAgIG9ic2VydmFibGU6IHRoaXMuX2lucHV0U3RhdGVTZXJ2aWNlLmF1dG9maWxsZWQkLFxuICAgIH0sXG4gICk7XG5cbiAgd3JpdGVWYWx1ZSh2YWx1ZTogdW5rbm93bikge1xuICAgIHRoaXMuX2lucHV0U3RhdGVTZXJ2aWNlLnZhbHVlJC5uZXh0KHZhbHVlKTtcbiAgfVxuXG4gIHJlZ2lzdGVyT25DaGFuZ2UoZm46IElucHV0VmFsdWVDaGFuZ2VGbikge1xuICAgIHRoaXMuX2lucHV0U3RhdGVTZXJ2aWNlLl92YWx1ZUNoYW5nZSA9IGZuO1xuICB9XG5cbiAgcmVnaXN0ZXJPblRvdWNoZWQoZm46IElucHV0VG91Y2hlZEZuKSB7XG4gICAgdGhpcy5faW5wdXRTdGF0ZVNlcnZpY2UuX3RvdWNoZWQgPSBmbjtcbiAgfVxuXG4gIHNldERpc2FibGVkU3RhdGU/KGlzRGlzYWJsZWQ6IGJvb2xlYW4pIHtcbiAgICB0aGlzLl9pbnB1dFN0YXRlU2VydmljZS5kaXNhYmxlZCQubmV4dChpc0Rpc2FibGVkKTtcbiAgfVxufVxuIl19
|
|
@@ -50,4 +50,4 @@ export class InputStateService {
|
|
|
50
50
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: InputStateService, decorators: [{
|
|
51
51
|
type: Injectable
|
|
52
52
|
}] });
|
|
53
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtc3RhdGUuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9zZXJ2aWNlcy9pbnB1dC1zdGF0ZS5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3RELE9BQU8sRUFBRSxlQUFlLEVBQUUsYUFBYSxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDOztBQUs1RSxNQUFNLE9BQU8saUJBQWlCO0lBRDlCO1FBS1csb0JBQWUsR0FBRyxJQUFJLGVBQWUsQ0FBOEIsSUFBSSxDQUFDLENBQUM7UUFDekUsbUJBQWMsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLGVBQWUsRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBRXZFLHNCQUFpQixHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxLQUFLLFVBQVUsQ0FBQyxDQUFDLENBQUM7UUFDckYsc0JBQWlCLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLEtBQUssVUFBVSxDQUFDLENBQUMsQ0FBQztRQUVyRixXQUFNLEdBQUcsSUFBSSxlQUFlLENBQVcsSUFBSSxDQUFDLENBQUM7UUFDN0MsVUFBSyxHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7UUFFckQsY0FBUyxHQUFHLElBQUksZUFBZSxDQUFVLEtBQUssQ0FBQyxDQUFDO1FBQ2hELGFBQVEsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBRTNELGNBQVMsR0FBRyxJQUFJLGVBQWUsQ0FBVSxLQUFLLENBQUMsQ0FBQztRQUNoRCxhQUFRLEdBQUcsUUFBUSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUUzRCxpQkFBWSxHQUFHLElBQUksT0FBTyxFQUFLLENBQUM7UUFDaEMsb0JBQWUsR0FBRyxJQUFJLE9BQU8sRUFBVyxDQUFDO1FBQ3pDLG9CQUFlLEdBQUcsSUFBSSxPQUFPLEVBQVcsQ0FBQztRQUV6Qyx5QkFBb0IsR0FBRyxJQUFJLGVBQWUsQ0FBVSxLQUFLLENBQUMsQ0FBQztRQUMzRCx3QkFBbUIsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLG9CQUFvQixFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7UUFFakYsb0JBQWUsR0FBRyxJQUFJLGVBQWUsQ0FBb0MsSUFBSSxDQUFDLENBQUM7UUFDL0UsbUJBQWMsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLGVBQWUsRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBRXZFLGdCQUFXLEdBQUcsSUFBSSxlQUFlLENBQVUsS0FBSyxDQUFDLENBQUM7UUFDbEQsZUFBVSxHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7UUFFL0QsbUJBQWMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO1FBQzNELGtCQUFhLEdBQUcsUUFBUSxDQUFDLElBQUksQ0FBQyxjQUFjLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUVyRSxrQkFBYSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO1FBQ3pELGlCQUFZLEdBQUcsUUFBUSxDQUFDLElBQUksQ0FBQyxhQUFhLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUVuRSxrQkFBYSxHQUFHLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUMxRSxHQUFHLENBQ0QsQ0FBQyxDQUFDLEtBQUssRUFBRSxVQUFVLENBQUMsRUFBRSxFQUFFLENBQ3RCLENBQUMsS0FBSyxLQUFLLElBQUksSUFBSSxLQUFLLEtBQUssU0FBUyxJQUFJLEtBQUssS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBQ2xHLENBQUMsVUFBVSxDQUNkLENBQ0YsQ0FBQztRQUNPLGlCQUFZLEdBQUcsUUFBUSxDQUFDLElBQUksQ0FBQyxhQUFhLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUVuRSxZQUFPLEdBQUcsSUFBSSxlQUFlLENBQXlCLElBQUksQ0FBQyxDQUFDO1FBQzVELFdBQU0sR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBRXZELHdCQUFtQixHQUFHLElBQUksZUFBZSxDQUFVLEtBQUssQ0FBQyxDQUFDO1FBQzFELHVCQUFrQixHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUUvRSxrQkFBYSxHQUFHLElBQUksZUFBZSxDQUFxQixJQUFJLENBQUMsQ0FBQztRQUM5RCxpQkFBWSxHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7UUFFNUUsNkRBQTZEO1FBQzdELGlCQUFZLEdBQTBCLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDOUMsT0FBTztRQUNULENBQUMsQ0FBQztRQUNGLGFBQVEsR0FBbUIsR0FBRyxFQUFFO1lBQzlCLE9BQU87UUFDVCxDQUFDLENBQUM7S0FDSDs4R0EvRFksaUJBQWlCO2tIQUFqQixpQkFBaUI7OzJGQUFqQixpQkFBaUI7a0JBRDdCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGb2N1c09yaWdpbiB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9hMTF5JztcbmltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IHRvU2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZS9yeGpzLWludGVyb3AnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCBmaWx0ZXIsIG1hcCwgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgTmF0aXZlSW5wdXRSZWZEaXJlY3RpdmUgfSBmcm9tICcuLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IElucHV0VG91Y2hlZEZuLCBJbnB1dFZhbHVlQ2hhbmdlRm4sIElucHV0VmFsdWVVcGRhdGVUeXBlLCBWYWxpZGF0b3JFcnJvcnMgfSBmcm9tICcuLi90eXBlcyc7XG5cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBJbnB1dFN0YXRlU2VydmljZTxcbiAgVCA9IHVua25vd24sXG4gIEogZXh0ZW5kcyBIVE1MSW5wdXRFbGVtZW50IHwgSFRNTFNlbGVjdEVsZW1lbnQgfCBIVE1MVGV4dEFyZWFFbGVtZW50IHwgSFRNTEJ1dHRvbkVsZW1lbnQgPSBIVE1MSW5wdXRFbGVtZW50LFxuPiB7XG4gIHJlYWRvbmx5IGxhc3RVcGRhdGVUeXBlJCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8SW5wdXRWYWx1ZVVwZGF0ZVR5cGUgfCBudWxsPihudWxsKTtcbiAgcmVhZG9ubHkgbGFzdFVwZGF0ZVR5cGUgPSB0b1NpZ25hbCh0aGlzLmxhc3RVcGRhdGVUeXBlJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSBvbkludGVybmFsVXBkYXRlJCA9IHRoaXMubGFzdFVwZGF0ZVR5cGUkLnBpcGUoZmlsdGVyKCh0eXBlKSA9PiB0eXBlID09PSAnaW50ZXJuYWwnKSk7XG4gIHJlYWRvbmx5IG9uRXh0ZXJuYWxVcGRhdGUkID0gdGhpcy5sYXN0VXBkYXRlVHlwZSQucGlwZShmaWx0ZXIoKHR5cGUpID0+IHR5cGUgPT09ICdleHRlcm5hbCcpKTtcblxuICByZWFkb25seSB2YWx1ZSQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PFQgfCBudWxsPihudWxsKTtcbiAgcmVhZG9ubHkgdmFsdWUgPSB0b1NpZ25hbCh0aGlzLnZhbHVlJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSBkaXNhYmxlZCQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+KGZhbHNlKTtcbiAgcmVhZG9ubHkgZGlzYWJsZWQgPSB0b1NpZ25hbCh0aGlzLmRpc2FibGVkJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSByZXF1aXJlZCQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+KGZhbHNlKTtcbiAgcmVhZG9ubHkgcmVxdWlyZWQgPSB0b1NpZ25hbCh0aGlzLnJlcXVpcmVkJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSB2YWx1ZUNoYW5nZSQgPSBuZXcgU3ViamVjdDxUPigpO1xuICByZWFkb25seSBkaXNhYmxlZENoYW5nZSQgPSBuZXcgU3ViamVjdDxib29sZWFuPigpO1xuICByZWFkb25seSByZXF1aXJlZENoYW5nZSQgPSBuZXcgU3ViamVjdDxib29sZWFuPigpO1xuXG4gIHJlYWRvbmx5IHVzZXNJbXBsaWNpdENvbnRyb2wkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPihmYWxzZSk7XG4gIHJlYWRvbmx5IHVzZXNJbXBsaWNpdENvbnRyb2wgPSB0b1NpZ25hbCh0aGlzLnVzZXNJbXBsaWNpdENvbnRyb2wkLCB7IHJlcXVpcmVTeW5jOiB0cnVlIH0pO1xuXG4gIHJlYWRvbmx5IG5hdGl2ZUlucHV0UmVmJCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8TmF0aXZlSW5wdXRSZWZEaXJlY3RpdmU8Sj4gfCBudWxsPihudWxsKTtcbiAgcmVhZG9ubHkgbmF0aXZlSW5wdXRSZWYgPSB0b1NpZ25hbCh0aGlzLm5hdGl2ZUlucHV0UmVmJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSBhdXRvZmlsbGVkJCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8Ym9vbGVhbj4oZmFsc2UpO1xuICByZWFkb25seSBhdXRvZmlsbGVkID0gdG9TaWduYWwodGhpcy5hdXRvZmlsbGVkJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSB2YWx1ZUlzVHJ1dGh5JCA9IHRoaXMudmFsdWUkLnBpcGUobWFwKCh2YWx1ZSkgPT4gISF2YWx1ZSkpO1xuICByZWFkb25seSB2YWx1ZUlzVHJ1dGh5ID0gdG9TaWduYWwodGhpcy52YWx1ZUlzVHJ1dGh5JCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSB2YWx1ZUlzRmFsc3kkID0gdGhpcy52YWx1ZSQucGlwZShtYXAoKHZhbHVlKSA9PiAhdmFsdWUpKTtcbiAgcmVhZG9ubHkgdmFsdWVJc0ZhbHN5ID0gdG9TaWduYWwodGhpcy52YWx1ZUlzRmFsc3kkLCB7IHJlcXVpcmVTeW5jOiB0cnVlIH0pO1xuXG4gIHJlYWRvbmx5IHZhbHVlSXNFbXB0eSQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLnZhbHVlJCwgdGhpcy5hdXRvZmlsbGVkJF0pLnBpcGUoXG4gICAgbWFwKFxuICAgICAgKFt2YWx1ZSwgYXV0b2ZpbGxlZF0pID0+XG4gICAgICAgICh2YWx1ZSA9PT0gbnVsbCB8fCB2YWx1ZSA9PT0gdW5kZWZpbmVkIHx8IHZhbHVlID09PSAnJyB8fCAoQXJyYXkuaXNBcnJheSh2YWx1ZSkgJiYgIXZhbHVlLmxlbmd0aCkpICYmXG4gICAgICAgICFhdXRvZmlsbGVkLFxuICAgICksXG4gICk7XG4gIHJlYWRvbmx5IHZhbHVlSXNFbXB0eSA9IHRvU2lnbmFsKHRoaXMudmFsdWVJc0VtcHR5JCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICByZWFkb25seSBlcnJvcnMkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxWYWxpZGF0b3JFcnJvcnMgfCBudWxsPihudWxsKTtcbiAgcmVhZG9ubHkgZXJyb3JzID0gdG9TaWduYWwodGhpcy5lcnJvcnMkLCB7IHJlcXVpcmVTeW5jOiB0cnVlIH0pO1xuXG4gIHJlYWRvbmx5IHNob3VsZERpc3BsYXlFcnJvciQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+KGZhbHNlKTtcbiAgcmVhZG9ubHkgc2hvdWxkRGlzcGxheUVycm9yID0gdG9TaWduYWwodGhpcy5zaG91bGREaXNwbGF5RXJyb3IkLCB7IHJlcXVpcmVTeW5jOiB0cnVlIH0pO1xuXG4gIHJlYWRvbmx5IGlzRm9jdXNlZFZpYSQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PEZvY3VzT3JpZ2luIHwgbnVsbD4obnVsbCk7XG4gIHJlYWRvbmx5IGlzRm9jdXNlZFZpYSA9IHRvU2lnbmFsKHRoaXMuaXNGb2N1c2VkVmlhJCwgeyByZXF1aXJlU3luYzogdHJ1ZSB9KTtcblxuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHR5cGVzY3JpcHQtZXNsaW50L25vLXVudXNlZC12YXJzXG4gIF92YWx1ZUNoYW5nZTogSW5wdXRWYWx1ZUNoYW5nZUZuPFQ+ID0gKHZhbHVlKSA9PiB7XG4gICAgLy8gc3R1YlxuICB9O1xuICBfdG91Y2hlZDogSW5wdXRUb3VjaGVkRm4gPSAoKSA9PiB7XG4gICAgLy8gc3R1YlxuICB9O1xufVxuIl19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQudHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvdHlwZXMvaW5wdXQudHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgVmFsaWRhdG9yRXJyb3JzIHtcbiAgbWluPzogeyBtaW46IG51bWJlcjsgYWN0dWFsOiBudW1iZXIgfTtcbiAgbWF4PzogeyBtYXg6IG51bWJlcjsgYWN0dWFsOiBudW1iZXIgfTtcbiAgcmVxdWlyZWQ/OiB0cnVlO1xuICBhdExlYXN0T25lUmVxdWlyZWQ/
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQudHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvdHlwZXMvaW5wdXQudHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgVmFsaWRhdG9yRXJyb3JzIHtcbiAgbWluPzogeyBtaW46IG51bWJlcjsgYWN0dWFsOiBudW1iZXIgfTtcbiAgbWF4PzogeyBtYXg6IG51bWJlcjsgYWN0dWFsOiBudW1iZXIgfTtcbiAgcmVxdWlyZWQ/OiB0cnVlO1xuICBhdExlYXN0T25lUmVxdWlyZWQ/OiB0cnVlO1xuICBlbWFpbD86IHRydWU7XG4gIG1pbmxlbmd0aD86IHsgcmVxdWlyZWRMZW5ndGg6IG51bWJlcjsgYWN0dWFsTGVuZ3RoOiBudW1iZXIgfTtcbiAgbWF4bGVuZ3RoPzogeyByZXF1aXJlZExlbmd0aDogbnVtYmVyOyBhY3R1YWxMZW5ndGg6IG51bWJlciB9O1xuICBwYXR0ZXJuPzogeyByZXF1aXJlZFBhdHRlcm46IHN0cmluZzsgYWN0dWFsVmFsdWU6IHN0cmluZyB9O1xuICBba2V5OiBzdHJpbmddOiB1bmtub3duO1xufVxuXG5leHBvcnQgdHlwZSBJbnB1dFZhbHVlQ2hhbmdlRm48VCA9IHVua25vd24+ID0gKHZhbHVlOiBUKSA9PiB2b2lkO1xuZXhwb3J0IHR5cGUgSW5wdXRUb3VjaGVkRm4gPSAoKSA9PiB2b2lkO1xuXG5leHBvcnQgdHlwZSBJbnB1dFZhbHVlVXBkYXRlVHlwZSA9ICdpbnRlcm5hbCcgfCAnZXh0ZXJuYWwnO1xuIl19
|
package/fesm2022/ethlete-cdk.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import * as i1 from '@angular/cdk/portal';
|
|
|
2
2
|
import { CdkPortal, PortalModule, ComponentPortal, TemplatePortal, CdkPortalOutlet } from '@angular/cdk/portal';
|
|
3
3
|
import { AsyncPipe, NgIf, NgClass, NgTemplateOutlet, NgForOf, JsonPipe, formatDate, NgComponentOutlet, NgFor, DOCUMENT } from '@angular/common';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, Directive, InjectionToken, booleanAttribute, Input, ContentChild, ContentChildren, inject, ElementRef, Injector, HostBinding, isDevMode, Injectable, TemplateRef, ViewContainerRef, forwardRef, ViewChild, LOCALE_ID, numberAttribute, EventEmitter, Output, ViewChildren, signal, computed, Optional, Inject, SkipSelf, HostListener, NgZone, NgModule,
|
|
5
|
+
import { Component, ViewEncapsulation, ChangeDetectionStrategy, Directive, InjectionToken, booleanAttribute, Input, ContentChild, ContentChildren, inject, ElementRef, Injector, HostBinding, isDevMode, Injectable, ChangeDetectorRef, TemplateRef, ViewContainerRef, forwardRef, ViewChild, LOCALE_ID, numberAttribute, EventEmitter, Output, ViewChildren, signal, computed, Optional, Inject, SkipSelf, HostListener, NgZone, NgModule, Renderer2, Attribute } from '@angular/core';
|
|
6
6
|
import * as i1$1 from '@ethlete/core';
|
|
7
7
|
import { LetDirective, createDestroy, ScrollObserverFirstElementDirective, ScrollObserverLastElementDirective, Memo, createReactiveBindings, IS_EMAIL, MUST_MATCH, IS_ARRAY_NOT_EMPTY, AT_LEAST_ONE_REQUIRED, equal, ResizeObserverService, createFlipAnimation, RuntimeError, AnimatedOverlayDirective, SelectionModel, ActiveSelectionModel, KeyPressManager, scrollToElement, isEmptyArray, isObjectArray, isPrimitiveArray, ClickOutsideDirective, ANIMATED_LIFECYCLE_TOKEN, AnimatedLifecycleDirective, ObserveContentDirective, clamp, nextFrame, DELAYABLE_TOKEN, ObserveResizeDirective, SmartBlockScrollStrategy, RouterStateService, ClickObserverService, FocusVisibleService, ViewportService, getElementVisibleStates, IS_ACTIVE_ELEMENT, IS_ELEMENT, CursorDragScrollDirective, ObserveScrollStateDirective, IsElementDirective, IsActiveElementDirective, ScrollObserverIgnoreTargetDirective, TypedQueryList } from '@ethlete/core';
|
|
8
8
|
import { BehaviorSubject, startWith, map, switchMap, combineLatest, pairwise, tap, takeUntil, skip, of, filter, Subject, debounceTime, distinctUntilChanged, withLatestFrom, skipWhile, catchError, throwError, firstValueFrom, fromEvent, merge, take, timer, skipUntil, defer, partition, Subscription, Observable } from 'rxjs';
|
|
@@ -1554,6 +1554,85 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
1554
1554
|
type: Input
|
|
1555
1555
|
}] } });
|
|
1556
1556
|
|
|
1557
|
+
const EXPOSE_INPUT_VARS_TOKEN = new InjectionToken('ET_EXPOSE_INPUT_VARS_TOKEN');
|
|
1558
|
+
class ExposeInputVarsDirective {
|
|
1559
|
+
set explicitInput(input) {
|
|
1560
|
+
if (!input)
|
|
1561
|
+
return;
|
|
1562
|
+
this._monitorInput(input);
|
|
1563
|
+
}
|
|
1564
|
+
constructor() {
|
|
1565
|
+
this._cdr = inject(ChangeDetectorRef);
|
|
1566
|
+
this._destroy$ = createDestroy();
|
|
1567
|
+
this._monitorStop$ = new Subject();
|
|
1568
|
+
this._templateRef = inject(TemplateRef);
|
|
1569
|
+
this._viewContainerRef = inject(ViewContainerRef);
|
|
1570
|
+
this._viewContext = {
|
|
1571
|
+
shouldDisplayError: false,
|
|
1572
|
+
autofilled: false,
|
|
1573
|
+
disabled: false,
|
|
1574
|
+
isFocusedVia: null,
|
|
1575
|
+
lastUpdateType: null,
|
|
1576
|
+
value: null,
|
|
1577
|
+
};
|
|
1578
|
+
this._viewContainerRef.createEmbeddedView(this._templateRef, this._viewContext);
|
|
1579
|
+
}
|
|
1580
|
+
static ngTemplateContextGuard(dir, ctx) {
|
|
1581
|
+
return true;
|
|
1582
|
+
}
|
|
1583
|
+
_monitorInput(input) {
|
|
1584
|
+
this._monitorStop$.next();
|
|
1585
|
+
this._monitorObservable(input.shouldDisplayError$, (shouldDisplayError) => this._updateView({
|
|
1586
|
+
shouldDisplayError,
|
|
1587
|
+
}));
|
|
1588
|
+
this._monitorObservable(input.autofilled$, (autofilled) => this._updateView({
|
|
1589
|
+
autofilled,
|
|
1590
|
+
}));
|
|
1591
|
+
this._monitorObservable(input.disabled$, (disabled) => this._updateView({
|
|
1592
|
+
disabled,
|
|
1593
|
+
}));
|
|
1594
|
+
this._monitorObservable(input.isFocusedVia$, (isFocusedVia) => this._updateView({
|
|
1595
|
+
isFocusedVia,
|
|
1596
|
+
}));
|
|
1597
|
+
this._monitorObservable(input.lastUpdateType$, (lastUpdateType) => this._updateView({
|
|
1598
|
+
lastUpdateType,
|
|
1599
|
+
}));
|
|
1600
|
+
this._monitorObservable(input.value$, (value) => this._updateView({
|
|
1601
|
+
value,
|
|
1602
|
+
}));
|
|
1603
|
+
}
|
|
1604
|
+
_monitorObservable(observable, callback) {
|
|
1605
|
+
observable.pipe(takeUntil(this._monitorStop$), takeUntil(this._destroy$)).subscribe((v) => callback(v));
|
|
1606
|
+
}
|
|
1607
|
+
_updateView(context) {
|
|
1608
|
+
Object.assign(this._viewContext, context);
|
|
1609
|
+
this._cdr.markForCheck();
|
|
1610
|
+
}
|
|
1611
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ExposeInputVarsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1612
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.2", type: ExposeInputVarsDirective, isStandalone: true, selector: "[etExposeInputVars]", inputs: { explicitInput: ["etExposeInputVars", "explicitInput"] }, providers: [
|
|
1613
|
+
{
|
|
1614
|
+
provide: EXPOSE_INPUT_VARS_TOKEN,
|
|
1615
|
+
useExisting: ExposeInputVarsDirective,
|
|
1616
|
+
},
|
|
1617
|
+
], ngImport: i0 }); }
|
|
1618
|
+
}
|
|
1619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ExposeInputVarsDirective, decorators: [{
|
|
1620
|
+
type: Directive,
|
|
1621
|
+
args: [{
|
|
1622
|
+
selector: '[etExposeInputVars]',
|
|
1623
|
+
standalone: true,
|
|
1624
|
+
providers: [
|
|
1625
|
+
{
|
|
1626
|
+
provide: EXPOSE_INPUT_VARS_TOKEN,
|
|
1627
|
+
useExisting: ExposeInputVarsDirective,
|
|
1628
|
+
},
|
|
1629
|
+
],
|
|
1630
|
+
}]
|
|
1631
|
+
}], ctorParameters: function () { return []; }, propDecorators: { explicitInput: [{
|
|
1632
|
+
type: Input,
|
|
1633
|
+
args: ['etExposeInputVars']
|
|
1634
|
+
}] } });
|
|
1635
|
+
|
|
1557
1636
|
const INPUT_TOKEN = new InjectionToken('ET_INPUT_DIRECTIVE_TOKEN');
|
|
1558
1637
|
let nextUniqueId$5 = 0;
|
|
1559
1638
|
class InputDirective {
|
|
@@ -1660,6 +1739,7 @@ class InputDirective {
|
|
|
1660
1739
|
return this._formFieldStateService.errorId();
|
|
1661
1740
|
}
|
|
1662
1741
|
constructor() {
|
|
1742
|
+
this._injector = inject(Injector);
|
|
1663
1743
|
this._inputStateService = inject(InputStateService);
|
|
1664
1744
|
this._formFieldStateService = inject(FormFieldStateService);
|
|
1665
1745
|
this._ngControl = inject(NgControl, { optional: true });
|
|
@@ -1674,6 +1754,12 @@ class InputDirective {
|
|
|
1674
1754
|
this.onInternalUpdate$ = this._inputStateService.onInternalUpdate$;
|
|
1675
1755
|
this.onExternalUpdate$ = this._inputStateService.onExternalUpdate$;
|
|
1676
1756
|
this._inputStateService.usesImplicitControl$.next(!this._ngControl);
|
|
1757
|
+
Promise.resolve().then(() => {
|
|
1758
|
+
const exposeInputVarsDirective = this._injector.get(EXPOSE_INPUT_VARS_TOKEN, null, { optional: true });
|
|
1759
|
+
if (exposeInputVarsDirective) {
|
|
1760
|
+
exposeInputVarsDirective._monitorInput(this);
|
|
1761
|
+
}
|
|
1762
|
+
});
|
|
1677
1763
|
}
|
|
1678
1764
|
ngOnInit() {
|
|
1679
1765
|
const controlStateChanges$ = combineLatest([
|
|
@@ -3589,6 +3675,90 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
3589
3675
|
}]
|
|
3590
3676
|
}] });
|
|
3591
3677
|
|
|
3678
|
+
const COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN = new InjectionToken('ET_COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN');
|
|
3679
|
+
class ComboboxBodyEmptyTemplateDirective {
|
|
3680
|
+
constructor() {
|
|
3681
|
+
this.template = inject(TemplateRef);
|
|
3682
|
+
}
|
|
3683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyEmptyTemplateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3684
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxBodyEmptyTemplateDirective, isStandalone: true, selector: "ng-template[etComboboxBodyEmptyTemplate]", providers: [
|
|
3685
|
+
{
|
|
3686
|
+
provide: COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN,
|
|
3687
|
+
useExisting: ComboboxBodyEmptyTemplateDirective,
|
|
3688
|
+
},
|
|
3689
|
+
], exportAs: ["etComboboxBodyEmptyTemplate"], ngImport: i0 }); }
|
|
3690
|
+
}
|
|
3691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyEmptyTemplateDirective, decorators: [{
|
|
3692
|
+
type: Directive,
|
|
3693
|
+
args: [{
|
|
3694
|
+
selector: 'ng-template[etComboboxBodyEmptyTemplate]',
|
|
3695
|
+
standalone: true,
|
|
3696
|
+
exportAs: 'etComboboxBodyEmptyTemplate',
|
|
3697
|
+
providers: [
|
|
3698
|
+
{
|
|
3699
|
+
provide: COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN,
|
|
3700
|
+
useExisting: ComboboxBodyEmptyTemplateDirective,
|
|
3701
|
+
},
|
|
3702
|
+
],
|
|
3703
|
+
}]
|
|
3704
|
+
}] });
|
|
3705
|
+
|
|
3706
|
+
const COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN = new InjectionToken('ET_COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN');
|
|
3707
|
+
class ComboboxBodyErrorTemplateDirective {
|
|
3708
|
+
constructor() {
|
|
3709
|
+
this.template = inject(TemplateRef);
|
|
3710
|
+
}
|
|
3711
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyErrorTemplateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3712
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxBodyErrorTemplateDirective, isStandalone: true, selector: "ng-template[etComboboxBodyErrorTemplate]", providers: [
|
|
3713
|
+
{
|
|
3714
|
+
provide: COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN,
|
|
3715
|
+
useExisting: ComboboxBodyErrorTemplateDirective,
|
|
3716
|
+
},
|
|
3717
|
+
], exportAs: ["etComboboxBodyErrorTemplate"], ngImport: i0 }); }
|
|
3718
|
+
}
|
|
3719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyErrorTemplateDirective, decorators: [{
|
|
3720
|
+
type: Directive,
|
|
3721
|
+
args: [{
|
|
3722
|
+
selector: 'ng-template[etComboboxBodyErrorTemplate]',
|
|
3723
|
+
standalone: true,
|
|
3724
|
+
exportAs: 'etComboboxBodyErrorTemplate',
|
|
3725
|
+
providers: [
|
|
3726
|
+
{
|
|
3727
|
+
provide: COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN,
|
|
3728
|
+
useExisting: ComboboxBodyErrorTemplateDirective,
|
|
3729
|
+
},
|
|
3730
|
+
],
|
|
3731
|
+
}]
|
|
3732
|
+
}] });
|
|
3733
|
+
|
|
3734
|
+
const COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN = new InjectionToken('ET_COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN');
|
|
3735
|
+
class ComboboxBodyLoadingTemplateDirective {
|
|
3736
|
+
constructor() {
|
|
3737
|
+
this.template = inject(TemplateRef);
|
|
3738
|
+
}
|
|
3739
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyLoadingTemplateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3740
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxBodyLoadingTemplateDirective, isStandalone: true, selector: "ng-template[etComboboxBodyLoadingTemplate]", providers: [
|
|
3741
|
+
{
|
|
3742
|
+
provide: COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN,
|
|
3743
|
+
useExisting: ComboboxBodyLoadingTemplateDirective,
|
|
3744
|
+
},
|
|
3745
|
+
], exportAs: ["etComboboxBodyLoadingTemplate"], ngImport: i0 }); }
|
|
3746
|
+
}
|
|
3747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyLoadingTemplateDirective, decorators: [{
|
|
3748
|
+
type: Directive,
|
|
3749
|
+
args: [{
|
|
3750
|
+
selector: 'ng-template[etComboboxBodyLoadingTemplate]',
|
|
3751
|
+
standalone: true,
|
|
3752
|
+
exportAs: 'etComboboxBodyLoadingTemplate',
|
|
3753
|
+
providers: [
|
|
3754
|
+
{
|
|
3755
|
+
provide: COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN,
|
|
3756
|
+
useExisting: ComboboxBodyLoadingTemplateDirective,
|
|
3757
|
+
},
|
|
3758
|
+
],
|
|
3759
|
+
}]
|
|
3760
|
+
}] });
|
|
3761
|
+
|
|
3592
3762
|
const COMBOBOX_OPTION_TEMPLATE_TOKEN = new InjectionToken('ET_COMBOBOX_OPTION_TEMPLATE_TOKEN');
|
|
3593
3763
|
class ComboboxOptionTemplateDirective {
|
|
3594
3764
|
constructor() {
|
|
@@ -3645,6 +3815,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
3645
3815
|
}]
|
|
3646
3816
|
}] });
|
|
3647
3817
|
|
|
3818
|
+
const COMBOBOX_CONFIG_TOKEN = new InjectionToken('COMBOBOX_CONFIG_TOKEN');
|
|
3819
|
+
const COMBOBOX_DEFAULT_CONFIG = {
|
|
3820
|
+
emptyText: 'No results found',
|
|
3821
|
+
};
|
|
3822
|
+
|
|
3648
3823
|
const COMBOBOX_ERRORS = {
|
|
3649
3824
|
options_object_mismatch: 'Expected options to be an array of objects. This is due to "bindLabel" and "bindValue" being set.',
|
|
3650
3825
|
options_primitive_mismatch: 'Expected options to be an array of primitives. This is due to "bindLabel" and "bindValue" not being set or "allowCustomValues" being set to true.',
|
|
@@ -3671,6 +3846,18 @@ const ComboboxOptionType = {
|
|
|
3671
3846
|
Object: 'object',
|
|
3672
3847
|
};
|
|
3673
3848
|
|
|
3849
|
+
const createComboboxConfig = (globalConfig = {}, localConfig = {}) => ({
|
|
3850
|
+
...COMBOBOX_DEFAULT_CONFIG,
|
|
3851
|
+
...(globalConfig || {}),
|
|
3852
|
+
...(localConfig || {}),
|
|
3853
|
+
});
|
|
3854
|
+
const provideComboboxConfig = (config = {}) => {
|
|
3855
|
+
return {
|
|
3856
|
+
provide: COMBOBOX_CONFIG_TOKEN,
|
|
3857
|
+
useValue: createComboboxConfig(config),
|
|
3858
|
+
};
|
|
3859
|
+
};
|
|
3860
|
+
|
|
3674
3861
|
const isOptionDisabled = (opt) => {
|
|
3675
3862
|
if (typeof opt === 'object' && opt !== null && 'disabled' in opt) {
|
|
3676
3863
|
return !!opt.disabled;
|
|
@@ -3752,6 +3939,24 @@ class ComboboxDirective {
|
|
|
3752
3939
|
set selectedOptionComponent(component) {
|
|
3753
3940
|
this._selectedOptionComponent$.next(component);
|
|
3754
3941
|
}
|
|
3942
|
+
get bodyErrorComponent() {
|
|
3943
|
+
return this._bodyErrorComponent$.value;
|
|
3944
|
+
}
|
|
3945
|
+
set bodyErrorComponent(value) {
|
|
3946
|
+
this._bodyErrorComponent$.next(value);
|
|
3947
|
+
}
|
|
3948
|
+
get bodyLoadingComponent() {
|
|
3949
|
+
return this._bodyLoadingComponent$.value;
|
|
3950
|
+
}
|
|
3951
|
+
set bodyLoadingComponent(value) {
|
|
3952
|
+
this._bodyLoadingComponent$.next(value);
|
|
3953
|
+
}
|
|
3954
|
+
get bodyEmptyComponent() {
|
|
3955
|
+
return this._bodyEmptyComponent$.value;
|
|
3956
|
+
}
|
|
3957
|
+
set bodyEmptyComponent(value) {
|
|
3958
|
+
this._bodyEmptyComponent$.next(value);
|
|
3959
|
+
}
|
|
3755
3960
|
get currentFilter() {
|
|
3756
3961
|
return this._currentFilter$.value;
|
|
3757
3962
|
}
|
|
@@ -3764,6 +3969,15 @@ class ComboboxDirective {
|
|
|
3764
3969
|
set selectedOptionTemplate(value) {
|
|
3765
3970
|
this._selectedOptionTemplate$.next(value ?? null);
|
|
3766
3971
|
}
|
|
3972
|
+
set bodyLoadingTemplate(value) {
|
|
3973
|
+
this._bodyLoadingTemplate$.next(value ?? null);
|
|
3974
|
+
}
|
|
3975
|
+
set bodyErrorTemplate(value) {
|
|
3976
|
+
this._bodyErrorTemplate$.next(value ?? null);
|
|
3977
|
+
}
|
|
3978
|
+
set bodyEmptyTemplate(value) {
|
|
3979
|
+
this._bodyEmptyTemplate$.next(value ?? null);
|
|
3980
|
+
}
|
|
3767
3981
|
//#endregion
|
|
3768
3982
|
//#region Lifecycle
|
|
3769
3983
|
constructor() {
|
|
@@ -3772,16 +3986,20 @@ class ComboboxDirective {
|
|
|
3772
3986
|
this._input = inject(INPUT_TOKEN);
|
|
3773
3987
|
this._selectField = inject(SELECT_FIELD_TOKEN);
|
|
3774
3988
|
this._animatedOverlay = inject(AnimatedOverlayDirective);
|
|
3989
|
+
this._comboboxConfig = inject(COMBOBOX_CONFIG_TOKEN, { optional: true });
|
|
3775
3990
|
this._initialValue$ = new BehaviorSubject(null);
|
|
3776
3991
|
this._filterInternal$ = new BehaviorSubject(false);
|
|
3777
3992
|
this._loading$ = new BehaviorSubject(false);
|
|
3778
3993
|
this.loading$ = this._loading$.asObservable();
|
|
3779
3994
|
this._error$ = new BehaviorSubject(null);
|
|
3780
|
-
this.emptyText =
|
|
3995
|
+
this.emptyText = this._comboboxConfig?.emptyText ?? COMBOBOX_DEFAULT_CONFIG.emptyText;
|
|
3781
3996
|
this._placeholder$ = new BehaviorSubject(null);
|
|
3782
3997
|
this._allowCustomValues$ = new BehaviorSubject(false);
|
|
3783
|
-
this._optionComponent$ = new BehaviorSubject(null);
|
|
3784
|
-
this._selectedOptionComponent$ = new BehaviorSubject(null);
|
|
3998
|
+
this._optionComponent$ = new BehaviorSubject(this._comboboxConfig?.optionComponent ?? null);
|
|
3999
|
+
this._selectedOptionComponent$ = new BehaviorSubject(this._comboboxConfig?.selectedOptionComponent ?? null);
|
|
4000
|
+
this._bodyErrorComponent$ = new BehaviorSubject(this._comboboxConfig?.bodyErrorComponent ?? null);
|
|
4001
|
+
this._bodyLoadingComponent$ = new BehaviorSubject(this._comboboxConfig?.bodyLoadingComponent ?? null);
|
|
4002
|
+
this._bodyEmptyComponent$ = new BehaviorSubject(this._comboboxConfig?.bodyEmptyComponent ?? null);
|
|
3785
4003
|
//#endregion
|
|
3786
4004
|
//#region Outputs
|
|
3787
4005
|
this.filterChange = new EventEmitter();
|
|
@@ -3801,6 +4019,9 @@ class ComboboxDirective {
|
|
|
3801
4019
|
this.rawOptions$ = this._selectionModel.options$;
|
|
3802
4020
|
this._optionTemplate$ = new BehaviorSubject(null);
|
|
3803
4021
|
this._selectedOptionTemplate$ = new BehaviorSubject(null);
|
|
4022
|
+
this._bodyLoadingTemplate$ = new BehaviorSubject(null);
|
|
4023
|
+
this._bodyErrorTemplate$ = new BehaviorSubject(null);
|
|
4024
|
+
this._bodyEmptyTemplate$ = new BehaviorSubject(null);
|
|
3804
4025
|
this._bindings = createReactiveBindings({
|
|
3805
4026
|
attribute: 'class.et-combobox--loading',
|
|
3806
4027
|
observable: this._loading$,
|
|
@@ -3824,6 +4045,12 @@ class ComboboxDirective {
|
|
|
3824
4045
|
this.customOptionComponent$ = this._optionComponent$.asObservable();
|
|
3825
4046
|
this.customSelectedOptionTpl$ = this._selectedOptionTemplate$.asObservable();
|
|
3826
4047
|
this.customSelectedOptionComponent$ = this._selectedOptionComponent$.asObservable();
|
|
4048
|
+
this.customBodyLoadingTpl$ = this._bodyLoadingTemplate$.asObservable();
|
|
4049
|
+
this.customBodyLoadingComponent$ = this._bodyLoadingComponent$.asObservable();
|
|
4050
|
+
this.customBodyErrorTpl$ = this._bodyErrorTemplate$.asObservable();
|
|
4051
|
+
this.customBodyErrorComponent$ = this._bodyErrorComponent$.asObservable();
|
|
4052
|
+
this.customBodyEmptyTpl$ = this._bodyEmptyTemplate$.asObservable();
|
|
4053
|
+
this.customBodyEmptyComponent$ = this._bodyEmptyComponent$.asObservable();
|
|
3827
4054
|
this.trackByOptionKeyFn = (index, item) => this._selectionModel.getKey(item);
|
|
3828
4055
|
this._activeSelectionModel.setSelectionModel(this._selectionModel);
|
|
3829
4056
|
this._animatedOverlay.placement = 'bottom';
|
|
@@ -4167,12 +4394,12 @@ class ComboboxDirective {
|
|
|
4167
4394
|
.subscribe();
|
|
4168
4395
|
}
|
|
4169
4396
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4170
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxDirective, isStandalone: true, inputs: { options: "options", initialValue: "initialValue", filterInternal: "filterInternal", loading: "loading", error: "error", emptyText: "emptyText", placeholder: "placeholder", multiple: "multiple", bindLabel: "bindLabel", bindValue: "bindValue", bindKey: "bindKey", allowCustomValues: "allowCustomValues", optionComponent: "optionComponent", selectedOptionComponent: "selectedOptionComponent" }, outputs: { filterChange: "filterChange" }, providers: [
|
|
4397
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxDirective, isStandalone: true, inputs: { options: "options", initialValue: "initialValue", filterInternal: "filterInternal", loading: "loading", error: "error", emptyText: "emptyText", placeholder: "placeholder", multiple: "multiple", bindLabel: "bindLabel", bindValue: "bindValue", bindKey: "bindKey", allowCustomValues: "allowCustomValues", optionComponent: "optionComponent", selectedOptionComponent: "selectedOptionComponent", bodyErrorComponent: "bodyErrorComponent", bodyLoadingComponent: "bodyLoadingComponent", bodyEmptyComponent: "bodyEmptyComponent" }, outputs: { filterChange: "filterChange" }, providers: [
|
|
4171
4398
|
{
|
|
4172
4399
|
provide: COMBOBOX_TOKEN,
|
|
4173
4400
|
useExisting: ComboboxDirective,
|
|
4174
4401
|
},
|
|
4175
|
-
], queries: [{ propertyName: "optionTemplate", first: true, predicate: COMBOBOX_OPTION_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }, { propertyName: "selectedOptionTemplate", first: true, predicate: COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }], ngImport: i0 }); }
|
|
4402
|
+
], queries: [{ propertyName: "optionTemplate", first: true, predicate: COMBOBOX_OPTION_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }, { propertyName: "selectedOptionTemplate", first: true, predicate: COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }, { propertyName: "bodyLoadingTemplate", first: true, predicate: COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }, { propertyName: "bodyErrorTemplate", first: true, predicate: COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }, { propertyName: "bodyEmptyTemplate", first: true, predicate: COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, descendants: true, read: TemplateRef }], ngImport: i0 }); }
|
|
4176
4403
|
}
|
|
4177
4404
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxDirective, decorators: [{
|
|
4178
4405
|
type: Directive,
|
|
@@ -4214,6 +4441,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
4214
4441
|
type: Input
|
|
4215
4442
|
}], selectedOptionComponent: [{
|
|
4216
4443
|
type: Input
|
|
4444
|
+
}], bodyErrorComponent: [{
|
|
4445
|
+
type: Input
|
|
4446
|
+
}], bodyLoadingComponent: [{
|
|
4447
|
+
type: Input
|
|
4448
|
+
}], bodyEmptyComponent: [{
|
|
4449
|
+
type: Input
|
|
4217
4450
|
}], filterChange: [{
|
|
4218
4451
|
type: Output
|
|
4219
4452
|
}], optionTemplate: [{
|
|
@@ -4222,6 +4455,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
4222
4455
|
}], selectedOptionTemplate: [{
|
|
4223
4456
|
type: ContentChild,
|
|
4224
4457
|
args: [COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, { read: TemplateRef }]
|
|
4458
|
+
}], bodyLoadingTemplate: [{
|
|
4459
|
+
type: ContentChild,
|
|
4460
|
+
args: [COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, { read: TemplateRef }]
|
|
4461
|
+
}], bodyErrorTemplate: [{
|
|
4462
|
+
type: ContentChild,
|
|
4463
|
+
args: [COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, { read: TemplateRef }]
|
|
4464
|
+
}], bodyEmptyTemplate: [{
|
|
4465
|
+
type: ContentChild,
|
|
4466
|
+
args: [COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, { read: TemplateRef }]
|
|
4225
4467
|
}] } });
|
|
4226
4468
|
|
|
4227
4469
|
const COMBOBOX_OPTION_TOKEN = new InjectionToken('ET_COMBOBOX_OPTION_TOKEN');
|
|
@@ -4316,7 +4558,7 @@ class ComboboxBodyComponent {
|
|
|
4316
4558
|
provide: COMBOBOX_BODY_TOKEN,
|
|
4317
4559
|
useExisting: ComboboxBodyComponent,
|
|
4318
4560
|
},
|
|
4319
|
-
], viewQueries: [{ propertyName: "_containerElementRef", first: true, predicate: ["containerElement"], descendants: true, read: ElementRef, static: true }, { propertyName: "_animatedLifecycle", first: true, predicate: ANIMATED_LIFECYCLE_TOKEN, descendants: true, static: true }, { propertyName: "_options", predicate: ComboboxOptionComponent, descendants: true }], hostDirectives: [{ directive: i1$1.ClickOutsideDirective }], ngImport: i0, template: "<div #containerElement class=\"et-combobox-body-container\" etAnimatedLifecycle>\n <ng-container *etLet=\"combobox.options$ | async as options\">\n <
|
|
4561
|
+
], viewQueries: [{ propertyName: "_containerElementRef", first: true, predicate: ["containerElement"], descendants: true, read: ElementRef, static: true }, { propertyName: "_animatedLifecycle", first: true, predicate: ANIMATED_LIFECYCLE_TOKEN, descendants: true, static: true }, { propertyName: "_options", predicate: ComboboxOptionComponent, descendants: true }], hostDirectives: [{ directive: i1$1.ClickOutsideDirective }], ngImport: i0, template: "<div #containerElement class=\"et-combobox-body-container\" etAnimatedLifecycle>\n <ng-container *etLet=\"combobox.options$ | async as options\">\n <ng-container *ngIf=\"!options?.length && !combobox.error && !combobox.loading\">\n <ng-container *ngIf=\"combobox.customBodyEmptyTpl$ | async as tpl; else componentOrNone\">\n <ng-container *ngTemplateOutlet=\"tpl\" />\n </ng-container>\n <ng-template #componentOrNone>\n <ng-container *ngIf=\"combobox.customBodyEmptyComponent$ | async as comp; else default\">\n <ng-container *ngComponentOutlet=\"comp\" />\n </ng-container>\n <ng-template #default>\n <p class=\"et-combobox-body--empty\">{{ combobox.emptyText }}</p>\n </ng-template>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"combobox.error && !combobox.loading\">\n <ng-container *ngIf=\"combobox.customBodyErrorTpl$ | async as tpl; else componentOrNone\">\n <ng-container *ngTemplateOutlet=\"tpl; context: { error: combobox.error }\" />\n </ng-container>\n <ng-template #componentOrNone>\n <ng-container *ngIf=\"combobox.customBodyErrorComponent$ | async as comp\">\n <ng-container *ngComponentOutlet=\"comp; inputs: { error: combobox.error }\" />\n </ng-container>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"combobox.loading\">\n <ng-container *ngIf=\"combobox.customBodyLoadingTpl$ | async as tpl; else componentOrNone\">\n <ng-container *ngTemplateOutlet=\"tpl\" />\n </ng-container>\n <ng-template #componentOrNone>\n <ng-container *ngIf=\"combobox.customBodyLoadingComponent$ | async as comp\">\n <ng-container *ngComponentOutlet=\"comp\" />\n </ng-container>\n </ng-template>\n </ng-container>\n\n <et-combobox-option *ngFor=\"let option of options; trackBy: trackByFn\" [option]=\"option\" />\n </ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ComboboxOptionComponent, selector: "et-combobox-option", inputs: ["option"] }, { kind: "directive", type: LetDirective, selector: "[etLet]", inputs: ["etLet"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: AnimatedLifecycleDirective, selector: "[etAnimatedLifecycle]", exportAs: ["etAnimatedLifecycle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
4320
4562
|
}
|
|
4321
4563
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxBodyComponent, decorators: [{
|
|
4322
4564
|
type: Component,
|
|
@@ -4325,6 +4567,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
4325
4567
|
tabindex: '-1',
|
|
4326
4568
|
}, imports: [
|
|
4327
4569
|
NgTemplateOutlet,
|
|
4570
|
+
NgComponentOutlet,
|
|
4328
4571
|
NgFor,
|
|
4329
4572
|
ComboboxOptionComponent,
|
|
4330
4573
|
LetDirective,
|
|
@@ -4336,7 +4579,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
4336
4579
|
provide: COMBOBOX_BODY_TOKEN,
|
|
4337
4580
|
useExisting: ComboboxBodyComponent,
|
|
4338
4581
|
},
|
|
4339
|
-
], template: "<div #containerElement class=\"et-combobox-body-container\" etAnimatedLifecycle>\n <ng-container *etLet=\"combobox.options$ | async as options\">\n <
|
|
4582
|
+
], template: "<div #containerElement class=\"et-combobox-body-container\" etAnimatedLifecycle>\n <ng-container *etLet=\"combobox.options$ | async as options\">\n <ng-container *ngIf=\"!options?.length && !combobox.error && !combobox.loading\">\n <ng-container *ngIf=\"combobox.customBodyEmptyTpl$ | async as tpl; else componentOrNone\">\n <ng-container *ngTemplateOutlet=\"tpl\" />\n </ng-container>\n <ng-template #componentOrNone>\n <ng-container *ngIf=\"combobox.customBodyEmptyComponent$ | async as comp; else default\">\n <ng-container *ngComponentOutlet=\"comp\" />\n </ng-container>\n <ng-template #default>\n <p class=\"et-combobox-body--empty\">{{ combobox.emptyText }}</p>\n </ng-template>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"combobox.error && !combobox.loading\">\n <ng-container *ngIf=\"combobox.customBodyErrorTpl$ | async as tpl; else componentOrNone\">\n <ng-container *ngTemplateOutlet=\"tpl; context: { error: combobox.error }\" />\n </ng-container>\n <ng-template #componentOrNone>\n <ng-container *ngIf=\"combobox.customBodyErrorComponent$ | async as comp\">\n <ng-container *ngComponentOutlet=\"comp; inputs: { error: combobox.error }\" />\n </ng-container>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"combobox.loading\">\n <ng-container *ngIf=\"combobox.customBodyLoadingTpl$ | async as tpl; else componentOrNone\">\n <ng-container *ngTemplateOutlet=\"tpl\" />\n </ng-container>\n <ng-template #componentOrNone>\n <ng-container *ngIf=\"combobox.customBodyLoadingComponent$ | async as comp\">\n <ng-container *ngComponentOutlet=\"comp\" />\n </ng-container>\n </ng-template>\n </ng-container>\n\n <et-combobox-option *ngFor=\"let option of options; trackBy: trackByFn\" [option]=\"option\" />\n </ng-container>\n</div>\n" }]
|
|
4340
4583
|
}], propDecorators: { _containerElementRef: [{
|
|
4341
4584
|
type: ViewChild,
|
|
4342
4585
|
args: ['containerElement', { static: true, read: ElementRef }]
|
|
@@ -4355,7 +4598,7 @@ class ComboboxComponent extends DecoratedInputBase {
|
|
|
4355
4598
|
this.combobox.setBodyComponent(ComboboxBodyComponent);
|
|
4356
4599
|
}
|
|
4357
4600
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4358
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxComponent, isStandalone: true, selector: "et-combobox", host: { listeners: { "click": "combobox.selectInputAndOpen()" }, classAttribute: "et-combobox" }, usesInheritance: true, hostDirectives: [{ directive: i1$1.AnimatedOverlayDirective }, { directive: InputDirective, inputs: ["placeholder", "placeholder"] }, { directive: ComboboxDirective, inputs: ["options", "options", "initialValue", "initialValue", "filterInternal", "filterInternal", "loading", "loading", "error", "error", "emptyText", "emptyText", "placeholder", "placeholder", "multiple", "multiple", "bindLabel", "bindLabel", "bindValue", "bindValue", "allowCustomValues", "allowCustomValues", "selectedOptionComponent", "selectedOptionComponent", "optionComponent", "optionComponent"], outputs: ["filterChange", "filterChange"] }], ngImport: i0, template: "<!-- eslint-disable @angular-eslint/template/click-events-have-key-events -->\n<ng-content select=\"[etInputPrefix]\" />\n\n<div class=\"et-combobox-wrapper\">\n <ul *ngIf=\"combobox.multiple$ | async\" class=\"et-combobox-selected-options\">\n <li\n *ngFor=\"let item of combobox.selectedOptions$ | async; trackBy: combobox.trackByOptionKeyFn\"\n class=\"et-combobox-selected-option\"\n >\n <ng-container\n *ngIf=\"\n combobox.customSelectedOptionTpl$ | async as customSelectedOptionTpl;\n else compOrDefaultSelectedOptionLabelTpl\n \"\n >\n <ng-container *ngTemplateOutlet=\"customSelectedOptionTpl; context: { option: item }\" />\n </ng-container>\n\n <ng-template #compOrDefaultSelectedOptionLabelTpl>\n <ng-container\n *ngIf=\"combobox.customSelectedOptionComponent$ | async as comp; else defaultSelectedOptionLabelTpl\"\n >\n <ng-container *ngComponentOutlet=\"comp; inputs: { option: item }\"></ng-container>\n </ng-container>\n <ng-template #defaultSelectedOptionLabelTpl>\n {{ combobox.getOptionLabel(item) | async }}\n </ng-template>\n </ng-template>\n\n <span\n (click)=\"combobox.removeSelectedOption(item); $event.stopPropagation()\"\n class=\"et-combobox-selected-option-remove\"\n tabindex=\"-1\"\n >\n x\n </span>\n </li>\n <li class=\"et-combobox-muliple-input\">\n <ng-container *ngTemplateOutlet=\"inputTpl\" />\n </li>\n </ul>\n\n <
|
|
4601
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.2", type: ComboboxComponent, isStandalone: true, selector: "et-combobox", host: { listeners: { "click": "combobox.selectInputAndOpen()" }, classAttribute: "et-combobox" }, usesInheritance: true, hostDirectives: [{ directive: i1$1.AnimatedOverlayDirective }, { directive: InputDirective, inputs: ["placeholder", "placeholder"] }, { directive: ComboboxDirective, inputs: ["options", "options", "initialValue", "initialValue", "filterInternal", "filterInternal", "loading", "loading", "error", "error", "emptyText", "emptyText", "placeholder", "placeholder", "multiple", "multiple", "bindLabel", "bindLabel", "bindValue", "bindValue", "allowCustomValues", "allowCustomValues", "selectedOptionComponent", "selectedOptionComponent", "optionComponent", "optionComponent", "bodyErrorComponent", "bodyErrorComponent", "bodyLoadingComponent", "bodyLoadingComponent", "bodyEmptyComponent", "bodyEmptyComponent"], outputs: ["filterChange", "filterChange"] }], ngImport: i0, template: "<!-- eslint-disable @angular-eslint/template/click-events-have-key-events -->\n<ng-content select=\"[etInputPrefix]\" />\n\n<div class=\"et-combobox-wrapper\">\n <ul *ngIf=\"combobox.multiple$ | async\" class=\"et-combobox-selected-options\">\n <li\n *ngFor=\"let item of combobox.selectedOptions$ | async; trackBy: combobox.trackByOptionKeyFn\"\n class=\"et-combobox-selected-option\"\n >\n <ng-container\n *ngIf=\"\n combobox.customSelectedOptionTpl$ | async as customSelectedOptionTpl;\n else compOrDefaultSelectedOptionLabelTpl\n \"\n >\n <ng-container *ngTemplateOutlet=\"customSelectedOptionTpl; context: { option: item }\" />\n </ng-container>\n\n <ng-template #compOrDefaultSelectedOptionLabelTpl>\n <ng-container\n *ngIf=\"combobox.customSelectedOptionComponent$ | async as comp; else defaultSelectedOptionLabelTpl\"\n >\n <ng-container *ngComponentOutlet=\"comp; inputs: { option: item }\"></ng-container>\n </ng-container>\n <ng-template #defaultSelectedOptionLabelTpl>\n {{ combobox.getOptionLabel(item) | async }}\n </ng-template>\n </ng-template>\n\n <span\n (click)=\"combobox.removeSelectedOption(item); $event.stopPropagation()\"\n class=\"et-combobox-selected-option-remove\"\n tabindex=\"-1\"\n >\n x\n </span>\n </li>\n <li class=\"et-combobox-muliple-input\">\n <ng-container *ngTemplateOutlet=\"inputTpl\" />\n </li>\n </ul>\n\n <ng-template #inputTpl>\n <input\n [disabled]=\"input.disabled\"\n [attr.placeholder]=\"input.placeholder || null\"\n (keydown)=\"combobox._processKeydownEvent($event)\"\n (keyup)=\"combobox._processKeyupEvent()\"\n (click)=\"combobox.open()\"\n (blur)=\"combobox._handleBlurEvent()\"\n (input)=\"combobox._processInputEvent($event)\"\n type=\"text\"\n value=\"{{ combobox.currentFilter }}\"\n etNativeInputRef\n />\n </ng-template>\n\n <ng-container *ngIf=\"(combobox.multiple$ | async) === false\">\n <ng-container *ngTemplateOutlet=\"inputTpl\" />\n </ng-container>\n\n <et-chevron-icon class=\"et-combobox-chevron\" />\n</div>\n\n<ng-content select=\"[etInputSuffix]\" />\n\n<ng-template>\n <ng-content />\n</ng-template>\n", styles: [".et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-enter-from,.et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-leave-to{opacity:0;transform:scaleY(0)}.et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-enter-active{transition:transform 125ms var(--ease-out-5),opacity 125ms var(--ease-out-5)}.et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-leave-active{transition:transform 50ms var(--ease-in-5),opacity 50ms var(--ease-in-5)}.et-combobox-body.et-with-default-animation[et-floating-placement^=top] .et-combobox-body-container{transform-origin:bottom}.et-combobox-body.et-with-default-animation[et-floating-placement^=bottom] .et-combobox-body-container{transform-origin:top}.et-combobox-body-container{display:block;background-color:#3d3d3d;color:#fff;max-height:min(200px,var(--et-floating-max-height, 200px));overflow:auto}@supports (overflow: overlay){.et-combobox-body-container{overflow:overlay}}.et-combobox-body{width:100%;display:grid;transform:var(--et-floating-translate);will-change:transform}.et-combobox-option{display:block}:where(.et-combobox-option--active){background-color:#1e1e1e}.et-combobox{display:block;border:1px solid #ccc;padding:15px;position:relative}.et-combobox-chevron{transform:rotate(180deg);display:block;inline-size:15px;block-size:15px;position:absolute;inset-inline-end:15px;inset-block-start:7px}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "component", type: ChevronIconComponent, selector: "et-chevron-icon" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
4359
4602
|
}
|
|
4360
4603
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImport: i0, type: ComboboxComponent, decorators: [{
|
|
4361
4604
|
type: Component,
|
|
@@ -4390,11 +4633,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.2", ngImpor
|
|
|
4390
4633
|
'allowCustomValues',
|
|
4391
4634
|
'selectedOptionComponent',
|
|
4392
4635
|
'optionComponent',
|
|
4636
|
+
'bodyErrorComponent',
|
|
4637
|
+
'bodyLoadingComponent',
|
|
4638
|
+
'bodyEmptyComponent',
|
|
4393
4639
|
],
|
|
4394
4640
|
// eslint-disable-next-line @angular-eslint/no-outputs-metadata-property
|
|
4395
4641
|
outputs: ['filterChange'],
|
|
4396
4642
|
},
|
|
4397
|
-
], template: "<!-- eslint-disable @angular-eslint/template/click-events-have-key-events -->\n<ng-content select=\"[etInputPrefix]\" />\n\n<div class=\"et-combobox-wrapper\">\n <ul *ngIf=\"combobox.multiple$ | async\" class=\"et-combobox-selected-options\">\n <li\n *ngFor=\"let item of combobox.selectedOptions$ | async; trackBy: combobox.trackByOptionKeyFn\"\n class=\"et-combobox-selected-option\"\n >\n <ng-container\n *ngIf=\"\n combobox.customSelectedOptionTpl$ | async as customSelectedOptionTpl;\n else compOrDefaultSelectedOptionLabelTpl\n \"\n >\n <ng-container *ngTemplateOutlet=\"customSelectedOptionTpl; context: { option: item }\" />\n </ng-container>\n\n <ng-template #compOrDefaultSelectedOptionLabelTpl>\n <ng-container\n *ngIf=\"combobox.customSelectedOptionComponent$ | async as comp; else defaultSelectedOptionLabelTpl\"\n >\n <ng-container *ngComponentOutlet=\"comp; inputs: { option: item }\"></ng-container>\n </ng-container>\n <ng-template #defaultSelectedOptionLabelTpl>\n {{ combobox.getOptionLabel(item) | async }}\n </ng-template>\n </ng-template>\n\n <span\n (click)=\"combobox.removeSelectedOption(item); $event.stopPropagation()\"\n class=\"et-combobox-selected-option-remove\"\n tabindex=\"-1\"\n >\n x\n </span>\n </li>\n <li class=\"et-combobox-muliple-input\">\n <ng-container *ngTemplateOutlet=\"inputTpl\" />\n </li>\n </ul>\n\n <
|
|
4643
|
+
], template: "<!-- eslint-disable @angular-eslint/template/click-events-have-key-events -->\n<ng-content select=\"[etInputPrefix]\" />\n\n<div class=\"et-combobox-wrapper\">\n <ul *ngIf=\"combobox.multiple$ | async\" class=\"et-combobox-selected-options\">\n <li\n *ngFor=\"let item of combobox.selectedOptions$ | async; trackBy: combobox.trackByOptionKeyFn\"\n class=\"et-combobox-selected-option\"\n >\n <ng-container\n *ngIf=\"\n combobox.customSelectedOptionTpl$ | async as customSelectedOptionTpl;\n else compOrDefaultSelectedOptionLabelTpl\n \"\n >\n <ng-container *ngTemplateOutlet=\"customSelectedOptionTpl; context: { option: item }\" />\n </ng-container>\n\n <ng-template #compOrDefaultSelectedOptionLabelTpl>\n <ng-container\n *ngIf=\"combobox.customSelectedOptionComponent$ | async as comp; else defaultSelectedOptionLabelTpl\"\n >\n <ng-container *ngComponentOutlet=\"comp; inputs: { option: item }\"></ng-container>\n </ng-container>\n <ng-template #defaultSelectedOptionLabelTpl>\n {{ combobox.getOptionLabel(item) | async }}\n </ng-template>\n </ng-template>\n\n <span\n (click)=\"combobox.removeSelectedOption(item); $event.stopPropagation()\"\n class=\"et-combobox-selected-option-remove\"\n tabindex=\"-1\"\n >\n x\n </span>\n </li>\n <li class=\"et-combobox-muliple-input\">\n <ng-container *ngTemplateOutlet=\"inputTpl\" />\n </li>\n </ul>\n\n <ng-template #inputTpl>\n <input\n [disabled]=\"input.disabled\"\n [attr.placeholder]=\"input.placeholder || null\"\n (keydown)=\"combobox._processKeydownEvent($event)\"\n (keyup)=\"combobox._processKeyupEvent()\"\n (click)=\"combobox.open()\"\n (blur)=\"combobox._handleBlurEvent()\"\n (input)=\"combobox._processInputEvent($event)\"\n type=\"text\"\n value=\"{{ combobox.currentFilter }}\"\n etNativeInputRef\n />\n </ng-template>\n\n <ng-container *ngIf=\"(combobox.multiple$ | async) === false\">\n <ng-container *ngTemplateOutlet=\"inputTpl\" />\n </ng-container>\n\n <et-chevron-icon class=\"et-combobox-chevron\" />\n</div>\n\n<ng-content select=\"[etInputSuffix]\" />\n\n<ng-template>\n <ng-content />\n</ng-template>\n", styles: [".et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-enter-from,.et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-leave-to{opacity:0;transform:scaleY(0)}.et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-enter-active{transition:transform 125ms var(--ease-out-5),opacity 125ms var(--ease-out-5)}.et-combobox-body.et-with-default-animation .et-combobox-body-container.et-animation-leave-active{transition:transform 50ms var(--ease-in-5),opacity 50ms var(--ease-in-5)}.et-combobox-body.et-with-default-animation[et-floating-placement^=top] .et-combobox-body-container{transform-origin:bottom}.et-combobox-body.et-with-default-animation[et-floating-placement^=bottom] .et-combobox-body-container{transform-origin:top}.et-combobox-body-container{display:block;background-color:#3d3d3d;color:#fff;max-height:min(200px,var(--et-floating-max-height, 200px));overflow:auto}@supports (overflow: overlay){.et-combobox-body-container{overflow:overlay}}.et-combobox-body{width:100%;display:grid;transform:var(--et-floating-translate);will-change:transform}.et-combobox-option{display:block}:where(.et-combobox-option--active){background-color:#1e1e1e}.et-combobox{display:block;border:1px solid #ccc;padding:15px;position:relative}.et-combobox-chevron{transform:rotate(180deg);display:block;inline-size:15px;block-size:15px;position:absolute;inset-inline-end:15px;inset-block-start:7px}\n"] }]
|
|
4398
4644
|
}], ctorParameters: function () { return []; } });
|
|
4399
4645
|
|
|
4400
4646
|
const ComboboxImports = [
|
|
@@ -4405,6 +4651,9 @@ const ComboboxImports = [
|
|
|
4405
4651
|
LabelComponent,
|
|
4406
4652
|
ComboboxOptionTemplateDirective,
|
|
4407
4653
|
ComboboxSelectedOptionTemplateDirective,
|
|
4654
|
+
ComboboxBodyErrorTemplateDirective,
|
|
4655
|
+
ComboboxBodyLoadingTemplateDirective,
|
|
4656
|
+
ComboboxBodyEmptyTemplateDirective,
|
|
4408
4657
|
];
|
|
4409
4658
|
|
|
4410
4659
|
const NATIVE_SELECT_OPTION_TOKEN = new InjectionToken('ET_NATIVE_SELECT_OPTION_DIRECTIVE_TOKEN');
|
|
@@ -12590,5 +12839,5 @@ const FLOATING_UI_PLACEMENTS = [
|
|
|
12590
12839
|
* Generated bundle index. Do not edit.
|
|
12591
12840
|
*/
|
|
12592
12841
|
|
|
12593
|
-
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BOTTOM_SHEET_CONFIG, BOTTOM_SHEET_DATA, BOTTOM_SHEET_DEFAULT_CONFIG, BOTTOM_SHEET_DEFAULT_OPTIONS, BOTTOM_SHEET_MIN_SWIPE_TO_CLOSE_LENGTH, BOTTOM_SHEET_MIN_VELOCITY_TO_CLOSE, BOTTOM_SHEET_SCROLL_STRATEGY, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, BottomSheetContainerBaseComponent, BottomSheetContainerComponent, BottomSheetDragHandleComponent, BottomSheetImports, BottomSheetRef, BottomSheetService, BottomSheetServiceBase, BottomSheetSwipeHandlerService, BottomSheetTitleDirective, Bracket, BracketComponent, BracketImports, BracketMatchComponent, BracketMatchDirective, BracketRoundDirective, BracketRoundHeaderComponent, ButtonComponent, ButtonDirective, ButtonImports, CDK_MENU, CHECKBOX_FIELD_TOKEN, CHECKBOX_GROUP_CONTROL_TOKEN, CHECKBOX_GROUP_TOKEN, CHECKBOX_TOKEN, COMBOBOX_OPTION_TEMPLATE_TOKEN, COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, COMBOBOX_TOKEN, CdkContextMenuTrigger, CdkMenu, CdkMenuBar, CdkMenuBase, CdkMenuGroup, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuItemSelectable, CdkMenuModule, CdkMenuTrigger, CdkMenuTriggerBase, CdkTargetMenuAim, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ChevronIconComponent, ColumnDefDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, ContextMenuTracker, DATE_INPUT_FORMAT_TOKEN, DATE_INPUT_TOKEN, DEFAULT_DATE_INPUT_FORMAT, DIALOG_CONFIG, DIALOG_DATA, DIALOG_DEFAULT_CONFIG, DIALOG_DEFAULT_OPTIONS, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DialogCloseDirective, DialogContainerBaseComponent, DialogContainerComponent, DialogImports, DialogRef, DialogService, DialogServiceBase, DialogTitleDirective, DynamicFormFieldDirective, DynamicFormGroupDirective, DynamicOverlayService, DynamicOverlayTitleDirective, EMAIL_INPUT_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, FLOATING_UI_PLACEMENTS, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, FormFieldStateService, FormGroupStateService, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, INPUT_PREFIX_TOKEN, INPUT_SUFFIX_TOKEN, INPUT_TOKEN, IconImports, IfInputEmptyDirective, IfInputFilledDirective, InlineTabBodyComponent, InlineTabBodyHostDirective, InlineTabChangeEvent, InlineTabComponent, InlineTabContentDirective, InlineTabHeaderComponent, InlineTabLabelDirective, InlineTabLabelWrapperDirective, InlineTabsComponent, InputBase, InputDirective, InputFieldComponent, InputImports, InputPrefixDirective, InputStateService, InputSuffixDirective, LABEL_TOKEN, LabelComponent, LabelImports, LabelSuffixDirective, MASONRY_ITEM_TOKEN, MAX_SAFE_INTEGER, MENU_AIM, MENU_STACK, MENU_TRIGGER, MasonryComponent, MasonryImports, MasonryItemComponent, MenuStack, NATIVE_INPUT_REF_TOKEN, NATIVE_SELECT_INPUT_TOKEN, NATIVE_SELECT_OPTION_TOKEN, NUMBER_INPUT_TOKEN, NativeInputRefDirective, NativeSelectImports, NativeSelectInputComponent, NativeSelectInputDirective, NativeSelectOptionComponent, NativeSelectOptionDirective, NavTabLinkComponent, NavTabsComponent, NavTabsOutletComponent, NoDataRowDirective, NumberInputComponent, NumberInputDirective, PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER, PARENT_OR_NEW_MENU_STACK_PROVIDER, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationImports, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, PictureDataDirective, PointerFocusTracker, ProgressSpinnerComponent, QUERY_ERROR_TOKEN, QueryButtonComponent, QueryButtonDirective, QueryErrorComponent, QueryErrorDirective, RADIO_FIELD_TOKEN, RADIO_GROUP_TOKEN, RADIO_TOKEN, RadioComponent, RadioDirective, RadioFieldComponent, RadioFieldDirective, RadioGroupComponent, RadioGroupDirective, RadioImports, RecycleRowsDirective, RowComponent, RowDefDirective, SEARCH_INPUT_TOKEN, SEGMENTED_BUTTON_FIELD_TOKEN, SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SELECTION_LIST_FIELD, SELECTION_LIST_OPTION, SELECT_BODY_TOKEN, SELECT_FIELD_TOKEN, SELECT_OPTION_TOKEN, SELECT_TOKEN, SLIDE_TOGGLE_TOKEN, SORT_DEFAULT_OPTIONS, SORT_HEADER_COLUMN_DEF, SORT_HEADER_INTL_PROVIDER, SORT_HEADER_INTL_PROVIDER_FACTORY, STATIC_FORM_FIELD_TOKEN, STATIC_FORM_GROUP_TOKEN, ScrollableComponent, ScrollableImports, SearchInputClearComponent, SearchInputComponent, SearchInputDirective, SegmentedButtonComponent, SegmentedButtonDirective, SegmentedButtonFieldComponent, SegmentedButtonFieldDirective, SegmentedButtonGroupComponent, SegmentedButtonGroupDirective, SegmentedButtonImports, SelectBodyComponent, SelectBodyDirective, SelectComponent, SelectDirective, SelectFieldComponent, SelectFieldDirective, SelectImports, SelectOptionComponent, SelectOptionDirective, SelectionListFieldComponent, SelectionListFieldDirective, SelectionListImports, SelectionListOptionComponent, SelectionListOptionDirective, SkeletonComponent, SkeletonImports, SkeletonItemComponent, SlideToggleComponent, SlideToggleDirective, SlideToggleFieldComponent, SlideToggleImports, SliderComponent, SliderFieldComponent, SliderImports, SortDirective, SortHeaderComponent, SortHeaderIntl, SortImports, StaticFormFieldDirective, StaticFormGroupDirective, SwipeHandlerService, TAB, TABS_CONFIG, TAB_CONTENT, TAB_GROUP, TAB_LABEL, TEXTAREA_INPUT_TOKEN, TEXT_INPUT_TOKEN, TOGGLETIP, TOGGLETIP_CONFIG, TOGGLETIP_DEFAULT_CONFIG, TOGGLETIP_DIRECTIVE, TOGGLETIP_TEMPLATE, TOGGLETIP_TEXT, TOOLTIP, TOOLTIP_CONFIG, TOOLTIP_DEFAULT_CONFIG, TOOLTIP_DIRECTIVE, TOOLTIP_TEMPLATE, TOOLTIP_TEXT, TabImports, TableBusyDirective, TableBusyOutletDirective, TableComponent, TableDataSource, TableImports, TargetMenuAim, TextColumnComponent, TextInputComponent, TextInputDirective, TextareaInputComponent, TextareaInputDirective, ToggletipComponent, ToggletipDirective, ToggletipImports, TooltipComponent, TooltipDirective, TooltipImports, VALIDATOR_ERROR_SERVICE_TOKEN, WRITEABLE_INPUT_TOKEN, WRITEABLE_INPUT_VALUE_ACCESSOR, WriteableInputDirective, _MAT_INK_BAR_POSITIONER, _MAT_INK_BAR_POSITIONER_FACTORY, accordionAnimations, convertHttpStatusCodeToMessage, createBottomSheetConfig, createBracketConfig, createDialogConfig, createToggletipConfig, createTooltipConfig, getClosestBottomSheet, getClosestDialog, isOptionDisabled, isUpperBracketMatch, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideBottomSheet, provideBottomSheetDefaultConfig, provideBracketConfig, provideDateFormat, provideDialog, provideDialogDefaultConfig, provideSort, provideToggletipConfig, provideTooltipConfig, provideValidatorErrorsService, tabAnimations };
|
|
12842
|
+
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BOTTOM_SHEET_CONFIG, BOTTOM_SHEET_DATA, BOTTOM_SHEET_DEFAULT_CONFIG, BOTTOM_SHEET_DEFAULT_OPTIONS, BOTTOM_SHEET_MIN_SWIPE_TO_CLOSE_LENGTH, BOTTOM_SHEET_MIN_VELOCITY_TO_CLOSE, BOTTOM_SHEET_SCROLL_STRATEGY, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, BottomSheetContainerBaseComponent, BottomSheetContainerComponent, BottomSheetDragHandleComponent, BottomSheetImports, BottomSheetRef, BottomSheetService, BottomSheetServiceBase, BottomSheetSwipeHandlerService, BottomSheetTitleDirective, Bracket, BracketComponent, BracketImports, BracketMatchComponent, BracketMatchDirective, BracketRoundDirective, BracketRoundHeaderComponent, ButtonComponent, ButtonDirective, ButtonImports, CDK_MENU, CHECKBOX_FIELD_TOKEN, CHECKBOX_GROUP_CONTROL_TOKEN, CHECKBOX_GROUP_TOKEN, CHECKBOX_TOKEN, COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, COMBOBOX_CONFIG_TOKEN, COMBOBOX_DEFAULT_CONFIG, COMBOBOX_OPTION_TEMPLATE_TOKEN, COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, COMBOBOX_TOKEN, CdkContextMenuTrigger, CdkMenu, CdkMenuBar, CdkMenuBase, CdkMenuGroup, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuItemSelectable, CdkMenuModule, CdkMenuTrigger, CdkMenuTriggerBase, CdkTargetMenuAim, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ChevronIconComponent, ColumnDefDirective, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, ContextMenuTracker, DATE_INPUT_FORMAT_TOKEN, DATE_INPUT_TOKEN, DEFAULT_DATE_INPUT_FORMAT, DIALOG_CONFIG, DIALOG_DATA, DIALOG_DEFAULT_CONFIG, DIALOG_DEFAULT_OPTIONS, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DialogCloseDirective, DialogContainerBaseComponent, DialogContainerComponent, DialogImports, DialogRef, DialogService, DialogServiceBase, DialogTitleDirective, DynamicFormFieldDirective, DynamicFormGroupDirective, DynamicOverlayService, DynamicOverlayTitleDirective, EMAIL_INPUT_TOKEN, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FLOATING_UI_PLACEMENTS, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, FormFieldStateService, FormGroupStateService, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, INPUT_PREFIX_TOKEN, INPUT_SUFFIX_TOKEN, INPUT_TOKEN, IconImports, IfInputEmptyDirective, IfInputFilledDirective, InlineTabBodyComponent, InlineTabBodyHostDirective, InlineTabChangeEvent, InlineTabComponent, InlineTabContentDirective, InlineTabHeaderComponent, InlineTabLabelDirective, InlineTabLabelWrapperDirective, InlineTabsComponent, InputBase, InputDirective, InputFieldComponent, InputImports, InputPrefixDirective, InputStateService, InputSuffixDirective, LABEL_TOKEN, LabelComponent, LabelImports, LabelSuffixDirective, MASONRY_ITEM_TOKEN, MAX_SAFE_INTEGER, MENU_AIM, MENU_STACK, MENU_TRIGGER, MasonryComponent, MasonryImports, MasonryItemComponent, MenuStack, NATIVE_INPUT_REF_TOKEN, NATIVE_SELECT_INPUT_TOKEN, NATIVE_SELECT_OPTION_TOKEN, NUMBER_INPUT_TOKEN, NativeInputRefDirective, NativeSelectImports, NativeSelectInputComponent, NativeSelectInputDirective, NativeSelectOptionComponent, NativeSelectOptionDirective, NavTabLinkComponent, NavTabsComponent, NavTabsOutletComponent, NoDataRowDirective, NumberInputComponent, NumberInputDirective, PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER, PARENT_OR_NEW_MENU_STACK_PROVIDER, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationImports, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, PictureDataDirective, PointerFocusTracker, ProgressSpinnerComponent, QUERY_ERROR_TOKEN, QueryButtonComponent, QueryButtonDirective, QueryErrorComponent, QueryErrorDirective, RADIO_FIELD_TOKEN, RADIO_GROUP_TOKEN, RADIO_TOKEN, RadioComponent, RadioDirective, RadioFieldComponent, RadioFieldDirective, RadioGroupComponent, RadioGroupDirective, RadioImports, RecycleRowsDirective, RowComponent, RowDefDirective, SEARCH_INPUT_TOKEN, SEGMENTED_BUTTON_FIELD_TOKEN, SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SELECTION_LIST_FIELD, SELECTION_LIST_OPTION, SELECT_BODY_TOKEN, SELECT_FIELD_TOKEN, SELECT_OPTION_TOKEN, SELECT_TOKEN, SLIDE_TOGGLE_TOKEN, SORT_DEFAULT_OPTIONS, SORT_HEADER_COLUMN_DEF, SORT_HEADER_INTL_PROVIDER, SORT_HEADER_INTL_PROVIDER_FACTORY, STATIC_FORM_FIELD_TOKEN, STATIC_FORM_GROUP_TOKEN, ScrollableComponent, ScrollableImports, SearchInputClearComponent, SearchInputComponent, SearchInputDirective, SegmentedButtonComponent, SegmentedButtonDirective, SegmentedButtonFieldComponent, SegmentedButtonFieldDirective, SegmentedButtonGroupComponent, SegmentedButtonGroupDirective, SegmentedButtonImports, SelectBodyComponent, SelectBodyDirective, SelectComponent, SelectDirective, SelectFieldComponent, SelectFieldDirective, SelectImports, SelectOptionComponent, SelectOptionDirective, SelectionListFieldComponent, SelectionListFieldDirective, SelectionListImports, SelectionListOptionComponent, SelectionListOptionDirective, SkeletonComponent, SkeletonImports, SkeletonItemComponent, SlideToggleComponent, SlideToggleDirective, SlideToggleFieldComponent, SlideToggleImports, SliderComponent, SliderFieldComponent, SliderImports, SortDirective, SortHeaderComponent, SortHeaderIntl, SortImports, StaticFormFieldDirective, StaticFormGroupDirective, SwipeHandlerService, TAB, TABS_CONFIG, TAB_CONTENT, TAB_GROUP, TAB_LABEL, TEXTAREA_INPUT_TOKEN, TEXT_INPUT_TOKEN, TOGGLETIP, TOGGLETIP_CONFIG, TOGGLETIP_DEFAULT_CONFIG, TOGGLETIP_DIRECTIVE, TOGGLETIP_TEMPLATE, TOGGLETIP_TEXT, TOOLTIP, TOOLTIP_CONFIG, TOOLTIP_DEFAULT_CONFIG, TOOLTIP_DIRECTIVE, TOOLTIP_TEMPLATE, TOOLTIP_TEXT, TabImports, TableBusyDirective, TableBusyOutletDirective, TableComponent, TableDataSource, TableImports, TargetMenuAim, TextColumnComponent, TextInputComponent, TextInputDirective, TextareaInputComponent, TextareaInputDirective, ToggletipComponent, ToggletipDirective, ToggletipImports, TooltipComponent, TooltipDirective, TooltipImports, VALIDATOR_ERROR_SERVICE_TOKEN, WRITEABLE_INPUT_TOKEN, WRITEABLE_INPUT_VALUE_ACCESSOR, WriteableInputDirective, _MAT_INK_BAR_POSITIONER, _MAT_INK_BAR_POSITIONER_FACTORY, accordionAnimations, convertHttpStatusCodeToMessage, createBottomSheetConfig, createBracketConfig, createComboboxConfig, createDialogConfig, createToggletipConfig, createTooltipConfig, getClosestBottomSheet, getClosestDialog, isOptionDisabled, isUpperBracketMatch, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideBottomSheet, provideBottomSheetDefaultConfig, provideBracketConfig, provideComboboxConfig, provideDateFormat, provideDialog, provideDialogDefaultConfig, provideSort, provideToggletipConfig, provideTooltipConfig, provideValidatorErrorsService, tabAnimations };
|
|
12594
12843
|
//# sourceMappingURL=ethlete-cdk.mjs.map
|