@apexcura/ui-components 0.0.14-Beta16 → 0.0.14-Beta161
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 +26 -0
- package/dist/index.d.mts +36 -7
- package/dist/index.d.ts +36 -7
- package/dist/index.js +728 -77
- package/dist/index.mjs +753 -87
- package/package.json +7 -3
package/dist/index.css
CHANGED
|
@@ -335,15 +335,38 @@ video {
|
|
|
335
335
|
.visible {
|
|
336
336
|
visibility: visible;
|
|
337
337
|
}
|
|
338
|
+
.fixed {
|
|
339
|
+
position: fixed;
|
|
340
|
+
}
|
|
338
341
|
.m-\[10px\] {
|
|
339
342
|
margin: 10px;
|
|
340
343
|
}
|
|
344
|
+
.mr-3 {
|
|
345
|
+
margin-right: 0.75rem;
|
|
346
|
+
}
|
|
341
347
|
.flex {
|
|
342
348
|
display: flex;
|
|
343
349
|
}
|
|
344
350
|
.table {
|
|
345
351
|
display: table;
|
|
346
352
|
}
|
|
353
|
+
.grid {
|
|
354
|
+
display: grid;
|
|
355
|
+
}
|
|
356
|
+
.h-5 {
|
|
357
|
+
height: 1.25rem;
|
|
358
|
+
}
|
|
359
|
+
.w-5 {
|
|
360
|
+
width: 1.25rem;
|
|
361
|
+
}
|
|
362
|
+
@keyframes spin {
|
|
363
|
+
to {
|
|
364
|
+
transform: rotate(360deg);
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
.animate-spin {
|
|
368
|
+
animation: spin 1s linear infinite;
|
|
369
|
+
}
|
|
347
370
|
.rounded-\[8px\] {
|
|
348
371
|
border-radius: 8px;
|
|
349
372
|
}
|
|
@@ -375,6 +398,9 @@ video {
|
|
|
375
398
|
.italic {
|
|
376
399
|
font-style: italic;
|
|
377
400
|
}
|
|
401
|
+
.text-\[\\w-\] {
|
|
402
|
+
color: w-;
|
|
403
|
+
}
|
|
378
404
|
.text-black {
|
|
379
405
|
--tw-text-opacity: 1;
|
|
380
406
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
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
|
-
firstOptions
|
|
30
|
-
secondOptions
|
|
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,16 @@ 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;
|
|
67
|
+
loading?: boolean;
|
|
68
|
+
fillText1?: string;
|
|
69
|
+
fillText2?: string;
|
|
70
|
+
labels?: any[];
|
|
71
|
+
data?: any[];
|
|
72
|
+
pagination?: boolean;
|
|
62
73
|
};
|
|
63
74
|
|
|
64
75
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -84,7 +95,7 @@ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
84
95
|
|
|
85
96
|
declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
86
97
|
|
|
87
|
-
declare const ButtonElement: React$1.
|
|
98
|
+
declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
|
|
88
99
|
|
|
89
100
|
declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
|
|
90
101
|
|
|
@@ -108,4 +119,22 @@ declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
|
|
|
108
119
|
|
|
109
120
|
declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
110
121
|
|
|
111
|
-
|
|
122
|
+
declare const SwitchElement: () => React$1.JSX.Element;
|
|
123
|
+
|
|
124
|
+
declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
125
|
+
|
|
126
|
+
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
127
|
+
|
|
128
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
139
|
+
|
|
140
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, DatePickerElement, DateRangePickerElement, 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
|
@@ -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
|
-
firstOptions
|
|
30
|
-
secondOptions
|
|
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,16 @@ 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;
|
|
67
|
+
loading?: boolean;
|
|
68
|
+
fillText1?: string;
|
|
69
|
+
fillText2?: string;
|
|
70
|
+
labels?: any[];
|
|
71
|
+
data?: any[];
|
|
72
|
+
pagination?: boolean;
|
|
62
73
|
};
|
|
63
74
|
|
|
64
75
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -84,7 +95,7 @@ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
84
95
|
|
|
85
96
|
declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
86
97
|
|
|
87
|
-
declare const ButtonElement: React$1.
|
|
98
|
+
declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
|
|
88
99
|
|
|
89
100
|
declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
|
|
90
101
|
|
|
@@ -108,4 +119,22 @@ declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
|
|
|
108
119
|
|
|
109
120
|
declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
110
121
|
|
|
111
|
-
|
|
122
|
+
declare const SwitchElement: () => React$1.JSX.Element;
|
|
123
|
+
|
|
124
|
+
declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
125
|
+
|
|
126
|
+
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
127
|
+
|
|
128
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
139
|
+
|
|
140
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, DatePickerElement, DateRangePickerElement, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|