forstok-ui-lib 6.3.2 → 6.3.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 +11 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +12 -1
package/package.json
CHANGED
|
@@ -3737,7 +3737,7 @@ export const FilterButton = styled.div`
|
|
|
3737
3737
|
grid-template-columns: 1fr auto;
|
|
3738
3738
|
gap: 4px;
|
|
3739
3739
|
`
|
|
3740
|
-
export const IconDot = styled.span<{ $mode?: 'list' | 'header' }>`
|
|
3740
|
+
export const IconDot = styled.span<{ $mode?: 'list' | 'header' | 'chat' }>`
|
|
3741
3741
|
display: grid;
|
|
3742
3742
|
min-width: 18px;
|
|
3743
3743
|
height: 18px;
|
|
@@ -3763,6 +3763,17 @@ export const IconDot = styled.span<{ $mode?: 'list' | 'header' }>`
|
|
|
3763
3763
|
transform: scale(1) translate(50%, -50%);
|
|
3764
3764
|
`}
|
|
3765
3765
|
`}
|
|
3766
|
+
${({ $mode }) => $mode === 'chat' && css`
|
|
3767
|
+
position: absolute;
|
|
3768
|
+
z-index: 8;
|
|
3769
|
+
left: 18px;
|
|
3770
|
+
top: 0;
|
|
3771
|
+
padding: 0.2em 0.3em;
|
|
3772
|
+
font-weight: bold;
|
|
3773
|
+
font-size: 10px;
|
|
3774
|
+
min-width: 16px;
|
|
3775
|
+
height: 16px;
|
|
3776
|
+
`}
|
|
3766
3777
|
`
|
|
3767
3778
|
export const SortByWrapper = styled.section`
|
|
3768
3779
|
justify-self: end;
|