forstok-ui-lib 6.5.2 → 6.5.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 +4 -1
- package/dist/index.js +207 -161
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +197 -151
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +49 -1
package/package.json
CHANGED
|
@@ -4104,4 +4104,52 @@ export const APILabel = styled.label`
|
|
|
4104
4104
|
top: 12px;
|
|
4105
4105
|
z-index: 1;
|
|
4106
4106
|
border-radius: var(--ter-rd);
|
|
4107
|
-
`
|
|
4107
|
+
`
|
|
4108
|
+
|
|
4109
|
+
export const TableContentWrapper = styled.div<{ $mode?: 'package' }>`
|
|
4110
|
+
position: relative;
|
|
4111
|
+
width: 100%;
|
|
4112
|
+
height: 48px;
|
|
4113
|
+
display: inline-grid;
|
|
4114
|
+
grid-auto-flow: column;
|
|
4115
|
+
justify-content: flex-start;
|
|
4116
|
+
align-items: center;
|
|
4117
|
+
grid-gap: 40px;
|
|
4118
|
+
border-bottom: 1px solid var(--ter-clr-ln);
|
|
4119
|
+
padding: 0 30px;
|
|
4120
|
+
&:not(:first-child) {
|
|
4121
|
+
border-bottom: 1px solid var(--ter-clr-ln);
|
|
4122
|
+
}
|
|
4123
|
+
@media only screen and (min-width: 375px) {
|
|
4124
|
+
padding: 0 34px;
|
|
4125
|
+
}
|
|
4126
|
+
@media only screen and (min-width: 768px) {
|
|
4127
|
+
padding: 0 33px;
|
|
4128
|
+
}
|
|
4129
|
+
@media only screen and (min-width: 1024px) {
|
|
4130
|
+
padding: 0 39px;
|
|
4131
|
+
}
|
|
4132
|
+
@media only screen and (min-width: 1366px) {
|
|
4133
|
+
padding: 0 47px;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
${({ $mode }) => $mode === 'package' && css`
|
|
4137
|
+
grid-template-columns: 16px 220px auto;
|
|
4138
|
+
grid-gap: 11px;
|
|
4139
|
+
justify-content: normal;
|
|
4140
|
+
padding: 0 7px 0 3px;
|
|
4141
|
+
@media only screen and (min-width: 375px) {
|
|
4142
|
+
padding: 0 7px;
|
|
4143
|
+
}
|
|
4144
|
+
@media only screen and (min-width: 768px) {
|
|
4145
|
+
grid-gap: 12px;
|
|
4146
|
+
padding: 0 7px 0 5px;
|
|
4147
|
+
}
|
|
4148
|
+
@media only screen and (min-width: 1024px) {
|
|
4149
|
+
padding: 0 7px 0 11px;
|
|
4150
|
+
}
|
|
4151
|
+
@media only screen and (min-width: 1366px) {
|
|
4152
|
+
padding: 0 11px 0 19px;
|
|
4153
|
+
}
|
|
4154
|
+
`}
|
|
4155
|
+
`
|