@iebh/tera-fy 1.0.8 → 1.0.10
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/README.md +9 -4
- package/api.md +445 -431
- package/dist/terafy.js +2 -2
- package/dist/terafy.js.map +4 -4
- package/docs/assets/anchor.js +350 -0
- package/docs/assets/bass-addons.css +12 -0
- package/docs/assets/bass.css +544 -0
- package/docs/assets/fonts/EOT/SourceCodePro-Bold.eot +0 -0
- package/docs/assets/fonts/EOT/SourceCodePro-Regular.eot +0 -0
- package/docs/assets/fonts/LICENSE.txt +93 -0
- package/docs/assets/fonts/OTF/SourceCodePro-Bold.otf +0 -0
- package/docs/assets/fonts/OTF/SourceCodePro-Regular.otf +0 -0
- package/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf +0 -0
- package/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf +0 -0
- package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff +0 -0
- package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff +0 -0
- package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff +0 -0
- package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff +0 -0
- package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 +0 -0
- package/docs/assets/fonts/source-code-pro.css +23 -0
- package/docs/assets/github.css +123 -0
- package/docs/assets/site.js +168 -0
- package/docs/assets/split.css +15 -0
- package/docs/assets/split.js +782 -0
- package/docs/assets/style.css +147 -0
- package/docs/index.html +3636 -0
- package/{index.html → docs/playground.html} +48 -12
- package/documentation.yml +12 -0
- package/lib/terafy.client.js +230 -6
- package/lib/terafy.server.js +192 -10
- package/package.json +7 -6
- package/plugins/vue2.js +173 -0
- package/plugins/{vue.js → vue3.js} +20 -11
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
.documentation {
|
|
2
|
+
font-family: Helvetica, sans-serif;
|
|
3
|
+
color: #666;
|
|
4
|
+
line-height: 1.5;
|
|
5
|
+
background: #f5f5f5;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.black {
|
|
9
|
+
color: #666;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.bg-white {
|
|
13
|
+
background-color: #fff;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
h4 {
|
|
17
|
+
margin: 20px 0 10px 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.documentation h3 {
|
|
21
|
+
color: #000;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.border-bottom {
|
|
25
|
+
border-color: #ddd;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
a {
|
|
29
|
+
color: #1184ce;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.documentation a[href]:hover {
|
|
34
|
+
text-decoration: underline;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
a:hover {
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.py1-ul li {
|
|
42
|
+
padding: 5px 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.max-height-100 {
|
|
46
|
+
max-height: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.height-viewport-100 {
|
|
50
|
+
height: 100vh;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
section:target h3 {
|
|
54
|
+
font-weight: 700;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.documentation td,
|
|
58
|
+
.documentation th {
|
|
59
|
+
padding: 0.25rem 0.25rem;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
h1:hover .anchorjs-link,
|
|
63
|
+
h2:hover .anchorjs-link,
|
|
64
|
+
h3:hover .anchorjs-link,
|
|
65
|
+
h4:hover .anchorjs-link {
|
|
66
|
+
opacity: 1;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.fix-3 {
|
|
70
|
+
width: 25%;
|
|
71
|
+
max-width: 244px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.fix-3 {
|
|
75
|
+
width: 25%;
|
|
76
|
+
max-width: 244px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@media (min-width: 52em) {
|
|
80
|
+
.fix-margin-3 {
|
|
81
|
+
margin-left: 25%;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.pre,
|
|
86
|
+
pre,
|
|
87
|
+
code,
|
|
88
|
+
.code {
|
|
89
|
+
font-family: Source Code Pro, Menlo, Consolas, Liberation Mono, monospace;
|
|
90
|
+
font-size: 14px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.fill-light {
|
|
94
|
+
background: #f9f9f9;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.width2 {
|
|
98
|
+
width: 1rem;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.input {
|
|
102
|
+
font-family: inherit;
|
|
103
|
+
display: block;
|
|
104
|
+
width: 100%;
|
|
105
|
+
height: 2rem;
|
|
106
|
+
padding: 0.5rem;
|
|
107
|
+
margin-bottom: 1rem;
|
|
108
|
+
border: 1px solid #ccc;
|
|
109
|
+
font-size: 0.875rem;
|
|
110
|
+
border-radius: 3px;
|
|
111
|
+
box-sizing: border-box;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
table {
|
|
115
|
+
border-collapse: collapse;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.prose table th,
|
|
119
|
+
.prose table td {
|
|
120
|
+
text-align: left;
|
|
121
|
+
padding: 8px;
|
|
122
|
+
border: 1px solid #ddd;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.prose table th:nth-child(1) {
|
|
126
|
+
border-right: none;
|
|
127
|
+
}
|
|
128
|
+
.prose table th:nth-child(2) {
|
|
129
|
+
border-left: none;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.prose table {
|
|
133
|
+
border: 1px solid #ddd;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.prose-big {
|
|
137
|
+
font-size: 18px;
|
|
138
|
+
line-height: 30px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.quiet {
|
|
142
|
+
opacity: 0.7;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.minishadow {
|
|
146
|
+
box-shadow: 2px 2px 10px #f3f3f3;
|
|
147
|
+
}
|