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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.11.13",
3
+ "version": "5.11.15",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -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={105}
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='50' rx='0' ry='0' width='180px' height='16'/>
1501
- <rect x='0' y='90' rx='0' ry='0' width='100px' height='14'/>
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
  }