forstok-ui-lib 5.11.6 → 5.11.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.
package/dist/index.d.ts
CHANGED
|
@@ -500,8 +500,9 @@ type TskuAddons = {
|
|
|
500
500
|
sku?: string;
|
|
501
501
|
};
|
|
502
502
|
type TWarehouseAddons = {
|
|
503
|
-
|
|
504
|
-
|
|
503
|
+
id: number;
|
|
504
|
+
newId?: string;
|
|
505
|
+
name: string;
|
|
505
506
|
};
|
|
506
507
|
type TOption = {
|
|
507
508
|
readonly value: any;
|
|
@@ -517,7 +518,8 @@ type TOption = {
|
|
|
517
518
|
readonly label: string;
|
|
518
519
|
localId?: string;
|
|
519
520
|
}[];
|
|
520
|
-
|
|
521
|
+
warehouses?: TWarehouseAddons[];
|
|
522
|
+
} & TskuAddons;
|
|
521
523
|
type TLoadOption = (search: string, callback: () => void, { endCursor }: {
|
|
522
524
|
endCursor: string;
|
|
523
525
|
}) => Promise<{
|
package/package.json
CHANGED
|
@@ -13,8 +13,9 @@ type TskuAddons = {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
type TWarehouseAddons = {
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
id: number
|
|
17
|
+
newId?: string
|
|
18
|
+
name: string
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
export type TOption = {
|
|
@@ -31,7 +32,8 @@ export type TOption = {
|
|
|
31
32
|
readonly label: string
|
|
32
33
|
localId?: string
|
|
33
34
|
}[]
|
|
34
|
-
|
|
35
|
+
warehouses?: TWarehouseAddons[]
|
|
36
|
+
} & TskuAddons
|
|
35
37
|
|
|
36
38
|
export type TLoadOption = (search: string, callback: () => void, { endCursor }: {
|
|
37
39
|
endCursor: string;
|