@apexcura/ui-components 0.0.16-Beta113 → 0.0.16-Beta115
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/Types/types.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
package/dist/Types/types.d.ts
CHANGED
|
@@ -36,6 +36,8 @@ export type ElementType = {
|
|
|
36
36
|
prefix?: React.ReactNode;
|
|
37
37
|
type?: string;
|
|
38
38
|
size?: SizeType;
|
|
39
|
+
errorText?: string;
|
|
40
|
+
errorClassName?: string;
|
|
39
41
|
value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | dropDownValueProps;
|
|
40
42
|
status?: 'error' | 'warning';
|
|
41
43
|
styles?: React.CSSProperties;
|
|
@@ -139,6 +141,7 @@ export type ElementType = {
|
|
|
139
141
|
weekrange?: boolean;
|
|
140
142
|
message?: string;
|
|
141
143
|
isStatus?: boolean;
|
|
144
|
+
isDelete?: boolean;
|
|
142
145
|
description?: string;
|
|
143
146
|
notificationType?: 'success' | 'info' | 'warning' | 'error';
|
|
144
147
|
showProgress?: boolean;
|