@datability/8ui 1.5.3 → 1.5.4

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.
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+ import { PropsLoadingOverlay } from './index.type';
3
+ declare const LoadingOverlay: React.FC<PropsLoadingOverlay>;
4
+ export default LoadingOverlay;
@@ -0,0 +1,4 @@
1
+ export type PropsLoadingOverlay = {
2
+ open: boolean;
3
+ progress?: number;
4
+ };
@@ -46,6 +46,8 @@ export { default as CounterLabel } from './components/counter-label';
46
46
  export type { PropsCounterLabel, CounterLabelShape, CounterLabelSize, CounterLabelType, } from './components/counter-label/index.type';
47
47
  export { default as Loading } from './components/loading';
48
48
  export type { PropsLoading, LoadingThickness } from './components/loading/index.type';
49
+ export { default as LoadingOverlay } from './components/loading-overlay';
50
+ export type { PropsLoadingOverlay } from './components/loading-overlay/index.type';
49
51
  export { default as Modal } from './components/modal';
50
52
  export type { PropsModal } from './components/modal/index.type';
51
53
  export { default as DialogBox } from './components/dialog-box';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ declare const LoadingOverlayDemo: React.FC;
3
+ export default LoadingOverlayDemo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datability/8ui",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {