@idealyst/markdown 1.2.98 → 1.2.100

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.
Files changed (2) hide show
  1. package/package.json +5 -3
  2. package/src/index.web.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idealyst/markdown",
3
- "version": "1.2.98",
3
+ "version": "1.2.100",
4
4
  "description": "Cross-platform markdown renderer and editor for React and React Native with theme integration",
5
5
  "main": "src/index.ts",
6
6
  "module": "src/index.ts",
@@ -19,12 +19,14 @@
19
19
  "exports": {
20
20
  ".": {
21
21
  "react-native": "./src/index.native.ts",
22
+ "browser": "./src/index.web.ts",
22
23
  "import": "./src/index.ts",
23
24
  "require": "./src/index.ts",
24
25
  "types": "./src/index.ts"
25
26
  },
26
27
  "./editor": {
27
28
  "react-native": "./src/Editor/index.native.ts",
29
+ "browser": "./src/Editor/index.web.ts",
28
30
  "import": "./src/Editor/index.ts",
29
31
  "require": "./src/Editor/index.ts",
30
32
  "types": "./src/Editor/index.ts"
@@ -41,7 +43,7 @@
41
43
  },
42
44
  "peerDependencies": {
43
45
  "@10play/tentap-editor": ">=0.5.0",
44
- "@idealyst/theme": "^1.2.98",
46
+ "@idealyst/theme": "^1.2.100",
45
47
  "@tiptap/extension-link": ">=2.0.0",
46
48
  "@tiptap/extension-placeholder": ">=2.0.0",
47
49
  "@tiptap/extension-task-item": ">=2.0.0",
@@ -114,7 +116,7 @@
114
116
  },
115
117
  "devDependencies": {
116
118
  "@10play/tentap-editor": "^0.5.0",
117
- "@idealyst/theme": "^1.2.98",
119
+ "@idealyst/theme": "^1.2.100",
118
120
  "@mdi/js": "^7.4.0",
119
121
  "@mdi/react": "^1.6.0",
120
122
  "@tiptap/extension-link": "^2.11.0",
package/src/index.web.ts CHANGED
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  // Main component
9
- export { default as Markdown, Markdown as MarkdownComponent } from './Markdown/Markdown.web';
9
+ export { default as Markdown } from './Markdown/Markdown.web';
10
10
 
11
11
  // Types
12
12
  export type {