yy-forms 1.0.0 → 1.0.1
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 +5 -2
- package/dist/index.js +5 -2
- package/package.json +1 -1
- package/src/settings/index.js +3 -2
package/dist/index.esm.js
CHANGED
|
@@ -1834,8 +1834,11 @@ var Canvas = function Canvas(_ref) {
|
|
|
1834
1834
|
}))));
|
|
1835
1835
|
};
|
|
1836
1836
|
|
|
1837
|
-
|
|
1838
|
-
|
|
1837
|
+
// import { useTranslation } from 'react-i18next';
|
|
1838
|
+
// const { t } = useTranslation();
|
|
1839
|
+
var t = function t(text) {
|
|
1840
|
+
return text;
|
|
1841
|
+
};
|
|
1839
1842
|
// 只需写配置,方便可扩展
|
|
1840
1843
|
var baseCommonSettings = {
|
|
1841
1844
|
type: {
|
package/dist/index.js
CHANGED
|
@@ -1861,8 +1861,11 @@ var Canvas = function Canvas(_ref) {
|
|
|
1861
1861
|
}))));
|
|
1862
1862
|
};
|
|
1863
1863
|
|
|
1864
|
-
|
|
1865
|
-
|
|
1864
|
+
// import { useTranslation } from 'react-i18next';
|
|
1865
|
+
// const { t } = useTranslation();
|
|
1866
|
+
var t = function t(text) {
|
|
1867
|
+
return text;
|
|
1868
|
+
};
|
|
1866
1869
|
// 只需写配置,方便可扩展
|
|
1867
1870
|
var baseCommonSettings = {
|
|
1868
1871
|
type: {
|
package/package.json
CHANGED
package/src/settings/index.js
CHANGED