@apexcura/ui-components 0.0.14-Beta19 → 0.0.14-Beta191
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 +29 -0
- package/dist/index.d.mts +38 -7
- package/dist/index.d.ts +38 -7
- package/dist/index.js +829 -99
- package/dist/index.mjs +854 -109
- 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));
|
|
@@ -434,6 +460,9 @@ video {
|
|
|
434
460
|
:where(.css-dev-only-do-not-override-1r287do).ant-radio-button-wrapper:first-child {
|
|
435
461
|
border-inline-start: 1px solid rgb(145 145 145);
|
|
436
462
|
}
|
|
463
|
+
:where(.css-dev-only-do-not-override-m4timi).ant-tabs-top > .ant-tabs-nav {
|
|
464
|
+
margin: 0px;
|
|
465
|
+
}
|
|
437
466
|
.hover\:bg-\[\#F2F2F2\]:hover {
|
|
438
467
|
--tw-bg-opacity: 1;
|
|
439
468
|
background-color: rgb(242 242 242 / var(--tw-bg-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,18 @@ 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;
|
|
73
|
+
is_detail?: boolean;
|
|
74
|
+
dateTime?: string;
|
|
62
75
|
};
|
|
63
76
|
|
|
64
77
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -84,7 +97,7 @@ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
84
97
|
|
|
85
98
|
declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
86
99
|
|
|
87
|
-
declare const ButtonElement: React$1.
|
|
100
|
+
declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
|
|
88
101
|
|
|
89
102
|
declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
|
|
90
103
|
|
|
@@ -108,4 +121,22 @@ declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
|
|
|
108
121
|
|
|
109
122
|
declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
110
123
|
|
|
111
|
-
|
|
124
|
+
declare const SwitchElement: () => React$1.JSX.Element;
|
|
125
|
+
|
|
126
|
+
declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
127
|
+
|
|
128
|
+
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
139
|
+
|
|
140
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
141
|
+
|
|
142
|
+
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,18 @@ 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;
|
|
73
|
+
is_detail?: boolean;
|
|
74
|
+
dateTime?: string;
|
|
62
75
|
};
|
|
63
76
|
|
|
64
77
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
|
@@ -84,7 +97,7 @@ declare const SingleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
84
97
|
|
|
85
98
|
declare const MultipleSelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
86
99
|
|
|
87
|
-
declare const ButtonElement: React$1.
|
|
100
|
+
declare const ButtonElement: (props: ElementType) => React$1.JSX.Element;
|
|
88
101
|
|
|
89
102
|
declare const AddMoreTable: (props: ElementType) => React$1.JSX.Element;
|
|
90
103
|
|
|
@@ -108,4 +121,22 @@ declare const FileUpload: (props: ElementType) => React$1.JSX.Element;
|
|
|
108
121
|
|
|
109
122
|
declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
110
123
|
|
|
111
|
-
|
|
124
|
+
declare const SwitchElement: () => React$1.JSX.Element;
|
|
125
|
+
|
|
126
|
+
declare const Upload: (props: ElementType) => React$1.JSX.Element;
|
|
127
|
+
|
|
128
|
+
declare const OtpElement: (props: ElementType) => React$1.JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare const CircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const SemiCircleDonut: (props: ElementType) => React$1.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
139
|
+
|
|
140
|
+
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
141
|
+
|
|
142
|
+
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 };
|