@dxos/plugin-transformer 0.8.4-main.21d9917 → 0.8.4-main.2244d791bb

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/plugin-transformer",
3
- "version": "0.8.4-main.21d9917",
3
+ "version": "0.8.4-main.2244d791bb",
4
4
  "description": "Client transformer",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -41,21 +41,22 @@
41
41
  "dependencies": {
42
42
  "@huggingface/transformers": "^3.3.3",
43
43
  "date-fns": "^3.3.1",
44
- "effect": "3.19.11",
45
- "@dxos/display-name": "0.8.4-main.21d9917",
46
- "@dxos/app-framework": "0.8.4-main.21d9917",
47
- "@dxos/async": "0.8.4-main.21d9917",
48
- "@dxos/echo": "0.8.4-main.21d9917",
49
- "@dxos/invariant": "0.8.4-main.21d9917",
50
- "@dxos/log": "0.8.4-main.21d9917",
51
- "@dxos/plugin-client": "0.8.4-main.21d9917",
52
- "@dxos/plugin-graph": "0.8.4-main.21d9917",
53
- "@dxos/react-client": "0.8.4-main.21d9917",
54
- "@dxos/plugin-space": "0.8.4-main.21d9917",
55
- "@dxos/react-ui-attention": "0.8.4-main.21d9917",
56
- "@dxos/operation": "0.8.4-main.21d9917",
57
- "@dxos/react-ui-stack": "0.8.4-main.21d9917",
58
- "@dxos/util": "0.8.4-main.21d9917"
44
+ "effect": "3.19.16",
45
+ "@dxos/app-framework": "0.8.4-main.2244d791bb",
46
+ "@dxos/async": "0.8.4-main.2244d791bb",
47
+ "@dxos/display-name": "0.8.4-main.2244d791bb",
48
+ "@dxos/app-toolkit": "0.8.4-main.2244d791bb",
49
+ "@dxos/invariant": "0.8.4-main.2244d791bb",
50
+ "@dxos/echo": "0.8.4-main.2244d791bb",
51
+ "@dxos/log": "0.8.4-main.2244d791bb",
52
+ "@dxos/operation": "0.8.4-main.2244d791bb",
53
+ "@dxos/plugin-client": "0.8.4-main.2244d791bb",
54
+ "@dxos/plugin-graph": "0.8.4-main.2244d791bb",
55
+ "@dxos/react-ui-attention": "0.8.4-main.2244d791bb",
56
+ "@dxos/react-client": "0.8.4-main.2244d791bb",
57
+ "@dxos/plugin-space": "0.8.4-main.2244d791bb",
58
+ "@dxos/react-ui-stack": "0.8.4-main.2244d791bb",
59
+ "@dxos/util": "0.8.4-main.2244d791bb"
59
60
  },
60
61
  "devDependencies": {
61
62
  "@types/react": "~19.2.7",
@@ -64,17 +65,17 @@
64
65
  "react": "~19.2.3",
65
66
  "react-dom": "~19.2.3",
66
67
  "vite": "7.1.9",
67
- "@dxos/react-ui": "0.8.4-main.21d9917",
68
- "@dxos/storybook-utils": "0.8.4-main.21d9917",
69
- "@dxos/ui-theme": "0.8.4-main.21d9917",
70
- "@dxos/random": "0.8.4-main.21d9917"
68
+ "@dxos/random": "0.8.4-main.2244d791bb",
69
+ "@dxos/react-ui": "0.8.4-main.2244d791bb",
70
+ "@dxos/storybook-utils": "0.8.4-main.2244d791bb",
71
+ "@dxos/ui-theme": "0.8.4-main.2244d791bb"
71
72
  },
72
73
  "peerDependencies": {
73
- "effect": "3.19.11",
74
+ "effect": "3.19.16",
74
75
  "react": "~19.2.3",
75
76
  "react-dom": "~19.2.3",
76
- "@dxos/react-ui": "0.8.4-main.21d9917",
77
- "@dxos/ui-theme": "0.8.4-main.21d9917"
77
+ "@dxos/ui-theme": "0.8.4-main.2244d791bb",
78
+ "@dxos/react-ui": "0.8.4-main.2244d791bb"
78
79
  },
79
80
  "publishConfig": {
80
81
  "access": "public"
@@ -2,15 +2,16 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { Common, Plugin } from '@dxos/app-framework';
5
+ import { Plugin } from '@dxos/app-framework';
6
+ import { AppPlugin } from '@dxos/app-toolkit';
6
7
 
7
8
  // import { IntentResolver } from './capabilities';
8
9
  import { meta } from './meta';
9
10
  import { translations } from './translations';
10
11
 
11
12
  export const TransformerPlugin = Plugin.define(meta).pipe(
12
- Common.Plugin.addTranslationsModule({ translations }),
13
- Common.Plugin.addSchemaModule({ schema: [], id: 'schema' }),
13
+ AppPlugin.addSchemaModule({ schema: [], id: 'schema' }),
14
+ AppPlugin.addTranslationsModule({ translations }),
14
15
  // Plugin.addModule({
15
16
  // id: 'intent-resolver',
16
17
  // activatesOn: Events.SetupIntentResolver,
@@ -11,7 +11,7 @@ import { Voice } from './Voice';
11
11
  const meta = {
12
12
  title: 'plugins/plugin-transformer/Voice',
13
13
  component: Voice,
14
- decorators: [withTheme],
14
+ decorators: [withTheme()],
15
15
  parameters: {
16
16
  layout: 'centered',
17
17
  },