pimath 0.0.120 → 0.0.122

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.
Files changed (175) hide show
  1. package/.idea/PI.iml +7 -1
  2. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31_[Default_Changelist]/shelved.patch +90 -0
  3. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31_[Default_Changelist]1/shelved.patch +107 -0
  4. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31__Default_Changelist_.xml +4 -0
  5. package/.idea/shelf/Uncommitted_changes_before_Update_at_24_07_2023_15_31__Default_Changelist_1.xml +4 -0
  6. package/LICENSE.md +1 -1
  7. package/dev/pimath.js +7929 -0
  8. package/dev/pimath.js.map +1 -0
  9. package/dist/{pi.js → pimath.js} +7613 -7840
  10. package/dist/pimath.js.map +1 -0
  11. package/dist/pimath.min.js +2 -0
  12. package/dist/pimath.min.js.map +1 -0
  13. package/docs/assets/main.js +58 -58
  14. package/docs/assets/search.js +1 -1
  15. package/docs/assets/style.css +1367 -1280
  16. package/docs/classes/Logicalset.Logicalset.html +221 -212
  17. package/docs/classes/Polynom.Rational.html +391 -388
  18. package/docs/classes/Vector-1.Vector.html +494 -448
  19. package/docs/classes/Vector.Point.html +341 -342
  20. package/docs/classes/algebra_equation.Equation.html +796 -753
  21. package/docs/classes/algebra_linearSystem.LinearSystem.html +408 -397
  22. package/docs/classes/algebra_monom.Monom.html +967 -910
  23. package/docs/classes/algebra_polynom.Polynom.html +1281 -1260
  24. package/docs/classes/coefficients_fraction.Fraction.html +939 -931
  25. package/docs/classes/geometry_circle.Circle.html +476 -476
  26. package/docs/classes/geometry_line.Line.html +779 -719
  27. package/docs/classes/geometry_triangle.Triangle.html +429 -420
  28. package/docs/classes/numeric.Numeric.html +269 -263
  29. package/docs/classes/shutingyard.Shutingyard.html +259 -248
  30. package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +89 -88
  31. package/docs/enums/geometry_line.LinePropriety.html +102 -102
  32. package/docs/enums/shutingyard.ShutingyardMode.html +106 -102
  33. package/docs/enums/shutingyard.ShutingyardType.html +120 -116
  34. package/docs/index.html +63 -65
  35. package/docs/interfaces/algebra_equation.ISolution.html +111 -109
  36. package/docs/interfaces/algebra_polynom.IEuclidian.html +93 -92
  37. package/docs/interfaces/geometry_triangle.remarquableLines.html +150 -150
  38. package/docs/modules/Logicalset.html +69 -74
  39. package/docs/modules/Polynom.html +69 -74
  40. package/docs/modules/Vector-1.html +69 -74
  41. package/docs/modules/Vector.html +69 -74
  42. package/docs/modules/algebra_equation.html +75 -81
  43. package/docs/modules/algebra_linearSystem.html +65 -71
  44. package/docs/modules/algebra_monom.html +70 -76
  45. package/docs/modules/algebra_polynom.html +75 -81
  46. package/docs/modules/coefficients_fraction.html +70 -76
  47. package/docs/modules/geometry_circle.html +65 -71
  48. package/docs/modules/geometry_line.html +70 -76
  49. package/docs/modules/geometry_triangle.html +70 -76
  50. package/docs/modules/numeric.html +65 -71
  51. package/docs/modules/shutingyard.html +84 -90
  52. package/docs/types/algebra_monom.literalType.html +66 -70
  53. package/docs/types/algebra_polynom.PolynomParsingType.html +62 -66
  54. package/docs/types/coefficients_fraction.FractionParsingType.html +61 -65
  55. package/docs/types/shutingyard.Token.html +72 -76
  56. package/docs/types/shutingyard.tokenType.html +77 -81
  57. package/docs/variables/shutingyard.tokenConstant.html +70 -74
  58. package/esm/index.d.ts +38 -41
  59. package/esm/index.js +43 -46
  60. package/esm/index.js.map +1 -1
  61. package/esm/maths/algebra/equation.d.ts +119 -117
  62. package/esm/maths/algebra/equation.js +796 -785
  63. package/esm/maths/algebra/equation.js.map +1 -1
  64. package/esm/maths/algebra/linearSystem.d.ts +39 -38
  65. package/esm/maths/algebra/linearSystem.js +278 -262
  66. package/esm/maths/algebra/linearSystem.js.map +1 -1
  67. package/esm/maths/algebra/logicalset.d.ts +28 -28
  68. package/esm/maths/algebra/logicalset.js +157 -157
  69. package/esm/maths/algebra/monom.d.ts +206 -206
  70. package/esm/maths/algebra/monom.js +908 -908
  71. package/esm/maths/algebra/monom.js.map +1 -1
  72. package/esm/maths/algebra/polynom.d.ts +157 -157
  73. package/esm/maths/algebra/polynom.js +1277 -1277
  74. package/esm/maths/algebra/rational.d.ts +45 -45
  75. package/esm/maths/algebra/rational.js +183 -183
  76. package/esm/maths/algebra/study/rationalStudy.d.ts +28 -28
  77. package/esm/maths/algebra/study/rationalStudy.js +243 -243
  78. package/esm/maths/algebra/study.d.ts +143 -142
  79. package/esm/maths/algebra/study.js +378 -377
  80. package/esm/maths/algebra/study.js.map +1 -1
  81. package/esm/maths/coefficients/fraction.d.ts +90 -90
  82. package/esm/maths/coefficients/fraction.js +516 -516
  83. package/esm/maths/coefficients/fraction.js.map +1 -1
  84. package/esm/maths/coefficients/nthRoot.d.ts +23 -23
  85. package/esm/maths/coefficients/nthRoot.js +136 -136
  86. package/esm/maths/geometry/circle.d.ts +45 -45
  87. package/esm/maths/geometry/circle.js +323 -323
  88. package/esm/maths/geometry/line.d.ts +99 -99
  89. package/esm/maths/geometry/line.js +481 -481
  90. package/esm/maths/geometry/line.js.map +1 -1
  91. package/esm/maths/geometry/point.d.ts +34 -34
  92. package/esm/maths/geometry/point.js +166 -166
  93. package/esm/maths/geometry/point.js.map +1 -1
  94. package/esm/maths/geometry/triangle.d.ts +85 -85
  95. package/esm/maths/geometry/triangle.js +268 -268
  96. package/esm/maths/geometry/vector.d.ts +41 -41
  97. package/esm/maths/geometry/vector.js +197 -197
  98. package/esm/maths/geometry/vector.js.map +1 -1
  99. package/esm/maths/numeric.d.ts +28 -28
  100. package/esm/maths/numeric.js +180 -180
  101. package/esm/maths/numexp.d.ts +19 -0
  102. package/esm/maths/numexp.js +186 -0
  103. package/esm/maths/numexp.js.map +1 -0
  104. package/esm/maths/randomization/random.d.ts +23 -23
  105. package/esm/maths/randomization/random.js +78 -78
  106. package/esm/maths/randomization/random.js.map +1 -1
  107. package/esm/maths/randomization/randomCore.d.ts +7 -7
  108. package/esm/maths/randomization/randomCore.js +21 -21
  109. package/esm/maths/randomization/rndFraction.d.ts +12 -12
  110. package/esm/maths/randomization/rndFraction.js +43 -43
  111. package/esm/maths/randomization/rndGeometryLine.d.ts +12 -12
  112. package/esm/maths/randomization/rndGeometryLine.js +45 -45
  113. package/esm/maths/randomization/rndGeometryPoint.d.ts +12 -12
  114. package/esm/maths/randomization/rndGeometryPoint.js +60 -60
  115. package/esm/maths/randomization/rndHelpers.d.ts +23 -23
  116. package/esm/maths/randomization/rndHelpers.js +76 -76
  117. package/esm/maths/randomization/rndMonom.d.ts +12 -12
  118. package/esm/maths/randomization/rndMonom.js +52 -52
  119. package/esm/maths/randomization/rndPolynom.d.ts +13 -13
  120. package/esm/maths/randomization/rndPolynom.js +74 -74
  121. package/esm/maths/randomization/rndTypes.d.ts +34 -34
  122. package/esm/maths/randomization/rndTypes.js +2 -2
  123. package/esm/maths/shutingyard.d.ts +59 -59
  124. package/esm/maths/shutingyard.js +442 -442
  125. package/esm/maths/shutingyard.js.map +1 -1
  126. package/package.json +11 -11
  127. package/public/index.html +50 -81
  128. package/public/playground.html +7 -8
  129. package/src/index.ts +1 -4
  130. package/src/maths/algebra/equation.ts +16 -0
  131. package/src/maths/algebra/linearSystem.ts +20 -0
  132. package/src/maths/algebra/study.ts +12 -10
  133. package/src/maths/{expressions/numexp.ts → numexp.ts} +2 -2
  134. package/tests/algebra/equation.test.ts +19 -5
  135. package/tests/algebra/linear.test.ts +3 -11
  136. package/tests/algebra/polynom.test.ts +7 -8
  137. package/tests/algebra/rationnal.test.ts +1 -1
  138. package/tests/algebra/study.test.ts +2 -9
  139. package/tests/coefficients/fraction.test.ts +8 -8
  140. package/tests/custom.test.ts +33 -37
  141. package/tests/numeric.test.ts +1 -2
  142. package/tests/numexp.test.ts +13 -5
  143. package/tests/shutingyard.test.ts +3 -3
  144. package/webpack-production-min.config.js +1 -1
  145. package/webpack-production.config.js +1 -1
  146. package/webpack.config.js +1 -1
  147. package/dist/pi.js.map +0 -1
  148. package/dist/pi.min.js +0 -2
  149. package/dist/pi.min.js.map +0 -1
  150. package/docs/classes/expressions_numexp.NumExp.html +0 -236
  151. package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +0 -317
  152. package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +0 -285
  153. package/docs/modules/expressions_numexp.html +0 -71
  154. package/docs/modules/expressions_polynomexp.html +0 -73
  155. package/docs/modules.html +0 -76
  156. package/graph.svg +0 -1033
  157. package/src/maths/expressions/ExpressionTree.ts +0 -172
  158. package/src/maths/expressions/expression.ts +0 -286
  159. package/src/maths/expressions/expressionFactor.ts +0 -190
  160. package/src/maths/expressions/expressionMember.ts +0 -233
  161. package/src/maths/expressions/expressionOperators.ts +0 -49
  162. package/src/maths/expressions/expressionParser.ts +0 -295
  163. package/src/maths/expressions/factors/ExpFactor.ts +0 -39
  164. package/src/maths/expressions/factors/ExpFactorConstant.ts +0 -60
  165. package/src/maths/expressions/factors/ExpFactorExponential.ts +0 -26
  166. package/src/maths/expressions/factors/ExpFactorNumber.ts +0 -72
  167. package/src/maths/expressions/factors/ExpFactorPower.ts +0 -42
  168. package/src/maths/expressions/factors/ExpFactorTrigo.ts +0 -53
  169. package/src/maths/expressions/factors/ExpFactorVariable.ts +0 -45
  170. package/src/maths/expressions/internals.ts +0 -14
  171. package/src/maths/expressions/polynomexp.bkp.ts +0 -221
  172. package/src/maths/expressions/polynomexp.ts +0 -310
  173. package/tests/expressions/expressions.test.ts +0 -145
  174. package/tests/expressions/expressiontree.test.ts +0 -11
  175. package/tests/polynomexp.test.ts +0 -12
