@aptre/flex-layout 0.2.4 → 0.3.0-beta.2

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 (112) hide show
  1. package/README.md +154 -311
  2. package/dist/DockLocation.d.ts +2 -2
  3. package/dist/DropInfo.d.ts +4 -4
  4. package/dist/I18nLabel.d.ts +7 -9
  5. package/dist/Rect.d.ts +14 -1
  6. package/dist/Types.d.ts +16 -0
  7. package/dist/index.d.ts +21 -22
  8. package/dist/index.mjs +4529 -4618
  9. package/dist/model/Actions.d.ts +40 -23
  10. package/dist/model/BorderNode.d.ts +10 -14
  11. package/dist/model/BorderSet.d.ts +1 -2
  12. package/dist/model/IJsonModel.d.ts +697 -35
  13. package/dist/model/LayoutWindow.d.ts +28 -0
  14. package/dist/model/Model.d.ts +29 -24
  15. package/dist/model/Node.d.ts +5 -5
  16. package/dist/model/RowNode.d.ts +5 -6
  17. package/dist/model/TabNode.d.ts +15 -8
  18. package/dist/model/TabSetNode.d.ts +13 -10
  19. package/dist/view/BorderTab.d.ts +2 -0
  20. package/dist/view/Icons.d.ts +1 -0
  21. package/dist/view/Layout.d.ts +95 -116
  22. package/dist/view/Row.d.ts +1 -0
  23. package/dist/view/SizeTracker.d.ts +10 -0
  24. package/dist/view/Utils.d.ts +11 -1
  25. package/package.json +21 -25
  26. package/style/_base.scss +138 -32
  27. package/style/dark.css +145 -40
  28. package/style/dark.css.map +1 -1
  29. package/style/dark.scss +3 -1
  30. package/style/gray.css +144 -39
  31. package/style/gray.css.map +1 -1
  32. package/style/gray.scss +2 -0
  33. package/style/light.css +147 -42
  34. package/style/light.css.map +1 -1
  35. package/style/light.scss +4 -2
  36. package/style/rounded.css +697 -0
  37. package/style/rounded.css.map +1 -0
  38. package/style/rounded.scss +193 -0
  39. package/style/underline.css +145 -40
  40. package/style/underline.css.map +1 -1
  41. package/style/underline.scss +2 -0
  42. package/tsconfig.json +3 -3
  43. package/typedoc/assets/hierarchy.js +1 -0
  44. package/typedoc/assets/highlight.css +18 -18
  45. package/typedoc/assets/icons.js +17 -14
  46. package/typedoc/assets/icons.svg +1 -1
  47. package/typedoc/assets/main.js +5 -4
  48. package/typedoc/assets/navigation.js +1 -1
  49. package/typedoc/assets/search.js +1 -1
  50. package/typedoc/assets/style.css +1422 -1224
  51. package/typedoc/classes/Action.html +2 -2
  52. package/typedoc/classes/Actions.html +65 -52
  53. package/typedoc/classes/BorderNode.html +26 -30
  54. package/typedoc/classes/BorderSet.html +2 -2
  55. package/typedoc/classes/DockLocation.html +9 -9
  56. package/typedoc/classes/DropInfo.html +3 -3
  57. package/typedoc/classes/Layout.html +99 -83
  58. package/typedoc/classes/LayoutWindow.html +12 -0
  59. package/typedoc/classes/Model.html +44 -40
  60. package/typedoc/classes/Node.html +12 -12
  61. package/typedoc/classes/Orientation.html +5 -5
  62. package/typedoc/classes/Rect.html +18 -11
  63. package/typedoc/classes/RowNode.html +16 -17
  64. package/typedoc/classes/TabNode.html +40 -34
  65. package/typedoc/classes/TabSetNode.html +40 -41
  66. package/typedoc/enums/CLASSES.html +94 -78
  67. package/typedoc/enums/I18nLabel.html +11 -13
  68. package/typedoc/enums/ICloseType.html +4 -4
  69. package/typedoc/hierarchy.html +1 -1
  70. package/typedoc/index.html +1 -51
  71. package/typedoc/interfaces/IBorderAttributes.html +32 -9
  72. package/typedoc/interfaces/IDraggable.html +1 -1
  73. package/typedoc/interfaces/IDropTarget.html +1 -1
  74. package/typedoc/interfaces/IGlobalAttributes.html +190 -47
  75. package/typedoc/interfaces/IIcons.html +5 -4
  76. package/typedoc/interfaces/IJsonBorderNode.html +32 -9
  77. package/typedoc/interfaces/IJsonModel.html +3 -2
  78. package/typedoc/interfaces/IJsonPopout.html +3 -0
  79. package/typedoc/interfaces/IJsonRect.html +5 -0
  80. package/typedoc/interfaces/IJsonRowNode.html +8 -5
  81. package/typedoc/interfaces/IJsonTabNode.html +73 -15
  82. package/typedoc/interfaces/IJsonTabSetNode.html +68 -23
  83. package/typedoc/interfaces/ILayoutProps.html +36 -22
  84. package/typedoc/interfaces/IRowAttributes.html +8 -5
  85. package/typedoc/interfaces/ITabAttributes.html +73 -15
  86. package/typedoc/interfaces/ITabRenderValues.html +5 -3
  87. package/typedoc/interfaces/ITabSetAttributes.html +63 -24
  88. package/typedoc/interfaces/ITabSetRenderValues.html +8 -7
  89. package/typedoc/types/DragRectRenderCallback.html +1 -1
  90. package/typedoc/types/IBorderLocation.html +1 -1
  91. package/typedoc/types/ITabLocation.html +1 -1
  92. package/typedoc/types/NodeMouseEvent.html +1 -1
  93. package/typedoc/types/ShowOverflowMenuCallback.html +1 -1
  94. package/typedoc/types/TabSetPlaceHolderCallback.html +1 -1
  95. package/typedoc/variables/FlexLayoutVersion.html +1 -0
  96. package/dist/DragDrop.d.ts +0 -15
  97. package/dist/model/SplitterNode.d.ts +0 -5
  98. package/typedoc/classes/DragDrop.html +0 -10
  99. package/typedoc/classes/SplitterNode.html +0 -13
  100. package/typedoc/interfaces/ICustomDropDestination.html +0 -10
  101. package/typedoc/interfaces/IFontValues.html +0 -5
  102. package/typedoc/interfaces/ILayoutState.html +0 -9
  103. package/typedoc/interfaces/ITitleObject.html +0 -3
  104. package/typedoc/types/CustomDragCallback.html +0 -1
  105. package/typedoc/types/FloatingTabPlaceholderRenderCallback.html +0 -1
  106. package/typedoc/types/IInsets.html +0 -1
  107. package/typedoc/types/IconFactory.html +0 -1
  108. package/typedoc/types/TitleFactory.html +0 -1
  109. /package/dist/{PopupMenu.d.ts → view/DragContainer.d.ts} +0 -0
  110. /package/dist/view/{FloatingWindow.d.ts → Overlay.d.ts} +0 -0
  111. /package/dist/view/{FloatingWindowTab.d.ts → PopoutWindow.d.ts} +0 -0
  112. /package/dist/view/{TabFloating.d.ts → PopupMenu.d.ts} +0 -0
