forstok-ui-lib 5.11.10 → 5.11.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.
package/dist/index.d.ts CHANGED
@@ -524,7 +524,7 @@ type TOption = {
524
524
  warehouseId?: Array<string | null> | null;
525
525
  warehouseCount?: number | null;
526
526
  imageUrl?: string | null;
527
- warehouse?: TWarehouseAddons[];
527
+ warehouse?: TWarehouseAddons[] | null;
528
528
  };
529
529
  } & TskuAddons;
530
530
  type TLoadOption = (search: string, callback: () => void, { endCursor }: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.11.10",
3
+ "version": "5.11.11",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -38,7 +38,7 @@ export type TOption = {
38
38
  warehouseId?: Array<string | null> | null
39
39
  warehouseCount?: number | null
40
40
  imageUrl?: string | null,
41
- warehouse?: TWarehouseAddons[]
41
+ warehouse?: TWarehouseAddons[] | null
42
42
  }
43
43
  } & TskuAddons
44
44