@vendure/admin-ui 2.0.0-next.0 → 2.0.0-next.11

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.
Files changed (180) hide show
  1. package/catalog/catalog.module.d.ts +10 -11
  2. package/catalog/components/collection-contents/collection-contents.component.d.ts +10 -2
  3. package/catalog/components/collection-detail/collection-detail.component.d.ts +13 -4
  4. package/catalog/components/collection-list/collection-list.component.d.ts +2 -0
  5. package/catalog/components/collection-tree/array-to-tree.d.ts +1 -1
  6. package/catalog/components/collection-tree/collection-tree-node.component.d.ts +6 -2
  7. package/catalog/components/collection-tree/collection-tree.component.d.ts +2 -1
  8. package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +13 -10
  9. package/catalog/components/product-variants-list/product-variants-list.component.d.ts +1 -0
  10. package/catalog/public_api.d.ts +0 -1
  11. package/core/common/generated-types.d.ts +136 -2
  12. package/core/common/utilities/selection-manager.d.ts +23 -0
  13. package/core/common/version.d.ts +1 -1
  14. package/core/components/app-shell/app-shell.component.d.ts +1 -0
  15. package/core/data/definitions/collection-definitions.d.ts +1 -0
  16. package/core/data/providers/collection-data.service.d.ts +4 -0
  17. package/core/data/providers/promotion-data.service.d.ts +1 -1
  18. package/core/providers/local-storage/local-storage.service.d.ts +1 -0
  19. package/core/public_api.d.ts +7 -1
  20. package/core/shared/components/asset-gallery/asset-gallery.component.d.ts +27 -3
  21. package/core/shared/components/configurable-input/configurable-input.component.d.ts +8 -3
  22. package/core/shared/components/custom-field-control/custom-field-control.component.d.ts +6 -2
  23. package/core/shared/components/data-table/data-table.component.d.ts +5 -2
  24. package/core/shared/components/facet-value-selector/facet-value-selector.component.d.ts +3 -2
  25. package/core/shared/components/object-tree/object-tree.component.d.ts +3 -3
  26. package/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.d.ts +38 -0
  27. package/{catalog → core/shared}/components/product-search-input/product-search-input.component.d.ts +1 -1
  28. package/core/shared/components/{product-selector/product-selector.component.d.ts → product-variant-selector/product-variant-selector.component.d.ts} +4 -4
  29. package/core/shared/components/select-toggle/select-toggle.component.d.ts +2 -1
  30. package/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.d.ts +28 -0
  31. package/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.d.ts +2 -0
  32. package/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.d.ts +23 -0
  33. package/core/shared/dynamic-form-inputs/register-dynamic-input-components.d.ts +4 -1
  34. package/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.d.ts +6 -3
  35. package/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.d.ts +18 -0
  36. package/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.d.ts +10 -2
  37. package/core/shared/pipes/custom-field-label.pipe.d.ts +4 -10
  38. package/core/shared/shared.module.d.ts +33 -28
  39. package/customer/components/customer-group-list/customer-group-list.component.d.ts +6 -4
  40. package/esm2020/catalog/catalog.module.mjs +1 -5
  41. package/esm2020/catalog/components/apply-facet-dialog/apply-facet-dialog.component.mjs +1 -1
  42. package/esm2020/catalog/components/assets/assets.component.mjs +2 -2
  43. package/esm2020/catalog/components/collection-contents/collection-contents.component.mjs +61 -13
  44. package/esm2020/catalog/components/collection-detail/collection-detail.component.mjs +72 -32
  45. package/esm2020/catalog/components/collection-list/collection-list.component.mjs +30 -5
  46. package/esm2020/catalog/components/collection-tree/array-to-tree.mjs +3 -3
  47. package/esm2020/catalog/components/collection-tree/collection-tree-node.component.mjs +29 -10
  48. package/esm2020/catalog/components/collection-tree/collection-tree.component.mjs +6 -3
  49. package/esm2020/catalog/components/facet-detail/facet-detail.component.mjs +2 -2
  50. package/esm2020/catalog/components/product-detail/product-detail.component.mjs +2 -2
  51. package/esm2020/catalog/components/product-list/product-list.component.mjs +7 -8
  52. package/esm2020/catalog/components/product-variants-editor/product-variants-editor.component.mjs +8 -3
  53. package/esm2020/catalog/components/product-variants-list/product-variants-list.component.mjs +9 -3
  54. package/esm2020/catalog/providers/routing/collection-resolver.mjs +2 -1
  55. package/esm2020/catalog/public_api.mjs +1 -2
  56. package/esm2020/core/app.component.module.mjs +1 -1
  57. package/esm2020/core/common/base-detail.component.mjs +1 -1
  58. package/esm2020/core/common/deactivate-aware.mjs +1 -1
  59. package/esm2020/core/common/generated-types.mjs +29 -1
  60. package/esm2020/core/common/introspection-result.mjs +255 -183
  61. package/esm2020/core/common/utilities/configurable-operation-utils.mjs +23 -4
  62. package/esm2020/core/common/utilities/selection-manager.mjs +64 -0
  63. package/esm2020/core/common/version.mjs +2 -2
  64. package/esm2020/core/components/app-shell/app-shell.component.mjs +6 -5
  65. package/esm2020/core/components/main-nav/main-nav.component.mjs +3 -3
  66. package/esm2020/core/core.module.mjs +1 -1
  67. package/esm2020/core/data/definitions/collection-definitions.mjs +19 -1
  68. package/esm2020/core/data/definitions/customer-definitions.mjs +241 -241
  69. package/esm2020/core/data/definitions/order-definitions.mjs +431 -429
  70. package/esm2020/core/data/definitions/shared-definitions.mjs +29 -28
  71. package/esm2020/core/data/providers/collection-data.service.mjs +7 -2
  72. package/esm2020/core/data/providers/promotion-data.service.mjs +3 -2
  73. package/esm2020/core/providers/local-storage/local-storage.service.mjs +1 -1
  74. package/esm2020/core/public_api.mjs +8 -2
  75. package/esm2020/core/shared/components/address-form/address-form.component.mjs +3 -3
  76. package/esm2020/core/shared/components/asset-gallery/asset-gallery.component.mjs +33 -50
  77. package/esm2020/core/shared/components/asset-preview/asset-preview.component.mjs +4 -4
  78. package/esm2020/core/shared/components/configurable-input/configurable-input.component.mjs +22 -10
  79. package/esm2020/core/shared/components/custom-field-control/custom-field-control.component.mjs +10 -4
  80. package/esm2020/core/shared/components/data-table/data-table.component.mjs +10 -3
  81. package/esm2020/core/shared/components/facet-value-selector/facet-value-selector.component.mjs +7 -3
  82. package/esm2020/core/shared/components/formatted-address/formatted-address.component.mjs +3 -3
  83. package/esm2020/core/shared/components/help-tooltip/help-tooltip.component.mjs +2 -2
  84. package/esm2020/core/shared/components/object-tree/object-tree.component.mjs +4 -4
  85. package/esm2020/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.mjs +135 -0
  86. package/esm2020/core/shared/components/product-search-input/product-search-input.component.mjs +108 -0
  87. package/esm2020/core/shared/components/product-variant-selector/product-variant-selector.component.mjs +62 -0
  88. package/esm2020/core/shared/components/rich-text-editor/rich-text-editor.component.mjs +2 -2
  89. package/esm2020/core/shared/components/select-toggle/select-toggle.component.mjs +6 -3
  90. package/esm2020/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.mjs +45 -0
  91. package/esm2020/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.mjs +12 -3
  92. package/esm2020/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.mjs +48 -0
  93. package/esm2020/core/shared/dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component.mjs +4 -4
  94. package/esm2020/core/shared/dynamic-form-inputs/register-dynamic-input-components.mjs +5 -1
  95. package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.mjs +11 -9
  96. package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.mjs +54 -0
  97. package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.mjs +5 -4
  98. package/esm2020/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.mjs +21 -11
  99. package/esm2020/core/shared/pipes/custom-field-label.pipe.mjs +7 -19
  100. package/esm2020/core/shared/shared.module.mjs +29 -9
  101. package/esm2020/customer/components/customer-group-list/customer-group-list.component.mjs +29 -15
  102. package/esm2020/dashboard/components/dashboard/dashboard.component.mjs +2 -2
  103. package/esm2020/dashboard/components/dashboard-widget/dashboard-widget.component.mjs +2 -2
  104. package/esm2020/dashboard/widgets/order-summary-widget/order-summary-widget.component.mjs +2 -2
  105. package/esm2020/login/components/login/login.component.mjs +3 -3
  106. package/esm2020/marketing/components/promotion-detail/promotion-detail.component.mjs +3 -3
  107. package/esm2020/order/components/cancel-order-dialog/cancel-order-dialog.component.mjs +8 -4
  108. package/esm2020/order/components/fulfill-order-dialog/fulfill-order-dialog.component.mjs +1 -1
  109. package/esm2020/order/components/order-custom-fields-card/order-custom-fields-card.component.mjs +30 -6
  110. package/esm2020/order/components/order-detail/order-detail.component.mjs +31 -19
  111. package/esm2020/order/components/order-editor/order-editor.component.mjs +26 -10
  112. package/esm2020/order/components/order-list/order-list.component.mjs +23 -16
  113. package/esm2020/order/components/order-table/order-table.component.mjs +11 -3
  114. package/esm2020/order/components/refund-order-dialog/refund-order-dialog.component.mjs +8 -4
  115. package/esm2020/settings/components/payment-method-detail/payment-method-detail.component.mjs +1 -1
  116. package/esm2020/settings/components/permission-grid/permission-grid.component.mjs +1 -1
  117. package/esm2020/settings/components/shipping-method-detail/shipping-method-detail.component.mjs +1 -1
  118. package/esm2020/settings/components/test-order-builder/test-order-builder.component.mjs +3 -3
  119. package/fesm2015/vendure-admin-ui-catalog.mjs +218 -170
  120. package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
  121. package/fesm2015/vendure-admin-ui-core.mjs +3008 -2422
  122. package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
  123. package/fesm2015/vendure-admin-ui-customer.mjs +29 -17
  124. package/fesm2015/vendure-admin-ui-customer.mjs.map +1 -1
  125. package/fesm2015/vendure-admin-ui-dashboard.mjs +5 -5
  126. package/fesm2015/vendure-admin-ui-dashboard.mjs.map +1 -1
  127. package/fesm2015/vendure-admin-ui-login.mjs +2 -2
  128. package/fesm2015/vendure-admin-ui-login.mjs.map +1 -1
  129. package/fesm2015/vendure-admin-ui-marketing.mjs +2 -2
  130. package/fesm2015/vendure-admin-ui-marketing.mjs.map +1 -1
  131. package/fesm2015/vendure-admin-ui-order.mjs +125 -53
  132. package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
  133. package/fesm2015/vendure-admin-ui-settings.mjs +5 -5
  134. package/fesm2015/vendure-admin-ui-settings.mjs.map +1 -1
  135. package/fesm2020/vendure-admin-ui-catalog.mjs +216 -172
  136. package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
  137. package/fesm2020/vendure-admin-ui-core.mjs +2998 -2415
  138. package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
  139. package/fesm2020/vendure-admin-ui-customer.mjs +29 -17
  140. package/fesm2020/vendure-admin-ui-customer.mjs.map +1 -1
  141. package/fesm2020/vendure-admin-ui-dashboard.mjs +5 -5
  142. package/fesm2020/vendure-admin-ui-dashboard.mjs.map +1 -1
  143. package/fesm2020/vendure-admin-ui-login.mjs +2 -2
  144. package/fesm2020/vendure-admin-ui-login.mjs.map +1 -1
  145. package/fesm2020/vendure-admin-ui-marketing.mjs +2 -2
  146. package/fesm2020/vendure-admin-ui-marketing.mjs.map +1 -1
  147. package/fesm2020/vendure-admin-ui-order.mjs +123 -52
  148. package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
  149. package/fesm2020/vendure-admin-ui-settings.mjs +5 -5
  150. package/fesm2020/vendure-admin-ui-settings.mjs.map +1 -1
  151. package/order/components/order-custom-fields-card/order-custom-fields-card.component.d.ts +4 -2
  152. package/order/components/order-editor/order-editor.component.d.ts +8 -2
  153. package/order/components/order-list/order-list.component.d.ts +1 -0
  154. package/order/components/order-table/order-table.component.d.ts +1 -0
  155. package/package.json +2 -2
  156. package/static/i18n-messages/cs.json +21 -3
  157. package/static/i18n-messages/de.json +21 -3
  158. package/static/i18n-messages/en.json +20 -2
  159. package/static/i18n-messages/es.json +21 -3
  160. package/static/i18n-messages/fr.json +21 -3
  161. package/static/i18n-messages/it.json +21 -3
  162. package/static/i18n-messages/pl.json +21 -3
  163. package/static/i18n-messages/pt_BR.json +21 -3
  164. package/static/i18n-messages/pt_PT.json +21 -3
  165. package/static/i18n-messages/ru.json +21 -3
  166. package/static/i18n-messages/uk.json +21 -3
  167. package/static/i18n-messages/zh_Hans.json +21 -3
  168. package/static/i18n-messages/zh_Hant.json +21 -3
  169. package/static/styles/_variables.scss +3 -0
  170. package/static/styles/global/_forms.scss +4 -5
  171. package/static/styles/global/_overrides.scss +10 -0
  172. package/static/styles/global/_sass-overrides.scss +3 -0
  173. package/static/styles/global/_utilities.scss +9 -0
  174. package/static/styles/styles.scss +1 -0
  175. package/static/styles/theme/default.scss +13 -1
  176. package/static/styles/ui-extension-theme.scss +1 -0
  177. package/static/theme.min.css +1 -1
  178. package/static/vendure-ui-config.json +25 -10
  179. package/esm2020/catalog/components/product-search-input/product-search-input.component.mjs +0 -107
  180. package/esm2020/core/shared/components/product-selector/product-selector.component.mjs +0 -62
