forstok-ui-lib 5.11.20 → 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.20",
3
+ "version": "5.11.21",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -1075,28 +1075,6 @@ const getTableItemWrapperModFunc = ({ $mode, $isBorder, $isPopup }:{ $mode: stri
1075
1075
  }
1076
1076
  }
1077
1077
  `
1078
- } else if ($mode === 'account-role') {
1079
- style += `
1080
- ${TableItemColumn} {
1081
- grid-template-columns: minmax(120px, 250px) var(--qty) minmax(80px, 130px) var(--time) minmax(110px, auto);
1082
- > div {
1083
- &:last-child {
1084
- text-align: right;
1085
- }
1086
- }
1087
- }
1088
- `
1089
- } else if ($mode === 'account-user') {
1090
- style += `
1091
- ${TableItemColumn} {
1092
- grid-template-columns: var(--person) var(--email) minmax(80px, 120px) minmax(120px, 200px) var(--status) var(--time) minmax(110px, auto);
1093
- > div {
1094
- &:last-child {
1095
- text-align: right;
1096
- }
1097
- }
1098
- }
1099
- `
1100
1078
  }
1101
1079
  if ($isBorder) {
1102
1080
  style += `
@@ -1573,6 +1551,18 @@ const getListTableFunc = ({ $mode }:{ $mode?: string }) => {
1573
1551
  grid-template-columns: var(--id-pd20) minmax(80px, 120px) var(--time) var(--person) var(--qty) var(--price) var(--status) minmax(180px, auto);
1574
1552
  }
1575
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
+ `
1576
1566
  }
1577
1567
  return style
1578
1568
  }