yy-forms 1.0.40 → 1.0.41

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.esm.js CHANGED
@@ -3708,6 +3708,7 @@ function GlobalSettings(_ref) {
3708
3708
  return onDataChange(v);
3709
3709
  }
3710
3710
  },
3711
+ locale: 'en',
3711
3712
  widgets: _objectSpread2(_objectSpread2({}, globalWidgets), widgets),
3712
3713
  mapping: mapping
3713
3714
  }));
@@ -3977,6 +3978,7 @@ function ItemSettings(_ref) {
3977
3978
  schema: settingSchema,
3978
3979
  widgets: _objectSpread2(_objectSpread2({}, _widgets), widgets),
3979
3980
  mapping: globalMapping,
3981
+ locale: 'en',
3980
3982
  watch: {
3981
3983
  '#': function _(v) {
3982
3984
  return setTimeout(function () {
package/dist/index.js CHANGED
@@ -3735,6 +3735,7 @@ function GlobalSettings(_ref) {
3735
3735
  return onDataChange(v);
3736
3736
  }
3737
3737
  },
3738
+ locale: 'en',
3738
3739
  widgets: _objectSpread2(_objectSpread2({}, globalWidgets), widgets),
3739
3740
  mapping: mapping
3740
3741
  }));
@@ -4004,6 +4005,7 @@ function ItemSettings(_ref) {
4004
4005
  schema: settingSchema,
4005
4006
  widgets: _objectSpread2(_objectSpread2({}, _widgets), widgets),
4006
4007
  mapping: globalMapping,
4008
+ locale: 'en',
4007
4009
  watch: {
4008
4010
  '#': function _(v) {
4009
4011
  return setTimeout(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yy-forms",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "typings": "dist/index.d.ts",
@@ -42,6 +42,7 @@ export default function GlobalSettings({ widgets }) {
42
42
  watch={{
43
43
  '#': v => onDataChange(v),
44
44
  }}
45
+ locale={'en'}
45
46
  widgets={{ ...globalWidgets, ...widgets }}
46
47
  mapping={mapping}
47
48
  />
@@ -145,6 +145,7 @@ export default function ItemSettings({ widgets }) {
145
145
  schema={settingSchema}
146
146
  widgets={{ ..._widgets, ...widgets }}
147
147
  mapping={globalMapping}
148
+ locale={'en'}
148
149
  watch={{
149
150
  '#': v => setTimeout(() => onDataChange(v), 0),
150
151
  }}