@soppiya/elementus 1.1.7 → 1.1.9
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/appError/AppError.d.ts +1 -0
- package/dist/components/filters/index.d.ts +1 -0
- package/dist/components/index-filters/index.d.ts +1 -0
- package/dist/components/index-sorting/index.d.ts +1 -0
- package/dist/components/index.d.ts +59 -59
- package/dist/components/tab/index.d.ts +1 -0
- package/dist/components/table/index.d.ts +1 -0
- package/dist/components/tooltip/index.d.ts +1 -0
- package/dist/index.cjs.js +8 -8
- package/dist/index.es.js +157 -157
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ interface AppErrorProps extends Omit<React.ComponentProps<"div">, "title"> {
|
|
|
6
6
|
title?: React.ReactNode;
|
|
7
7
|
subTitle?: React.ReactNode;
|
|
8
8
|
status?: ErrorStatus;
|
|
9
|
+
mode?: "dashboard" | "settings";
|
|
9
10
|
}
|
|
10
11
|
declare const AppError: React.ForwardRefExoticComponent<Omit<AppErrorProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
12
|
export default AppError;
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export
|
|
29
|
-
export
|
|
30
|
-
export
|
|
31
|
-
export
|
|
32
|
-
export
|
|
33
|
-
export
|
|
34
|
-
export
|
|
35
|
-
export
|
|
36
|
-
export
|
|
37
|
-
export
|
|
38
|
-
export
|
|
39
|
-
export
|
|
40
|
-
export
|
|
41
|
-
export
|
|
42
|
-
export
|
|
43
|
-
export
|
|
44
|
-
export
|
|
45
|
-
export
|
|
46
|
-
export
|
|
47
|
-
export
|
|
48
|
-
export
|
|
49
|
-
export
|
|
50
|
-
export
|
|
51
|
-
export
|
|
52
|
-
export
|
|
53
|
-
export
|
|
54
|
-
export
|
|
55
|
-
export
|
|
56
|
-
export
|
|
57
|
-
export
|
|
58
|
-
export
|
|
59
|
-
export
|
|
1
|
+
export * from './accordion';
|
|
2
|
+
export * from './animatedBar';
|
|
3
|
+
export * from './badge';
|
|
4
|
+
export * from './banner';
|
|
5
|
+
export * from './blockStack';
|
|
6
|
+
export * from './box';
|
|
7
|
+
export * from './button';
|
|
8
|
+
export * from './buttonGroup';
|
|
9
|
+
export * from './appError';
|
|
10
|
+
export * from './card';
|
|
11
|
+
export * from './checkbox';
|
|
12
|
+
export * from './colorPicker';
|
|
13
|
+
export * from './cursorPagination';
|
|
14
|
+
export * from './datePicker';
|
|
15
|
+
export * from './demoColorPicker';
|
|
16
|
+
export * from './divider';
|
|
17
|
+
export * from './dropdownPagination';
|
|
18
|
+
export * from './edgeBlurWrapper';
|
|
19
|
+
export * from './emptyState';
|
|
20
|
+
export * from './exceptionList';
|
|
21
|
+
export * from './filters';
|
|
22
|
+
export * from './grid';
|
|
23
|
+
export * from './image';
|
|
24
|
+
export * from './index-filters';
|
|
25
|
+
export * from './index-sorting';
|
|
26
|
+
export * from './inlineStack';
|
|
27
|
+
export * from './input';
|
|
28
|
+
export * from './list';
|
|
29
|
+
export * from './listBox';
|
|
30
|
+
export * from './modal';
|
|
31
|
+
export * from './otp';
|
|
32
|
+
export * from './page';
|
|
33
|
+
export * from './pagination';
|
|
34
|
+
export * from './phone';
|
|
35
|
+
export * from './popover';
|
|
36
|
+
export * from './progressBar';
|
|
37
|
+
export * from './radio';
|
|
38
|
+
export * from './range';
|
|
39
|
+
export * from './resourceItem';
|
|
40
|
+
export * from './section-heading';
|
|
41
|
+
export * from './select';
|
|
42
|
+
export * from './skeletonBodyText';
|
|
43
|
+
export * from './skeletonDisplayText';
|
|
44
|
+
export * from './skeletonThumbnail';
|
|
45
|
+
export * from './snackBar';
|
|
46
|
+
export * from './soppiyaIcon';
|
|
47
|
+
export * from './spinner';
|
|
48
|
+
export * from './switch';
|
|
49
|
+
export * from './tab';
|
|
50
|
+
export * from './table';
|
|
51
|
+
export * from './table/Table.Props';
|
|
52
|
+
export * from './tag';
|
|
53
|
+
export * from './tagList';
|
|
54
|
+
export * from './text';
|
|
55
|
+
export * from './textarea';
|
|
56
|
+
export * from './tinyMce';
|
|
57
|
+
export * from './tooltip';
|
|
58
|
+
export * from './userAvatar';
|
|
59
|
+
export * from './verifyStatus';
|