@onereach/ui-components-vue2 18.0.0 → 18.0.2
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/OrTreeV3/index.js +8 -6
- 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 +7 -8
- package/dist/bundled/{markdown-88d482e0.js → markdown-0a4a3a38.js} +1 -1
- package/dist/esm/components/or-tree-v3/index.js +9 -6
- package/package.json +12 -12
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { configureNesting, parser } from '@lezer/html';
|
|
2
|
-
import { cssLanguage, css } from './index-
|
|
3
|
-
import { typescriptLanguage, jsxLanguage, tsxLanguage, javascriptLanguage, javascript } from './index-
|
|
4
|
-
import { EditorView } from '
|
|
5
|
-
import { EditorSelection } from '@codemirror/state';
|
|
6
|
-
import { LanguageSupport, syntaxTree, LRLanguage, indentNodeProp, foldNodeProp, bracketMatchingHandle } from '@codemirror/language';
|
|
2
|
+
import { cssLanguage, css } from './index-3db765e0.js';
|
|
3
|
+
import { typescriptLanguage, jsxLanguage, tsxLanguage, javascriptLanguage, javascript } from './index-eb07705b.js';
|
|
4
|
+
import { L as LanguageSupport, E as EditorView, f as syntaxTree, i as EditorSelection, j as LRLanguage, k as indentNodeProp, p as foldNodeProp, u as bracketMatchingHandle } from './index-f2294f8e.js';
|
|
7
5
|
|
|
8
6
|
const Targets = ["_blank", "_self", "_top", "_parent"];
|
|
9
7
|
const Charsets = ["ascii", "utf-8", "utf-16", "latin1", "latin1"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { parser } from '@lezer/json';
|
|
2
|
-
import { LanguageSupport, LRLanguage, indentNodeProp, continuedIndent, foldNodeProp, foldInside } from '
|
|
2
|
+
import { L as LanguageSupport, j as LRLanguage, k as indentNodeProp, m as continuedIndent, p as foldNodeProp, q as foldInside } from './index-f2294f8e.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
Calls
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { parser } from '@lezer/javascript';
|
|
2
|
-
import { LanguageSupport, syntaxTree, LRLanguage, indentNodeProp, continuedIndent, flatIndent, delimitedIndent, foldNodeProp, foldInside, sublanguageProp, defineLanguageFacet } from '
|
|
3
|
-
import { EditorSelection } from '@codemirror/state';
|
|
4
|
-
import { EditorView } from '@codemirror/view';
|
|
2
|
+
import { L as LanguageSupport, E as EditorView, f as syntaxTree, i as EditorSelection, j as LRLanguage, k as indentNodeProp, m as continuedIndent, n as flatIndent, o as delimitedIndent, p as foldNodeProp, q as foldInside, r as sublanguageProp, t as defineLanguageFacet } from './index-f2294f8e.js';
|
|
5
3
|
import { ifNotIn, completeFromList, snippetCompletion } from '@codemirror/autocomplete';
|
|
6
4
|
import { IterMode, NodeWeakMap } from '@lezer/common';
|
|
7
5
|
|