@@ -1,87 +1,247 @@
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-keyword: #056bd6;
15
- --light-color-ts-project: #b111c9;
16
- --light-color-ts-module: var(--light-color-ts-project);
17
- --light-color-ts-namespace: var(--light-color-ts-project);
18
- --light-color-ts-enum: #7e6f15;
19
- --light-color-ts-enum-member: var(--light-color-ts-enum);
20
- --light-color-ts-variable: #4760ec;
21
- --light-color-ts-function: #572be7;
22
- --light-color-ts-class: #1f70c2;
23
- --light-color-ts-interface: #108024;
24
- --light-color-ts-constructor: var(--light-color-ts-class);
25
- --light-color-ts-property: var(--light-color-ts-variable);
26
- --light-color-ts-method: var(--light-color-ts-function);
27
- --light-color-ts-call-signature: var(--light-color-ts-method);
28
- --light-color-ts-index-signature: var(--light-color-ts-property);
29
- --light-color-ts-constructor-signature: var(--light-color-ts-constructor);
30
- --light-color-ts-parameter: var(--light-color-ts-variable);
31
- /* type literal not included as links will never be generated to it */
32
- --light-color-ts-type-parameter: #a55c0e;
33
- --light-color-ts-accessor: var(--light-color-ts-property);
34
- --light-color-ts-get-signature: var(--light-color-ts-accessor);
35
- --light-color-ts-set-signature: var(--light-color-ts-accessor);
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-keyword: #3399ff;
55
- --dark-color-ts-project: #e358ff;
56
- --dark-color-ts-module: var(--dark-color-ts-project);
57
- --dark-color-ts-namespace: var(--dark-color-ts-project);
58
- --dark-color-ts-enum: #f4d93e;
59
- --dark-color-ts-enum-member: var(--dark-color-ts-enum);
60
- --dark-color-ts-variable: #798dff;
61
- --dark-color-ts-function: #a280ff;
62
- --dark-color-ts-class: #8ac4ff;
63
- --dark-color-ts-interface: #6cff87;
64
- --dark-color-ts-constructor: var(--dark-color-ts-class);
65
- --dark-color-ts-property: var(--dark-color-ts-variable);
66
- --dark-color-ts-method: var(--dark-color-ts-function);
67
- --dark-color-ts-call-signature: var(--dark-color-ts-method);
68
- --dark-color-ts-index-signature: var(--dark-color-ts-property);
69
- --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
70
- --dark-color-ts-parameter: var(--dark-color-ts-variable);
71
- /* type literal not included as links will never be generated to it */
72
- --dark-color-ts-type-parameter: #e07d13;
73
- --dark-color-ts-accessor: var(--dark-color-ts-property);
74
- --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
75
- --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
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) {
1
+ @layer typedoc {
84
2
  :root {
3
+ /* Light */
4
+ --light-color-background: #f2f4f8;
5
+ --light-color-background-secondary: #eff0f1;
6
+ --light-color-warning-text: #222;
7
+ --light-color-background-warning: #e6e600;
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
+
13
+ --light-color-icon-background: var(--light-color-background);
14
+ --light-color-icon-text: var(--light-color-text);
15
+
16
+ --light-color-comment-tag-text: var(--light-color-text);
17
+ --light-color-comment-tag: var(--light-color-background);
18
+
19
+ --light-color-link: #1f70c2;
20
+ --light-color-focus-outline: #3584e4;
21
+
22
+ --light-color-ts-keyword: #056bd6;
23
+ --light-color-ts-project: #b111c9;
24
+ --light-color-ts-module: var(--light-color-ts-project);
25
+ --light-color-ts-namespace: var(--light-color-ts-project);
26
+ --light-color-ts-enum: #7e6f15;
27
+ --light-color-ts-enum-member: var(--light-color-ts-enum);
28
+ --light-color-ts-variable: #4760ec;
29
+ --light-color-ts-function: #572be7;
30
+ --light-color-ts-class: #1f70c2;
31
+ --light-color-ts-interface: #108024;
32
+ --light-color-ts-constructor: #4d7fff;
33
+ --light-color-ts-property: #ff984d;
34
+ --light-color-ts-method: #ff4db8;
35
+ --light-color-ts-reference: #ff4d82;
36
+ --light-color-ts-call-signature: var(--light-color-ts-method);
37
+ --light-color-ts-index-signature: var(--light-color-ts-property);
38
+ --light-color-ts-constructor-signature: var(
39
+ --light-color-ts-constructor
40
+ );
41
+ --light-color-ts-parameter: var(--light-color-ts-variable);
42
+ /* type literal not included as links will never be generated to it */
43
+ --light-color-ts-type-parameter: #a55c0e;
44
+ --light-color-ts-accessor: #ff4d4d;
45
+ --light-color-ts-get-signature: var(--light-color-ts-accessor);
46
+ --light-color-ts-set-signature: var(--light-color-ts-accessor);
47
+ --light-color-ts-type-alias: #d51270;
48
+ /* reference not included as links will be colored with the kind that it points to */
49
+ --light-color-document: #000000;
50
+
51
+ --light-color-alert-note: #0969d9;
52
+ --light-color-alert-tip: #1a7f37;
53
+ --light-color-alert-important: #8250df;
54
+ --light-color-alert-warning: #9a6700;
55
+ --light-color-alert-caution: #cf222e;
56
+
57
+ --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>");
58
+ --light-color-scheme: light;
59
+
60
+ /* Dark */
61
+ --dark-color-background: #2b2e33;
62
+ --dark-color-background-secondary: #1e2024;
63
+ --dark-color-background-warning: #bebe00;
64
+ --dark-color-warning-text: #222;
65
+ --dark-color-accent: #9096a2;
66
+ --dark-color-active-menu-item: #5d5d6a;
67
+ --dark-color-text: #f5f5f5;
68
+ --dark-color-text-aside: #dddddd;
69
+
70
+ --dark-color-icon-background: var(--dark-color-background-secondary);
71
+ --dark-color-icon-text: var(--dark-color-text);
72
+
73
+ --dark-color-comment-tag-text: var(--dark-color-text);
74
+ --dark-color-comment-tag: var(--dark-color-background);
75
+
76
+ --dark-color-link: #00aff4;
77
+ --dark-color-focus-outline: #4c97f2;
78
+
79
+ --dark-color-ts-keyword: #3399ff;
80
+ --dark-color-ts-project: #e358ff;
81
+ --dark-color-ts-module: var(--dark-color-ts-project);
82
+ --dark-color-ts-namespace: var(--dark-color-ts-project);
83
+ --dark-color-ts-enum: #f4d93e;
84
+ --dark-color-ts-enum-member: var(--dark-color-ts-enum);
85
+ --dark-color-ts-variable: #798dff;
86
+ --dark-color-ts-function: #a280ff;
87
+ --dark-color-ts-class: #8ac4ff;
88
+ --dark-color-ts-interface: #6cff87;
89
+ --dark-color-ts-constructor: #4d7fff;
90
+ --dark-color-ts-property: #ff984d;
91
+ --dark-color-ts-method: #ff4db8;
92
+ --dark-color-ts-reference: #ff4d82;
93
+ --dark-color-ts-call-signature: var(--dark-color-ts-method);
94
+ --dark-color-ts-index-signature: var(--dark-color-ts-property);
95
+ --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
96
+ --dark-color-ts-parameter: var(--dark-color-ts-variable);
97
+ /* type literal not included as links will never be generated to it */
98
+ --dark-color-ts-type-parameter: #e07d13;
99
+ --dark-color-ts-accessor: #ff4d4d;
100
+ --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
101
+ --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
102
+ --dark-color-ts-type-alias: #ff6492;
103
+ /* reference not included as links will be colored with the kind that it points to */
104
+ --dark-color-document: #ffffff;
105
+
106
+ --dark-color-alert-note: #0969d9;
107
+ --dark-color-alert-tip: #1a7f37;
108
+ --dark-color-alert-important: #8250df;
109
+ --dark-color-alert-warning: #9a6700;
110
+ --dark-color-alert-caution: #cf222e;
111
+
112
+ --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>");
113
+ --dark-color-scheme: dark;
114
+ }
115
+
116
+ @media (prefers-color-scheme: light) {
117
+ :root {
118
+ --color-background: var(--light-color-background);
119
+ --color-background-secondary: var(
120
+ --light-color-background-secondary
121
+ );
122
+ --color-background-warning: var(--light-color-background-warning);
123
+ --color-warning-text: var(--light-color-warning-text);
124
+ --color-accent: var(--light-color-accent);
125
+ --color-active-menu-item: var(--light-color-active-menu-item);
126
+ --color-text: var(--light-color-text);
127
+ --color-text-aside: var(--light-color-text-aside);
128
+
129
+ --color-icon-background: var(--light-color-icon-background);
130
+ --color-icon-text: var(--light-color-icon-text);
131
+
132
+ --color-comment-tag-text: var(--light-color-text);
133
+ --color-comment-tag: var(--light-color-background);
134
+
135
+ --color-link: var(--light-color-link);
136
+ --color-focus-outline: var(--light-color-focus-outline);
137
+
138
+ --color-ts-keyword: var(--light-color-ts-keyword);
139
+ --color-ts-project: var(--light-color-ts-project);
140
+ --color-ts-module: var(--light-color-ts-module);
141
+ --color-ts-namespace: var(--light-color-ts-namespace);
142
+ --color-ts-enum: var(--light-color-ts-enum);
143
+ --color-ts-enum-member: var(--light-color-ts-enum-member);
144
+ --color-ts-variable: var(--light-color-ts-variable);
145
+ --color-ts-function: var(--light-color-ts-function);
146
+ --color-ts-class: var(--light-color-ts-class);
147
+ --color-ts-interface: var(--light-color-ts-interface);
148
+ --color-ts-constructor: var(--light-color-ts-constructor);
149
+ --color-ts-property: var(--light-color-ts-property);
150
+ --color-ts-method: var(--light-color-ts-method);
151
+ --color-ts-reference: var(--light-color-ts-reference);
152
+ --color-ts-call-signature: var(--light-color-ts-call-signature);
153
+ --color-ts-index-signature: var(--light-color-ts-index-signature);
154
+ --color-ts-constructor-signature: var(
155
+ --light-color-ts-constructor-signature
156
+ );
157
+ --color-ts-parameter: var(--light-color-ts-parameter);
158
+ --color-ts-type-parameter: var(--light-color-ts-type-parameter);
159
+ --color-ts-accessor: var(--light-color-ts-accessor);
160
+ --color-ts-get-signature: var(--light-color-ts-get-signature);
161
+ --color-ts-set-signature: var(--light-color-ts-set-signature);
162
+ --color-ts-type-alias: var(--light-color-ts-type-alias);
163
+ --color-document: var(--light-color-document);
164
+
165
+ --color-alert-note: var(--light-color-alert-note);
166
+ --color-alert-tip: var(--light-color-alert-tip);
167
+ --color-alert-important: var(--light-color-alert-important);
168
+ --color-alert-warning: var(--light-color-alert-warning);
169
+ --color-alert-caution: var(--light-color-alert-caution);
170
+
171
+ --external-icon: var(--light-external-icon);
172
+ --color-scheme: var(--light-color-scheme);
173
+ }
174
+ }
175
+
176
+ @media (prefers-color-scheme: dark) {
177
+ :root {
178
+ --color-background: var(--dark-color-background);
179
+ --color-background-secondary: var(
180
+ --dark-color-background-secondary
181
+ );
182
+ --color-background-warning: var(--dark-color-background-warning);
183
+ --color-warning-text: var(--dark-color-warning-text);
184
+ --color-accent: var(--dark-color-accent);
185
+ --color-active-menu-item: var(--dark-color-active-menu-item);
186
+ --color-text: var(--dark-color-text);
187
+ --color-text-aside: var(--dark-color-text-aside);
188
+
189
+ --color-icon-background: var(--dark-color-icon-background);
190
+ --color-icon-text: var(--dark-color-icon-text);
191
+
192
+ --color-comment-tag-text: var(--dark-color-text);
193
+ --color-comment-tag: var(--dark-color-background);
194
+
195
+ --color-link: var(--dark-color-link);
196
+ --color-focus-outline: var(--dark-color-focus-outline);
197
+
198
+ --color-ts-keyword: var(--dark-color-ts-keyword);
199
+ --color-ts-project: var(--dark-color-ts-project);
200
+ --color-ts-module: var(--dark-color-ts-module);
201
+ --color-ts-namespace: var(--dark-color-ts-namespace);
202
+ --color-ts-enum: var(--dark-color-ts-enum);
203
+ --color-ts-enum-member: var(--dark-color-ts-enum-member);
204
+ --color-ts-variable: var(--dark-color-ts-variable);
205
+ --color-ts-function: var(--dark-color-ts-function);
206
+ --color-ts-class: var(--dark-color-ts-class);
207
+ --color-ts-interface: var(--dark-color-ts-interface);
208
+ --color-ts-constructor: var(--dark-color-ts-constructor);
209
+ --color-ts-property: var(--dark-color-ts-property);
210
+ --color-ts-method: var(--dark-color-ts-method);
211
+ --color-ts-reference: var(--dark-color-ts-reference);
212
+ --color-ts-call-signature: var(--dark-color-ts-call-signature);
213
+ --color-ts-index-signature: var(--dark-color-ts-index-signature);
214
+ --color-ts-constructor-signature: var(
215
+ --dark-color-ts-constructor-signature
216
+ );
217
+ --color-ts-parameter: var(--dark-color-ts-parameter);
218
+ --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
219
+ --color-ts-accessor: var(--dark-color-ts-accessor);
220
+ --color-ts-get-signature: var(--dark-color-ts-get-signature);
221
+ --color-ts-set-signature: var(--dark-color-ts-set-signature);
222
+ --color-ts-type-alias: var(--dark-color-ts-type-alias);
223
+ --color-document: var(--dark-color-document);
224
+
225
+ --color-alert-note: var(--dark-color-alert-note);
226
+ --color-alert-tip: var(--dark-color-alert-tip);
227
+ --color-alert-important: var(--dark-color-alert-important);
228
+ --color-alert-warning: var(--dark-color-alert-warning);
229
+ --color-alert-caution: var(--dark-color-alert-caution);
230
+
231
+ --external-icon: var(--dark-external-icon);
232
+ --color-scheme: var(--dark-color-scheme);
233
+ }
234
+ }
235
+
236
+ html {
237
+ color-scheme: var(--color-scheme);
238
+ }
239
+
240
+ body {
241
+ margin: 0;
242
+ }
243
+
244
+ :root[data-theme="light"] {
85
245
  --color-background: var(--light-color-background);
86
246
  --color-background-secondary: var(--light-color-background-secondary);
87
247
  --color-background-warning: var(--light-color-background-warning);
@@ -91,9 +251,16 @@
91
251
  --color-active-menu-item: var(--light-color-active-menu-item);
92
252
  --color-text: var(--light-color-text);
93
253
  --color-text-aside: var(--light-color-text-aside);
254
+ --color-icon-text: var(--light-color-icon-text);
255
+
256
+ --color-comment-tag-text: var(--light-color-text);
257
+ --color-comment-tag: var(--light-color-background);
258
+
94
259
  --color-link: var(--light-color-link);
260
+ --color-focus-outline: var(--light-color-focus-outline);
95
261
 
96
262
  --color-ts-keyword: var(--light-color-ts-keyword);
263
+ --color-ts-project: var(--light-color-ts-project);
97
264
  --color-ts-module: var(--light-color-ts-module);
98
265
  --color-ts-namespace: var(--light-color-ts-namespace);
99
266
  --color-ts-enum: var(--light-color-ts-enum);
@@ -105,6 +272,7 @@
105
272
  --color-ts-constructor: var(--light-color-ts-constructor);
106
273
  --color-ts-property: var(--light-color-ts-property);
107
274
  --color-ts-method: var(--light-color-ts-method);
275
+ --color-ts-reference: var(--light-color-ts-reference);
108
276
  --color-ts-call-signature: var(--light-color-ts-call-signature);
109
277
  --color-ts-index-signature: var(--light-color-ts-index-signature);
110
278
  --color-ts-constructor-signature: var(
@@ -116,14 +284,19 @@
116
284
  --color-ts-get-signature: var(--light-color-ts-get-signature);
117
285
  --color-ts-set-signature: var(--light-color-ts-set-signature);
118
286
  --color-ts-type-alias: var(--light-color-ts-type-alias);
287
+ --color-document: var(--light-color-document);
288
+
289
+ --color-note: var(--light-color-note);
290
+ --color-tip: var(--light-color-tip);
291
+ --color-important: var(--light-color-important);
292
+ --color-warning: var(--light-color-warning);
293
+ --color-caution: var(--light-color-caution);
119
294
 
120
295
  --external-icon: var(--light-external-icon);
121
296
  --color-scheme: var(--light-color-scheme);
122
297
  }
123
- }
124
298
 
125
- @media (prefers-color-scheme: dark) {
126
- :root {
299
+ :root[data-theme="dark"] {
127
300
  --color-background: var(--dark-color-background);
128
301
  --color-background-secondary: var(--dark-color-background-secondary);
129
302
  --color-background-warning: var(--dark-color-background-warning);
@@ -133,9 +306,16 @@
133
306
  --color-active-menu-item: var(--dark-color-active-menu-item);
134
307
  --color-text: var(--dark-color-text);
135
308
  --color-text-aside: var(--dark-color-text-aside);
309
+ --color-icon-text: var(--dark-color-icon-text);
310
+
311
+ --color-comment-tag-text: var(--dark-color-text);
312
+ --color-comment-tag: var(--dark-color-background);
313
+
136
314
  --color-link: var(--dark-color-link);
315
+ --color-focus-outline: var(--dark-color-focus-outline);
137
316
 
138
317
  --color-ts-keyword: var(--dark-color-ts-keyword);
318
+ --color-ts-project: var(--dark-color-ts-project);
139
319
  --color-ts-module: var(--dark-color-ts-module);
140
320
  --color-ts-namespace: var(--dark-color-ts-namespace);
141
321
  --color-ts-enum: var(--dark-color-ts-enum);
@@ -147,6 +327,7 @@
147
327
  --color-ts-constructor: var(--dark-color-ts-constructor);
148
328
  --color-ts-property: var(--dark-color-ts-property);
149
329
  --color-ts-method: var(--dark-color-ts-method);
330
+ --color-ts-reference: var(--dark-color-ts-reference);
150
331
  --color-ts-call-signature: var(--dark-color-ts-call-signature);
151
332
  --color-ts-index-signature: var(--dark-color-ts-index-signature);
152
333
  --color-ts-constructor-signature: var(
@@ -158,1255 +339,1272 @@
158
339
  --color-ts-get-signature: var(--dark-color-ts-get-signature);
159
340
  --color-ts-set-signature: var(--dark-color-ts-set-signature);
160
341
  --color-ts-type-alias: var(--dark-color-ts-type-alias);
342
+ --color-document: var(--dark-color-document);
343
+
344
+ --color-note: var(--dark-color-note);
345
+ --color-tip: var(--dark-color-tip);
346
+ --color-important: var(--dark-color-important);
347
+ --color-warning: var(--dark-color-warning);
348
+ --color-caution: var(--dark-color-caution);
161
349
 
162
350
  --external-icon: var(--dark-external-icon);
163
351
  --color-scheme: var(--dark-color-scheme);
164
352
  }
165
- }
166
-
167
- html {
168
- color-scheme: var(--color-scheme);
169
- }
170
353
 
171
- body {
172
- margin: 0;
173
- }
174
-
175
- :root[data-theme="light"] {
176
- --color-background: var(--light-color-background);
177
- --color-background-secondary: var(--light-color-background-secondary);
178
- --color-background-warning: var(--light-color-background-warning);
179
- --color-warning-text: var(--light-color-warning-text);
180
- --color-icon-background: var(--light-color-icon-background);
181
- --color-accent: var(--light-color-accent);
182
- --color-active-menu-item: var(--light-color-active-menu-item);
183
- --color-text: var(--light-color-text);
184
- --color-text-aside: var(--light-color-text-aside);
185
- --color-link: var(--light-color-link);
186
-
187
- --color-ts-keyword: var(--light-color-ts-keyword);
188
- --color-ts-module: var(--light-color-ts-module);
189
- --color-ts-namespace: var(--light-color-ts-namespace);
190
- --color-ts-enum: var(--light-color-ts-enum);
191
- --color-ts-enum-member: var(--light-color-ts-enum-member);
192
- --color-ts-variable: var(--light-color-ts-variable);
193
- --color-ts-function: var(--light-color-ts-function);
194
- --color-ts-class: var(--light-color-ts-class);
195
- --color-ts-interface: var(--light-color-ts-interface);
196
- --color-ts-constructor: var(--light-color-ts-constructor);
197
- --color-ts-property: var(--light-color-ts-property);
198
- --color-ts-method: var(--light-color-ts-method);
199
- --color-ts-call-signature: var(--light-color-ts-call-signature);
200
- --color-ts-index-signature: var(--light-color-ts-index-signature);
201
- --color-ts-constructor-signature: var(
202
- --light-color-ts-constructor-signature
203
- );
204
- --color-ts-parameter: var(--light-color-ts-parameter);
205
- --color-ts-type-parameter: var(--light-color-ts-type-parameter);
206
- --color-ts-accessor: var(--light-color-ts-accessor);
207
- --color-ts-get-signature: var(--light-color-ts-get-signature);
208
- --color-ts-set-signature: var(--light-color-ts-set-signature);
209
- --color-ts-type-alias: var(--light-color-ts-type-alias);
210
-
211
- --external-icon: var(--light-external-icon);
212
- --color-scheme: var(--light-color-scheme);
213
- }
354
+ *:focus-visible,
355
+ .tsd-accordion-summary:focus-visible svg {
356
+ outline: 2px solid var(--color-focus-outline);
357
+ }
214
358
 
215
- :root[data-theme="dark"] {
216
- --color-background: var(--dark-color-background);
217
- --color-background-secondary: var(--dark-color-background-secondary);
218
- --color-background-warning: var(--dark-color-background-warning);
219
- --color-warning-text: var(--dark-color-warning-text);
220
- --color-icon-background: var(--dark-color-icon-background);
221
- --color-accent: var(--dark-color-accent);
222
- --color-active-menu-item: var(--dark-color-active-menu-item);
223
- --color-text: var(--dark-color-text);
224
- --color-text-aside: var(--dark-color-text-aside);
225
- --color-link: var(--dark-color-link);
226
-
227
- --color-ts-keyword: var(--dark-color-ts-keyword);
228
- --color-ts-module: var(--dark-color-ts-module);
229
- --color-ts-namespace: var(--dark-color-ts-namespace);
230
- --color-ts-enum: var(--dark-color-ts-enum);
231
- --color-ts-enum-member: var(--dark-color-ts-enum-member);
232
- --color-ts-variable: var(--dark-color-ts-variable);
233
- --color-ts-function: var(--dark-color-ts-function);
234
- --color-ts-class: var(--dark-color-ts-class);
235
- --color-ts-interface: var(--dark-color-ts-interface);
236
- --color-ts-constructor: var(--dark-color-ts-constructor);
237
- --color-ts-property: var(--dark-color-ts-property);
238
- --color-ts-method: var(--dark-color-ts-method);
239
- --color-ts-call-signature: var(--dark-color-ts-call-signature);
240
- --color-ts-index-signature: var(--dark-color-ts-index-signature);
241
- --color-ts-constructor-signature: var(
242
- --dark-color-ts-constructor-signature
243
- );
244
- --color-ts-parameter: var(--dark-color-ts-parameter);
245
- --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
246
- --color-ts-accessor: var(--dark-color-ts-accessor);
247
- --color-ts-get-signature: var(--dark-color-ts-get-signature);
248
- --color-ts-set-signature: var(--dark-color-ts-set-signature);
249
- --color-ts-type-alias: var(--dark-color-ts-type-alias);
250
-
251
- --external-icon: var(--dark-external-icon);
252
- --color-scheme: var(--dark-color-scheme);
253
- }
359
+ .always-visible,
360
+ .always-visible .tsd-signatures {
361
+ display: inherit !important;
362
+ }
254
363
 
255
- .always-visible,
256
- .always-visible .tsd-signatures {
257
- display: inherit !important;
258
- }
364
+ h1,
365
+ h2,
366
+ h3,
367
+ h4,
368
+ h5,
369
+ h6 {
370
+ line-height: 1.2;
371
+ }
259
372
 
260
- h1,
261
- h2,
262
- h3,
263
- h4,
264
- h5,
265
- h6 {
266
- line-height: 1.2;
267
- }
373
+ h1 {
374
+ font-size: 1.875rem;
375
+ margin: 0.67rem 0;
376
+ }
268
377
 
269
- h1 > a:not(.link),
270
- h2 > a:not(.link),
271
- h3 > a:not(.link),
272
- h4 > a:not(.link),
273
- h5 > a:not(.link),
274
- h6 > a:not(.link) {
275
- text-decoration: none;
276
- color: var(--color-text);
277
- }
378
+ h2 {
379
+ font-size: 1.5rem;
380
+ margin: 0.83rem 0;
381
+ }
278
382
 
279
- h1 {
280
- font-size: 1.875rem;
281
- margin: 0.67rem 0;
282
- }
383
+ h3 {
384
+ font-size: 1.25rem;
385
+ margin: 1rem 0;
386
+ }
283
387
 
284
- h2 {
285
- font-size: 1.5rem;
286
- margin: 0.83rem 0;
287
- }
388
+ h4 {
389
+ font-size: 1.05rem;
390
+ margin: 1.33rem 0;
391
+ }
288
392
 
289
- h3 {
290
- font-size: 1.25rem;
291
- margin: 1rem 0;
292
- }
393
+ h5 {
394
+ font-size: 1rem;
395
+ margin: 1.5rem 0;
396
+ }
293
397
 
294
- h4 {
295
- font-size: 1.05rem;
296
- margin: 1.33rem 0;
297
- }
398
+ h6 {
399
+ font-size: 0.875rem;
400
+ margin: 2.33rem 0;
401
+ }
298
402
 
299
- h5 {
300
- font-size: 1rem;
301
- margin: 1.5rem 0;
302
- }
403
+ dl,
404
+ menu,
405
+ ol,
406
+ ul {
407
+ margin: 1em 0;
408
+ }
303
409
 
304
- h6 {
305
- font-size: 0.875rem;
306
- margin: 2.33rem 0;
307
- }
410
+ dd {
411
+ margin: 0 0 0 34px;
412
+ }
308
413
 
309
- .uppercase {
310
- text-transform: uppercase;
311
- }
414
+ .container {
415
+ max-width: 1700px;
416
+ padding: 0 2rem;
417
+ }
312
418
 
313
- dl,
314
- menu,
315
- ol,
316
- ul {
317
- margin: 1em 0;
318
- }
419
+ /* Footer */
420
+ footer {
421
+ border-top: 1px solid var(--color-accent);
422
+ padding-top: 1rem;
423
+ padding-bottom: 1rem;
424
+ max-height: 3.5rem;
425
+ }
426
+ footer > p {
427
+ margin: 0 1em;
428
+ }
319
429
 
320
- dd {
321
- margin: 0 0 0 40px;
322
- }
430
+ .container-main {
431
+ margin: 0 auto;
432
+ /* toolbar, footer, margin */
433
+ min-height: calc(100vh - 41px - 56px - 4rem);
434
+ }
323
435
 
324
- .container {
325
- max-width: 1700px;
326
- padding: 0 2rem;
327
- }
436
+ @keyframes fade-in {
437
+ from {
438
+ opacity: 0;
439
+ }
440
+ to {
441
+ opacity: 1;
442
+ }
443
+ }
444
+ @keyframes fade-out {
445
+ from {
446
+ opacity: 1;
447
+ visibility: visible;
448
+ }
449
+ to {
450
+ opacity: 0;
451
+ }
452
+ }
453
+ @keyframes fade-in-delayed {
454
+ 0% {
455
+ opacity: 0;
456
+ }
457
+ 33% {
458
+ opacity: 0;
459
+ }
460
+ 100% {
461
+ opacity: 1;
462
+ }
463
+ }
464
+ @keyframes fade-out-delayed {
465
+ 0% {
466
+ opacity: 1;
467
+ visibility: visible;
468
+ }
469
+ 66% {
470
+ opacity: 0;
471
+ }
472
+ 100% {
473
+ opacity: 0;
474
+ }
475
+ }
476
+ @keyframes pop-in-from-right {
477
+ from {
478
+ transform: translate(100%, 0);
479
+ }
480
+ to {
481
+ transform: translate(0, 0);
482
+ }
483
+ }
484
+ @keyframes pop-out-to-right {
485
+ from {
486
+ transform: translate(0, 0);
487
+ visibility: visible;
488
+ }
489
+ to {
490
+ transform: translate(100%, 0);
491
+ }
492
+ }
493
+ body {
494
+ background: var(--color-background);
495
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
496
+ Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
497
+ font-size: 16px;
498
+ color: var(--color-text);
499
+ }
328
500
 
329
- /* Footer */
330
- footer {
331
- border-top: 1px solid var(--color-accent);
332
- padding-top: 1rem;
333
- padding-bottom: 1rem;
334
- max-height: 3.5rem;
335
- }
336
- .tsd-generator {
337
- margin: 0 1em;
338
- }
501
+ a {
502
+ color: var(--color-link);
503
+ text-decoration: none;
504
+ }
505
+ a:hover {
506
+ text-decoration: underline;
507
+ }
508
+ a.external[target="_blank"] {
509
+ background-image: var(--external-icon);
510
+ background-position: top 3px right;
511
+ background-repeat: no-repeat;
512
+ padding-right: 13px;
513
+ }
514
+ a.tsd-anchor-link {
515
+ color: var(--color-text);
516
+ }
339
517
 
340
- .container-main {
341
- margin: 0 auto;
342
- /* toolbar, footer, margin */
343
- min-height: calc(100vh - 41px - 56px - 4rem);
344
- }
518
+ code,
519
+ pre {
520
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
521
+ padding: 0.2em;
522
+ margin: 0;
523
+ font-size: 0.875rem;
524
+ border-radius: 0.8em;
525
+ }
345
526
 
346
- @keyframes fade-in {
347
- from {
527
+ pre {
528
+ position: relative;
529
+ white-space: pre-wrap;
530
+ word-wrap: break-word;
531
+ padding: 10px;
532
+ border: 1px solid var(--color-accent);
533
+ margin-bottom: 8px;
534
+ }
535
+ pre code {
536
+ padding: 0;
537
+ font-size: 100%;
538
+ }
539
+ pre > button {
540
+ position: absolute;
541
+ top: 10px;
542
+ right: 10px;
348
543
  opacity: 0;
544
+ transition: opacity 0.1s;
545
+ box-sizing: border-box;
349
546
  }
350
- to {
547
+ pre:hover > button,
548
+ pre > button.visible {
351
549
  opacity: 1;
352
550
  }
353
- }
354
- @keyframes fade-out {
355
- from {
356
- opacity: 1;
357
- visibility: visible;
551
+
552
+ blockquote {
553
+ margin: 1em 0;
554
+ padding-left: 1em;
555
+ border-left: 4px solid gray;
358
556
  }
359
- to {
360
- opacity: 0;
557
+
558
+ .tsd-typography {
559
+ line-height: 1.333em;
361
560
  }
362
- }
363
- @keyframes fade-in-delayed {
364
- 0% {
365
- opacity: 0;
561
+ .tsd-typography ul {
562
+ list-style: square;
563
+ padding: 0 0 0 20px;
564
+ margin: 0;
366
565
  }
367
- 33% {
368
- opacity: 0;
566
+ .tsd-typography .tsd-index-panel h3,
567
+ .tsd-index-panel .tsd-typography h3,
568
+ .tsd-typography h4,
569
+ .tsd-typography h5,
570
+ .tsd-typography h6 {
571
+ font-size: 1em;
369
572
  }
370
- 100% {
371
- opacity: 1;
573
+ .tsd-typography h5,
574
+ .tsd-typography h6 {
575
+ font-weight: normal;
372
576
  }
373
- }
374
- @keyframes fade-out-delayed {
375
- 0% {
376
- opacity: 1;
377
- visibility: visible;
577
+ .tsd-typography p,
578
+ .tsd-typography ul,
579
+ .tsd-typography ol {
580
+ margin: 1em 0;
378
581
  }
379
- 66% {
380
- opacity: 0;
582
+ .tsd-typography table {
583
+ border-collapse: collapse;
584
+ border: none;
381
585
  }
382
- 100% {
383
- opacity: 0;
586
+ .tsd-typography td,
587
+ .tsd-typography th {
588
+ padding: 6px 13px;
589
+ border: 1px solid var(--color-accent);
384
590
  }
385
- }
386
- @keyframes pop-in-from-right {
387
- from {
388
- transform: translate(100%, 0);
591
+ .tsd-typography thead,
592
+ .tsd-typography tr:nth-child(even) {
593
+ background-color: var(--color-background-secondary);
389
594
  }
390
- to {
391
- transform: translate(0, 0);
595
+
596
+ .tsd-alert {
597
+ padding: 8px 16px;
598
+ margin-bottom: 16px;
599
+ border-left: 0.25em solid var(--alert-color);
392
600
  }
393
- }
394
- @keyframes pop-out-to-right {
395
- from {
396
- transform: translate(0, 0);
397
- visibility: visible;
601
+ .tsd-alert blockquote > :last-child,
602
+ .tsd-alert > :last-child {
603
+ margin-bottom: 0;
398
604
  }
399
- to {
400
- transform: translate(100%, 0);
605
+ .tsd-alert-title {
606
+ color: var(--alert-color);
607
+ display: inline-flex;
608
+ align-items: center;
609
+ }
610
+ .tsd-alert-title span {
611
+ margin-left: 4px;
401
612
  }
402
- }
403
- body {
404
- background: var(--color-background);
405
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
406
- Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
407
- font-size: 16px;
408
- color: var(--color-text);
409
- }
410
-
411
- a {
412
- color: var(--color-link);
413
- text-decoration: none;
414
- }
415
- a:hover {
416
- text-decoration: underline;
417
- }
418
- a.external[target="_blank"] {
419
- background-image: var(--external-icon);
420
- background-position: top 3px right;
421
- background-repeat: no-repeat;
422
- padding-right: 13px;
423
- }
424
613
 
425
- code,
426
- pre {
427
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
428
- padding: 0.2em;
429
- margin: 0;
430
- font-size: 0.875rem;
431
- border-radius: 0.8em;
432
- }
614
+ .tsd-alert-note {
615
+ --alert-color: var(--color-alert-note);
616
+ }
617
+ .tsd-alert-tip {
618
+ --alert-color: var(--color-alert-tip);
619
+ }
620
+ .tsd-alert-important {
621
+ --alert-color: var(--color-alert-important);
622
+ }
623
+ .tsd-alert-warning {
624
+ --alert-color: var(--color-alert-warning);
625
+ }
626
+ .tsd-alert-caution {
627
+ --alert-color: var(--color-alert-caution);
628
+ }
433
629
 
434
- pre {
435
- position: relative;
436
- white-space: pre;
437
- white-space: pre-wrap;
438
- word-wrap: break-word;
439
- padding: 10px;
440
- border: 1px solid var(--color-accent);
441
- }
442
- pre code {
443
- padding: 0;
444
- font-size: 100%;
445
- }
446
- pre > button {
447
- position: absolute;
448
- top: 10px;
449
- right: 10px;
450
- opacity: 0;
451
- transition: opacity 0.1s;
452
- box-sizing: border-box;
453
- }
454
- pre:hover > button,
455
- pre > button.visible {
456
- opacity: 1;
457
- }
630
+ .tsd-breadcrumb {
631
+ margin: 0;
632
+ padding: 0;
633
+ color: var(--color-text-aside);
634
+ }
635
+ .tsd-breadcrumb a {
636
+ color: var(--color-text-aside);
637
+ text-decoration: none;
638
+ }
639
+ .tsd-breadcrumb a:hover {
640
+ text-decoration: underline;
641
+ }
642
+ .tsd-breadcrumb li {
643
+ display: inline;
644
+ }
645
+ .tsd-breadcrumb li:after {
646
+ content: " / ";
647
+ }
458
648
 
459
- blockquote {
460
- margin: 1em 0;
461
- padding-left: 1em;
462
- border-left: 4px solid gray;
463
- }
649
+ .tsd-comment-tags {
650
+ display: flex;
651
+ flex-direction: column;
652
+ }
653
+ dl.tsd-comment-tag-group {
654
+ display: flex;
655
+ align-items: center;
656
+ overflow: hidden;
657
+ margin: 0.5em 0;
658
+ }
659
+ dl.tsd-comment-tag-group dt {
660
+ display: flex;
661
+ margin-right: 0.5em;
662
+ font-size: 0.875em;
663
+ font-weight: normal;
664
+ }
665
+ dl.tsd-comment-tag-group dd {
666
+ margin: 0;
667
+ }
668
+ code.tsd-tag {
669
+ padding: 0.25em 0.4em;
670
+ border: 0.1em solid var(--color-accent);
671
+ margin-right: 0.25em;
672
+ font-size: 70%;
673
+ }
674
+ h1 code.tsd-tag:first-of-type {
675
+ margin-left: 0.25em;
676
+ }
464
677
 
465
- .tsd-typography {
466
- line-height: 1.333em;
467
- }
468
- .tsd-typography ul {
469
- list-style: square;
470
- padding: 0 0 0 20px;
471
- margin: 0;
472
- }
473
- .tsd-typography .tsd-index-panel h3,
474
- .tsd-index-panel .tsd-typography h3,
475
- .tsd-typography h4,
476
- .tsd-typography h5,
477
- .tsd-typography h6 {
478
- font-size: 1em;
479
- }
480
- .tsd-typography h5,
481
- .tsd-typography h6 {
482
- font-weight: normal;
483
- }
484
- .tsd-typography p,
485
- .tsd-typography ul,
486
- .tsd-typography ol {
487
- margin: 1em 0;
488
- }
489
- .tsd-typography table {
490
- border-collapse: collapse;
491
- border: none;
492
- }
493
- .tsd-typography td,
494
- .tsd-typography th {
495
- padding: 6px 13px;
496
- border: 1px solid var(--color-accent);
497
- }
498
- .tsd-typography thead,
499
- .tsd-typography tr:nth-child(even) {
500
- background-color: var(--color-background-secondary);
501
- }
678
+ dl.tsd-comment-tag-group dd:before,
679
+ dl.tsd-comment-tag-group dd:after {
680
+ content: " ";
681
+ }
682
+ dl.tsd-comment-tag-group dd pre,
683
+ dl.tsd-comment-tag-group dd:after {
684
+ clear: both;
685
+ }
686
+ dl.tsd-comment-tag-group p {
687
+ margin: 0;
688
+ }
502
689
 
503
- .tsd-breadcrumb {
504
- margin: 0;
505
- padding: 0;
506
- color: var(--color-text-aside);
507
- }
508
- .tsd-breadcrumb a {
509
- color: var(--color-text-aside);
510
- text-decoration: none;
511
- }
512
- .tsd-breadcrumb a:hover {
513
- text-decoration: underline;
514
- }
515
- .tsd-breadcrumb li {
516
- display: inline;
517
- }
518
- .tsd-breadcrumb li:after {
519
- content: " / ";
520
- }
690
+ .tsd-panel.tsd-comment .lead {
691
+ font-size: 1.1em;
692
+ line-height: 1.333em;
693
+ margin-bottom: 2em;
694
+ }
695
+ .tsd-panel.tsd-comment .lead:last-child {
696
+ margin-bottom: 0;
697
+ }
521
698
 
522
- .tsd-comment-tags {
523
- display: flex;
524
- flex-direction: column;
525
- }
526
- dl.tsd-comment-tag-group {
527
- display: flex;
528
- align-items: center;
529
- overflow: hidden;
530
- margin: 0.5em 0;
531
- }
532
- dl.tsd-comment-tag-group dt {
533
- display: flex;
534
- margin-right: 0.5em;
535
- font-size: 0.875em;
536
- font-weight: normal;
537
- }
538
- dl.tsd-comment-tag-group dd {
539
- margin: 0;
540
- }
541
- code.tsd-tag {
542
- padding: 0.25em 0.4em;
543
- border: 0.1em solid var(--color-accent);
544
- margin-right: 0.25em;
545
- font-size: 70%;
546
- }
547
- h1 code.tsd-tag:first-of-type {
548
- margin-left: 0.25em;
549
- }
699
+ .tsd-filter-visibility h4 {
700
+ font-size: 1rem;
701
+ padding-top: 0.75rem;
702
+ padding-bottom: 0.5rem;
703
+ margin: 0;
704
+ }
705
+ .tsd-filter-item:not(:last-child) {
706
+ margin-bottom: 0.5rem;
707
+ }
708
+ .tsd-filter-input {
709
+ display: flex;
710
+ width: -moz-fit-content;
711
+ width: fit-content;
712
+ align-items: center;
713
+ -webkit-user-select: none;
714
+ -moz-user-select: none;
715
+ -ms-user-select: none;
716
+ user-select: none;
717
+ cursor: pointer;
718
+ }
719
+ .tsd-filter-input input[type="checkbox"] {
720
+ cursor: pointer;
721
+ position: absolute;
722
+ width: 1.5em;
723
+ height: 1.5em;
724
+ opacity: 0;
725
+ }
726
+ .tsd-filter-input input[type="checkbox"]:disabled {
727
+ pointer-events: none;
728
+ }
729
+ .tsd-filter-input svg {
730
+ cursor: pointer;
731
+ width: 1.5em;
732
+ height: 1.5em;
733
+ margin-right: 0.5em;
734
+ border-radius: 0.33em;
735
+ /* Leaving this at full opacity breaks event listeners on Firefox.
736
+ Don't remove unless you know what you're doing. */
737
+ opacity: 0.99;
738
+ }
739
+ .tsd-filter-input input[type="checkbox"]:focus-visible + svg {
740
+ outline: 2px solid var(--color-focus-outline);
741
+ }
742
+ .tsd-checkbox-background {
743
+ fill: var(--color-accent);
744
+ }
745
+ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
746
+ stroke: var(--color-text);
747
+ }
748
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
749
+ fill: var(--color-background);
750
+ stroke: var(--color-accent);
751
+ stroke-width: 0.25rem;
752
+ }
753
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
754
+ stroke: var(--color-accent);
755
+ }
550
756
 
551
- dl.tsd-comment-tag-group dd:before,
552
- dl.tsd-comment-tag-group dd:after {
553
- content: " ";
554
- }
555
- dl.tsd-comment-tag-group dd pre,
556
- dl.tsd-comment-tag-group dd:after {
557
- clear: both;
558
- }
559
- dl.tsd-comment-tag-group p {
560
- margin: 0;
561
- }
757
+ .settings-label {
758
+ font-weight: bold;
759
+ text-transform: uppercase;
760
+ display: inline-block;
761
+ }
562
762
 
563
- .tsd-panel.tsd-comment .lead {
564
- font-size: 1.1em;
565
- line-height: 1.333em;
566
- margin-bottom: 2em;
567
- }
568
- .tsd-panel.tsd-comment .lead:last-child {
569
- margin-bottom: 0;
570
- }
763
+ .tsd-filter-visibility .settings-label {
764
+ margin: 0.75rem 0 0.5rem 0;
765
+ }
571
766
 
572
- .tsd-filter-visibility h4 {
573
- font-size: 1rem;
574
- padding-top: 0.75rem;
575
- padding-bottom: 0.5rem;
576
- margin: 0;
577
- }
578
- .tsd-filter-item:not(:last-child) {
579
- margin-bottom: 0.5rem;
580
- }
581
- .tsd-filter-input {
582
- display: flex;
583
- width: fit-content;
584
- width: -moz-fit-content;
585
- align-items: center;
586
- user-select: none;
587
- -webkit-user-select: none;
588
- -moz-user-select: none;
589
- -ms-user-select: none;
590
- cursor: pointer;
591
- }
592
- .tsd-filter-input input[type="checkbox"] {
593
- cursor: pointer;
594
- position: absolute;
595
- width: 1.5em;
596
- height: 1.5em;
597
- opacity: 0;
598
- }
599
- .tsd-filter-input input[type="checkbox"]:disabled {
600
- pointer-events: none;
601
- }
602
- .tsd-filter-input svg {
603
- cursor: pointer;
604
- width: 1.5em;
605
- height: 1.5em;
606
- margin-right: 0.5em;
607
- border-radius: 0.33em;
608
- /* Leaving this at full opacity breaks event listeners on Firefox.
609
- Don't remove unless you know what you're doing. */
610
- opacity: 0.99;
611
- }
612
- .tsd-filter-input input[type="checkbox"]:focus + svg {
613
- transform: scale(0.95);
614
- }
615
- .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
616
- transform: scale(1);
617
- }
618
- .tsd-checkbox-background {
619
- fill: var(--color-accent);
620
- }
621
- input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
622
- stroke: var(--color-text);
623
- }
624
- .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
625
- fill: var(--color-background);
626
- stroke: var(--color-accent);
627
- stroke-width: 0.25rem;
628
- }
629
- .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
630
- stroke: var(--color-accent);
631
- }
767
+ .tsd-theme-toggle .settings-label {
768
+ margin: 0.75rem 0.75rem 0 0;
769
+ }
632
770
 
633
- .tsd-theme-toggle {
634
- padding-top: 0.75rem;
635
- }
636
- .tsd-theme-toggle > h4 {
637
- display: inline;
638
- vertical-align: middle;
639
- margin-right: 0.75rem;
640
- }
771
+ .tsd-hierarchy h4 label:hover span {
772
+ text-decoration: underline;
773
+ }
641
774
 
642
- .tsd-hierarchy {
643
- list-style: square;
644
- margin: 0;
645
- }
646
- .tsd-hierarchy .target {
647
- font-weight: bold;
648
- }
775
+ .tsd-hierarchy {
776
+ list-style: square;
777
+ margin: 0;
778
+ }
779
+ .tsd-hierarchy-target {
780
+ font-weight: bold;
781
+ }
782
+ .tsd-hierarchy-toggle {
783
+ color: var(--color-link);
784
+ cursor: pointer;
785
+ }
649
786
 
650
- .tsd-full-hierarchy:not(:last-child) {
651
- margin-bottom: 1em;
652
- padding-bottom: 1em;
653
- border-bottom: 1px solid var(--color-accent);
654
- }
655
- .tsd-full-hierarchy,
656
- .tsd-full-hierarchy ul {
657
- list-style: none;
658
- margin: 0;
659
- padding: 0;
660
- }
661
- .tsd-full-hierarchy ul {
662
- padding-left: 1.5rem;
663
- }
664
- .tsd-full-hierarchy a {
665
- padding: 0.25rem 0 !important;
666
- font-size: 1rem;
667
- display: inline-flex;
668
- align-items: center;
669
- color: var(--color-text);
670
- }
787
+ .tsd-full-hierarchy:not(:last-child) {
788
+ margin-bottom: 1em;
789
+ padding-bottom: 1em;
790
+ border-bottom: 1px solid var(--color-accent);
791
+ }
792
+ .tsd-full-hierarchy,
793
+ .tsd-full-hierarchy ul {
794
+ list-style: none;
795
+ margin: 0;
796
+ padding: 0;
797
+ }
798
+ .tsd-full-hierarchy ul {
799
+ padding-left: 1.5rem;
800
+ }
801
+ .tsd-full-hierarchy a {
802
+ padding: 0.25rem 0 !important;
803
+ font-size: 1rem;
804
+ display: inline-flex;
805
+ align-items: center;
806
+ color: var(--color-text);
807
+ }
808
+ .tsd-full-hierarchy svg[data-dropdown] {
809
+ cursor: pointer;
810
+ }
811
+ .tsd-full-hierarchy svg[data-dropdown="false"] {
812
+ transform: rotate(-90deg);
813
+ }
814
+ .tsd-full-hierarchy svg[data-dropdown="false"] ~ ul {
815
+ display: none;
816
+ }
671
817
 
672
- .tsd-panel-group.tsd-index-group {
673
- margin-bottom: 0;
674
- }
675
- .tsd-index-panel .tsd-index-list {
676
- list-style: none;
677
- line-height: 1.333em;
678
- margin: 0;
679
- padding: 0.25rem 0 0 0;
680
- overflow: hidden;
681
- display: grid;
682
- grid-template-columns: repeat(3, 1fr);
683
- column-gap: 1rem;
684
- grid-template-rows: auto;
685
- }
686
- @media (max-width: 1024px) {
687
- .tsd-index-panel .tsd-index-list {
688
- grid-template-columns: repeat(2, 1fr);
818
+ .tsd-panel-group.tsd-index-group {
819
+ margin-bottom: 0;
689
820
  }
690
- }
691
- @media (max-width: 768px) {
692
821
  .tsd-index-panel .tsd-index-list {
693
- grid-template-columns: repeat(1, 1fr);
822
+ list-style: none;
823
+ line-height: 1.333em;
824
+ margin: 0;
825
+ padding: 0.25rem 0 0 0;
826
+ overflow: hidden;
827
+ display: grid;
828
+ grid-template-columns: repeat(3, 1fr);
829
+ column-gap: 1rem;
830
+ grid-template-rows: auto;
831
+ }
832
+ @media (max-width: 1024px) {
833
+ .tsd-index-panel .tsd-index-list {
834
+ grid-template-columns: repeat(2, 1fr);
835
+ }
836
+ }
837
+ @media (max-width: 768px) {
838
+ .tsd-index-panel .tsd-index-list {
839
+ grid-template-columns: repeat(1, 1fr);
840
+ }
841
+ }
842
+ .tsd-index-panel .tsd-index-list li {
843
+ -webkit-page-break-inside: avoid;
844
+ -moz-page-break-inside: avoid;
845
+ -ms-page-break-inside: avoid;
846
+ -o-page-break-inside: avoid;
847
+ page-break-inside: avoid;
694
848
  }
695
- }
696
- .tsd-index-panel .tsd-index-list li {
697
- -webkit-page-break-inside: avoid;
698
- -moz-page-break-inside: avoid;
699
- -ms-page-break-inside: avoid;
700
- -o-page-break-inside: avoid;
701
- page-break-inside: avoid;
702
- }
703
-
704
- .tsd-flag {
705
- display: inline-block;
706
- padding: 0.25em 0.4em;
707
- border-radius: 4px;
708
- color: var(--color-comment-tag-text);
709
- background-color: var(--color-comment-tag);
710
- text-indent: 0;
711
- font-size: 75%;
712
- line-height: 1;
713
- font-weight: normal;
714
- }
715
849
 
716
- .tsd-anchor {
717
- position: relative;
718
- top: -100px;
719
- }
850
+ .tsd-flag {
851
+ display: inline-block;
852
+ padding: 0.25em 0.4em;
853
+ border-radius: 4px;
854
+ color: var(--color-comment-tag-text);
855
+ background-color: var(--color-comment-tag);
856
+ text-indent: 0;
857
+ font-size: 75%;
858
+ line-height: 1;
859
+ font-weight: normal;
860
+ }
720
861
 
721
- .tsd-member {
722
- position: relative;
723
- }
724
- .tsd-member .tsd-anchor + h3 {
725
- display: flex;
726
- align-items: center;
727
- margin-top: 0;
728
- margin-bottom: 0;
729
- border-bottom: none;
730
- }
862
+ .tsd-anchor {
863
+ position: relative;
864
+ top: -100px;
865
+ }
731
866
 
732
- .tsd-navigation.settings {
733
- margin: 1rem 0;
734
- }
735
- .tsd-navigation > a,
736
- .tsd-navigation .tsd-accordion-summary {
737
- width: calc(100% - 0.25rem);
738
- display: flex;
739
- align-items: center;
740
- }
741
- .tsd-navigation a,
742
- .tsd-navigation summary > span,
743
- .tsd-page-navigation a {
744
- display: flex;
745
- width: calc(100% - 0.25rem);
746
- align-items: center;
747
- padding: 0.25rem;
748
- color: var(--color-text);
749
- text-decoration: none;
750
- box-sizing: border-box;
751
- }
752
- .tsd-navigation a.current,
753
- .tsd-page-navigation a.current {
754
- background: var(--color-active-menu-item);
755
- }
756
- .tsd-navigation a:hover,
757
- .tsd-page-navigation a:hover {
758
- text-decoration: underline;
759
- }
760
- .tsd-navigation ul,
761
- .tsd-page-navigation ul {
762
- margin-top: 0;
763
- margin-bottom: 0;
764
- padding: 0;
765
- list-style: none;
766
- }
767
- .tsd-navigation li,
768
- .tsd-page-navigation li {
769
- padding: 0;
770
- max-width: 100%;
771
- }
772
- .tsd-nested-navigation {
773
- margin-left: 3rem;
774
- }
775
- .tsd-nested-navigation > li > details {
776
- margin-left: -1.5rem;
777
- }
778
- .tsd-small-nested-navigation {
779
- margin-left: 1.5rem;
780
- }
781
- .tsd-small-nested-navigation > li > details {
782
- margin-left: -1.5rem;
783
- }
867
+ .tsd-member {
868
+ position: relative;
869
+ }
870
+ .tsd-member .tsd-anchor + h3 {
871
+ display: flex;
872
+ align-items: center;
873
+ margin-top: 0;
874
+ margin-bottom: 0;
875
+ border-bottom: none;
876
+ }
784
877
 
785
- .tsd-page-navigation ul {
786
- padding-left: 1.75rem;
787
- }
878
+ .tsd-navigation.settings {
879
+ margin: 1rem 0;
880
+ }
881
+ .tsd-navigation > a,
882
+ .tsd-navigation .tsd-accordion-summary {
883
+ width: calc(100% - 0.25rem);
884
+ display: flex;
885
+ align-items: center;
886
+ }
887
+ .tsd-navigation a,
888
+ .tsd-navigation summary > span,
889
+ .tsd-page-navigation a {
890
+ display: flex;
891
+ width: calc(100% - 0.25rem);
892
+ align-items: center;
893
+ padding: 0.25rem;
894
+ color: var(--color-text);
895
+ text-decoration: none;
896
+ box-sizing: border-box;
897
+ }
898
+ .tsd-navigation a.current,
899
+ .tsd-page-navigation a.current {
900
+ background: var(--color-active-menu-item);
901
+ }
902
+ .tsd-navigation a:hover,
903
+ .tsd-page-navigation a:hover {
904
+ text-decoration: underline;
905
+ }
906
+ .tsd-navigation ul,
907
+ .tsd-page-navigation ul {
908
+ margin-top: 0;
909
+ margin-bottom: 0;
910
+ padding: 0;
911
+ list-style: none;
912
+ }
913
+ .tsd-navigation li,
914
+ .tsd-page-navigation li {
915
+ padding: 0;
916
+ max-width: 100%;
917
+ }
918
+ .tsd-navigation .tsd-nav-link {
919
+ display: none;
920
+ }
921
+ .tsd-nested-navigation {
922
+ margin-left: 3rem;
923
+ }
924
+ .tsd-nested-navigation > li > details {
925
+ margin-left: -1.5rem;
926
+ }
927
+ .tsd-small-nested-navigation {
928
+ margin-left: 1.5rem;
929
+ }
930
+ .tsd-small-nested-navigation > li > details {
931
+ margin-left: -1.5rem;
932
+ }
788
933
 
789
- #tsd-sidebar-links a {
790
- margin-top: 0;
791
- margin-bottom: 0.5rem;
792
- line-height: 1.25rem;
793
- }
794
- #tsd-sidebar-links a:last-of-type {
795
- margin-bottom: 0;
796
- }
797
-
798
- a.tsd-index-link {
799
- padding: 0.25rem 0 !important;
800
- font-size: 1rem;
801
- line-height: 1.25rem;
802
- display: inline-flex;
803
- align-items: center;
804
- color: var(--color-text);
805
- }
806
- .tsd-accordion-summary {
807
- list-style-type: none; /* hide marker on non-safari */
808
- outline: none; /* broken on safari, so just hide it */
809
- }
810
- .tsd-accordion-summary::-webkit-details-marker {
811
- display: none; /* hide marker on safari */
812
- }
813
- .tsd-accordion-summary,
814
- .tsd-accordion-summary a {
815
- user-select: none;
816
- -moz-user-select: none;
817
- -webkit-user-select: none;
818
- -ms-user-select: none;
819
-
820
- cursor: pointer;
821
- }
822
- .tsd-accordion-summary a {
823
- width: calc(100% - 1.5rem);
824
- }
825
- .tsd-accordion-summary > * {
826
- margin-top: 0;
827
- margin-bottom: 0;
828
- padding-top: 0;
829
- padding-bottom: 0;
830
- }
831
- .tsd-index-accordion .tsd-accordion-summary > svg {
832
- margin-left: 0.25rem;
833
- }
834
- .tsd-index-content > :not(:first-child) {
835
- margin-top: 0.75rem;
836
- }
837
- .tsd-index-heading {
838
- margin-top: 1.5rem;
839
- margin-bottom: 0.75rem;
840
- }
841
-
842
- .tsd-kind-icon {
843
- margin-right: 0.5rem;
844
- width: 1.25rem;
845
- height: 1.25rem;
846
- min-width: 1.25rem;
847
- min-height: 1.25rem;
848
- }
849
- .tsd-kind-icon path {
850
- transform-origin: center;
851
- transform: scale(1.1);
852
- }
853
- .tsd-signature > .tsd-kind-icon {
854
- margin-right: 0.8rem;
855
- }
856
-
857
- .tsd-panel {
858
- margin-bottom: 2.5rem;
859
- }
860
- .tsd-panel.tsd-member {
861
- margin-bottom: 4rem;
862
- }
863
- .tsd-panel:empty {
864
- display: none;
865
- }
866
- .tsd-panel > h1,
867
- .tsd-panel > h2,
868
- .tsd-panel > h3 {
869
- margin: 1.5rem -1.5rem 0.75rem -1.5rem;
870
- padding: 0 1.5rem 0.75rem 1.5rem;
871
- }
872
- .tsd-panel > h1.tsd-before-signature,
873
- .tsd-panel > h2.tsd-before-signature,
874
- .tsd-panel > h3.tsd-before-signature {
875
- margin-bottom: 0;
876
- border-bottom: none;
877
- }
878
-
879
- .tsd-panel-group {
880
- margin: 4rem 0;
881
- }
882
- .tsd-panel-group.tsd-index-group {
883
- margin: 2rem 0;
884
- }
885
- .tsd-panel-group.tsd-index-group details {
886
- margin: 2rem 0;
887
- }
888
-
889
- #tsd-search {
890
- transition: background-color 0.2s;
891
- }
892
- #tsd-search .title {
893
- position: relative;
894
- z-index: 2;
895
- }
896
- #tsd-search .field {
897
- position: absolute;
898
- left: 0;
899
- top: 0;
900
- right: 2.5rem;
901
- height: 100%;
902
- }
903
- #tsd-search .field input {
904
- box-sizing: border-box;
905
- position: relative;
906
- top: -50px;
907
- z-index: 1;
908
- width: 100%;
909
- padding: 0 10px;
910
- opacity: 0;
911
- outline: 0;
912
- border: 0;
913
- background: transparent;
914
- color: var(--color-text);
915
- }
916
- #tsd-search .field label {
917
- position: absolute;
918
- overflow: hidden;
919
- right: -40px;
920
- }
921
- #tsd-search .field input,
922
- #tsd-search .title,
923
- #tsd-toolbar-links a {
924
- transition: opacity 0.2s;
925
- }
926
- #tsd-search .results {
927
- position: absolute;
928
- visibility: hidden;
929
- top: 40px;
930
- width: 100%;
931
- margin: 0;
932
- padding: 0;
933
- list-style: none;
934
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
935
- }
936
- #tsd-search .results li {
937
- background-color: var(--color-background);
938
- line-height: initial;
939
- padding: 4px;
940
- }
941
- #tsd-search .results li:nth-child(even) {
942
- background-color: var(--color-background-secondary);
943
- }
944
- #tsd-search .results li.state {
945
- display: none;
946
- }
947
- #tsd-search .results li.current:not(.no-results),
948
- #tsd-search .results li:hover:not(.no-results) {
949
- background-color: var(--color-accent);
950
- }
951
- #tsd-search .results a {
952
- display: flex;
953
- align-items: center;
954
- padding: 0.25rem;
955
- box-sizing: border-box;
956
- }
957
- #tsd-search .results a:before {
958
- top: 10px;
959
- }
960
- #tsd-search .results span.parent {
961
- color: var(--color-text-aside);
962
- font-weight: normal;
963
- }
964
- #tsd-search.has-focus {
965
- background-color: var(--color-accent);
966
- }
967
- #tsd-search.has-focus .field input {
968
- top: 0;
969
- opacity: 1;
970
- }
971
- #tsd-search.has-focus .title,
972
- #tsd-search.has-focus #tsd-toolbar-links a {
973
- z-index: 0;
974
- opacity: 0;
975
- }
976
- #tsd-search.has-focus .results {
977
- visibility: visible;
978
- }
979
- #tsd-search.loading .results li.state.loading {
980
- display: block;
981
- }
982
- #tsd-search.failure .results li.state.failure {
983
- display: block;
984
- }
985
-
986
- #tsd-toolbar-links {
987
- position: absolute;
988
- top: 0;
989
- right: 2rem;
990
- height: 100%;
991
- display: flex;
992
- align-items: center;
993
- justify-content: flex-end;
994
- }
995
- #tsd-toolbar-links a {
996
- margin-left: 1.5rem;
997
- }
998
- #tsd-toolbar-links a:hover {
999
- text-decoration: underline;
1000
- }
1001
-
1002
- .tsd-signature {
1003
- margin: 0 0 1rem 0;
1004
- padding: 1rem 0.5rem;
1005
- border: 1px solid var(--color-accent);
1006
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1007
- font-size: 14px;
1008
- overflow-x: auto;
1009
- }
1010
-
1011
- .tsd-signature-keyword {
1012
- color: var(--color-ts-keyword);
1013
- font-weight: normal;
1014
- }
1015
-
1016
- .tsd-signature-symbol {
1017
- color: var(--color-text-aside);
1018
- font-weight: normal;
1019
- }
1020
-
1021
- .tsd-signature-type {
1022
- font-style: italic;
1023
- font-weight: normal;
1024
- }
1025
-
1026
- .tsd-signatures {
1027
- padding: 0;
1028
- margin: 0 0 1em 0;
1029
- list-style-type: none;
1030
- }
1031
- .tsd-signatures .tsd-signature {
1032
- margin: 0;
1033
- border-color: var(--color-accent);
1034
- border-width: 1px 0;
1035
- transition: background-color 0.1s;
1036
- }
1037
- .tsd-description .tsd-signatures .tsd-signature {
1038
- border-width: 1px;
1039
- }
1040
-
1041
- ul.tsd-parameter-list,
1042
- ul.tsd-type-parameter-list {
1043
- list-style: square;
1044
- margin: 0;
1045
- padding-left: 20px;
1046
- }
1047
- ul.tsd-parameter-list > li.tsd-parameter-signature,
1048
- ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1049
- list-style: none;
1050
- margin-left: -20px;
1051
- }
1052
- ul.tsd-parameter-list h5,
1053
- ul.tsd-type-parameter-list h5 {
1054
- font-size: 16px;
1055
- margin: 1em 0 0.5em 0;
1056
- }
1057
- .tsd-sources {
1058
- margin-top: 1rem;
1059
- font-size: 0.875em;
1060
- }
1061
- .tsd-sources a {
1062
- color: var(--color-text-aside);
1063
- text-decoration: underline;
1064
- }
1065
- .tsd-sources ul {
1066
- list-style: none;
1067
- padding: 0;
1068
- }
934
+ .tsd-page-navigation-section {
935
+ margin-left: 10px;
936
+ }
937
+ .tsd-page-navigation-section > summary {
938
+ padding: 0.25rem;
939
+ }
940
+ .tsd-page-navigation-section > div {
941
+ margin-left: 20px;
942
+ }
943
+ .tsd-page-navigation ul {
944
+ padding-left: 1.75rem;
945
+ }
1069
946
 
