@dxos/react-ui-markdown 0.8.4-main.6fa680abb7 → 0.8.4-main.74a063c4e0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/react-ui-markdown",
3
- "version": "0.8.4-main.6fa680abb7",
3
+ "version": "0.8.4-main.74a063c4e0",
4
4
  "description": "Markdown components.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -37,18 +37,18 @@
37
37
  "@lezer/xml": "^1.0.6",
38
38
  "@radix-ui/react-compose-refs": "1.1.1",
39
39
  "@radix-ui/react-context": "1.1.1",
40
- "effect": "3.19.16",
40
+ "effect": "3.20.0",
41
41
  "json5": "^2.2.3",
42
42
  "react-markdown": "^10.1.0",
43
43
  "react-resize-detector": "^11.0.1",
44
44
  "remark-gfm": "^4.0.1",
45
- "@dxos/async": "0.8.4-main.6fa680abb7",
46
- "@dxos/invariant": "0.8.4-main.6fa680abb7",
47
- "@dxos/log": "0.8.4-main.6fa680abb7",
48
- "@dxos/echo": "0.8.4-main.6fa680abb7",
49
- "@dxos/util": "0.8.4-main.6fa680abb7",
50
- "@dxos/react-ui-editor": "0.8.4-main.6fa680abb7",
51
- "@dxos/react-ui-syntax-highlighter": "0.8.4-main.6fa680abb7"
45
+ "@dxos/async": "0.8.4-main.74a063c4e0",
46
+ "@dxos/echo": "0.8.4-main.74a063c4e0",
47
+ "@dxos/log": "0.8.4-main.74a063c4e0",
48
+ "@dxos/react-ui-editor": "0.8.4-main.74a063c4e0",
49
+ "@dxos/react-ui-syntax-highlighter": "0.8.4-main.74a063c4e0",
50
+ "@dxos/invariant": "0.8.4-main.74a063c4e0",
51
+ "@dxos/util": "0.8.4-main.74a063c4e0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/react": "~19.2.7",
@@ -56,21 +56,21 @@
56
56
  "react": "~19.2.3",
57
57
  "react-dom": "~19.2.3",
58
58
  "vite": "^7.1.11",
59
- "@dxos/lit-ui": "0.8.4-main.6fa680abb7",
60
- "@dxos/echo": "0.8.4-main.6fa680abb7",
61
- "@dxos/random": "0.8.4-main.6fa680abb7",
62
- "@dxos/react-client": "0.8.4-main.6fa680abb7",
63
- "@dxos/react-ui": "0.8.4-main.6fa680abb7",
64
- "@dxos/storybook-utils": "0.8.4-main.6fa680abb7",
65
- "@dxos/schema": "0.8.4-main.6fa680abb7",
66
- "@dxos/ui-theme": "0.8.4-main.6fa680abb7"
59
+ "@dxos/lit-ui": "0.8.4-main.74a063c4e0",
60
+ "@dxos/echo": "0.8.4-main.74a063c4e0",
61
+ "@dxos/random": "0.8.4-main.74a063c4e0",
62
+ "@dxos/react-client": "0.8.4-main.74a063c4e0",
63
+ "@dxos/react-ui": "0.8.4-main.74a063c4e0",
64
+ "@dxos/schema": "0.8.4-main.74a063c4e0",
65
+ "@dxos/ui-theme": "0.8.4-main.74a063c4e0",
66
+ "@dxos/storybook-utils": "0.8.4-main.74a063c4e0"
67
67
  },
68
68
  "peerDependencies": {
69
- "effect": "3.19.16",
69
+ "effect": "3.20.0",
70
70
  "react": "~19.2.3",
71
71
  "react-dom": "~19.2.3",
72
- "@dxos/react-ui": "0.8.4-main.6fa680abb7",
73
- "@dxos/ui-theme": "0.8.4-main.6fa680abb7"
72
+ "@dxos/react-ui": "0.8.4-main.74a063c4e0",
73
+ "@dxos/ui-theme": "0.8.4-main.74a063c4e0"
74
74
  },
75
75
  "publishConfig": {
76
76
  "access": "public"
@@ -4,13 +4,13 @@
4
4
 
5
5
  import { type Meta, type StoryObj } from '@storybook/react-vite';
6
6
 
7
- import { faker } from '@dxos/random';
7
+ import { random } from '@dxos/random';
8
8
  import { withLayout, withTheme } from '@dxos/react-ui/testing';
9
9
  import { trim } from '@dxos/util';
10
10
 
11
11
  import { MarkdownViewer } from './MarkdownViewer';
12
12
 
13
- faker.seed(0);
13
+ random.seed(0);
14
14
 
15
15
  const meta = {
16
16
  title: 'ui/react-ui-markdown/MarkdownViewer',
@@ -27,7 +27,7 @@ const content = trim`
27
27
 
28
28
  > An example of the MarkdownViewer component.
29
29
 
30
- ${faker.lorem.paragraphs(1)}
30
+ ${random.lorem.paragraphs(1)}
31
31
 
32
32
  Here's a JSON block:
33
33
 
@@ -64,7 +64,7 @@ const content = trim`
64
64
 
65
65
  ## Examples
66
66
 
67
- ${faker.lorem.paragraphs(1)}
67
+ ${random.lorem.paragraphs(1)}
68
68
  `;
69
69
 
70
70
  export const Default: Story = {