@apexcura/ui-components 0.0.14-Beta21 → 0.0.14-Beta210
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 +15 -0
- package/dist/index.d.mts +36 -7
- package/dist/index.d.ts +36 -7
- package/dist/index.js +781 -107
- package/dist/index.mjs +796 -106
- package/package.json +7 -3
package/dist/index.css
CHANGED
|
@@ -335,6 +335,9 @@ 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,6 +347,9 @@ video {
|
|
|
344
347
|
.table {
|
|
345
348
|
display: table;
|
|
346
349
|
}
|
|
350
|
+
.grid {
|
|
351
|
+
display: grid;
|
|
352
|
+
}
|
|
347
353
|
.rounded-\[8px\] {
|
|
348
354
|
border-radius: 8px;
|
|
349
355
|
}
|
|
@@ -375,6 +381,9 @@ video {
|
|
|
375
381
|
.italic {
|
|
376
382
|
font-style: italic;
|
|
377
383
|
}
|
|
384
|
+
.text-\[\\w-\] {
|
|
385
|
+
color: w-;
|
|
386
|
+
}
|
|
378
387
|
.text-black {
|
|
379
388
|
--tw-text-opacity: 1;
|
|
380
389
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
@@ -398,6 +407,9 @@ video {
|
|
|
398
407
|
.filter {
|
|
399
408
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
400
409
|
}
|
|
410
|
+
.bg-sky-700 .icon-active {
|
|
411
|
+
filter: brightness(0) invert(1);
|
|
412
|
+
}
|
|
401
413
|
.submit:where(.css-dev-only-do-not-override-1r287do).ant-btn-default:not(:disabled):not(.ant-btn-disabled):hover {
|
|
402
414
|
color: #472D7A;
|
|
403
415
|
background-color: white;
|
|
@@ -434,6 +446,9 @@ video {
|
|
|
434
446
|
:where(.css-dev-only-do-not-override-1r287do).ant-radio-button-wrapper:first-child {
|
|
435
447
|
border-inline-start: 1px solid rgb(145 145 145);
|
|
436
448
|
}
|
|
449
|
+
:where(.css-dev-only-do-not-override-m4timi).ant-tabs-top > .ant-tabs-nav {
|
|
450
|
+
margin: 0px;
|
|
451
|
+
}
|
|
437
452
|
.hover\:bg-\[\#F2F2F2\]:hover {
|
|
438
453
|
--tw-bg-opacity: 1;
|
|
439
454
|
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
|
|
|
@@ -110,4 +123,20 @@ declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
110
123
|
|
|
111
124
|
declare const SwitchElement: () => React$1.JSX.Element;
|
|
112
125
|
|
|
113
|
-
|
|
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
|
|
|
@@ -110,4 +123,20 @@ declare const TabsElement: (props: ElementType) => React$1.JSX.Element;
|
|
|
110
123
|
|
|
111
124
|
declare const SwitchElement: () => React$1.JSX.Element;
|
|
112
125
|
|
|
113
|
-
|
|
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 };
|