@ckb-ccc/connector 0.0.12-alpha.4 → 0.0.12-alpha.6
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.
|
@@ -6,8 +6,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
6
6
|
};
|
|
7
7
|
import { css, html, LitElement } from "lit";
|
|
8
8
|
import { customElement, property } from "lit/decorators.js";
|
|
9
|
-
import { CLOSE_SVG } from "../assets/close.svg";
|
|
10
|
-
import { LEFT_SVG } from "../assets/left.svg";
|
|
9
|
+
import { CLOSE_SVG } from "../assets/close.svg.js";
|
|
10
|
+
import { LEFT_SVG } from "../assets/left.svg.js";
|
|
11
11
|
let Dialog = class Dialog extends LitElement {
|
|
12
12
|
render() {
|
|
13
13
|
return html `
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckb-ccc/connector",
|
|
3
|
-
"version": "0.0.12-alpha.
|
|
3
|
+
"version": "0.0.12-alpha.6",
|
|
4
4
|
"description": "CCC - CKBer's Codebase. Common Chains Connector UI",
|
|
5
5
|
"author": "Hanssen0 <hanssen0@hanssen0.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@ckb-ccc/ccc": "0.0.12-alpha.
|
|
41
|
+
"@ckb-ccc/ccc": "0.0.12-alpha.6",
|
|
42
42
|
"lit": "^3.1.3"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3679eba15c5ec5397c514444594a09b777c3ffe1"
|
|
45
45
|
}
|
package/src/components/dialog.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html, LitElement } from "lit";
|
|
2
2
|
import { customElement, property } from "lit/decorators.js";
|
|
3
|
-
import { CLOSE_SVG } from "../assets/close.svg";
|
|
4
|
-
import { LEFT_SVG } from "../assets/left.svg";
|
|
3
|
+
import { CLOSE_SVG } from "../assets/close.svg.js";
|
|
4
|
+
import { LEFT_SVG } from "../assets/left.svg.js";
|
|
5
5
|
|
|
6
6
|
@customElement("ccc-dialog")
|
|
7
7
|
export class Dialog extends LitElement {
|