@ni/nimble-components 20.5.0 → 20.5.1
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/all-components-bundle.js +8 -1
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +1 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/rich-text/editor/index.js +7 -0
- package/dist/esm/rich-text/editor/index.js.map +1 -1
- package/dist/esm/rich-text/editor/testing/rich-text-editor.pageobject.d.ts +1 -0
- package/dist/esm/rich-text/editor/testing/rich-text-editor.pageobject.js +8 -0
- package/dist/esm/rich-text/editor/testing/rich-text-editor.pageobject.js.map +1 -1
- package/dist/esm/src/rich-text/editor/testing/rich-text-editor.pageobject.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16288,7 +16288,7 @@
|
|
|
16288
16288
|
|
|
16289
16289
|
/**
|
|
16290
16290
|
* Do not edit directly
|
|
16291
|
-
* Generated on
|
|
16291
|
+
* Generated on Thu, 21 Sep 2023 12:47:24 GMT
|
|
16292
16292
|
*/
|
|
16293
16293
|
|
|
16294
16294
|
const Information100DarkUi = "#a46eff";
|
|
@@ -58991,6 +58991,13 @@ img.ProseMirror-separator {
|
|
|
58991
58991
|
*/
|
|
58992
58992
|
return new Editor({
|
|
58993
58993
|
element: this.editor,
|
|
58994
|
+
// The editor will detect markdown syntax for an input only for these items
|
|
58995
|
+
// https://tiptap.dev/api/editor#enable-input-rules
|
|
58996
|
+
enableInputRules: [BulletList, OrderedList],
|
|
58997
|
+
// The editor will not detect markdown syntax when pasting content in any supported items
|
|
58998
|
+
// Lists do not have any default paste rules, they have only input rules, so disabled paste rules
|
|
58999
|
+
// https://tiptap.dev/api/editor#enable-paste-rules
|
|
59000
|
+
enablePasteRules: false,
|
|
58994
59001
|
extensions: [
|
|
58995
59002
|
Document$1,
|
|
58996
59003
|
Paragraph,
|