forstok-ui-lib 6.15.0 → 6.15.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 +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- 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;
|
package/dist/index.js
CHANGED
|
@@ -2114,6 +2114,13 @@
|
|
|
2114
2114
|
grid-template-columns: var(--sku) var(--item);
|
|
2115
2115
|
}
|
|
2116
2116
|
}
|
|
2117
|
+
`,"pos-order":t.css`
|
|
2118
|
+
${It} {
|
|
2119
|
+
@media only screen and (max-width: 1279px) {
|
|
2120
|
+
width: unset;
|
|
2121
|
+
}
|
|
2122
|
+
grid-template-columns: var(--id-pd20) minmax(80px, 120px) var(--time) var(--person) var(--qty) var(--price) var(--status) minmax(180px, auto);
|
|
2123
|
+
}
|
|
2117
2124
|
`,order:t.css`
|
|
2118
2125
|
${It} {
|
|
2119
2126
|
grid-template-columns: var(--checkbox) 118px 90px minmax(auto, max-content);
|