@dxos/react-ui-syntax-highlighter 0.9.0 → 0.9.1-staging.ee54ba693a

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-syntax-highlighter",
3
- "version": "0.9.0",
3
+ "version": "0.9.1-staging.ee54ba693a",
4
4
  "description": "A syntax highlighter wrapper.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -29,25 +29,25 @@
29
29
  "@radix-ui/react-context": "1.1.1",
30
30
  "jsonpath-plus": "^10.3.0",
31
31
  "react-syntax-highlighter": "^15.6.1",
32
- "@dxos/util": "0.9.0",
33
- "@dxos/ui-types": "0.9.0"
32
+ "@dxos/util": "0.9.1-staging.ee54ba693a",
33
+ "@dxos/ui-types": "0.9.1-staging.ee54ba693a"
34
34
  },
35
35
  "devDependencies": {
36
- "@types/react": "~19.2.7",
36
+ "@types/react": "~19.2.17",
37
37
  "@types/react-dom": "~19.2.3",
38
38
  "@types/react-syntax-highlighter": "^15.5.13",
39
- "react": "~19.2.3",
40
- "react-dom": "~19.2.3",
39
+ "react": "~19.2.7",
40
+ "react-dom": "~19.2.7",
41
41
  "vite": "^8.0.16",
42
- "@dxos/random": "0.9.0",
43
- "@dxos/react-ui": "0.9.0",
44
- "@dxos/storybook-utils": "0.9.0",
45
- "@dxos/util": "0.9.0"
42
+ "@dxos/random": "0.9.1-staging.ee54ba693a",
43
+ "@dxos/react-ui": "0.9.1-staging.ee54ba693a",
44
+ "@dxos/storybook-utils": "0.9.1-staging.ee54ba693a",
45
+ "@dxos/util": "0.9.1-staging.ee54ba693a"
46
46
  },
47
47
  "peerDependencies": {
48
- "react": "~19.2.3",
49
- "react-dom": "~19.2.3",
50
- "@dxos/react-ui": "0.9.0"
48
+ "react": "~19.2.7",
49
+ "react-dom": "~19.2.7",
50
+ "@dxos/react-ui": "0.9.1-staging.ee54ba693a"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { createContextScope, type Scope } from '@radix-ui/react-context';
5
+ import { type Scope, createContextScope } from '@radix-ui/react-context';
6
6
  import { JSONPath } from 'jsonpath-plus';
7
7
  import React, { type PropsWithChildren, forwardRef, useMemo, useState } from 'react';
8
8
 
@@ -226,4 +226,4 @@ export const Syntax = {
226
226
 
227
227
  export { createSyntaxScope };
228
228
 
229
- export type { SyntaxRootProps, SyntaxContentProps, SyntaxFilterProps, SyntaxViewportProps, SyntaxCodeProps };
229
+ export type { SyntaxCodeProps, SyntaxContentProps, SyntaxFilterProps, SyntaxRootProps, SyntaxViewportProps };