pimath 0.0.113 → 0.0.115

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 (93) hide show
  1. package/dist/pi.js +149 -44
  2. package/dist/pi.js.map +1 -1
  3. package/dist/pi.min.js +1 -1
  4. package/dist/pi.min.js.map +1 -1
  5. package/docs/assets/highlight.css +3 -3
  6. package/docs/assets/main.js +58 -52
  7. package/docs/assets/search.js +1 -1
  8. package/docs/assets/style.css +488 -621
  9. package/docs/classes/Logicalset.Logicalset.html +212 -0
  10. package/docs/classes/Polynom.Rational.html +388 -4
  11. package/docs/classes/Vector-1.Vector.html +448 -0
  12. package/docs/classes/Vector.Point.html +342 -1
  13. package/docs/classes/algebra_equation.Equation.html +749 -22
  14. package/docs/classes/algebra_linearSystem.LinearSystem.html +397 -1
  15. package/docs/classes/algebra_monom.Monom.html +906 -110
  16. package/docs/classes/algebra_polynom.Polynom.html +1258 -28
  17. package/docs/classes/coefficients_fraction.Fraction.html +929 -17
  18. package/docs/classes/expressions_numexp.NumExp.html +236 -1
  19. package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +317 -1
  20. package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +285 -1
  21. package/docs/classes/geometry_circle.Circle.html +476 -3
  22. package/docs/classes/geometry_line.Line.html +719 -3
  23. package/docs/classes/geometry_triangle.Triangle.html +417 -14
  24. package/docs/classes/numeric.Numeric.html +263 -14
  25. package/docs/classes/shutingyard.Shutingyard.html +246 -16
  26. package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +88 -1
  27. package/docs/enums/geometry_line.LinePropriety.html +102 -1
  28. package/docs/enums/shutingyard.ShutingyardMode.html +102 -1
  29. package/docs/enums/shutingyard.ShutingyardType.html +116 -1
  30. package/docs/index.html +56 -2
  31. package/docs/interfaces/algebra_equation.ISolution.html +109 -3
  32. package/docs/interfaces/algebra_polynom.IEuclidian.html +92 -1
  33. package/docs/interfaces/geometry_triangle.remarquableLines.html +150 -1
  34. package/docs/modules/Logicalset.html +74 -3
  35. package/docs/modules/Polynom.html +74 -3
  36. package/docs/modules/Vector-1.html +74 -0
  37. package/docs/modules/Vector.html +74 -3
  38. package/docs/modules/algebra_equation.html +81 -1
  39. package/docs/modules/algebra_linearSystem.html +71 -1
  40. package/docs/modules/algebra_monom.html +76 -1
  41. package/docs/modules/algebra_polynom.html +81 -1
  42. package/docs/modules/coefficients_fraction.html +76 -1
  43. package/docs/modules/expressions_numexp.html +71 -1
  44. package/docs/modules/expressions_polynomexp.html +73 -1
  45. package/docs/modules/geometry_circle.html +71 -1
  46. package/docs/modules/geometry_line.html +76 -1
  47. package/docs/modules/geometry_triangle.html +76 -1
  48. package/docs/modules/numeric.html +71 -1
  49. package/docs/modules/shutingyard.html +90 -1
  50. package/docs/modules.html +76 -1
  51. package/docs/types/algebra_monom.literalType.html +70 -0
  52. package/docs/types/algebra_polynom.PolynomParsingType.html +66 -0
  53. package/docs/types/coefficients_fraction.FractionParsingType.html +65 -0
  54. package/docs/types/shutingyard.Token.html +76 -0
  55. package/docs/types/shutingyard.tokenType.html +81 -0
  56. package/docs/variables/shutingyard.tokenConstant.html +74 -0
  57. package/esm/index.js.map +1 -1
  58. package/esm/maths/geometry/line.d.ts +21 -17
  59. package/esm/maths/geometry/line.js +68 -40
  60. package/esm/maths/geometry/line.js.map +1 -1
  61. package/esm/maths/geometry/point.d.ts +2 -0
  62. package/esm/maths/geometry/point.js +3 -0
  63. package/esm/maths/geometry/point.js.map +1 -1
  64. package/esm/maths/geometry/vector.d.ts +3 -1
  65. package/esm/maths/geometry/vector.js +6 -4
  66. package/esm/maths/geometry/vector.js.map +1 -1
  67. package/esm/maths/randomization/random.d.ts +3 -1
  68. package/esm/maths/randomization/random.js +5 -0
  69. package/esm/maths/randomization/random.js.map +1 -1
  70. package/esm/maths/randomization/rndGeometryLine.js.map +1 -1
  71. package/esm/maths/randomization/rndGeometryPoint.d.ts +12 -0
  72. package/esm/maths/randomization/rndGeometryPoint.js +61 -0
  73. package/esm/maths/randomization/rndGeometryPoint.js.map +1 -0
  74. package/esm/maths/randomization/rndTypes.d.ts +6 -0
  75. package/package.json +8 -8
  76. package/src/index.ts +1 -0
  77. package/src/maths/geometry/line.ts +116 -76
  78. package/src/maths/geometry/point.ts +4 -0
  79. package/src/maths/geometry/vector.ts +8 -5
  80. package/src/maths/randomization/random.ts +14 -1
  81. package/src/maths/randomization/rndGeometryLine.ts +5 -6
  82. package/src/maths/randomization/rndGeometryPoint.ts +69 -0
  83. package/src/maths/randomization/rndTypes.ts +8 -0
  84. package/tests/geometry/line.test.ts +13 -0
  85. package/docs/assets/icons.css +0 -1043
  86. package/docs/assets/icons.png +0 -0
  87. package/docs/assets/icons@2x.png +0 -0
  88. package/docs/assets/widgets.png +0 -0
  89. package/docs/assets/widgets@2x.png +0 -0
  90. package/docs/classes/Logicalset.Logicalset-1.html +0 -5
  91. package/docs/classes/Vector.Vector-1.html +0 -1
  92. package/docs/classes/coefficients_nthroot.NthRoot.html +0 -3
  93. package/docs/modules/coefficients_nthroot.html +0 -1
