@apcrda/ui 0.4.9 → 0.5.0
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/components/EmptyState/EmptyState.d.ts +5 -0
- package/dist/components/EmptyState/EmptyState.types.d.ts +7 -0
- package/dist/components/EmptyState/index.d.ts +2 -0
- package/dist/components/Progress/Progress.d.ts +5 -0
- package/dist/components/Progress/Progress.types.d.ts +12 -0
- package/dist/components/Progress/index.d.ts +2 -0
- package/dist/components/Skeleton/Skeleton.d.ts +25 -0
- package/dist/components/Skeleton/Skeleton.types.d.ts +6 -0
- package/dist/components/Skeleton/index.d.ts +2 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/index.js +851 -703
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { EmptyStateProps } from './EmptyState.types';
|
|
2
|
+
export declare function EmptyState({ icon, title, description, action, className, ...props }: EmptyStateProps): import("react").JSX.Element;
|
|
3
|
+
export declare namespace EmptyState {
|
|
4
|
+
var displayName: string;
|
|
5
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ProgressProps } from './Progress.types';
|
|
2
|
+
export declare function Progress({ value, max, variant, size, label, showValue, indeterminate, className, ...props }: ProgressProps): import("react").JSX.Element;
|
|
3
|
+
export declare namespace Progress {
|
|
4
|
+
var displayName: string;
|
|
5
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { HTMLAttributes } from 'react';
|
|
2
|
+
export type ProgressVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
3
|
+
export type ProgressSize = 'sm' | 'md' | 'lg';
|
|
4
|
+
export interface ProgressProps extends HTMLAttributes<HTMLDivElement> {
|
|
5
|
+
readonly value?: number;
|
|
6
|
+
readonly max?: number;
|
|
7
|
+
readonly variant?: ProgressVariant;
|
|
8
|
+
readonly size?: ProgressSize;
|
|
9
|
+
readonly label?: string;
|
|
10
|
+
readonly showValue?: boolean;
|
|
11
|
+
readonly indeterminate?: boolean;
|
|
12
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { SkeletonProps } from './Skeleton.types';
|
|
2
|
+
export declare function Skeleton({ width, height, rounded, className, style, ...props }: SkeletonProps): import("react").JSX.Element;
|
|
3
|
+
export declare namespace Skeleton {
|
|
4
|
+
var displayName: string;
|
|
5
|
+
}
|
|
6
|
+
export declare function SkeletonText({ lines, className }: {
|
|
7
|
+
lines?: number;
|
|
8
|
+
className?: string;
|
|
9
|
+
}): import("react").JSX.Element;
|
|
10
|
+
export declare namespace SkeletonText {
|
|
11
|
+
var displayName: string;
|
|
12
|
+
}
|
|
13
|
+
export declare function SkeletonAvatar({ size, className }: {
|
|
14
|
+
size?: number;
|
|
15
|
+
className?: string;
|
|
16
|
+
}): import("react").JSX.Element;
|
|
17
|
+
export declare namespace SkeletonAvatar {
|
|
18
|
+
var displayName: string;
|
|
19
|
+
}
|
|
20
|
+
export declare function SkeletonCard({ className }: {
|
|
21
|
+
className?: string;
|
|
22
|
+
}): import("react").JSX.Element;
|
|
23
|
+
export declare namespace SkeletonCard {
|
|
24
|
+
var displayName: string;
|
|
25
|
+
}
|
|
@@ -17,6 +17,7 @@ export * from './DateRangePicker';
|
|
|
17
17
|
export * from './Dialog';
|
|
18
18
|
export * from './Divider';
|
|
19
19
|
export * from './Drawer';
|
|
20
|
+
export * from './EmptyState';
|
|
20
21
|
export * from './FileUpload';
|
|
21
22
|
export * from './FormField';
|
|
22
23
|
export * from './Input';
|
|
@@ -25,9 +26,11 @@ export * from './MultiSelect';
|
|
|
25
26
|
export * from './NotificationCenter';
|
|
26
27
|
export * from './Pagination';
|
|
27
28
|
export * from './Popover';
|
|
29
|
+
export * from './Progress';
|
|
28
30
|
export * from './RadioGroup';
|
|
29
31
|
export * from './Select';
|
|
30
32
|
export * from './Sidebar';
|
|
33
|
+
export * from './Skeleton';
|
|
31
34
|
export * from './StatCard';
|
|
32
35
|
export * from './Stepper';
|
|
33
36
|
export * from './Switch';
|