@zipify/wysiwyg 4.11.0-3 → 4.11.0-4
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/.github/pull_request_template.md +1 -1
- package/.oxlintrc.json +11 -3
- package/dist/cli.js +37 -37
- package/dist/node.js +26 -26
- package/dist/wysiwyg.css +7 -7
- package/dist/wysiwyg.mjs +61 -65
- package/lib/components/toolbar/controls/stylePreset/StylePresetControl.vue +8 -10
- package/lib/extensions/core/SelectionProcessor.js +3 -3
- package/lib/extensions/list/List.js +30 -34
- package/package.json +8 -8
|
@@ -10,7 +10,7 @@ Add here text description and URLs to screenshots
|
|
|
10
10
|
This section contains links to external resources and other things
|
|
11
11
|
that you cannot place in previous sections
|
|
12
12
|
-->
|
|
13
|
-
- [Jira Ticket](
|
|
13
|
+
- [Jira Ticket](url_to_jira_ticket)
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
## Checklist
|
package/.oxlintrc.json
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
3
3
|
"plugins": ["import"],
|
|
4
4
|
"env": {
|
|
5
5
|
"browser": true,
|
|
6
|
-
"node": true
|
|
6
|
+
"node": true,
|
|
7
|
+
"jest": true
|
|
8
|
+
},
|
|
9
|
+
"globals": {
|
|
10
|
+
"defineProps": "readonly",
|
|
11
|
+
"defineEmits": "readonly",
|
|
12
|
+
"defineSlots": "readonly",
|
|
13
|
+
"defineExpose": "readonly",
|
|
14
|
+
"defineModel": "readonly"
|
|
7
15
|
},
|
|
8
16
|
"ignorePatterns": [
|
|
9
17
|
"dist/**"
|
|
@@ -99,6 +107,7 @@
|
|
|
99
107
|
}
|
|
100
108
|
],
|
|
101
109
|
"no-self-compare": "error",
|
|
110
|
+
"no-undef": "error",
|
|
102
111
|
"no-undefined": "off",
|
|
103
112
|
"no-unused-expressions": "off",
|
|
104
113
|
"no-unused-vars": [
|
|
@@ -137,8 +146,7 @@
|
|
|
137
146
|
"vue": "always"
|
|
138
147
|
}
|
|
139
148
|
],
|
|
140
|
-
"no-duplicate-imports": "off"
|
|
141
|
-
"no-undef": "off"
|
|
149
|
+
"no-duplicate-imports": "off"
|
|
142
150
|
}
|
|
143
151
|
},
|
|
144
152
|
{
|