@apexcura/ui-components 0.0.16-Beta13 → 0.0.16-Beta1300

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.
Files changed (67) hide show
  1. package/dist/Components/ACBreadcrumb.d.ts +16 -0
  2. package/dist/Components/AadharComponent.d.ts +3 -0
  3. package/dist/Components/AbhaNumberComponent.d.ts +3 -0
  4. package/dist/Components/AntdButton.d.ts +4 -0
  5. package/dist/Components/AutoCompleteInput.d.ts +14 -0
  6. package/dist/Components/AvatarUpload.d.ts +3 -0
  7. package/dist/Components/Button.d.ts +3 -0
  8. package/dist/Components/Capcha.d.ts +3 -0
  9. package/dist/Components/CardElement.d.ts +3 -0
  10. package/dist/Components/CheckBoxTable.d.ts +12 -0
  11. package/dist/Components/Checkbox.d.ts +3 -0
  12. package/dist/Components/ColorPickerElement.d.ts +3 -0
  13. package/dist/Components/CustomStepper.d.ts +3 -0
  14. package/dist/Components/DatePicker.d.ts +3 -0
  15. package/dist/Components/DateRangePickerElement.d.ts +3 -0
  16. package/dist/Components/DateRangeSegments.d.ts +16 -0
  17. package/dist/Components/DisplayTimeline.d.ts +3 -0
  18. package/dist/Components/DivContainer.d.ts +3 -0
  19. package/dist/Components/Document.d.ts +3 -0
  20. package/dist/Components/DropDownGroup.d.ts +19 -0
  21. package/dist/Components/DropdownElement.d.ts +3 -0
  22. package/dist/Components/Editor.d.ts +0 -0
  23. package/dist/Components/FilesUpload.d.ts +3 -0
  24. package/dist/Components/FormInputLabel.d.ts +11 -0
  25. package/dist/Components/GoogleMapWidget.d.ts +3 -0
  26. package/dist/Components/GradientCard.d.ts +5 -0
  27. package/dist/Components/GradientCardGroup.d.ts +24 -0
  28. package/dist/Components/Image.d.ts +3 -0
  29. package/dist/Components/KanbanBoard.d.ts +2 -0
  30. package/dist/Components/MediaUpload.d.ts +3 -0
  31. package/dist/Components/Navbar.d.ts +3 -0
  32. package/dist/Components/Notification.d.ts +3 -0
  33. package/dist/Components/NotificationAlert.d.ts +3 -0
  34. package/dist/Components/NumberElement.d.ts +4 -0
  35. package/dist/Components/OtpElement.d.ts +3 -0
  36. package/dist/Components/PasswordElement.d.ts +3 -0
  37. package/dist/Components/Profile.d.ts +3 -0
  38. package/dist/Components/ProfileContainer.d.ts +3 -0
  39. package/dist/Components/QRCodeElement.d.ts +5 -0
  40. package/dist/Components/RadioElement.d.ts +16 -0
  41. package/dist/Components/SegmentedElement.d.ts +3 -0
  42. package/dist/Components/SelectElement.d.ts +4 -0
  43. package/dist/Components/Sidebar.d.ts +4 -0
  44. package/dist/Components/SingleCheckbox.d.ts +3 -0
  45. package/dist/Components/SpanElement.d.ts +3 -0
  46. package/dist/Components/SplitButton.d.ts +3 -0
  47. package/dist/Components/SwitchElement.d.ts +3 -0
  48. package/dist/Components/TableCopyComponent.d.ts +4 -0
  49. package/dist/Components/TableElement.d.ts +13 -0
  50. package/dist/Components/TabsElement.d.ts +3 -0
  51. package/dist/Components/TextEditor.d.ts +5 -0
  52. package/dist/Components/TextElement.d.ts +5 -0
  53. package/dist/Components/TextareaElement.d.ts +4 -0
  54. package/dist/Components/TimePicker.d.ts +3 -0
  55. package/dist/Components/TimeRangeComponent.d.ts +3 -0
  56. package/dist/Components/TimeScheduleTable.d.ts +3 -0
  57. package/dist/Components/Video.d.ts +3 -0
  58. package/dist/Types/types.d.ts +329 -0
  59. package/dist/constants/icons.d.ts +12 -0
  60. package/dist/index.d.ts +53 -156
  61. package/dist/index.js +3 -1684
  62. package/dist/index.js.LICENSE.txt +1662 -0
  63. package/dist/index.js.map +1 -0
  64. package/dist/report.html +39 -0
  65. package/package.json +57 -61
  66. package/dist/index.d.mts +0 -156
  67. package/dist/index.mjs +0 -1638