1070
- .tsd-page-toolbar {
1071
- position: sticky;
1072
- z-index: 1;
1073
- top: 0;
1074
- left: 0;
1075
- width: 100%;
1076
- color: var(--color-text);
1077
- background: var(--color-background-secondary);
1078
- border-bottom: 1px var(--color-accent) solid;
1079
- transition: transform 0.3s ease-in-out;
1080
- }
1081
- .tsd-page-toolbar a {
1082
- color: var(--color-text);
1083
- text-decoration: none;
1084
- }
1085
- .tsd-page-toolbar a.title {
1086
- font-weight: bold;
1087
- }
1088
- .tsd-page-toolbar a.title:hover {
1089
- text-decoration: underline;
1090
- }
1091
- .tsd-page-toolbar .tsd-toolbar-contents {
1092
- display: flex;
1093
- justify-content: space-between;
1094
- height: 2.5rem;
1095
- margin: 0 auto;
1096
- }
1097
- .tsd-page-toolbar .table-cell {
1098
- position: relative;
1099
- white-space: nowrap;
1100
- line-height: 40px;
1101
- }
1102
- .tsd-page-toolbar .table-cell:first-child {
1103
- width: 100%;
1104
- }
1105
- .tsd-page-toolbar .tsd-toolbar-icon {
1106
- box-sizing: border-box;
1107
- line-height: 0;
1108
- padding: 12px 0;
1109
- }
947
+ #tsd-sidebar-links a {
948
+ margin-top: 0;
949
+ margin-bottom: 0.5rem;
950
+ line-height: 1.25rem;
951
+ }
952
+ #tsd-sidebar-links a:last-of-type {
953
+ margin-bottom: 0;
954
+ }
1110
955
 
