labsense-ui-kit 1.1.72 → 1.1.74
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/Badge/Badge.d.ts +1 -1
- package/dist/ProgressBar/CircularProgress.tsx.d.ts +11 -0
- package/dist/ProgressBar/ProgressBar.d.ts +7 -2
- package/dist/ProgressBar/index.d.ts +3 -2
- package/dist/Sidebar/Sidebar.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +939 -5490
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +934 -5486
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/Badge/Badge.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface CircularProgressProps {
|
|
3
|
+
threshold?: number;
|
|
4
|
+
totalCapacity: number;
|
|
5
|
+
usedCapacity: number;
|
|
6
|
+
progressColor?: string;
|
|
7
|
+
thresholdColor?: string;
|
|
8
|
+
trackColor?: string;
|
|
9
|
+
}
|
|
10
|
+
declare const CircularProgress: React.FC<CircularProgressProps>;
|
|
11
|
+
export default CircularProgress;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
interface ProgressBarProps {
|
|
3
|
-
|
|
2
|
+
export interface ProgressBarProps {
|
|
3
|
+
threshold?: number;
|
|
4
|
+
totalCapacity: number;
|
|
5
|
+
usedCapacity: number;
|
|
6
|
+
progressColor?: string;
|
|
7
|
+
thresholdColor?: string;
|
|
8
|
+
trackColor?: string;
|
|
4
9
|
}
|
|
5
10
|
declare const ProgressBar: React.FC<ProgressBarProps>;
|
|
6
11
|
export default ProgressBar;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import CircularProgress, { CircularProgressProps } from './CircularProgress.tsx';
|
|
2
|
+
import ProgressBar, { ProgressBarProps } from './ProgressBar';
|
|
3
|
+
export { ProgressBar, ProgressBarProps, CircularProgress, CircularProgressProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { Icon, IconNames } from './Icons';
|
|
|
10
10
|
import { SearchBox, TextArea, TextField, TextFieldWithDropdown, CheckBox } from './Inputs';
|
|
11
11
|
import { CircularLoader, Loader } from './Loader';
|
|
12
12
|
import { Pagination } from './Pagination';
|
|
13
|
-
import { ProgressBar } from './ProgressBar';
|
|
13
|
+
import { ProgressBar, ProgressBarProps, CircularProgress, CircularProgressProps } from './ProgressBar';
|
|
14
14
|
import { Sidebar, logoDetails, SidebarItems } from './Sidebar';
|
|
15
15
|
import { Table, TableCell, TableRow, TableProps } from './Table';
|
|
16
16
|
import { InternalTabs, Tabs, TabContentProps } from './Tabs';
|
|
@@ -29,7 +29,7 @@ export { Icon, IconNames };
|
|
|
29
29
|
export { SearchBox, TextArea, TextField, TextFieldWithDropdown, CheckBox };
|
|
30
30
|
export { CircularLoader, Loader };
|
|
31
31
|
export { Pagination };
|
|
32
|
-
export { ProgressBar };
|
|
32
|
+
export { ProgressBar, ProgressBarProps, CircularProgress, CircularProgressProps };
|
|
33
33
|
export { Sidebar, logoDetails, SidebarItems };
|
|
34
34
|
export { TableCell, Table, TableRow, TableProps };
|
|
35
35
|
export { InternalTabs, Tabs, TabContentProps };
|