@@ -1,155 +1,150 @@
1
- @import url("./icons.css");
2
-
3
1
  :root {
4
2
  /* Light */
5
- --light-color-background: #fcfcfc;
6
- --light-color-secondary-background: #fff;
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;
7
9
  --light-color-text: #222;
8
10
  --light-color-text-aside: #707070;
9
11
  --light-color-link: #4da6ff;
10
- --light-color-menu-divider: #eee;
11
- --light-color-menu-divider-focus: #000;
12
- --light-color-menu-label: #707070;
13
- --light-color-panel: var(--light-color-secondary-background);
14
- --light-color-panel-divider: #eee;
15
- --light-color-comment-tag: #707070;
16
- --light-color-comment-tag-text: #fff;
17
- --light-color-ts: #9600ff;
18
- --light-color-ts-interface: #647f1b;
19
- --light-color-ts-enum: #937210;
20
- --light-color-ts-class: #0672de;
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;
21
18
  --light-color-ts-private: #707070;
22
- --light-color-toolbar: #fff;
23
- --light-color-toolbar-text: #333;
24
- --light-icon-filter: invert(0);
19
+ --light-color-ts-variable: #4d68ff;
25
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;
26
22
 
27
23
  /* Dark */
28
- --dark-color-background: #36393f;
29
- --dark-color-secondary-background: #2f3136;
30
- --dark-color-text: #ffffff;
31
- --dark-color-text-aside: #e6e4e4;
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
32
  --dark-color-link: #00aff4;
33
- --dark-color-menu-divider: #eee;
34
- --dark-color-menu-divider-focus: #000;
35
- --dark-color-menu-label: #707070;
36
- --dark-color-panel: var(--dark-color-secondary-background);
37
- --dark-color-panel-divider: #818181;
38
- --dark-color-comment-tag: #dcddde;
39
- --dark-color-comment-tag-text: #2f3136;
40
- --dark-color-ts: #c97dff;
41
- --dark-color-ts-interface: #9cbe3c;
42
- --dark-color-ts-enum: #d6ab29;
43
- --dark-color-ts-class: #3695f3;
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;
44
39
  --dark-color-ts-private: #e2e2e2;
45
- --dark-color-toolbar: #34373c;
46
- --dark-color-toolbar-text: #ffffff;
47
- --dark-icon-filter: invert(1);
40
+ --dark-color-ts-variable: #4d68ff;
48
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;
49
43
  }
50
44
 
51
45
  @media (prefers-color-scheme: light) {
52
46
  :root {
53
47
  --color-background: var(--light-color-background);
54
- --color-secondary-background: var(--light-color-secondary-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);
55
53
  --color-text: var(--light-color-text);
56
54
  --color-text-aside: var(--light-color-text-aside);
57
55
  --color-link: var(--light-color-link);
58
- --color-menu-divider: var(--light-color-menu-divider);
59
- --color-menu-divider-focus: var(--light-color-menu-divider-focus);
60
- --color-menu-label: var(--light-color-menu-label);
61
- --color-panel: var(--light-color-panel);
62
- --color-panel-divider: var(--light-color-panel-divider);
63
- --color-comment-tag: var(--light-color-comment-tag);
64
- --color-comment-tag-text: var(--light-color-comment-tag-text);
65
56
  --color-ts: var(--light-color-ts);
66
57
  --color-ts-interface: var(--light-color-ts-interface);
67
58
  --color-ts-enum: var(--light-color-ts-enum);
68
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);
69
62
  --color-ts-private: var(--light-color-ts-private);
70
- --color-toolbar: var(--light-color-toolbar);
71
- --color-toolbar-text: var(--light-color-toolbar-text);
72
- --icon-filter: var(--light-icon-filter);
63
+ --color-ts-variable: var(--light-color-ts-variable);
73
64
  --external-icon: var(--light-external-icon);
65
+ --color-scheme: var(--light-color-scheme);
74
66
  }
75
67
  }
76
68
 
77
69
  @media (prefers-color-scheme: dark) {
78
70
  :root {
79
71
  --color-background: var(--dark-color-background);
80
- --color-secondary-background: var(--dark-color-secondary-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);
81
77
  --color-text: var(--dark-color-text);
82
78
  --color-text-aside: var(--dark-color-text-aside);
83
79
  --color-link: var(--dark-color-link);
84
- --color-menu-divider: var(--dark-color-menu-divider);
85
- --color-menu-divider-focus: var(--dark-color-menu-divider-focus);
86
- --color-menu-label: var(--dark-color-menu-label);
87
- --color-panel: var(--dark-color-panel);
88
- --color-panel-divider: var(--dark-color-panel-divider);
89
- --color-comment-tag: var(--dark-color-comment-tag);
90
- --color-comment-tag-text: var(--dark-color-comment-tag-text);
91
80
  --color-ts: var(--dark-color-ts);
92
81
  --color-ts-interface: var(--dark-color-ts-interface);
93
82
  --color-ts-enum: var(--dark-color-ts-enum);
94
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);
95
86
  --color-ts-private: var(--dark-color-ts-private);
96
- --color-toolbar: var(--dark-color-toolbar);
97
- --color-toolbar-text: var(--dark-color-toolbar-text);
98
- --icon-filter: var(--dark-icon-filter);
87
+ --color-ts-variable: var(--dark-color-ts-variable);
99
88
  --external-icon: var(--dark-external-icon);
89
+ --color-scheme: var(--dark-color-scheme);
100
90
  }
101
91
  }
102
92
 
93
+ html {
94
+ color-scheme: var(--color-scheme);
95
+ }
96
+
103
97
  body {
104
98
  margin: 0;
105
99
  }
106
100
 
107
- body.light {
101
+ :root[data-theme="light"] {
108
102
  --color-background: var(--light-color-background);
109
- --color-secondary-background: var(--light-color-secondary-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);
110
108
  --color-text: var(--light-color-text);
111
109
  --color-text-aside: var(--light-color-text-aside);
112
110
  --color-link: var(--light-color-link);
113
- --color-menu-divider: var(--light-color-menu-divider);
114
- --color-menu-divider-focus: var(--light-color-menu-divider-focus);
115
- --color-menu-label: var(--light-color-menu-label);
116
- --color-panel: var(--light-color-panel);
117
- --color-panel-divider: var(--light-color-panel-divider);
118
- --color-comment-tag: var(--light-color-comment-tag);
119
- --color-comment-tag-text: var(--light-color-comment-tag-text);
120
111
  --color-ts: var(--light-color-ts);
121
112
  --color-ts-interface: var(--light-color-ts-interface);
122
113
  --color-ts-enum: var(--light-color-ts-enum);
123
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);
124
117
  --color-ts-private: var(--light-color-ts-private);
125
- --color-toolbar: var(--light-color-toolbar);
126
- --color-toolbar-text: var(--light-color-toolbar-text);
127
- --icon-filter: var(--light-icon-filter);
118
+ --color-ts-variable: var(--light-color-ts-variable);
128
119
  --external-icon: var(--light-external-icon);
120
+ --color-scheme: var(--light-color-scheme);
129
121
  }
130
122
 
131
- body.dark {
123
+ :root[data-theme="dark"] {
132
124
  --color-background: var(--dark-color-background);
133
- --color-secondary-background: var(--dark-color-secondary-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);
134
130
  --color-text: var(--dark-color-text);
135
131
  --color-text-aside: var(--dark-color-text-aside);
136
132
  --color-link: var(--dark-color-link);
137
- --color-menu-divider: var(--dark-color-menu-divider);
138
- --color-menu-divider-focus: var(--dark-color-menu-divider-focus);
139
- --color-menu-label: var(--dark-color-menu-label);
140
- --color-panel: var(--dark-color-panel);
141
- --color-panel-divider: var(--dark-color-panel-divider);
142
- --color-comment-tag: var(--dark-color-comment-tag);
143
- --color-comment-tag-text: var(--dark-color-comment-tag-text);
144
133
  --color-ts: var(--dark-color-ts);
145
134
  --color-ts-interface: var(--dark-color-ts-interface);
146
135
  --color-ts-enum: var(--dark-color-ts-enum);
147
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);
148
139
  --color-ts-private: var(--dark-color-ts-private);
149
- --color-toolbar: var(--dark-color-toolbar);
150
- --color-toolbar-text: var(--dark-color-toolbar-text);
151
- --icon-filter: var(--dark-icon-filter);
140
+ --color-ts-variable: var(--dark-color-ts-variable);
152
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;
153
148
  }