1111
- .tsd-widget {
1112
- display: inline-block;
1113
- overflow: hidden;
1114
- opacity: 0.8;
1115
- height: 40px;
1116
- transition:
1117
- opacity 0.1s,
1118
- background-color 0.2s;
1119
- vertical-align: bottom;
1120
- cursor: pointer;
1121
- }
1122
- .tsd-widget:hover {
1123
- opacity: 0.9;
1124
- }
1125
- .tsd-widget.active {
1126
- opacity: 1;
1127
- background-color: var(--color-accent);
1128
- }
1129
- .tsd-widget.no-caption {
1130
- width: 40px;
1131
- }
1132
- .tsd-widget.no-caption:before {
1133
- margin: 0;
1134
- }
956
+ a.tsd-index-link {
957
+ padding: 0.25rem 0 !important;
958
+ font-size: 1rem;
959
+ line-height: 1.25rem;
960
+ display: inline-flex;
961
+ align-items: center;
962
+ color: var(--color-text);
963
+ }
964
+ .tsd-accordion-summary {
965
+ list-style-type: none; /* hide marker on non-safari */
966
+ outline: none; /* broken on safari, so just hide it */
967
+ }
968
+ .tsd-accordion-summary::-webkit-details-marker {
969
+ display: none; /* hide marker on safari */
970
+ }
971
+ .tsd-accordion-summary,
972
+ .tsd-accordion-summary a {
973
+ -moz-user-select: none;
974
+ -webkit-user-select: none;
975
+ -ms-user-select: none;
976
+ user-select: none;
977
+
978
+ cursor: pointer;
979
+ }
980
+ .tsd-accordion-summary a {
981
+ width: calc(100% - 1.5rem);
982
+ }
983
+ .tsd-accordion-summary > * {
984
+ margin-top: 0;
985
+ margin-bottom: 0;
986
+ padding-top: 0;
987
+ padding-bottom: 0;
988
+ }
989
+ .tsd-accordion .tsd-accordion-summary > svg {
990
+ margin-left: 0.25rem;
991
+ vertical-align: text-top;
992
+ }
993
+ /*
994
+ We need to be careful to target the arrow indicating whether the accordion
995
+ is open, but not any other SVGs included in the details element.
996
+ */
997
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child,
998
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h1 > svg:first-child,
999
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h2 > svg:first-child,
1000
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h3 > svg:first-child,
1001
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child {
1002
+ transform: rotate(-90deg);
1003
+ }
1004
+ .tsd-index-content > :not(:first-child) {
1005
+ margin-top: 0.75rem;
1006
+ }
1007
+ .tsd-index-heading {
1008
+ margin-top: 1.5rem;
1009
+ margin-bottom: 0.75rem;
1010
+ }
1135
1011
 
