@apexcura/ui-components 0.0.14-Beta8 → 0.0.14-Beta80
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.css +3 -0
- package/dist/index.d.mts +20 -7
- package/dist/index.d.ts +20 -7
- package/dist/index.js +332 -97
- package/dist/index.mjs +339 -108
- package/package.json +3 -3
package/dist/index.css
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -4,9 +4,9 @@ import { UploadFile } from 'antd/lib/upload/interface';
|
|
|
4
4
|
|
|
5
5
|
type ElementType = {
|
|
6
6
|
[x: string]: any;
|
|
7
|
-
selectedStyle
|
|
8
|
-
style
|
|
9
|
-
className
|
|
7
|
+
selectedStyle?: boolean;
|
|
8
|
+
style?: boolean;
|
|
9
|
+
className?: string | undefined;
|
|
10
10
|
placeholder?: string;
|
|
11
11
|
addonBefore?: React.ReactNode;
|
|
12
12
|
defaultValue?: string;
|
|
@@ -26,8 +26,9 @@ type ElementType = {
|
|
|
26
26
|
fields?: any[];
|
|
27
27
|
schema?: any[];
|
|
28
28
|
options?: any[];
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
firstOptions?: any[];
|
|
30
|
+
secondOptions?: any[];
|
|
31
|
+
view?: boolean;
|
|
31
32
|
onChange?: (value: string | number | boolean | object | any[] | undefined) => void;
|
|
32
33
|
onClick?: () => void;
|
|
33
34
|
dropDownOptions?: any[];
|
|
@@ -59,6 +60,10 @@ type ElementType = {
|
|
|
59
60
|
containerClassName?: string;
|
|
60
61
|
selectBefore?: any[];
|
|
61
62
|
selectAfter?: any[];
|
|
63
|
+
isSVGStylesOverride?: boolean;
|
|
64
|
+
rowSelection?: string;
|
|
65
|
+
length?: number;
|
|
66
|
+
imgClassName?: string;
|
|
62
67
|
};
|
|
63
68
|
|
|
64
69
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -84,7 +89,7 @@ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
84
89
|
|
|
85
90
|
declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
86
91
|
|
|
87
|
-
declare const ButtonElement: React$1.
|
|
92
|
+
declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
|
|
88
93
|
|
|
89
94
|
declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
|
|
90
95
|
|
|
@@ -108,4 +113,12 @@ declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
|
|
|
108
113
|
|
|
109
114
|
declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
110
115
|
|
|
111
|
-
|
|
116
|
+
declare const SwitchElement: () => React$1.JSX.Element;
|
|
117
|
+
|
|
118
|
+
declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
119
|
+
|
|
120
|
+
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
121
|
+
|
|
122
|
+
declare const Donut: (props: ElementType) => React$1.JSX.Element;
|
|
123
|
+
|
|
124
|
+
export { AddMoreTable, ButtonElement, CheckboxElement, CkEditor, DatePickerElement, DateRangePickerElement, Donut, DropDownGroup, FileUpload, Image, MultipleSelectElement, Navbar, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|
package/dist/index.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ import { UploadFile } from 'antd/lib/upload/interface';
|
|
|
4
4
|
|
|
5
5
|
type ElementType = {
|
|
6
6
|
[x: string]: any;
|
|
7
|
-
selectedStyle
|
|
8
|
-
style
|
|
9
|
-
className
|
|
7
|
+
selectedStyle?: boolean;
|
|
8
|
+
style?: boolean;
|
|
9
|
+
className?: string | undefined;
|
|
10
10
|
placeholder?: string;
|
|
11
11
|
addonBefore?: React.ReactNode;
|
|
12
12
|
defaultValue?: string;
|
|
@@ -26,8 +26,9 @@ type ElementType = {
|
|
|
26
26
|
fields?: any[];
|
|
27
27
|
schema?: any[];
|
|
28
28
|
options?: any[];
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
firstOptions?: any[];
|
|
30
|
+
secondOptions?: any[];
|
|
31
|
+
view?: boolean;
|
|
31
32
|
onChange?: (value: string | number | boolean | object | any[] | undefined) => void;
|
|
32
33
|
onClick?: () => void;
|
|
33
34
|
dropDownOptions?: any[];
|
|
@@ -59,6 +60,10 @@ type ElementType = {
|
|
|
59
60
|
containerClassName?: string;
|
|
60
61
|
selectBefore?: any[];
|
|
61
62
|
selectAfter?: any[];
|
|
63
|
+
isSVGStylesOverride?: boolean;
|
|
64
|
+
rowSelection?: string;
|
|
65
|
+
length?: number;
|
|
66
|
+
imgClassName?: string;
|
|
62
67
|
};
|
|
63
68
|
|
|
64
69
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -84,7 +89,7 @@ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
84
89
|
|
|
85
90
|
declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
86
91
|
|
|
87
|
-
declare const ButtonElement: React$1.
|
|
92
|
+
declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
|
|
88
93
|
|
|
89
94
|
declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
|
|
90
95
|
|
|
@@ -108,4 +113,12 @@ declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
|
|
|
108
113
|
|
|
109
114
|
declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
110
115
|
|
|
111
|
-
|
|
116
|
+
declare const SwitchElement: () => React$1.JSX.Element;
|
|
117
|
+
|
|
118
|
+
declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
119
|
+
|
|
120
|
+
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
121
|
+
|
|
122
|
+
declare const Donut: (props: ElementType) => React$1.JSX.Element;
|
|
123
|
+
|
|
124
|
+
export { AddMoreTable, ButtonElement, CheckboxElement, CkEditor, DatePickerElement, DateRangePickerElement, Donut, DropDownGroup, FileUpload, Image, MultipleSelectElement, Navbar, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|