@apexcura/ui-components 0.0.15-Beta3 → 0.0.15-Beta31
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/index.d.mts +35 -3
- package/dist/index.d.ts +35 -3
- package/dist/index.js +821 -333
- package/dist/index.mjs +818 -314
- package/package.json +11 -5
- package/postcss.config.js +7 -6
- package/tailwind.config.js +9 -10
- package/dist/index.css +0 -463
package/dist/index.d.mts
CHANGED
|
@@ -46,7 +46,7 @@ type ElementType = {
|
|
|
46
46
|
primaryText?: string;
|
|
47
47
|
secondaryText?: string;
|
|
48
48
|
count?: number;
|
|
49
|
-
icon?: string;
|
|
49
|
+
icon?: string | any;
|
|
50
50
|
placement?: string;
|
|
51
51
|
profileImage?: string;
|
|
52
52
|
buttonClassName?: string;
|
|
@@ -65,6 +65,22 @@ type ElementType = {
|
|
|
65
65
|
length?: number;
|
|
66
66
|
imgClassName?: string;
|
|
67
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
|
+
showProgress?: boolean;
|
|
68
84
|
};
|
|
69
85
|
|
|
70
86
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -120,6 +136,22 @@ declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
|
120
136
|
|
|
121
137
|
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
122
138
|
|
|
123
|
-
declare const
|
|
139
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
124
140
|
|
|
125
|
-
|
|
141
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
142
|
+
|
|
143
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
144
|
+
|
|
145
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
146
|
+
|
|
147
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
150
|
+
|
|
151
|
+
declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
|
|
154
|
+
|
|
155
|
+
declare const NotificationAlert: (props: ElementType) => React$1.JSX.Element;
|
|
156
|
+
|
|
157
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ type ElementType = {
|
|
|
46
46
|
primaryText?: string;
|
|
47
47
|
secondaryText?: string;
|
|
48
48
|
count?: number;
|
|
49
|
-
icon?: string;
|
|
49
|
+
icon?: string | any;
|
|
50
50
|
placement?: string;
|
|
51
51
|
profileImage?: string;
|
|
52
52
|
buttonClassName?: string;
|
|
@@ -65,6 +65,22 @@ type ElementType = {
|
|
|
65
65
|
length?: number;
|
|
66
66
|
imgClassName?: string;
|
|
67
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
|
+
showProgress?: boolean;
|
|
68
84
|
};
|
|
69
85
|
|
|
70
86
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -120,6 +136,22 @@ declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
|
120
136
|
|
|
121
137
|
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
122
138
|
|
|
123
|
-
declare const
|
|
139
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
124
140
|
|
|
125
|
-
|
|
141
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
142
|
+
|
|
143
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
144
|
+
|
|
145
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
146
|
+
|
|
147
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
150
|
+
|
|
151
|
+
declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
|
|
154
|
+
|
|
155
|
+
declare const NotificationAlert: (props: ElementType) => React$1.JSX.Element;
|
|
156
|
+
|
|
157
|
+
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 };
|