@dxos/lit-ui 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/lit-ui",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1-staging.ee54ba693a",
|
|
4
4
|
"description": "Web Components for DXOS using Lit",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@lit/react": "^1.0.8",
|
|
38
38
|
"lit": "^3.3.1",
|
|
39
|
-
"@dxos/
|
|
40
|
-
"@dxos/
|
|
41
|
-
"@dxos/
|
|
39
|
+
"@dxos/react-hooks": "0.9.1-staging.ee54ba693a",
|
|
40
|
+
"@dxos/ui-types": "0.9.1-staging.ee54ba693a",
|
|
41
|
+
"@dxos/util": "0.9.1-staging.ee54ba693a"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@dxos/test-utils": "0.9.
|
|
44
|
+
"@dxos/test-utils": "0.9.1-staging.ee54ba693a"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
@@ -10,12 +10,12 @@ import { customElement, property } from 'lit/decorators.js';
|
|
|
10
10
|
|
|
11
11
|
import { DxAnchorActivate } from '@dxos/ui-types';
|
|
12
12
|
|
|
13
|
+
// TODO(thure): There is a case (in)sensitivity issue here which is pernicious:
|
|
14
|
+
// Only refactoring the properties here to all-lowercase fixes the binding in `RefField.tsx`, but that
|
|
15
|
+
// should be unnecessary, and it isn’t an issue for `DxAvatar` or `DxGrid`. What’s going on?
|
|
16
|
+
|
|
13
17
|
@customElement('dx-anchor')
|
|
14
18
|
export class DxAnchor extends LitElement {
|
|
15
|
-
// TODO(thure): There is a case (in)sensitivity issue here which is pernicious:
|
|
16
|
-
// Only refactoring the properties here to all-lowercase fixes the binding in `RefField.tsx`, but that
|
|
17
|
-
// should be unnecessary, and it isn’t an issue for `DxAvatar` or `DxGrid`. What’s going on?
|
|
18
|
-
|
|
19
19
|
@property({ type: String })
|
|
20
20
|
dxn: string = '';
|
|
21
21
|
|