@gravity-ui/markdown-editor 13.0.0 → 13.1.0
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { TagParseRule } from 'prosemirror-model';
|
|
2
2
|
import { HeadingLevel } from '../const';
|
|
3
3
|
export { hType, hasParentHeading, headingRule } from '../../../markdown/Heading/utils';
|
|
4
|
-
export declare const getNodeAttrs: (level: HeadingLevel) =>
|
|
4
|
+
export declare const getNodeAttrs: (level: HeadingLevel) => TagParseRule['getAttrs'];
|
package/build/cjs/version.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
/** During build process, the current version will be injected here */
|
|
5
|
-
exports.VERSION = typeof '13.
|
|
5
|
+
exports.VERSION = typeof '13.1.0' !== 'undefined' ? '13.1.0' : 'unknown';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { TagParseRule } from 'prosemirror-model';
|
|
2
2
|
import { HeadingLevel } from '../const';
|
|
3
3
|
export { hType, hasParentHeading, headingRule } from '../../../markdown/Heading/utils';
|
|
4
|
-
export declare const getNodeAttrs: (level: HeadingLevel) =>
|
|
4
|
+
export declare const getNodeAttrs: (level: HeadingLevel) => TagParseRule['getAttrs'];
|
package/build/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** During build process, the current version will be injected here */
|
|
2
|
-
export const VERSION = typeof '13.
|
|
2
|
+
export const VERSION = typeof '13.1.0' !== 'undefined' ? '13.1.0' : 'unknown';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-ui/markdown-editor",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.1.0",
|
|
4
4
|
"description": "Markdown wysiwyg and markup editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -43,6 +43,11 @@
|
|
|
43
43
|
"require": "./build/cjs/core/index.js",
|
|
44
44
|
"import": "./build/esm/core/index.js"
|
|
45
45
|
},
|
|
46
|
+
"./i18n": {
|
|
47
|
+
"types": "./build/esm/i18n/i18n.d.ts",
|
|
48
|
+
"require": "./build/cjs/i18n/i18n.js",
|
|
49
|
+
"import": "./build/esm/i18n/i18n.js"
|
|
50
|
+
},
|
|
46
51
|
"./specs": {
|
|
47
52
|
"types": "./build/esm/extensions/specs.d.ts",
|
|
48
53
|
"require": "./build/cjs/extensions/specs.js",
|
|
@@ -111,6 +116,9 @@
|
|
|
111
116
|
"core": [
|
|
112
117
|
"./build/esm/core/index.d.ts"
|
|
113
118
|
],
|
|
119
|
+
"i18n": [
|
|
120
|
+
"./build/esm/i18n/i18n.d.ts"
|
|
121
|
+
],
|
|
114
122
|
"specs": [
|
|
115
123
|
"./build/esm/extensions/specs.d.ts"
|
|
116
124
|
],
|
|
@@ -172,20 +180,20 @@
|
|
|
172
180
|
"markdown-it-ins": "^3.0.1",
|
|
173
181
|
"markdown-it-mark": "^3.0.1",
|
|
174
182
|
"markdown-it-sub": "^1.0.0",
|
|
175
|
-
"prosemirror-autocomplete": "0.3
|
|
183
|
+
"prosemirror-autocomplete": "0.4.3",
|
|
176
184
|
"prosemirror-codemark": "0.4.2",
|
|
177
185
|
"prosemirror-commands": "1.5.2",
|
|
178
186
|
"prosemirror-dropcursor": "1.8.1",
|
|
179
|
-
"prosemirror-history": "1.
|
|
180
|
-
"prosemirror-inputrules": "1.
|
|
187
|
+
"prosemirror-history": "1.4.0",
|
|
188
|
+
"prosemirror-inputrules": "1.4.0",
|
|
181
189
|
"prosemirror-keymap": "1.2.2",
|
|
182
|
-
"prosemirror-model": "1.
|
|
190
|
+
"prosemirror-model": "1.21.0",
|
|
183
191
|
"prosemirror-schema-list": "1.3.0",
|
|
184
192
|
"prosemirror-state": "1.4.3",
|
|
185
193
|
"prosemirror-test-builder": "1.1.1",
|
|
186
|
-
"prosemirror-transform": "1.
|
|
194
|
+
"prosemirror-transform": "1.9.0",
|
|
187
195
|
"prosemirror-utils": "1.2.0",
|
|
188
|
-
"prosemirror-view": "1.
|
|
196
|
+
"prosemirror-view": "1.33.6",
|
|
189
197
|
"react-error-boundary": "^3.1.4",
|
|
190
198
|
"react-use": "^17.3.2",
|
|
191
199
|
"tslib": "^2.3.1"
|