forstok-ui-lib 6.6.2 → 6.6.4

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.6.2",
3
+ "version": "6.6.4",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -425,7 +425,15 @@ const getTabsColumnModFunc = ({ $mode, $content }:{ $mode?: string, $content?: s
425
425
  grid-auto-flow: column;
426
426
  }
427
427
  `
428
- } else if ($mode === 'store-order') {
428
+ } else if ($mode === 'status') {
429
+ style +=`
430
+ align-items: baseline;
431
+ grid-gap: 2px;
432
+ i {
433
+ opacity: .7;
434
+ }
435
+ `
436
+ } else if ($mode === 'store-order') {
429
437
  style +=`
430
438
  align-items: start;
431
439
  gap: 8px;
@@ -704,7 +712,7 @@ const getTableItemWrapperModFunc = ({ $mode, $isBorder, $isPopup }:{ $mode: stri
704
712
  }
705
713
  ${TableItemColumn} {
706
714
  width: ${$isPopup ? '834px' : '940px' };
707
- grid-template-columns: ${$isPopup ? 'auto var(--variant-small) var(var(--qty-small)) var(--price) var(--status-small) 90px' : 'auto var(--variant) var(--qty-big) var(--price) var(--status-small) minmax(90px, 100px)'};
715
+ grid-template-columns: ${$isPopup ? 'auto var(--variant-small) var(--qty) var(--price) var(--status-small) 95px' : 'auto var(--variant) var(--qty-big) var(--price) var(--status-small) minmax(90px, 100px)'};
708
716
  &:last-child {
709
717
  ${$isPopup ? 'border-bottom: 0 !important' : ''}
710
718
  }