forstok-ui-lib 6.2.11 → 6.3.1
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 +20 -18
- package/dist/index.js +1091 -448
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1051 -408
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/javascripts/function.ts +33 -0
- package/src/assets/stylesheets/shares.styles.ts +868 -252
- package/src/typeds/shares.typed.ts +29 -1
|
@@ -263,4 +263,32 @@ type DispatchWithCallback<A, S> = (
|
|
|
263
263
|
callback: Callback<S>,
|
|
264
264
|
) => void;
|
|
265
265
|
|
|
266
|
-
export type TStateCallback<TData> = DispatchWithCallback<React.SetStateAction<TData>, TData>
|
|
266
|
+
export type TStateCallback<TData> = DispatchWithCallback<React.SetStateAction<TData>, TData>
|
|
267
|
+
|
|
268
|
+
export type ModeListTableColumn =
|
|
269
|
+
| 'item'
|
|
270
|
+
| 'listing'
|
|
271
|
+
| 'quantity'
|
|
272
|
+
| 'picklist'
|
|
273
|
+
| 'package'
|
|
274
|
+
| 'shipment'
|
|
275
|
+
| 'invoice'
|
|
276
|
+
| 'payment-receive'
|
|
277
|
+
| 'sales-return'
|
|
278
|
+
| 'activity'
|
|
279
|
+
| 'putaway'
|
|
280
|
+
| 'inbound'
|
|
281
|
+
| 'lowstock'
|
|
282
|
+
| 'price'
|
|
283
|
+
| 'stock-adjustment'
|
|
284
|
+
| 'stock-outbound'
|
|
285
|
+
| 'stock-transfer'
|
|
286
|
+
| 'promotion'
|
|
287
|
+
| 'stock-history'
|
|
288
|
+
| 'price-history'
|
|
289
|
+
| 'turnover'
|
|
290
|
+
| 'days-outofstock'
|
|
291
|
+
| 'warehouses'
|
|
292
|
+
| 'archived'
|
|
293
|
+
| 'order'
|
|
294
|
+
| 'table-customheader';
|