git-truck 1.1.4 → 1.2.0-0
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/build/_assets/App-CCO27G3C.css +3 -0
- package/build/_assets/Chart-OOZGWRB3.css +26 -0
- package/build/_assets/index-ISZFG75V.css +52 -0
- package/build/_assets/truck-7F5JWBYT.gif +0 -0
- package/build/_assets/vars-SMWRLQRH.css +25 -0
- package/build/cli.js +14377 -0
- package/build/index.js +4429 -4848
- package/build/index.js.map +7 -0
- package/cli.js +2 -2
- package/package.json +58 -59
- package/public/build/_shared/chunk-CO2NSGJT.js +26 -0
- package/public/build/_shared/chunk-IX57VIRY.js +1 -0
- package/public/build/_shared/chunk-JUPRJNQC.js +67 -0
- package/public/build/_shared/chunk-LIM2NYSQ.js +233 -0
- package/public/build/_shared/chunk-R7IL2RVO.js +1 -0
- package/public/build/entry.client-ZDUHHBKV.js +1 -0
- package/public/build/manifest-E7946D01.js +1 -0
- package/public/build/root-4C4YKSWQ.js +1 -0
- package/public/build/routes/$repo.$-TBWCMIYA.js +350 -0
- package/public/build/routes/index-NYLGMWX4.js +61 -0
- package/public/build/_shared/chunk-4LCJRRXI.js +0 -233
- package/public/build/_shared/chunk-FSZBSYJE.js +0 -1
- package/public/build/_shared/chunk-WARMAH7N.js +0 -1
- package/public/build/_shared/chunk-Y7FU7OLJ.js +0 -25
- package/public/build/_shared/chunk-YDCVFN7Q.js +0 -75
- package/public/build/entry.client-CDN524WE.js +0 -1
- package/public/build/manifest-E7B01341.js +0 -1
- package/public/build/root-RVNUJ3UD.js +0 -1
- package/public/build/routes/$repo.$-XW46RJFV.js +0 -350
- package/public/build/routes/index-6TM7IHZN.js +0 -61
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.tree,
|
|
2
|
+
.blob {
|
|
3
|
+
position: relative;
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
pointer-events: all;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.tree {
|
|
9
|
+
stroke: var(--border-color);
|
|
10
|
+
fill: transparent;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.blob:hover, .tree:hover {
|
|
14
|
+
stroke: darkslategray;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.object-name {
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
font-size: 0.8rem;
|
|
20
|
+
fill: "#333";
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.name-path {
|
|
24
|
+
fill: transparent;
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
* {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
margin: 0;
|
|
9
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
10
|
+
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
11
|
+
sans-serif;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
min-height: 100vh;
|
|
15
|
+
|
|
16
|
+
background-color: var(--global-bg-color);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#root {
|
|
20
|
+
height: 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.container {
|
|
24
|
+
height: 100%;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
code {
|
|
28
|
+
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
29
|
+
monospace;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
input, button, textarea, select {
|
|
33
|
+
font: inherit;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
button:focus,
|
|
37
|
+
input:focus,
|
|
38
|
+
select:focus {
|
|
39
|
+
outline-color: var(--focused-outline-color);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@keyframes dash {
|
|
43
|
+
to {
|
|
44
|
+
stroke-dashoffset: 0;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@keyframes hide_initially {
|
|
49
|
+
to {
|
|
50
|
+
opacity: 1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--unit: 8px;
|
|
3
|
+
--global-bg-color: hsl(210, 38%, 95%);
|
|
4
|
+
--side-panel-width-units: 35;
|
|
5
|
+
--side-panel-width: calc(var(--side-panel-width-units) * var(--unit));
|
|
6
|
+
--title-color: hsl(200, 5%, 30%);
|
|
7
|
+
--text-color: hsl(200, 5%, 25%);
|
|
8
|
+
--border-color: hsl(0, 0%, 70%);
|
|
9
|
+
--border-width: 1px;
|
|
10
|
+
--surface-color: hsl(0, 0%, 90%);
|
|
11
|
+
--border-color-alpha: hsla(0, 0%, 0%, 30%);
|
|
12
|
+
--focused-outline-color: hsl(216, 83%, 62%);
|
|
13
|
+
/* Generated with: https://shadows.brumm.af/ */
|
|
14
|
+
--shadow: 0.9px 0.9px 2.7px hsla(0, 0%, 0%, 0.07),
|
|
15
|
+
2.2px 2.2px 6.9px hsla(0, 0%, 0%, 0.048),
|
|
16
|
+
4.4px 4.4px 14.2px hsla(0, 0%, 0%, 0.039),
|
|
17
|
+
9.1px 9.1px 29.2px hsla(0, 0%, 0%, 0.031), 25px 25px 80px hsla(0, 0%, 0%, 0.022);
|
|
18
|
+
--small-shadow: 0.9px 0.9px 1.7px hsla(0, 0%, 0%, 0.5);
|
|
19
|
+
|
|
20
|
+
--hover-transition-duration: 200ms;
|
|
21
|
+
--button-text-color: hsl(216, 0%, 30%);
|
|
22
|
+
--button-bg: hsl(216, 0%, 95%);
|
|
23
|
+
--button-hovered-bg: hsl(216, 0%, 90%);
|
|
24
|
+
--button-outline: hsl(216, 0%, 50%);
|
|
25
|
+
}
|