@@ -36,12 +36,13 @@ export declare class FacetValueSelectorComponent implements OnInit, ControlValue
36
36
  selectedValuesChange: EventEmitter<FacetValueFragment[]>;
37
37
  facets: FacetWithValuesFragment[];
38
38
  readonly: boolean;
39
+ transformControlValueAccessorValue: (value: FacetValueSeletorItem[]) => any[];
39
40
  private ngSelect;
40
41
  facetValues: FacetValueSeletorItem[];
41
42
  onChangeFn: (val: any) => void;
42
43
  onTouchFn: () => void;
43
44
  disabled: boolean;
44
- value: string[];
45
+ value: Array<string | FacetValueFragment>;
45
46
  constructor(dataService: DataService);
46
47
  ngOnInit(): void;
47
48
  onChange(selected: FacetValueSeletorItem[]): void;
@@ -52,5 +53,5 @@ export declare class FacetValueSelectorComponent implements OnInit, ControlValue
52
53
  writeValue(obj: string | FacetValueFragment[] | Array<string | number> | null): void;
53
54
  private toSelectorItem;
54
55
  static ɵfac: i0.ɵɵFactoryDeclaration<FacetValueSelectorComponent, never>;
55
- static ɵcmp: i0.ɵɵComponentDeclaration<FacetValueSelectorComponent, "vdr-facet-value-selector", never, { "facets": "facets"; "readonly": "readonly"; }, { "selectedValuesChange": "selectedValuesChange"; }, never, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<FacetValueSelectorComponent, "vdr-facet-value-selector", never, { "facets": "facets"; "readonly": "readonly"; "transformControlValueAccessorValue": "transformControlValueAccessorValue"; }, { "selectedValuesChange": "selectedValuesChange"; }, never, never>;
56
57
  }
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  /**
4
4
  * @description
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  *
12
12
  * @docsCategory components
13
13
  */
