@gisce/react-ooui 1.2.0-rc.50 → 1.2.0-rc.51
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/react-ooui.es.js
CHANGED
|
@@ -24780,7 +24780,11 @@ const DatePickerConfig = {
|
|
|
24780
24780
|
required: a
|
|
24781
24781
|
}),
|
|
24782
24782
|
onChange: (p) => {
|
|
24783
|
-
f(p)
|
|
24783
|
+
f(p);
|
|
24784
|
+
let v = l[0] || 0;
|
|
24785
|
+
p !== d && (c([]), v = 0);
|
|
24786
|
+
const h = `${p},${v}`;
|
|
24787
|
+
h !== t && (r == null || r(h));
|
|
24784
24788
|
},
|
|
24785
24789
|
value: d
|
|
24786
24790
|
})
|
|
@@ -24796,7 +24800,7 @@ const DatePickerConfig = {
|
|
|
24796
24800
|
value: l,
|
|
24797
24801
|
onChange: (p) => {
|
|
24798
24802
|
c(p);
|
|
24799
|
-
const v = `${d},${p[0]}`;
|
|
24803
|
+
const v = `${d},${p[0] || 0}`;
|
|
24800
24804
|
v !== t && (r == null || r(v));
|
|
24801
24805
|
}
|
|
24802
24806
|
})
|