@dxos/lit-ui 0.8.4-main.c1de068 → 0.8.4-main.fd6878d

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-ui",
3
- "version": "0.8.4-main.c1de068",
3
+ "version": "0.8.4-main.fd6878d",
4
4
  "description": "Web Components for DXOS using Lit",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -10,11 +10,13 @@
10
10
  "type": "module",
11
11
  "exports": {
12
12
  ".": {
13
+ "source": "./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"
16
17
  },
17
18
  "./react": {
19
+ "source": "./src/react.ts",
18
20
  "types": "./dist/src/react.d.ts",
19
21
  "browser": "./dist/src/react.js",
20
22
  "node": "./dist/src/react.js"
@@ -39,11 +41,11 @@
39
41
  "dependencies": {
40
42
  "@lit/react": "^1.0.5",
41
43
  "lit": "^3.2.0",
42
- "@dxos/react-hooks": "0.8.4-main.c1de068",
43
- "@dxos/util": "0.8.4-main.c1de068"
44
+ "@dxos/react-hooks": "0.8.4-main.fd6878d",
45
+ "@dxos/util": "0.8.4-main.fd6878d"
44
46
  },
45
47
  "devDependencies": {
46
- "@dxos/test-utils": "0.8.4-main.c1de068"
48
+ "@dxos/test-utils": "0.8.4-main.fd6878d"
47
49
  },
48
50
  "publishConfig": {
49
51
  "access": "public"
@@ -2,8 +2,8 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { html, svg, LitElement } from 'lit';
6
- import { customElement, state, property } from 'lit/decorators.js';
5
+ import { LitElement, html, svg } from 'lit';
6
+ import { customElement, property, state } from 'lit/decorators.js';
7
7
  import { styleMap } from 'lit/directives/style-map.js';
8
8
 
9
9
  import { makeId } from '@dxos/react-hooks';
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { svg, LitElement } from 'lit';
5
+ import { LitElement, svg } from 'lit';
6
6
  import { customElement, property } from 'lit/decorators.js';
7
7
 
8
8
  import { type Size } from '../defs';
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { html, LitElement } from 'lit';
5
+ import { LitElement, html } from 'lit';
6
6
  import { customElement, property } from 'lit/decorators.js';
7
7
 
8
8
  import { makeId } from '@dxos/react-hooks';
package/src/react.ts CHANGED
@@ -2,16 +2,16 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { createComponent, type EventName } from '@lit/react';
5
+ import { type EventName, createComponent } from '@lit/react';
6
6
  import React, { type ComponentPropsWithRef } from 'react';
7
7
 
8
8
  import {
9
+ type DxRefTagActivate,
10
+ type DxTagPickerItemClick,
9
11
  DxAvatar as NaturalDxAvatar,
10
12
  DxRefTag as NaturalDxRefTag,
11
- DxIcon as NaturalIcon,
12
- type DxRefTagActivate,
13
13
  DxTagPickerItem as NaturalDxTagPickerItem,
14
- type DxTagPickerItemClick,
14
+ DxIcon as NaturalIcon,
15
15
  } from './index';
16
16
 
17
17
  export const DxRefTag = createComponent({