@limetech/lime-elements 37.17.3 → 37.18.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.
- package/CHANGELOG.md +8 -0
- package/dist/cjs/limel-text-editor.cjs.entry.js +38 -1
- package/dist/cjs/limel-text-editor.cjs.entry.js.map +1 -1
- package/dist/collection/components/text-editor/menu/default-menu.js +35 -0
- package/dist/collection/components/text-editor/menu/default-menu.js.map +1 -0
- package/dist/collection/components/text-editor/text-editor.js +6 -1
- package/dist/collection/components/text-editor/text-editor.js.map +1 -1
- package/dist/esm/limel-text-editor.entry.js +38 -1
- package/dist/esm/limel-text-editor.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-6a0eac83.entry.js → p-7968bfa0.entry.js} +2 -2
- package/dist/lime-elements/p-7968bfa0.entry.js.map +1 -0
- package/dist/types/components/text-editor/menu/default-menu.d.ts +11 -0
- package/package.json +2 -2
- package/dist/lime-elements/p-6a0eac83.entry.js.map +0 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Schema } from 'prosemirror-model';
|
|
2
|
+
import { MenuElement } from 'prosemirror-menu';
|
|
3
|
+
/**
|
|
4
|
+
* Creates the default menu for the text editor
|
|
5
|
+
* based on the default menu already in prosemirror-example-setup
|
|
6
|
+
* @param schema - the schema to use for the menu
|
|
7
|
+
*
|
|
8
|
+
* @returns the default menu for the text editor
|
|
9
|
+
*/
|
|
10
|
+
export declare const buildDefaultMenu: (schema: Schema) => MenuElement[][];
|
|
11
|
+
//# sourceMappingURL=default-menu.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@limetech/lime-elements",
|
|
3
|
-
"version": "37.
|
|
3
|
+
"version": "37.18.0",
|
|
4
4
|
"description": "Lime Elements",
|
|
5
5
|
"author": "Lime Technologies",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"generate": "stencil generate"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@commitlint/config-conventional": "^19.
|
|
46
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
47
47
|
"@microsoft/api-extractor": "^7.43.1",
|
|
48
48
|
"@popperjs/core": "^2.11.8",
|
|
49
49
|
"@rjsf/core": "^2.4.2",
|