@sveltia/ui 0.27.0 → 0.27.2
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/components/checkbox/checkbox.svelte +1 -1
- package/dist/components/menu/menu-item-checkbox.svelte +1 -1
- package/dist/components/menu/menu-item-radio.svelte +1 -1
- package/dist/components/select/combobox.svelte +1 -0
- package/dist/components/switch/switch.svelte +1 -1
- package/dist/components/text-editor/core.js +3 -1
- package/package.json +12 -12
|
@@ -219,7 +219,9 @@ const onEditorUpdate = (editor) => {
|
|
|
219
219
|
value: convertToMarkdownString(
|
|
220
220
|
// Use underscores for italic text in Markdown instead of asterisks
|
|
221
221
|
allTransformers.filter((/** @type {any} */ { tag }) => tag !== '*'),
|
|
222
|
-
)
|
|
222
|
+
) // Remove unnecessary backslashes for underscores
|
|
223
|
+
// @see https://github.com/sveltia/sveltia-cms/issues/430
|
|
224
|
+
.replace(/\\_/g, '_'),
|
|
223
225
|
selection: getSelectionTypes(),
|
|
224
226
|
},
|
|
225
227
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltia/ui",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -46,32 +46,32 @@
|
|
|
46
46
|
"svelte": "^5.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@playwright/test": "^1.53.
|
|
49
|
+
"@playwright/test": "^1.53.1",
|
|
50
50
|
"@sveltejs/adapter-auto": "^6.0.1",
|
|
51
|
-
"@sveltejs/kit": "^2.
|
|
52
|
-
"@sveltejs/package": "^2.3.
|
|
51
|
+
"@sveltejs/kit": "^2.22.2",
|
|
52
|
+
"@sveltejs/package": "^2.3.12",
|
|
53
53
|
"@sveltejs/vite-plugin-svelte": "5.1.0",
|
|
54
|
-
"cspell": "^9.1.
|
|
54
|
+
"cspell": "^9.1.2",
|
|
55
55
|
"eslint": "^8.57.1",
|
|
56
56
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
57
57
|
"eslint-config-prettier": "^10.1.5",
|
|
58
|
-
"eslint-plugin-import": "^2.
|
|
59
|
-
"eslint-plugin-jsdoc": "^51.
|
|
58
|
+
"eslint-plugin-import": "^2.32.0",
|
|
59
|
+
"eslint-plugin-jsdoc": "^51.2.3",
|
|
60
60
|
"eslint-plugin-svelte": "^2.46.1",
|
|
61
61
|
"postcss": "^8.5.6",
|
|
62
62
|
"postcss-html": "^1.8.0",
|
|
63
|
-
"prettier": "^3.
|
|
63
|
+
"prettier": "^3.6.2",
|
|
64
64
|
"prettier-plugin-svelte": "^3.4.0",
|
|
65
65
|
"sass": "^1.89.2",
|
|
66
|
-
"stylelint": "^16.
|
|
66
|
+
"stylelint": "^16.21.0",
|
|
67
67
|
"stylelint-config-recommended-scss": "^15.0.1",
|
|
68
68
|
"stylelint-scss": "^6.12.1",
|
|
69
|
-
"svelte": "5.34.
|
|
70
|
-
"svelte-check": "^4.2.
|
|
69
|
+
"svelte": "5.34.9",
|
|
70
|
+
"svelte-check": "^4.2.2",
|
|
71
71
|
"svelte-i18n": "^4.0.1",
|
|
72
72
|
"svelte-preprocess": "^6.0.3",
|
|
73
73
|
"tslib": "^2.8.1",
|
|
74
|
-
"vite": "^
|
|
74
|
+
"vite": "^7.0.0",
|
|
75
75
|
"vitest": "^3.2.4"
|
|
76
76
|
},
|
|
77
77
|
"exports": {
|