solid_litequeen 0.19.2 → 0.19.3
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ae4277cd7c00d5d974f64f63ac15bdf0938f7c8e82fa8f86ca1e54ffa0b2e2f
|
4
|
+
data.tar.gz: 475259398671e0aee0d48a84b0323d1dc3b12929e0c86cdb0fbc5c25fb36c595
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1c99b56c6fdbd8916d8394c2d39c67ae4a911dc068cad3aff2a9d7b81bcd31a7b781c11f1addafe8e30af7e4bfe530e0b34cbf9a25db33c7a0c08fcb6600ee0
|
7
|
+
data.tar.gz: 77858a8ff68e2e347b5625d90abff61a8aa74df8a3056a42649a70fd8a138655e85fb1120e7024deac2c1768617d8258c88879869dab039bc9ce45eb4dc3b3c3
|
@@ -36,6 +36,8 @@ export default class extends Controller {
|
|
36
36
|
|
37
37
|
// so we can render stuff when we open the dialog to avoid render issues with wrong sizes
|
38
38
|
this.#observeDialogOpenStatus();
|
39
|
+
|
40
|
+
|
39
41
|
}
|
40
42
|
|
41
43
|
disconnect() {
|
@@ -69,12 +71,19 @@ export default class extends Controller {
|
|
69
71
|
attrs: {
|
70
72
|
line: {
|
71
73
|
stroke: "var(--color-info)",
|
74
|
+
opacity: 0.8,
|
72
75
|
strokeWidth: 2,
|
73
76
|
targetMarker: {
|
74
77
|
type: "path",
|
75
78
|
d: "M 10 -5 0 0 10 5 z",
|
79
|
+
fill: "var(--color-info)",
|
80
|
+
fill: "var(--color-primary)",
|
81
|
+
stroke: "none",
|
82
|
+
|
76
83
|
},
|
77
84
|
},
|
85
|
+
|
86
|
+
|
78
87
|
},
|
79
88
|
router: { name: "manhattan" },
|
80
89
|
connector: { name: "rounded" },
|
@@ -135,6 +144,7 @@ export default class extends Controller {
|
|
135
144
|
label: {
|
136
145
|
text: field,
|
137
146
|
fill: "var(--color-base-content)",
|
147
|
+
opacity: 0.6,
|
138
148
|
fontSize: 14,
|
139
149
|
},
|
140
150
|
},
|
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
<dialog id="table_relationships" data-controller="dialog table-relations" data-relations="<%= @table_relations.to_json %>" class="bg-base-200 border border-base-content/20 backdrop-blur rounded w-[1000px] h-full m-auto overscroll-y-contain">
|
2
3
|
<div class="flex flex-row-reverse">
|
3
4
|
<button data-action="click->dialog#close" class="cursor-pointer mr-4 mt-2 outline-none">
|