154
149
 
155
150
  h1,
@@ -162,34 +157,37 @@ h6 {
162
157
  }
163
158
 
164
159
  h1 {
165
- font-size: 2em;
166
- margin: 0.67em 0;
160
+ font-size: 1.875rem;
161
+ margin: 0.67rem 0;
167
162
  }
168
163
 
169
164
  h2 {
170
- font-size: 1.5em;
171
- margin: 0.83em 0;
165
+ font-size: 1.5rem;
166
+ margin: 0.83rem 0;
172
167
  }
173
168
 
174
169
  h3 {
175
- font-size: 1.17em;
176
- margin: 1em 0;
170
+ font-size: 1.25rem;
171
+ margin: 1rem 0;
177
172
  }
178
173
 
179
- h4,
180
- .tsd-index-panel h3 {
181
- font-size: 1em;
182
- margin: 1.33em 0;
174
+ h4 {
175
+ font-size: 1.05rem;
176
+ margin: 1.33rem 0;
183
177
  }
184
178
 
185
179
  h5 {
186
- font-size: 0.83em;
187
- margin: 1.67em 0;
180
+ font-size: 1rem;
181
+ margin: 1.5rem 0;
188
182
  }
189
183
 
190
184
  h6 {
191
- font-size: 0.67em;
192
- margin: 2.33em 0;
185
+ font-size: 0.875rem;
186
+ margin: 2.33rem 0;
187
+ }
188
+
189
+ .uppercase {
190
+ text-transform: uppercase;
193
191
  }
194
192
 
195
193
  pre {
@@ -210,74 +208,61 @@ dd {
210
208
  }
211
209
 
212
210
  .container {
213
- max-width: 1200px;
214
- margin: 0 auto;
215
- padding: 0 40px;
211
+ max-width: 1600px;
212
+ padding: 0 2rem;
213
+ }
214
+
215
+ @media (min-width: 640px) {
216
+ .container {
217
+ padding: 0 4rem;
218
+ }
216
219
  }
217
- @media (max-width: 640px) {
220
+ @media (min-width: 1200px) {
218
221
  .container {
219
- padding: 0 20px;
222
+ padding: 0 8rem;
223
+ }
224
+ }
225
+ @media (min-width: 1600px) {
226
+ .container {
227
+ padding: 0 12rem;
220
228
  }
221
229
  }
222
230
 
223
- .container-main {
224
- padding-bottom: 200px;
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;
225
237
  }
226
238
 
227
- .row {
239
+ .tsd-generator > p {
240
+ margin-top: 0;
241
+ margin-bottom: 0;
242
+ padding: 0 1rem;
243
+ }
244
+
245
+ .container-main {
228
246
  display: flex;
247
+ justify-content: space-between;
229
248
  position: relative;
230
- margin: 0 -10px;
231
- }
232
- .row:after {
233
- visibility: hidden;
234
- display: block;
235
- content: "";
236
- clear: both;
237
- height: 0;
249
+ margin: 0 auto;
238
250
  }
239
251
 
240
252
  .col-4,
241
253
  .col-8 {
242
254
  box-sizing: border-box;
243
255
  float: left;
244
- padding: 0 10px;
256
+ padding: 2rem 1rem;
245
257
  }
246
258
 
247
259
  .col-4 {
248
- width: 33.3333333333%;
260
+ flex: 0 0 25%;
249
261
  }
250
262
  .col-8 {
251
- width: 66.6666666667%;
252
- }
253
-
254
- ul.tsd-descriptions > li > :first-child,
255
- .tsd-panel > :first-child,
256
- .col-8 > :first-child,
257
- .col-4 > :first-child,
258
- ul.tsd-descriptions > li > :first-child > :first-child,
259
- .tsd-panel > :first-child > :first-child,
260
- .col-8 > :first-child > :first-child,
261
- .col-4 > :first-child > :first-child,
262
- ul.tsd-descriptions > li > :first-child > :first-child > :first-child,
263
- .tsd-panel > :first-child > :first-child > :first-child,
264
- .col-8 > :first-child > :first-child > :first-child,
265
- .col-4 > :first-child > :first-child > :first-child {
266
- margin-top: 0;
267
- }
268
- ul.tsd-descriptions > li > :last-child,
269
- .tsd-panel > :last-child,
270
- .col-8 > :last-child,
271
- .col-4 > :last-child,
272
- ul.tsd-descriptions > li > :last-child > :last-child,
273
- .tsd-panel > :last-child > :last-child,
274
- .col-8 > :last-child > :last-child,
275
- .col-4 > :last-child > :last-child,
276
- ul.tsd-descriptions > li > :last-child > :last-child > :last-child,
277
- .tsd-panel > :last-child > :last-child > :last-child,
278
- .col-8 > :last-child > :last-child > :last-child,
279
- .col-4 > :last-child > :last-child > :last-child {
280
- margin-bottom: 0;
263
+ flex: 1 0;
264
+ flex-wrap: wrap;
265
+ padding-left: 0;
281
266
  }
282
267
 
283
268
  @keyframes fade-in {
@@ -379,11 +364,13 @@ pre {
379
364
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
380
365
  padding: 0.2em;
381
366
  margin: 0;
382
- font-size: 14px;
367
+ font-size: 0.875rem;
368
+ border-radius: 0.8em;
383
369
  }
384
370
 
385
371
  pre {
386
372
  padding: 10px;
373
+ border: 0.1em solid var(--color-accent);
387
374
  }
388
375
  pre code {
389
376
  padding: 0;
@@ -422,36 +409,26 @@ blockquote {
422
409
  margin: 1em 0;
423
410
  }
424
411
 
425
- @media (min-width: 901px) and (max-width: 1024px) {
426
- html .col-content {
427
- width: 72%;
428
- }
429
- html .col-menu {
430
- width: 28%;
431
- }
432
- html .tsd-navigation {
433
- padding-left: 10px;
434
- }
435
- }
436
- @media (max-width: 900px) {
412
+ @media (max-width: 1024px) {
437
413
  html .col-content {
438
414
  float: none;
415
+ max-width: 100%;
439
416
  width: 100%;
417
+ padding-top: 3rem;
440
418
  }
441
419
  html .col-menu {
442
420
  position: fixed !important;
443
- overflow: auto;
421
+ overflow-y: auto;
444
422
  -webkit-overflow-scrolling: touch;
445
423
  z-index: 1024;
446
424
  top: 0 !important;
447
425
  bottom: 0 !important;
448
426
  left: auto !important;
449
427
  right: 0 !important;
450
- width: 100%;
451
- padding: 20px 20px 0 0;
452
- max-width: 450px;
428
+ padding: 1.5rem 1.5rem 0 0;
429
+ max-width: 25rem;
453
430
  visibility: hidden;
454
- background-color: var(--color-panel);
431
+ background-color: var(--color-background);
455
432
  transform: translate(100%, 0);
456
433
  }
457
434
  html .col-menu > *:last-child {
@@ -507,24 +484,17 @@ blockquote {
507
484
  visibility: visible;
508
485
  transform: translate(0, 0);
509
486
  display: grid;
487
+ align-items: center;
510
488
  grid-template-rows: auto 1fr;
489
+ grid-gap: 1.5rem;
511
490
  max-height: 100vh;
491
+ padding: 1rem 2rem;
512
492
  }
513
493
  .has-menu .tsd-navigation {
514
494
  max-height: 100%;
515
495
  }
516
496
  }
517
497
 
518
- .tsd-page-title {
519
- padding: 70px 0 20px 0;
520
- margin: 0 0 40px 0;
521
- background: var(--color-panel);
522
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
523
- }
524
- .tsd-page-title h1 {
525
- margin: 0;
526
- }
527
-
528
498
  .tsd-breadcrumb {
529
499
  margin: 0;
530
500
  padding: 0;
@@ -544,32 +514,44 @@ blockquote {
544
514
  content: " / ";
545
515
  }
546
516
 
547
- dl.tsd-comment-tags {
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;
548
524
  overflow: hidden;
525
+ margin: 0.5em 0;
549
526
  }
550
- dl.tsd-comment-tags dt {
551
- float: left;
552
- padding: 1px 5px;
553
- margin: 0 10px 0 0;
554
- border-radius: 4px;
555
- border: 1px solid var(--color-comment-tag);
556
- color: var(--color-comment-tag);
557
- font-size: 0.8em;
527
+ dl.tsd-comment-tag-group dt {
528
+ display: flex;
529
+ margin-right: 0.5em;
530
+ font-size: 0.875em;
558
531
  font-weight: normal;
559
532
  }
560
- dl.tsd-comment-tags dd {
561
- margin: 0 0 10px 0;
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%;
562
541
  }
563
- dl.tsd-comment-tags dd:before,
564
- dl.tsd-comment-tags dd:after {
565
- display: table;
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 {
566
548
  content: " ";
567
549
  }
568
- dl.tsd-comment-tags dd pre,
569
- dl.tsd-comment-tags dd:after {
550
+ dl.tsd-comment-tag-group dd pre,
551
+ dl.tsd-comment-tag-group dd:after {
570
552
  clear: both;
571
553
  }
572
- dl.tsd-comment-tags p {
554
+ dl.tsd-comment-tag-group p {
573
555
  margin: 0;
574
556
  }
575
557
 
@@ -582,153 +564,109 @@ dl.tsd-comment-tags p {
582
564
  margin-bottom: 0;
583
565
  }
584
566
 
585
- .toggle-protected .tsd-is-private {
586
- display: none;
567
+ .tsd-filter-visibility h4 {
568
+ font-size: 1rem;
569
+ padding-top: 0.75rem;
570
+ padding-bottom: 0.5rem;
571
+ margin: 0;
587
572
  }
588
-
589
- .toggle-public .tsd-is-private,
590
- .toggle-public .tsd-is-protected,
591
- .toggle-public .tsd-is-private-protected {
592
- display: none;
573
+ .tsd-filter-item:not(:last-child) {
574
+ margin-bottom: 0.5rem;
593
575
  }
594
-
595
- .toggle-inherited .tsd-is-inherited {
596
- display: none;
597
- }
598
-
599
- .toggle-externals .tsd-is-external {
600
- display: none;
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;
601
586
  }
602
-
603
- #tsd-filter {
604
- position: relative;
605
- display: inline-block;
606
- height: 40px;
607
- vertical-align: bottom;
587
+ .tsd-filter-input input[type="checkbox"] {
588
+ cursor: pointer;
589
+ position: absolute;
590
+ width: 1.5em;
591
+ height: 1.5em;
592
+ opacity: 0;
608
593
  }
609
- .no-filter #tsd-filter {
610
- display: none;
594
+ .tsd-filter-input input[type="checkbox"]:disabled {
595
+ pointer-events: none;
611
596
  }
612
- #tsd-filter .tsd-filter-group {
613
- display: inline-block;
614
- height: 40px;
615
- vertical-align: bottom;
616
- white-space: nowrap;
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;
617
606
  }
618
- #tsd-filter input {
619
- display: none;
607
+ .tsd-filter-input input[type="checkbox"]:focus + svg {
608
+ transform: scale(0.95);
620
609
  }
621
- @media (max-width: 900px) {
622
- #tsd-filter .tsd-filter-group {
623
- display: block;
624
- position: absolute;
625
- top: 40px;
626
- right: 20px;
627
- height: auto;
628
- background-color: var(--color-panel);
629
- visibility: hidden;
630
- transform: translate(50%, 0);
631
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
632
- }
633
- .has-options #tsd-filter .tsd-filter-group {
634
- visibility: visible;
635
- }
636
- .to-has-options #tsd-filter .tsd-filter-group {
637
- animation: fade-in 0.2s;
638
- }
639
- .from-has-options #tsd-filter .tsd-filter-group {
640
- animation: fade-out 0.2s;
641
- }
642
- #tsd-filter label,
643
- #tsd-filter .tsd-select {
644
- display: block;
645
- padding-right: 20px;
646
- }
610
+ .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
611
+ transform: scale(1);
647
612
  }
648
-
649
- footer {
650
- border-top: 1px solid var(--color-panel-divider);
651
- background-color: var(--color-panel);
613
+ .tsd-checkbox-background {
614
+ fill: var(--color-accent);
652
615
  }
653
- footer:after {
654
- content: "";
655
- display: table;
616
+ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
617
+ stroke: var(--color-text);
656
618
  }
657
- footer.with-border-bottom {
658
- border-bottom: 1px solid var(--color-panel-divider);
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;
659
623
  }
660
- footer .tsd-legend-group {
661
- font-size: 0;
624
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
625
+ stroke: var(--color-accent);
662
626
  }
663
- footer .tsd-legend {
664
- display: inline-block;
665
- width: 25%;
666
- padding: 0;
667
- font-size: 16px;
668
- list-style: none;
669
- line-height: 1.333em;
670
- vertical-align: top;
627
+
628
+ .tsd-theme-toggle {
629
+ padding-top: 0.75rem;
671
630
  }
672
- @media (max-width: 900px) {
673
- footer .tsd-legend {
674
- width: 50%;
675
- }
631
+ .tsd-theme-toggle > h4 {
632
+ display: inline;
633
+ vertical-align: middle;
634
+ margin-right: 0.75rem;
676
635
  }
677
636
 
678
637
  .tsd-hierarchy {
679
638
  list-style: square;
680
- padding: 0 0 0 20px;
681
639
  margin: 0;
682
640
  }
683
641
  .tsd-hierarchy .target {
684
642
  font-weight: bold;
685
643
  }
686
644
 
687
- .tsd-index-panel .tsd-index-content {
688
- margin-bottom: -30px !important;
689
- }
690
- .tsd-index-panel .tsd-index-section {
691
- margin-bottom: 30px !important;
692
- }
693
- .tsd-index-panel h3 {
694
- margin: 0 -20px 10px -20px;
695
- padding: 0 20px 10px 20px;
696
- border-bottom: 1px solid var(--color-panel-divider);
697
- }
698
- .tsd-index-panel ul.tsd-index-list {
699
- -webkit-column-count: 3;
700
- -moz-column-count: 3;
701
- -ms-column-count: 3;
702
- -o-column-count: 3;
703
- column-count: 3;
704
- -webkit-column-gap: 20px;
705
- -moz-column-gap: 20px;
706
- -ms-column-gap: 20px;
707
- -o-column-gap: 20px;
708
- column-gap: 20px;
709
- padding: 0;
645
+ .tsd-panel-group.tsd-index-group {
646
+ margin-bottom: 0;
647
+ }
648
+ .tsd-index-panel .tsd-index-list {
710
649
  list-style: none;
711
650
  line-height: 1.333em;
712
- }
713
- @media (max-width: 900px) {
714
- .tsd-index-panel ul.tsd-index-list {
715
- -webkit-column-count: 1;
716
- -moz-column-count: 1;
717
- -ms-column-count: 1;
718
- -o-column-count: 1;
719
- column-count: 1;
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);
720
662
  }
721
663
  }
722
- @media (min-width: 901px) and (max-width: 1024px) {
723
- .tsd-index-panel ul.tsd-index-list {
724
- -webkit-column-count: 2;
725
- -moz-column-count: 2;
726
- -ms-column-count: 2;
727
- -o-column-count: 2;
728
- column-count: 2;
664
+ @media (max-width: 768px) {
665
+ .tsd-index-panel .tsd-index-list {
666
+ grid-template-columns: repeat(1, 1fr);
729
667
  }
730
668
  }
731
- .tsd-index-panel ul.tsd-index-list li {
669
+ .tsd-index-panel .tsd-index-list li {
732
670
  -webkit-page-break-inside: avoid;
733
671
  -moz-page-break-inside: avoid;
734
672
  -ms-page-break-inside: avoid;
@@ -736,42 +674,52 @@ footer .tsd-legend {
736
674
  page-break-inside: avoid;
737
675
  }
738
676
  .tsd-index-panel a,
739
- .tsd-index-panel .tsd-parent-kind-module a {
677
+ .tsd-index-panel a.tsd-parent-kind-module {
740
678
  color: var(--color-ts);
741
679
  }
742
- .tsd-index-panel .tsd-parent-kind-interface a {
680
+ .tsd-index-panel a.tsd-parent-kind-interface {
743
681
  color: var(--color-ts-interface);
744
682
  }
745
- .tsd-index-panel .tsd-parent-kind-enum a {
683
+ .tsd-index-panel a.tsd-parent-kind-enum {
746
684
  color: var(--color-ts-enum);
747
685
  }
748
- .tsd-index-panel .tsd-parent-kind-class a {
686
+ .tsd-index-panel a.tsd-parent-kind-class {
749
687
  color: var(--color-ts-class);
750
688
  }
751
- .tsd-index-panel .tsd-kind-module a {
752
- color: var(--color-ts);
689
+ .tsd-index-panel a.tsd-kind-module {
690
+ color: var(--color-ts-namespace);
753
691
  }
754
- .tsd-index-panel .tsd-kind-interface a {
692
+ .tsd-index-panel a.tsd-kind-interface {
755
693
  color: var(--color-ts-interface);
756
694
  }
757
- .tsd-index-panel .tsd-kind-enum a {
695
+ .tsd-index-panel a.tsd-kind-enum {
758
696
  color: var(--color-ts-enum);
759
697
  }
760
- .tsd-index-panel .tsd-kind-class a {
698
+ .tsd-index-panel a.tsd-kind-class {
761
699
  color: var(--color-ts-class);
762
700
  }
763
- .tsd-index-panel .tsd-is-private a {
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 {
764
711
  color: var(--color-ts-private);
765
712
  }
766
713
 
767
714
  .tsd-flag {
768
715
  display: inline-block;
769
- padding: 1px 5px;
716
+ padding: 0.25em 0.4em;
770
717
  border-radius: 4px;
771
718
  color: var(--color-comment-tag-text);
772
719
  background-color: var(--color-comment-tag);
773
720
  text-indent: 0;
774
- font-size: 14px;
721
+ font-size: 75%;
722
+ line-height: 1;
775
723
  font-weight: normal;
776
724
  }
777
725
 
@@ -784,6 +732,8 @@ footer .tsd-legend {
784
732
  position: relative;
785
733
  }
786
734
  .tsd-member .tsd-anchor + h3 {
735
+ display: flex;
736
+ align-items: center;
787
737
  margin-top: 0;
788
738
  margin-bottom: 0;
789
739
  border-bottom: none;
@@ -804,13 +754,9 @@ footer .tsd-legend {
804
754
  color: var(--color-ts-private);
805
755
  }
806
756
 
807
- .tsd-navigation {
808
- margin: 0 0 0 40px;
809
- }
810
757
  .tsd-navigation a {
811
758
  display: block;
812
- padding-top: 2px;
813
- padding-bottom: 2px;
759
+ margin: 0.4rem 0;
814
760
  border-left: 2px solid transparent;
815
761
  color: var(--color-text);
816
762
  text-decoration: none;
@@ -828,110 +774,176 @@ footer .tsd-legend {
828
774
  padding: 0;
829
775
  }
830
776
 
831
- .tsd-navigation.primary {
832
- padding-bottom: 40px;
777
+ .tsd-navigation.primary .tsd-accordion-details > ul {
778
+ margin-top: 0.75rem;
833
779
  }
834
780
  .tsd-navigation.primary a {
835
- display: block;
836
- padding-top: 6px;
837
- padding-bottom: 6px;
781
+ padding: 0.75rem 0.5rem;
782
+ margin: 0;
838
783
  }
839
784
  .tsd-navigation.primary ul li a {
840
- padding-left: 5px;
785
+ margin-left: 0.5rem;
841
786
  }
842
787
  .tsd-navigation.primary ul li li a {
843
- padding-left: 25px;
788
+ margin-left: 1.5rem;
844
789
  }
845
790
  .tsd-navigation.primary ul li li li a {
846
- padding-left: 45px;
791
+ margin-left: 2.5rem;
847
792
  }
848
793
  .tsd-navigation.primary ul li li li li a {
849
- padding-left: 65px;
794
+ margin-left: 3.5rem;
850
795
  }
851
796
  .tsd-navigation.primary ul li li li li li a {
852
- padding-left: 85px;
797
+ margin-left: 4.5rem;
853
798
  }
854
799
  .tsd-navigation.primary ul li li li li li li a {
855
- padding-left: 105px;
856
- }
857
- .tsd-navigation.primary > ul {
858
- border-bottom: 1px solid var(--color-panel-divider);
859
- }
860
- .tsd-navigation.primary li {
861
- border-top: 1px solid var(--color-panel-divider);
800
+ margin-left: 5.5rem;
862
801
  }
863
802
  .tsd-navigation.primary li.current > a {
803
+ border-left: 0.15rem var(--color-text) solid;
804
+ }
805
+ .tsd-navigation.primary li.selected > a {
864
806
  font-weight: bold;
807
+ border-left: 0.2rem var(--color-text) solid;
865
808
  }
866
- .tsd-navigation.primary li.label span {
867
- display: block;
868
- padding: 20px 0 6px 5px;
869
- color: var(--color-menu-label);
809
+ .tsd-navigation.primary ul li a:hover {
810
+ border-left: 0.2rem var(--color-text-aside) solid;
870
811
  }
871
812
  .tsd-navigation.primary li.globals + li > span,
872
813
  .tsd-navigation.primary li.globals + li > a {
873
814
  padding-top: 20px;
874
815
  }
875
816
 
876
- .tsd-navigation.secondary {
877
- max-height: calc(100vh - 1rem - 40px);
878
- overflow: auto;
879
- position: sticky;
880
- top: calc(0.5rem + 40px);
881
- transition: 0.3s;
882
- }
883
817
  .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
884
818
  max-height: calc(100vh - 1rem);
885
819
  top: 0.5rem;
886
820
  }
887
- .tsd-navigation.secondary ul {
821
+ .tsd-navigation.secondary > ul {
822
+ display: inline;
823
+ padding-right: 0.5rem;
888
824
  transition: opacity 0.2s;
889
825
  }
890
826
  .tsd-navigation.secondary ul li a {
891
- padding-left: 25px;
827
+ padding-left: 0;
892
828
  }
893
829
  .tsd-navigation.secondary ul li li a {
894
- padding-left: 45px;
830
+ padding-left: 1.1rem;
895
831
  }
896
832
  .tsd-navigation.secondary ul li li li a {
897
- padding-left: 65px;
833
+ padding-left: 2.2rem;
898
834
  }
899
835
  .tsd-navigation.secondary ul li li li li a {
900
- padding-left: 85px;
836
+ padding-left: 3.3rem;
901
837
  }
902
838
  .tsd-navigation.secondary ul li li li li li a {
903
- padding-left: 105px;
839
+ padding-left: 4.4rem;
904
840
  }
905
841
  .tsd-navigation.secondary ul li li li li li li a {
906
- padding-left: 125px;
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;
907
852
  }
908
- .tsd-navigation.secondary ul.current a {
909
- border-left-color: var(--color-panel-divider);
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;
910
874
  }
911
- .tsd-navigation.secondary li.focus > a,
912
- .tsd-navigation.secondary ul.current li.focus > a {
913
- border-left-color: var(--color-menu-divider-focus);
875
+ .tsd-accordion-summary {
876
+ display: block;
877
+ cursor: pointer;
914
878
  }
915
- .tsd-navigation.secondary li.current {
916
- margin-top: 20px;
917
- margin-bottom: 20px;
918
- border-left-color: var(--color-panel-divider);
879
+ .tsd-accordion-summary > * {
880
+ margin-top: 0;
881
+ margin-bottom: 0;
882
+ padding-top: 0;
883
+ padding-bottom: 0;
919
884
  }
920
- .tsd-navigation.secondary li.current > a {
921
- font-weight: bold;
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;
922
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
+ }
923
918
 
924
- @media (min-width: 901px) {
925
919
  .menu-sticky-wrap {
926
- position: static;
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;
927
939
  }
928
940
  }
929
941
 
930
942
  .tsd-panel {
931
- margin: 20px 0;
932
- padding: 20px;
933
- background-color: var(--color-panel);
934
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
943
+ margin-bottom: 2.5rem;
944
+ }
945
+ .tsd-panel.tsd-member {
946
+ margin-bottom: 4rem;
935
947
  }
936
948
  .tsd-panel:empty {
937
949
  display: none;
@@ -939,48 +951,24 @@ footer .tsd-legend {
939
951
  .tsd-panel > h1,
940
952
  .tsd-panel > h2,
941
953
  .tsd-panel > h3 {
942
- margin: 1.5em -20px 10px -20px;
943
- padding: 0 20px 10px 20px;
944
- border-bottom: 1px solid var(--color-panel-divider);
954
+ margin: 1.5rem -1.5rem 0.75rem -1.5rem;
955
+ padding: 0 1.5rem 0.75rem 1.5rem;
945
956
  }
946
957
  .tsd-panel > h1.tsd-before-signature,
947
958
  .tsd-panel > h2.tsd-before-signature,
948
959
  .tsd-panel > h3.tsd-before-signature {
949
960
  margin-bottom: 0;
950
- border-bottom: 0;
951
- }
952
- .tsd-panel table {
953
- display: block;
954
- width: 100%;
955
- overflow: auto;
956
- margin-top: 10px;
957
- word-break: normal;
958
- word-break: keep-all;
959
- border-collapse: collapse;
960
- }
961
- .tsd-panel table th {
962
- font-weight: bold;
963
- }
964
- .tsd-panel table th,
965
- .tsd-panel table td {
966
- padding: 6px 13px;
967
- border: 1px solid var(--color-panel-divider);
968
- }
969
- .tsd-panel table tr {
970
- background: var(--color-background);
971
- }
972
- .tsd-panel table tr:nth-child(even) {
973
- background: var(--color-secondary-background);
961
+ border-bottom: none;
974
962
  }
975
963
 
976
964
  .tsd-panel-group {
977
- margin: 60px 0;
965
+ margin: 4rem 0;
978
966
  }
979
- .tsd-panel-group > h1,
980
- .tsd-panel-group > h2,
981
- .tsd-panel-group > h3 {
982
- padding-left: 20px;
983
- padding-right: 20px;
967
+ .tsd-panel-group.tsd-index-group {
968
+ margin: 2rem 0;
969
+ }
970
+ .tsd-panel-group.tsd-index-group details {
971
+ margin: 2rem 0;
984
972
  }
985
973
 
986
974
  #tsd-search {
@@ -994,8 +982,8 @@ footer .tsd-legend {
994
982
  position: absolute;
995
983
  left: 0;
996
984
  top: 0;
997
- right: 40px;
998
- height: 40px;
985
+ right: 2.5rem;
986
+ height: 100%;
999
987
  }
1000
988
  #tsd-search .field input {
1001
989
  box-sizing: border-box;
@@ -1016,7 +1004,8 @@ footer .tsd-legend {
1016
1004
  right: -40px;
1017
1005
  }
1018
1006
  #tsd-search .field input,
1019
- #tsd-search .title {
1007
+ #tsd-search .title,
1008
+ #tsd-toolbar-links a {
1020
1009
  transition: opacity 0.2s;
1021
1010
  }
1022
1011
  #tsd-search .results {
@@ -1034,14 +1023,14 @@ footer .tsd-legend {
1034
1023
  background-color: var(--color-background);
1035
1024
  }
1036
1025
  #tsd-search .results li:nth-child(even) {
1037
- background-color: var(--color-panel);
1026
+ background-color: var(--color-background-secondary);
1038
1027
  }
1039
1028
  #tsd-search .results li.state {
1040
1029
  display: none;
1041
1030
  }
1042
1031
  #tsd-search .results li.current,
1043
1032
  #tsd-search .results li:hover {
1044
- background-color: var(--color-panel-divider);
1033
+ background-color: var(--color-accent);
1045
1034
  }
1046
1035
  #tsd-search .results a {
1047
1036
  display: block;
@@ -1054,13 +1043,14 @@ footer .tsd-legend {
1054
1043
  font-weight: normal;
1055
1044
  }
1056
1045
  #tsd-search.has-focus {
1057
- background-color: var(--color-panel-divider);
1046
+ background-color: var(--color-accent);
1058
1047
  }
1059
1048
  #tsd-search.has-focus .field input {
1060
1049
  top: 0;
1061
1050
  opacity: 1;
1062
1051
  }
1063
- #tsd-search.has-focus .title {
1052
+ #tsd-search.has-focus .title,
1053
+ #tsd-search.has-focus #tsd-toolbar-links a {
1064
1054
  z-index: 0;
1065
1055
  opacity: 0;
1066
1056
  }
@@ -1074,32 +1064,30 @@ footer .tsd-legend {
1074
1064
  display: block;
1075
1065
  }
1076
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
+
1077
1083
  .tsd-signature {
1078
- margin: 0 0 1em 0;
1079
- padding: 10px;
1080
- border: 1px solid var(--color-panel-divider);
1084
+ margin: 0 0 1rem 0;
1085
+ padding: 1rem 0.5rem;
1086
+ border: 1px solid var(--color-accent);
1081
1087
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1082
1088
  font-size: 14px;
1083
1089
  overflow-x: auto;
1084
1090
  }
1085
- .tsd-signature.tsd-kind-icon {
1086
- padding-left: 30px;
1087
- }
1088
- .tsd-signature.tsd-kind-icon:before {
1089
- top: 10px;
1090
- left: 10px;
1091
- }
1092
- .tsd-panel > .tsd-signature {
1093
- margin-left: -20px;
1094
- margin-right: -20px;
1095
- border-width: 1px 0;
1096
- }
1097
- .tsd-panel > .tsd-signature.tsd-kind-icon {
1098
- padding-left: 40px;
1099
- }
1100
- .tsd-panel > .tsd-signature.tsd-kind-icon:before {
1101
- left: 20px;
1102
- }
1103
1091
 
1104
1092
  .tsd-signature-symbol {
1105
1093
  color: var(--color-text-aside);
@@ -1114,104 +1102,42 @@ footer .tsd-legend {
1114
1102
  .tsd-signatures {
1115
1103
  padding: 0;
1116
1104
  margin: 0 0 1em 0;
1117
- border: 1px solid var(--color-panel-divider);
1105
+ list-style-type: none;
1118
1106
  }
1119
1107
  .tsd-signatures .tsd-signature {
1120
1108
  margin: 0;
1121
- border-width: 1px 0 0 0;
1122
- transition: background-color 0.1s;
1123
- }
1124
- .tsd-signatures .tsd-signature:first-child {
1125
- border-top-width: 0;
1126
- }
1127
- .tsd-signatures .tsd-signature.current {
1128
- background-color: var(--color-panel-divider);
1129
- }
1130
- .tsd-signatures.active > .tsd-signature {
1131
- cursor: pointer;
1132
- }
1133
- .tsd-panel > .tsd-signatures {
1134
- margin-left: -20px;
1135
- margin-right: -20px;
1109
+ border-color: var(--color-accent);
1136
1110
  border-width: 1px 0;
1111
+ transition: background-color 0.1s;
1137
1112
  }
1138
- .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon {
1139
- padding-left: 40px;
1140
- }
1141
- .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before {
1142
- left: 20px;
1143
- }
1144
- .tsd-panel > a.anchor + .tsd-signatures {
1145
- border-top-width: 0;
1146
- margin-top: -20px;
1147
- }
1148
-
1149
- ul.tsd-descriptions {
1150
- position: relative;
1151
- overflow: hidden;
1152
- padding: 0;
1153
- list-style: none;
1154
- }
1155
- ul.tsd-descriptions.active > .tsd-description {
1156
- display: none;
1157
- }
1158
- ul.tsd-descriptions.active > .tsd-description.current {
1159
- display: block;
1160
- }
1161
- ul.tsd-descriptions.active > .tsd-description.fade-in {
1162
- animation: fade-in-delayed 0.3s;
1163
- }
1164
- ul.tsd-descriptions.active > .tsd-description.fade-out {
1165
- animation: fade-out-delayed 0.3s;
1166
- position: absolute;
1167
- display: block;
1168
- top: 0;
1169
- left: 0;
1170
- right: 0;
1171
- opacity: 0;
1172
- visibility: hidden;
1173
- }
1174
- ul.tsd-descriptions h4,
1175
- ul.tsd-descriptions .tsd-index-panel h3,
1176
- .tsd-index-panel ul.tsd-descriptions h3 {
1177
- font-size: 16px;
1178
- margin: 1em 0 0.5em 0;
1113
+ .tsd-description .tsd-signatures .tsd-signature {
1114
+ border-width: 1px;
1179
1115
  }
1180
1116
 
1181
- ul.tsd-parameters,
1182
- ul.tsd-type-parameters {
1117
+ ul.tsd-parameter-list,
1118
+ ul.tsd-type-parameter-list {
1183
1119
  list-style: square;
1184
1120
  margin: 0;
1185
1121
  padding-left: 20px;
1186
1122
  }
1187
- ul.tsd-parameters > li.tsd-parameter-signature,
1188
- ul.tsd-type-parameters > li.tsd-parameter-signature {
1123
+ ul.tsd-parameter-list > li.tsd-parameter-signature,
1124
+ ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1189
1125
  list-style: none;
1190
1126
  margin-left: -20px;
1191
1127
  }
1192
- ul.tsd-parameters h5,
1193
- ul.tsd-type-parameters h5 {
1128
+ ul.tsd-parameter-list h5,
1129
+ ul.tsd-type-parameter-list h5 {
1194
1130
  font-size: 16px;
1195
1131
  margin: 1em 0 0.5em 0;
1196
1132
  }
1197
- ul.tsd-parameters .tsd-comment,
1198
- ul.tsd-type-parameters .tsd-comment {
1199
- margin-top: -0.5em;
1200
- }
1201
-
1202
1133
  .tsd-sources {
1203
- font-size: 14px;
1204
- color: var(--color-text-aside);
1205
- margin: 0 0 1em 0;
1134
+ margin-top: 1rem;
1135
+ font-size: 0.875em;
1206
1136
  }
1207
1137
  .tsd-sources a {
1208
1138
  color: var(--color-text-aside);
1209
1139
  text-decoration: underline;
1210
1140
  }
1211
- .tsd-sources ul,
1212
- .tsd-sources p {
1213
- margin: 0 !important;
1214
- }
1215
1141
  .tsd-sources ul {
1216
1142
  list-style: none;
1217
1143
  padding: 0;
@@ -1223,14 +1149,13 @@ ul.tsd-type-parameters .tsd-comment {
1223
1149
  top: 0;
1224
1150
  left: 0;
1225
1151
  width: 100%;
1226
- height: 40px;
1227
- color: var(--color-toolbar-text);
1228
- background: var(--color-toolbar);
1229
- border-bottom: 1px solid var(--color-panel-divider);
1230
- transition: transform 0.3s linear;
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;
1231
1156
  }
1232
1157
  .tsd-page-toolbar a {
1233
- color: var(--color-toolbar-text);
1158
+ color: var(--color-text);
1234
1159
  text-decoration: none;
1235
1160
  }
1236
1161
  .tsd-page-toolbar a.title {
@@ -1239,13 +1164,13 @@ ul.tsd-type-parameters .tsd-comment {
1239
1164
  .tsd-page-toolbar a.title:hover {
1240
1165
  text-decoration: underline;
1241
1166
  }
1242
- .tsd-page-toolbar .table-wrap {
1243
- display: table;
1244
- width: 100%;
1245
- height: 40px;
1167
+ .tsd-page-toolbar .tsd-toolbar-contents {
1168
+ display: flex;
1169
+ justify-content: space-between;
1170
+ height: 2.5rem;
1171
+ margin: 0 auto;
1246
1172
  }
1247
1173
  .tsd-page-toolbar .table-cell {
1248
- display: table-cell;
1249
1174
  position: relative;
1250
1175
  white-space: nowrap;
1251
1176
  line-height: 40px;
@@ -1253,34 +1178,16 @@ ul.tsd-type-parameters .tsd-comment {
1253
1178
  .tsd-page-toolbar .table-cell:first-child {
1254
1179
  width: 100%;
1255
1180
  }
1181
+ .tsd-page-toolbar .tsd-toolbar-icon {
1182
+ box-sizing: border-box;
1183
+ line-height: 0;
1184
+ padding: 12px 0;
1185
+ }
1256
1186
 
1257
1187
  .tsd-page-toolbar--hide {
1258
1188
  transform: translateY(-100%);
1259
1189
  }
1260
1190
 
1261
- .tsd-select .tsd-select-list li:before,
1262
- .tsd-select .tsd-select-label:before,
1263
- .tsd-widget:before {
1264
- content: "";
1265
- display: inline-block;
1266
- width: 40px;
1267
- height: 40px;
1268
- margin: 0 -8px 0 0;
1269
- background-image: url(./widgets.png);
1270
- background-repeat: no-repeat;
1271
- text-indent: -1024px;
1272
- vertical-align: bottom;
1273
- filter: var(--icon-filter);
1274
- }
1275
- @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
1276
- .tsd-select .tsd-select-list li:before,
1277
- .tsd-select .tsd-select-label:before,
1278
- .tsd-widget:before {
1279
- background-image: url(./widgets@2x.png);
1280
- background-size: 320px 40px;
1281
- }
1282
- }
1283
-
1284
1191
  .tsd-widget {
1285
1192
  display: inline-block;
1286
1193
  overflow: hidden;
@@ -1295,7 +1202,7 @@ ul.tsd-type-parameters .tsd-comment {
1295
1202
  }
1296
1203
  .tsd-widget.active {
1297
1204
  opacity: 1;
1298
- background-color: var(--color-panel-divider);
1205
+ background-color: var(--color-accent);
1299
1206
  }
1300
1207
  .tsd-widget.no-caption {
1301
1208
  width: 40px;
@@ -1303,20 +1210,12 @@ ul.tsd-type-parameters .tsd-comment {
1303
1210
  .tsd-widget.no-caption:before {
1304
1211
  margin: 0;
1305
1212
  }
1306
- .tsd-widget.search:before {
1307
- background-position: 0 0;
1308
- }
1309
- .tsd-widget.menu:before {
1310
- background-position: -40px 0;
1311
- }
1312
- .tsd-widget.options:before {
1313
- background-position: -80px 0;
1314
- }
1213
+
1315
1214
  .tsd-widget.options,
1316
1215
  .tsd-widget.menu {
1317
1216
  display: none;
1318
1217
  }
1319
- @media (max-width: 900px) {
1218
+ @media (max-width: 1024px) {
1320
1219
  .tsd-widget.options,
1321
1220
  .tsd-widget.menu {
1322
1221
  display: inline-block;
@@ -1329,75 +1228,14 @@ input[type="checkbox"]:checked + .tsd-widget:before {
1329
1228
  background-position: -160px 0;
1330
1229
  }
1331
1230
 
1332
- .tsd-select {
1333
- position: relative;
1334
- display: inline-block;
1335
- height: 40px;
1336
- transition: opacity 0.1s, background-color 0.2s;
1337
- vertical-align: bottom;
1338
- cursor: pointer;
1339
- }
1340
- .tsd-select .tsd-select-label {
1341
- opacity: 0.6;
1342
- transition: opacity 0.2s;
1343
- }
1344
- .tsd-select .tsd-select-label:before {
1345
- background-position: -240px 0;
1346
- }
1347
- .tsd-select.active .tsd-select-label {
1348
- opacity: 0.8;
1349
- }
1350
- .tsd-select.active .tsd-select-list {
1351
- visibility: visible;
1352
- opacity: 1;
1353
- transition-delay: 0s;
1354
- }
1355
- .tsd-select .tsd-select-list {
1356
- position: absolute;
1357
- visibility: hidden;
1358
- top: 40px;
1359
- left: 0;
1360
- margin: 0;
1361
- padding: 0;
1362
- opacity: 0;
1363
- list-style: none;
1364
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
1365
- transition: visibility 0s 0.2s, opacity 0.2s;
1366
- }
1367
- .tsd-select .tsd-select-list li {
1368
- padding: 0 20px 0 0;
1369
- background-color: var(--color-background);
1370
- }
1371
- .tsd-select .tsd-select-list li:before {
1372
- background-position: 40px 0;
1373
- }
1374
- .tsd-select .tsd-select-list li:nth-child(even) {
1375
- background-color: var(--color-panel);
1376
- }
1377
- .tsd-select .tsd-select-list li:hover {
1378
- background-color: var(--color-panel-divider);
1379
- }
1380
- .tsd-select .tsd-select-list li.selected:before {
1381
- background-position: -200px 0;
1382
- }
1383
- @media (max-width: 900px) {
1384
- .tsd-select .tsd-select-list {
1385
- top: 0;
1386
- left: auto;
1387
- right: 100%;
1388
- margin-right: -5px;
1389
- }
1390
- .tsd-select .tsd-select-label:before {
1391
- background-position: -280px 0;
1392
- }
1393
- }
1394
-
1395
1231
  img {
1396
1232
  max-width: 100%;
1397
1233
  }
1398
1234
 
1399
1235
  .tsd-anchor-icon {
1400
- margin-left: 10px;
1236
+ display: inline-flex;
1237
+ align-items: center;
1238
+ margin-left: 0.5rem;
1401
1239
  vertical-align: middle;
1402
1240
  color: var(--color-text);
1403
1241
  }
@@ -1411,3 +1249,32 @@ img {
1411
1249
  .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1412
1250
  visibility: visible;
1413
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
+ }