tango-app-ui-store-builder 1.2.6 → 1.2.7

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.
@@ -35,6 +35,7 @@ export declare class FixtureLibraryComponent implements OnInit, OnDestroy {
35
35
  type: never[];
36
36
  status: never[];
37
37
  size: never[];
38
+ country: never[];
38
39
  };
39
40
  isFilterApplied: boolean;
40
41
  isPageLoading: boolean;
@@ -9,9 +9,14 @@ export declare class CreateFixtureModalComponent implements OnDestroy {
9
9
  private storeBuilderService;
10
10
  private toast;
11
11
  clientId: string;
12
+ countryOptions: {
13
+ id: string;
14
+ label: string;
15
+ }[];
12
16
  fixtureForm: FormGroup<{
13
17
  fixtureCategory: FormControl<string | null>;
14
18
  fixtureType: FormControl<string | null>;
19
+ country: FormControl<string[] | null>;
15
20
  }>;
16
21
  private readonly destroy$;
17
22
  constructor(activeModal: NgbActiveModal, storeBuilderService: StoreBuilderService, toast: ToastService);
@@ -9,6 +9,7 @@ export interface FixtureLibraryList {
9
9
  status: string;
10
10
  id: string;
11
11
  code: string;
12
+ country: string[];
12
13
  }
13
14
  export interface FixtureLibraryDetails {
14
15
  _id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-store-builder",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"