analogger 1.7.0 → 1.8.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/.run/Debuggable demo.run.xml +12 -0
- package/.run/Demo in browser with importmap.run.xml +12 -0
- package/.toesm.cjs +4 -20
- package/CHANGELOG.md +3 -1
- package/README.md +7 -7
- package/dist/analogger-browser.min.mjs +2 -0
- package/generated/browser/ana-logger.mjs +802 -0
- package/generated/browser/demo.mjs +101 -0
- package/generated/browser/example/cjs/contexts-def.mjs +22 -0
- package/generated/browser/node_modules/rgb-hex/index.mjs +43 -0
- package/generated/browser/node_modules/to-ansi/index.mjs +285 -0
- package/generated/browser/src/cjs/constants.mjs +37 -0
- package/package.json +36 -20
- package/dist/index-cjs.min.cjs +0 -2
- package/dist/index-esm.min.mjs +0 -2
- package/dist/index.css +0 -83
package/dist/index.css
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
.analogger {
|
|
2
|
-
background-color: #462210;
|
|
3
|
-
border: 4px solid #16122a;
|
|
4
|
-
box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.75);
|
|
5
|
-
height: 320px;
|
|
6
|
-
overflow: hidden;
|
|
7
|
-
margin: 1rem;
|
|
8
|
-
padding: 13px 0 0 0;
|
|
9
|
-
width: 80%;
|
|
10
|
-
max-height: 300px;
|
|
11
|
-
}
|
|
12
|
-
.analogger .analogger-view {
|
|
13
|
-
background-color: #0c0c0c;
|
|
14
|
-
box-sizing: border-box;
|
|
15
|
-
color: antiquewhite;
|
|
16
|
-
display: block;
|
|
17
|
-
font-family: sans-serif;
|
|
18
|
-
font-size: 12px;
|
|
19
|
-
line-height: 30px;
|
|
20
|
-
height: calc(100% - 20px);
|
|
21
|
-
margin: 20px 0 0 0;
|
|
22
|
-
padding: 12px;
|
|
23
|
-
overflow: auto;
|
|
24
|
-
position: relative;
|
|
25
|
-
width: 100%;
|
|
26
|
-
}
|
|
27
|
-
.analogger .analogger-view .to-esm-line {
|
|
28
|
-
display: block;
|
|
29
|
-
overflow: hidden;
|
|
30
|
-
white-space: nowrap;
|
|
31
|
-
}
|
|
32
|
-
.analogger .analogger-view .to-esm-line .analogger-col {
|
|
33
|
-
display: inline-block;
|
|
34
|
-
overflow: hidden;
|
|
35
|
-
padding: 0 4px;
|
|
36
|
-
text-overflow: ellipsis;
|
|
37
|
-
white-space: nowrap;
|
|
38
|
-
}
|
|
39
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(1) {
|
|
40
|
-
width: 60px;
|
|
41
|
-
}
|
|
42
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(2) {
|
|
43
|
-
width: 40px;
|
|
44
|
-
}
|
|
45
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(3) {
|
|
46
|
-
width: 20px;
|
|
47
|
-
}
|
|
48
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(4) {
|
|
49
|
-
width: 16px;
|
|
50
|
-
}
|
|
51
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(5) {
|
|
52
|
-
width: 60px;
|
|
53
|
-
}
|
|
54
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(6) {
|
|
55
|
-
width: 70px;
|
|
56
|
-
}
|
|
57
|
-
.analogger .analogger-view .to-esm-line .analogger-col:nth-child(7) {
|
|
58
|
-
width: auto;
|
|
59
|
-
}
|
|
60
|
-
.analogger .analogger-view .to-esm-line .analogger-col-text {
|
|
61
|
-
min-width: 200px;
|
|
62
|
-
}
|
|
63
|
-
.analogger .analogger-view::-webkit-scrollbar-thumb {
|
|
64
|
-
border: 5px solid transparent;
|
|
65
|
-
border-radius: 100px;
|
|
66
|
-
background-color: #514b6e;
|
|
67
|
-
background-clip: content-box;
|
|
68
|
-
}
|
|
69
|
-
.analogger .analogger-view::-webkit-scrollbar {
|
|
70
|
-
width: 20px;
|
|
71
|
-
}
|
|
72
|
-
.analogger .analogger-view::-webkit-scrollbar-track {
|
|
73
|
-
background-color: #382525;
|
|
74
|
-
border-radius: 100px;
|
|
75
|
-
}
|
|
76
|
-
.analogger .analogger-view::-webkit-scrollbar-thumb {
|
|
77
|
-
border-radius: 100px;
|
|
78
|
-
border: 4px solid transparent;
|
|
79
|
-
background-clip: content-box;
|
|
80
|
-
background-color: #9f6c53;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
|