1136
- .tsd-widget.options,
1137
- .tsd-widget.menu {
1138
- display: none;
1139
- }
1140
- input[type="checkbox"] + .tsd-widget:before {
1141
- background-position: -120px 0;
1142
- }
1143
- input[type="checkbox"]:checked + .tsd-widget:before {
1144
- background-position: -160px 0;
1145
- }
1012
+ .tsd-no-select {
1013
+ -webkit-user-select: none;
1014
+ -moz-user-select: none;
1015
+ -ms-user-select: none;
1016
+ user-select: none;
1017
+ }
1018
+ .tsd-kind-icon {
1019
+ margin-right: 0.5rem;
1020
+ width: 1.25rem;
1021
+ height: 1.25rem;
1022
+ min-width: 1.25rem;
1023
+ min-height: 1.25rem;
1024
+ }
1025
+ .tsd-signature > .tsd-kind-icon {
1026
+ margin-right: 0.8rem;
1027
+ }
1146
1028
 
1147
- img {
1148
- max-width: 100%;
1149
- }
1029
+ .tsd-panel {
1030
+ margin-bottom: 2.5rem;
1031
+ }
1032
+ .tsd-panel.tsd-member {
1033
+ margin-bottom: 4rem;
1034
+ }
1035
+ .tsd-panel:empty {
1036
+ display: none;
1037
+ }
1038
+ .tsd-panel > h1,
1039
+ .tsd-panel > h2,
1040
+ .tsd-panel > h3 {
1041
+ margin: 1.5rem -1.5rem 0.75rem -1.5rem;
1042
+ padding: 0 1.5rem 0.75rem 1.5rem;
1043
+ }
1044
+ .tsd-panel > h1.tsd-before-signature,
1045
+ .tsd-panel > h2.tsd-before-signature,
1046
+ .tsd-panel > h3.tsd-before-signature {
1047
+ margin-bottom: 0;
1048
+ border-bottom: none;
1049
+ }
1150
1050
 
