@ckb-ccc/connector 0.0.17-alpha.7 → 0.0.17-alpha.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @ckb-ccc/connector
2
2
 
3
+ ## 0.0.17-alpha.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @ckb-ccc/ccc@0.0.16-alpha.8
9
+
10
+ ## 0.0.17-alpha.8
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - @ckb-ccc/ccc@0.0.16-alpha.7
16
+
3
17
  ## 0.0.17-alpha.7
4
18
 
5
19
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../src/components/dialog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAM5C,qBACa,MAAO,SAAQ,UAAU;IAE7B,OAAO,EAAE,OAAO,CAAC;IAEjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEvB,MAAM;IA6BN,MAAM,CAAC,MAAM,0BA0DX;CACH"}
1
+ {"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../src/components/dialog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAM5C,qBACa,MAAO,SAAQ,UAAU;IAE7B,OAAO,EAAE,OAAO,CAAC;IAEjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEvB,MAAM;IA6BN,MAAM,CAAC,MAAM,0BA6DX;CACH"}
@@ -73,7 +73,11 @@ Dialog.styles = css `
73
73
  padding-bottom: 1rem;
74
74
  border-bottom: 1px solid var(--divider);
75
75
  }
76
-
76
+ .close,
77
+ .back {
78
+ padding: 0.2rem 0.4rem;
79
+ cursor: pointer;
80
+ }
77
81
  .close svg,
78
82
  .back svg {
79
83
  width: 0.8rem;
@@ -85,7 +89,6 @@ Dialog.styles = css `
85
89
  .close.active svg,
86
90
  .back.active svg {
87
91
  opacity: 1;
88
- cursor: pointer;
89
92
  }
90
93
 
91
94
  .body {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/connector",
3
- "version": "0.0.17-alpha.7",
3
+ "version": "0.0.17-alpha.9",
4
4
  "description": "CCC - CKBer's Codebase. Common Chains Connector UI",
5
5
  "author": "Hanssen0 <hanssen0@hanssen0.com>",
6
6
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "lit": "^3.1.3",
37
- "@ckb-ccc/ccc": "0.0.16-alpha.6"
37
+ "@ckb-ccc/ccc": "0.0.16-alpha.8"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "rimraf ./dist && tsc",
@@ -74,7 +74,11 @@ export class Dialog extends LitElement {
74
74
  padding-bottom: 1rem;
75
75
  border-bottom: 1px solid var(--divider);
76
76
  }
77
-
77
+ .close,
78
+ .back {
79
+ padding: 0.2rem 0.4rem;
80
+ cursor: pointer;
81
+ }
78
82
  .close svg,
79
83
  .back svg {
80
84
  width: 0.8rem;
@@ -86,7 +90,6 @@ export class Dialog extends LitElement {
86
90
  .close.active svg,
87
91
  .back.active svg {
88
92
  opacity: 1;
89
- cursor: pointer;
90
93
  }
91
94
 
92
95
  .body {