forstok-ui-lib 5.11.19 → 5.11.21

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": "5.11.19",
3
+ "version": "5.11.21",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -1551,6 +1551,18 @@ const getListTableFunc = ({ $mode }:{ $mode?: string }) => {
1551
1551
  grid-template-columns: var(--id-pd20) minmax(80px, 120px) var(--time) var(--person) var(--qty) var(--price) var(--status) minmax(180px, auto);
1552
1552
  }
1553
1553
  `
1554
+ } else if ($mode === 'account-user') {
1555
+ style += `
1556
+ ${ItemTable} {
1557
+ grid-template-columns: var(--person) var(--email) minmax(80px, 120px) minmax(120px, 200px) var(--status) var(--time) minmax(110px, auto);
1558
+ }
1559
+ `
1560
+ } else if ($mode === 'account-role') {
1561
+ style += `
1562
+ ${ItemTable} {
1563
+ grid-template-columns: minmax(120px, 250px) var(--qty) minmax(80px, 130px) var(--time) minmax(110px, auto);
1564
+ }
1565
+ `
1554
1566
  }
1555
1567
  return style
1556
1568
  }