1151
- .tsd-anchor-icon {
1152
- display: inline-flex;
1153
- align-items: center;
1154
- margin-left: 0.5rem;
1155
- vertical-align: middle;
1156
- color: var(--color-text);
1157
- }
1051
+ .tsd-panel-group {
1052
+ margin: 2rem 0;
1053
+ }
1054
+ .tsd-panel-group.tsd-index-group {
1055
+ margin: 2rem 0;
1056
+ }
1057
+ .tsd-panel-group.tsd-index-group details {
1058
+ margin: 2rem 0;
1059
+ }
1060
+ .tsd-panel-group > .tsd-accordion-summary {
1061
+ margin-bottom: 1rem;
1062
+ }
1158
1063
 
1159
- .tsd-anchor-icon svg {
1160
- width: 1em;
1161
- height: 1em;
1162
- visibility: hidden;
1163
- }
1064
+ #tsd-search {
1065
+ transition: background-color 0.2s;
1066
+ }
1067
+ #tsd-search .title {
1068
+ position: relative;
1069
+ z-index: 2;
1070
+ }
1071
+ #tsd-search .field {
1072
+ position: absolute;
1073
+ left: 0;
1074
+ top: 0;
1075
+ right: 2.5rem;
1076
+ height: 100%;
1077
+ }
1078
+ #tsd-search .field input {
1079
+ box-sizing: border-box;
1080
+ position: relative;
1081
+ top: -50px;
1082
+ z-index: 1;
1083
+ width: 100%;
1084
+ padding: 0 10px;
1085
+ opacity: 0;
1086
+ outline: 0;
1087
+ border: 0;
1088
+ background: transparent;
1089
+ color: var(--color-text);
1090
+ }
1091
+ #tsd-search .field label {
1092
+ position: absolute;
1093
+ overflow: hidden;
1094
+ right: -40px;
1095
+ }
1096
+ #tsd-search .field input,
1097
+ #tsd-search .title,
1098
+ #tsd-toolbar-links a {
1099
+ transition: opacity 0.2s;
1100
+ }
1101
+ #tsd-search .results {
1102
+ position: absolute;
1103
+ visibility: hidden;
1104
+ top: 40px;
1105
+ width: 100%;
1106
+ margin: 0;
1107
+ padding: 0;
1108
+ list-style: none;
1109
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
1110
+ }
1111
+ #tsd-search .results li {
1112
+ background-color: var(--color-background);
1113
+ line-height: initial;
1114
+ padding: 4px;
1115
+ }
1116
+ #tsd-search .results li:nth-child(even) {
1117
+ background-color: var(--color-background-secondary);
1118
+ }
1119
+ #tsd-search .results li.state {
1120
+ display: none;
1121
+ }
1122
+ #tsd-search .results li.current:not(.no-results),
1123
+ #tsd-search .results li:hover:not(.no-results) {
1124
+ background-color: var(--color-accent);
1125
+ }
1126
+ #tsd-search .results a {
1127
+ display: flex;
1128
+ align-items: center;
1129
+ padding: 0.25rem;
1130
+ box-sizing: border-box;
1131
+ }
1132
+ #tsd-search .results a:before {
1133
+ top: 10px;
1134
+ }
1135
+ #tsd-search .results span.parent {
1136
+ color: var(--color-text-aside);
1137
+ font-weight: normal;
1138
+ }
1139
+ #tsd-search.has-focus {
1140
+ background-color: var(--color-accent);
1141
+ }
1142
+ #tsd-search.has-focus .field input {
1143
+ top: 0;
1144
+ opacity: 1;
1145
+ }
1146
+ #tsd-search.has-focus .title,
1147
+ #tsd-search.has-focus #tsd-toolbar-links a {
1148
+ z-index: 0;
1149
+ opacity: 0;
1150
+ }
1151
+ #tsd-search.has-focus .results {
1152
+ visibility: visible;
1153
+ }
1154
+ #tsd-search.loading .results li.state.loading {
1155
+ display: block;
1156
+ }
1157
+ #tsd-search.failure .results li.state.failure {
1158
+ display: block;
1159
+ }
1164
1160
 
