@govflanders/vl-widget-global-header-types 1.0.32 → 1.0.33

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 (60) hide show
  1. package/README.md +4 -0
  2. package/dist/client.d.ts +157 -194
  3. package/docs/.nojekyll +1 -0
  4. package/docs/assets/highlight.css +120 -0
  5. package/docs/assets/icons.js +18 -0
  6. package/docs/assets/icons.svg +1 -0
  7. package/docs/assets/main.js +60 -0
  8. package/docs/assets/navigation.js +1 -0
  9. package/docs/assets/search.js +1 -0
  10. package/docs/assets/style.css +1493 -0
  11. package/docs/assets/typedoc-github-style.css +435 -0
  12. package/docs/hierarchy.html +1 -0
  13. package/docs/index.html +262 -0
  14. package/docs/interfaces/AccessMenuConfig.html +6 -0
  15. package/docs/interfaces/AlertConfig.html +4 -0
  16. package/docs/interfaces/Application.html +4 -0
  17. package/docs/interfaces/ApplicationLink.html +5 -0
  18. package/docs/interfaces/BaseConfig.html +3 -0
  19. package/docs/interfaces/BrandingConfig.html +7 -0
  20. package/docs/interfaces/BrandingConfigColors.html +4 -0
  21. package/docs/interfaces/BrandingConfigHost.html +5 -0
  22. package/docs/interfaces/BrandingConfigUmbrella.html +5 -0
  23. package/docs/interfaces/Channel.html +11 -0
  24. package/docs/interfaces/CobrowseConfig.html +5 -0
  25. package/docs/interfaces/CobrowseConsentConfig.html +3 -0
  26. package/docs/interfaces/Config.html +5 -0
  27. package/docs/interfaces/ContactConfig.html +5 -0
  28. package/docs/interfaces/ContactOption.html +14 -0
  29. package/docs/interfaces/ContactOptionRef.html +4 -0
  30. package/docs/interfaces/EnrichedServicePoints.html +5 -0
  31. package/docs/interfaces/GlobalHeaderClient.html +83 -0
  32. package/docs/interfaces/I18n.html +3 -0
  33. package/docs/interfaces/IDPData.html +3 -0
  34. package/docs/interfaces/Image.html +4 -0
  35. package/docs/interfaces/Link.html +3 -0
  36. package/docs/interfaces/LinkWithTarget.html +4 -0
  37. package/docs/interfaces/MainLink.html +5 -0
  38. package/docs/interfaces/ProfileConfig.html +7 -0
  39. package/docs/interfaces/RecursiveRecord.html +1 -0
  40. package/docs/interfaces/ResolveOptions.html +3 -0
  41. package/docs/interfaces/ServicePoints.html +5 -0
  42. package/docs/interfaces/Session.html +2 -0
  43. package/docs/interfaces/Translations.html +3 -0
  44. package/docs/modules.html +46 -0
  45. package/docs/types/AlertModifier.html +1 -0
  46. package/docs/types/ApplicationMenuLink.html +1 -0
  47. package/docs/types/BrandingConfigLevel.html +2 -0
  48. package/docs/types/CapacityCode.html +1 -0
  49. package/docs/types/ChannelIcon.html +1 -0
  50. package/docs/types/ChannelType.html +1 -0
  51. package/docs/types/CobrowseChannel.html +1 -0
  52. package/docs/types/ContactOptionSocialPlatform.html +1 -0
  53. package/docs/types/ContactServiceEndpoints.html +1 -0
  54. package/docs/types/EnrichedServicePoint.html +1 -0
  55. package/docs/types/Language.html +1 -0
  56. package/docs/types/PluginTypeId.html +1 -0
  57. package/docs/types/ServicePoint.html +1 -0
  58. package/docs/types/Translatable.html +1 -0
  59. package/docs/variables/languages.html +1 -0
  60. package/package.json +8 -2
