vue-editify 0.1.6 → 0.1.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/editify.es.js +4 -1
- package/lib/editify.umd.js +1 -1
- package/package.json +2 -2
- package/src/index.js +1 -1
package/lib/editify.es.js
CHANGED
|
@@ -2155,6 +2155,9 @@ const closedParse = [
|
|
|
2155
2155
|
},
|
|
2156
2156
|
{
|
|
2157
2157
|
parsedom: "audio"
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
parsedom: "svg"
|
|
2158
2161
|
}
|
|
2159
2162
|
];
|
|
2160
2163
|
const inblockParse = [
|
|
@@ -22264,7 +22267,7 @@ const i18n = (locale) => {
|
|
|
22264
22267
|
return translations[locale][key];
|
|
22265
22268
|
};
|
|
22266
22269
|
};
|
|
22267
|
-
const version = "0.1.
|
|
22270
|
+
const version = "0.1.7";
|
|
22268
22271
|
const install = (app, props) => {
|
|
22269
22272
|
const locale = (props ? props.locale : "zh_CN") || "zh_CN";
|
|
22270
22273
|
app.provide("$editTrans", i18n(locale));
|