14
- export declare class ObjectTreeComponent implements OnInit {
14
+ export declare class ObjectTreeComponent implements OnChanges {
15
15
  value: {
16
16
  [key: string]: any;
17
17
  } | string;
@@ -24,7 +24,7 @@ export declare class ObjectTreeComponent implements OnInit {
24
24
  value: any;
25
25
  }>;
26
26
  constructor(parent: ObjectTreeComponent);
27
- ngOnInit(): void;
27
+ ngOnChanges(): void;
28
28
  isObject(value: any): boolean;
29
29
  private getEntries;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<ObjectTreeComponent, [{ optional: true; skipSelf: true; }]>;
@@ -0,0 +1,38 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { PaginationInstance } from 'ngx-pagination';
3
+ import { BehaviorSubject, Observable } from 'rxjs';
4
+ import { SearchProductsQuery } from '../../../common/generated-types';
5
+ import { SelectionManager } from '../../../common/utilities/selection-manager';
6
+ import { DataService } from '../../../data/providers/data.service';
7
+ import { Dialog } from '../../../providers/modal/modal.types';
8
+ import * as i0 from "@angular/core";
9
+ export declare type SearchItem = SearchProductsQuery['search']['items'][number];
10
+ export declare class ProductMultiSelectorDialogComponent implements OnInit, Dialog<SearchItem[]> {
11
+ private dataService;
12
+ private changeDetector;
13
+ mode: 'product' | 'variant';
14
+ initialSelectionIds: string[];
15
+ items$: Observable<SearchItem[]>;
16
+ facetValues$: Observable<SearchProductsQuery['search']['facetValues']>;
17
+ searchTerm$: BehaviorSubject<string>;
18
+ searchFacetValueIds$: BehaviorSubject<string[]>;
19
+ paginationConfig: PaginationInstance;
20
+ selectionManager: SelectionManager<SearchItem>;
21
+ resolveWith: (result?: SearchItem[]) => void;
22
+ private paginationConfig$;
23
+ constructor(dataService: DataService, changeDetector: ChangeDetectorRef);
24
+ ngOnInit(): void;
25
+ trackByFn(index: number, item: SearchItem): string;
26
+ setSearchTerm(term: string): void;
27
+ setFacetValueIds(ids: string[]): void;
28
+ toggleSelection(item: SearchItem, event: MouseEvent): void;
29
+ clearSelection(): void;
30
+ isSelected(item: SearchItem): boolean;
31
+ entityInfoClick(event: MouseEvent): void;
32
+ pageChange(page: number): void;
33
+ itemsPerPageChange(itemsPerPage: number): void;
34
+ select(): void;
35
+ cancel(): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProductMultiSelectorDialogComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductMultiSelectorDialogComponent, "vdr-product-multi-selector-dialog", never, {}, {}, never, never>;
38
+ }
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { SearchProductsQuery } from '@vendure/admin-ui/core';
2
+ import { SearchProductsQuery } from '../../../common/generated-types';
3
3
  import * as i0 from "@angular/core";
4
4
  declare type FacetValueResult = SearchProductsQuery['search']['facetValues'][number];
5
5
  export declare class ProductSearchInputComponent {
@@ -9,13 +9,13 @@ import * as i0 from "@angular/core";
9
9
  *
10
10
  * @example
11
11
  * ```HTML
12
- * <vdr-product-selector
12
+ * <vdr-product-variant-selector
13
13
  * (productSelected)="selectResult($event)"></vdr-product-selector>
14
14
  * ```
15
15
  *
16
16
  * @docsCategory components
17
17
  */
18
- export declare class ProductSelectorComponent implements OnInit {
18
+ export declare class ProductVariantSelectorComponent implements OnInit {
19
19
  private dataService;
20
20
  searchInput$: Subject<string>;
21
21
  searchLoading: boolean;
@@ -53,6 +53,6 @@ export declare class ProductSelectorComponent implements OnInit {
53
53
  ngOnInit(): void;
54
54
  private initSearchResults;
55
55
  selectResult(product?: ProductSelectorSearchQuery['search']['items'][number]): void;
56
- static ɵfac: i0.ɵɵFactoryDeclaration<ProductSelectorComponent, never>;
57
- static ɵcmp: i0.ɵɵComponentDeclaration<ProductSelectorComponent, "vdr-product-selector", never, {}, { "productSelected": "productSelected"; }, never, never>;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProductVariantSelectorComponent, never>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductVariantSelectorComponent, "vdr-product-variant-selector", never, {}, { "productSelected": "productSelected"; }, never, never>;
58
58
  }
@@ -6,9 +6,10 @@ import * as i0 from "@angular/core";
6
6
  export declare class SelectToggleComponent {
7
7
  size: 'small' | 'large';
8
8
  selected: boolean;
9
+ hiddenWhenOff: boolean;
9
10
  disabled: boolean;
10
11
  label: string | undefined;
11
12
  selectedChange: EventEmitter<boolean>;
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectToggleComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectToggleComponent, "vdr-select-toggle", never, { "size": "size"; "selected": "selected"; "disabled": "disabled"; "label": "label"; }, { "selectedChange": "selectedChange"; }, never, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectToggleComponent, "vdr-select-toggle", never, { "size": "size"; "selected": "selected"; "hiddenWhenOff": "hiddenWhenOff"; "disabled": "disabled"; "label": "label"; }, { "selectedChange": "selectedChange"; }, never, never>;
14
15
  }
@@ -0,0 +1,28 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { DefaultFormComponentConfig, DefaultFormComponentId } from '@vendure/common/lib/shared-types';
4
+ import { Observable } from 'rxjs';
5
+ import { FormInputComponent } from '../../../common/component-registry-types';
6
+ import { ConfigurableInputComponent } from '../../components/configurable-input/configurable-input.component';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @description
10
+ * A special input used to display the "Combination mode" AND/OR toggle.
11
+ *
12
+ * @docsCategory custom-input-components
13
+ * @docsPage default-inputs
14
+ */
15
+ export declare class CombinationModeFormInputComponent implements FormInputComponent, OnInit {
16
+ private configurableInputComponent;
17
+ static readonly id: DefaultFormComponentId;
18
+ readonly: boolean;
19
+ formControl: FormControl;
20
+ config: DefaultFormComponentConfig<'combination-mode-form-input'>;
21
+ selectable$: Observable<boolean>;
22
+ constructor(configurableInputComponent: ConfigurableInputComponent);
23
+ ngOnInit(): void;
24
+ setCombinationModeAnd(): void;
25
+ setCombinationModeOr(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<CombinationModeFormInputComponent, [{ optional: true; }]>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<CombinationModeFormInputComponent, "vdr-combination-mode-form-input", never, {}, {}, never, never>;
28
+ }
@@ -5,6 +5,7 @@ import { Observable } from 'rxjs';
5
5
  import { FormInputComponent, InputComponentConfig } from '../../../common/component-registry-types';
6
6
  import { FacetWithValuesFragment } from '../../../common/generated-types';
7
7
  import { DataService } from '../../../data/providers/data.service';
8
+ import { FacetValueSeletorItem } from '../../components/facet-value-selector/facet-value-selector.component';
8
9
  import * as i0 from "@angular/core";
9
10
  /**
10
11
  * @description
@@ -24,6 +25,7 @@ export declare class FacetValueFormInputComponent implements FormInputComponent,
24
25
  config: InputComponentConfig;
25
26
  constructor(dataService: DataService);
26
27
  ngOnInit(): void;
28
+ valueTransformFn: (values: FacetValueSeletorItem[]) => string | FacetValueSeletorItem[];
27
29
  static ɵfac: i0.ɵɵFactoryDeclaration<FacetValueFormInputComponent, never>;
28
30
  static ɵcmp: i0.ɵɵComponentDeclaration<FacetValueFormInputComponent, "vdr-facet-value-form-input", never, {}, {}, never, never>;
29
31
  }
@@ -0,0 +1,23 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { DefaultFormComponentConfig, DefaultFormComponentId } from '@vendure/common/lib/shared-types';
4
+ import { FormInputComponent } from '../../../common/component-registry-types';
5
+ import { DataService } from '../../../data/providers/data.service';
6
+ import { ModalService } from '../../../providers/modal/modal.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ProductMultiSelectorFormInputComponent implements OnInit, FormInputComponent {
9
+ private modalService;
10
+ private dataService;
11
+ private changeDetector;
12
+ config: DefaultFormComponentConfig<'product-multi-form-input'>;
13
+ formControl: FormControl;
14
+ readonly: boolean;
15
+ mode: 'product' | 'variant';
16
+ readonly isListInput = true;
17
+ static readonly id: DefaultFormComponentId;
18
+ constructor(modalService: ModalService, dataService: DataService, changeDetector: ChangeDetectorRef);
19
+ ngOnInit(): void;
20
+ select(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProductMultiSelectorFormInputComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductMultiSelectorFormInputComponent, "vdr-product-multi-selector-form-input", never, { "config": "config"; "formControl": "formControl"; "readonly": "readonly"; }, {}, never, never>;
23
+ }
@@ -2,12 +2,15 @@ import { FactoryProvider, Type } from '@angular/core';
2
2
  import { FormInputComponent } from '../../common/component-registry-types';
3
3
  import { CustomFieldControl, CustomFieldEntityName } from '../../providers/custom-field-component/custom-field-component.service';
4
4
  import { JsonEditorFormInputComponent } from './code-editor-form-input/json-editor-form-input.component';
5
+ import { CombinationModeFormInputComponent } from './combination-mode-form-input/combination-mode-form-input.component';
5
6
  import { CurrencyFormInputComponent } from './currency-form-input/currency-form-input.component';
6
7
  import { CustomerGroupFormInputComponent } from './customer-group-form-input/customer-group-form-input.component';
7
8
  import { FacetValueFormInputComponent } from './facet-value-form-input/facet-value-form-input.component';
8
9
  import { PasswordFormInputComponent } from './password-form-input/password-form-input.component';
10
+ import { ProductMultiSelectorFormInputComponent } from './product-multi-selector-form-input/product-multi-selector-form-input.component';
9
11
  import { ProductSelectorFormInputComponent } from './product-selector-form-input/product-selector-form-input.component';
10
- export declare const defaultFormInputs: (typeof JsonEditorFormInputComponent | typeof CurrencyFormInputComponent | typeof CustomerGroupFormInputComponent | typeof FacetValueFormInputComponent | typeof PasswordFormInputComponent | typeof ProductSelectorFormInputComponent)[];
12
+ import { SelectFormInputComponent } from './select-form-input/select-form-input.component';
13
+ export declare const defaultFormInputs: (typeof JsonEditorFormInputComponent | typeof CombinationModeFormInputComponent | typeof CurrencyFormInputComponent | typeof CustomerGroupFormInputComponent | typeof FacetValueFormInputComponent | typeof PasswordFormInputComponent | typeof ProductMultiSelectorFormInputComponent | typeof ProductSelectorFormInputComponent | typeof SelectFormInputComponent)[];
11
14
  /**
12
15
  * @description
13
16
  * Registers a custom FormInputComponent which can be used to control the argument inputs
@@ -1,15 +1,18 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
+ import { DefaultFormComponentId } from '@vendure/common/lib/shared-types';
3
4
  import { Observable } from 'rxjs';
5
+ import { FormInputComponent } from '../../../../common/component-registry-types';
4
6
  import { GetAssetQuery, RelationCustomFieldConfig } from '../../../../common/generated-types';
5
7
  import { DataService } from '../../../../data/providers/data.service';
6
8
  import { ModalService } from '../../../../providers/modal/modal.service';
7
9
  import * as i0 from "@angular/core";
8
- export declare class RelationAssetInputComponent implements OnInit {
10
+ export declare class RelationAssetInputComponent implements FormInputComponent, OnInit {
9
11
  private modalService;
10
12
  private dataService;
13
+ static readonly id: DefaultFormComponentId;
11
14
  readonly: boolean;
12
- parentFormControl: FormControl;
15
+ formControl: FormControl;
13
16
  config: RelationCustomFieldConfig;
14
17
  asset$: Observable<GetAssetQuery['asset'] | undefined>;
15
18
  constructor(modalService: ModalService, dataService: DataService);
@@ -18,5 +21,5 @@ export declare class RelationAssetInputComponent implements OnInit {
18
21
  remove(): void;
19
22
  previewAsset(asset: NonNullable<GetAssetQuery['asset']>): void;
20
23
  static ɵfac: i0.ɵɵFactoryDeclaration<RelationAssetInputComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<RelationAssetInputComponent, "vdr-relation-asset-input", never, { "readonly": "readonly"; "parentFormControl": "parentFormControl"; "config": "config"; }, {}, never, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<RelationAssetInputComponent, "vdr-relation-asset-input", never, { "readonly": "readonly"; "formControl": "parentFormControl"; "config": "config"; }, {}, never, never>;
22
25
  }
@@ -0,0 +1,18 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { RelationCustomFieldConfig } from '../../../../common/generated-types';
4
+ import { ModalService } from '../../../../providers/modal/modal.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class RelationGenericInputComponent {
7
+ private modalService;
8
+ readonly: boolean;
9
+ parentFormControl: FormControl;
10
+ config: RelationCustomFieldConfig;
11
+ relationId: string;
12
+ template: TemplateRef<any>;
13
+ constructor(modalService: ModalService);
14
+ selectRelationId(): void;
15
+ remove(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<RelationGenericInputComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<RelationGenericInputComponent, "vdr-relation-generic-input", never, { "readonly": "readonly"; "parentFormControl": "parentFormControl"; "config": "config"; }, {}, never, never>;
18
+ }
@@ -1,7 +1,10 @@
1
+ import { OnInit } from '@angular/core';
1
2
  import { FormControl } from '@angular/forms';
2
3
  import { DefaultFormComponentConfig, DefaultFormComponentId } from '@vendure/common/lib/shared-types';
4
+ import { Observable } from 'rxjs';
3
5
  import { FormInputComponent } from '../../../common/component-registry-types';
4
- import { CustomFieldConfigFragment } from '../../../common/generated-types';
6
+ import { CustomFieldConfigFragment, LanguageCode } from '../../../common/generated-types';
7
+ import { DataService } from '../../../data/providers/data.service';
5
8
  import * as i0 from "@angular/core";
6
9
  /**
7
10
  * @description
@@ -11,12 +14,17 @@ import * as i0 from "@angular/core";
11
14
  * @docsCategory custom-input-components
12
15
  * @docsPage default-inputs
13
16
  */
14
- export declare class SelectFormInputComponent implements FormInputComponent {
17
+ export declare class SelectFormInputComponent implements FormInputComponent, OnInit {
18
+ private dataService;
15
19
  static readonly id: DefaultFormComponentId;
16
20
  readonly: boolean;
17
21
  formControl: FormControl;
18
22
  config: DefaultFormComponentConfig<'select-form-input'> & CustomFieldConfigFragment;
23
+ uiLanguage$: Observable<LanguageCode>;
19
24
  get options(): any;
25
+ constructor(dataService: DataService);
26
+ ngOnInit(): void;
27
+ trackByFn(index: number, item: any): any;
20
28
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectFormInputComponent, never>;
21
29
  static ɵcmp: i0.ɵɵComponentDeclaration<SelectFormInputComponent, "vdr-select-form-input", never, { "readonly": "readonly"; }, {}, never, never>;
22
30
  }
@@ -1,18 +1,12 @@
1
- import { OnDestroy, PipeTransform } from '@angular/core';
2
- import { CustomFieldConfig, StringFieldOption } from '../../common/generated-types';
3
- import { DataService } from '../../data/providers/data.service';
1
+ import { PipeTransform } from '@angular/core';
2
+ import { CustomFieldConfig, LanguageCode, StringFieldOption } from '../../common/generated-types';
4
3
  import * as i0 from "@angular/core";
5
4
  /**
6
5
  * Displays a localized label for a CustomField or StringFieldOption, falling back to the
7
6
  * name/value if none are defined.
8
7
  */
9
- export declare class CustomFieldLabelPipe implements PipeTransform, OnDestroy {
10
- private dataService;
11
- private readonly subscription;
12
- private uiLanguageCode;
13
- constructor(dataService: DataService);
14
- transform(value: CustomFieldConfig | StringFieldOption): string;
15
- ngOnDestroy(): void;
8
+ export declare class CustomFieldLabelPipe implements PipeTransform {
9
+ transform(value: CustomFieldConfig | StringFieldOption, uiLanguageCode: LanguageCode | null): string;
16
10
  private isCustomFieldConfig;
17
11
  static ɵfac: i0.ɵɵFactoryDeclaration<CustomFieldLabelPipe, never>;
18
12
  static ɵpipe: i0.ɵɵPipeDeclaration<CustomFieldLabelPipe, "customFieldLabel">;
@@ -73,7 +73,7 @@ import * as i68 from "./components/history-entry-detail/history-entry-detail.com
73
73
  import * as i69 from "./components/edit-note-dialog/edit-note-dialog.component";
74
74
  import * as i70 from "./dynamic-form-inputs/product-selector-form-input/product-selector-form-input.component";
75
75
  import * as i71 from "./pipes/state-i18n-token.pipe";
76
- import * as i72 from "./components/product-selector/product-selector.component";
76
+ import * as i72 from "./components/product-variant-selector/product-variant-selector.component";
77
77
  import * as i73 from "./components/help-tooltip/help-tooltip.component";
78
78
  import * as i74 from "./dynamic-form-inputs/customer-group-form-input/customer-group-form-input.component";
79
79
  import * as i75 from "./components/address-form/address-form.component";
@@ -90,34 +90,39 @@ import * as i85 from "./components/tabbed-custom-fields/tabbed-custom-fields.com
90
90
  import * as i86 from "./components/ui-extension-point/ui-extension-point.component";
91
91
  import * as i87 from "./components/custom-detail-component-host/custom-detail-component-host.component";
92
92
  import * as i88 from "./components/asset-preview-links/asset-preview-links.component";
93
- import * as i89 from "./dynamic-form-inputs/text-form-input/text-form-input.component";
94
- import * as i90 from "./dynamic-form-inputs/password-form-input/password-form-input.component";
95
- import * as i91 from "./dynamic-form-inputs/number-form-input/number-form-input.component";
96
- import * as i92 from "./dynamic-form-inputs/date-form-input/date-form-input.component";
97
- import * as i93 from "./dynamic-form-inputs/currency-form-input/currency-form-input.component";
98
- import * as i94 from "./dynamic-form-inputs/boolean-form-input/boolean-form-input.component";
99
- import * as i95 from "./dynamic-form-inputs/select-form-input/select-form-input.component";
100
- import * as i96 from "./dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component";
101
- import * as i97 from "./dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component";
102
- import * as i98 from "./dynamic-form-inputs/relation-form-input/relation-form-input.component";
103
- import * as i99 from "./dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component";
104
- import * as i100 from "./dynamic-form-inputs/relation-form-input/product/relation-product-input.component";
105
- import * as i101 from "./dynamic-form-inputs/relation-form-input/product-variant/relation-product-variant-input.component";
106
- import * as i102 from "./dynamic-form-inputs/relation-form-input/customer/relation-customer-input.component";
107
- import * as i103 from "./dynamic-form-inputs/textarea-form-input/textarea-form-input.component";
108
- import * as i104 from "./dynamic-form-inputs/rich-text-form-input/rich-text-form-input.component";
109
- import * as i105 from "./dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component";
110
- import * as i106 from "@clr/angular";
111
- import * as i107 from "@angular/common";
112
- import * as i108 from "@angular/forms";
113
- import * as i109 from "@angular/router";
114
- import * as i110 from "@ng-select/ng-select";
115
- import * as i111 from "ngx-pagination";
116
- import * as i112 from "@ngx-translate/core";
117
- import * as i113 from "@angular/cdk/overlay";
118
- import * as i114 from "@angular/cdk/drag-drop";
93
+ import * as i89 from "./components/product-multi-selector-dialog/product-multi-selector-dialog.component";
94
+ import * as i90 from "./components/product-search-input/product-search-input.component";
95
+ import * as i91 from "./dynamic-form-inputs/text-form-input/text-form-input.component";
96
+ import * as i92 from "./dynamic-form-inputs/password-form-input/password-form-input.component";
97
+ import * as i93 from "./dynamic-form-inputs/number-form-input/number-form-input.component";
98
+ import * as i94 from "./dynamic-form-inputs/date-form-input/date-form-input.component";
99
+ import * as i95 from "./dynamic-form-inputs/currency-form-input/currency-form-input.component";
100
+ import * as i96 from "./dynamic-form-inputs/boolean-form-input/boolean-form-input.component";
101
+ import * as i97 from "./dynamic-form-inputs/select-form-input/select-form-input.component";
102
+ import * as i98 from "./dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component";
103
+ import * as i99 from "./dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component";
104
+ import * as i100 from "./dynamic-form-inputs/relation-form-input/relation-form-input.component";
105
+ import * as i101 from "./dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component";
106
+ import * as i102 from "./dynamic-form-inputs/relation-form-input/product/relation-product-input.component";
107
+ import * as i103 from "./dynamic-form-inputs/relation-form-input/product-variant/relation-product-variant-input.component";
108
+ import * as i104 from "./dynamic-form-inputs/relation-form-input/customer/relation-customer-input.component";
109
+ import * as i105 from "./dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component";
110
+ import * as i106 from "./dynamic-form-inputs/textarea-form-input/textarea-form-input.component";
111
+ import * as i107 from "./dynamic-form-inputs/rich-text-form-input/rich-text-form-input.component";
112
+ import * as i108 from "./dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component";
113
+ import * as i109 from "./dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component";
114
+ import * as i110 from "./dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component";
115
+ import * as i111 from "@clr/angular";
116
+ import * as i112 from "@angular/common";
117
+ import * as i113 from "@angular/forms";
118
+ import * as i114 from "@angular/router";
119
+ import * as i115 from "@ng-select/ng-select";
120
+ import * as i116 from "ngx-pagination";
121
+ import * as i117 from "@ngx-translate/core";
122
+ import * as i118 from "@angular/cdk/overlay";
123
+ import * as i119 from "@angular/cdk/drag-drop";
119
124
  export declare class SharedModule {
120
125
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
121
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.ActionBarComponent, typeof i1.ActionBarLeftComponent, typeof i1.ActionBarRightComponent, typeof i2.AssetPreviewComponent, typeof i3.AssetPreviewDialogComponent, typeof i4.AssetSearchInputComponent, typeof i5.ConfigurableInputComponent, typeof i6.AffixedInputComponent, typeof i7.ChipComponent, typeof i8.CurrencyInputComponent, typeof i9.LocaleCurrencyNamePipe, typeof i10.CustomerLabelComponent, typeof i11.CustomFieldControlComponent, typeof i12.DataTableComponent, typeof i13.DataTableColumnComponent, typeof i14.FacetValueSelectorComponent, typeof i15.ItemsPerPageControlsComponent, typeof i16.PaginationControlsComponent, typeof i17.TableRowActionComponent, typeof i18.FacetValueChipComponent, typeof i19.FileSizePipe, typeof i20.FormFieldComponent, typeof i21.FormFieldControlDirective, typeof i22.FormItemComponent, typeof i23.ModalDialogComponent, typeof i24.PercentageSuffixInputComponent, typeof i25.DialogComponentOutletComponent, typeof i26.DialogButtonsDirective, typeof i27.DialogTitleDirective, typeof i28.SelectToggleComponent, typeof i29.LanguageSelectorComponent, typeof i30.RichTextEditorComponent, typeof i31.SimpleDialogComponent, typeof i32.TitleInputComponent, typeof i33.SentenceCasePipe, typeof i34.DropdownComponent, typeof i35.DropdownMenuComponent, typeof i36.SortPipe, typeof i37.DropdownTriggerDirective, typeof i38.DropdownItemDirective, typeof i39.OrderStateLabelComponent, typeof i40.FormattedAddressComponent, typeof i41.LabeledDataComponent, typeof i42.StringToColorPipe, typeof i43.ObjectTreeComponent, typeof i44.IfPermissionsDirective, typeof i45.IfMultichannelDirective, typeof i46.HasPermissionPipe, typeof i47.ActionBarItemsComponent, typeof i48.DisabledDirective, typeof i49.AssetFileInputComponent, typeof i50.AssetGalleryComponent, typeof i51.AssetPickerDialogComponent, typeof i52.EntityInfoComponent, typeof i53.DatetimePickerComponent, typeof i54.ChannelBadgeComponent, typeof i55.ChannelAssignmentControlComponent, typeof i56.ChannelLabelPipe, typeof i57.IfDefaultChannelActiveDirective, typeof i58.ExtensionHostComponent, typeof i59.CustomFieldLabelPipe, typeof i60.FocalPointControlComponent, typeof i61.AssetPreviewPipe, typeof i62.LinkDialogComponent, typeof i63.ExternalImageDialogComponent, typeof i64.TimeAgoPipe, typeof i65.DurationPipe, typeof i66.EmptyPlaceholderComponent, typeof i67.TimelineEntryComponent, typeof i68.HistoryEntryDetailComponent, typeof i69.EditNoteDialogComponent, typeof i70.ProductSelectorFormInputComponent, typeof i71.StateI18nTokenPipe, typeof i72.ProductSelectorComponent, typeof i73.HelpTooltipComponent, typeof i74.CustomerGroupFormInputComponent, typeof i75.AddressFormComponent, typeof i76.LocaleDatePipe, typeof i77.LocaleCurrencyPipe, typeof i78.LocaleLanguageNamePipe, typeof i79.LocaleRegionNamePipe, typeof i80.TagSelectorComponent, typeof i81.ManageTagsDialogComponent, typeof i82.RelationSelectorDialogComponent, typeof i83.RelationCardComponent, typeof i84.StatusBadgeComponent, typeof i85.TabbedCustomFieldsComponent, typeof i86.UiExtensionPointComponent, typeof i87.CustomDetailComponentHostComponent, typeof i88.AssetPreviewLinksComponent, typeof i89.TextFormInputComponent, typeof i90.PasswordFormInputComponent, typeof i91.NumberFormInputComponent, typeof i92.DateFormInputComponent, typeof i93.CurrencyFormInputComponent, typeof i94.BooleanFormInputComponent, typeof i95.SelectFormInputComponent, typeof i96.FacetValueFormInputComponent, typeof i97.DynamicFormInputComponent, typeof i98.RelationFormInputComponent, typeof i99.RelationAssetInputComponent, typeof i100.RelationProductInputComponent, typeof i101.RelationProductVariantInputComponent, typeof i102.RelationCustomerInputComponent, typeof i83.RelationCardPreviewDirective, typeof i83.RelationCardDetailDirective, typeof i82.RelationSelectorDialogComponent, typeof i103.TextareaFormInputComponent, typeof i104.RichTextFormInputComponent, typeof i105.JsonEditorFormInputComponent], [typeof i106.ClarityModule, typeof i107.CommonModule, typeof i108.FormsModule, typeof i108.ReactiveFormsModule, typeof i109.RouterModule, typeof i110.NgSelectModule, typeof i111.NgxPaginationModule, typeof i112.TranslateModule, typeof i113.OverlayModule, typeof i114.DragDropModule], [typeof i106.ClarityModule, typeof i107.CommonModule, typeof i108.FormsModule, typeof i108.ReactiveFormsModule, typeof i109.RouterModule, typeof i110.NgSelectModule, typeof i111.NgxPaginationModule, typeof i112.TranslateModule, typeof i113.OverlayModule, typeof i114.DragDropModule, typeof i1.ActionBarComponent, typeof i1.ActionBarLeftComponent, typeof i1.ActionBarRightComponent, typeof i2.AssetPreviewComponent, typeof i3.AssetPreviewDialogComponent, typeof i4.AssetSearchInputComponent, typeof i5.ConfigurableInputComponent, typeof i6.AffixedInputComponent, typeof i7.ChipComponent, typeof i8.CurrencyInputComponent, typeof i9.LocaleCurrencyNamePipe, typeof i10.CustomerLabelComponent, typeof i11.CustomFieldControlComponent, typeof i12.DataTableComponent, typeof i13.DataTableColumnComponent, typeof i14.FacetValueSelectorComponent, typeof i15.ItemsPerPageControlsComponent, typeof i16.PaginationControlsComponent, typeof i17.TableRowActionComponent, typeof i18.FacetValueChipComponent, typeof i19.FileSizePipe, typeof i20.FormFieldComponent, typeof i21.FormFieldControlDirective, typeof i22.FormItemComponent, typeof i23.ModalDialogComponent, typeof i24.PercentageSuffixInputComponent, typeof i25.DialogComponentOutletComponent, typeof i26.DialogButtonsDirective, typeof i27.DialogTitleDirective, typeof i28.SelectToggleComponent, typeof i29.LanguageSelectorComponent, typeof i30.RichTextEditorComponent, typeof i31.SimpleDialogComponent, typeof i32.TitleInputComponent, typeof i33.SentenceCasePipe, typeof i34.DropdownComponent, typeof i35.DropdownMenuComponent, typeof i36.SortPipe, typeof i37.DropdownTriggerDirective, typeof i38.DropdownItemDirective, typeof i39.OrderStateLabelComponent, typeof i40.FormattedAddressComponent, typeof i41.LabeledDataComponent, typeof i42.StringToColorPipe, typeof i43.ObjectTreeComponent, typeof i44.IfPermissionsDirective, typeof i45.IfMultichannelDirective, typeof i46.HasPermissionPipe, typeof i47.ActionBarItemsComponent, typeof i48.DisabledDirective, typeof i49.AssetFileInputComponent, typeof i50.AssetGalleryComponent, typeof i51.AssetPickerDialogComponent, typeof i52.EntityInfoComponent, typeof i53.DatetimePickerComponent, typeof i54.ChannelBadgeComponent, typeof i55.ChannelAssignmentControlComponent, typeof i56.ChannelLabelPipe, typeof i57.IfDefaultChannelActiveDirective, typeof i58.ExtensionHostComponent, typeof i59.CustomFieldLabelPipe, typeof i60.FocalPointControlComponent, typeof i61.AssetPreviewPipe, typeof i62.LinkDialogComponent, typeof i63.ExternalImageDialogComponent, typeof i64.TimeAgoPipe, typeof i65.DurationPipe, typeof i66.EmptyPlaceholderComponent, typeof i67.TimelineEntryComponent, typeof i68.HistoryEntryDetailComponent, typeof i69.EditNoteDialogComponent, typeof i70.ProductSelectorFormInputComponent, typeof i71.StateI18nTokenPipe, typeof i72.ProductSelectorComponent, typeof i73.HelpTooltipComponent, typeof i74.CustomerGroupFormInputComponent, typeof i75.AddressFormComponent, typeof i76.LocaleDatePipe, typeof i77.LocaleCurrencyPipe, typeof i78.LocaleLanguageNamePipe, typeof i79.LocaleRegionNamePipe, typeof i80.TagSelectorComponent, typeof i81.ManageTagsDialogComponent, typeof i82.RelationSelectorDialogComponent, typeof i83.RelationCardComponent, typeof i84.StatusBadgeComponent, typeof i85.TabbedCustomFieldsComponent, typeof i86.UiExtensionPointComponent, typeof i87.CustomDetailComponentHostComponent, typeof i88.AssetPreviewLinksComponent, typeof i89.TextFormInputComponent, typeof i90.PasswordFormInputComponent, typeof i91.NumberFormInputComponent, typeof i92.DateFormInputComponent, typeof i93.CurrencyFormInputComponent, typeof i94.BooleanFormInputComponent, typeof i95.SelectFormInputComponent, typeof i96.FacetValueFormInputComponent, typeof i97.DynamicFormInputComponent, typeof i98.RelationFormInputComponent, typeof i99.RelationAssetInputComponent, typeof i100.RelationProductInputComponent, typeof i101.RelationProductVariantInputComponent, typeof i102.RelationCustomerInputComponent, typeof i83.RelationCardPreviewDirective, typeof i83.RelationCardDetailDirective, typeof i82.RelationSelectorDialogComponent, typeof i103.TextareaFormInputComponent, typeof i104.RichTextFormInputComponent, typeof i105.JsonEditorFormInputComponent]>;
126
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.ActionBarComponent, typeof i1.ActionBarLeftComponent, typeof i1.ActionBarRightComponent, typeof i2.AssetPreviewComponent, typeof i3.AssetPreviewDialogComponent, typeof i4.AssetSearchInputComponent, typeof i5.ConfigurableInputComponent, typeof i6.AffixedInputComponent, typeof i7.ChipComponent, typeof i8.CurrencyInputComponent, typeof i9.LocaleCurrencyNamePipe, typeof i10.CustomerLabelComponent, typeof i11.CustomFieldControlComponent, typeof i12.DataTableComponent, typeof i13.DataTableColumnComponent, typeof i14.FacetValueSelectorComponent, typeof i15.ItemsPerPageControlsComponent, typeof i16.PaginationControlsComponent, typeof i17.TableRowActionComponent, typeof i18.FacetValueChipComponent, typeof i19.FileSizePipe, typeof i20.FormFieldComponent, typeof i21.FormFieldControlDirective, typeof i22.FormItemComponent, typeof i23.ModalDialogComponent, typeof i24.PercentageSuffixInputComponent, typeof i25.DialogComponentOutletComponent, typeof i26.DialogButtonsDirective, typeof i27.DialogTitleDirective, typeof i28.SelectToggleComponent, typeof i29.LanguageSelectorComponent, typeof i30.RichTextEditorComponent, typeof i31.SimpleDialogComponent, typeof i32.TitleInputComponent, typeof i33.SentenceCasePipe, typeof i34.DropdownComponent, typeof i35.DropdownMenuComponent, typeof i36.SortPipe, typeof i37.DropdownTriggerDirective, typeof i38.DropdownItemDirective, typeof i39.OrderStateLabelComponent, typeof i40.FormattedAddressComponent, typeof i41.LabeledDataComponent, typeof i42.StringToColorPipe, typeof i43.ObjectTreeComponent, typeof i44.IfPermissionsDirective, typeof i45.IfMultichannelDirective, typeof i46.HasPermissionPipe, typeof i47.ActionBarItemsComponent, typeof i48.DisabledDirective, typeof i49.AssetFileInputComponent, typeof i50.AssetGalleryComponent, typeof i51.AssetPickerDialogComponent, typeof i52.EntityInfoComponent, typeof i53.DatetimePickerComponent, typeof i54.ChannelBadgeComponent, typeof i55.ChannelAssignmentControlComponent, typeof i56.ChannelLabelPipe, typeof i57.IfDefaultChannelActiveDirective, typeof i58.ExtensionHostComponent, typeof i59.CustomFieldLabelPipe, typeof i60.FocalPointControlComponent, typeof i61.AssetPreviewPipe, typeof i62.LinkDialogComponent, typeof i63.ExternalImageDialogComponent, typeof i64.TimeAgoPipe, typeof i65.DurationPipe, typeof i66.EmptyPlaceholderComponent, typeof i67.TimelineEntryComponent, typeof i68.HistoryEntryDetailComponent, typeof i69.EditNoteDialogComponent, typeof i70.ProductSelectorFormInputComponent, typeof i71.StateI18nTokenPipe, typeof i72.ProductVariantSelectorComponent, typeof i73.HelpTooltipComponent, typeof i74.CustomerGroupFormInputComponent, typeof i75.AddressFormComponent, typeof i76.LocaleDatePipe, typeof i77.LocaleCurrencyPipe, typeof i78.LocaleLanguageNamePipe, typeof i79.LocaleRegionNamePipe, typeof i80.TagSelectorComponent, typeof i81.ManageTagsDialogComponent, typeof i82.RelationSelectorDialogComponent, typeof i83.RelationCardComponent, typeof i84.StatusBadgeComponent, typeof i85.TabbedCustomFieldsComponent, typeof i86.UiExtensionPointComponent, typeof i87.CustomDetailComponentHostComponent, typeof i88.AssetPreviewLinksComponent, typeof i89.ProductMultiSelectorDialogComponent, typeof i90.ProductSearchInputComponent, typeof i91.TextFormInputComponent, typeof i92.PasswordFormInputComponent, typeof i93.NumberFormInputComponent, typeof i94.DateFormInputComponent, typeof i95.CurrencyFormInputComponent, typeof i96.BooleanFormInputComponent, typeof i97.SelectFormInputComponent, typeof i98.FacetValueFormInputComponent, typeof i99.DynamicFormInputComponent, typeof i100.RelationFormInputComponent, typeof i101.RelationAssetInputComponent, typeof i102.RelationProductInputComponent, typeof i103.RelationProductVariantInputComponent, typeof i104.RelationCustomerInputComponent, typeof i83.RelationCardPreviewDirective, typeof i83.RelationCardDetailDirective, typeof i82.RelationSelectorDialogComponent, typeof i105.RelationGenericInputComponent, typeof i106.TextareaFormInputComponent, typeof i107.RichTextFormInputComponent, typeof i108.JsonEditorFormInputComponent, typeof i109.ProductMultiSelectorFormInputComponent, typeof i110.CombinationModeFormInputComponent], [typeof i111.ClarityModule, typeof i112.CommonModule, typeof i113.FormsModule, typeof i113.ReactiveFormsModule, typeof i114.RouterModule, typeof i115.NgSelectModule, typeof i116.NgxPaginationModule, typeof i117.TranslateModule, typeof i118.OverlayModule, typeof i119.DragDropModule], [typeof i111.ClarityModule, typeof i112.CommonModule, typeof i113.FormsModule, typeof i113.ReactiveFormsModule, typeof i114.RouterModule, typeof i115.NgSelectModule, typeof i116.NgxPaginationModule, typeof i117.TranslateModule, typeof i118.OverlayModule, typeof i119.DragDropModule, typeof i1.ActionBarComponent, typeof i1.ActionBarLeftComponent, typeof i1.ActionBarRightComponent, typeof i2.AssetPreviewComponent, typeof i3.AssetPreviewDialogComponent, typeof i4.AssetSearchInputComponent, typeof i5.ConfigurableInputComponent, typeof i6.AffixedInputComponent, typeof i7.ChipComponent, typeof i8.CurrencyInputComponent, typeof i9.LocaleCurrencyNamePipe, typeof i10.CustomerLabelComponent, typeof i11.CustomFieldControlComponent, typeof i12.DataTableComponent, typeof i13.DataTableColumnComponent, typeof i14.FacetValueSelectorComponent, typeof i15.ItemsPerPageControlsComponent, typeof i16.PaginationControlsComponent, typeof i17.TableRowActionComponent, typeof i18.FacetValueChipComponent, typeof i19.FileSizePipe, typeof i20.FormFieldComponent, typeof i21.FormFieldControlDirective, typeof i22.FormItemComponent, typeof i23.ModalDialogComponent, typeof i24.PercentageSuffixInputComponent, typeof i25.DialogComponentOutletComponent, typeof i26.DialogButtonsDirective, typeof i27.DialogTitleDirective, typeof i28.SelectToggleComponent, typeof i29.LanguageSelectorComponent, typeof i30.RichTextEditorComponent, typeof i31.SimpleDialogComponent, typeof i32.TitleInputComponent, typeof i33.SentenceCasePipe, typeof i34.DropdownComponent, typeof i35.DropdownMenuComponent, typeof i36.SortPipe, typeof i37.DropdownTriggerDirective, typeof i38.DropdownItemDirective, typeof i39.OrderStateLabelComponent, typeof i40.FormattedAddressComponent, typeof i41.LabeledDataComponent, typeof i42.StringToColorPipe, typeof i43.ObjectTreeComponent, typeof i44.IfPermissionsDirective, typeof i45.IfMultichannelDirective, typeof i46.HasPermissionPipe, typeof i47.ActionBarItemsComponent, typeof i48.DisabledDirective, typeof i49.AssetFileInputComponent, typeof i50.AssetGalleryComponent, typeof i51.AssetPickerDialogComponent, typeof i52.EntityInfoComponent, typeof i53.DatetimePickerComponent, typeof i54.ChannelBadgeComponent, typeof i55.ChannelAssignmentControlComponent, typeof i56.ChannelLabelPipe, typeof i57.IfDefaultChannelActiveDirective, typeof i58.ExtensionHostComponent, typeof i59.CustomFieldLabelPipe, typeof i60.FocalPointControlComponent, typeof i61.AssetPreviewPipe, typeof i62.LinkDialogComponent, typeof i63.ExternalImageDialogComponent, typeof i64.TimeAgoPipe, typeof i65.DurationPipe, typeof i66.EmptyPlaceholderComponent, typeof i67.TimelineEntryComponent, typeof i68.HistoryEntryDetailComponent, typeof i69.EditNoteDialogComponent, typeof i70.ProductSelectorFormInputComponent, typeof i71.StateI18nTokenPipe, typeof i72.ProductVariantSelectorComponent, typeof i73.HelpTooltipComponent, typeof i74.CustomerGroupFormInputComponent, typeof i75.AddressFormComponent, typeof i76.LocaleDatePipe, typeof i77.LocaleCurrencyPipe, typeof i78.LocaleLanguageNamePipe, typeof i79.LocaleRegionNamePipe, typeof i80.TagSelectorComponent, typeof i81.ManageTagsDialogComponent, typeof i82.RelationSelectorDialogComponent, typeof i83.RelationCardComponent, typeof i84.StatusBadgeComponent, typeof i85.TabbedCustomFieldsComponent, typeof i86.UiExtensionPointComponent, typeof i87.CustomDetailComponentHostComponent, typeof i88.AssetPreviewLinksComponent, typeof i89.ProductMultiSelectorDialogComponent, typeof i90.ProductSearchInputComponent, typeof i91.TextFormInputComponent, typeof i92.PasswordFormInputComponent, typeof i93.NumberFormInputComponent, typeof i94.DateFormInputComponent, typeof i95.CurrencyFormInputComponent, typeof i96.BooleanFormInputComponent, typeof i97.SelectFormInputComponent, typeof i98.FacetValueFormInputComponent, typeof i99.DynamicFormInputComponent, typeof i100.RelationFormInputComponent, typeof i101.RelationAssetInputComponent, typeof i102.RelationProductInputComponent, typeof i103.RelationProductVariantInputComponent, typeof i104.RelationCustomerInputComponent, typeof i83.RelationCardPreviewDirective, typeof i83.RelationCardDetailDirective, typeof i82.RelationSelectorDialogComponent, typeof i105.RelationGenericInputComponent, typeof i106.TextareaFormInputComponent, typeof i107.RichTextFormInputComponent, typeof i108.JsonEditorFormInputComponent, typeof i109.ProductMultiSelectorFormInputComponent, typeof i110.CombinationModeFormInputComponent]>;
122
127
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
123
128
  }
@@ -1,17 +1,19 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
2
3
  import { ActivatedRoute, Router } from '@angular/router';
3
- import { DataService, GetCustomerGroupsQuery, GetCustomerGroupWithCustomersQuery, ItemOf, ModalService, NotificationService } from '@vendure/admin-ui/core';
4
+ import { BaseListComponent, DataService, GetCustomerGroupsQuery, GetCustomerGroupWithCustomersQuery, ItemOf, ModalService, NotificationService } from '@vendure/admin-ui/core';
4
5
  import { BehaviorSubject, Observable } from 'rxjs';
5
6
  import { CustomerGroupMemberFetchParams } from '../customer-group-member-list/customer-group-member-list.component';
6
7
  import * as i0 from "@angular/core";
7
- export declare class CustomerGroupListComponent implements OnInit {
8
+ export declare class CustomerGroupListComponent extends BaseListComponent<GetCustomerGroupsQuery, GetCustomerGroupsQuery['customerGroups']['items'][number]> implements OnInit {
8
9
  private dataService;
9
10
  private notificationService;
10
11
  private modalService;
11
12
  route: ActivatedRoute;
12
- private router;
13
+ protected router: Router;
14
+ searchTerm: FormControl;
13
15
  activeGroup$: Observable<ItemOf<GetCustomerGroupsQuery, 'customerGroups'> | undefined>;
14
- groups$: Observable<Array<ItemOf<GetCustomerGroupsQuery, 'customerGroups'>>>;
16
+ activeGroupId: string | undefined;
15
17
  listIsEmpty$: Observable<boolean>;
16
18
  members$: Observable<NonNullable<GetCustomerGroupWithCustomersQuery['customerGroup']>['customers']['items']>;
17
19
  membersTotal$: Observable<number>;
@@ -20,7 +20,6 @@ import { OptionValueInputComponent } from './components/option-value-input/optio
20
20
  import { ProductDetailComponent } from './components/product-detail/product-detail.component';
21
21
  import { ProductListComponent } from './components/product-list/product-list.component';
22
22
  import { ProductOptionsEditorComponent } from './components/product-options-editor/product-options-editor.component';
23
- import { ProductSearchInputComponent } from './components/product-search-input/product-search-input.component';
24
23
  import { ProductVariantsEditorComponent } from './components/product-variants-editor/product-variants-editor.component';
25
24
  import { ProductVariantsListComponent } from './components/product-variants-list/product-variants-list.component';
26
25
  import { ProductVariantsTableComponent } from './components/product-variants-table/product-variants-table.component';
@@ -45,7 +44,6 @@ const CATALOG_COMPONENTS = [
45
44
  CollectionTreeNodeComponent,
46
45
  CollectionContentsComponent,
47
46
  ProductVariantsTableComponent,
48
- ProductSearchInputComponent,
49
47
  OptionValueInputComponent,
50
48
  UpdateProductOptionDialogComponent,
51
49
  ProductVariantsEditorComponent,
@@ -73,7 +71,6 @@ CatalogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
73
71
  CollectionTreeNodeComponent,
74
72
  CollectionContentsComponent,
75
73
  ProductVariantsTableComponent,
76
- ProductSearchInputComponent,
77
74
  OptionValueInputComponent,
78
75
  UpdateProductOptionDialogComponent,
79
76
  ProductVariantsEditorComponent,
@@ -96,7 +93,6 @@ CatalogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
96
93
  CollectionTreeNodeComponent,
97
94
  CollectionContentsComponent,
98
95
  ProductVariantsTableComponent,
99
- ProductSearchInputComponent,
100
96
  OptionValueInputComponent,
101
97
  UpdateProductOptionDialogComponent,
102
98
  ProductVariantsEditorComponent,
@@ -113,4 +109,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImpor
113
109
  declarations: [...CATALOG_COMPONENTS],
114
110
  }]
115
111
  }] });
116
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0YWxvZy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbGliL2NhdGFsb2cvc3JjL2NhdGFsb2cubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUV0RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDakQsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDekcsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFDeEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDbEYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxzQ0FBc0MsRUFBRSxNQUFNLDRGQUE0RixDQUFDO0FBQ3BKLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGdFQUFnRSxDQUFDO0FBQzdHLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDREQUE0RCxDQUFDO0FBQ3ZHLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ2pHLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDO0FBQzFHLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ2pHLE9BQU8sRUFBRSxxQ0FBcUMsRUFBRSxNQUFNLHdGQUF3RixDQUFDO0FBQy9JLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ3hGLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhDQUE4QyxDQUFDO0FBQ2xGLE9BQU8sRUFBRSxnQ0FBZ0MsRUFBRSxNQUFNLDRFQUE0RSxDQUFDO0FBQzlILE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDhEQUE4RCxDQUFDO0FBQ3pHLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHNEQUFzRCxDQUFDO0FBQzlGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ3hGLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHNFQUFzRSxDQUFDO0FBQ3JILE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGtFQUFrRSxDQUFDO0FBQy9HLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLHdFQUF3RSxDQUFDO0FBQ3hILE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLG9FQUFvRSxDQUFDO0FBQ2xILE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHNFQUFzRSxDQUFDO0FBQ3JILE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGtGQUFrRixDQUFDO0FBQ3RJLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGtFQUFrRSxDQUFDOzs7QUFFL0csTUFBTSxrQkFBa0IsR0FBRztJQUN2QixvQkFBb0I7SUFDcEIsc0JBQXNCO0lBQ3RCLGtCQUFrQjtJQUNsQixvQkFBb0I7SUFDcEIsZ0NBQWdDO0lBQ2hDLDRCQUE0QjtJQUM1Qix5QkFBeUI7SUFDekIsa0JBQWtCO0lBQ2xCLGVBQWU7SUFDZiwyQkFBMkI7SUFDM0IsdUJBQXVCO0lBQ3ZCLHlCQUF5QjtJQUN6Qix1QkFBdUI7SUFDdkIsMkJBQTJCO0lBQzNCLDJCQUEyQjtJQUMzQiw2QkFBNkI7SUFDN0IsMkJBQTJCO0lBQzNCLHlCQUF5QjtJQUN6QixrQ0FBa0M7SUFDbEMsOEJBQThCO0lBQzlCLHNDQUFzQztJQUN0QyxvQkFBb0I7SUFDcEIscUNBQXFDO0lBQ3JDLDZCQUE2QjtDQUNoQyxDQUFDO0FBT0YsTUFBTSxPQUFPLGFBQWE7OzBHQUFiLGFBQWE7MkdBQWIsYUFBYSxpQkEvQnRCLG9CQUFvQjtRQUNwQixzQkFBc0I7UUFDdEIsa0JBQWtCO1FBQ2xCLG9CQUFvQjtRQUNwQixnQ0FBZ0M7UUFDaEMsNEJBQTRCO1FBQzVCLHlCQUF5QjtRQUN6QixrQkFBa0I7UUFDbEIsZUFBZTtRQUNmLDJCQUEyQjtRQUMzQix1QkFBdUI7UUFDdkIseUJBQXlCO1FBQ3pCLHVCQUF1QjtRQUN2QiwyQkFBMkI7UUFDM0IsMkJBQTJCO1FBQzNCLDZCQUE2QjtRQUM3QiwyQkFBMkI7UUFDM0IseUJBQXlCO1FBQ3pCLGtDQUFrQztRQUNsQyw4QkFBOEI7UUFDOUIsc0NBQXNDO1FBQ3RDLG9CQUFvQjtRQUNwQixxQ0FBcUM7UUFDckMsNkJBQTZCLGFBSW5CLFlBQVksOEJBM0J0QixvQkFBb0I7UUFDcEIsc0JBQXNCO1FBQ3RCLGtCQUFrQjtRQUNsQixvQkFBb0I7UUFDcEIsZ0NBQWdDO1FBQ2hDLDRCQUE0QjtRQUM1Qix5QkFBeUI7UUFDekIsa0JBQWtCO1FBQ2xCLGVBQWU7UUFDZiwyQkFBMkI7UUFDM0IsdUJBQXVCO1FBQ3ZCLHlCQUF5QjtRQUN6Qix1QkFBdUI7UUFDdkIsMkJBQTJCO1FBQzNCLDJCQUEyQjtRQUMzQiw2QkFBNkI7UUFDN0IsMkJBQTJCO1FBQzNCLHlCQUF5QjtRQUN6QixrQ0FBa0M7UUFDbEMsOEJBQThCO1FBQzlCLHNDQUFzQztRQUN0QyxvQkFBb0I7UUFDcEIscUNBQXFDO1FBQ3JDLDZCQUE2QjsyR0FRcEIsYUFBYSxZQUpiLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDLENBQUM7MkZBSXBELGFBQWE7a0JBTHpCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDLENBQUM7b0JBQzdELE9BQU8sRUFBRSxDQUFDLEdBQUcsa0JBQWtCLENBQUM7b0JBQ2hDLFlBQVksRUFBRSxDQUFDLEdBQUcsa0JBQWtCLENBQUM7aUJBQ3hDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgU2hhcmVkTW9kdWxlIH0gZnJvbSAnQHZlbmR1cmUvYWRtaW4tdWkvY29yZSc7XHJcblxyXG5pbXBvcnQgeyBjYXRhbG9nUm91dGVzIH0gZnJvbSAnLi9jYXRhbG9nLnJvdXRlcyc7XHJcbmltcG9ydCB7IEFwcGx5RmFjZXREaWFsb2dDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvYXBwbHktZmFjZXQtZGlhbG9nL2FwcGx5LWZhY2V0LWRpYWxvZy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBBc3NldERldGFpbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9hc3NldC1kZXRhaWwvYXNzZXQtZGV0YWlsLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEFzc2V0TGlzdENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9hc3NldC1saXN0L2Fzc2V0LWxpc3QuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQXNzZXRzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2Fzc2V0cy9hc3NldHMuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQXNzaWduUHJvZHVjdHNUb0NoYW5uZWxEaWFsb2dDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvYXNzaWduLXByb2R1Y3RzLXRvLWNoYW5uZWwtZGlhbG9nL2Fzc2lnbi1wcm9kdWN0cy10by1jaGFubmVsLWRpYWxvZy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDb2xsZWN0aW9uQ29udGVudHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi1jb250ZW50cy9jb2xsZWN0aW9uLWNvbnRlbnRzLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IENvbGxlY3Rpb25EZXRhaWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi1kZXRhaWwvY29sbGVjdGlvbi1kZXRhaWwuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ29sbGVjdGlvbkxpc3RDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi1saXN0L2NvbGxlY3Rpb24tbGlzdC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDb2xsZWN0aW9uVHJlZU5vZGVDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi10cmVlL2NvbGxlY3Rpb24tdHJlZS1ub2RlLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IENvbGxlY3Rpb25UcmVlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NvbGxlY3Rpb24tdHJlZS9jb2xsZWN0aW9uLXRyZWUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ29uZmlybVZhcmlhbnREZWxldGlvbkRpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jb25maXJtLXZhcmlhbnQtZGVsZXRpb24tZGlhbG9nL2NvbmZpcm0tdmFyaWFudC1kZWxldGlvbi1kaWFsb2cuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRmFjZXREZXRhaWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZmFjZXQtZGV0YWlsL2ZhY2V0LWRldGFpbC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBGYWNldExpc3RDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZmFjZXQtbGlzdC9mYWNldC1saXN0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEdlbmVyYXRlUHJvZHVjdFZhcmlhbnRzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2dlbmVyYXRlLXByb2R1Y3QtdmFyaWFudHMvZ2VuZXJhdGUtcHJvZHVjdC12YXJpYW50cy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBPcHRpb25WYWx1ZUlucHV0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL29wdGlvbi12YWx1ZS1pbnB1dC9vcHRpb24tdmFsdWUtaW5wdXQuY29tcG9uZW50JztcclxuaW1wb3J0IHsgUHJvZHVjdERldGFpbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9wcm9kdWN0LWRldGFpbC9wcm9kdWN0LWRldGFpbC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBQcm9kdWN0TGlzdENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9wcm9kdWN0LWxpc3QvcHJvZHVjdC1saXN0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFByb2R1Y3RPcHRpb25zRWRpdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3Byb2R1Y3Qtb3B0aW9ucy1lZGl0b3IvcHJvZHVjdC1vcHRpb25zLWVkaXRvci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBQcm9kdWN0U2VhcmNoSW5wdXRDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvcHJvZHVjdC1zZWFyY2gtaW5wdXQvcHJvZHVjdC1zZWFyY2gtaW5wdXQuY29tcG9uZW50JztcclxuaW1wb3J0IHsgUHJvZHVjdFZhcmlhbnRzRWRpdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3Byb2R1Y3QtdmFyaWFudHMtZWRpdG9yL3Byb2R1Y3QtdmFyaWFudHMtZWRpdG9yLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFByb2R1Y3RWYXJpYW50c0xpc3RDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvcHJvZHVjdC12YXJpYW50cy1saXN0L3Byb2R1Y3QtdmFyaWFudHMtbGlzdC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBQcm9kdWN0VmFyaWFudHNUYWJsZUNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9wcm9kdWN0LXZhcmlhbnRzLXRhYmxlL3Byb2R1Y3QtdmFyaWFudHMtdGFibGUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgVXBkYXRlUHJvZHVjdE9wdGlvbkRpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy91cGRhdGUtcHJvZHVjdC1vcHRpb24tZGlhbG9nL3VwZGF0ZS1wcm9kdWN0LW9wdGlvbi1kaWFsb2cuY29tcG9uZW50JztcclxuaW1wb3J0IHsgVmFyaWFudFByaWNlRGV0YWlsQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3ZhcmlhbnQtcHJpY2UtZGV0YWlsL3ZhcmlhbnQtcHJpY2UtZGV0YWlsLmNvbXBvbmVudCc7XHJcblxyXG5jb25zdCBDQVRBTE9HX0NPTVBPTkVOVFMgPSBbXHJcbiAgICBQcm9kdWN0TGlzdENvbXBvbmVudCxcclxuICAgIFByb2R1Y3REZXRhaWxDb21wb25lbnQsXHJcbiAgICBGYWNldExpc3RDb21wb25lbnQsXHJcbiAgICBGYWNldERldGFpbENvbXBvbmVudCxcclxuICAgIEdlbmVyYXRlUHJvZHVjdFZhcmlhbnRzQ29tcG9uZW50LFxyXG4gICAgUHJvZHVjdFZhcmlhbnRzTGlzdENvbXBvbmVudCxcclxuICAgIEFwcGx5RmFjZXREaWFsb2dDb21wb25lbnQsXHJcbiAgICBBc3NldExpc3RDb21wb25lbnQsXHJcbiAgICBBc3NldHNDb21wb25lbnQsXHJcbiAgICBWYXJpYW50UHJpY2VEZXRhaWxDb21wb25lbnQsXHJcbiAgICBDb2xsZWN0aW9uTGlzdENvbXBvbmVudCxcclxuICAgIENvbGxlY3Rpb25EZXRhaWxDb21wb25lbnQsXHJcbiAgICBDb2xsZWN0aW9uVHJlZUNvbXBvbmVudCxcclxuICAgIENvbGxlY3Rpb25UcmVlTm9kZUNvbXBvbmVudCxcclxuICAgIENvbGxlY3Rpb25Db250ZW50c0NvbXBvbmVudCxcclxuICAgIFByb2R1Y3RWYXJpYW50c1RhYmxlQ29tcG9uZW50LFxyXG4gICAgUHJvZHVjdFNlYXJjaElucHV0Q29tcG9uZW50LFxyXG4gICAgT3B0aW9uVmFsdWVJbnB1dENvbXBvbmVudCxcclxuICAgIFVwZGF0ZVByb2R1Y3RPcHRpb25EaWFsb2dDb21wb25lbnQsXHJcbiAgICBQcm9kdWN0VmFyaWFudHNFZGl0b3JDb21wb25lbnQsXHJcbiAgICBBc3NpZ25Qcm9kdWN0c1RvQ2hhbm5lbERpYWxvZ0NvbXBvbmVudCxcclxuICAgIEFzc2V0RGV0YWlsQ29tcG9uZW50LFxyXG4gICAgQ29uZmlybVZhcmlhbnREZWxldGlvbkRpYWxvZ0NvbXBvbmVudCxcclxuICAgIFByb2R1Y3RPcHRpb25zRWRpdG9yQ29tcG9uZW50LFxyXG5dO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICAgIGltcG9ydHM6IFtTaGFyZWRNb2R1bGUsIFJvdXRlck1vZHVsZS5mb3JDaGlsZChjYXRhbG9nUm91dGVzKV0sXHJcbiAgICBleHBvcnRzOiBbLi4uQ0FUQUxPR19DT01QT05FTlRTXSxcclxuICAgIGRlY2xhcmF0aW9uczogWy4uLkNBVEFMT0dfQ09NUE9ORU5UU10sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXRhbG9nTW9kdWxlIHt9XHJcbiJdfQ==
112
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0YWxvZy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbGliL2NhdGFsb2cvc3JjL2NhdGFsb2cubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUV0RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDakQsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDekcsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFDeEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDbEYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxzQ0FBc0MsRUFBRSxNQUFNLDRGQUE0RixDQUFDO0FBQ3BKLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGdFQUFnRSxDQUFDO0FBQzdHLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDREQUE0RCxDQUFDO0FBQ3ZHLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ2pHLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDO0FBQzFHLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ2pHLE9BQU8sRUFBRSxxQ0FBcUMsRUFBRSxNQUFNLHdGQUF3RixDQUFDO0FBQy9JLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ3hGLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhDQUE4QyxDQUFDO0FBQ2xGLE9BQU8sRUFBRSxnQ0FBZ0MsRUFBRSxNQUFNLDRFQUE0RSxDQUFDO0FBQzlILE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDhEQUE4RCxDQUFDO0FBQ3pHLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHNEQUFzRCxDQUFDO0FBQzlGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ3hGLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHNFQUFzRSxDQUFDO0FBQ3JILE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLHdFQUF3RSxDQUFDO0FBQ3hILE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLG9FQUFvRSxDQUFDO0FBQ2xILE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHNFQUFzRSxDQUFDO0FBQ3JILE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGtGQUFrRixDQUFDO0FBQ3RJLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGtFQUFrRSxDQUFDOzs7QUFFL0csTUFBTSxrQkFBa0IsR0FBRztJQUN2QixvQkFBb0I7SUFDcEIsc0JBQXNCO0lBQ3RCLGtCQUFrQjtJQUNsQixvQkFBb0I7SUFDcEIsZ0NBQWdDO0lBQ2hDLDRCQUE0QjtJQUM1Qix5QkFBeUI7SUFDekIsa0JBQWtCO0lBQ2xCLGVBQWU7SUFDZiwyQkFBMkI7SUFDM0IsdUJBQXVCO0lBQ3ZCLHlCQUF5QjtJQUN6Qix1QkFBdUI7SUFDdkIsMkJBQTJCO0lBQzNCLDJCQUEyQjtJQUMzQiw2QkFBNkI7SUFDN0IseUJBQXlCO0lBQ3pCLGtDQUFrQztJQUNsQyw4QkFBOEI7SUFDOUIsc0NBQXNDO0lBQ3RDLG9CQUFvQjtJQUNwQixxQ0FBcUM7SUFDckMsNkJBQTZCO0NBQ2hDLENBQUM7QUFPRixNQUFNLE9BQU8sYUFBYTs7MEdBQWIsYUFBYTsyR0FBYixhQUFhLGlCQTlCdEIsb0JBQW9CO1FBQ3BCLHNCQUFzQjtRQUN0QixrQkFBa0I7UUFDbEIsb0JBQW9CO1FBQ3BCLGdDQUFnQztRQUNoQyw0QkFBNEI7UUFDNUIseUJBQXlCO1FBQ3pCLGtCQUFrQjtRQUNsQixlQUFlO1FBQ2YsMkJBQTJCO1FBQzNCLHVCQUF1QjtRQUN2Qix5QkFBeUI7UUFDekIsdUJBQXVCO1FBQ3ZCLDJCQUEyQjtRQUMzQiwyQkFBMkI7UUFDM0IsNkJBQTZCO1FBQzdCLHlCQUF5QjtRQUN6QixrQ0FBa0M7UUFDbEMsOEJBQThCO1FBQzlCLHNDQUFzQztRQUN0QyxvQkFBb0I7UUFDcEIscUNBQXFDO1FBQ3JDLDZCQUE2QixhQUluQixZQUFZLDhCQTFCdEIsb0JBQW9CO1FBQ3BCLHNCQUFzQjtRQUN0QixrQkFBa0I7UUFDbEIsb0JBQW9CO1FBQ3BCLGdDQUFnQztRQUNoQyw0QkFBNEI7UUFDNUIseUJBQXlCO1FBQ3pCLGtCQUFrQjtRQUNsQixlQUFlO1FBQ2YsMkJBQTJCO1FBQzNCLHVCQUF1QjtRQUN2Qix5QkFBeUI7UUFDekIsdUJBQXVCO1FBQ3ZCLDJCQUEyQjtRQUMzQiwyQkFBMkI7UUFDM0IsNkJBQTZCO1FBQzdCLHlCQUF5QjtRQUN6QixrQ0FBa0M7UUFDbEMsOEJBQThCO1FBQzlCLHNDQUFzQztRQUN0QyxvQkFBb0I7UUFDcEIscUNBQXFDO1FBQ3JDLDZCQUE2QjsyR0FRcEIsYUFBYSxZQUpiLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDLENBQUM7MkZBSXBELGFBQWE7a0JBTHpCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDLENBQUM7b0JBQzdELE9BQU8sRUFBRSxDQUFDLEdBQUcsa0JBQWtCLENBQUM7b0JBQ2hDLFlBQVksRUFBRSxDQUFDLEdBQUcsa0JBQWtCLENBQUM7aUJBQ3hDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgU2hhcmVkTW9kdWxlIH0gZnJvbSAnQHZlbmR1cmUvYWRtaW4tdWkvY29yZSc7XHJcblxyXG5pbXBvcnQgeyBjYXRhbG9nUm91dGVzIH0gZnJvbSAnLi9jYXRhbG9nLnJvdXRlcyc7XHJcbmltcG9ydCB7IEFwcGx5RmFjZXREaWFsb2dDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvYXBwbHktZmFjZXQtZGlhbG9nL2FwcGx5LWZhY2V0LWRpYWxvZy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBBc3NldERldGFpbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9hc3NldC1kZXRhaWwvYXNzZXQtZGV0YWlsLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEFzc2V0TGlzdENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9hc3NldC1saXN0L2Fzc2V0LWxpc3QuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQXNzZXRzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2Fzc2V0cy9hc3NldHMuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQXNzaWduUHJvZHVjdHNUb0NoYW5uZWxEaWFsb2dDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvYXNzaWduLXByb2R1Y3RzLXRvLWNoYW5uZWwtZGlhbG9nL2Fzc2lnbi1wcm9kdWN0cy10by1jaGFubmVsLWRpYWxvZy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDb2xsZWN0aW9uQ29udGVudHNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi1jb250ZW50cy9jb2xsZWN0aW9uLWNvbnRlbnRzLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IENvbGxlY3Rpb25EZXRhaWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi1kZXRhaWwvY29sbGVjdGlvbi1kZXRhaWwuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ29sbGVjdGlvbkxpc3RDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi1saXN0L2NvbGxlY3Rpb24tbGlzdC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDb2xsZWN0aW9uVHJlZU5vZGVDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29sbGVjdGlvbi10cmVlL2NvbGxlY3Rpb24tdHJlZS1ub2RlLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IENvbGxlY3Rpb25UcmVlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NvbGxlY3Rpb24tdHJlZS9jb2xsZWN0aW9uLXRyZWUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ29uZmlybVZhcmlhbnREZWxldGlvbkRpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jb25maXJtLXZhcmlhbnQtZGVsZXRpb24tZGlhbG9nL2NvbmZpcm0tdmFyaWFudC1kZWxldGlvbi1kaWFsb2cuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRmFjZXREZXRhaWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZmFjZXQtZGV0YWlsL2ZhY2V0LWRldGFpbC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBGYWNldExpc3RDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZmFjZXQtbGlzdC9mYWNldC1saXN0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IEdlbmVyYXRlUHJvZHVjdFZhcmlhbnRzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2dlbmVyYXRlLXByb2R1Y3QtdmFyaWFudHMvZ2VuZXJhdGUtcHJvZHVjdC12YXJpYW50cy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBPcHRpb25WYWx1ZUlucHV0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL29wdGlvbi12YWx1ZS1pbnB1dC9vcHRpb24tdmFsdWUtaW5wdXQuY29tcG9uZW50JztcclxuaW1wb3J0IHsgUHJvZHVjdERldGFpbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9wcm9kdWN0LWRldGFpbC9wcm9kdWN0LWRldGFpbC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBQcm9kdWN0TGlzdENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9wcm9kdWN0LWxpc3QvcHJvZHVjdC1saXN0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFByb2R1Y3RPcHRpb25zRWRpdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3Byb2R1Y3Qtb3B0aW9ucy1lZGl0b3IvcHJvZHVjdC1vcHRpb25zLWVkaXRvci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBQcm9kdWN0VmFyaWFudHNFZGl0b3JDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvcHJvZHVjdC12YXJpYW50cy1lZGl0b3IvcHJvZHVjdC12YXJpYW50cy1lZGl0b3IuY29tcG9uZW50JztcclxuaW1wb3J0IHsgUHJvZHVjdFZhcmlhbnRzTGlzdENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9wcm9kdWN0LXZhcmlhbnRzLWxpc3QvcHJvZHVjdC12YXJpYW50cy1saXN0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFByb2R1Y3RWYXJpYW50c1RhYmxlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3Byb2R1Y3QtdmFyaWFudHMtdGFibGUvcHJvZHVjdC12YXJpYW50cy10YWJsZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBVcGRhdGVQcm9kdWN0T3B0aW9uRGlhbG9nQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3VwZGF0ZS1wcm9kdWN0LW9wdGlvbi1kaWFsb2cvdXBkYXRlLXByb2R1Y3Qtb3B0aW9uLWRpYWxvZy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBWYXJpYW50UHJpY2VEZXRhaWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvdmFyaWFudC1wcmljZS1kZXRhaWwvdmFyaWFudC1wcmljZS1kZXRhaWwuY29tcG9uZW50JztcclxuXHJcbmNvbnN0IENBVEFMT0dfQ09NUE9ORU5UUyA9IFtcclxuICAgIFByb2R1Y3RMaXN0Q29tcG9uZW50LFxyXG4gICAgUHJvZHVjdERldGFpbENvbXBvbmVudCxcclxuICAgIEZhY2V0TGlzdENvbXBvbmVudCxcclxuICAgIEZhY2V0RGV0YWlsQ29tcG9uZW50LFxyXG4gICAgR2VuZXJhdGVQcm9kdWN0VmFyaWFudHNDb21wb25lbnQsXHJcbiAgICBQcm9kdWN0VmFyaWFudHNMaXN0Q29tcG9uZW50LFxyXG4gICAgQXBwbHlGYWNldERpYWxvZ0NvbXBvbmVudCxcclxuICAgIEFzc2V0TGlzdENvbXBvbmVudCxcclxuICAgIEFzc2V0c0NvbXBvbmVudCxcclxuICAgIFZhcmlhbnRQcmljZURldGFpbENvbXBvbmVudCxcclxuICAgIENvbGxlY3Rpb25MaXN0Q29tcG9uZW50LFxyXG4gICAgQ29sbGVjdGlvbkRldGFpbENvbXBvbmVudCxcclxuICAgIENvbGxlY3Rpb25UcmVlQ29tcG9uZW50LFxyXG4gICAgQ29sbGVjdGlvblRyZWVOb2RlQ29tcG9uZW50LFxyXG4gICAgQ29sbGVjdGlvbkNvbnRlbnRzQ29tcG9uZW50LFxyXG4gICAgUHJvZHVjdFZhcmlhbnRzVGFibGVDb21wb25lbnQsXHJcbiAgICBPcHRpb25WYWx1ZUlucHV0Q29tcG9uZW50LFxyXG4gICAgVXBkYXRlUHJvZHVjdE9wdGlvbkRpYWxvZ0NvbXBvbmVudCxcclxuICAgIFByb2R1Y3RWYXJpYW50c0VkaXRvckNvbXBvbmVudCxcclxuICAgIEFzc2lnblByb2R1Y3RzVG9DaGFubmVsRGlhbG9nQ29tcG9uZW50LFxyXG4gICAgQXNzZXREZXRhaWxDb21wb25lbnQsXHJcbiAgICBDb25maXJtVmFyaWFudERlbGV0aW9uRGlhbG9nQ29tcG9uZW50LFxyXG4gICAgUHJvZHVjdE9wdGlvbnNFZGl0b3JDb21wb25lbnQsXHJcbl07XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gICAgaW1wb3J0czogW1NoYXJlZE1vZHVsZSwgUm91dGVyTW9kdWxlLmZvckNoaWxkKGNhdGFsb2dSb3V0ZXMpXSxcclxuICAgIGV4cG9ydHM6IFsuLi5DQVRBTE9HX0NPTVBPTkVOVFNdLFxyXG4gICAgZGVjbGFyYXRpb25zOiBbLi4uQ0FUQUxPR19DT01QT05FTlRTXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIENhdGFsb2dNb2R1bGUge31cclxuIl19
@@ -19,7 +19,7 @@ export class ApplyFacetDialogComponent {
19
19
  }
20
20
  }
21
21
  ApplyFacetDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ApplyFacetDialogComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
22
- ApplyFacetDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.3", type: ApplyFacetDialogComponent, selector: "vdr-apply-facet-dialog", viewQueries: [{ propertyName: "selector", first: true, predicate: FacetValueSelectorComponent, descendants: true }], ngImport: i0, template: "<ng-template vdrDialogTitle>{{ 'catalog.add-facets' | translate }}</ng-template>\r\n\r\n<vdr-facet-value-selector\r\n [facets]=\"facets\"\r\n (selectedValuesChange)=\"selectedValues = $event\"\r\n></vdr-facet-value-selector>\r\n\r\n<ng-template vdrDialogButtons>\r\n <button type=\"button\" class=\"btn\" (click)=\"cancel()\">{{ 'common.cancel' | translate }}</button>\r\n <button\r\n type=\"submit\"\r\n (click)=\"selectValues()\"\r\n [disabled]=\"selectedValues.length === 0\"\r\n class=\"btn btn-primary\"\r\n >\r\n {{ 'catalog.add-facets' | translate }}\r\n </button>\r\n</ng-template>\r\n", styles: [""], components: [{ type: i1.FacetValueSelectorComponent, selector: "vdr-facet-value-selector", inputs: ["facets", "readonly"], outputs: ["selectedValuesChange"] }], directives: [{ type: i1.DialogTitleDirective, selector: "[vdrDialogTitle]" }, { type: i1.DialogButtonsDirective, selector: "[vdrDialogButtons]" }], pipes: { "translate": i2.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
22
+ ApplyFacetDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.3", type: ApplyFacetDialogComponent, selector: "vdr-apply-facet-dialog", viewQueries: [{ propertyName: "selector", first: true, predicate: FacetValueSelectorComponent, descendants: true }], ngImport: i0, template: "<ng-template vdrDialogTitle>{{ 'catalog.add-facets' | translate }}</ng-template>\r\n\r\n<vdr-facet-value-selector\r\n [facets]=\"facets\"\r\n (selectedValuesChange)=\"selectedValues = $event\"\r\n></vdr-facet-value-selector>\r\n\r\n<ng-template vdrDialogButtons>\r\n <button type=\"button\" class=\"btn\" (click)=\"cancel()\">{{ 'common.cancel' | translate }}</button>\r\n <button\r\n type=\"submit\"\r\n (click)=\"selectValues()\"\r\n [disabled]=\"selectedValues.length === 0\"\r\n class=\"btn btn-primary\"\r\n >\r\n {{ 'catalog.add-facets' | translate }}\r\n </button>\r\n</ng-template>\r\n", styles: [""], components: [{ type: i1.FacetValueSelectorComponent, selector: "vdr-facet-value-selector", inputs: ["facets", "readonly", "transformControlValueAccessorValue"], outputs: ["selectedValuesChange"] }], directives: [{ type: i1.DialogTitleDirective, selector: "[vdrDialogTitle]" }, { type: i1.DialogButtonsDirective, selector: "[vdrDialogButtons]" }], pipes: { "translate": i2.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
23
23
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ApplyFacetDialogComponent, decorators: [{
24
24
  type: Component,
25
25
  args: [{ selector: 'vdr-apply-facet-dialog', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template vdrDialogTitle>{{ 'catalog.add-facets' | translate }}</ng-template>\r\n\r\n<vdr-facet-value-selector\r\n [facets]=\"facets\"\r\n (selectedValuesChange)=\"selectedValues = $event\"\r\n></vdr-facet-value-selector>\r\n\r\n<ng-template vdrDialogButtons>\r\n <button type=\"button\" class=\"btn\" (click)=\"cancel()\">{{ 'common.cancel' | translate }}</button>\r\n <button\r\n type=\"submit\"\r\n (click)=\"selectValues()\"\r\n [disabled]=\"selectedValues.length === 0\"\r\n class=\"btn btn-primary\"\r\n >\r\n {{ 'catalog.add-facets' | translate }}\r\n </button>\r\n</ng-template>\r\n", styles: [""] }]