forstok-ui-lib 6.14.0 → 6.15.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "6.14.0",
3
+ "version": "6.15.0",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -3322,6 +3322,14 @@ const listTableStyles = {
3322
3322
  }
3323
3323
  }
3324
3324
  `,
3325
+ 'pos-order': css`
3326
+ ${ItemTable} {
3327
+ @media only screen and (max-width: 1279px) {
3328
+ width: unset;
3329
+ }
3330
+ grid-template-columns: var(--id-pd20) minmax(80px, 120px) var(--time) var(--person) var(--qty) var(--price) var(--status) minmax(180px, auto);
3331
+ }
3332
+ `,
3325
3333
  order: css`
3326
3334
  ${ItemTable} {
3327
3335
  grid-template-columns: var(--checkbox) 118px 90px minmax(auto, max-content);
@@ -292,6 +292,7 @@ export type ModeListTableColumn =
292
292
  | 'days-outofstock'
293
293
  | 'warehouses'
294
294
  | 'archived'
295
+ | 'pos-order'
295
296
  | 'order'
296
297
  | 'order-nocheck'
297
298
  | 'table-customheader';