@@ -1,1280 +1,1367 @@
1
- :root {
2
- /* Light */
3
- --light-color-background: #f2f4f8;
4
- --light-color-background-secondary: #eff0f1;
5
- --light-color-warning-text: #222;
6
- --light-color-background-warning: #e6e600;
7
- --light-color-icon-background: var(--light-color-background);
8
- --light-color-accent: #c5c7c9;
9
- --light-color-text: #222;
10
- --light-color-text-aside: #707070;
11
- --light-color-link: #4da6ff;
12
- --light-color-ts: #db1373;
13
- --light-color-ts-interface: #139d2c;
14
- --light-color-ts-enum: #9c891a;
15
- --light-color-ts-class: #2484e5;
16
- --light-color-ts-function: #572be7;
17
- --light-color-ts-namespace: #b111c9;
18
- --light-color-ts-private: #707070;
19
- --light-color-ts-variable: #4d68ff;
20
- --light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
21
- --light-color-scheme: light;
22
-
23
- /* Dark */
24
- --dark-color-background: #2b2e33;
25
- --dark-color-background-secondary: #1e2024;
26
- --dark-color-background-warning: #bebe00;
27
- --dark-color-warning-text: #222;
28
- --dark-color-icon-background: var(--dark-color-background-secondary);
29
- --dark-color-accent: #9096a2;
30
- --dark-color-text: #f5f5f5;
31
- --dark-color-text-aside: #dddddd;
32
- --dark-color-link: #00aff4;
33
- --dark-color-ts: #ff6492;
34
- --dark-color-ts-interface: #6cff87;
35
- --dark-color-ts-enum: #f4d93e;
36
- --dark-color-ts-class: #61b0ff;
37
- --dark-color-ts-function: #9772ff;
38
- --dark-color-ts-namespace: #e14dff;
39
- --dark-color-ts-private: #e2e2e2;
40
- --dark-color-ts-variable: #4d68ff;
41
- --dark-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23fff' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
42
- --dark-color-scheme: dark;
43
- }
44
-
45
- @media (prefers-color-scheme: light) {
46
- :root {
47
- --color-background: var(--light-color-background);
48
- --color-background-secondary: var(--light-color-background-secondary);
49
- --color-background-warning: var(--light-color-background-warning);
50
- --color-warning-text: var(--light-color-warning-text);
51
- --color-icon-background: var(--light-color-icon-background);
52
- --color-accent: var(--light-color-accent);
53
- --color-text: var(--light-color-text);
54
- --color-text-aside: var(--light-color-text-aside);
55
- --color-link: var(--light-color-link);
56
- --color-ts: var(--light-color-ts);
57
- --color-ts-interface: var(--light-color-ts-interface);
58
- --color-ts-enum: var(--light-color-ts-enum);
59
- --color-ts-class: var(--light-color-ts-class);
60
- --color-ts-function: var(--light-color-ts-function);
61
- --color-ts-namespace: var(--light-color-ts-namespace);
62
- --color-ts-private: var(--light-color-ts-private);
63
- --color-ts-variable: var(--light-color-ts-variable);
64
- --external-icon: var(--light-external-icon);
65
- --color-scheme: var(--light-color-scheme);
66
- }
67
- }
68
-
69
- @media (prefers-color-scheme: dark) {
70
- :root {
71
- --color-background: var(--dark-color-background);
72
- --color-background-secondary: var(--dark-color-background-secondary);
73
- --color-background-warning: var(--dark-color-background-warning);
74
- --color-warning-text: var(--dark-color-warning-text);
75
- --color-icon-background: var(--dark-color-icon-background);
76
- --color-accent: var(--dark-color-accent);
77
- --color-text: var(--dark-color-text);
78
- --color-text-aside: var(--dark-color-text-aside);
79
- --color-link: var(--dark-color-link);
80
- --color-ts: var(--dark-color-ts);
81
- --color-ts-interface: var(--dark-color-ts-interface);
82
- --color-ts-enum: var(--dark-color-ts-enum);
83
- --color-ts-class: var(--dark-color-ts-class);
84
- --color-ts-function: var(--dark-color-ts-function);
85
- --color-ts-namespace: var(--dark-color-ts-namespace);
86
- --color-ts-private: var(--dark-color-ts-private);
87
- --color-ts-variable: var(--dark-color-ts-variable);
88
- --external-icon: var(--dark-external-icon);
89
- --color-scheme: var(--dark-color-scheme);
90
- }
91
- }
92
-
93
- html {
94
- color-scheme: var(--color-scheme);
95
- }
96
-
97
- body {
98
- margin: 0;
99
- }
100
-
101
- :root[data-theme="light"] {
102
- --color-background: var(--light-color-background);
103
- --color-background-secondary: var(--light-color-background-secondary);
104
- --color-background-warning: var(--light-color-background-warning);
105
- --color-warning-text: var(--light-color-warning-text);
106
- --color-icon-background: var(--light-color-icon-background);
107
- --color-accent: var(--light-color-accent);
108
- --color-text: var(--light-color-text);
109
- --color-text-aside: var(--light-color-text-aside);
110
- --color-link: var(--light-color-link);
111
- --color-ts: var(--light-color-ts);
112
- --color-ts-interface: var(--light-color-ts-interface);
113
- --color-ts-enum: var(--light-color-ts-enum);
114
- --color-ts-class: var(--light-color-ts-class);
115
- --color-ts-function: var(--light-color-ts-function);
116
- --color-ts-namespace: var(--light-color-ts-namespace);
117
- --color-ts-private: var(--light-color-ts-private);
118
- --color-ts-variable: var(--light-color-ts-variable);
119
- --external-icon: var(--light-external-icon);
120
- --color-scheme: var(--light-color-scheme);
121
- }
122
-
123
- :root[data-theme="dark"] {
124
- --color-background: var(--dark-color-background);
125
- --color-background-secondary: var(--dark-color-background-secondary);
126
- --color-background-warning: var(--dark-color-background-warning);
127
- --color-warning-text: var(--dark-color-warning-text);
128
- --color-icon-background: var(--dark-color-icon-background);
129
- --color-accent: var(--dark-color-accent);
130
- --color-text: var(--dark-color-text);
131
- --color-text-aside: var(--dark-color-text-aside);
132
- --color-link: var(--dark-color-link);
133
- --color-ts: var(--dark-color-ts);
134
- --color-ts-interface: var(--dark-color-ts-interface);
135
- --color-ts-enum: var(--dark-color-ts-enum);
136
- --color-ts-class: var(--dark-color-ts-class);
137
- --color-ts-function: var(--dark-color-ts-function);
138
- --color-ts-namespace: var(--dark-color-ts-namespace);
139
- --color-ts-private: var(--dark-color-ts-private);
140
- --color-ts-variable: var(--dark-color-ts-variable);
141
- --external-icon: var(--dark-external-icon);
142
- --color-scheme: var(--dark-color-scheme);
143
- }
144
-
145
- .always-visible,
146
- .always-visible .tsd-signatures {
147
- display: inherit !important;
148
- }
149
-
150
- h1,
151
- h2,
152
- h3,
153
- h4,
154
- h5,
155
- h6 {
156
- line-height: 1.2;
157
- }
158
-
159
- h1 {
160
- font-size: 1.875rem;
161
- margin: 0.67rem 0;
162
- }
163
-
164
- h2 {
165
- font-size: 1.5rem;
166
- margin: 0.83rem 0;
167
- }
168
-
169
- h3 {
170
- font-size: 1.25rem;
171
- margin: 1rem 0;
172
- }
173
-
174
- h4 {
175
- font-size: 1.05rem;
176
- margin: 1.33rem 0;
177
- }
178
-
179
- h5 {
180
- font-size: 1rem;
181
- margin: 1.5rem 0;
182
- }
183
-
184
- h6 {
185
- font-size: 0.875rem;
186
- margin: 2.33rem 0;
187
- }
188
-
189
- .uppercase {
190
- text-transform: uppercase;
191
- }
192
-
193
- pre {
194
- white-space: pre;
195
- white-space: pre-wrap;
196
- word-wrap: break-word;
197
- }
198
-
199
- dl,
200
- menu,
201
- ol,
202
- ul {
203
- margin: 1em 0;
204
- }
205
-
206
- dd {
207
- margin: 0 0 0 40px;
208
- }
209
-
210
- .container {
211
- max-width: 1600px;
212
- padding: 0 2rem;
213
- }
214
-
215
- @media (min-width: 640px) {
216
- .container {
217
- padding: 0 4rem;
218
- }
219
- }
220
- @media (min-width: 1200px) {
221
- .container {
222
- padding: 0 8rem;
223
- }
224
- }
225
- @media (min-width: 1600px) {
226
- .container {
227
- padding: 0 12rem;
228
- }
229
- }
230
-
231
- /* Footer */
232
- .tsd-generator {
233
- border-top: 1px solid var(--color-accent);
234
- padding-top: 1rem;
235
- padding-bottom: 1rem;
236
- max-height: 3.5rem;
237
- }
238
-
239
- .tsd-generator > p {
240
- margin-top: 0;
241
- margin-bottom: 0;
242
- padding: 0 1rem;
243
- }
244
-
245
- .container-main {
246
- display: flex;
247
- justify-content: space-between;
248
- position: relative;
249
- margin: 0 auto;
250
- }
251
-
252
- .col-4,
253
- .col-8 {
254
- box-sizing: border-box;
255
- float: left;
256
- padding: 2rem 1rem;
257
- }
258
-
259
- .col-4 {
260
- flex: 0 0 25%;
261
- }
262
- .col-8 {
263
- flex: 1 0;
264
- flex-wrap: wrap;
265
- padding-left: 0;
266
- }
267
-
268
- @keyframes fade-in {
269
- from {
270
- opacity: 0;
271
- }
272
- to {
273
- opacity: 1;
274
- }
275
- }
276
- @keyframes fade-out {
277
- from {
278
- opacity: 1;
279
- visibility: visible;
280
- }
281
- to {
282
- opacity: 0;
283
- }
284
- }
285
- @keyframes fade-in-delayed {
286
- 0% {
287
- opacity: 0;
288
- }
289
- 33% {
290
- opacity: 0;
291
- }
292
- 100% {
293
- opacity: 1;
294
- }
295
- }
296
- @keyframes fade-out-delayed {
297
- 0% {
298
- opacity: 1;
299
- visibility: visible;
300
- }
301
- 66% {
302
- opacity: 0;
303
- }
304
- 100% {
305
- opacity: 0;
306
- }
307
- }
308
- @keyframes shift-to-left {
309
- from {
310
- transform: translate(0, 0);
311
- }
312
- to {
313
- transform: translate(-25%, 0);
314
- }
315
- }
316
- @keyframes unshift-to-left {
317
- from {
318
- transform: translate(-25%, 0);
319
- }
320
- to {
321
- transform: translate(0, 0);
322
- }
323
- }
324
- @keyframes pop-in-from-right {
325
- from {
326
- transform: translate(100%, 0);
327
- }
328
- to {
329
- transform: translate(0, 0);
330
- }
331
- }
332
- @keyframes pop-out-to-right {
333
- from {
334
- transform: translate(0, 0);
335
- visibility: visible;
336
- }
337
- to {
338
- transform: translate(100%, 0);
339
- }
340
- }
341
- body {
342
- background: var(--color-background);
343
- font-family: "Segoe UI", sans-serif;
344
- font-size: 16px;
345
- color: var(--color-text);
346
- }
347
-
348
- a {
349
- color: var(--color-link);
350
- text-decoration: none;
351
- }
352
- a:hover {
353
- text-decoration: underline;
354
- }
355
- a.external[target="_blank"] {
356
- background-image: var(--external-icon);
357
- background-position: top 3px right;
358
- background-repeat: no-repeat;
359
- padding-right: 13px;
360
- }
361
-
362
- code,
363
- pre {
364
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
365
- padding: 0.2em;
366
- margin: 0;
367
- font-size: 0.875rem;
368
- border-radius: 0.8em;
369
- }
370
-
371
- pre {
372
- padding: 10px;
373
- border: 0.1em solid var(--color-accent);
374
- }
375
- pre code {
376
- padding: 0;
377
- font-size: 100%;
378
- }
379
-
380
- blockquote {
381
- margin: 1em 0;
382
- padding-left: 1em;
383
- border-left: 4px solid gray;
384
- }
385
-
386
- .tsd-typography {
387
- line-height: 1.333em;
388
- }
389
- .tsd-typography ul {
390
- list-style: square;
391
- padding: 0 0 0 20px;
392
- margin: 0;
393
- }
394
- .tsd-typography h4,
395
- .tsd-typography .tsd-index-panel h3,
396
- .tsd-index-panel .tsd-typography h3,
397
- .tsd-typography h5,
398
- .tsd-typography h6 {
399
- font-size: 1em;
400
- margin: 0;
401
- }
402
- .tsd-typography h5,
403
- .tsd-typography h6 {
404
- font-weight: normal;
405
- }
406
- .tsd-typography p,
407
- .tsd-typography ul,
408
- .tsd-typography ol {
409
- margin: 1em 0;
410
- }
411
-
412
- @media (max-width: 1024px) {
413
- html .col-content {
414
- float: none;
415
- max-width: 100%;
416
- width: 100%;
417
- padding-top: 3rem;
418
- }
419
- html .col-menu {
420
- position: fixed !important;
421
- overflow-y: auto;
422
- -webkit-overflow-scrolling: touch;
423
- z-index: 1024;
424
- top: 0 !important;
425
- bottom: 0 !important;
426
- left: auto !important;
427
- right: 0 !important;
428
- padding: 1.5rem 1.5rem 0 0;
429
- max-width: 25rem;
430
- visibility: hidden;
431
- background-color: var(--color-background);
432
- transform: translate(100%, 0);
433
- }
434
- html .col-menu > *:last-child {
435
- padding-bottom: 20px;
436
- }
437
- html .overlay {
438
- content: "";
439
- display: block;
440
- position: fixed;
441
- z-index: 1023;
442
- top: 0;
443
- left: 0;
444
- right: 0;
445
- bottom: 0;
446
- background-color: rgba(0, 0, 0, 0.75);
447
- visibility: hidden;
448
- }
449
-
450
- .to-has-menu .overlay {
451
- animation: fade-in 0.4s;
452
- }
453
-
454
- .to-has-menu :is(header, footer, .col-content) {
455
- animation: shift-to-left 0.4s;
456
- }
457
-
458
- .to-has-menu .col-menu {
459
- animation: pop-in-from-right 0.4s;
460
- }
461
-
462
- .from-has-menu .overlay {
463
- animation: fade-out 0.4s;
464
- }
465
-
466
- .from-has-menu :is(header, footer, .col-content) {
467
- animation: unshift-to-left 0.4s;
468
- }
469
-
470
- .from-has-menu .col-menu {
471
- animation: pop-out-to-right 0.4s;
472
- }
473
-
474
- .has-menu body {
475
- overflow: hidden;
476
- }
477
- .has-menu .overlay {
478
- visibility: visible;
479
- }
480
- .has-menu :is(header, footer, .col-content) {
481
- transform: translate(-25%, 0);
482
- }
483
- .has-menu .col-menu {
484
- visibility: visible;
485
- transform: translate(0, 0);
486
- display: grid;
487
- align-items: center;
488
- grid-template-rows: auto 1fr;
489
- grid-gap: 1.5rem;
490
- max-height: 100vh;
491
- padding: 1rem 2rem;
492
- }
493
- .has-menu .tsd-navigation {
494
- max-height: 100%;
495
- }
496
- }
497
-
498
- .tsd-breadcrumb {
499
- margin: 0;
500
- padding: 0;
501
- color: var(--color-text-aside);
502
- }
503
- .tsd-breadcrumb a {
504
- color: var(--color-text-aside);
505
- text-decoration: none;
506
- }
507
- .tsd-breadcrumb a:hover {
508
- text-decoration: underline;
509
- }
510
- .tsd-breadcrumb li {
511
- display: inline;
512
- }
513
- .tsd-breadcrumb li:after {
514
- content: " / ";
515
- }
516
-
517
- .tsd-comment-tags {
518
- display: flex;
519
- flex-direction: column;
520
- }
521
- dl.tsd-comment-tag-group {
522
- display: flex;
523
- align-items: center;
524
- overflow: hidden;
525
- margin: 0.5em 0;
526
- }
527
- dl.tsd-comment-tag-group dt {
528
- display: flex;
529
- margin-right: 0.5em;
530
- font-size: 0.875em;
531
- font-weight: normal;
532
- }
533
- dl.tsd-comment-tag-group dd {
534
- margin: 0;
535
- }
536
- code.tsd-tag {
537
- padding: 0.25em 0.4em;
538
- border: 0.1em solid var(--color-accent);
539
- margin-right: 0.25em;
540
- font-size: 70%;
541
- }
542
- h1 code.tsd-tag:first-of-type {
543
- margin-left: 0.25em;
544
- }
545
-
546
- dl.tsd-comment-tag-group dd:before,
547
- dl.tsd-comment-tag-group dd:after {
548
- content: " ";
549
- }
550
- dl.tsd-comment-tag-group dd pre,
551
- dl.tsd-comment-tag-group dd:after {
552
- clear: both;
553
- }
554
- dl.tsd-comment-tag-group p {
555
- margin: 0;
556
- }
557
-
558
- .tsd-panel.tsd-comment .lead {
559
- font-size: 1.1em;
560
- line-height: 1.333em;
561
- margin-bottom: 2em;
562
- }
563
- .tsd-panel.tsd-comment .lead:last-child {
564
- margin-bottom: 0;
565
- }
566
-
567
- .tsd-filter-visibility h4 {
568
- font-size: 1rem;
569
- padding-top: 0.75rem;
570
- padding-bottom: 0.5rem;
571
- margin: 0;
572
- }
573
- .tsd-filter-item:not(:last-child) {
574
- margin-bottom: 0.5rem;
575
- }
576
- .tsd-filter-input {
577
- display: flex;
578
- width: fit-content;
579
- width: -moz-fit-content;
580
- align-items: center;
581
- user-select: none;
582
- -webkit-user-select: none;
583
- -moz-user-select: none;
584
- -ms-user-select: none;
585
- cursor: pointer;
586
- }
587
- .tsd-filter-input input[type="checkbox"] {
588
- cursor: pointer;
589
- position: absolute;
590
- width: 1.5em;
591
- height: 1.5em;
592
- opacity: 0;
593
- }
594
- .tsd-filter-input input[type="checkbox"]:disabled {
595
- pointer-events: none;
596
- }
597
- .tsd-filter-input svg {
598
- cursor: pointer;
599
- width: 1.5em;
600
- height: 1.5em;
601
- margin-right: 0.5em;
602
- border-radius: 0.33em;
603
- /* Leaving this at full opacity breaks event listeners on Firefox.
604
- Don't remove unless you know what you're doing. */
605
- opacity: 0.99;
606
- }
607
- .tsd-filter-input input[type="checkbox"]:focus + svg {
608
- transform: scale(0.95);
609
- }
610
- .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
611
- transform: scale(1);
612
- }
613
- .tsd-checkbox-background {
614
- fill: var(--color-accent);
615
- }
616
- input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
617
- stroke: var(--color-text);
618
- }
619
- .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
620
- fill: var(--color-background);
621
- stroke: var(--color-accent);
622
- stroke-width: 0.25rem;
623
- }
624
- .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
625
- stroke: var(--color-accent);
626
- }
627
-
628
- .tsd-theme-toggle {
629
- padding-top: 0.75rem;
630
- }
631
- .tsd-theme-toggle > h4 {
632
- display: inline;
633
- vertical-align: middle;
634
- margin-right: 0.75rem;
635
- }
636
-
637
- .tsd-hierarchy {
638
- list-style: square;
639
- margin: 0;
640
- }
641
- .tsd-hierarchy .target {
642
- font-weight: bold;
643
- }
644
-
645
- .tsd-panel-group.tsd-index-group {
646
- margin-bottom: 0;
647
- }
648
- .tsd-index-panel .tsd-index-list {
649
- list-style: none;
650
- line-height: 1.333em;
651
- margin: 0;
652
- padding: 0.25rem 0 0 0;
653
- overflow: hidden;
654
- display: grid;
655
- grid-template-columns: repeat(3, 1fr);
656
- column-gap: 1rem;
657
- grid-template-rows: auto;
658
- }
659
- @media (max-width: 1024px) {
660
- .tsd-index-panel .tsd-index-list {
661
- grid-template-columns: repeat(2, 1fr);
662
- }
663
- }
664
- @media (max-width: 768px) {
665
- .tsd-index-panel .tsd-index-list {
666
- grid-template-columns: repeat(1, 1fr);
667
- }
668
- }
669
- .tsd-index-panel .tsd-index-list li {
670
- -webkit-page-break-inside: avoid;
671
- -moz-page-break-inside: avoid;
672
- -ms-page-break-inside: avoid;
673
- -o-page-break-inside: avoid;
674
- page-break-inside: avoid;
675
- }
676
- .tsd-index-panel a,
677
- .tsd-index-panel a.tsd-parent-kind-module {
678
- color: var(--color-ts);
679
- }
680
- .tsd-index-panel a.tsd-parent-kind-interface {
681
- color: var(--color-ts-interface);
682
- }
683
- .tsd-index-panel a.tsd-parent-kind-enum {
684
- color: var(--color-ts-enum);
685
- }
686
- .tsd-index-panel a.tsd-parent-kind-class {
687
- color: var(--color-ts-class);
688
- }
689
- .tsd-index-panel a.tsd-kind-module {
690
- color: var(--color-ts-namespace);
691
- }
692
- .tsd-index-panel a.tsd-kind-interface {
693
- color: var(--color-ts-interface);
694
- }
695
- .tsd-index-panel a.tsd-kind-enum {
696
- color: var(--color-ts-enum);
697
- }
698
- .tsd-index-panel a.tsd-kind-class {
699
- color: var(--color-ts-class);
700
- }
701
- .tsd-index-panel a.tsd-kind-function {
702
- color: var(--color-ts-function);
703
- }
704
- .tsd-index-panel a.tsd-kind-namespace {
705
- color: var(--color-ts-namespace);
706
- }
707
- .tsd-index-panel a.tsd-kind-variable {
708
- color: var(--color-ts-variable);
709
- }
710
- .tsd-index-panel a.tsd-is-private {
711
- color: var(--color-ts-private);
712
- }
713
-
714
- .tsd-flag {
715
- display: inline-block;
716
- padding: 0.25em 0.4em;
717
- border-radius: 4px;
718
- color: var(--color-comment-tag-text);
719
- background-color: var(--color-comment-tag);
720
- text-indent: 0;
721
- font-size: 75%;
722
- line-height: 1;
723
- font-weight: normal;
724
- }
725
-
726
- .tsd-anchor {
727
- position: absolute;
728
- top: -100px;
729
- }
730
-
731
- .tsd-member {
732
- position: relative;
733
- }
734
- .tsd-member .tsd-anchor + h3 {
735
- display: flex;
736
- align-items: center;
737
- margin-top: 0;
738
- margin-bottom: 0;
739
- border-bottom: none;
740
- }
741
- .tsd-member [data-tsd-kind] {
742
- color: var(--color-ts);
743
- }
744
- .tsd-member [data-tsd-kind="Interface"] {
745
- color: var(--color-ts-interface);
746
- }
747
- .tsd-member [data-tsd-kind="Enum"] {
748
- color: var(--color-ts-enum);
749
- }
750
- .tsd-member [data-tsd-kind="Class"] {
751
- color: var(--color-ts-class);
752
- }
753
- .tsd-member [data-tsd-kind="Private"] {
754
- color: var(--color-ts-private);
755
- }
756
-
757
- .tsd-navigation a {
758
- display: block;
759
- margin: 0.4rem 0;
760
- border-left: 2px solid transparent;
761
- color: var(--color-text);
762
- text-decoration: none;
763
- transition: border-left-color 0.1s;
764
- }
765
- .tsd-navigation a:hover {
766
- text-decoration: underline;
767
- }
768
- .tsd-navigation ul {
769
- margin: 0;
770
- padding: 0;
771
- list-style: none;
772
- }
773
- .tsd-navigation li {
774
- padding: 0;
775
- }
776
-
777
- .tsd-navigation.primary .tsd-accordion-details > ul {
778
- margin-top: 0.75rem;
779
- }
780
- .tsd-navigation.primary a {
781
- padding: 0.75rem 0.5rem;
782
- margin: 0;
783
- }
784
- .tsd-navigation.primary ul li a {
785
- margin-left: 0.5rem;
786
- }
787
- .tsd-navigation.primary ul li li a {
788
- margin-left: 1.5rem;
789
- }
790
- .tsd-navigation.primary ul li li li a {
791
- margin-left: 2.5rem;
792
- }
793
- .tsd-navigation.primary ul li li li li a {
794
- margin-left: 3.5rem;
795
- }
796
- .tsd-navigation.primary ul li li li li li a {
797
- margin-left: 4.5rem;
798
- }
799
- .tsd-navigation.primary ul li li li li li li a {
800
- margin-left: 5.5rem;
801
- }
802
- .tsd-navigation.primary li.current > a {
803
- border-left: 0.15rem var(--color-text) solid;
804
- }
805
- .tsd-navigation.primary li.selected > a {
806
- font-weight: bold;
807
- border-left: 0.2rem var(--color-text) solid;
808
- }
809
- .tsd-navigation.primary ul li a:hover {
810
- border-left: 0.2rem var(--color-text-aside) solid;
811
- }
812
- .tsd-navigation.primary li.globals + li > span,
813
- .tsd-navigation.primary li.globals + li > a {
814
- padding-top: 20px;
815
- }
816
-
817
- .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
818
- max-height: calc(100vh - 1rem);
819
- top: 0.5rem;
820
- }
821
- .tsd-navigation.secondary > ul {
822
- display: inline;
823
- padding-right: 0.5rem;
824
- transition: opacity 0.2s;
825
- }
826
- .tsd-navigation.secondary ul li a {
827
- padding-left: 0;
828
- }
829
- .tsd-navigation.secondary ul li li a {
830
- padding-left: 1.1rem;
831
- }
832
- .tsd-navigation.secondary ul li li li a {
833
- padding-left: 2.2rem;
834
- }
835
- .tsd-navigation.secondary ul li li li li a {
836
- padding-left: 3.3rem;
837
- }
838
- .tsd-navigation.secondary ul li li li li li a {
839
- padding-left: 4.4rem;
840
- }
841
- .tsd-navigation.secondary ul li li li li li li a {
842
- padding-left: 5.5rem;
843
- }
844
-
845
- #tsd-sidebar-links a {
846
- margin-top: 0;
847
- margin-bottom: 0.5rem;
848
- line-height: 1.25rem;
849
- }
850
- #tsd-sidebar-links a:last-of-type {
851
- margin-bottom: 0;
852
- }
853
-
854
- a.tsd-index-link {
855
- margin: 0.25rem 0;
856
- font-size: 1rem;
857
- line-height: 1.25rem;
858
- display: inline-flex;
859
- align-items: center;
860
- }
861
- .tsd-accordion-summary > h1,
862
- .tsd-accordion-summary > h2,
863
- .tsd-accordion-summary > h3,
864
- .tsd-accordion-summary > h4,
865
- .tsd-accordion-summary > h5 {
866
- display: inline-flex;
867
- align-items: center;
868
- vertical-align: middle;
869
- margin-bottom: 0;
870
- user-select: none;
871
- -moz-user-select: none;
872
- -webkit-user-select: none;
873
- -ms-user-select: none;
874
- }
875
- .tsd-accordion-summary {
876
- display: block;
877
- cursor: pointer;
878
- }
879
- .tsd-accordion-summary > * {
880
- margin-top: 0;
881
- margin-bottom: 0;
882
- padding-top: 0;
883
- padding-bottom: 0;
884
- }
885
- .tsd-accordion-summary::-webkit-details-marker {
886
- display: none;
887
- }
888
- .tsd-index-accordion .tsd-accordion-summary svg {
889
- margin-right: 0.25rem;
890
- }
891
- .tsd-index-content > :not(:first-child) {
892
- margin-top: 0.75rem;
893
- }
894
- .tsd-index-heading {
895
- margin-top: 1.5rem;
896
- margin-bottom: 0.75rem;
897
- }
898
-
899
- .tsd-kind-icon {
900
- margin-right: 0.5rem;
901
- width: 1.25rem;
902
- height: 1.25rem;
903
- min-width: 1.25rem;
904
- min-height: 1.25rem;
905
- }
906
- .tsd-kind-icon path {
907
- transform-origin: center;
908
- transform: scale(1.1);
909
- }
910
- .tsd-signature > .tsd-kind-icon {
911
- margin-right: 0.8rem;
912
- }
913
-
914
- @media (min-width: 1024px) {
915
- .col-content {
916
- margin: 2rem auto;
917
- }
918
-
919
- .menu-sticky-wrap {
920
- position: sticky;
921
- height: calc(100vh - 2rem);
922
- top: 4rem;
923
- right: 0;
924
- padding: 0 1.5rem;
925
- padding-top: 1rem;
926
- margin-top: 3rem;
927
- transition: 0.3s ease-in-out;
928
- transition-property: top, padding-top, padding, height;
929
- overflow-y: auto;
930
- }
931
- .col-menu {
932
- border-left: 1px solid var(--color-accent);
933
- }
934
- .col-menu--hide {
935
- top: 1rem;
936
- }
937
- .col-menu .tsd-navigation:not(:last-child) {
938
- padding-bottom: 1.75rem;
939
- }
940
- }
941
-
942
- .tsd-panel {
943
- margin-bottom: 2.5rem;
944
- }
945
- .tsd-panel.tsd-member {
946
- margin-bottom: 4rem;
947
- }
948
- .tsd-panel:empty {
949
- display: none;
950
- }
951
- .tsd-panel > h1,
952
- .tsd-panel > h2,
953
- .tsd-panel > h3 {
954
- margin: 1.5rem -1.5rem 0.75rem -1.5rem;
955
- padding: 0 1.5rem 0.75rem 1.5rem;
956
- }
957
- .tsd-panel > h1.tsd-before-signature,
958
- .tsd-panel > h2.tsd-before-signature,
959
- .tsd-panel > h3.tsd-before-signature {
960
- margin-bottom: 0;
961
- border-bottom: none;
962
- }
963
-
964
- .tsd-panel-group {
965
- margin: 4rem 0;
966
- }
967
- .tsd-panel-group.tsd-index-group {
968
- margin: 2rem 0;
969
- }
970
- .tsd-panel-group.tsd-index-group details {
971
- margin: 2rem 0;
972
- }
973
-
974
- #tsd-search {
975
- transition: background-color 0.2s;
976
- }
977
- #tsd-search .title {
978
- position: relative;
979
- z-index: 2;
980
- }
981
- #tsd-search .field {
982
- position: absolute;
983
- left: 0;
984
- top: 0;
985
- right: 2.5rem;
986
- height: 100%;
987
- }
988
- #tsd-search .field input {
989
- box-sizing: border-box;
990
- position: relative;
991
- top: -50px;
992
- z-index: 1;
993
- width: 100%;
994
- padding: 0 10px;
995
- opacity: 0;
996
- outline: 0;
997
- border: 0;
998
- background: transparent;
999
- color: var(--color-text);
1000
- }
1001
- #tsd-search .field label {
1002
- position: absolute;
1003
- overflow: hidden;
1004
- right: -40px;
1005
- }
1006
- #tsd-search .field input,
1007
- #tsd-search .title,
1008
- #tsd-toolbar-links a {
1009
- transition: opacity 0.2s;
1010
- }
1011
- #tsd-search .results {
1012
- position: absolute;
1013
- visibility: hidden;
1014
- top: 40px;
1015
- width: 100%;
1016
- margin: 0;
1017
- padding: 0;
1018
- list-style: none;
1019
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
1020
- }
1021
- #tsd-search .results li {
1022
- padding: 0 10px;
1023
- background-color: var(--color-background);
1024
- }
1025
- #tsd-search .results li:nth-child(even) {
1026
- background-color: var(--color-background-secondary);
1027
- }
1028
- #tsd-search .results li.state {
1029
- display: none;
1030
- }
1031
- #tsd-search .results li.current,
1032
- #tsd-search .results li:hover {
1033
- background-color: var(--color-accent);
1034
- }
1035
- #tsd-search .results a {
1036
- display: block;
1037
- }
1038
- #tsd-search .results a:before {
1039
- top: 10px;
1040
- }
1041
- #tsd-search .results span.parent {
1042
- color: var(--color-text-aside);
1043
- font-weight: normal;
1044
- }
1045
- #tsd-search.has-focus {
1046
- background-color: var(--color-accent);
1047
- }
1048
- #tsd-search.has-focus .field input {
1049
- top: 0;
1050
- opacity: 1;
1051
- }
1052
- #tsd-search.has-focus .title,
1053
- #tsd-search.has-focus #tsd-toolbar-links a {
1054
- z-index: 0;
1055
- opacity: 0;
1056
- }
1057
- #tsd-search.has-focus .results {
1058
- visibility: visible;
1059
- }
1060
- #tsd-search.loading .results li.state.loading {
1061
- display: block;
1062
- }
1063
- #tsd-search.failure .results li.state.failure {
1064
- display: block;
1065
- }
1066
-
1067
- #tsd-toolbar-links {
1068
- position: absolute;
1069
- top: 0;
1070
- right: 2rem;
1071
- height: 100%;
1072
- display: flex;
1073
- align-items: center;
1074
- justify-content: flex-end;
1075
- }
1076
- #tsd-toolbar-links a {
1077
- margin-left: 1.5rem;
1078
- }
1079
- #tsd-toolbar-links a:hover {
1080
- text-decoration: underline;
1081
- }
1082
-
1083
- .tsd-signature {
1084
- margin: 0 0 1rem 0;
1085
- padding: 1rem 0.5rem;
1086
- border: 1px solid var(--color-accent);
1087
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1088
- font-size: 14px;
1089
- overflow-x: auto;
1090
- }
1091
-
1092
- .tsd-signature-symbol {
1093
- color: var(--color-text-aside);
1094
- font-weight: normal;
1095
- }
1096
-
1097
- .tsd-signature-type {
1098
- font-style: italic;
1099
- font-weight: normal;
1100
- }
1101
-
1102
- .tsd-signatures {
1103
- padding: 0;
1104
- margin: 0 0 1em 0;
1105
- list-style-type: none;
1106
- }
1107
- .tsd-signatures .tsd-signature {
1108
- margin: 0;
1109
- border-color: var(--color-accent);
1110
- border-width: 1px 0;
1111
- transition: background-color 0.1s;
1112
- }
1113
- .tsd-description .tsd-signatures .tsd-signature {
1114
- border-width: 1px;
1115
- }
1116
-
1117
- ul.tsd-parameter-list,
1118
- ul.tsd-type-parameter-list {
1119
- list-style: square;
1120
- margin: 0;
1121
- padding-left: 20px;
1122
- }
1123
- ul.tsd-parameter-list > li.tsd-parameter-signature,
1124
- ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1125
- list-style: none;
1126
- margin-left: -20px;
1127
- }
1128
- ul.tsd-parameter-list h5,
1129
- ul.tsd-type-parameter-list h5 {
1130
- font-size: 16px;
1131
- margin: 1em 0 0.5em 0;
1132
- }
1133
- .tsd-sources {
1134
- margin-top: 1rem;
1135
- font-size: 0.875em;
1136
- }
1137
- .tsd-sources a {
1138
- color: var(--color-text-aside);
1139
- text-decoration: underline;
1140
- }
1141
- .tsd-sources ul {
1142
- list-style: none;
1143
- padding: 0;
1144
- }
1145
-
1146
- .tsd-page-toolbar {
1147
- position: fixed;
1148
- z-index: 1;
1149
- top: 0;
1150
- left: 0;
1151
- width: 100%;
1152
- color: var(--color-text);
1153
- background: var(--color-background-secondary);
1154
- border-bottom: 1px var(--color-accent) solid;
1155
- transition: transform 0.3s ease-in-out;
1156
- }
1157
- .tsd-page-toolbar a {
1158
- color: var(--color-text);
1159
- text-decoration: none;
1160
- }
1161
- .tsd-page-toolbar a.title {
1162
- font-weight: bold;
1163
- }
1164
- .tsd-page-toolbar a.title:hover {
1165
- text-decoration: underline;
1166
- }
1167
- .tsd-page-toolbar .tsd-toolbar-contents {
1168
- display: flex;
1169
- justify-content: space-between;
1170
- height: 2.5rem;
1171
- margin: 0 auto;
1172
- }
1173
- .tsd-page-toolbar .table-cell {
1174
- position: relative;
1175
- white-space: nowrap;
1176
- line-height: 40px;
1177
- }
1178
- .tsd-page-toolbar .table-cell:first-child {
1179
- width: 100%;
1180
- }
1181
- .tsd-page-toolbar .tsd-toolbar-icon {
1182
- box-sizing: border-box;
1183
- line-height: 0;
1184
- padding: 12px 0;
1185
- }
1186
-
1187
- .tsd-page-toolbar--hide {
1188
- transform: translateY(-100%);
1189
- }
1190
-
1191
- .tsd-widget {
1192
- display: inline-block;
1193
- overflow: hidden;
1194
- opacity: 0.8;
1195
- height: 40px;
1196
- transition: opacity 0.1s, background-color 0.2s;
1197
- vertical-align: bottom;
1198
- cursor: pointer;
1199
- }
1200
- .tsd-widget:hover {
1201
- opacity: 0.9;
1202
- }
1203
- .tsd-widget.active {
1204
- opacity: 1;
1205
- background-color: var(--color-accent);
1206
- }
1207
- .tsd-widget.no-caption {
1208
- width: 40px;
1209
- }
1210
- .tsd-widget.no-caption:before {
1211
- margin: 0;
1212
- }
1213
-
1214
- .tsd-widget.options,
1215
- .tsd-widget.menu {
1216
- display: none;
1217
- }
1218
- @media (max-width: 1024px) {
1219
- .tsd-widget.options,
1220
- .tsd-widget.menu {
1221
- display: inline-block;
1222
- }
1223
- }
1224
- input[type="checkbox"] + .tsd-widget:before {
1225
- background-position: -120px 0;
1226
- }
1227
- input[type="checkbox"]:checked + .tsd-widget:before {
1228
- background-position: -160px 0;
1229
- }
1230
-
1231
- img {
1232
- max-width: 100%;
1233
- }
1234
-
1235
- .tsd-anchor-icon {
1236
- display: inline-flex;
1237
- align-items: center;
1238
- margin-left: 0.5rem;
1239
- vertical-align: middle;
1240
- color: var(--color-text);
1241
- }
1242
-
1243
- .tsd-anchor-icon svg {
1244
- width: 1em;
1245
- height: 1em;
1246
- visibility: hidden;
1247
- }
1248
-
1249
- .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1250
- visibility: visible;
1251
- }
1252
-
1253
- .deprecated {
1254
- text-decoration: line-through;
1255
- }
1256
-
1257
- .warning {
1258
- padding: 1rem;
1259
- color: var(--color-warning-text);
1260
- background: var(--color-background-warning);
1261
- }
1262
-
1263
- * {
1264
- scrollbar-width: thin;
1265
- scrollbar-color: var(--color-accent) var(--color-icon-background);
1266
- }
1267
-
1268
- *::-webkit-scrollbar {
1269
- width: 0.75rem;
1270
- }
1271
-
1272
- *::-webkit-scrollbar-track {
1273
- background: var(--color-icon-background);
1274
- }
1275
-
1276
- *::-webkit-scrollbar-thumb {
1277
- background-color: var(--color-accent);
1278
- border-radius: 999rem;
1279
- border: 0.25rem solid var(--color-icon-background);
1280
- }
1
+ :root {
2
+ /* Light */
3
+ --light-color-background: #f2f4f8;
4
+ --light-color-background-secondary: #eff0f1;
5
+ --light-color-warning-text: #222;
6
+ --light-color-background-warning: #e6e600;
7
+ --light-color-icon-background: var(--light-color-background);
8
+ --light-color-accent: #c5c7c9;
9
+ --light-color-active-menu-item: var(--light-color-accent);
10
+ --light-color-text: #222;
11
+ --light-color-text-aside: #6e6e6e;
12
+ --light-color-link: #1f70c2;
13
+
14
+ --light-color-ts-project: #b111c9;
15
+ --light-color-ts-module: var(--light-color-ts-project);
16
+ --light-color-ts-namespace: var(--light-color-ts-project);
17
+ --light-color-ts-enum: #7e6f15;
18
+ --light-color-ts-enum-member: var(--light-color-ts-enum);
19
+ --light-color-ts-variable: #4760ec;
20
+ --light-color-ts-function: #572be7;
21
+ --light-color-ts-class: #1f70c2;
22
+ --light-color-ts-interface: #108024;
23
+ --light-color-ts-constructor: var(--light-color-ts-class);
24
+ --light-color-ts-property: var(--light-color-ts-variable);
25
+ --light-color-ts-method: var(--light-color-ts-function);
26
+ --light-color-ts-call-signature: var(--light-color-ts-method);
27
+ --light-color-ts-index-signature: var(--light-color-ts-property);
28
+ --light-color-ts-constructor-signature: var(--light-color-ts-constructor);
29
+ --light-color-ts-parameter: var(--light-color-ts-variable);
30
+ /* type literal not included as links will never be generated to it */
31
+ --light-color-ts-type-parameter: var(--light-color-ts-type-alias);
32
+ --light-color-ts-accessor: var(--light-color-ts-property);
33
+ --light-color-ts-get-signature: var(--light-color-ts-accessor);
34
+ --light-color-ts-set-signature: var(--light-color-ts-accessor);
35
+ /* object literal not included as it is not used and will be removed in 0.25 */
36
+ --light-color-ts-type-alias: #d51270;
37
+ /* reference not included as links will be colored with the kind that it points to */
38
+
39
+ --light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
40
+ --light-color-scheme: light;
41
+
42
+ /* Dark */
43
+ --dark-color-background: #2b2e33;
44
+ --dark-color-background-secondary: #1e2024;
45
+ --dark-color-background-warning: #bebe00;
46
+ --dark-color-warning-text: #222;
47
+ --dark-color-icon-background: var(--dark-color-background-secondary);
48
+ --dark-color-accent: #9096a2;
49
+ --dark-color-active-menu-item: #5d5d6a;
50
+ --dark-color-text: #f5f5f5;
51
+ --dark-color-text-aside: #dddddd;
52
+ --dark-color-link: #00aff4;
53
+
54
+ --dark-color-ts-project: #e358ff;
55
+ --dark-color-ts-module: var(--dark-color-ts-project);
56
+ --dark-color-ts-namespace: var(--dark-color-ts-project);
57
+ --dark-color-ts-enum: #f4d93e;
58
+ --dark-color-ts-enum-member: var(--dark-color-ts-enum);
59
+ --dark-color-ts-variable: #798dff;
60
+ --dark-color-ts-function: #a280ff;
61
+ --dark-color-ts-class: #8ac4ff;
62
+ --dark-color-ts-interface: #6cff87;
63
+ --dark-color-ts-constructor: var(--dark-color-ts-class);
64
+ --dark-color-ts-property: var(--dark-color-ts-variable);
65
+ --dark-color-ts-method: var(--dark-color-ts-function);
66
+ --dark-color-ts-call-signature: var(--dark-color-ts-method);
67
+ --dark-color-ts-index-signature: var(--dark-color-ts-property);
68
+ --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
69
+ --dark-color-ts-parameter: var(--dark-color-ts-variable);
70
+ /* type literal not included as links will never be generated to it */
71
+ --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
72
+ --dark-color-ts-accessor: var(--dark-color-ts-property);
73
+ --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
74
+ --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
75
+ /* object literal not included as it is not used and will be removed in 0.25 */
76
+ --dark-color-ts-type-alias: #ff6492;
77
+ /* reference not included as links will be colored with the kind that it points to */
78
+
79
+ --dark-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23fff' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
80
+ --dark-color-scheme: dark;
81
+ }
82
+
83
+ @media (prefers-color-scheme: light) {
84
+ :root {
85
+ --color-background: var(--light-color-background);
86
+ --color-background-secondary: var(--light-color-background-secondary);
87
+ --color-background-warning: var(--light-color-background-warning);
88
+ --color-warning-text: var(--light-color-warning-text);
89
+ --color-icon-background: var(--light-color-icon-background);
90
+ --color-accent: var(--light-color-accent);
91
+ --color-active-menu-item: var(--light-color-active-menu-item);
92
+ --color-text: var(--light-color-text);
93
+ --color-text-aside: var(--light-color-text-aside);
94
+ --color-link: var(--light-color-link);
95
+
96
+ --color-ts-module: var(--light-color-ts-module);
97
+ --color-ts-namespace: var(--light-color-ts-namespace);
98
+ --color-ts-enum: var(--light-color-ts-enum);
99
+ --color-ts-enum-member: var(--light-color-ts-enum-member);
100
+ --color-ts-variable: var(--light-color-ts-variable);
101
+ --color-ts-function: var(--light-color-ts-function);
102
+ --color-ts-class: var(--light-color-ts-class);
103
+ --color-ts-interface: var(--light-color-ts-interface);
104
+ --color-ts-constructor: var(--light-color-ts-constructor);
105
+ --color-ts-property: var(--light-color-ts-property);
106
+ --color-ts-method: var(--light-color-ts-method);
107
+ --color-ts-call-signature: var(--light-color-ts-call-signature);
108
+ --color-ts-index-signature: var(--light-color-ts-index-signature);
109
+ --color-ts-constructor-signature: var(
110
+ --light-color-ts-constructor-signature
111
+ );
112
+ --color-ts-parameter: var(--light-color-ts-parameter);
113
+ --color-ts-type-parameter: var(--light-color-ts-type-parameter);
114
+ --color-ts-accessor: var(--light-color-ts-accessor);
115
+ --color-ts-get-signature: var(--light-color-ts-get-signature);
116
+ --color-ts-set-signature: var(--light-color-ts-set-signature);
117
+ --color-ts-type-alias: var(--light-color-ts-type-alias);
118
+
119
+ --external-icon: var(--light-external-icon);
120
+ --color-scheme: var(--light-color-scheme);
121
+ }
122
+ }
123
+
124
+ @media (prefers-color-scheme: dark) {
125
+ :root {
126
+ --color-background: var(--dark-color-background);
127
+ --color-background-secondary: var(--dark-color-background-secondary);
128
+ --color-background-warning: var(--dark-color-background-warning);
129
+ --color-warning-text: var(--dark-color-warning-text);
130
+ --color-icon-background: var(--dark-color-icon-background);
131
+ --color-accent: var(--dark-color-accent);
132
+ --color-active-menu-item: var(--dark-color-active-menu-item);
133
+ --color-text: var(--dark-color-text);
134
+ --color-text-aside: var(--dark-color-text-aside);
135
+ --color-link: var(--dark-color-link);
136
+
137
+ --color-ts-module: var(--dark-color-ts-module);
138
+ --color-ts-namespace: var(--dark-color-ts-namespace);
139
+ --color-ts-enum: var(--dark-color-ts-enum);
140
+ --color-ts-enum-member: var(--dark-color-ts-enum-member);
141
+ --color-ts-variable: var(--dark-color-ts-variable);
142
+ --color-ts-function: var(--dark-color-ts-function);
143
+ --color-ts-class: var(--dark-color-ts-class);
144
+ --color-ts-interface: var(--dark-color-ts-interface);
145
+ --color-ts-constructor: var(--dark-color-ts-constructor);
146
+ --color-ts-property: var(--dark-color-ts-property);
147
+ --color-ts-method: var(--dark-color-ts-method);
148
+ --color-ts-call-signature: var(--dark-color-ts-call-signature);
149
+ --color-ts-index-signature: var(--dark-color-ts-index-signature);
150
+ --color-ts-constructor-signature: var(
151
+ --dark-color-ts-constructor-signature
152
+ );
153
+ --color-ts-parameter: var(--dark-color-ts-parameter);
154
+ --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
155
+ --color-ts-accessor: var(--dark-color-ts-accessor);
156
+ --color-ts-get-signature: var(--dark-color-ts-get-signature);
157
+ --color-ts-set-signature: var(--dark-color-ts-set-signature);
158
+ --color-ts-type-alias: var(--dark-color-ts-type-alias);
159
+
160
+ --external-icon: var(--dark-external-icon);
161
+ --color-scheme: var(--dark-color-scheme);
162
+ }
163
+ }
164
+
165
+ html {
166
+ color-scheme: var(--color-scheme);
167
+ }
168
+
169
+ body {
170
+ margin: 0;
171
+ }
172
+
173
+ :root[data-theme="light"] {
174
+ --color-background: var(--light-color-background);
175
+ --color-background-secondary: var(--light-color-background-secondary);
176
+ --color-background-warning: var(--light-color-background-warning);
177
+ --color-warning-text: var(--light-color-warning-text);
178
+ --color-icon-background: var(--light-color-icon-background);
179
+ --color-accent: var(--light-color-accent);
180
+ --color-active-menu-item: var(--light-color-active-menu-item);
181
+ --color-text: var(--light-color-text);
182
+ --color-text-aside: var(--light-color-text-aside);
183
+ --color-link: var(--light-color-link);
184
+
185
+ --color-ts-module: var(--light-color-ts-module);
186
+ --color-ts-namespace: var(--light-color-ts-namespace);
187
+ --color-ts-enum: var(--light-color-ts-enum);
188
+ --color-ts-enum-member: var(--light-color-ts-enum-member);
189
+ --color-ts-variable: var(--light-color-ts-variable);
190
+ --color-ts-function: var(--light-color-ts-function);
191
+ --color-ts-class: var(--light-color-ts-class);
192
+ --color-ts-interface: var(--light-color-ts-interface);
193
+ --color-ts-constructor: var(--light-color-ts-constructor);
194
+ --color-ts-property: var(--light-color-ts-property);
195
+ --color-ts-method: var(--light-color-ts-method);
196
+ --color-ts-call-signature: var(--light-color-ts-call-signature);
197
+ --color-ts-index-signature: var(--light-color-ts-index-signature);
198
+ --color-ts-constructor-signature: var(
199
+ --light-color-ts-constructor-signature
200
+ );
201
+ --color-ts-parameter: var(--light-color-ts-parameter);
202
+ --color-ts-type-parameter: var(--light-color-ts-type-parameter);
203
+ --color-ts-accessor: var(--light-color-ts-accessor);
204
+ --color-ts-get-signature: var(--light-color-ts-get-signature);
205
+ --color-ts-set-signature: var(--light-color-ts-set-signature);
206
+ --color-ts-type-alias: var(--light-color-ts-type-alias);
207
+
208
+ --external-icon: var(--light-external-icon);
209
+ --color-scheme: var(--light-color-scheme);
210
+ }
211
+
212
+ :root[data-theme="dark"] {
213
+ --color-background: var(--dark-color-background);
214
+ --color-background-secondary: var(--dark-color-background-secondary);
215
+ --color-background-warning: var(--dark-color-background-warning);
216
+ --color-warning-text: var(--dark-color-warning-text);
217
+ --color-icon-background: var(--dark-color-icon-background);
218
+ --color-accent: var(--dark-color-accent);
219
+ --color-active-menu-item: var(--dark-color-active-menu-item);
220
+ --color-text: var(--dark-color-text);
221
+ --color-text-aside: var(--dark-color-text-aside);
222
+ --color-link: var(--dark-color-link);
223
+
224
+ --color-ts-module: var(--dark-color-ts-module);
225
+ --color-ts-namespace: var(--dark-color-ts-namespace);
226
+ --color-ts-enum: var(--dark-color-ts-enum);
227
+ --color-ts-enum-member: var(--dark-color-ts-enum-member);
228
+ --color-ts-variable: var(--dark-color-ts-variable);
229
+ --color-ts-function: var(--dark-color-ts-function);
230
+ --color-ts-class: var(--dark-color-ts-class);
231
+ --color-ts-interface: var(--dark-color-ts-interface);
232
+ --color-ts-constructor: var(--dark-color-ts-constructor);
233
+ --color-ts-property: var(--dark-color-ts-property);
234
+ --color-ts-method: var(--dark-color-ts-method);
235
+ --color-ts-call-signature: var(--dark-color-ts-call-signature);
236
+ --color-ts-index-signature: var(--dark-color-ts-index-signature);
237
+ --color-ts-constructor-signature: var(
238
+ --dark-color-ts-constructor-signature
239
+ );
240
+ --color-ts-parameter: var(--dark-color-ts-parameter);
241
+ --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
242
+ --color-ts-accessor: var(--dark-color-ts-accessor);
243
+ --color-ts-get-signature: var(--dark-color-ts-get-signature);
244
+ --color-ts-set-signature: var(--dark-color-ts-set-signature);
245
+ --color-ts-type-alias: var(--dark-color-ts-type-alias);
246
+
247
+ --external-icon: var(--dark-external-icon);
248
+ --color-scheme: var(--dark-color-scheme);
249
+ }
250
+
251
+ .always-visible,
252
+ .always-visible .tsd-signatures {
253
+ display: inherit !important;
254
+ }
255
+
256
+ h1,
257
+ h2,
258
+ h3,
259
+ h4,
260
+ h5,
261
+ h6 {
262
+ line-height: 1.2;
263
+ }
264
+
265
+ h1 > a,
266
+ h2 > a,
267
+ h3 > a,
268
+ h4 > a,
269
+ h5 > a,
270
+ h6 > a {
271
+ text-decoration: none;
272
+ color: var(--color-text);
273
+ }
274
+
275
+ h1 {
276
+ font-size: 1.875rem;
277
+ margin: 0.67rem 0;
278
+ }
279
+
280
+ h2 {
281
+ font-size: 1.5rem;
282
+ margin: 0.83rem 0;
283
+ }
284
+
285
+ h3 {
286
+ font-size: 1.25rem;
287
+ margin: 1rem 0;
288
+ }
289
+
290
+ h4 {
291
+ font-size: 1.05rem;
292
+ margin: 1.33rem 0;
293
+ }
294
+
295
+ h5 {
296
+ font-size: 1rem;
297
+ margin: 1.5rem 0;
298
+ }
299
+
300
+ h6 {
301
+ font-size: 0.875rem;
302
+ margin: 2.33rem 0;
303
+ }
304
+
305
+ .uppercase {
306
+ text-transform: uppercase;
307
+ }
308
+
309
+ dl,
310
+ menu,
311
+ ol,
312
+ ul {
313
+ margin: 1em 0;
314
+ }
315
+
316
+ dd {
317
+ margin: 0 0 0 40px;
318
+ }
319
+
320
+ .container {
321
+ max-width: 1700px;
322
+ padding: 0 2rem;
323
+ }
324
+
325
+ /* Footer */
326
+ .tsd-generator {
327
+ border-top: 1px solid var(--color-accent);
328
+ padding-top: 1rem;
329
+ padding-bottom: 1rem;
330
+ max-height: 3.5rem;
331
+ }
332
+
333
+ .tsd-generator > p {
334
+ margin-top: 0;
335
+ margin-bottom: 0;
336
+ padding: 0 1rem;
337
+ }
338
+
339
+ .container-main {
340
+ margin: 0 auto;
341
+ /* toolbar, footer, margin */
342
+ min-height: calc(100vh - 41px - 56px - 4rem);
343
+ }
344
+
345
+ @keyframes fade-in {
346
+ from {
347
+ opacity: 0;
348
+ }
349
+ to {
350
+ opacity: 1;
351
+ }
352
+ }
353
+ @keyframes fade-out {
354
+ from {
355
+ opacity: 1;
356
+ visibility: visible;
357
+ }
358
+ to {
359
+ opacity: 0;
360
+ }
361
+ }
362
+ @keyframes fade-in-delayed {
363
+ 0% {
364
+ opacity: 0;
365
+ }
366
+ 33% {
367
+ opacity: 0;
368
+ }
369
+ 100% {
370
+ opacity: 1;
371
+ }
372
+ }
373
+ @keyframes fade-out-delayed {
374
+ 0% {
375
+ opacity: 1;
376
+ visibility: visible;
377
+ }
378
+ 66% {
379
+ opacity: 0;
380
+ }
381
+ 100% {
382
+ opacity: 0;
383
+ }
384
+ }
385
+ @keyframes pop-in-from-right {
386
+ from {
387
+ transform: translate(100%, 0);
388
+ }
389
+ to {
390
+ transform: translate(0, 0);
391
+ }
392
+ }
393
+ @keyframes pop-out-to-right {
394
+ from {
395
+ transform: translate(0, 0);
396
+ visibility: visible;
397
+ }
398
+ to {
399
+ transform: translate(100%, 0);
400
+ }
401
+ }
402
+ body {
403
+ background: var(--color-background);
404
+ font-family: "Segoe UI", sans-serif;
405
+ font-size: 16px;
406
+ color: var(--color-text);
407
+ }
408
+
409
+ a {
410
+ color: var(--color-link);
411
+ text-decoration: none;
412
+ }
413
+ a:hover {
414
+ text-decoration: underline;
415
+ }
416
+ a.external[target="_blank"] {
417
+ background-image: var(--external-icon);
418
+ background-position: top 3px right;
419
+ background-repeat: no-repeat;
420
+ padding-right: 13px;
421
+ }
422
+
423
+ code,
424
+ pre {
425
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
426
+ padding: 0.2em;
427
+ margin: 0;
428
+ font-size: 0.875rem;
429
+ border-radius: 0.8em;
430
+ }
431
+
432
+ pre {
433
+ position: relative;
434
+ white-space: pre;
435
+ white-space: pre-wrap;
436
+ word-wrap: break-word;
437
+ padding: 10px;
438
+ border: 1px solid var(--color-accent);
439
+ }
440
+ pre code {
441
+ padding: 0;
442
+ font-size: 100%;
443
+ }
444
+ pre > button {
445
+ position: absolute;
446
+ top: 10px;
447
+ right: 10px;
448
+ opacity: 0;
449
+ transition: opacity 0.1s;
450
+ box-sizing: border-box;
451
+ }
452
+ pre:hover > button,
453
+ pre > button.visible {
454
+ opacity: 1;
455
+ }
456
+
457
+ blockquote {
458
+ margin: 1em 0;
459
+ padding-left: 1em;
460
+ border-left: 4px solid gray;
461
+ }
462
+
463
+ .tsd-typography {
464
+ line-height: 1.333em;
465
+ }
466
+ .tsd-typography ul {
467
+ list-style: square;
468
+ padding: 0 0 0 20px;
469
+ margin: 0;
470
+ }
471
+ .tsd-typography h4,
472
+ .tsd-typography .tsd-index-panel h3,
473
+ .tsd-index-panel .tsd-typography h3,
474
+ .tsd-typography h5,
475
+ .tsd-typography h6 {
476
+ font-size: 1em;
477
+ margin: 0;
478
+ }
479
+ .tsd-typography h5,
480
+ .tsd-typography h6 {
481
+ font-weight: normal;
482
+ }
483
+ .tsd-typography p,
484
+ .tsd-typography ul,
485
+ .tsd-typography ol {
486
+ margin: 1em 0;
487
+ }
488
+
489
+ .tsd-breadcrumb {
490
+ margin: 0;
491
+ padding: 0;
492
+ color: var(--color-text-aside);
493
+ }
494
+ .tsd-breadcrumb a {
495
+ color: var(--color-text-aside);
496
+ text-decoration: none;
497
+ }
498
+ .tsd-breadcrumb a:hover {
499
+ text-decoration: underline;
500
+ }
501
+ .tsd-breadcrumb li {
502
+ display: inline;
503
+ }
504
+ .tsd-breadcrumb li:after {
505
+ content: " / ";
506
+ }
507
+
508
+ .tsd-comment-tags {
509
+ display: flex;
510
+ flex-direction: column;
511
+ }
512
+ dl.tsd-comment-tag-group {
513
+ display: flex;
514
+ align-items: center;
515
+ overflow: hidden;
516
+ margin: 0.5em 0;
517
+ }
518
+ dl.tsd-comment-tag-group dt {
519
+ display: flex;
520
+ margin-right: 0.5em;
521
+ font-size: 0.875em;
522
+ font-weight: normal;
523
+ }
524
+ dl.tsd-comment-tag-group dd {
525
+ margin: 0;
526
+ }
527
+ code.tsd-tag {
528
+ padding: 0.25em 0.4em;
529
+ border: 0.1em solid var(--color-accent);
530
+ margin-right: 0.25em;
531
+ font-size: 70%;
532
+ }
533
+ h1 code.tsd-tag:first-of-type {
534
+ margin-left: 0.25em;
535
+ }
536
+
537
+ dl.tsd-comment-tag-group dd:before,
538
+ dl.tsd-comment-tag-group dd:after {
539
+ content: " ";
540
+ }
541
+ dl.tsd-comment-tag-group dd pre,
542
+ dl.tsd-comment-tag-group dd:after {
543
+ clear: both;
544
+ }
545
+ dl.tsd-comment-tag-group p {
546
+ margin: 0;
547
+ }
548
+
549
+ .tsd-panel.tsd-comment .lead {
550
+ font-size: 1.1em;
551
+ line-height: 1.333em;
552
+ margin-bottom: 2em;
553
+ }
554
+ .tsd-panel.tsd-comment .lead:last-child {
555
+ margin-bottom: 0;
556
+ }
557
+
558
+ .tsd-filter-visibility h4 {
559
+ font-size: 1rem;
560
+ padding-top: 0.75rem;
561
+ padding-bottom: 0.5rem;
562
+ margin: 0;
563
+ }
564
+ .tsd-filter-item:not(:last-child) {
565
+ margin-bottom: 0.5rem;
566
+ }
567
+ .tsd-filter-input {
568
+ display: flex;
569
+ width: fit-content;
570
+ width: -moz-fit-content;
571
+ align-items: center;
572
+ user-select: none;
573
+ -webkit-user-select: none;
574
+ -moz-user-select: none;
575
+ -ms-user-select: none;
576
+ cursor: pointer;
577
+ }
578
+ .tsd-filter-input input[type="checkbox"] {
579
+ cursor: pointer;
580
+ position: absolute;
581
+ width: 1.5em;
582
+ height: 1.5em;
583
+ opacity: 0;
584
+ }
585
+ .tsd-filter-input input[type="checkbox"]:disabled {
586
+ pointer-events: none;
587
+ }
588
+ .tsd-filter-input svg {
589
+ cursor: pointer;
590
+ width: 1.5em;
591
+ height: 1.5em;
592
+ margin-right: 0.5em;
593
+ border-radius: 0.33em;
594
+ /* Leaving this at full opacity breaks event listeners on Firefox.
595
+ Don't remove unless you know what you're doing. */
596
+ opacity: 0.99;
597
+ }
598
+ .tsd-filter-input input[type="checkbox"]:focus + svg {
599
+ transform: scale(0.95);
600
+ }
601
+ .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
602
+ transform: scale(1);
603
+ }
604
+ .tsd-checkbox-background {
605
+ fill: var(--color-accent);
606
+ }
607
+ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
608
+ stroke: var(--color-text);
609
+ }
610
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
611
+ fill: var(--color-background);
612
+ stroke: var(--color-accent);
613
+ stroke-width: 0.25rem;
614
+ }
615
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
616
+ stroke: var(--color-accent);
617
+ }
618
+
619
+ .tsd-theme-toggle {
620
+ padding-top: 0.75rem;
621
+ }
622
+ .tsd-theme-toggle > h4 {
623
+ display: inline;
624
+ vertical-align: middle;
625
+ margin-right: 0.75rem;
626
+ }
627
+
628
+ .tsd-hierarchy {
629
+ list-style: square;
630
+ margin: 0;
631
+ }
632
+ .tsd-hierarchy .target {
633
+ font-weight: bold;
634
+ }
635
+
636
+ .tsd-panel-group.tsd-index-group {
637
+ margin-bottom: 0;
638
+ }
639
+ .tsd-index-panel .tsd-index-list {
640
+ list-style: none;
641
+ line-height: 1.333em;
642
+ margin: 0;
643
+ padding: 0.25rem 0 0 0;
644
+ overflow: hidden;
645
+ display: grid;
646
+ grid-template-columns: repeat(3, 1fr);
647
+ column-gap: 1rem;
648
+ grid-template-rows: auto;
649
+ }
650
+ @media (max-width: 1024px) {
651
+ .tsd-index-panel .tsd-index-list {
652
+ grid-template-columns: repeat(2, 1fr);
653
+ }
654
+ }
655
+ @media (max-width: 768px) {
656
+ .tsd-index-panel .tsd-index-list {
657
+ grid-template-columns: repeat(1, 1fr);
658
+ }
659
+ }
660
+ .tsd-index-panel .tsd-index-list li {
661
+ -webkit-page-break-inside: avoid;
662
+ -moz-page-break-inside: avoid;
663
+ -ms-page-break-inside: avoid;
664
+ -o-page-break-inside: avoid;
665
+ page-break-inside: avoid;
666
+ }
667
+
668
+ .tsd-flag {
669
+ display: inline-block;
670
+ padding: 0.25em 0.4em;
671
+ border-radius: 4px;
672
+ color: var(--color-comment-tag-text);
673
+ background-color: var(--color-comment-tag);
674
+ text-indent: 0;
675
+ font-size: 75%;
676
+ line-height: 1;
677
+ font-weight: normal;
678
+ }
679
+
680
+ .tsd-anchor {
681
+ position: relative;
682
+ top: -100px;
683
+ }
684
+
685
+ .tsd-member {
686
+ position: relative;
687
+ }
688
+ .tsd-member .tsd-anchor + h3 {
689
+ display: flex;
690
+ align-items: center;
691
+ margin-top: 0;
692
+ margin-bottom: 0;
693
+ border-bottom: none;
694
+ }
695
+
696
+ .tsd-navigation.settings {
697
+ margin: 1rem 0;
698
+ }
699
+ .tsd-navigation > a,
700
+ .tsd-navigation .tsd-accordion-summary {
701
+ width: calc(100% - 0.5rem);
702
+ }
703
+ .tsd-navigation a,
704
+ .tsd-navigation summary > span,
705
+ .tsd-page-navigation a {
706
+ display: inline-flex;
707
+ align-items: center;
708
+ padding: 0.25rem;
709
+ color: var(--color-text);
710
+ text-decoration: none;
711
+ box-sizing: border-box;
712
+ }
713
+ .tsd-navigation a.current,
714
+ .tsd-page-navigation a.current {
715
+ background: var(--color-active-menu-item);
716
+ }
717
+ .tsd-navigation a:hover,
718
+ .tsd-page-navigation a:hover {
719
+ text-decoration: underline;
720
+ }
721
+ .tsd-navigation ul,
722
+ .tsd-page-navigation ul {
723
+ margin-top: 0;
724
+ margin-bottom: 0;
725
+ padding: 0;
726
+ list-style: none;
727
+ }
728
+ .tsd-navigation li,
729
+ .tsd-page-navigation li {
730
+ padding: 0;
731
+ max-width: 100%;
732
+ }
733
+ .tsd-nested-navigation {
734
+ margin-left: 3rem;
735
+ }
736
+ .tsd-nested-navigation > li > details {
737
+ margin-left: -1.5rem;
738
+ }
739
+ .tsd-small-nested-navigation {
740
+ margin-left: 1.5rem;
741
+ }
742
+ .tsd-small-nested-navigation > li > details {
743
+ margin-left: -1.5rem;
744
+ }
745
+
746
+ .tsd-nested-navigation > li > a,
747
+ .tsd-nested-navigation > li > span {
748
+ width: calc(100% - 1.75rem - 0.5rem);
749
+ }
750
+
751
+ .tsd-page-navigation ul {
752
+ padding-left: 1.75rem;
753
+ }
754
+
755
+ #tsd-sidebar-links a {
756
+ margin-top: 0;
757
+ margin-bottom: 0.5rem;
758
+ line-height: 1.25rem;
759
+ }
760
+ #tsd-sidebar-links a:last-of-type {
761
+ margin-bottom: 0;
762
+ }
763
+
764
+ a.tsd-index-link {
765
+ padding: 0.25rem 0 !important;
766
+ font-size: 1rem;
767
+ line-height: 1.25rem;
768
+ display: inline-flex;
769
+ align-items: center;
770
+ color: var(--color-text);
771
+ }
772
+ .tsd-accordion-summary {
773
+ list-style-type: none; /* hide marker on non-safari */
774
+ outline: none; /* broken on safari, so just hide it */
775
+ }
776
+ .tsd-accordion-summary::-webkit-details-marker {
777
+ display: none; /* hide marker on safari */
778
+ }
779
+ .tsd-accordion-summary,
780
+ .tsd-accordion-summary a {
781
+ user-select: none;
782
+ -moz-user-select: none;
783
+ -webkit-user-select: none;
784
+ -ms-user-select: none;
785
+
786
+ cursor: pointer;
787
+ }
788
+ .tsd-accordion-summary a {
789
+ width: calc(100% - 1.5rem);
790
+ }
791
+ .tsd-accordion-summary > * {
792
+ margin-top: 0;
793
+ margin-bottom: 0;
794
+ padding-top: 0;
795
+ padding-bottom: 0;
796
+ }
797
+ .tsd-index-accordion .tsd-accordion-summary > svg {
798
+ margin-left: 0.25rem;
799
+ }
800
+ .tsd-index-content > :not(:first-child) {
801
+ margin-top: 0.75rem;
802
+ }
803
+ .tsd-index-heading {
804
+ margin-top: 1.5rem;
805
+ margin-bottom: 0.75rem;
806
+ }
807
+
808
+ .tsd-kind-icon {
809
+ margin-right: 0.5rem;
810
+ width: 1.25rem;
811
+ height: 1.25rem;
812
+ min-width: 1.25rem;
813
+ min-height: 1.25rem;
814
+ }
815
+ .tsd-kind-icon path {
816
+ transform-origin: center;
817
+ transform: scale(1.1);
818
+ }
819
+ .tsd-signature > .tsd-kind-icon {
820
+ margin-right: 0.8rem;
821
+ }
822
+
823
+ .tsd-panel {
824
+ margin-bottom: 2.5rem;
825
+ }
826
+ .tsd-panel.tsd-member {
827
+ margin-bottom: 4rem;
828
+ }
829
+ .tsd-panel:empty {
830
+ display: none;
831
+ }
832
+ .tsd-panel > h1,
833
+ .tsd-panel > h2,
834
+ .tsd-panel > h3 {
835
+ margin: 1.5rem -1.5rem 0.75rem -1.5rem;
836
+ padding: 0 1.5rem 0.75rem 1.5rem;
837
+ }
838
+ .tsd-panel > h1.tsd-before-signature,
839
+ .tsd-panel > h2.tsd-before-signature,
840
+ .tsd-panel > h3.tsd-before-signature {
841
+ margin-bottom: 0;
842
+ border-bottom: none;
843
+ }
844
+
845
+ .tsd-panel-group {
846
+ margin: 4rem 0;
847
+ }
848
+ .tsd-panel-group.tsd-index-group {
849
+ margin: 2rem 0;
850
+ }
851
+ .tsd-panel-group.tsd-index-group details {
852
+ margin: 2rem 0;
853
+ }
854
+
855
+ #tsd-search {
856
+ transition: background-color 0.2s;
857
+ }
858
+ #tsd-search .title {
859
+ position: relative;
860
+ z-index: 2;
861
+ }
862
+ #tsd-search .field {
863
+ position: absolute;
864
+ left: 0;
865
+ top: 0;
866
+ right: 2.5rem;
867
+ height: 100%;
868
+ }
869
+ #tsd-search .field input {
870
+ box-sizing: border-box;
871
+ position: relative;
872
+ top: -50px;
873
+ z-index: 1;
874
+ width: 100%;
875
+ padding: 0 10px;
876
+ opacity: 0;
877
+ outline: 0;
878
+ border: 0;
879
+ background: transparent;
880
+ color: var(--color-text);
881
+ }
882
+ #tsd-search .field label {
883
+ position: absolute;
884
+ overflow: hidden;
885
+ right: -40px;
886
+ }
887
+ #tsd-search .field input,
888
+ #tsd-search .title,
889
+ #tsd-toolbar-links a {
890
+ transition: opacity 0.2s;
891
+ }
892
+ #tsd-search .results {
893
+ position: absolute;
894
+ visibility: hidden;
895
+ top: 40px;
896
+ width: 100%;
897
+ margin: 0;
898
+ padding: 0;
899
+ list-style: none;
900
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
901
+ }
902
+ #tsd-search .results li {
903
+ padding: 0 10px;
904
+ background-color: var(--color-background);
905
+ }
906
+ #tsd-search .results li:nth-child(even) {
907
+ background-color: var(--color-background-secondary);
908
+ }
909
+ #tsd-search .results li.state {
910
+ display: none;
911
+ }
912
+ #tsd-search .results li.current,
913
+ #tsd-search .results li:hover {
914
+ background-color: var(--color-accent);
915
+ }
916
+ #tsd-search .results a {
917
+ display: block;
918
+ }
919
+ #tsd-search .results a:before {
920
+ top: 10px;
921
+ }
922
+ #tsd-search .results span.parent {
923
+ color: var(--color-text-aside);
924
+ font-weight: normal;
925
+ }
926
+ #tsd-search.has-focus {
927
+ background-color: var(--color-accent);
928
+ }
929
+ #tsd-search.has-focus .field input {
930
+ top: 0;
931
+ opacity: 1;
932
+ }
933
+ #tsd-search.has-focus .title,
934
+ #tsd-search.has-focus #tsd-toolbar-links a {
935
+ z-index: 0;
936
+ opacity: 0;
937
+ }
938
+ #tsd-search.has-focus .results {
939
+ visibility: visible;
940
+ }
941
+ #tsd-search.loading .results li.state.loading {
942
+ display: block;
943
+ }
944
+ #tsd-search.failure .results li.state.failure {
945
+ display: block;
946
+ }
947
+
948
+ #tsd-toolbar-links {
949
+ position: absolute;
950
+ top: 0;
951
+ right: 2rem;
952
+ height: 100%;
953
+ display: flex;
954
+ align-items: center;
955
+ justify-content: flex-end;
956
+ }
957
+ #tsd-toolbar-links a {
958
+ margin-left: 1.5rem;
959
+ }
960
+ #tsd-toolbar-links a:hover {
961
+ text-decoration: underline;
962
+ }
963
+
964
+ .tsd-signature {
965
+ margin: 0 0 1rem 0;
966
+ padding: 1rem 0.5rem;
967
+ border: 1px solid var(--color-accent);
968
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
969
+ font-size: 14px;
970
+ overflow-x: auto;
971
+ }
972
+
973
+ .tsd-signature-symbol {
974
+ color: var(--color-text-aside);
975
+ font-weight: normal;
976
+ }
977
+
978
+ .tsd-signature-type {
979
+ font-style: italic;
980
+ font-weight: normal;
981
+ }
982
+
983
+ .tsd-signatures {
984
+ padding: 0;
985
+ margin: 0 0 1em 0;
986
+ list-style-type: none;
987
+ }
988
+ .tsd-signatures .tsd-signature {
989
+ margin: 0;
990
+ border-color: var(--color-accent);
991
+ border-width: 1px 0;
992
+ transition: background-color 0.1s;
993
+ }
994
+ .tsd-description .tsd-signatures .tsd-signature {
995
+ border-width: 1px;
996
+ }
997
+
998
+ ul.tsd-parameter-list,
999
+ ul.tsd-type-parameter-list {
1000
+ list-style: square;
1001
+ margin: 0;
1002
+ padding-left: 20px;
1003
+ }
1004
+ ul.tsd-parameter-list > li.tsd-parameter-signature,
1005
+ ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1006
+ list-style: none;
1007
+ margin-left: -20px;
1008
+ }
1009
+ ul.tsd-parameter-list h5,
1010
+ ul.tsd-type-parameter-list h5 {
1011
+ font-size: 16px;
1012
+ margin: 1em 0 0.5em 0;
1013
+ }
1014
+ .tsd-sources {
1015
+ margin-top: 1rem;
1016
+ font-size: 0.875em;
1017
+ }
1018
+ .tsd-sources a {
1019
+ color: var(--color-text-aside);
1020
+ text-decoration: underline;
1021
+ }
1022
+ .tsd-sources ul {
1023
+ list-style: none;
1024
+ padding: 0;
1025
+ }
1026
+
1027
+ .tsd-page-toolbar {
1028
+ position: sticky;
1029
+ z-index: 1;
1030
+ top: 0;
1031
+ left: 0;
1032
+ width: 100%;
1033
+ color: var(--color-text);
1034
+ background: var(--color-background-secondary);
1035
+ border-bottom: 1px var(--color-accent) solid;
1036
+ transition: transform 0.3s ease-in-out;
1037
+ }
1038
+ .tsd-page-toolbar a {
1039
+ color: var(--color-text);
1040
+ text-decoration: none;
1041
+ }
1042
+ .tsd-page-toolbar a.title {
1043
+ font-weight: bold;
1044
+ }
1045
+ .tsd-page-toolbar a.title:hover {
1046
+ text-decoration: underline;
1047
+ }
1048
+ .tsd-page-toolbar .tsd-toolbar-contents {
1049
+ display: flex;
1050
+ justify-content: space-between;
1051
+ height: 2.5rem;
1052
+ margin: 0 auto;
1053
+ }
1054
+ .tsd-page-toolbar .table-cell {
1055
+ position: relative;
1056
+ white-space: nowrap;
1057
+ line-height: 40px;
1058
+ }
1059
+ .tsd-page-toolbar .table-cell:first-child {
1060
+ width: 100%;
1061
+ }
1062
+ .tsd-page-toolbar .tsd-toolbar-icon {
1063
+ box-sizing: border-box;
1064
+ line-height: 0;
1065
+ padding: 12px 0;
1066
+ }
1067
+
1068
+ .tsd-widget {
1069
+ display: inline-block;
1070
+ overflow: hidden;
1071
+ opacity: 0.8;
1072
+ height: 40px;
1073
+ transition: opacity 0.1s, background-color 0.2s;
1074
+ vertical-align: bottom;
1075
+ cursor: pointer;
1076
+ }
1077
+ .tsd-widget:hover {
1078
+ opacity: 0.9;
1079
+ }
1080
+ .tsd-widget.active {
1081
+ opacity: 1;
1082
+ background-color: var(--color-accent);
1083
+ }
1084
+ .tsd-widget.no-caption {
1085
+ width: 40px;
1086
+ }
1087
+ .tsd-widget.no-caption:before {
1088
+ margin: 0;
1089
+ }
1090
+
1091
+ .tsd-widget.options,
1092
+ .tsd-widget.menu {
1093
+ display: none;
1094
+ }
1095
+ input[type="checkbox"] + .tsd-widget:before {
1096
+ background-position: -120px 0;
1097
+ }
1098
+ input[type="checkbox"]:checked + .tsd-widget:before {
1099
+ background-position: -160px 0;
1100
+ }
1101
+
1102
+ img {
1103
+ max-width: 100%;
1104
+ }
1105
+
1106
+ .tsd-anchor-icon {
1107
+ display: inline-flex;
1108
+ align-items: center;
1109
+ margin-left: 0.5rem;
1110
+ vertical-align: middle;
1111
+ color: var(--color-text);
1112
+ }
1113
+
1114
+ .tsd-anchor-icon svg {
1115
+ width: 1em;
1116
+ height: 1em;
1117
+ visibility: hidden;
1118
+ }
1119
+
1120
+ .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1121
+ visibility: visible;
1122
+ }
1123
+
1124
+ .deprecated {
1125
+ text-decoration: line-through;
1126
+ }
1127
+
1128
+ .warning {
1129
+ padding: 1rem;
1130
+ color: var(--color-warning-text);
1131
+ background: var(--color-background-warning);
1132
+ }
1133
+
1134
+ .tsd-kind-project {
1135
+ color: var(--color-ts-project);
1136
+ }
1137
+ .tsd-kind-module {
1138
+ color: var(--color-ts-module);
1139
+ }
1140
+ .tsd-kind-namespace {
1141
+ color: var(--color-ts-namespace);
1142
+ }
1143
+ .tsd-kind-enum {
1144
+ color: var(--color-ts-enum);
1145
+ }
1146
+ .tsd-kind-enum-member {
1147
+ color: var(--color-ts-enum-member);
1148
+ }
1149
+ .tsd-kind-variable {
1150
+ color: var(--color-ts-variable);
1151
+ }
1152
+ .tsd-kind-function {
1153
+ color: var(--color-ts-function);
1154
+ }
1155
+ .tsd-kind-class {
1156
+ color: var(--color-ts-class);
1157
+ }
1158
+ .tsd-kind-interface {
1159
+ color: var(--color-ts-interface);
1160
+ }
1161
+ .tsd-kind-constructor {
1162
+ color: var(--color-ts-constructor);
1163
+ }
1164
+ .tsd-kind-property {
1165
+ color: var(--color-ts-property);
1166
+ }
1167
+ .tsd-kind-method {
1168
+ color: var(--color-ts-method);
1169
+ }
1170
+ .tsd-kind-call-signature {
1171
+ color: var(--color-ts-call-signature);
1172
+ }
1173
+ .tsd-kind-index-signature {
1174
+ color: var(--color-ts-index-signature);
1175
+ }
1176
+ .tsd-kind-constructor-signature {
1177
+ color: var(--color-ts-constructor-signature);
1178
+ }
1179
+ .tsd-kind-parameter {
1180
+ color: var(--color-ts-parameter);
1181
+ }
1182
+ .tsd-kind-type-literal {
1183
+ color: var(--color-ts-type-literal);
1184
+ }
1185
+ .tsd-kind-type-parameter {
1186
+ color: var(--color-ts-type-parameter);
1187
+ }
1188
+ .tsd-kind-accessor {
1189
+ color: var(--color-ts-accessor);
1190
+ }
1191
+ .tsd-kind-get-signature {
1192
+ color: var(--color-ts-get-signature);
1193
+ }
1194
+ .tsd-kind-set-signature {
1195
+ color: var(--color-ts-set-signature);
1196
+ }
1197
+ .tsd-kind-type-alias {
1198
+ color: var(--color-ts-type-alias);
1199
+ }
1200
+
1201
+ /* if we have a kind icon, don't color the text by kind */
1202
+ .tsd-kind-icon ~ span {
1203
+ color: var(--color-text);
1204
+ }
1205
+
1206
+ * {
1207
+ scrollbar-width: thin;
1208
+ scrollbar-color: var(--color-accent) var(--color-icon-background);
1209
+ }
1210
+
1211
+ *::-webkit-scrollbar {
1212
+ width: 0.75rem;
1213
+ }
1214
+
1215
+ *::-webkit-scrollbar-track {
1216
+ background: var(--color-icon-background);
1217
+ }
1218
+
1219
+ *::-webkit-scrollbar-thumb {
1220
+ background-color: var(--color-accent);
1221
+ border-radius: 999rem;
1222
+ border: 0.25rem solid var(--color-icon-background);
1223
+ }
1224
+
1225
+ /* mobile */
1226
+ @media (max-width: 769px) {
1227
+ .tsd-widget.options,
1228
+ .tsd-widget.menu {
1229
+ display: inline-block;
1230
+ }
1231
+
1232
+ .container-main {
1233
+ display: flex;
1234
+ }
1235
+ html .col-content {
1236
+ float: none;
1237
+ max-width: 100%;
1238
+ width: 100%;
1239
+ }
1240
+ html .col-sidebar {
1241
+ position: fixed !important;
1242
+ overflow-y: auto;
1243
+ -webkit-overflow-scrolling: touch;
1244
+ z-index: 1024;
1245
+ top: 0 !important;
1246
+ bottom: 0 !important;
1247
+ left: auto !important;
1248
+ right: 0 !important;
1249
+ padding: 1.5rem 1.5rem 0 0;
1250
+ width: 75vw;
1251
+ visibility: hidden;
1252
+ background-color: var(--color-background);
1253
+ transform: translate(100%, 0);
1254
+ }
1255
+ html .col-sidebar > *:last-child {
1256
+ padding-bottom: 20px;
1257
+ }
1258
+ html .overlay {
1259
+ content: "";
1260
+ display: block;
1261
+ position: fixed;
1262
+ z-index: 1023;
1263
+ top: 0;
1264
+ left: 0;
1265
+ right: 0;
1266
+ bottom: 0;
1267
+ background-color: rgba(0, 0, 0, 0.75);
1268
+ visibility: hidden;
1269
+ }
1270
+
1271
+ .to-has-menu .overlay {
1272
+ animation: fade-in 0.4s;
1273
+ }
1274
+
1275
+ .to-has-menu .col-sidebar {
1276
+ animation: pop-in-from-right 0.4s;
1277
+ }
1278
+
1279
+ .from-has-menu .overlay {
1280
+ animation: fade-out 0.4s;
1281
+ }
1282
+
1283
+ .from-has-menu .col-sidebar {
1284
+ animation: pop-out-to-right 0.4s;
1285
+ }
1286
+
1287
+ .has-menu body {
1288
+ overflow: hidden;
1289
+ }
1290
+ .has-menu .overlay {
1291
+ visibility: visible;
1292
+ }
1293
+ .has-menu .col-sidebar {
1294
+ visibility: visible;
1295
+ transform: translate(0, 0);
1296
+ display: flex;
1297
+ flex-direction: column;
1298
+ gap: 1.5rem;
1299
+ max-height: 100vh;
1300
+ padding: 1rem 2rem;
1301
+ }
1302
+ .has-menu .tsd-navigation {
1303
+ max-height: 100%;
1304
+ }
1305
+ }
1306
+
1307
+ /* one sidebar */
1308
+ @media (min-width: 770px) {
1309
+ .container-main {
1310
+ display: grid;
1311
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1312
+ grid-template-areas: "sidebar content";
1313
+ margin: 2rem auto;
1314
+ }
1315
+
1316
+ .col-sidebar {
1317
+ grid-area: sidebar;
1318
+ }
1319
+ .col-content {
1320
+ grid-area: content;
1321
+ padding: 0 1rem;
1322
+ }
1323
+ }
1324
+ @media (min-width: 770px) and (max-width: 1399px) {
1325
+ .col-sidebar {
1326
+ max-height: calc(100vh - 2rem - 42px);
1327
+ overflow: auto;
1328
+ position: sticky;
1329
+ top: 42px;
1330
+ padding-top: 1rem;
1331
+ }
1332
+ .site-menu {
1333
+ margin-top: 1rem;
1334
+ }
1335
+ }
1336
+
1337
+ /* two sidebars */
1338
+ @media (min-width: 1200px) {
1339
+ .container-main {
1340
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem);
1341
+ grid-template-areas: "sidebar content toc";
1342
+ }
1343
+
1344
+ .col-sidebar {
1345
+ display: contents;
1346
+ }
1347
+
1348
+ .page-menu {
1349
+ grid-area: toc;
1350
+ padding-left: 1rem;
1351
+ }
1352
+ .site-menu {
1353
+ grid-area: sidebar;
1354
+ }
1355
+
1356
+ .site-menu {
1357
+ margin-top: 1rem 0;
1358
+ }
1359
+
1360
+ .page-menu,
1361
+ .site-menu {
1362
+ max-height: calc(100vh - 2rem - 42px);
1363
+ overflow: auto;
1364
+ position: sticky;
1365
+ top: 42px;
1366
+ }
1367
+ }