@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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ export declare const DisplayTimeline: (props: ElementType) => React.JSX.Element;
@@ -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?: 'error' | 'warning';
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
@@ -41,3 +41,4 @@ export * from './Components/SplitButton';
41
41
  export * from './Components/TableCopyComponent';
42
42
  export * from './Components/GoogleMapWidget';
43
43
  export * from './Components/AntdButton';
44
+ export * from './Components/DisplayTimeline';