1165
- .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1166
- visibility: visible;
1167
- }
1161
+ #tsd-toolbar-links {
1162
+ position: absolute;
1163
+ top: 0;
1164
+ right: 2rem;
1165
+ height: 100%;
1166
+ display: flex;
1167
+ align-items: center;
1168
+ justify-content: flex-end;
1169
+ }
1170
+ #tsd-toolbar-links a {
1171
+ margin-left: 1.5rem;
1172
+ }
1173
+ #tsd-toolbar-links a:hover {
1174
+ text-decoration: underline;
1175
+ }
1168
1176
 
1169
- .deprecated {
1170
- text-decoration: line-through !important;
1171
- }
1177
+ .tsd-signature {
1178
+ margin: 0 0 1rem 0;
1179
+ padding: 1rem 0.5rem;
1180
+ border: 1px solid var(--color-accent);
1181
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1182
+ font-size: 14px;
1183
+ overflow-x: auto;
1184
+ }
1172
1185
 
1173
- .warning {
1174
- padding: 1rem;
1175
- color: var(--color-warning-text);
1176
- background: var(--color-background-warning);
1177
- }
1186
+ .tsd-signature-keyword {
1187
+ color: var(--color-ts-keyword);
1188
+ font-weight: normal;
1189
+ }
1178
1190
 
1179
- .tsd-kind-project {
1180
- color: var(--color-ts-project);
1181
- }
1182
- .tsd-kind-module {
1183
- color: var(--color-ts-module);
1184
- }
1185
- .tsd-kind-namespace {
1186
- color: var(--color-ts-namespace);
1187
- }
1188
- .tsd-kind-enum {
1189
- color: var(--color-ts-enum);
1190
- }
1191
- .tsd-kind-enum-member {
1192
- color: var(--color-ts-enum-member);
1193
- }
1194
- .tsd-kind-variable {
1195
- color: var(--color-ts-variable);
1196
- }
1197
- .tsd-kind-function {
1198
- color: var(--color-ts-function);
1199
- }
1200
- .tsd-kind-class {
1201
- color: var(--color-ts-class);
1202
- }
1203
- .tsd-kind-interface {
1204
- color: var(--color-ts-interface);
1205
- }
1206
- .tsd-kind-constructor {
1207
- color: var(--color-ts-constructor);
1208
- }
1209
- .tsd-kind-property {
1210
- color: var(--color-ts-property);
1211
- }
1212
- .tsd-kind-method {
1213
- color: var(--color-ts-method);
1214
- }
1215
- .tsd-kind-call-signature {
1216
- color: var(--color-ts-call-signature);
1217
- }
1218
- .tsd-kind-index-signature {
1219
- color: var(--color-ts-index-signature);
1220
- }
1221
- .tsd-kind-constructor-signature {
1222
- color: var(--color-ts-constructor-signature);
1223
- }
1224
- .tsd-kind-parameter {
1225
- color: var(--color-ts-parameter);
1226
- }
1227
- .tsd-kind-type-literal {
1228
- color: var(--color-ts-type-literal);
1229
- }
1230
- .tsd-kind-type-parameter {
1231
- color: var(--color-ts-type-parameter);
1232
- }
1233
- .tsd-kind-accessor {
1234
- color: var(--color-ts-accessor);
1235
- }
1236
- .tsd-kind-get-signature {
1237
- color: var(--color-ts-get-signature);
1238
- }
1239
- .tsd-kind-set-signature {
1240
- color: var(--color-ts-set-signature);
1241
- }
1242
- .tsd-kind-type-alias {
1243
- color: var(--color-ts-type-alias);
1244
- }
1191
+ .tsd-signature-symbol {
1192
+ color: var(--color-text-aside);
1193
+ font-weight: normal;
1194
+ }
1245
1195
 
1246
- /* if we have a kind icon, don't color the text by kind */
1247
- .tsd-kind-icon ~ span {
1248
- color: var(--color-text);
1249
- }
1196
+ .tsd-signature-type {
1197
+ font-style: italic;
1198
+ font-weight: normal;
1199
+ }
1250
1200
 
1251
- * {
1252
- scrollbar-width: thin;
1253
- scrollbar-color: var(--color-accent) var(--color-icon-background);
1254
- }
1201
+ .tsd-signatures {
1202
+ padding: 0;
1203
+ margin: 0 0 1em 0;
1204
+ list-style-type: none;
1205
+ }
1206
+ .tsd-signatures .tsd-signature {
1207
+ margin: 0;
1208
+ border-color: var(--color-accent);
1209
+ border-width: 1px 0;
1210
+ transition: background-color 0.1s;
1211
+ }
1212
+ .tsd-signatures .tsd-index-signature:not(:last-child) {
1213
+ margin-bottom: 1em;
1214
+ }
1215
+ .tsd-signatures .tsd-index-signature .tsd-signature {
1216
+ border-width: 1px;
1217
+ }
1218
+ .tsd-description .tsd-signatures .tsd-signature {
1219
+ border-width: 1px;
1220
+ }
1255
1221
 
1256
- *::-webkit-scrollbar {
1257
- width: 0.75rem;
1258
- }
1222
+ ul.tsd-parameter-list,
1223
+ ul.tsd-type-parameter-list {
1224
+ list-style: square;
1225
+ margin: 0;
1226
+ padding-left: 20px;
1227
+ }
1228
+ ul.tsd-parameter-list > li.tsd-parameter-signature,
1229
+ ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1230
+ list-style: none;
1231
+ margin-left: -20px;
1232
+ }
1233
+ ul.tsd-parameter-list h5,
1234
+ ul.tsd-type-parameter-list h5 {
1235
+ font-size: 16px;
1236
+ margin: 1em 0 0.5em 0;
1237
+ }
1238
+ .tsd-sources {
1239
+ margin-top: 1rem;
1240
+ font-size: 0.875em;
1241
+ }
1242
+ .tsd-sources a {
1243
+ color: var(--color-text-aside);
1244
+ text-decoration: underline;
1245
+ }
1246
+ .tsd-sources ul {
1247
+ list-style: none;
1248
+ padding: 0;
1249
+ }
1259
1250
 
1260
- *::-webkit-scrollbar-track {
1261
- background: var(--color-icon-background);
1262
- }
1251
+ .tsd-page-toolbar {
1252
+ position: sticky;
1253
+ z-index: 1;
1254
+ top: 0;
1255
+ left: 0;
1256
+ width: 100%;
1257
+ color: var(--color-text);
1258
+ background: var(--color-background-secondary);
1259
+ border-bottom: 1px var(--color-accent) solid;
1260
+ transition: transform 0.3s ease-in-out;
1261
+ }
1262
+ .tsd-page-toolbar a {
1263
+ color: var(--color-text);
1264
+ text-decoration: none;
1265
+ }
1266
+ .tsd-page-toolbar a.title {
1267
+ font-weight: bold;
1268
+ }
1269
+ .tsd-page-toolbar a.title:hover {
1270
+ text-decoration: underline;
1271
+ }
1272
+ .tsd-page-toolbar .tsd-toolbar-contents {
1273
+ display: flex;
1274
+ justify-content: space-between;
1275
+ height: 2.5rem;
1276
+ margin: 0 auto;
1277
+ }
1278
+ .tsd-page-toolbar .table-cell {
1279
+ position: relative;
1280
+ white-space: nowrap;
1281
+ line-height: 40px;
1282
+ }
1283
+ .tsd-page-toolbar .table-cell:first-child {
1284
+ width: 100%;
1285
+ }
1286
+ .tsd-page-toolbar .tsd-toolbar-icon {
1287
+ box-sizing: border-box;
1288
+ line-height: 0;
1289
+ padding: 12px 0;
1290
+ }
1263
1291
 
1264
- *::-webkit-scrollbar-thumb {
1265
- background-color: var(--color-accent);
1266
- border-radius: 999rem;
1267
- border: 0.25rem solid var(--color-icon-background);
1268
- }
1292
+ .tsd-widget {
1293
+ display: inline-block;
1294
+ overflow: hidden;
1295
+ opacity: 0.8;
1296
+ height: 40px;
1297
+ transition:
1298
+ opacity 0.1s,
1299
+ background-color 0.2s;
1300
+ vertical-align: bottom;
1301
+ cursor: pointer;
1302
+ }
1303
+ .tsd-widget:hover {
1304
+ opacity: 0.9;
1305
+ }
1306
+ .tsd-widget.active {
1307
+ opacity: 1;
1308
+ background-color: var(--color-accent);
1309
+ }
1310
+ .tsd-widget.no-caption {
1311
+ width: 40px;
1312
+ }
1313
+ .tsd-widget.no-caption:before {
1314
+ margin: 0;
1315
+ }
1269
1316
 
