forstok-ui-lib 6.15.0 → 6.15.2
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 +1 -1
- package/dist/index.js +29 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +35 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/delivery.svg +20 -37
- package/src/assets/stylesheets/shares.styles.ts +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -494,7 +494,7 @@ type TDetailNew<TData = never> = {
|
|
|
494
494
|
type Callback<S> = (state: S) => void | (() => void | undefined);
|
|
495
495
|
type DispatchWithCallback<A, S> = (value: A, callback: Callback<S>) => void;
|
|
496
496
|
type TStateCallback<TData> = DispatchWithCallback<React.SetStateAction<TData>, TData>;
|
|
497
|
-
type ModeListTableColumn = 'item' | 'item-nocheck' | 'quantity' | 'listing' | 'listing-nocheck' | 'picklist' | 'package' | 'shipment' | 'invoice' | 'payment-receive' | 'sales-return' | 'activity' | 'putaway' | 'inbound' | 'lowstock' | 'price' | 'stock-adjustment' | 'stock-outbound' | 'stock-transfer' | 'promotion' | 'stock-history' | 'price-history' | 'turnover' | 'days-outofstock' | 'warehouses' | 'archived' | 'order' | 'order-nocheck' | 'table-customheader';
|
|
497
|
+
type ModeListTableColumn = 'item' | 'item-nocheck' | 'quantity' | 'listing' | 'listing-nocheck' | 'picklist' | 'package' | 'shipment' | 'invoice' | 'payment-receive' | 'sales-return' | 'activity' | 'putaway' | 'inbound' | 'lowstock' | 'price' | 'stock-adjustment' | 'stock-outbound' | 'stock-transfer' | 'promotion' | 'stock-history' | 'price-history' | 'turnover' | 'days-outofstock' | 'warehouses' | 'archived' | 'pos-order' | 'order' | 'order-nocheck' | 'table-customheader';
|
|
498
498
|
type TInDetail = TInPart & {
|
|
499
499
|
firstDispatch?: Dispatch<any>;
|
|
500
500
|
resetByOption: (opt?: string | string[], callback?: () => void, noScroll?: boolean) => void;
|