@apexcura/ui-components 0.0.15-Beta48 → 0.0.15-Beta49
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.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -975,8 +975,8 @@ var import_react24 = __toESM(require("react"));
|
|
|
975
975
|
var import_antd17 = require("antd");
|
|
976
976
|
var DropDownGroup = (props) => {
|
|
977
977
|
const [selectedValue, setSelectedValue] = (0, import_react24.useState)({
|
|
978
|
-
firstValue:
|
|
979
|
-
secondValue:
|
|
978
|
+
firstValue: props.value.firstValue,
|
|
979
|
+
secondValue: props.value.secondValue,
|
|
980
980
|
temp: ""
|
|
981
981
|
});
|
|
982
982
|
const handleFirstChange = (value) => {
|
package/dist/index.mjs
CHANGED
|
@@ -906,8 +906,8 @@ import React24, { useState as useState7 } from "react";
|
|
|
906
906
|
import { Select as Select4 } from "antd";
|
|
907
907
|
var DropDownGroup = (props) => {
|
|
908
908
|
const [selectedValue, setSelectedValue] = useState7({
|
|
909
|
-
firstValue:
|
|
910
|
-
secondValue:
|
|
909
|
+
firstValue: props.value.firstValue,
|
|
910
|
+
secondValue: props.value.secondValue,
|
|
911
911
|
temp: ""
|
|
912
912
|
});
|
|
913
913
|
const handleFirstChange = (value) => {
|