@dxos/keyboard 0.8.4-main.dedc0f3 → 0.8.4-main.e8ec1fe

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/keyboard",
3
- "version": "0.8.4-main.dedc0f3",
3
+ "version": "0.8.4-main.e8ec1fe",
4
4
  "description": "Keyboard bindings",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -25,16 +25,16 @@
25
25
  "src"
26
26
  ],
27
27
  "dependencies": {
28
- "@dxos/invariant": "0.8.4-main.dedc0f3",
29
- "@dxos/node-std": "0.8.4-main.dedc0f3",
30
- "@dxos/util": "0.8.4-main.dedc0f3"
28
+ "@dxos/invariant": "0.8.4-main.e8ec1fe",
29
+ "@dxos/node-std": "0.8.4-main.e8ec1fe",
30
+ "@dxos/util": "0.8.4-main.e8ec1fe"
31
31
  },
32
32
  "devDependencies": {
33
- "react": "~18.2.0",
34
- "react-dom": "~18.2.0",
35
- "@dxos/react-ui": "0.8.4-main.dedc0f3",
36
- "@dxos/react-ui-theme": "0.8.4-main.dedc0f3",
37
- "@dxos/storybook-utils": "0.8.4-main.dedc0f3"
33
+ "react": "~19.2.0",
34
+ "react-dom": "~19.2.0",
35
+ "@dxos/react-ui-theme": "0.8.4-main.e8ec1fe",
36
+ "@dxos/react-ui": "0.8.4-main.e8ec1fe",
37
+ "@dxos/storybook-utils": "0.8.4-main.e8ec1fe"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
@@ -2,13 +2,11 @@
2
2
  // Copyright 2023 DXOS.org
3
3
  //
4
4
 
5
- import '@dxos-theme';
6
-
7
5
  import { type Meta, type StoryObj } from '@storybook/react-vite';
8
6
  import React, { useEffect, useState } from 'react';
9
7
 
10
8
  import { Input, Select } from '@dxos/react-ui';
11
- import { withTheme } from '@dxos/storybook-utils';
9
+ import { withTheme } from '@dxos/react-ui/testing';
12
10
 
13
11
  import { type KeyHandler, Keyboard } from './keyboard';
14
12
 
@@ -70,8 +68,8 @@ const DefaultStory = () => {
70
68
 
71
69
  const meta = {
72
70
  title: 'common/keyboard/Keyboard',
73
- decorators: [withTheme],
74
71
  render: DefaultStory,
72
+ decorators: [withTheme],
75
73
  } satisfies Meta<typeof Input>;
76
74
 
77
75
  export default meta;