@apexcura/ui-components 0.0.13-Beta7 → 0.0.13-Beta70

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 CHANGED
@@ -338,6 +338,10 @@ video {
338
338
  .m-\[10px\] {
339
339
  margin: 10px;
340
340
  }
341
+ .mx-auto {
342
+ margin-left: auto;
343
+ margin-right: auto;
344
+ }
341
345
  .flex {
342
346
  display: flex;
343
347
  }
@@ -0,0 +1,107 @@
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
+ onChange?: (value: string | number | boolean | object | any[] | undefined) => void;
30
+ onClick?: () => void;
31
+ dropDownOptions?: any[];
32
+ id?: number;
33
+ thead?: any[];
34
+ tbody?: any[];
35
+ variable_data?: any[];
36
+ optionType?: string;
37
+ selectedClassName?: string;
38
+ action?: React.MouseEventHandler<HTMLElement> | string;
39
+ listClassName?: string;
40
+ listItemClassName?: string;
41
+ img?: string;
42
+ items?: any[];
43
+ primaryText?: string;
44
+ secondaryText?: string;
45
+ count?: number;
46
+ icon?: string;
47
+ placement?: string;
48
+ profileImage?: string;
49
+ buttonClassName?: string;
50
+ profileImageClassName?: string;
51
+ profileSubClassName?: string;
52
+ subContainerClassName?: string;
53
+ element?: string;
54
+ secondTextClassName?: string;
55
+ iconsClassName?: string;
56
+ labelClassName?: string;
57
+ containerClassName?: string;
58
+ selectBefore?: any[];
59
+ selectAfter?: any[];
60
+ };
61
+
62
+ declare const TextElement: (props: ElementType) => React$1.JSX.Element;
63
+
64
+ declare const PasswordElement: (props: ElementType) => React$1.JSX.Element;
65
+
66
+ declare const NumberElement: (props: ElementType) => React$1.JSX.Element;
67
+
68
+ declare const TextareaElement: (props: ElementType) => React$1.JSX.Element;
69
+
70
+ declare const SelectElement: (props: ElementType) => React$1.JSX.Element;
71
+
72
+ declare const RadioElement: (props: ElementType) => React$1.JSX.Element;
73
+
74
+ declare const CheckboxElement: (props: ElementType) => React$1.JSX.Element;
75
+
76
+ interface ElementExecuterProps extends ElementType {
77
+ onChange: (value: string | number | object | boolean | any[] | undefined) => void;
78
+ }
79
+ declare const CkEditor: (props: ElementExecuterProps) => React$1.JSX.Element;
80
+
81
+ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
82
+
83
+ declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
84
+
85
+ declare const ButtonElement: React$1.FC<ElementType>;
86
+
87
+ declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
88
+
89
+ declare const Sidebar: (props: ElementType) => React$1.JSX.Element;
90
+
91
+ declare const Navbar: (props: ElementType) => React$1.JSX.Element;
92
+
93
+ declare const TableElement: (props: ElementType) => React$1.JSX.Element;
94
+
95
+ declare const DatePickerElement: (props: ElementType) => React$1.JSX.Element;
96
+
97
+ declare const DateRangePickerElement: (props: ElementType) => React$1.JSX.Element;
98
+
99
+ declare const UploadElement: (props: ElementType) => React$1.JSX.Element;
100
+
101
+ declare const Image: (props: ElementType) => React$1.JSX.Element;
102
+
103
+ declare const SingleCheckbox: (props: ElementType) => React$1.JSX.Element;
104
+
105
+ declare const MultiSelect: (props: ElementType) => React$1.JSX.Element;
106
+
107
+ export { AddMoreTable, ButtonElement, CheckboxElement, CkEditor, DatePickerElement, DateRangePickerElement, Image, MultiSelect, MultipleSelectElement, Navbar, NumberElement, PasswordElement, RadioElement, SelectElement, Sidebar, SingleCheckbox, SingleSelectElement, TableElement, TextElement, TextareaElement, UploadElement };
@@ -0,0 +1,107 @@
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
+ onChange?: (value: string | number | boolean | object | any[] | undefined) => void;
30
+ onClick?: () => void;
31
+ dropDownOptions?: any[];
32
+ id?: number;
33
+ thead?: any[];
34
+ tbody?: any[];
35
+ variable_data?: any[];
36
+ optionType?: string;
37
+ selectedClassName?: string;
38
+ action?: React.MouseEventHandler<HTMLElement> | string;
39
+ listClassName?: string;
40
+ listItemClassName?: string;
41
+ img?: string;
42
+ items?: any[];
43
+ primaryText?: string;
44
+ secondaryText?: string;
45
+ count?: number;
46
+ icon?: string;
47
+ placement?: string;
48
+ profileImage?: string;
49
+ buttonClassName?: string;
50
+ profileImageClassName?: string;
51
+ profileSubClassName?: string;
52
+ subContainerClassName?: string;
53
+ element?: string;
54
+ secondTextClassName?: string;
55
+ iconsClassName?: string;
56
+ labelClassName?: string;
57
+ containerClassName?: string;
58
+ selectBefore?: any[];
59
+ selectAfter?: any[];
60
+ };
61
+
62
+ declare const TextElement: (props: ElementType) => React$1.JSX.Element;
63
+
64
+ declare const PasswordElement: (props: ElementType) => React$1.JSX.Element;
65
+
66
+ declare const NumberElement: (props: ElementType) => React$1.JSX.Element;
67
+
68
+ declare const TextareaElement: (props: ElementType) => React$1.JSX.Element;
69
+
70
+ declare const SelectElement: (props: ElementType) => React$1.JSX.Element;
71
+
72
+ declare const RadioElement: (props: ElementType) => React$1.JSX.Element;
73
+
74
+ declare const CheckboxElement: (props: ElementType) => React$1.JSX.Element;
75
+
76
+ interface ElementExecuterProps extends ElementType {
77
+ onChange: (value: string | number | object | boolean | any[] | undefined) => void;
78
+ }
79
+ declare const CkEditor: (props: ElementExecuterProps) => React$1.JSX.Element;
80
+
81
+ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
82
+
83
+ declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
84
+
85
+ declare const ButtonElement: React$1.FC<ElementType>;
86
+
87
+ declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
88
+
89
+ declare const Sidebar: (props: ElementType) => React$1.JSX.Element;
90
+
91
+ declare const Navbar: (props: ElementType) => React$1.JSX.Element;
92
+
93
+ declare const TableElement: (props: ElementType) => React$1.JSX.Element;
94
+
95
+ declare const DatePickerElement: (props: ElementType) => React$1.JSX.Element;
96
+
97
+ declare const DateRangePickerElement: (props: ElementType) => React$1.JSX.Element;
98
+
99
+ declare const UploadElement: (props: ElementType) => React$1.JSX.Element;
100
+
101
+ declare const Image: (props: ElementType) => React$1.JSX.Element;
102
+
103
+ declare const SingleCheckbox: (props: ElementType) => React$1.JSX.Element;
104
+
105
+ declare const MultiSelect: (props: ElementType) => React$1.JSX.Element;
106
+
107
+ export { AddMoreTable, ButtonElement, CheckboxElement, CkEditor, DatePickerElement, DateRangePickerElement, Image, MultiSelect, MultipleSelectElement, Navbar, NumberElement, PasswordElement, RadioElement, SelectElement, Sidebar, SingleCheckbox, SingleSelectElement, TableElement, TextElement, TextareaElement, UploadElement };