datastake-daf 0.6.514 → 0.6.515

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.
@@ -37646,6 +37646,9 @@ const inputTypeComponent = {
37646
37646
  value: formsValue[name],
37647
37647
  onChange: val => {
37648
37648
  formsValue[name] = val;
37649
+ console.log({
37650
+ val
37651
+ });
37649
37652
  setFormValues({
37650
37653
  [name]: val,
37651
37654
  ...formsValue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.514",
3
+ "version": "0.6.515",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -471,6 +471,7 @@ export const inputTypeComponent = {
471
471
  value={formsValue[name]}
472
472
  onChange={(val) => {
473
473
  formsValue[name] = val;
474
+ console.log({val})
474
475
  setFormValues({
475
476
  [name]: val,
476
477
  ...formsValue,