@apexcura/ui-components 0.0.16-Beta72 → 0.0.16-Beta721

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 (56) hide show
  1. package/dist/Components/AadharComponent.d.ts +3 -0
  2. package/dist/Components/AbhaNumberComponent.d.ts +3 -0
  3. package/dist/Components/AutoCompleteInput.d.ts +14 -0
  4. package/dist/Components/AvatarUpload.d.ts +3 -0
  5. package/dist/Components/Button.d.ts +3 -0
  6. package/dist/Components/Capcha.d.ts +3 -0
  7. package/dist/Components/CardElement.d.ts +3 -0
  8. package/dist/Components/Checkbox.d.ts +3 -0
  9. package/dist/Components/ColorPickerElement.d.ts +3 -0
  10. package/dist/Components/CustomStepper.d.ts +3 -0
  11. package/dist/Components/DatePicker.d.ts +3 -0
  12. package/dist/Components/DateRangePickerElement.d.ts +3 -0
  13. package/dist/Components/DivContainer.d.ts +3 -0
  14. package/dist/Components/DropDownGroup.d.ts +19 -0
  15. package/dist/Components/Editor.d.ts +0 -0
  16. package/dist/Components/FilesUpload.d.ts +3 -0
  17. package/dist/Components/Image.d.ts +3 -0
  18. package/dist/Components/KanbanBoard.d.ts +2 -0
  19. package/dist/Components/Navbar.d.ts +3 -0
  20. package/dist/Components/Notification.d.ts +3 -0
  21. package/dist/Components/NotificationAlert.d.ts +3 -0
  22. package/dist/Components/NumberElement.d.ts +3 -0
  23. package/dist/Components/OtpElement.d.ts +3 -0
  24. package/dist/Components/PasswordElement.d.ts +3 -0
  25. package/dist/Components/Profile.d.ts +3 -0
  26. package/dist/Components/ProfileContainer.d.ts +3 -0
  27. package/dist/Components/RadioElement.d.ts +3 -0
  28. package/dist/Components/SegmentedElement.d.ts +3 -0
  29. package/dist/Components/SelectElement.d.ts +3 -0
  30. package/dist/Components/Sidebar.d.ts +4 -0
  31. package/dist/Components/SingleCheckbox.d.ts +3 -0
  32. package/dist/Components/SpanElement.d.ts +3 -0
  33. package/dist/Components/SplitButton.d.ts +3 -0
  34. package/dist/Components/SwitchElement.d.ts +3 -0
  35. package/dist/Components/TableCopyComponent.d.ts +3 -0
  36. package/dist/Components/TableElement.d.ts +12 -0
  37. package/dist/Components/TabsElement.d.ts +3 -0
  38. package/dist/Components/TextElement.d.ts +4 -0
  39. package/dist/Components/TextareaElement.d.ts +3 -0
  40. package/dist/Components/TimePicker.d.ts +3 -0
  41. package/dist/Components/TimeRangeComponent.d.ts +3 -0
  42. package/dist/Components/TimeScheduleTable.d.ts +3 -0
  43. package/dist/Types/types.d.ts +253 -0
  44. package/dist/constants/icons.d.ts +4 -0
  45. package/dist/index.d.ts +41 -188
  46. package/dist/index.js +3 -1898
  47. package/dist/index.js.LICENSE.txt +1655 -0
  48. package/dist/index.js.map +1 -0
  49. package/dist/report.html +39 -0
  50. package/package.json +55 -62
  51. package/.env.defaults +0 -2
  52. package/dist/index.d.mts +0 -188
  53. package/dist/index.mjs +0 -1849
  54. package/jest.config.js +0 -10
  55. package/postcss.config.js +0 -7
  56. package/tailwind.config.js +0 -9
