@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.
@@ -16288,7 +16288,7 @@
16288
16288
 
16289
16289
  /**
16290
16290
  * Do not edit directly
16291
- * Generated on Wed, 20 Sep 2023 18:34:03 GMT
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,