forstok-ui-lib 6.4.2 → 6.4.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 +2 -1
- package/dist/index.js +238 -145
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +238 -145
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +95 -0
package/package.json
CHANGED
|
@@ -3901,4 +3901,99 @@ export const ScrollArrowContainer = styled.section`
|
|
|
3901
3901
|
color: var(--sec-clr-lnk__hvr);
|
|
3902
3902
|
}
|
|
3903
3903
|
}
|
|
3904
|
+
`
|
|
3905
|
+
|
|
3906
|
+
export const BulkSelectContainer = styled.div`
|
|
3907
|
+
position: relative;
|
|
3908
|
+
display: grid;
|
|
3909
|
+
grid-auto-flow: dense;
|
|
3910
|
+
grid-gap: 10px;
|
|
3911
|
+
> article {
|
|
3912
|
+
font-weight: 600;
|
|
3913
|
+
padding: 3px 4px 3px 0;
|
|
3914
|
+
display: grid;
|
|
3915
|
+
grid-auto-flow: column;
|
|
3916
|
+
&:only-child {
|
|
3917
|
+
margin-left: 0;
|
|
3918
|
+
}
|
|
3919
|
+
&:nth-child(4) {
|
|
3920
|
+
padding-left: 14px;
|
|
3921
|
+
}
|
|
3922
|
+
&:nth-child(4):last-child {
|
|
3923
|
+
width: 200%;
|
|
3924
|
+
padding-left: 0;
|
|
3925
|
+
margin-left: 0;
|
|
3926
|
+
}
|
|
3927
|
+
> section,
|
|
3928
|
+
> button {
|
|
3929
|
+
margin: -8px -6px -7px -6px;
|
|
3930
|
+
}
|
|
3931
|
+
> section {
|
|
3932
|
+
> section {
|
|
3933
|
+
button {
|
|
3934
|
+
overflow: hidden;
|
|
3935
|
+
text-overflow: ellipsis;
|
|
3936
|
+
white-space: nowrap;
|
|
3937
|
+
display: block;
|
|
3938
|
+
max-width: 100%;
|
|
3939
|
+
width: 28vw;
|
|
3940
|
+
font-weight: 600;
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
}
|
|
3944
|
+
}
|
|
3945
|
+
> section,
|
|
3946
|
+
> article {
|
|
3947
|
+
max-height: 20px;
|
|
3948
|
+
align-items: center;
|
|
3949
|
+
}
|
|
3950
|
+
@media only screen and (min-width: 375px) {
|
|
3951
|
+
> article {
|
|
3952
|
+
> section {
|
|
3953
|
+
> section {
|
|
3954
|
+
button {
|
|
3955
|
+
width: 31vw;
|
|
3956
|
+
}
|
|
3957
|
+
}
|
|
3958
|
+
}
|
|
3959
|
+
}
|
|
3960
|
+
}
|
|
3961
|
+
@media only screen and (min-width: 768px) {
|
|
3962
|
+
grid-auto-flow: column;
|
|
3963
|
+
grid-gap: 20px;
|
|
3964
|
+
._refSelectedBulk {
|
|
3965
|
+
display: none;
|
|
3966
|
+
}
|
|
3967
|
+
> section,
|
|
3968
|
+
> article {
|
|
3969
|
+
height: auto;
|
|
3970
|
+
max-height: auto;
|
|
3971
|
+
font-size: .875rem;
|
|
3972
|
+
align-items: unset;
|
|
3973
|
+
}
|
|
3974
|
+
> article {
|
|
3975
|
+
&:nth-child(4),
|
|
3976
|
+
&:last-child,
|
|
3977
|
+
&:nth-child(4):last-child {
|
|
3978
|
+
width: auto;
|
|
3979
|
+
padding-left: 3px;
|
|
3980
|
+
margin-bottom: 0;
|
|
3981
|
+
text-align: left;
|
|
3982
|
+
> span {
|
|
3983
|
+
padding-left: 0;
|
|
3984
|
+
font-weight: 600;
|
|
3985
|
+
}
|
|
3986
|
+
}
|
|
3987
|
+
> section {
|
|
3988
|
+
> section {
|
|
3989
|
+
button {
|
|
3990
|
+
width: auto;
|
|
3991
|
+
}
|
|
3992
|
+
}
|
|
3993
|
+
}
|
|
3994
|
+
}
|
|
3995
|
+
}
|
|
3996
|
+
@media only screen and (min-width: 1024px) {
|
|
3997
|
+
grid-gap: 32px;
|
|
3998
|
+
}
|
|
3904
3999
|
`
|