forstok-ui-lib 5.11.7 → 5.11.8

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
@@ -500,10 +500,10 @@ type TskuAddons = {
500
500
  sku?: string;
501
501
  };
502
502
  type TWarehouseAddons = {
503
- id: number;
504
- newId?: string;
503
+ id?: number;
504
+ newId?: string | null;
505
505
  name: string;
506
- };
506
+ } | null;
507
507
  type TOption = {
508
508
  readonly value: any;
509
509
  readonly label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.11.7",
3
+ "version": "5.11.8",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -13,10 +13,10 @@ type TskuAddons = {
13
13
  }
14
14
 
15
15
  type TWarehouseAddons = {
16
- id: number
17
- newId?: string
16
+ id?: number
17
+ newId?: string | null
18
18
  name: string
19
- }
19
+ } | null
20
20
 
21
21
  export type TOption = {
22
22
  readonly value: any