@@ -0,0 +1,329 @@
1
+ import { InputRef, UploadFile } from 'antd';
2
+ import { SizeType } from 'antd/es/config-provider/SizeContext';
3
+ import { RadioGroupButtonStyle } from 'antd/es/radio';
4
+ import { TabsPosition } from 'antd/es/tabs';
5
+ import { TooltipPlacement } from 'antd/es/tooltip';
6
+ import { SortOrder } from 'antd/es/table/interface';
7
+ import React, { CSSProperties, JSXElementConstructor, LegacyRef, ReactElement, ReactNode } from 'react';
8
+ type PaginationType = {
9
+ name?: string;
10
+ page?: number;
11
+ pageSize?: number;
12
+ };
13
+ type DateRangeSegmentType = {
14
+ values?: string[];
15
+ segmentedValue?: string;
16
+ };
17
+ interface ScheduleType {
18
+ from: string | null;
19
+ to: string | null;
20
+ }
21
+ interface WeekSchedule {
22
+ Sunday: ScheduleType;
23
+ Monday: ScheduleType;
24
+ Tuesday: ScheduleType;
25
+ Wednesday: ScheduleType;
26
+ Thursday: ScheduleType;
27
+ Friday: ScheduleType;
28
+ Saturday: ScheduleType;
29
+ }
30
+ type dropDownValueProps = {
31
+ firstValue: {
32
+ key?: string | undefined;
33
+ label?: string | undefined;
34
+ value?: string | undefined;
35
+ } | undefined;
36
+ secondValue: {
37
+ key?: string | undefined;
38
+ label?: string | undefined;
39
+ value?: string | undefined;
40
+ } | undefined;
41
+ };
42
+ type radioValueProps = {
43
+ value: {
44
+ key?: string | undefined;
45
+ label?: string | undefined;
46
+ value?: string | undefined;
47
+ } | undefined;
48
+ };
49
+ type autoCompleteProps = {
50
+ value?: {
51
+ key?: string;
52
+ value?: string;
53
+ };
54
+ };
55
+ interface ChildRecordType {
56
+ _id?: string;
57
+ id?: string;
58
+ name?: string;
59
+ label?: string;
60
+ element?: string;
61
+ type?: string;
62
+ value?: boolean;
63
+ children?: ChildRecordType[];
64
+ }
65
+ export type ElementType = {
66
+ showToolbar?: boolean;
67
+ src?: string;
68
+ isPopover?: boolean;
69
+ title?: string;
70
+ okText?: string;
71
+ cancelText?: string;
72
+ disabledColor?: string;
73
+ tooltip?: {
74
+ title: string;
75
+ placement: 'top' | 'bottom' | 'left' | 'right';
76
+ };
77
+ varient?: 'solid' | 'outlined' | 'light';
78
+ color?: string;
79
+ buttonStyle?: RadioGroupButtonStyle;
80
+ tableHeight?: string;
81
+ buttonVariant?: string;
82
+ optionRender?: (option: {
83
+ key?: string | number | bigint;
84
+ label?: string | ReactNode;
85
+ value?: string | number;
86
+ color?: string;
87
+ }) => React.ReactNode;
88
+ active?: number;
89
+ visitedClassName?: string;
90
+ accept?: string | undefined;
91
+ max_count?: number | undefined;
92
+ multiple?: boolean | undefined;
93
+ activeClassName?: string;
94
+ fileList?: UploadFile[];
95
+ radioGroupClassName?: string | undefined;
96
+ selectedStyle?: boolean;
97
+ style?: CSSProperties;
98
+ firstValue?: string;
99
+ secondValue?: string;
100
+ className?: string | undefined;
101
+ placeholder?: string;
102
+ addonBefore?: React.ReactNode;
103
+ format?: string;
104
+ indexWidth?: number;
105
+ tabPosition?: TabsPosition;
106
+ defaultValue?: string | {
107
+ label: string;
108
+ value: string;
109
+ search?: string;
110
+ };
111
+ limit?: number;
112
+ ref?: LegacyRef<InputRef> | undefined;
113
+ disabled?: boolean;
114
+ prefix?: React.ReactNode;
115
+ type?: string;
116
+ searchable?: boolean;
117
+ expandIcon?: boolean;
118
+ size?: SizeType | number;
119
+ colWidth?: string;
120
+ errorText?: string;
121
+ errorClassName?: string;
122
+ expandIconStyles?: boolean;
123
+ enableRowSelection?: boolean;
124
+ showSelectionControls?: boolean;
125
+ dropdownStyle?: CSSProperties;
126
+ isIconOnly?: boolean;
127
+ value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | DateRangeSegmentType | dropDownValueProps | radioValueProps | WeekSchedule | autoCompleteProps;
128
+ status?: string | undefined;
129
+ styles?: React.CSSProperties;
130
+ variant?: 'outlined' | 'borderless' | 'filled';
131
+ bordered?: boolean;
132
+ enable_all?: boolean;
133
+ label?: string;
134
+ name?: string;
135
+ suffix?: React.ReactNode;
136
+ rowClickExpandable?: boolean;
137
+ expandable?: boolean;
138
+ maxLength?: number;
139
+ sortable?: boolean;
140
+ indexClickable?: boolean;
141
+ splitButton?: {
142
+ value: string;
143
+ icon: string;
144
+ label: string;
145
+ isSVGStylesOverride: boolean;
146
+ tooltip: string;
147
+ }[];
148
+ options?: {
149
+ key?: string;
150
+ label?: string;
151
+ value?: string;
152
+ icon?: string;
153
+ tooltip?: string;
154
+ color?: string;
155
+ }[];
156
+ firstOptions?: {
157
+ key?: string;
158
+ label: string;
159
+ value: string;
160
+ }[];
161
+ secondOptions?: {
162
+ key?: string;
163
+ label?: string;
164
+ value?: string;
165
+ }[];
166
+ firstPlaceholder?: string;
167
+ secondPlaceholder?: string;
168
+ view?: boolean;
169
+ enabled_dates?: string;
170
+ onChange?: (value: string | number | boolean | object | object[] | undefined) => void;
171
+ onClick?: (value: string | number | boolean | object | object[] | undefined) => void;
172
+ dropDownOptions?: (number | string | boolean | object | null | undefined | (() => void))[];
173
+ id?: number | string;
174
+ fullHeight?: boolean;
175
+ thead?: {
176
+ sorter?: boolean;
177
+ defaultSortOrder?: SortOrder;
178
+ width?: number;
179
+ _id?: string;
180
+ name?: string;
181
+ label?: string;
182
+ visible?: boolean;
183
+ required?: boolean;
184
+ key?: string;
185
+ render?: (text: string) => React.JSX.Element;
186
+ renderCell?: (value: number, record: string, index: number) => React.ReactNode;
187
+ ellipsis?: boolean;
188
+ sortable?: boolean;
189
+ filtered?: boolean;
190
+ filters?: {
191
+ text: string;
192
+ value: string;
193
+ }[];
194
+ fixed?: string | boolean | undefined;
195
+ disabled?: boolean;
196
+ clickable?: boolean;
197
+ }[];
198
+ childHead?: {
199
+ _id?: string;
200
+ name?: string;
201
+ label?: string;
202
+ visible?: boolean;
203
+ required?: boolean;
204
+ key?: string;
205
+ render?: (text: string) => React.JSX.Element;
206
+ ellipsis?: boolean;
207
+ sortable?: boolean;
208
+ filtered?: boolean;
209
+ filters?: {
210
+ text: string;
211
+ value: string;
212
+ }[];
213
+ }[];
214
+ tbody?: ChildRecordType[];
215
+ optionType?: string;
216
+ selectedClassName?: string;
217
+ action?: React.MouseEventHandler<HTMLElement> | string;
218
+ listClassName?: string;
219
+ listItemClassName?: string;
220
+ img?: string;
221
+ video?: string;
222
+ height?: number;
223
+ width?: number;
224
+ imgExpand?: string;
225
+ segmentedValue?: string;
226
+ useSegments?: string;
227
+ imgCollapse?: string;
228
+ pageSizeOptions?: number[];
229
+ items?: {
230
+ iconClassName?: string;
231
+ href?: string;
232
+ title?: string;
233
+ id?: number;
234
+ key?: number | string;
235
+ element?: string;
236
+ icon?: string;
237
+ label?: string;
238
+ active?: number;
239
+ text?: string;
240
+ time?: string;
241
+ name?: string;
242
+ y?: number;
243
+ color?: string;
244
+ isCount?: boolean;
245
+ count?: number;
246
+ isNewMenuItem?: boolean;
247
+ progress?: number;
248
+ className?: string;
249
+ contact?: string;
250
+ status?: string;
251
+ assignedTo?: string;
252
+ user?: string;
253
+ dot?: React.ReactNode;
254
+ children?: string;
255
+ }[];
256
+ primaryText?: string;
257
+ secondaryText?: string;
258
+ count?: number;
259
+ icon?: string;
260
+ placement?: TooltipPlacement;
261
+ profileImage?: string;
262
+ buttonClassName?: string;
263
+ profileImageClassName?: string;
264
+ profileSubClassName?: string;
265
+ subContainerClassName?: string;
266
+ element?: string;
267
+ secondTextClassName?: string;
268
+ iconClassName?: string;
269
+ iconsClassName?: string;
270
+ labelClassName?: string;
271
+ containerClassName?: string;
272
+ isSVGStylesOverride?: boolean;
273
+ rowSelection?: string;
274
+ length?: number;
275
+ imgClassName?: string;
276
+ loading?: boolean;
277
+ fillText1?: string;
278
+ fillText2?: string;
279
+ pagination?: boolean;
280
+ antdButton?: boolean;
281
+ required?: boolean;
282
+ is_detail?: boolean;
283
+ checkedChildren?: string;
284
+ unCheckedChildren?: string;
285
+ dateTime?: string;
286
+ isDateTime?: boolean;
287
+ minRows?: number;
288
+ maxRows?: number;
289
+ isSearch?: boolean;
290
+ allowText?: boolean;
291
+ mode?: 'multiple' | 'tags' | undefined;
292
+ picker?: 'date' | 'week' | 'month' | 'quarter' | 'year';
293
+ weekrange?: boolean;
294
+ rangePresets?: boolean;
295
+ message?: string;
296
+ isStatus?: boolean;
297
+ isDelete?: boolean;
298
+ description?: string;
299
+ notificationType?: 'success' | 'info' | 'warning' | 'error';
300
+ showProgress?: boolean;
301
+ isLoading?: boolean;
302
+ isNotChatbot?: boolean;
303
+ allowClear?: boolean;
304
+ isBack?: boolean;
305
+ showCount?: boolean;
306
+ avatarClassName?: string;
307
+ segmentedOptions?: string[] | {
308
+ tooltip: string;
309
+ label: string;
310
+ value: string;
311
+ }[];
312
+ manageRadioButton?: boolean;
313
+ cardClassname?: string;
314
+ autoFocus?: boolean;
315
+ titleClassName?: string;
316
+ fileType?: string[];
317
+ fileSize?: number;
318
+ allowOne?: boolean;
319
+ showSerialNumber?: boolean;
320
+ isTextSelect?: boolean;
321
+ autoSize?: boolean;
322
+ rowClick?: boolean;
323
+ dropdownRender?: (menu: ReactElement<string | JSXElementConstructor<string>>) => ReactElement<string | JSXElementConstructor<string>>;
324
+ isopen?: boolean;
325
+ clickedVal?: string;
326
+ customColor?: boolean;
327
+ };
328
+ export type Colors = 'blue-green' | 'danger' | 'facebook' | 'instagram' | 'primary' | 'secondary' | 'success' | 'turquoise' | 'warning' | 'yellow';
329
+ export {};
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ export declare const testIcons: {
3
+ [key: string]: string;
4
+ };
5
+ export declare const sidenavIcons: {
6
+ [key: string]: (props: {
7
+ fill?: string;
8
+ }) => React.ReactNode;
9
+ };
10
+ export declare const icons: {
11
+ [key: string]: React.ReactNode;
12
+ };
package/dist/index.d.ts CHANGED
@@ -1,156 +1,53 @@
1
- import React$1 from 'react';
2
- import { SizeType } from 'antd/es/config-provider/SizeContext';
3
- import { UploadFile } from 'antd/lib/upload/interface';
4
-
5
- type ElementType = {
6
- [x: string]: any;
7
- selectedStyle?: boolean;
8
- style?: boolean;
9
- className?: string | undefined;
10
- placeholder?: string;
11
- addonBefore?: React.ReactNode;
12
- defaultValue?: string;
13
- disabled?: boolean;
14
- prefix?: React.ReactNode;
15
- type?: string;
16
- size?: SizeType;
17
- value?: string | number | boolean | any[] | null | object | undefined | any | UploadFile<any>[];
18
- status?: "error" | "warning";
19
- styles?: React.CSSProperties;
20
- variant?: "outlined" | "borderless" | "filled";
21
- label?: string;
22
- name?: string;
23
- suffix?: React.ReactNode;
24
- maxLength?: number;
25
- fieldNames?: any[];
26
- fields?: any[];
27
- schema?: any[];
28
- options?: any[];
29
- firstOptions?: any[];
30
- secondOptions?: any[];
31
- view?: boolean;
32
- onChange?: (value: string | number | boolean | object | any[] | undefined) => void;
33
- onClick?: () => void;
34
- dropDownOptions?: any[];
35
- id?: number;
36
- thead?: any[];
37
- tbody?: any[];
38
- variable_data?: any[];
39
- optionType?: string;
40
- selectedClassName?: string;
41
- action?: React.MouseEventHandler<HTMLElement> | string;
42
- listClassName?: string;
43
- listItemClassName?: string;
44
- img?: string;
45
- items?: any[];
46
- primaryText?: string;
47
- secondaryText?: string;
48
- count?: number;
49
- icon?: string | any;
50
- placement?: string;
51
- profileImage?: string;
52
- buttonClassName?: string;
53
- profileImageClassName?: string;
54
- profileSubClassName?: string;
55
- subContainerClassName?: string;
56
- element?: string;
57
- secondTextClassName?: string;
58
- iconsClassName?: string;
59
- labelClassName?: string;
60
- containerClassName?: string;
61
- selectBefore?: any[];
62
- selectAfter?: any[];
63
- isSVGStylesOverride?: boolean;
64
- rowSelection?: string;
65
- length?: number;
66
- imgClassName?: string;
67
- loading?: boolean;
68
- fillText1?: string;
69
- fillText2?: string;
70
- labels?: any[];
71
- data?: any[];
72
- pagination?: boolean;
73
- is_detail?: boolean;
74
- dateTime?: string;
75
- minRows?: number;
76
- maxRows?: number;
77
- mode?: "multiple" | "tags" | undefined;
78
- picker?: "date" | "week" | "month" | "quarter" | "year";
79
- weekrange?: boolean;
80
- message?: string;
81
- description?: string;
82
- notificationType?: 'success' | 'info' | 'warning' | 'error';
83
- };
84
-
85
- declare const TextElement: (props: ElementType) => React$1.JSX.Element;
86
-
87
- declare const PasswordElement: (props: ElementType) => React$1.JSX.Element;
88
-
89
- declare const NumberElement: (props: ElementType) => React$1.JSX.Element;
90
-
91
- declare const TextareaElement: (props: ElementType) => React$1.JSX.Element;
92
-
93
- declare const SelectElement: (props: ElementType) => React$1.JSX.Element;
94
-
95
- declare const RadioElement: (props: ElementType) => React$1.JSX.Element;
96
-
97
- declare const CheckboxElement: (props: ElementType) => React$1.JSX.Element;
98
-
99
- interface ElementExecuterProps extends ElementType {
100
- onChange: (value: string | number | object | boolean | any[] | undefined) => void;
101
- }
102
- declare const CkEditor: (props: ElementExecuterProps) => React$1.JSX.Element;
103
-
104
- declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
105
-
106
- declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
107
-
108
- declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
109
-
110
- declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
111
-
112
- declare const Sidebar: (props: ElementType) => React$1.JSX.Element;
113
-
114
- declare const Navbar: (props: ElementType) => React$1.JSX.Element;
115
-
116
- declare const TableElement: (props: ElementType) => React$1.JSX.Element;
117
-
118
- declare const DatePickerElement: (props: ElementType) => React$1.JSX.Element;
119
-
120
- declare const DateRangePickerElement: (props: ElementType) => React$1.JSX.Element;
121
-
122
- declare const Image: (props: ElementType) => React$1.JSX.Element;
123
-
124
- declare const SingleCheckbox: (props: ElementType) => React$1.JSX.Element;
125
-
126
- declare const DropDownGroup: (props: ElementType) => React$1.JSX.Element;
127
-
128
- declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
129
-
130
- declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
131
-
132
- declare const SwitchElement: () => React$1.JSX.Element;
133
-
134
- declare const Upload: (props: ElementType) => React$1.JSX.Element;
135
-
136
- declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
137
-
138
- declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
139
-
140
- declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
141
-
142
- declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
143
-
144
- declare const LineChart: (props: ElementType) => React$1.JSX.Element;
145
-
146
- declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
147
-
148
- declare const BarChart: (props: ElementType) => React$1.JSX.Element;
149
-
150
- declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
151
-
152
- declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
153
-
154
- declare const NotificationAlert: (props: ElementType) => React$1.JSX.Element;
155
-
156
- export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, ColorPickerElement, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NotificationAlert, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
1
+ export * from './Components/TextElement';
2
+ export * from './Components/PasswordElement';
3
+ export * from './Components/NumberElement';
4
+ export * from './Components/TextareaElement';
5
+ export * from './Components/SelectElement';
6
+ export * from './Components/RadioElement';
7
+ export * from './Components/Checkbox';
8
+ export * from './Components/TextEditor';
9
+ export * from './Components/Button';
10
+ export * from './Components/Sidebar';
11
+ export * from './Components/Navbar';
12
+ export * from './Components/TableElement';
13
+ export * from './Components/DatePicker';
14
+ export * from './Components/DateRangePickerElement';
15
+ export * from './Components/Image';
16
+ export * from './Components/SingleCheckbox';
17
+ export * from './Components/DropDownGroup';
18
+ export * from './Components/FilesUpload';
19
+ export * from './Components/TabsElement';
20
+ export * from './Components/SwitchElement';
21
+ export * from './Components/OtpElement';
22
+ export * from './Components/DivContainer';
23
+ export * from './Components/ColorPickerElement';
24
+ export * from './Components/NotificationAlert';
25
+ export * from './Components/CustomStepper';
26
+ export * from './Components/AbhaNumberComponent';
27
+ export * from './Components/SpanElement';
28
+ export * from './Components/AadharComponent';
29
+ export * from './Components/ProfileContainer';
30
+ export * from './Components/Notification';
31
+ export * from './Components/Profile';
32
+ export * from './Components/SegmentedElement';
33
+ export * from './Components/Capcha';
34
+ export * from './Components/CardElement';
35
+ export * from './Components/AvatarUpload';
36
+ export * from './Components/TimePicker';
37
+ export * from './Components/TimeScheduleTable';
38
+ export * from './Components/KanbanBoard';
39
+ export * from './Components/AutoCompleteInput';
40
+ export * from './Components/TimeRangeComponent';
41
+ export * from './Components/SplitButton';
42
+ export * from './Components/TableCopyComponent';
43
+ export * from './Components/GoogleMapWidget';
44
+ export * from './Components/AntdButton';
45
+ export * from './Components/DisplayTimeline';
46
+ export * from './Components/DateRangeSegments';
47
+ export * from './Components/DropdownElement';
48
+ export * from './Components/MediaUpload';
49
+ export * from './Components/Video';
50
+ export * from './Components/Document';
51
+ export * from './Components/GradientCardGroup';
52
+ export * from './Components/ACBreadcrumb';
53
+ export * from "./Components/QRCodeElement";