package/README.md CHANGED
@@ -103,6 +103,8 @@ client.setMainLinks([
103
103
 
104
104
  The `window.globalHeaderClient` object offers several methods for interacting with the widget. Each method is typed and returns promises, making asynchronous operations easier to handle. Below is a detailed breakdown of each method, its parameters, and the expected return values.
105
105
 
106
+ Checkout the [GlobalHeaderClient](./interfaces/GlobalHeaderClient.html) here to see how to use it.
107
+
106
108
  ### getConfig(): Promise\<Config\>
107
109
  Retrieve the current widget configuration.
108
110
 
@@ -274,6 +276,7 @@ Action Required:
274
276
  Example:
275
277
 
276
278
  ```diff
279
+ // Using widgets V4
277
280
  - vl.widget.client.capture(
278
281
  - // Verplichte capture functie.
279
282
  - function(widget) {
@@ -282,6 +285,7 @@ Example:
282
285
  - }
283
286
  - },
284
287
  - );
288
+ // Using widgets V5
285
289
  + globalHeaderClient.contact.resetServicePoints();
286
290
  ```
287
291
 
package/dist/client.d.ts CHANGED
@@ -3,215 +3,179 @@ import { MainLink, ProfileConfig } from './access-menu';
3
3
  import { EnrichedServicePoints, ServicePoints } from './contact';
4
4
  import { BrandingConfigColors, BrandingConfigHost, BrandingConfigUmbrella, Config } from './config';
5
5
  import { ApplicationMenuLink } from './access-menu';
6
- export type Handlers = {
7
- /**
8
- * Get the current configuration
9
- * @returns A promise that resolves to the current configuration
10
- */
11
- getConfig: Handler<undefined, Config>;
12
- /**
13
- * Set the service points
14
- * @param servicePoints The service points to set
15
- * @returns A promise that resolves to the set service points
16
- */
17
- setServicePoints: Handler<Translatable<ServicePoints>, Translatable<ServicePoints>>;
18
- /**
19
- * Get the current service points
20
- * @returns A promise that resolves to the current service points
21
- */
22
- getServicePoints: Handler<undefined, EnrichedServicePoints>;
23
- /**
24
- * Reset the service points to the initial values from the configuration.
25
- *
26
- * This method reverts the service points back to their original state
27
- * as defined in the initial configuration, effectively overriding any
28
- * previously set service points.
29
- *
30
- * @return {Promise<this>}
31
- * A promise that resolves when the service points have been reset.
32
- */
33
- resetServicePoints: Handler<undefined, boolean>;
34
- /**
35
- * Set the profile configuration
36
- * @param profileConfig The profile configuration to set
37
- * @returns A promise that resolves to true if the profile configuration was set, false otherwise
38
- */
39
- setProfile: Handler<Partial<ProfileConfig>, boolean>;
40
- /**
41
- * Get the profile configuration
42
- * @returns A promise that resolves to the current profile configuration
43
- */
44
- getProfile: Handler<undefined, Partial<ProfileConfig>>;
45
- /**
46
- * Set the main links
47
- * @param mainLinks The main links to set
48
- * @returns A promise that resolves to true if the main links were set, false otherwise
49
- */
50
- setMainLinks: Handler<Translatable<MainLink>[], boolean>;
51
- /**
52
- * Add an application menu link
53
- * @param link The link to add
54
- * @returns A promise that resolves to the updated application menu
55
- */
56
- addApplicationMenuLink: Handler<ApplicationMenuLink, ApplicationMenuLink[]>;
57
- /**
58
- * Add multiple application menu links
59
- * @param links The links to add
60
- * @returns A promise that resolves to the updated application menu
61
- */
62
- addApplicationMenuLinks: Handler<ApplicationMenuLink[], ApplicationMenuLink[]>;
63
- /**
64
- * Set the application menu links
65
- * @param links The links to set
66
- * @returns A promise that resolves to the updated application menu
67
- */
68
- setApplicationMenuLinks: Handler<ApplicationMenuLink[], ApplicationMenuLink[]>;
6
+ /**
7
+ * The `window.globalHeaderClient` object offers several methods for interacting with the widget.
8
+ * Each method is typed and returns promises, making asynchronous operations easier to handle.
9
+ */
10
+ export interface GlobalHeaderClient {
11
+ contact: {
12
+ /**
13
+ * Get the current service points
14
+ * @returns A promise that resolves to the current service points
15
+ */
16
+ getServicePoints: () => Promise<EnrichedServicePoints>;
17
+ /**
18
+ * Set the service points
19
+ * @param servicePoints The service points to set
20
+ * @returns A promise that resolves to the set service points
21
+ */
22
+ setServicePoints: (servicePoints: Translatable<ServicePoints>) => Promise<Translatable<ServicePoints>>;
23
+ /**
24
+ * Reset the service points to the initial values from the configuration.
25
+ *
26
+ * This method reverts the service points back to their original state
27
+ * as defined in the initial configuration, effectively overriding any
28
+ * previously set service points.
29
+ *
30
+ * @returns A promise that resolves when the service points have been reset.
31
+ */
32
+ resetServicePoints: () => Promise<boolean>;
33
+ /**
34
+ * Open the contact panel.
35
+ * @returns A promise that resolves to true if the contact panel was opened.
36
+ */
37
+ open: () => Promise<boolean>;
38
+ /**
39
+ * Close the contact panel.
40
+ * @returns A promise that resolves to true if the contact panel was closed.
41
+ */
42
+ close: () => Promise<boolean>;
43
+ /**
44
+ * Toggle the contact panel.
45
+ * @returns A promise that resolves to true if the contact panel is now open.
46
+ */
47
+ toggle: () => Promise<boolean>;
48
+ /**
49
+ * Check if the contact panel is open.
50
+ * @returns A promise that resolves to true if the contact panel is open.
51
+ */
52
+ isOpen: () => Promise<boolean>;
53
+ };
54
+ accessMenu: {
55
+ /**
56
+ * Set the main links
57
+ * @param mainLinks The main links to set
58
+ * @returns A promise that resolves to true if the main links were set, false otherwise
59
+ */
60
+ setMainLinks: (mainLinks: Translatable<MainLink>[]) => Promise<boolean>;
61
+ /**
62
+ * Add an application menu link
63
+ * @param link The link to add
64
+ * @returns A promise that resolves to the updated application menu
65
+ */
66
+ addApplicationMenuLink: (link: ApplicationMenuLink) => Promise<ApplicationMenuLink[]>;
67
+ /**
68
+ * Add multiple application menu links
69
+ * @param links The links to add
70
+ * @returns A promise that resolves to the updated application menu
71
+ */
72
+ addApplicationMenuLinks: (links: ApplicationMenuLink[]) => Promise<ApplicationMenuLink[]>;
73
+ /**
74
+ * Set the application menu links
75
+ * @param links The links to set
76
+ * @returns A promise that resolves to the updated application menu
77
+ */
78
+ setApplicationMenuLinks: (links: ApplicationMenuLink[]) => Promise<ApplicationMenuLink[]>;
79
+ /**
80
+ * Set the profile configuration
81
+ * @param profileConfig The profile configuration to set
82
+ * @returns A promise that resolves to true if the profile configuration was set, false otherwise
83
+ */
84
+ setProfile: (profileConfig: Partial<ProfileConfig>) => Promise<boolean>;
85
+ /**
86
+ * Get the profile configuration
87
+ * @returns A promise that resolves to the current profile configuration
88
+ */
89
+ getProfile: () => Promise<Partial<ProfileConfig>>;
90
+ };
91
+ branding: {
92
+ /**
93
+ * Get the level of branding
94
+ * @returns A promise that resolves to the branding level
95
+ */
96
+ getLevel: () => Promise<number>;
97
+ /**
98
+ * Set the branding level
99
+ * @param level The level of branding to set
100
+ * @returns A promise that resolves to true if the branding level was set
101
+ */
102
+ setLevel: (level: number) => Promise<boolean>;
103
+ /**
104
+ * Get the branding colors
105
+ * @returns A promise that resolves to the branding colors
106
+ */
107
+ getColors: () => Promise<BrandingConfigColors>;
108
+ /**
109
+ * Get a specific branding color by type
110
+ * @param type The type of branding color to get
111
+ * @returns A promise that resolves to the branding color
112
+ */
113
+ getColor: (type: keyof BrandingConfigColors) => Promise<string>;
114
+ /**
115
+ * Set the branding colors
116
+ * @param colors The colors to set
117
+ * @returns A promise that resolves to true if the branding colors were set
118
+ */
119
+ setColors: (colors: BrandingConfigColors) => Promise<boolean>;
120
+ /**
121
+ * Set a specific branding color by type
122
+ * @param args The type of branding color and value to set
123
+ * @returns A promise that resolves to true if the branding color was set
124
+ */
125
+ setColor: (args: {
126
+ type: keyof BrandingConfigColors;
127
+ value: string;
128
+ }) => Promise<boolean>;
129
+ /**
130
+ * Get the host context
131
+ * @returns A promise that resolves to the branding host settings
132
+ */
133
+ getHost: () => Promise<Partial<BrandingConfigHost>>;
134
+ /**
135
+ * Set the host context
136
+ * @param host The branding host settings to set
137
+ * @returns A promise that resolves to true if the branding host was set
138
+ */
139
+ setHost: (host: Partial<BrandingConfigHost>) => Promise<boolean>;
140
+ /**
141
+ * Get the umbrella context
142
+ * @returns A promise that resolves to the branding umbrella settings
143
+ */
144
+ getUmbrella: () => Promise<Partial<BrandingConfigUmbrella>>;
145
+ /**
146
+ * Set the umbrella context
147
+ * @param umbrella The branding umbrella settings to set
148
+ * @returns A promise that resolves to true if the branding umbrella was set
149
+ */
150
+ setUmbrella: (umbrella: Partial<BrandingConfigUmbrella>) => Promise<boolean>;
151
+ /**
152
+ * Get the branding CSS variables
153
+ * @returns A promise that resolves to the branding CSS variables
154
+ */
155
+ getVariables: () => Promise<Record<string, string>>;
156
+ };
69
157
  /**
70
158
  * Set the navigation enabled state
71
159
  * @param enabled The navigation enabled state
72
160
  * @returns A promise that resolves to true if the navigation enabled state was set, false otherwise
73
161
  */
74
- setNavigationEnabled: Handler<boolean, boolean>;
75
- /**
76
- * Get the level of branding
77
- * @returns A promise that resolves to the branding level
78
- */
79
- getBrandingLevel: Handler<undefined, number>;
80
- /**
81
- * Set the branding level
82
- * @param level The level of branding to set
83
- * @returns A promise that resolves to true if the branding level was set
84
- */
85
- setBrandingLevel: Handler<number, boolean>;
86
- /**
87
- * Get the branding colors
88
- * @returns A promise that resolves to the branding colors
89
- */
90
- getBrandingColors: Handler<undefined, BrandingConfigColors>;
91
- /**
92
- * Get a specific branding color by type
93
- * @param type The type of branding color to get
94
- * @returns A promise that resolves to the branding color
95
- */
96
- getBrandingColor: Handler<keyof BrandingConfigColors, string>;
97
- /**
98
- * Set the branding colors
99
- * @param colors The colors to set
100
- * @returns A promise that resolves to true if the branding colors were set
101
- */
102
- setBrandingColors: Handler<BrandingConfigColors, boolean>;
103
- /**
104
- * Set a specific branding color by type
105
- * @param type The type of branding color to set
106
- * @param value The color value to set
107
- * @returns A promise that resolves to true if the branding color was set
108
- */
109
- setBrandingColor: Handler<{
110
- type: keyof BrandingConfigColors;
111
- value: string;
112
- }, boolean>;
113
- /**
114
- * Get the host context
115
- * @returns A promise that resolves to the branding host settings
116
- */
117
- getBrandingHost: Handler<undefined, Partial<BrandingConfigHost>>;
118
- /**
119
- * Set the host context
120
- * @param host The branding host settings to set
121
- * @returns A promise that resolves to true if the branding host was set
122
- */
123
- setBrandingHost: Handler<Partial<BrandingConfigHost>, boolean>;
162
+ setNavigationEnabled: (enabled: boolean) => Promise<boolean>;
124
163
  /**
125
- * Get the umbrella context
126
- * @returns A promise that resolves to the branding umbrella settings
127
- */
128
- getBrandingUmbrella: Handler<undefined, Partial<BrandingConfigUmbrella>>;
129
- /**
130
- * Set the umbrella context
131
- * @param umbrella The branding umbrella settings to set
132
- * @returns A promise that resolves to true if the branding umbrella was set
133
- */
134
- setBrandingUmbrella: Handler<Partial<BrandingConfigUmbrella>, boolean>;
135
- /**
136
- * Get the branding CSS variables
137
- * @returns A promise that resolves to the branding CSS variables
164
+ * Get the current configuration
165
+ * @returns A promise that resolves to the current configuration
138
166
  */
139
- getBrandingVariables: Handler<undefined, Record<string, string>>;
167
+ getConfig: () => Promise<Config>;
140
168
  /**
141
169
  * Mount an element
142
170
  * @param element The element to mount
143
171
  * @returns A promise that resolves to true if the element was mounted, false otherwise
144
172
  */
145
- mount: Handler<HTMLElement | void, boolean>;
173
+ mount: (element?: HTMLElement) => Promise<boolean>;
146
174
  /**
147
175
  * Unmount an element
148
176
  * @returns A promise that resolves to true if the element was unmounted, false otherwise
149
177
  */
150
- unmount: Handler<undefined, boolean>;
151
- openContact: Handler<undefined, boolean>;
152
- closeContact: Handler<undefined, boolean>;
153
- toggleContact: Handler<undefined, boolean>;
154
- isContactOpen: Handler<undefined, boolean>;
155
- };
156
- type PromiseResolver<T> = (value: T | PromiseLike<T>) => void;
157
- type PromiseRejecter = (reason?: any) => void;
158
- export type Handler<Args, Return> = (args: Args, resolve: PromiseResolver<Return>, reject: PromiseRejecter) => void;
159
- type ArgumentTypes = {
160
- [HandlersKey in keyof Handlers]: Handlers[HandlersKey] extends Handler<infer Args, any> ? Args : never;
161
- };
162
- type ReturnTypes = {
163
- [HandlersKey in keyof Handlers]: Handlers[HandlersKey] extends Handler<any, infer Return> ? Return : never;
164
- };
165
- export type ClientMethods = {
166
- [K in keyof Handlers]: ArgumentTypes[K] extends undefined ? () => Promise<ReturnTypes[K]> : (args: ArgumentTypes[K]) => Promise<ReturnTypes[K]>;
167
- };
168
- export type QueueItem<Key extends keyof Handlers> = {
169
- [K in keyof Handlers]: {
170
- key: K;
171
- args: ArgumentTypes[K];
172
- resolve: PromiseResolver<ReturnTypes[K]>;
173
- reject: PromiseRejecter;
174
- };
175
- }[Key];
176
- export interface GlobalHeaderLinker {
177
- queue: QueueItem<keyof Handlers>[];
178
- update: () => void;
179
- }
180
- export interface GlobalHeaderClient {
181
- contact: {
182
- getServicePoints: ClientMethods['getServicePoints'];
183
- setServicePoints: ClientMethods['setServicePoints'];
184
- resetServicePoints: ClientMethods['resetServicePoints'];
185
- open: ClientMethods['openContact'];
186
- close: ClientMethods['closeContact'];
187
- toggle: ClientMethods['toggleContact'];
188
- isOpen: ClientMethods['isContactOpen'];
189
- };
190
- accessMenu: {
191
- setMainLinks: ClientMethods['setMainLinks'];
192
- addApplicationMenuLink: ClientMethods['addApplicationMenuLink'];
193
- addApplicationMenuLinks: ClientMethods['addApplicationMenuLinks'];
194
- setApplicationMenuLinks: ClientMethods['setApplicationMenuLinks'];
195
- setProfile: ClientMethods['setProfile'];
196
- getProfile: ClientMethods['getProfile'];
197
- };
198
- branding: {
199
- getLevel: ClientMethods['getBrandingLevel'];
200
- setLevel: ClientMethods['setBrandingLevel'];
201
- getColors: ClientMethods['getBrandingColors'];
202
- getColor: ClientMethods['getBrandingColor'];
203
- setColor: ClientMethods['setBrandingColor'];
204
- setColors: ClientMethods['setBrandingColors'];
205
- getHost: ClientMethods['getBrandingHost'];
206
- setHost: ClientMethods['setBrandingHost'];
207
- getUmbrella: ClientMethods['getBrandingUmbrella'];
208
- setUmbrella: ClientMethods['setBrandingUmbrella'];
209
- getVariables: ClientMethods['getBrandingVariables'];
210
- };
211
- setNavigationEnabled: ClientMethods['setNavigationEnabled'];
212
- getConfig: ClientMethods['getConfig'];
213
- mount: ClientMethods['mount'];
214
- unmount: ClientMethods['unmount'];
178
+ unmount: () => Promise<boolean>;
215
179
  }
216
180
  declare global {
217
181
  interface Window {
@@ -219,4 +183,3 @@ declare global {
219
183
  globalHeaderLinker: GlobalHeaderLinker;
220
184
  }
221
185
  }
222
- export {};
package/docs/.nojekyll ADDED
@@ -0,0 +1 @@
1
+ TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
@@ -0,0 +1,120 @@
1
+ :root {
2
+ --light-hl-0: #800000;
3
+ --dark-hl-0: #808080;
4
+ --light-hl-1: #800000;
5
+ --dark-hl-1: #569CD6;
6
+ --light-hl-2: #000000;
7
+ --dark-hl-2: #D4D4D4;
8
+ --light-hl-3: #E50000;
9
+ --dark-hl-3: #9CDCFE;
10
+ --light-hl-4: #0000FF;
11
+ --dark-hl-4: #CE9178;
12
+ --light-hl-5: #000000FF;
13
+ --dark-hl-5: #D4D4D4;
14
+ --light-hl-6: #001080;
15
+ --dark-hl-6: #9CDCFE;
16
+ --light-hl-7: #795E26;
17
+ --dark-hl-7: #DCDCAA;
18
+ --light-hl-8: #008000;
19
+ --dark-hl-8: #6A9955;
20
+ --light-hl-9: #A31515;
21
+ --dark-hl-9: #CE9178;
22
+ --light-hl-10: #0000FF;
23
+ --dark-hl-10: #569CD6;
24
+ --light-hl-11: #AF00DB;
25
+ --dark-hl-11: #C586C0;
26
+ --light-hl-12: #0070C1;
27
+ --dark-hl-12: #4FC1FF;
28
+ --light-hl-13: #267F99;
29
+ --dark-hl-13: #4EC9B0;
30
+ --light-code-background: #FFFFFF;
31
+ --dark-code-background: #1E1E1E;
32
+ }
33
+
34
+ @media (prefers-color-scheme: light) { :root {
35
+ --hl-0: var(--light-hl-0);
36
+ --hl-1: var(--light-hl-1);
37
+ --hl-2: var(--light-hl-2);
38
+ --hl-3: var(--light-hl-3);
39
+ --hl-4: var(--light-hl-4);
40
+ --hl-5: var(--light-hl-5);
41
+ --hl-6: var(--light-hl-6);
42
+ --hl-7: var(--light-hl-7);
43
+ --hl-8: var(--light-hl-8);
44
+ --hl-9: var(--light-hl-9);
45
+ --hl-10: var(--light-hl-10);
46
+ --hl-11: var(--light-hl-11);
47
+ --hl-12: var(--light-hl-12);
48
+ --hl-13: var(--light-hl-13);
49
+ --code-background: var(--light-code-background);
50
+ } }
51
+
52
+ @media (prefers-color-scheme: dark) { :root {
53
+ --hl-0: var(--dark-hl-0);
54
+ --hl-1: var(--dark-hl-1);
55
+ --hl-2: var(--dark-hl-2);
56
+ --hl-3: var(--dark-hl-3);
57
+ --hl-4: var(--dark-hl-4);
58
+ --hl-5: var(--dark-hl-5);
59
+ --hl-6: var(--dark-hl-6);
60
+ --hl-7: var(--dark-hl-7);
61
+ --hl-8: var(--dark-hl-8);
62
+ --hl-9: var(--dark-hl-9);
63
+ --hl-10: var(--dark-hl-10);
64
+ --hl-11: var(--dark-hl-11);
65
+ --hl-12: var(--dark-hl-12);
66
+ --hl-13: var(--dark-hl-13);
67
+ --code-background: var(--dark-code-background);
68
+ } }
69
+
70
+ :root[data-theme='light'] {
71
+ --hl-0: var(--light-hl-0);
72
+ --hl-1: var(--light-hl-1);
73
+ --hl-2: var(--light-hl-2);
74
+ --hl-3: var(--light-hl-3);
75
+ --hl-4: var(--light-hl-4);
76
+ --hl-5: var(--light-hl-5);
77
+ --hl-6: var(--light-hl-6);
78
+ --hl-7: var(--light-hl-7);
79
+ --hl-8: var(--light-hl-8);
80
+ --hl-9: var(--light-hl-9);
81
+ --hl-10: var(--light-hl-10);
82
+ --hl-11: var(--light-hl-11);
83
+ --hl-12: var(--light-hl-12);
84
+ --hl-13: var(--light-hl-13);
85
+ --code-background: var(--light-code-background);
86
+ }
87
+
88
+ :root[data-theme='dark'] {
89
+ --hl-0: var(--dark-hl-0);
90
+ --hl-1: var(--dark-hl-1);
91
+ --hl-2: var(--dark-hl-2);
92
+ --hl-3: var(--dark-hl-3);
93
+ --hl-4: var(--dark-hl-4);
94
+ --hl-5: var(--dark-hl-5);
95
+ --hl-6: var(--dark-hl-6);
96
+ --hl-7: var(--dark-hl-7);
97
+ --hl-8: var(--dark-hl-8);
98
+ --hl-9: var(--dark-hl-9);
99
+ --hl-10: var(--dark-hl-10);
100
+ --hl-11: var(--dark-hl-11);
101
+ --hl-12: var(--dark-hl-12);
102
+ --hl-13: var(--dark-hl-13);
103
+ --code-background: var(--dark-code-background);
104
+ }
105
+
106
+ .hl-0 { color: var(--hl-0); }
107
+ .hl-1 { color: var(--hl-1); }
108
+ .hl-2 { color: var(--hl-2); }
109
+ .hl-3 { color: var(--hl-3); }
110
+ .hl-4 { color: var(--hl-4); }
111
+ .hl-5 { color: var(--hl-5); }
112
+ .hl-6 { color: var(--hl-6); }
113
+ .hl-7 { color: var(--hl-7); }
114
+ .hl-8 { color: var(--hl-8); }
115
+ .hl-9 { color: var(--hl-9); }
116
+ .hl-10 { color: var(--hl-10); }
117
+ .hl-11 { color: var(--hl-11); }
118
+ .hl-12 { color: var(--hl-12); }
119
+ .hl-13 { color: var(--hl-13); }
120
+ pre, code { background: var(--code-background); }
@@ -0,0 +1,18 @@
1
+ (function() {
2
+ addIcons();
3
+ function addIcons() {
4
+ if (document.readyState === "loading") return document.addEventListener("DOMContentLoaded", addIcons);
5
+ const svg = document.body.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg"));
6
+ svg.innerHTML = `<g id="icon-1" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-2" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">N</text></g><g id="icon-8" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">E</text></g><g id="icon-16" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-32" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">V</text></g><g id="icon-64" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-128" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-256" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">I</text></g><g id="icon-512" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-1024" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-2048" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-method)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4096" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-8192" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-16384" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-32768" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-65536" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-131072" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-262144" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-524288" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-1048576" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-2097152" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-4194304" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-reference)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">R</text></g><g id="icon-8388608" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="6,5 6,19 18,19, 18,10 13,5"></polygon><line x1="9" y1="9" x2="13" y2="9"></line><line x1="9" y1="12" x2="15" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line></g></g><g id="icon-folder" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="5,5 10,5 12,8 19,8 19,18 5,18"></polygon></g></g><g id="icon-chevronDown" class="tsd-no-select"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-icon-text)"></path></g><g id="icon-chevronSmall" class="tsd-no-select"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-icon-text)"></path></g><g id="icon-checkbox" class="tsd-no-select"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></g><g id="icon-menu" class="tsd-no-select"><rect x="1" y="3" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-icon-text)"></rect></g><g id="icon-search" class="tsd-no-select"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-icon-text)"></path></g><g id="icon-anchor" class="tsd-no-select"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></g>`;
7
+ svg.style.display = "none";
8
+ if (location.protocol === "file:") updateUseElements();
9
+ }
10
+
11
+ function updateUseElements() {
12
+ document.querySelectorAll("use").forEach(el => {
13
+ if (el.getAttribute("href").includes("#icon-")) {
14
+ el.setAttribute("href", el.getAttribute("href").replace(/.*#/, "#"));
15
+ }
16
+ });
17
+ }
18
+ })()
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg"><g id="icon-1" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-2" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">N</text></g><g id="icon-8" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">E</text></g><g id="icon-16" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-32" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">V</text></g><g id="icon-64" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-128" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-256" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">I</text></g><g id="icon-512" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-1024" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-2048" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-method)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4096" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-8192" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-16384" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-32768" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-65536" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-131072" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-262144" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-524288" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-1048576" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-2097152" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-4194304" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-reference)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">R</text></g><g id="icon-8388608" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="6,5 6,19 18,19, 18,10 13,5"></polygon><line x1="9" y1="9" x2="13" y2="9"></line><line x1="9" y1="12" x2="15" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line></g></g><g id="icon-folder" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="5,5 10,5 12,8 19,8 19,18 5,18"></polygon></g></g><g id="icon-chevronDown" class="tsd-no-select"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-icon-text)"></path></g><g id="icon-chevronSmall" class="tsd-no-select"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-icon-text)"></path></g><g id="icon-checkbox" class="tsd-no-select"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></g><g id="icon-menu" class="tsd-no-select"><rect x="1" y="3" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-icon-text)"></rect></g><g id="icon-search" class="tsd-no-select"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-icon-text)"></path></g><g id="icon-anchor" class="tsd-no-select"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></g></svg>