scoobie 17.1.3 → 17.1.5
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 +6 -6
- package/remark/mermaid/style.css +12 -8
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"version": "17.1.
|
|
7
|
+
"version": "17.1.5",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@capsizecss/core": "^4.0.0",
|
|
10
10
|
"@mdx-js/react": "^1.6.22",
|
|
@@ -31,24 +31,24 @@
|
|
|
31
31
|
"yaml": "^2.5.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@changesets/cli": "2.27.
|
|
34
|
+
"@changesets/cli": "2.27.8",
|
|
35
35
|
"@changesets/get-github-info": "0.6.0",
|
|
36
36
|
"@mdx-js/loader": "^1.6.22",
|
|
37
37
|
"@storybook/addon-essentials": "8.2.9",
|
|
38
38
|
"@storybook/addon-webpack5-compiler-babel": "3.0.3",
|
|
39
39
|
"@storybook/react": "8.2.9",
|
|
40
40
|
"@storybook/react-webpack5": "8.2.9",
|
|
41
|
-
"@types/react": "18.3.
|
|
41
|
+
"@types/react": "18.3.5",
|
|
42
42
|
"@types/react-dom": "18.3.0",
|
|
43
43
|
"braid-design-system": "32.23.1",
|
|
44
|
-
"loki": "0.35.
|
|
44
|
+
"loki": "0.35.1",
|
|
45
45
|
"mermaid-isomorphic": "2.2.1",
|
|
46
|
-
"playwright": "1.
|
|
46
|
+
"playwright": "1.47.0",
|
|
47
47
|
"react": "18.3.1",
|
|
48
48
|
"react-dom": "18.3.1",
|
|
49
49
|
"react-helmet-async": "1.3.0",
|
|
50
50
|
"react-router-dom": "6.26.1",
|
|
51
|
-
"sku": "13.1.
|
|
51
|
+
"sku": "13.1.1",
|
|
52
52
|
"storybook": "8.2.9",
|
|
53
53
|
"webpack": "5.94.0"
|
|
54
54
|
},
|
package/remark/mermaid/style.css
CHANGED
|
@@ -6,9 +6,6 @@
|
|
|
6
6
|
Arial, sans-serif;
|
|
7
7
|
--mermaid-font-size: 14px;
|
|
8
8
|
|
|
9
|
-
/* https://github.com/mermaid-js/mermaid/blob/8.11.5/src/diagrams/er/erRenderer.js#L405-L406 */
|
|
10
|
-
--mermaid-er-label-fill: rgba(255, 255, 255, 0.85);
|
|
11
|
-
|
|
12
9
|
/* https://github.com/seek-oss/braid-design-system/blob/v31.14.0/lib/color/palette.ts */
|
|
13
10
|
--braid-blue-100: #e3f2fb;
|
|
14
11
|
--braid-blue-300: #98c9f1;
|
|
@@ -42,7 +39,7 @@ path.er.entityBox {
|
|
|
42
39
|
}
|
|
43
40
|
|
|
44
41
|
path.er.relationshipLabelBox {
|
|
45
|
-
fill:
|
|
42
|
+
fill: none;
|
|
46
43
|
}
|
|
47
44
|
|
|
48
45
|
path.er.relationshipLine {
|
|
@@ -55,6 +52,13 @@ text.er {
|
|
|
55
52
|
text-anchor: middle;
|
|
56
53
|
}
|
|
57
54
|
|
|
55
|
+
text.er.relationshipLabel {
|
|
56
|
+
paint-order: stroke fill;
|
|
57
|
+
stroke: #fff;
|
|
58
|
+
stroke-linejoin: round;
|
|
59
|
+
stroke-width: 4px;
|
|
60
|
+
}
|
|
61
|
+
|
|
58
62
|
/* flowchart v2 */
|
|
59
63
|
|
|
60
64
|
/* subgraphs */
|
|
@@ -85,14 +89,14 @@ g.node foreignObject.label {
|
|
|
85
89
|
g.edgeLabel foreignObject,
|
|
86
90
|
g.label foreignObject {
|
|
87
91
|
overflow-x: visible;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
.edgeLabel div {
|
|
91
|
-
background-color: var(--mermaid-er-label-fill);
|
|
92
|
+
scrollbar-width: none;
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
.edgeLabel span.edgeLabel {
|
|
95
96
|
background-color: transparent;
|
|
97
|
+
|
|
98
|
+
-webkit-text-stroke-color: #fff;
|
|
99
|
+
-webkit-text-stroke-width: 4px;
|
|
96
100
|
}
|
|
97
101
|
|
|
98
102
|
circle.label-container,
|