@lovett/ui 0.0.8 → 0.0.9
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/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/code-block.tsx +13 -13
- package/src/react-syntax-highlighter-prism.d.ts +16 -1
package/dist/index.js
CHANGED
|
@@ -12,19 +12,19 @@ import { sortableKeyboardCoordinates, SortableContext, horizontalListSortingStra
|
|
|
12
12
|
import { CSS } from '@dnd-kit/utilities';
|
|
13
13
|
import { PrismLight } from 'react-syntax-highlighter';
|
|
14
14
|
import { oneLight, vscDarkPlus } from 'react-syntax-highlighter/dist/esm/styles/prism/index.js';
|
|
15
|
-
import bash from 'react-syntax-highlighter/dist/esm/languages/prism/bash';
|
|
16
|
-
import css from 'react-syntax-highlighter/dist/esm/languages/prism/css';
|
|
17
|
-
import diff from 'react-syntax-highlighter/dist/esm/languages/prism/diff';
|
|
18
|
-
import javascript from 'react-syntax-highlighter/dist/esm/languages/prism/javascript';
|
|
19
|
-
import json from 'react-syntax-highlighter/dist/esm/languages/prism/json';
|
|
20
|
-
import jsx66 from 'react-syntax-highlighter/dist/esm/languages/prism/jsx';
|
|
21
|
-
import markdown from 'react-syntax-highlighter/dist/esm/languages/prism/markdown';
|
|
22
|
-
import markup from 'react-syntax-highlighter/dist/esm/languages/prism/markup';
|
|
23
|
-
import python from 'react-syntax-highlighter/dist/esm/languages/prism/python';
|
|
24
|
-
import sql from 'react-syntax-highlighter/dist/esm/languages/prism/sql';
|
|
25
|
-
import tsx from 'react-syntax-highlighter/dist/esm/languages/prism/tsx';
|
|
26
|
-
import typescript from 'react-syntax-highlighter/dist/esm/languages/prism/typescript';
|
|
27
|
-
import yaml from 'react-syntax-highlighter/dist/esm/languages/prism/yaml';
|
|
15
|
+
import bash from 'react-syntax-highlighter/dist/esm/languages/prism/bash.js';
|
|
16
|
+
import css from 'react-syntax-highlighter/dist/esm/languages/prism/css.js';
|
|
17
|
+
import diff from 'react-syntax-highlighter/dist/esm/languages/prism/diff.js';
|
|
18
|
+
import javascript from 'react-syntax-highlighter/dist/esm/languages/prism/javascript.js';
|
|
19
|
+
import json from 'react-syntax-highlighter/dist/esm/languages/prism/json.js';
|
|
20
|
+
import jsx66 from 'react-syntax-highlighter/dist/esm/languages/prism/jsx.js';
|
|
21
|
+
import markdown from 'react-syntax-highlighter/dist/esm/languages/prism/markdown.js';
|
|
22
|
+
import markup from 'react-syntax-highlighter/dist/esm/languages/prism/markup.js';
|
|
23
|
+
import python from 'react-syntax-highlighter/dist/esm/languages/prism/python.js';
|
|
24
|
+
import sql from 'react-syntax-highlighter/dist/esm/languages/prism/sql.js';
|
|
25
|
+
import tsx from 'react-syntax-highlighter/dist/esm/languages/prism/tsx.js';
|
|
26
|
+
import typescript from 'react-syntax-highlighter/dist/esm/languages/prism/typescript.js';
|
|
27
|
+
import yaml from 'react-syntax-highlighter/dist/esm/languages/prism/yaml.js';
|
|
28
28
|
import ReactMarkdown from 'react-markdown';
|
|
29
29
|
import remarkGfm from 'remark-gfm';
|
|
30
30
|
|