@apexcura/ui-components 0.0.16-Beta932 → 0.0.16-Beta933
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/DisplayTimeline.d.ts +3 -0
- package/dist/Types/types.d.ts +6 -1
- package/dist/index.d.ts +1 -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
|
@@ -91,7 +91,7 @@ export type ElementType = {
|
|
|
91
91
|
errorClassName?: string;
|
|
92
92
|
expandIconStyles?: boolean;
|
|
93
93
|
value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | dropDownValueProps | radioValueProps | WeekSchedule | autoCompleteProps;
|
|
94
|
-
status?:
|
|
94
|
+
status?: string | undefined;
|
|
95
95
|
styles?: React.CSSProperties;
|
|
96
96
|
variant?: 'outlined' | 'borderless' | 'filled';
|
|
97
97
|
label?: string;
|
|
@@ -197,6 +197,11 @@ export type ElementType = {
|
|
|
197
197
|
progress?: number;
|
|
198
198
|
className?: string;
|
|
199
199
|
contact?: string;
|
|
200
|
+
status?: string;
|
|
201
|
+
assignedTo?: string;
|
|
202
|
+
user?: string;
|
|
203
|
+
dot?: React.ReactNode;
|
|
204
|
+
children?: string;
|
|
200
205
|
}[];
|
|
201
206
|
primaryText?: string;
|
|
202
207
|
secondaryText?: string;
|
package/dist/index.d.ts
CHANGED