forstok-ui-lib 5.11.13 → 5.11.15
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 +154 -148
- package/dist/index.js +288 -288
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +291 -291
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/index.ts +1 -0
- package/src/components/loader/index.tsx +4 -3
package/package.json
CHANGED
package/src/components/index.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as TextComponent } from './text';
|
|
|
2
2
|
export { default as LinkComponent } from './link';
|
|
3
3
|
export { default as InputComponent } from './input';
|
|
4
4
|
export { default as InputRefComponent } from './input/ref';
|
|
5
|
+
export { default as InputOTPComponent } from './input/otp';
|
|
5
6
|
export { default as CheckboxComponent } from './checkbox';
|
|
6
7
|
export { default as ButtonComponent } from './button';
|
|
7
8
|
export { default as LabelComponent } from './label';
|
|
@@ -1489,7 +1489,7 @@ export const ContentLoaderOneLinePromotion = () => {
|
|
|
1489
1489
|
export const ContentLoaderPOSStore = () => {
|
|
1490
1490
|
return (
|
|
1491
1491
|
<ContentLoader
|
|
1492
|
-
height={
|
|
1492
|
+
height={125}
|
|
1493
1493
|
width='100%'
|
|
1494
1494
|
speed={1}
|
|
1495
1495
|
backgroundColor='rgb(0,0,0)'
|
|
@@ -1497,8 +1497,9 @@ export const ContentLoaderPOSStore = () => {
|
|
|
1497
1497
|
backgroundOpacity={0.06}
|
|
1498
1498
|
foregroundOpacity={0.12}>
|
|
1499
1499
|
<rect x='0' y='4' rx='0' ry='0' width='100%' height='20'/>
|
|
1500
|
-
<rect x='0' y='
|
|
1501
|
-
<rect x='0' y='
|
|
1500
|
+
<rect x='0' y='28' rx='0' ry='0' width='100%' height='20'/>
|
|
1501
|
+
<rect x='0' y='70' rx='0' ry='0' width='180px' height='16'/>
|
|
1502
|
+
<rect x='0' y='110' rx='0' ry='0' width='100px' height='14'/>
|
|
1502
1503
|
</ContentLoader>
|
|
1503
1504
|
)
|
|
1504
1505
|
}
|