@jiaozhiye/qm-design-react 1.10.6 → 1.10.7
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/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/index.js +1 -4
- package/lib/style/index.css +4 -0
- package/lib/style/index.min.css +1 -1
- package/lib/tinymce/style/index.less +4 -0
- package/package.json +10 -10
package/lib/locale/index.js
CHANGED
|
@@ -18,10 +18,7 @@ function template(str, option) {
|
|
|
18
18
|
return option[key];
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
|
-
export const t =
|
|
22
|
-
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
23
|
-
args[_key] = arguments[_key];
|
|
24
|
-
}
|
|
21
|
+
export const t = (...args) => {
|
|
25
22
|
if (i18nHandler) return i18nHandler(...args);
|
|
26
23
|
const [path, option] = args;
|
|
27
24
|
let value;
|
package/lib/style/index.css
CHANGED
|
@@ -28150,9 +28150,13 @@ table {
|
|
|
28150
28150
|
.qm-tinymce .tox-fullscreen {
|
|
28151
28151
|
width: 100% !important;
|
|
28152
28152
|
}
|
|
28153
|
+
.qm-tinymce .tox-promotion,
|
|
28153
28154
|
.qm-tinymce .tox-statusbar__branding {
|
|
28154
28155
|
display: none;
|
|
28155
28156
|
}
|
|
28157
|
+
.qm-tinymce .tox-statusbar__help-text {
|
|
28158
|
+
opacity: 0;
|
|
28159
|
+
}
|
|
28156
28160
|
/*
|
|
28157
28161
|
* @Author: 焦质晔
|
|
28158
28162
|
* @Date: 2021-07-23 19:05:57
|