@dovetail-v2/refine 0.3.27-alpha.0 → 0.3.28-alpha.0
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/refine.cjs +5 -1
- package/dist/refine.js +5 -1
- package/package.json +1 -1
package/dist/refine.cjs
CHANGED
|
@@ -13027,6 +13027,7 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13027
13027
|
const renderAutoCompleteFunc = ({
|
|
13028
13028
|
value: value22,
|
|
13029
13029
|
onChange: onChange2,
|
|
13030
|
+
onBlur,
|
|
13030
13031
|
rowIndex,
|
|
13031
13032
|
disabled
|
|
13032
13033
|
}) => {
|
|
@@ -13035,6 +13036,7 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13035
13036
|
options: keyOptions || [],
|
|
13036
13037
|
value: value22,
|
|
13037
13038
|
onChange: onChange2,
|
|
13039
|
+
onBlur,
|
|
13038
13040
|
size: "small",
|
|
13039
13041
|
filterOption: (inputValue, option) => {
|
|
13040
13042
|
var _a;
|
|
@@ -13047,6 +13049,7 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13047
13049
|
const renderTextAreaFunc = ({
|
|
13048
13050
|
value: value22,
|
|
13049
13051
|
onChange: onChange2,
|
|
13052
|
+
onBlur,
|
|
13050
13053
|
rowIndex,
|
|
13051
13054
|
disabled
|
|
13052
13055
|
}) => {
|
|
@@ -13059,7 +13062,8 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13059
13062
|
disabled: disabled || disabledChagneDefaultValues && defaultValue.some((row) => lodashEs.isEqual(row, record)),
|
|
13060
13063
|
onChange: (e2) => {
|
|
13061
13064
|
onChange2(e2.target.value);
|
|
13062
|
-
}
|
|
13065
|
+
},
|
|
13066
|
+
onBlur
|
|
13063
13067
|
});
|
|
13064
13068
|
};
|
|
13065
13069
|
return /* @__PURE__ */ common.jsxRuntimeExports.jsxs(eagle.Space, {
|
package/dist/refine.js
CHANGED
|
@@ -13008,6 +13008,7 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13008
13008
|
const renderAutoCompleteFunc = ({
|
|
13009
13009
|
value: value22,
|
|
13010
13010
|
onChange: onChange2,
|
|
13011
|
+
onBlur,
|
|
13011
13012
|
rowIndex,
|
|
13012
13013
|
disabled
|
|
13013
13014
|
}) => {
|
|
@@ -13016,6 +13017,7 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13016
13017
|
options: keyOptions || [],
|
|
13017
13018
|
value: value22,
|
|
13018
13019
|
onChange: onChange2,
|
|
13020
|
+
onBlur,
|
|
13019
13021
|
size: "small",
|
|
13020
13022
|
filterOption: (inputValue, option) => {
|
|
13021
13023
|
var _a;
|
|
@@ -13028,6 +13030,7 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13028
13030
|
const renderTextAreaFunc = ({
|
|
13029
13031
|
value: value22,
|
|
13030
13032
|
onChange: onChange2,
|
|
13033
|
+
onBlur,
|
|
13031
13034
|
rowIndex,
|
|
13032
13035
|
disabled
|
|
13033
13036
|
}) => {
|
|
@@ -13040,7 +13043,8 @@ function _KeyValueTableForm(props, ref) {
|
|
|
13040
13043
|
disabled: disabled || disabledChagneDefaultValues && defaultValue.some((row) => isEqual$1(row, record)),
|
|
13041
13044
|
onChange: (e2) => {
|
|
13042
13045
|
onChange2(e2.target.value);
|
|
13043
|
-
}
|
|
13046
|
+
},
|
|
13047
|
+
onBlur
|
|
13044
13048
|
});
|
|
13045
13049
|
};
|
|
13046
13050
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(Space, {
|