@dxos/lit-theme-editor 0.8.4-main.3f58842 → 0.8.4-main.5ad4a44

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/lit-theme-editor",
3
- "version": "0.8.4-main.3f58842",
3
+ "version": "0.8.4-main.5ad4a44",
4
4
  "description": "A component for editing the user tokens layer of dxos-theme.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -10,6 +10,7 @@
10
10
  "type": "module",
11
11
  "exports": {
12
12
  ".": {
13
+ "source": "./dist/src/index.ts",
13
14
  "types": "./dist/src/index.d.ts",
14
15
  "browser": "./dist/src/index.js",
15
16
  "node": "./dist/src/index.js"
@@ -25,14 +26,14 @@
25
26
  "dependencies": {
26
27
  "@ch-ui/colors": "1.2.0",
27
28
  "@ch-ui/tokens": "2.4.0",
28
- "lit": "^3.2.0",
29
- "@dxos/lit-ui": "0.8.4-main.3f58842",
30
- "@dxos/log": "0.8.4-main.3f58842",
31
- "@dxos/react-hooks": "0.8.4-main.3f58842",
32
- "@dxos/react-ui-theme": "0.8.4-main.3f58842"
29
+ "lit": "^3.3.1",
30
+ "@dxos/lit-ui": "0.8.4-main.5ad4a44",
31
+ "@dxos/log": "0.8.4-main.5ad4a44",
32
+ "@dxos/react-hooks": "0.8.4-main.5ad4a44",
33
+ "@dxos/react-ui-theme": "0.8.4-main.5ad4a44"
33
34
  },
34
35
  "devDependencies": {
35
- "@dxos/test-utils": "0.8.4-main.3f58842"
36
+ "@dxos/test-utils": "0.8.4-main.5ad4a44"
36
37
  },
37
38
  "publishConfig": {
38
39
  "access": "public"
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { type TokenSet, type AliasLayer } from '@ch-ui/tokens';
5
+ import { type AliasLayer, type TokenSet } from '@ch-ui/tokens';
6
6
  import { LitElement, html } from 'lit';
7
7
  import { customElement, state } from 'lit/decorators.js';
8
8
  import { repeat } from 'lit/directives/repeat.js';
@@ -1,7 +1,7 @@
1
1
  //
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
- import { renderTokenSet, type TokenSet } from '@ch-ui/tokens';
4
+ import { type TokenSet, renderTokenSet } from '@ch-ui/tokens';
5
5
 
6
6
  import { log } from '@dxos/log';
7
7
  import { userDefaultTokenSet } from '@dxos/react-ui-theme';