forstok-ui-lib 6.6.6 → 6.6.7
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 +7 -1
- package/dist/index.js +165 -148
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +165 -148
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +19 -0
- package/src/components/loader/index.tsx +16 -0
package/package.json
CHANGED
|
@@ -4692,4 +4692,23 @@ export const TableBundleColumn = styled.article`
|
|
|
4692
4692
|
display: block !important;
|
|
4693
4693
|
}
|
|
4694
4694
|
}
|
|
4695
|
+
`
|
|
4696
|
+
export const FilterStoreContainer = styled.div`
|
|
4697
|
+
margin-top: 16px;
|
|
4698
|
+
max-height: 80px;
|
|
4699
|
+
overflow: auto;
|
|
4700
|
+
> span {
|
|
4701
|
+
font-size: 14px;
|
|
4702
|
+
}
|
|
4703
|
+
`
|
|
4704
|
+
export const FilterStoreList = styled.div`
|
|
4705
|
+
margin: 6px 12px;
|
|
4706
|
+
display: inline-grid;
|
|
4707
|
+
grid-template-columns: 14px max-content;
|
|
4708
|
+
grid-gap: 8px;
|
|
4709
|
+
font-size: 14px;
|
|
4710
|
+
vertical-align: middle;
|
|
4711
|
+
label:nth-child(2) {
|
|
4712
|
+
cursor: pointer;
|
|
4713
|
+
}
|
|
4695
4714
|
`
|
|
@@ -76,6 +76,22 @@ export const ContentLoaderAnalyticsMenu = () => <ContentLoader
|
|
|
76
76
|
foregroundOpacity={0.12}>
|
|
77
77
|
<rect x='0' y='15' rx='0' ry='0' width='100%' height='36' />
|
|
78
78
|
</ContentLoader>
|
|
79
|
+
export const ContentLoaderOneLine = ({ $width, $height }:{ $width?: number | string, $height?: number }) => {
|
|
80
|
+
const _width = $width || 75
|
|
81
|
+
const _height = $height || 30
|
|
82
|
+
return <ContentLoader
|
|
83
|
+
height={_height}
|
|
84
|
+
width={_width}
|
|
85
|
+
speed={1}
|
|
86
|
+
backgroundColor='rgb(0,0,0)'
|
|
87
|
+
foregroundColor='rgb(0,0,0)'
|
|
88
|
+
backgroundOpacity={0.06}
|
|
89
|
+
foregroundOpacity={0.12}
|
|
90
|
+
viewBox={`0 0 ${_width} ${_height}`}
|
|
91
|
+
>
|
|
92
|
+
<rect x='0' y='0' rx='0' ry='0' width={_width} height={_height} />
|
|
93
|
+
</ContentLoader>
|
|
94
|
+
}
|
|
79
95
|
export const ContentLoaderOrderList = () => {
|
|
80
96
|
const xA = 100, wA = boxWidth - 600;
|
|
81
97
|
const xB = boxWidth - 405, wB = 120;
|