@onereach/ui-components-vue2 18.0.0 → 18.0.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/bundled/components/OrCode/OrCode.js +6 -7
- package/dist/bundled/components/OrCode/index.js +5 -5
- package/dist/bundled/components/OrCode/lang.js +5 -5
- package/dist/bundled/components/OrCode/libs.js +5 -5
- package/dist/bundled/components/OrCode/theme.js +1 -3
- package/dist/bundled/components/OrCodeV3/OrCode.js +8 -9
- package/dist/bundled/components/OrCodeV3/index.js +5 -6
- package/dist/bundled/components/OrCodeV3/libs.js +5 -6
- package/dist/bundled/components/OrRichTextEditorV3/OrRichTextEditor.js +1 -1
- package/dist/bundled/components/OrRichTextEditorV3/utils/codemirror/codemirrorNode.js +2 -2
- package/dist/bundled/components/OrRichTextEditorV3/utils/codemirror/codemirrorView.js +533 -4
- package/dist/bundled/components/OrRichTextEditorV3/utils/codemirror/theme.js +1 -3
- package/dist/bundled/components/OrRichTextEditorV3/utils/markdown.js +2 -2
- package/dist/bundled/components/index.js +6 -7
- package/dist/bundled/{index-36159e83.js → index-3db765e0.js} +1 -1
- package/dist/bundled/index-7d05cef5.js +737 -0
- package/dist/bundled/{index-97358457.js → index-984e3b2c.js} +2 -4
- package/dist/bundled/index-993c320e.js +3209 -0
- package/dist/bundled/{index-688b7f22.js → index-bf867a40.js} +3 -5
- package/dist/bundled/{index-4b377c87.js → index-e5fc608d.js} +1 -1
- package/dist/bundled/{index-0cb923e8.js → index-eb07705b.js} +1 -3
- package/dist/bundled/index-f2294f8e.js +17056 -0
- package/dist/bundled/{index-402ddb06.js → index-f680a6b7.js} +2 -4
- package/dist/bundled/index.js +6 -7
- package/dist/bundled/{markdown-88d482e0.js → markdown-0a4a3a38.js} +1 -1
- package/package.json +12 -12
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import { EditorView, Direction, lineNumbers, highlightActiveLineGutter, highlightSpecialChars, drawSelection, dropCursor, rectangularSelection, crosshairCursor, highlightActiveLine, keymap } from '
|
|
2
|
-
import { Facet, combineConfig, StateField, EditorSelection, Transaction, ChangeSet, ChangeDesc, Text, countColumn, Annotation, StateEffect, findClusterBreak, EditorState } from '@codemirror/state';
|
|
3
|
-
import { IndentContext, getIndentation, indentString, indentUnit, getIndentUnit, matchBrackets, syntaxTree, foldGutter, indentOnInput, syntaxHighlighting, defaultHighlightStyle, bracketMatching, foldKeymap } from '@codemirror/language';
|
|
1
|
+
import { E as EditorView, F as Facet, c as combineConfig, S as StateField, i as EditorSelection, T as Transaction, I as ChangeSet, J as ChangeDesc, K as IndentContext, M as getIndentation, N as indentString, O as Text, Q as indentUnit, U as countColumn, X as getIndentUnit, Y as Annotation, d as StateEffect, Z as matchBrackets, f as syntaxTree, _ as Direction, $ as findClusterBreak, a0 as lineNumbers, a1 as highlightActiveLineGutter, a2 as highlightSpecialChars, a3 as foldGutter, a4 as drawSelection, a5 as dropCursor, a as EditorState, a6 as indentOnInput, w as syntaxHighlighting, a7 as defaultHighlightStyle, a8 as bracketMatching, a9 as rectangularSelection, aa as crosshairCursor, ab as highlightActiveLine, x as keymap, ac as foldKeymap } from './index-f2294f8e.js';
|
|
4
2
|
import { NodeProp } from '@lezer/common';
|
|
5
3
|
import { highlightSelectionMatches, searchKeymap } from '@codemirror/search';
|
|
6
4
|
import { closeBrackets, autocompletion, closeBracketsKeymap, completionKeymap } from '@codemirror/autocomplete';
|
|
7
|
-
import { lintKeymap } from '
|
|
5
|
+
import { b as lintKeymap } from './index-7d05cef5.js';
|
|
8
6
|
|
|
9
7
|
/**
|
|
10
8
|
Comment or uncomment the current selection. Will use line comments
|