forstok-ui-lib 6.6.1 → 6.6.3
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +10 -2
package/package.json
CHANGED
|
@@ -425,7 +425,15 @@ const getTabsColumnModFunc = ({ $mode, $content }:{ $mode?: string, $content?: s
|
|
|
425
425
|
grid-auto-flow: column;
|
|
426
426
|
}
|
|
427
427
|
`
|
|
428
|
-
}
|
|
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;
|
|
@@ -3760,7 +3768,7 @@ export const FilterButton = styled.div`
|
|
|
3760
3768
|
grid-template-columns: 1fr auto;
|
|
3761
3769
|
gap: 4px;
|
|
3762
3770
|
`
|
|
3763
|
-
export const IconDot = styled.span<{ $mode?: 'list' | 'header' | 'chat', $width?: string, $height?: string, $size?:
|
|
3771
|
+
export const IconDot = styled.span<{ $mode?: 'list' | 'header' | 'chat', $width?: string, $height?: string, $size?: string }>`
|
|
3764
3772
|
display: grid;
|
|
3765
3773
|
min-width: 18px;
|
|
3766
3774
|
height: 18px;
|