@apexcura/ui-components 0.0.15-Beta9 → 0.0.16-Beta1
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 +29 -3
- package/dist/index.d.ts +29 -3
- package/dist/index.js +92423 -509
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +92389 -413
- package/dist/index.mjs.map +1 -0
- package/package.json +16 -6
- package/.env.defaults +0 -2
- package/dist/index.css +0 -446
- package/jest.config.js +0 -10
- package/postcss.config.js +0 -6
- package/tailwind.config.js +0 -10
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,18 @@ 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;
|
|
68
80
|
};
|
|
69
81
|
|
|
70
82
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -120,6 +132,20 @@ declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
|
120
132
|
|
|
121
133
|
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
122
134
|
|
|
123
|
-
declare const
|
|
135
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
124
136
|
|
|
125
|
-
|
|
137
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
138
|
+
|
|
139
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
140
|
+
|
|
141
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
142
|
+
|
|
143
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
144
|
+
|
|
145
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
146
|
+
|
|
147
|
+
declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
|
|
150
|
+
|
|
151
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, ColorPickerElement, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, 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,18 @@ 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;
|
|
68
80
|
};
|
|
69
81
|
|
|
70
82
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -120,6 +132,20 @@ declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
|
120
132
|
|
|
121
133
|
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
122
134
|
|
|
123
|
-
declare const
|
|
135
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
124
136
|
|
|
125
|
-
|
|
137
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
138
|
+
|
|
139
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
140
|
+
|
|
141
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
142
|
+
|
|
143
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
144
|
+
|
|
145
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
146
|
+
|
|
147
|
+
declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
|
|
150
|
+
|
|
151
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, ColorPickerElement, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|