clear-af.js 1.0.0 → 1.0.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.
- package/README.md +90 -62
- package/README_FR.md +125 -0
- package/dist/index.d.ts +108 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +126 -1
- package/docs/.nojekyll +1 -0
- package/docs/assets/hierarchy.js +1 -0
- package/docs/assets/highlight.css +78 -0
- package/docs/assets/icons.js +18 -0
- package/docs/assets/icons.svg +1 -0
- package/docs/assets/main.js +60 -0
- package/docs/assets/navigation.js +1 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1633 -0
- package/docs/functions/camelify.html +7 -0
- package/docs/functions/capitalize.html +7 -0
- package/docs/functions/deepClone.html +7 -0
- package/docs/functions/isEmail.html +7 -0
- package/docs/functions/isEmpty.html +7 -0
- package/docs/functions/isType.html +8 -0
- package/docs/functions/isURL.html +7 -0
- package/docs/functions/kebabify.html +7 -0
- package/docs/functions/logHeader.html +6 -0
- package/docs/functions/logSeparator.html +5 -0
- package/docs/functions/noTwins.html +7 -0
- package/docs/functions/prettyDebug.html +7 -0
- package/docs/functions/prettyError.html +7 -0
- package/docs/functions/prettyInfo.html +7 -0
- package/docs/functions/prettySuccess.html +7 -0
- package/docs/functions/prettyWarn.html +7 -0
- package/docs/functions/snakify.html +7 -0
- package/docs/hierarchy.html +1 -0
- package/docs/index.html +87 -0
- package/docs/media/README_FR.md +125 -0
- package/docs/modules.html +69 -0
- package/package.json +4 -2
- package/src/index.ts +4 -251
- package/src/logging.ts +129 -0
- package/src/object_manipulation.ts +42 -0
- package/src/transformation.ts +89 -0
- package/src/validation.ts +79 -0
package/dist/index.js
CHANGED
|
@@ -7,6 +7,25 @@
|
|
|
7
7
|
|
|
8
8
|
Made by FroostDev | https://github.com/FroostDev - MIT Licence
|
|
9
9
|
*/
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.getDate = getDate;
|
|
12
|
+
exports.prettyError = prettyError;
|
|
13
|
+
exports.prettyWarn = prettyWarn;
|
|
14
|
+
exports.prettySuccess = prettySuccess;
|
|
15
|
+
exports.prettyInfo = prettyInfo;
|
|
16
|
+
exports.prettyDebug = prettyDebug;
|
|
17
|
+
exports.logSeparator = logSeparator;
|
|
18
|
+
exports.logHeader = logHeader;
|
|
19
|
+
exports.isEmpty = isEmpty;
|
|
20
|
+
exports.isType = isType;
|
|
21
|
+
exports.isEmail = isEmail;
|
|
22
|
+
exports.isURL = isURL;
|
|
23
|
+
exports.deepClone = deepClone;
|
|
24
|
+
exports.noTwins = noTwins;
|
|
25
|
+
exports.camelify = camelify;
|
|
26
|
+
exports.kebabify = kebabify;
|
|
27
|
+
exports.snakify = snakify;
|
|
28
|
+
exports.capitalize = capitalize;
|
|
10
29
|
/**
|
|
11
30
|
* =======================
|
|
12
31
|
* Functions for utilities
|
|
@@ -22,9 +41,16 @@ function getDate(time = false) {
|
|
|
22
41
|
*/
|
|
23
42
|
/**
|
|
24
43
|
* Show a pretty error log message with optional date information
|
|
44
|
+
* @category Logging
|
|
25
45
|
* @function prettyError
|
|
26
46
|
* @param err - Error message to display
|
|
27
47
|
* @param time - Include or not a timestamp
|
|
48
|
+
* @example
|
|
49
|
+
* prettyError("Database connection failed");
|
|
50
|
+
* // Output: ✕ - Database connection failed (in red)
|
|
51
|
+
*
|
|
52
|
+
* prettyError("Critical error", true);
|
|
53
|
+
* // Output: ✕ [30/03/2026 10:30:45] - Critical error (in red with timestamp)
|
|
28
54
|
*/
|
|
29
55
|
function prettyError(err, time = false) {
|
|
30
56
|
const date = getDate(time);
|
|
@@ -32,9 +58,16 @@ function prettyError(err, time = false) {
|
|
|
32
58
|
}
|
|
33
59
|
/**
|
|
34
60
|
* Show a pretty warn log message with optional date information
|
|
61
|
+
* @category Logging
|
|
35
62
|
* @function prettyWarn
|
|
36
63
|
* @param warn - Warning message to display
|
|
37
64
|
* @param time - Include or not a timestamp
|
|
65
|
+
* @example
|
|
66
|
+
* prettyWarn("Deprecated function used");
|
|
67
|
+
* // Output: ⚠ - Deprecated function used (in orange)
|
|
68
|
+
*
|
|
69
|
+
* prettyWarn("Low memory", true);
|
|
70
|
+
* // Output: ⚠ [30/03/2026 10:30:45] - Low memory (in orange with timestamp)
|
|
38
71
|
*/
|
|
39
72
|
function prettyWarn(warn, time = false) {
|
|
40
73
|
const date = getDate(time);
|
|
@@ -42,9 +75,16 @@ function prettyWarn(warn, time = false) {
|
|
|
42
75
|
}
|
|
43
76
|
/**
|
|
44
77
|
* Show a pretty success log message with optional date information
|
|
78
|
+
* @category Logging
|
|
45
79
|
* @function prettySuccess
|
|
46
80
|
* @param success - Success message to display
|
|
47
81
|
* @param time - Include or not a timestamp
|
|
82
|
+
* @example
|
|
83
|
+
* prettySuccess("User created successfully");
|
|
84
|
+
* // Output: ✔ - User created successfully (in green)
|
|
85
|
+
*
|
|
86
|
+
* prettySuccess("Data saved", true);
|
|
87
|
+
* // Output: ✔ [30/03/2026 10:30:45] - Data saved (in green with timestamp)
|
|
48
88
|
*/
|
|
49
89
|
function prettySuccess(success, time = false) {
|
|
50
90
|
const date = getDate(time);
|
|
@@ -52,9 +92,16 @@ function prettySuccess(success, time = false) {
|
|
|
52
92
|
}
|
|
53
93
|
/**
|
|
54
94
|
* Show a pretty information log message with optional date information
|
|
95
|
+
* @category Logging
|
|
55
96
|
* @function prettyInfo
|
|
56
97
|
* @param info - Information message to display
|
|
57
98
|
* @param time - Include or not a timestamp
|
|
99
|
+
* @example
|
|
100
|
+
* prettyInfo("Server is running on port 3000");
|
|
101
|
+
* // Output: ℹ - Server is running on port 3000 (in blue)
|
|
102
|
+
*
|
|
103
|
+
* prettyInfo("Cache cleared", true);
|
|
104
|
+
* // Output: ℹ [30/03/2026 10:30:45] - Cache cleared (in blue with timestamp)
|
|
58
105
|
*/
|
|
59
106
|
function prettyInfo(info, time = false) {
|
|
60
107
|
const date = getDate(time);
|
|
@@ -62,9 +109,16 @@ function prettyInfo(info, time = false) {
|
|
|
62
109
|
}
|
|
63
110
|
/**
|
|
64
111
|
* Show a pretty debug log message with optional date information
|
|
112
|
+
* @category Logging
|
|
65
113
|
* @function prettyDebug
|
|
66
114
|
* @param debug - Debug message to display
|
|
67
115
|
* @param time - Include or not a timestamp
|
|
116
|
+
* @example
|
|
117
|
+
* prettyDebug("Variable x = 42");
|
|
118
|
+
* // Output: ⚙ - Variable x = 42 (in white)
|
|
119
|
+
*
|
|
120
|
+
* prettyDebug("Function call trace", true);
|
|
121
|
+
* // Output: ⚙ [30/03/2026 10:30:45] - Function call trace (in white with timestamp)
|
|
68
122
|
*/
|
|
69
123
|
function prettyDebug(debug, time = false) {
|
|
70
124
|
const date = getDate(time);
|
|
@@ -72,15 +126,26 @@ function prettyDebug(debug, time = false) {
|
|
|
72
126
|
}
|
|
73
127
|
/**
|
|
74
128
|
* Show a separator line in console
|
|
129
|
+
* @category Logging
|
|
75
130
|
* @function logSeparator
|
|
131
|
+
* @example
|
|
132
|
+
* logSeparator();
|
|
133
|
+
* // Output: ══════════════════════════════════════════════════
|
|
76
134
|
*/
|
|
77
135
|
function logSeparator() {
|
|
78
136
|
console.log(`\x1b[1m${'═'.repeat(50)}\x1b[0m`);
|
|
79
137
|
}
|
|
80
138
|
/**
|
|
81
139
|
* Display a header with a title in the center
|
|
140
|
+
* @category Logging
|
|
82
141
|
* @function logHeader
|
|
83
142
|
* @param title - The title of the header
|
|
143
|
+
* @example
|
|
144
|
+
* logHeader("Welcome");
|
|
145
|
+
* // Output:
|
|
146
|
+
* // ╔═════════╗
|
|
147
|
+
* // ║ Welcome ║
|
|
148
|
+
* // ╚═════════╝
|
|
84
149
|
*/
|
|
85
150
|
function logHeader(title) {
|
|
86
151
|
console.log(`\x1b[1m╔${'═'.repeat(title.length + 2)}╗\x1b[0m`);
|
|
@@ -94,9 +159,18 @@ function logHeader(title) {
|
|
|
94
159
|
*/
|
|
95
160
|
/**
|
|
96
161
|
* Check if any type of variable is empty
|
|
162
|
+
* @category Validation
|
|
97
163
|
* @function isEmpty
|
|
98
164
|
* @param value - The variable to check
|
|
99
165
|
* @returns {boolean} True if the value is empty, false otherwise
|
|
166
|
+
* @example
|
|
167
|
+
* isEmpty(""); // true
|
|
168
|
+
* isEmpty(" "); // true
|
|
169
|
+
* isEmpty(null); // true
|
|
170
|
+
* isEmpty([]); // true
|
|
171
|
+
* isEmpty({}); // true
|
|
172
|
+
* isEmpty("hello"); // false
|
|
173
|
+
* isEmpty([1, 2]); // false
|
|
100
174
|
*/
|
|
101
175
|
function isEmpty(value) {
|
|
102
176
|
if (value === null || value === undefined)
|
|
@@ -111,19 +185,31 @@ function isEmpty(value) {
|
|
|
111
185
|
}
|
|
112
186
|
/**
|
|
113
187
|
* Check if the variable is of the chosen type
|
|
188
|
+
* @category Validation
|
|
114
189
|
* @function isType
|
|
115
190
|
* @param value - The variable to check
|
|
116
191
|
* @param type - The type you want
|
|
117
192
|
* @returns {boolean} True if the value is of the chosen type, false otherwise
|
|
193
|
+
* @example
|
|
194
|
+
* isType("hello", "string"); // true
|
|
195
|
+
* isType(42, "number"); // true
|
|
196
|
+
* isType([], "object"); // true
|
|
197
|
+
* isType("42", "number"); // false
|
|
118
198
|
*/
|
|
119
199
|
function isType(value, type) {
|
|
120
200
|
return typeof value === type;
|
|
121
201
|
}
|
|
122
202
|
/**
|
|
123
203
|
* Check if an email is valid
|
|
204
|
+
* @category Validation
|
|
124
205
|
* @function isEmail
|
|
125
206
|
* @param email - The email to check
|
|
126
207
|
* @returns {boolean} True if the email is valid, false otherwise
|
|
208
|
+
* @example
|
|
209
|
+
* isEmail("alice@example.com"); // true
|
|
210
|
+
* isEmail("bob.smith@company.co.uk"); // true
|
|
211
|
+
* isEmail("invalid@.com"); // false
|
|
212
|
+
* isEmail("no-at-sign.com"); // false
|
|
127
213
|
*/
|
|
128
214
|
function isEmail(email) {
|
|
129
215
|
const regex = /^[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
|
|
@@ -131,9 +217,15 @@ function isEmail(email) {
|
|
|
131
217
|
}
|
|
132
218
|
/**
|
|
133
219
|
* Check if a URL is valid
|
|
220
|
+
* @category Validation
|
|
134
221
|
* @function isURL
|
|
135
222
|
* @param url - The URL to check
|
|
136
223
|
* @returns {boolean} True if the URL is valid, false otherwise
|
|
224
|
+
* @example
|
|
225
|
+
* isURL("https://www.example.com"); // true
|
|
226
|
+
* isURL("http://example.com/path"); // true
|
|
227
|
+
* isURL("www.example.com"); // false (missing protocol)
|
|
228
|
+
* isURL("not a url"); // false
|
|
137
229
|
*/
|
|
138
230
|
function isURL(url) {
|
|
139
231
|
try {
|
|
@@ -151,9 +243,17 @@ function isURL(url) {
|
|
|
151
243
|
*/
|
|
152
244
|
/**
|
|
153
245
|
* Create a deep clone of any object or array
|
|
246
|
+
* @category Object Manipulation
|
|
154
247
|
* @function deepClone
|
|
155
248
|
* @param obj - The object or array to clone
|
|
156
249
|
* @returns A deep clone of the object
|
|
250
|
+
* @example
|
|
251
|
+
* const user = { name: "Alice", skills: ["JS", "TS"] };
|
|
252
|
+
* const clone = deepClone(user);
|
|
253
|
+
* clone.name = "Bob";
|
|
254
|
+
* clone.skills[0] = "Python";
|
|
255
|
+
* console.log(user.name); // "Alice" (unchanged)
|
|
256
|
+
* console.log(user.skills[0]); // "JS" (unchanged)
|
|
157
257
|
*/
|
|
158
258
|
function deepClone(obj) {
|
|
159
259
|
if (obj === null || typeof obj !== "object")
|
|
@@ -169,23 +269,33 @@ function deepClone(obj) {
|
|
|
169
269
|
}
|
|
170
270
|
/**
|
|
171
271
|
* Remove duplicate values from an array
|
|
272
|
+
* @category Object Manipulation
|
|
172
273
|
* @function noTwins
|
|
173
274
|
* @param arr - The array to remove duplicates from
|
|
174
275
|
* @returns {unknown[]} A new array with unique values only
|
|
276
|
+
* @example
|
|
277
|
+
* noTwins([1, 2, 2, 3, 3, 3]); // [1, 2, 3]
|
|
278
|
+
* noTwins(["a", "b", "a", "c"]); // ["a", "b", "c"]
|
|
279
|
+
* noTwins([1, "1", 1, "1"]); // [1, "1"]
|
|
175
280
|
*/
|
|
176
281
|
function noTwins(arr) {
|
|
177
282
|
return Array.from(new Set(arr));
|
|
178
283
|
}
|
|
179
284
|
/**
|
|
180
285
|
*
|
|
181
|
-
*
|
|
286
|
+
* Transformation utilites
|
|
182
287
|
*
|
|
183
288
|
*/
|
|
184
289
|
/**
|
|
185
290
|
* Transform a string to camelCase format
|
|
291
|
+
* @category Transformation
|
|
186
292
|
* @function camelify
|
|
187
293
|
* @param str - The string to transform
|
|
188
294
|
* @returns {string} The string in camelCase format
|
|
295
|
+
* @example
|
|
296
|
+
* camelify("hello world"); // "helloWorld"
|
|
297
|
+
* camelify("C'est un test"); // "cestUnTest"
|
|
298
|
+
* camelify("foo bar baz"); // "fooBarBaz"
|
|
189
299
|
*/
|
|
190
300
|
function camelify(str) {
|
|
191
301
|
let camelCased = "";
|
|
@@ -203,9 +313,14 @@ function camelify(str) {
|
|
|
203
313
|
}
|
|
204
314
|
/**
|
|
205
315
|
* Transform a string to kebab-case format
|
|
316
|
+
* @category Transformation
|
|
206
317
|
* @function kebabify
|
|
207
318
|
* @param str - The string to transform
|
|
208
319
|
* @returns {string} The string in kebab-case format
|
|
320
|
+
* @example
|
|
321
|
+
* kebabify("hello world"); // "hello-world"
|
|
322
|
+
* kebabify("C'est un test"); // "ceststun-test"
|
|
323
|
+
* kebabify("foo bar baz"); // "foo-bar-baz"
|
|
209
324
|
*/
|
|
210
325
|
function kebabify(str) {
|
|
211
326
|
let kebabised = "";
|
|
@@ -219,9 +334,14 @@ function kebabify(str) {
|
|
|
219
334
|
}
|
|
220
335
|
/**
|
|
221
336
|
* Transform a string to snake_case format
|
|
337
|
+
* @category Transformation
|
|
222
338
|
* @function snakify
|
|
223
339
|
* @param str - The string to transform
|
|
224
340
|
* @returns {string} The string in snake_case format
|
|
341
|
+
* @example
|
|
342
|
+
* snakify("hello world"); // "hello_world"
|
|
343
|
+
* snakify("C'est un test"); // "ceststun_test"
|
|
344
|
+
* snakify("foo bar baz"); // "foo_bar_baz"
|
|
225
345
|
*/
|
|
226
346
|
function snakify(str) {
|
|
227
347
|
let snaked = "";
|
|
@@ -235,9 +355,14 @@ function snakify(str) {
|
|
|
235
355
|
}
|
|
236
356
|
/**
|
|
237
357
|
* Capitalize the first character of a string
|
|
358
|
+
* @category Transformation
|
|
238
359
|
* @function capitalize
|
|
239
360
|
* @param str - The string to capitalize
|
|
240
361
|
* @returns {string} The string with the first character in uppercase
|
|
362
|
+
* @example
|
|
363
|
+
* capitalize("hello"); // "Hello"
|
|
364
|
+
* capitalize("hello world"); // "Hello world"
|
|
365
|
+
* capitalize(""); // ""
|
|
241
366
|
*/
|
|
242
367
|
function capitalize(str) {
|
|
243
368
|
if (isEmpty(str))
|
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 @@
|
|
|
1
|
+
window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg=="
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--light-hl-0: #795E26;
|
|
3
|
+
--dark-hl-0: #DCDCAA;
|
|
4
|
+
--light-hl-1: #000000;
|
|
5
|
+
--dark-hl-1: #D4D4D4;
|
|
6
|
+
--light-hl-2: #A31515;
|
|
7
|
+
--dark-hl-2: #CE9178;
|
|
8
|
+
--light-hl-3: #0000FF;
|
|
9
|
+
--dark-hl-3: #569CD6;
|
|
10
|
+
--light-hl-4: #0070C1;
|
|
11
|
+
--dark-hl-4: #4FC1FF;
|
|
12
|
+
--light-hl-5: #001080;
|
|
13
|
+
--dark-hl-5: #9CDCFE;
|
|
14
|
+
--light-hl-6: #008000;
|
|
15
|
+
--dark-hl-6: #6A9955;
|
|
16
|
+
--light-hl-7: #098658;
|
|
17
|
+
--dark-hl-7: #B5CEA8;
|
|
18
|
+
--light-code-background: #FFFFFF;
|
|
19
|
+
--dark-code-background: #1E1E1E;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@media (prefers-color-scheme: light) { :root {
|
|
23
|
+
--hl-0: var(--light-hl-0);
|
|
24
|
+
--hl-1: var(--light-hl-1);
|
|
25
|
+
--hl-2: var(--light-hl-2);
|
|
26
|
+
--hl-3: var(--light-hl-3);
|
|
27
|
+
--hl-4: var(--light-hl-4);
|
|
28
|
+
--hl-5: var(--light-hl-5);
|
|
29
|
+
--hl-6: var(--light-hl-6);
|
|
30
|
+
--hl-7: var(--light-hl-7);
|
|
31
|
+
--code-background: var(--light-code-background);
|
|
32
|
+
} }
|
|
33
|
+
|
|
34
|
+
@media (prefers-color-scheme: dark) { :root {
|
|
35
|
+
--hl-0: var(--dark-hl-0);
|
|
36
|
+
--hl-1: var(--dark-hl-1);
|
|
37
|
+
--hl-2: var(--dark-hl-2);
|
|
38
|
+
--hl-3: var(--dark-hl-3);
|
|
39
|
+
--hl-4: var(--dark-hl-4);
|
|
40
|
+
--hl-5: var(--dark-hl-5);
|
|
41
|
+
--hl-6: var(--dark-hl-6);
|
|
42
|
+
--hl-7: var(--dark-hl-7);
|
|
43
|
+
--code-background: var(--dark-code-background);
|
|
44
|
+
} }
|
|
45
|
+
|
|
46
|
+
:root[data-theme='light'] {
|
|
47
|
+
--hl-0: var(--light-hl-0);
|
|
48
|
+
--hl-1: var(--light-hl-1);
|
|
49
|
+
--hl-2: var(--light-hl-2);
|
|
50
|
+
--hl-3: var(--light-hl-3);
|
|
51
|
+
--hl-4: var(--light-hl-4);
|
|
52
|
+
--hl-5: var(--light-hl-5);
|
|
53
|
+
--hl-6: var(--light-hl-6);
|
|
54
|
+
--hl-7: var(--light-hl-7);
|
|
55
|
+
--code-background: var(--light-code-background);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
:root[data-theme='dark'] {
|
|
59
|
+
--hl-0: var(--dark-hl-0);
|
|
60
|
+
--hl-1: var(--dark-hl-1);
|
|
61
|
+
--hl-2: var(--dark-hl-2);
|
|
62
|
+
--hl-3: var(--dark-hl-3);
|
|
63
|
+
--hl-4: var(--dark-hl-4);
|
|
64
|
+
--hl-5: var(--dark-hl-5);
|
|
65
|
+
--hl-6: var(--dark-hl-6);
|
|
66
|
+
--hl-7: var(--dark-hl-7);
|
|
67
|
+
--code-background: var(--dark-code-background);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.hl-0 { color: var(--hl-0); }
|
|
71
|
+
.hl-1 { color: var(--hl-1); }
|
|
72
|
+
.hl-2 { color: var(--hl-2); }
|
|
73
|
+
.hl-3 { color: var(--hl-3); }
|
|
74
|
+
.hl-4 { color: var(--hl-4); }
|
|
75
|
+
.hl-5 { color: var(--hl-5); }
|
|
76
|
+
.hl-6 { color: var(--hl-6); }
|
|
77
|
+
.hl-7 { color: var(--hl-7); }
|
|
78
|
+
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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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><g id="icon-alertNote" class="tsd-no-select"><path fill="var(--color-alert-note)" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g><g id="icon-alertTip" class="tsd-no-select"><path fill="var(--color-alert-tip)" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z"></path></g><g id="icon-alertImportant" class="tsd-no-select"><path fill="var(--color-alert-important)" d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertWarning" class="tsd-no-select"><path fill="var(--color-alert-warning)" d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertCaution" class="tsd-no-select"><path fill="var(--color-alert-caution)" d="M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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%" dy="0.35em" 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><g id="icon-alertNote" class="tsd-no-select"><path fill="var(--color-alert-note)" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g><g id="icon-alertTip" class="tsd-no-select"><path fill="var(--color-alert-tip)" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z"></path></g><g id="icon-alertImportant" class="tsd-no-select"><path fill="var(--color-alert-important)" d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertWarning" class="tsd-no-select"><path fill="var(--color-alert-warning)" d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertCaution" class="tsd-no-select"><path fill="var(--color-alert-caution)" d="M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g></svg>
|