@apexcura/ui-components 0.0.16-Beta11 → 0.0.16-Beta1100

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 (57) hide show
  1. package/dist/Components/AadharComponent.d.ts +3 -0
  2. package/dist/Components/AbhaNumberComponent.d.ts +3 -0
  3. package/dist/Components/AntdButton.d.ts +4 -0
  4. package/dist/Components/AutoCompleteInput.d.ts +14 -0
  5. package/dist/Components/AvatarUpload.d.ts +3 -0
  6. package/dist/Components/Button.d.ts +3 -0
  7. package/dist/Components/Capcha.d.ts +3 -0
  8. package/dist/Components/CardElement.d.ts +3 -0
  9. package/dist/Components/Checkbox.d.ts +3 -0
  10. package/dist/Components/ColorPickerElement.d.ts +3 -0
  11. package/dist/Components/CustomStepper.d.ts +3 -0
  12. package/dist/Components/DatePicker.d.ts +3 -0
  13. package/dist/Components/DateRangePickerElement.d.ts +3 -0
  14. package/dist/Components/DateRangeSegments.d.ts +16 -0
  15. package/dist/Components/DisplayTimeline.d.ts +3 -0
  16. package/dist/Components/DivContainer.d.ts +3 -0
  17. package/dist/Components/DropDownGroup.d.ts +19 -0
  18. package/dist/Components/DropdownElement.d.ts +3 -0
  19. package/dist/Components/Editor.d.ts +0 -0
  20. package/dist/Components/FilesUpload.d.ts +3 -0
  21. package/dist/Components/GoogleMapWidget.d.ts +3 -0
  22. package/dist/Components/Image.d.ts +3 -0
  23. package/dist/Components/KanbanBoard.d.ts +2 -0
  24. package/dist/Components/Navbar.d.ts +3 -0
  25. package/dist/Components/Notification.d.ts +3 -0
  26. package/dist/Components/NotificationAlert.d.ts +3 -0
  27. package/dist/Components/NumberElement.d.ts +3 -0
  28. package/dist/Components/OtpElement.d.ts +3 -0
  29. package/dist/Components/PasswordElement.d.ts +3 -0
  30. package/dist/Components/Profile.d.ts +3 -0
  31. package/dist/Components/ProfileContainer.d.ts +3 -0
  32. package/dist/Components/RadioElement.d.ts +14 -0
  33. package/dist/Components/SegmentedElement.d.ts +3 -0
  34. package/dist/Components/SelectElement.d.ts +3 -0
  35. package/dist/Components/Sidebar.d.ts +4 -0
  36. package/dist/Components/SingleCheckbox.d.ts +3 -0
  37. package/dist/Components/SpanElement.d.ts +3 -0
  38. package/dist/Components/SplitButton.d.ts +3 -0
  39. package/dist/Components/SwitchElement.d.ts +3 -0
  40. package/dist/Components/TableCopyComponent.d.ts +3 -0
  41. package/dist/Components/TableElement.d.ts +12 -0
  42. package/dist/Components/TabsElement.d.ts +3 -0
  43. package/dist/Components/TextElement.d.ts +4 -0
  44. package/dist/Components/TextareaElement.d.ts +3 -0
  45. package/dist/Components/TimePicker.d.ts +3 -0
  46. package/dist/Components/TimeRangeComponent.d.ts +3 -0
  47. package/dist/Components/TimeScheduleTable.d.ts +3 -0
  48. package/dist/Types/types.d.ts +306 -0
  49. package/dist/constants/icons.d.ts +12 -0
  50. package/dist/index.d.ts +46 -156
  51. package/dist/index.js +3 -1684
  52. package/dist/index.js.LICENSE.txt +1655 -0
  53. package/dist/index.js.map +1 -0
  54. package/dist/report.html +39 -0
  55. package/package.json +55 -61
  56. package/dist/index.d.mts +0 -156
  57. package/dist/index.mjs +0 -1638
package/dist/index.d.ts CHANGED
@@ -1,156 +1,46 @@
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/Button';
9
+ export * from './Components/Sidebar';
10
+ export * from './Components/Navbar';
11
+ export * from './Components/TableElement';
12
+ export * from './Components/DatePicker';
13
+ export * from './Components/DateRangePickerElement';
14
+ export * from './Components/Image';
15
+ export * from './Components/SingleCheckbox';
16
+ export * from './Components/DropDownGroup';
17
+ export * from './Components/FilesUpload';
18
+ export * from './Components/TabsElement';
19
+ export * from './Components/SwitchElement';
20
+ export * from './Components/OtpElement';
21
+ export * from './Components/DivContainer';
22
+ export * from './Components/ColorPickerElement';
23
+ export * from './Components/NotificationAlert';
24
+ export * from './Components/CustomStepper';
25
+ export * from './Components/AbhaNumberComponent';
26
+ export * from './Components/SpanElement';
27
+ export * from './Components/AadharComponent';
28
+ export * from './Components/ProfileContainer';
29
+ export * from './Components/Notification';
30
+ export * from './Components/Profile';
31
+ export * from './Components/SegmentedElement';
32
+ export * from './Components/Capcha';
33
+ export * from './Components/CardElement';
34
+ export * from './Components/AvatarUpload';
35
+ export * from './Components/TimePicker';
36
+ export * from './Components/TimeScheduleTable';
37
+ export * from './Components/KanbanBoard';
38
+ export * from './Components/AutoCompleteInput';
39
+ export * from './Components/TimeRangeComponent';
40
+ export * from './Components/SplitButton';
41
+ export * from './Components/TableCopyComponent';
42
+ export * from './Components/GoogleMapWidget';
43
+ export * from './Components/AntdButton';
44
+ export * from './Components/DisplayTimeline';
45
+ export * from './Components/DateRangeSegments';
46
+ export * from './Components/DropdownElement';