1270
- /* mobile */
1271
- @media (max-width: 769px) {
1272
1317
  .tsd-widget.options,
1273
1318
  .tsd-widget.menu {
1274
- display: inline-block;
1319
+ display: none;
1275
1320
  }
1276
-
1277
- .container-main {
1278
- display: flex;
1321
+ input[type="checkbox"] + .tsd-widget:before {
1322
+ background-position: -120px 0;
1279
1323
  }
1280
- html .col-content {
1281
- float: none;
1324
+ input[type="checkbox"]:checked + .tsd-widget:before {
1325
+ background-position: -160px 0;
1326
+ }
1327
+
1328
+ img {
1282
1329
  max-width: 100%;
1283
- width: 100%;
1284
1330
  }
1285
- html .col-sidebar {
1286
- position: fixed !important;
1287
- overflow-y: auto;
1288
- -webkit-overflow-scrolling: touch;
1289
- z-index: 1024;
1290
- top: 0 !important;
1291
- bottom: 0 !important;
1292
- left: auto !important;
1293
- right: 0 !important;
1294
- padding: 1.5rem 1.5rem 0 0;
1295
- width: 75vw;
1296
- visibility: hidden;
1297
- background-color: var(--color-background);
1298
- transform: translate(100%, 0);
1331
+
1332
+ .tsd-member-summary-name {
1333
+ display: inline-flex;
1334
+ align-items: center;
1335
+ padding: 0.25rem;
1336
+ text-decoration: none;
1299
1337
  }
1300
- html .col-sidebar > *:last-child {
1301
- padding-bottom: 20px;
1338
+
1339
+ .tsd-anchor-icon {
1340
+ display: inline-flex;
1341
+ align-items: center;
1342
+ margin-left: 0.5rem;
1343
+ color: var(--color-text);
1302
1344
  }
1303
- html .overlay {
1304
- content: "";
1305
- display: block;
1306
- position: fixed;
1307
- z-index: 1023;
1308
- top: 0;
1309
- left: 0;
1310
- right: 0;
1311
- bottom: 0;
1312
- background-color: rgba(0, 0, 0, 0.75);
1345
+
1346
+ .tsd-anchor-icon svg {
1347
+ width: 1em;
1348
+ height: 1em;
1313
1349
  visibility: hidden;
1314
1350
  }
1315
1351
 
1316
- .to-has-menu .overlay {
1317
- animation: fade-in 0.4s;
1352
+ .tsd-member-summary-name:hover > .tsd-anchor-icon svg,
1353
+ .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1354
+ visibility: visible;
1318
1355
  }
1319
1356
 
1320
- .to-has-menu .col-sidebar {
1321
- animation: pop-in-from-right 0.4s;
1357
+ .deprecated {
1358
+ text-decoration: line-through !important;
1322
1359
  }
1323
1360
 
1324
- .from-has-menu .overlay {
1325
- animation: fade-out 0.4s;
1361
+ .warning {
1362
+ padding: 1rem;
1363
+ color: var(--color-warning-text);
1364
+ background: var(--color-background-warning);
1326
1365
  }
1327
1366
 
1328
- .from-has-menu .col-sidebar {
1329
- animation: pop-out-to-right 0.4s;
1367
+ .tsd-kind-project {
1368
+ color: var(--color-ts-project);
1330
1369
  }
1331
-
1332
- .has-menu body {
1333
- overflow: hidden;
1370
+ .tsd-kind-module {
1371
+ color: var(--color-ts-module);
1334
1372
  }
1335
- .has-menu .overlay {
1336
- visibility: visible;
1373
+ .tsd-kind-namespace {
1374
+ color: var(--color-ts-namespace);
1337
1375
  }
1338
- .has-menu .col-sidebar {
1339
- visibility: visible;
1340
- transform: translate(0, 0);
1341
- display: flex;
1342
- flex-direction: column;
1343
- gap: 1.5rem;
1344
- max-height: 100vh;
1345
- padding: 1rem 2rem;
1376
+ .tsd-kind-enum {
1377
+ color: var(--color-ts-enum);
1346
1378
  }
1347
- .has-menu .tsd-navigation {
1348
- max-height: 100%;
1379
+ .tsd-kind-enum-member {
1380
+ color: var(--color-ts-enum-member);
1349
1381
  }
1350
- }
1351
-
1352
- /* one sidebar */
1353
- @media (min-width: 770px) {
1354
- .container-main {
1355
- display: grid;
1356
- grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1357
- grid-template-areas: "sidebar content";
1358
- margin: 2rem auto;
1382
+ .tsd-kind-variable {
1383
+ color: var(--color-ts-variable);
1359
1384
  }
1360
-
1361
- .col-sidebar {
1362
- grid-area: sidebar;
1385
+ .tsd-kind-function {
1386
+ color: var(--color-ts-function);
1363
1387
  }
1364
- .col-content {
1365
- grid-area: content;
1366
- padding: 0 1rem;
1388
+ .tsd-kind-class {
1389
+ color: var(--color-ts-class);
1367
1390
  }
1368
- }
1369
- @media (min-width: 770px) and (max-width: 1399px) {
1370
- .col-sidebar {
1371
- max-height: calc(100vh - 2rem - 42px);
1372
- overflow: auto;
1373
- position: sticky;
1374
- top: 42px;
1375
- padding-top: 1rem;
1391
+ .tsd-kind-interface {
1392
+ color: var(--color-ts-interface);
1376
1393
  }
1377
- .site-menu {
1378
- margin-top: 1rem;
1394
+ .tsd-kind-constructor {
1395
+ color: var(--color-ts-constructor);
1396
+ }
1397
+ .tsd-kind-property {
1398
+ color: var(--color-ts-property);
1399
+ }
1400
+ .tsd-kind-method {
1401
+ color: var(--color-ts-method);
1402
+ }
1403
+ .tsd-kind-reference {
1404
+ color: var(--color-ts-reference);
1405
+ }
1406
+ .tsd-kind-call-signature {
1407
+ color: var(--color-ts-call-signature);
1408
+ }
1409
+ .tsd-kind-index-signature {
1410
+ color: var(--color-ts-index-signature);
1411
+ }
1412
+ .tsd-kind-constructor-signature {
1413
+ color: var(--color-ts-constructor-signature);
1414
+ }
1415
+ .tsd-kind-parameter {
1416
+ color: var(--color-ts-parameter);
1417
+ }
1418
+ .tsd-kind-type-parameter {
1419
+ color: var(--color-ts-type-parameter);
1420
+ }
1421
+ .tsd-kind-accessor {
1422
+ color: var(--color-ts-accessor);
1423
+ }
1424
+ .tsd-kind-get-signature {
1425
+ color: var(--color-ts-get-signature);
1426
+ }
1427
+ .tsd-kind-set-signature {
1428
+ color: var(--color-ts-set-signature);
1429
+ }
1430
+ .tsd-kind-type-alias {
1431
+ color: var(--color-ts-type-alias);
1379
1432
  }
1380
- }
1381
1433
 
1382
- /* two sidebars */
1383
- @media (min-width: 1200px) {
1384
- .container-main {
1385
- grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem);
1386
- grid-template-areas: "sidebar content toc";
1434
+ /* if we have a kind icon, don't color the text by kind */
1435
+ .tsd-kind-icon ~ span {
1436
+ color: var(--color-text);
1387
1437
  }
1388
1438
 
1389
- .col-sidebar {
1390
- display: contents;
1439
+ * {
1440
+ scrollbar-width: thin;
1441
+ scrollbar-color: var(--color-accent) var(--color-icon-background);
1391
1442
  }
1392
1443
 
1393
- .page-menu {
1394
- grid-area: toc;
1395
- padding-left: 1rem;
1444
+ *::-webkit-scrollbar {
1445
+ width: 0.75rem;
1396
1446
  }
1397
- .site-menu {
1398
- grid-area: sidebar;
1447
+
1448
+ *::-webkit-scrollbar-track {
1449
+ background: var(--color-icon-background);
1399
1450
  }
1400
1451
 
1401
- .site-menu {
1402
- margin-top: 1rem 0;
1452
+ *::-webkit-scrollbar-thumb {
1453
+ background-color: var(--color-accent);
1454
+ border-radius: 999rem;
1455
+ border: 0.25rem solid var(--color-icon-background);
1403
1456
  }
1404
1457
 
1405
- .page-menu,
1406
- .site-menu {
1407
- max-height: calc(100vh - 2rem - 42px);
1408
- overflow: auto;
1409
- position: sticky;
1410
- top: 42px;
1458
+ /* mobile */
1459
+ @media (max-width: 769px) {
1460
+ .tsd-widget.options,
1461
+ .tsd-widget.menu {
1462
+ display: inline-block;
1463
+ }
1464
+
1465
+ .container-main {
1466
+ display: flex;
1467
+ }
1468
+ html .col-content {
1469
+ float: none;
1470
+ max-width: 100%;
1471
+ width: 100%;
1472
+ }
1473
+ html .col-sidebar {
1474
+ position: fixed !important;
1475
+ overflow-y: auto;
1476
+ -webkit-overflow-scrolling: touch;
1477
+ z-index: 1024;
1478
+ top: 0 !important;
1479
+ bottom: 0 !important;
1480
+ left: auto !important;
1481
+ right: 0 !important;
1482
+ padding: 1.5rem 1.5rem 0 0;
1483
+ width: 75vw;
1484
+ visibility: hidden;
1485
+ background-color: var(--color-background);
1486
+ transform: translate(100%, 0);
1487
+ }
1488
+ html .col-sidebar > *:last-child {
1489
+ padding-bottom: 20px;
1490
+ }
1491
+ html .overlay {
1492
+ content: "";
1493
+ display: block;
1494
+ position: fixed;
1495
+ z-index: 1023;
1496
+ top: 0;
1497
+ left: 0;
1498
+ right: 0;
1499
+ bottom: 0;
1500
+ background-color: rgba(0, 0, 0, 0.75);
1501
+ visibility: hidden;
1502
+ }
1503
+
1504
+ .to-has-menu .overlay {
1505
+ animation: fade-in 0.4s;
1506
+ }
1507
+
1508
+ .to-has-menu .col-sidebar {
1509
+ animation: pop-in-from-right 0.4s;
1510
+ }
1511
+
1512
+ .from-has-menu .overlay {
1513
+ animation: fade-out 0.4s;
1514
+ }
1515
+
1516
+ .from-has-menu .col-sidebar {
1517
+ animation: pop-out-to-right 0.4s;
1518
+ }
1519
+
1520
+ .has-menu body {
1521
+ overflow: hidden;
1522
+ }
1523
+ .has-menu .overlay {
1524
+ visibility: visible;
1525
+ }
1526
+ .has-menu .col-sidebar {
1527
+ visibility: visible;
1528
+ transform: translate(0, 0);
1529
+ display: flex;
1530
+ flex-direction: column;
1531
+ gap: 1.5rem;
1532
+ max-height: 100vh;
1533
+ padding: 1rem 2rem;
1534
+ }
1535
+ .has-menu .tsd-navigation {
1536
+ max-height: 100%;
1537
+ }
1538
+ #tsd-toolbar-links {
1539
+ display: none;
1540
+ }
1541
+ .tsd-navigation .tsd-nav-link {
1542
+ display: flex;
1543
+ }
1544
+ }
1545
+
1546
+ /* one sidebar */
1547
+ @media (min-width: 770px) {
1548
+ .container-main {
1549
+ display: grid;
1550
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1551
+ grid-template-areas: "sidebar content";
1552
+ margin: 2rem auto;
1553
+ }
1554
+
1555
+ .col-sidebar {
1556
+ grid-area: sidebar;
1557
+ }
1558
+ .col-content {
1559
+ grid-area: content;
1560
+ padding: 0 1rem;
1561
+ }
1562
+ }
1563
+ @media (min-width: 770px) and (max-width: 1399px) {
1564
+ .col-sidebar {
1565
+ max-height: calc(100vh - 2rem - 42px);
1566
+ overflow: auto;
1567
+ position: sticky;
1568
+ top: 42px;
1569
+ padding-top: 1rem;
1570
+ }
1571
+ .site-menu {
1572
+ margin-top: 1rem;
1573
+ }
1574
+ }
1575
+
1576
+ /* two sidebars */
1577
+ @media (min-width: 1200px) {
1578
+ .container-main {
1579
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(
1580
+ 0,
1581
+ 20rem
1582
+ );
1583
+ grid-template-areas: "sidebar content toc";
1584
+ }
1585
+
1586
+ .col-sidebar {
1587
+ display: contents;
1588
+ }
1589
+
1590
+ .page-menu {
1591
+ grid-area: toc;
1592
+ padding-left: 1rem;
1593
+ }
1594
+ .site-menu {
1595
+ grid-area: sidebar;
1596
+ }
1597
+
1598
+ .site-menu {
1599
+ margin-top: 1rem;
1600
+ }
1601
+
1602
+ .page-menu,
1603
+ .site-menu {
1604
+ max-height: calc(100vh - 2rem - 42px);
1605
+ overflow: auto;
1606
+ position: sticky;
1607
+ top: 42px;
1608
+ }
1411
1609
  }
1412
1610
  }