forstok-ui-lib 5.11.9 → 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
|
@@ -518,7 +518,14 @@ type TOption = {
|
|
|
518
518
|
readonly label: string;
|
|
519
519
|
localId?: string;
|
|
520
520
|
}[];
|
|
521
|
-
|
|
521
|
+
store?: {
|
|
522
|
+
id: number;
|
|
523
|
+
name: string;
|
|
524
|
+
warehouseId?: Array<string | null> | null;
|
|
525
|
+
warehouseCount?: number | null;
|
|
526
|
+
imageUrl?: string | null;
|
|
527
|
+
warehouse?: TWarehouseAddons[] | null;
|
|
528
|
+
};
|
|
522
529
|
} & TskuAddons;
|
|
523
530
|
type TLoadOption = (search: string, callback: () => void, { endCursor }: {
|
|
524
531
|
endCursor: string;
|
package/package.json
CHANGED
|
@@ -32,7 +32,14 @@ export type TOption = {
|
|
|
32
32
|
readonly label: string
|
|
33
33
|
localId?: string
|
|
34
34
|
}[]
|
|
35
|
-
|
|
35
|
+
store?: {
|
|
36
|
+
id: number
|
|
37
|
+
name: string
|
|
38
|
+
warehouseId?: Array<string | null> | null
|
|
39
|
+
warehouseCount?: number | null
|
|
40
|
+
imageUrl?: string | null,
|
|
41
|
+
warehouse?: TWarehouseAddons[] | null
|
|
42
|
+
}
|
|
36
43
|
} & TskuAddons
|
|
37
44
|
|
|
38
45
|
export type TLoadOption = (search: string, callback: () => void, { endCursor }: {
|