package/dist/index.d.ts CHANGED
@@ -1,188 +1,41 @@
1
- import React$1, { CSSProperties } from 'react';
2
- import { SizeType } from 'antd/es/config-provider/SizeContext';
3
- import { UploadFile } from 'antd/lib/upload/interface';
4
-
5
- type pagenationType = {
6
- page?: number;
7
- pageSize?: number;
8
- };
9
- type ElementType = {
10
- [x: string]: any;
11
- required?: boolean;
12
- selectedStyle?: boolean;
13
- style?: CSSProperties;
14
- className?: string | undefined;
15
- placeholder?: string;
16
- addonBefore?: React.ReactNode;
17
- defaultValue?: string;
18
- disabled?: boolean;
19
- prefix?: React.ReactNode;
20
- type?: string;
21
- checkedChildren?: string;
22
- unCheckedChildren?: string;
23
- firstValue?: string;
24
- secondValue?: string;
25
- size?: SizeType;
26
- value?: string | number | boolean | any[] | null | object | undefined | any | UploadFile[] | pagenationType;
27
- status?: "error" | "warning";
28
- styles?: React.CSSProperties;
29
- variant?: "outlined" | "borderless" | "filled";
30
- label?: string;
31
- name?: string;
32
- suffix?: React.ReactNode;
33
- maxLength?: number;
34
- fieldNames?: any[];
35
- fields?: any[];
36
- schema?: any[];
37
- options?: any[];
38
- firstOptions?: any[];
39
- secondOptions?: any[];
40
- firstPlaceholder?: string;
41
- secondPlaceholder?: string;
42
- enabled_dates?: string;
43
- view?: boolean;
44
- onChange?: (value: string | number | boolean | object | any[] | undefined) => void;
45
- onClick?: () => void;
46
- dropDownOptions?: any[];
47
- id?: number;
48
- thead?: any[];
49
- tbody?: any[];
50
- variable_data?: any[];
51
- optionType?: string;
52
- selectedClassName?: string;
53
- action?: React.MouseEventHandler<HTMLElement> | string;
54
- listClassName?: string;
55
- listItemClassName?: string;
56
- img?: string;
57
- items?: any[];
58
- primaryText?: string;
59
- secondaryText?: string;
60
- count?: number;
61
- icon?: string | any;
62
- placement?: string;
63
- profileImage?: string;
64
- buttonClassName?: string;
65
- profileImageClassName?: string;
66
- profileSubClassName?: string;
67
- subContainerClassName?: string;
68
- element?: string;
69
- secondTextClassName?: string;
70
- iconsClassName?: string;
71
- labelClassName?: string;
72
- containerClassName?: string;
73
- selectBefore?: any[];
74
- selectAfter?: any[];
75
- isSVGStylesOverride?: boolean;
76
- rowSelection?: boolean;
77
- length?: number;
78
- imgClassName?: string;
79
- loading?: boolean;
80
- fillText1?: string;
81
- fillText2?: string;
82
- labels?: any[];
83
- data?: any[];
84
- pagination?: boolean;
85
- is_detail?: boolean;
86
- dateTime?: string;
87
- minRows?: number;
88
- maxRows?: number;
89
- mode?: "multiple" | "tags" | undefined;
90
- picker?: "date" | "week" | "month" | "quarter" | "year";
91
- weekrange?: boolean;
92
- message?: string;
93
- description?: string;
94
- notificationType?: "success" | "info" | "warning" | "error";
95
- showProgress?: boolean;
96
- ellipsis?: boolean;
97
- };
98
-
99
- declare const TextElement: (props: ElementType) => React$1.JSX.Element;
100
-
101
- declare const PasswordElement: (props: ElementType) => React$1.JSX.Element;
102
-
103
- declare const NumberElement: (props: ElementType) => React$1.JSX.Element;
104
-
105
- declare const TextareaElement: (props: ElementType) => React$1.JSX.Element;
106
-
107
- declare const SelectElement: (props: ElementType) => React$1.JSX.Element;
108
-
109
- declare const RadioElement: (props: ElementType) => React$1.JSX.Element;
110
-
111
- declare const CheckboxElement: (props: ElementType) => React$1.JSX.Element;
112
-
113
- declare const CkEditor: (props: ElementType) => React$1.JSX.Element;
114
-
115
- declare const Editor: (props: ElementType) => React$1.JSX.Element;
116
-
117
- declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
118
-
119
- declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
120
-
121
- declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
122
-
123
- declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
124
-
125
- declare const Sidebar: (props: ElementType) => React$1.JSX.Element;
126
-
127
- declare const Navbar: (props: ElementType) => React$1.JSX.Element;
128
-
129
- declare const TableElement: (props: ElementType) => React$1.JSX.Element;
130
-
131
- declare const DatePickerElement: (props: ElementType) => React$1.JSX.Element;
132
-
133
- declare const DateRangePickerElement: (props: ElementType) => React$1.JSX.Element;
134
-
135
- declare const Image: (props: ElementType) => React$1.JSX.Element;
136
-
137
- declare const SingleCheckbox: (props: ElementType) => React$1.JSX.Element;
138
-
139
- type dropDownValueProps = {
140
- firstValue: {
141
- key?: string | undefined;
142
- label?: string | undefined;
143
- value?: string | undefined;
144
- } | undefined;
145
- secondValue: {
146
- key?: string | undefined;
147
- label?: string | undefined;
148
- value?: string | undefined;
149
- } | undefined;
150
- };
151
- type dropDownGroupProps = ElementType & {
152
- value: dropDownValueProps;
153
- };
154
- declare const DropDownGroup: (props: dropDownGroupProps) => React$1.JSX.Element;
155
-
156
- declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
157
-
158
- declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
159
-
160
- declare const SwitchElement: (props: ElementType) => React$1.JSX.Element;
161
-
162
- declare const Upload: (props: ElementType) => React$1.JSX.Element;
163
-
164
- declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
165
-
166
- declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
167
-
168
- declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
169
-
170
- declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
171
-
172
- declare const LineChart: (props: ElementType) => React$1.JSX.Element;
173
-
174
- declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
175
-
176
- declare const BarChart: (props: ElementType) => React$1.JSX.Element;
177
-
178
- declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
179
-
180
- declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
181
-
182
- declare const NotificationAlert: (props: ElementType) => React$1.JSX.Element;
183
-
184
- declare const TooltipElement: (props: ElementType) => React$1.JSX.Element;
185
-
186
- declare const DateTimePickerElement: (props: ElementType) => React$1.JSX.Element;
187
-
188
- export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, ColorPickerElement, DatePickerElement, DateRangePickerElement, DateTimePickerElement, DivContainer, DoubleBarChart, DropDownGroup, Editor, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NotificationAlert, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, TooltipElement, 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';