@apexcura/ui-components 0.0.15-Beta46 → 0.0.15-Beta48
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,8 @@ type ElementType$1 = {
|
|
|
14
14
|
disabled?: boolean;
|
|
15
15
|
prefix?: React.ReactNode;
|
|
16
16
|
type?: string;
|
|
17
|
+
firstValue?: string;
|
|
18
|
+
secondValue?: string;
|
|
17
19
|
size?: SizeType;
|
|
18
20
|
value?: string | number | boolean | any[] | null | object | undefined | any | UploadFile<any>[];
|
|
19
21
|
status?: "error" | "warning";
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ type ElementType$1 = {
|
|
|
14
14
|
disabled?: boolean;
|
|
15
15
|
prefix?: React.ReactNode;
|
|
16
16
|
type?: string;
|
|
17
|
+
firstValue?: string;
|
|
18
|
+
secondValue?: string;
|
|
17
19
|
size?: SizeType;
|
|
18
20
|
value?: string | number | boolean | any[] | null | object | undefined | any | UploadFile<any>[];
|
|
19
21
|
status?: "error" | "warning";
|
package/dist/index.js
CHANGED
|
@@ -1021,7 +1021,7 @@ var DropDownGroup = (props) => {
|
|
|
1021
1021
|
className: props.className,
|
|
1022
1022
|
filterOption: firstFilterOptions,
|
|
1023
1023
|
placeholder: props.firstPlaceholder,
|
|
1024
|
-
value: props.value,
|
|
1024
|
+
value: props.value.firstValue,
|
|
1025
1025
|
showSearch: true
|
|
1026
1026
|
}
|
|
1027
1027
|
), /* @__PURE__ */ import_react24.default.createElement("div", { style: { borderLeft: "1px solid gray", height: "33px" } }), /* @__PURE__ */ import_react24.default.createElement(
|
|
@@ -1033,7 +1033,7 @@ var DropDownGroup = (props) => {
|
|
|
1033
1033
|
className: props.className,
|
|
1034
1034
|
filterOption: secondFilterOptions,
|
|
1035
1035
|
placeholder: props.secondPlaceholder,
|
|
1036
|
-
value: props.value,
|
|
1036
|
+
value: props.value.secondValue,
|
|
1037
1037
|
showSearch: true
|
|
1038
1038
|
}
|
|
1039
1039
|
)));
|
package/dist/index.mjs
CHANGED
|
@@ -952,7 +952,7 @@ var DropDownGroup = (props) => {
|
|
|
952
952
|
className: props.className,
|
|
953
953
|
filterOption: firstFilterOptions,
|
|
954
954
|
placeholder: props.firstPlaceholder,
|
|
955
|
-
value: props.value,
|
|
955
|
+
value: props.value.firstValue,
|
|
956
956
|
showSearch: true
|
|
957
957
|
}
|
|
958
958
|
), /* @__PURE__ */ React24.createElement("div", { style: { borderLeft: "1px solid gray", height: "33px" } }), /* @__PURE__ */ React24.createElement(
|
|
@@ -964,7 +964,7 @@ var DropDownGroup = (props) => {
|
|
|
964
964
|
className: props.className,
|
|
965
965
|
filterOption: secondFilterOptions,
|
|
966
966
|
placeholder: props.secondPlaceholder,
|
|
967
|
-
value: props.value,
|
|
967
|
+
value: props.value.secondValue,
|
|
968
968
|
showSearch: true
|
|
969
969
|
}
|
|
970
970
|
)));
|