@morda-dev/create-sdk 1.0.1 → 1.1.0
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 +51 -0
- package/bin/create-sdk.js +185 -31
- package/package.json +14 -4
- package/template/.github/workflows/ci.yml +30 -35
- package/template/api-extractor.json +6 -6
- package/template/etc/project-template.api.md +32 -32
- package/template/package.json +14 -5
- package/template/src/index.ts +8 -2
- package/template/src/modules/user.ts +23 -4
- package/template/src/types/user.ts +11 -3
- package/template/.editorconfig +0 -0
- package/template/.github/CODEOWNERS +0 -2
- package/template/.github/ISSUE_TEMPLATE/bug_report.md +0 -35
- package/template/.github/ISSUE_TEMPLATE/feature_request.md +0 -26
- package/template/.github/dependabot.yml +0 -18
- package/template/.github/pull_request_template.md +0 -25
- package/template/.github/workflows/auto-release.yml +0 -77
- package/template/.github/workflows/deploy-pages.yml +0 -73
- package/template/.github/workflows/docs-ci.yml +0 -38
- package/template/.github/workflows/docs.yml +0 -19
- package/template/.github/workflows/release.yml +0 -51
- package/template/.husky/commit-msg +0 -4
- package/template/.husky/pre-commit +0 -4
- package/template/.prettierrc +0 -0
- package/template/CHANGELOG.md +0 -49
- package/template/CODE_OF_CONDUCT.md +0 -40
- package/template/CONTRIBUTING.md +0 -38
- package/template/SECURITY.md +0 -16
- package/template/TEST_DEPLOY.md +0 -0
- package/template/ci-cd.md +0 -93
- package/template/commitlint.config.cjs +0 -3
- package/template/coverage/base.css +0 -224
- package/template/coverage/block-navigation.js +0 -87
- package/template/coverage/clover.xml +0 -6
- package/template/coverage/coverage-final.json +0 -1
- package/template/coverage/favicon.png +0 -0
- package/template/coverage/index.html +0 -101
- package/template/coverage/prettify.css +0 -1
- package/template/coverage/prettify.js +0 -2
- package/template/coverage/sort-arrow-sprite.png +0 -0
- package/template/coverage/sorter.js +0 -210
- package/template/docs/api/README.md +0 -5
- package/template/docs/api-auto/README.md +0 -5
- package/template/docs/index.html +0 -73
- package/template/docs/index.md +0 -28
- package/template/docusaurus-build/.github/workflows/deploy-docs.yml +0 -46
- package/template/docusaurus-build/.github/workflows/deploy-pages.yml +0 -43
- package/template/docusaurus-build/README.md +0 -44
- package/template/docusaurus-build/blog/authors.yml +0 -34
- package/template/docusaurus-build/blog/hello-world.md +0 -9
- package/template/docusaurus-build/docs/ci-cd.md +0 -62
- package/template/docusaurus-build/docs/conventions.md +0 -50
- package/template/docusaurus-build/docs/folder-structure.md +0 -24
- package/template/docusaurus-build/docs/getting-started.md +0 -24
- package/template/docusaurus-build/docs/intro.md +0 -14
- package/template/docusaurus-build/docs/project-architecture.md +0 -125
- package/template/docusaurus-build/docs/project-template/architecture.md +0 -82
- package/template/docusaurus-build/docs/project-template/getting-started.md +0 -24
- package/template/docusaurus-build/docs/project-template/overview.md +0 -78
- package/template/docusaurus-build/docs/project-template/structure.md +0 -145
- package/template/docusaurus-build/docs/scripts.md +0 -42
- package/template/docusaurus-build/docs/testing.md +0 -30
- package/template/docusaurus-build/docusaurus-build/sidebars.ts +0 -30
- package/template/docusaurus-build/docusaurus-build/tsconfig.json +0 -8
- package/template/docusaurus-build/docusaurus-build/typedoc.tsconfig.json +0 -28
- package/template/docusaurus-build/docusaurus.config.ts +0 -129
- package/template/docusaurus-build/package-lock.json +0 -18235
- package/template/docusaurus-build/package.json +0 -51
- package/template/docusaurus-build/project-template/README.md +0 -44
- package/template/docusaurus-build/project-template/src/index.ts +0 -4
- package/template/docusaurus-build/project-template/src/modules/user.ts +0 -20
- package/template/docusaurus-build/project-template/src/types/user.ts +0 -5
- package/template/docusaurus-build/sidebars.ts +0 -20
- package/template/docusaurus-build/src/components/HomepageFeatures/index.tsx +0 -71
- package/template/docusaurus-build/src/components/HomepageFeatures/styles.module.css +0 -11
- package/template/docusaurus-build/src/css/custom.css +0 -30
- package/template/docusaurus-build/src/pages/index.module.css +0 -23
- package/template/docusaurus-build/src/pages/index.tsx +0 -52
- package/template/docusaurus-build/src/pages/markdown-page.md +0 -7
- package/template/docusaurus-build/static/.nojekyll +0 -0
- package/template/docusaurus-build/static/api/.nojekyll +0 -1
- package/template/docusaurus-build/static/api/assets/hierarchy.js +0 -1
- package/template/docusaurus-build/static/api/assets/highlight.css +0 -22
- package/template/docusaurus-build/static/api/assets/icons.js +0 -18
- package/template/docusaurus-build/static/api/assets/icons.svg +0 -1
- package/template/docusaurus-build/static/api/assets/main.js +0 -60
- package/template/docusaurus-build/static/api/assets/navigation.js +0 -1
- package/template/docusaurus-build/static/api/assets/search.js +0 -1
- package/template/docusaurus-build/static/api/assets/style.css +0 -1633
- package/template/docusaurus-build/static/api/functions/modules_user.getUser.html +0 -1
- package/template/docusaurus-build/static/api/functions/modules_user.sumAges.html +0 -1
- package/template/docusaurus-build/static/api/hierarchy.html +0 -1
- package/template/docusaurus-build/static/api/index.html +0 -1
- package/template/docusaurus-build/static/api/modules/index.html +0 -1
- package/template/docusaurus-build/static/api/modules/modules_user.html +0 -1
- package/template/docusaurus-build/static/api/modules/types_user.html +0 -1
- package/template/docusaurus-build/static/api/types/types_user.ApiResult.html +0 -3
- package/template/docusaurus-build/static/api/types/types_user.User.html +0 -4
- package/template/docusaurus-build/static/img/docusaurus-social-card.jpg +0 -0
- package/template/docusaurus-build/static/img/docusaurus.png +0 -0
- package/template/docusaurus-build/static/img/favicon.ico +0 -0
- package/template/docusaurus-build/static/img/logo.svg +0 -1
- package/template/docusaurus-build/static/img/undraw_docusaurus_mountain.svg +0 -171
- package/template/docusaurus-build/static/img/undraw_docusaurus_react.svg +0 -170
- package/template/docusaurus-build/static/img/undraw_docusaurus_tree.svg +0 -40
- package/template/docusaurus-build/tsconfig.json +0 -8
- package/template/docusaurus-build/typedoc.json +0 -14
- package/template/docusaurus-build/typedoc.tsconfig.json +0 -7
- package/template/eslint.config.mjs +0 -72
- package/template/morda-dev-project-template-0.1.1.tgz +0 -0
- package/template/package-lock.json +0 -45
- package/template/scripts/commitlint-runner.mjs +0 -10
- package/template/test.ts +0 -4
- package/template/tests/example.test.js +0 -3
- package/template/tests/public-api.snapshot.test.ts +0 -13
- package/template/tests/public-api.test.ts +0 -58
- package/template/tests/user.test.ts +0 -16
- package/template/tsconfig.eslint.json +0 -14
- package/template/typedoc.json +0 -6
- package/template/vitest.config.ts +0 -12
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "docusaurus-build",
|
|
3
|
-
"version": "0.0.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"docusaurus": "docusaurus",
|
|
7
|
-
"start": "docusaurus start",
|
|
8
|
-
"build": "docusaurus build",
|
|
9
|
-
"swizzle": "docusaurus swizzle",
|
|
10
|
-
"deploy": "docusaurus deploy",
|
|
11
|
-
"clear": "docusaurus clear",
|
|
12
|
-
"serve": "docusaurus serve",
|
|
13
|
-
"write-translations": "docusaurus write-translations",
|
|
14
|
-
"write-heading-ids": "docusaurus write-heading-ids",
|
|
15
|
-
"typecheck": "tsc",
|
|
16
|
-
|
|
17
|
-
"docs:api": "typedoc --tsconfig typedoc.tsconfig.json"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@docusaurus/core": "3.9.2",
|
|
21
|
-
"@docusaurus/preset-classic": "3.9.2",
|
|
22
|
-
"@mdx-js/react": "^3.0.0",
|
|
23
|
-
"clsx": "^2.0.0",
|
|
24
|
-
"prism-react-renderer": "^2.3.0",
|
|
25
|
-
"react": "^19.0.0",
|
|
26
|
-
"react-dom": "^19.0.0"
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@docusaurus/module-type-aliases": "3.9.2",
|
|
30
|
-
"@docusaurus/tsconfig": "3.9.2",
|
|
31
|
-
"@docusaurus/types": "3.9.2",
|
|
32
|
-
"typedoc": "^0.28.15",
|
|
33
|
-
"typedoc-plugin-markdown": "^4.9.0",
|
|
34
|
-
"typescript": "~5.6.2"
|
|
35
|
-
},
|
|
36
|
-
"browserslist": {
|
|
37
|
-
"production": [
|
|
38
|
-
">0.5%",
|
|
39
|
-
"not dead",
|
|
40
|
-
"not op_mini all"
|
|
41
|
-
],
|
|
42
|
-
"development": [
|
|
43
|
-
"last 3 chrome version",
|
|
44
|
-
"last 3 firefox version",
|
|
45
|
-
"last 5 safari version"
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
|
-
"engines": {
|
|
49
|
-
"node": ">=20.0"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# @morda-dev/project-template
|
|
2
|
-
|
|
3
|
-
Production-ready TypeScript SDK template with a strict public API, ESM-first setup,
|
|
4
|
-
and best practices baked in.
|
|
5
|
-
|
|
6
|
-
This package can be used as:
|
|
7
|
-
- a base for building your own SDK
|
|
8
|
-
- a reference for ESM + TypeScript library architecture
|
|
9
|
-
- a starting point for production-ready npm packages
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
## Installation
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
npm install @morda-dev/project-template
|
|
16
|
-
```
|
|
17
|
-
Usage
|
|
18
|
-
|
|
19
|
-
import { getUser, sumAges } from '@morda-dev/project-template';
|
|
20
|
-
|
|
21
|
-
const user = getUser(1);
|
|
22
|
-
console.log(user);
|
|
23
|
-
|
|
24
|
-
const totalAge = sumAges([
|
|
25
|
-
{ id: 1, name: 'Alice', age: 20 },
|
|
26
|
-
{ id: 2, name: 'Bob', age: 30 },
|
|
27
|
-
]);
|
|
28
|
-
|
|
29
|
-
console.log(totalAge);
|
|
30
|
-
API
|
|
31
|
-
getUser(id: number)
|
|
32
|
-
|
|
33
|
-
Returns a user wrapped in ApiResult.
|
|
34
|
-
|
|
35
|
-
sumAges(users: User[])
|
|
36
|
-
|
|
37
|
-
Returns the sum of all user ages.
|
|
38
|
-
|
|
39
|
-
License
|
|
40
|
-
|
|
41
|
-
ISC
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
---
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { User } from "../types/user";
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Возвращает пользователя по ID.
|
|
5
|
-
* Чистая функция, легко тестируется.
|
|
6
|
-
*/
|
|
7
|
-
export function getUser(id: string): User {
|
|
8
|
-
return {
|
|
9
|
-
id,
|
|
10
|
-
name: "John Doe",
|
|
11
|
-
age: 25,
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Складывает возраст двух пользователей.
|
|
17
|
-
*/
|
|
18
|
-
export function sumAges(a: User, b: User): number {
|
|
19
|
-
return a.age + b.age;
|
|
20
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Явный sidebar — production-вариант
|
|
5
|
-
* ❌ без autogenerated
|
|
6
|
-
* ✅ полный контроль маршрутов
|
|
7
|
-
*/
|
|
8
|
-
const sidebars: SidebarsConfig = {
|
|
9
|
-
tutorialSidebar: [
|
|
10
|
-
"intro",
|
|
11
|
-
"getting-started",
|
|
12
|
-
"project-architecture",
|
|
13
|
-
"folder-structure",
|
|
14
|
-
"ci-cd",
|
|
15
|
-
"testing",
|
|
16
|
-
"scripts",
|
|
17
|
-
],
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
export default sidebars;
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
import type {ReactNode} from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import Heading from '@theme/Heading';
|
|
4
|
-
import styles from './styles.module.css';
|
|
5
|
-
|
|
6
|
-
type FeatureItem = {
|
|
7
|
-
title: string;
|
|
8
|
-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
|
|
9
|
-
description: ReactNode;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
const FeatureList: FeatureItem[] = [
|
|
13
|
-
{
|
|
14
|
-
title: 'Easy to Use',
|
|
15
|
-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
|
|
16
|
-
description: (
|
|
17
|
-
<>
|
|
18
|
-
Docusaurus was designed from the ground up to be easily installed and
|
|
19
|
-
used to get your website up and running quickly.
|
|
20
|
-
</>
|
|
21
|
-
),
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
title: 'Focus on What Matters',
|
|
25
|
-
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
|
|
26
|
-
description: (
|
|
27
|
-
<>
|
|
28
|
-
Docusaurus lets you focus on your docs, and we'll do the chores. Go
|
|
29
|
-
ahead and move your docs into the <code>docs</code> directory.
|
|
30
|
-
</>
|
|
31
|
-
),
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
title: 'Powered by React',
|
|
35
|
-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
|
|
36
|
-
description: (
|
|
37
|
-
<>
|
|
38
|
-
Extend or customize your website layout by reusing React. Docusaurus can
|
|
39
|
-
be extended while reusing the same header and footer.
|
|
40
|
-
</>
|
|
41
|
-
),
|
|
42
|
-
},
|
|
43
|
-
];
|
|
44
|
-
|
|
45
|
-
function Feature({title, Svg, description}: FeatureItem) {
|
|
46
|
-
return (
|
|
47
|
-
<div className={clsx('col col--4')}>
|
|
48
|
-
<div className="text--center">
|
|
49
|
-
<Svg className={styles.featureSvg} role="img" />
|
|
50
|
-
</div>
|
|
51
|
-
<div className="text--center padding-horiz--md">
|
|
52
|
-
<Heading as="h3">{title}</Heading>
|
|
53
|
-
<p>{description}</p>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export default function HomepageFeatures(): ReactNode {
|
|
60
|
-
return (
|
|
61
|
-
<section className={styles.features}>
|
|
62
|
-
<div className="container">
|
|
63
|
-
<div className="row">
|
|
64
|
-
{FeatureList.map((props, idx) => (
|
|
65
|
-
<Feature key={idx} {...props} />
|
|
66
|
-
))}
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</section>
|
|
70
|
-
);
|
|
71
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Any CSS included here will be global. The classic template
|
|
3
|
-
* bundles Infima by default. Infima is a CSS framework designed to
|
|
4
|
-
* work well for content-centric websites.
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/* You can override the default Infima variables here. */
|
|
8
|
-
:root {
|
|
9
|
-
--ifm-color-primary: #2e8555;
|
|
10
|
-
--ifm-color-primary-dark: #29784c;
|
|
11
|
-
--ifm-color-primary-darker: #277148;
|
|
12
|
-
--ifm-color-primary-darkest: #205d3b;
|
|
13
|
-
--ifm-color-primary-light: #33925d;
|
|
14
|
-
--ifm-color-primary-lighter: #359962;
|
|
15
|
-
--ifm-color-primary-lightest: #3cad6e;
|
|
16
|
-
--ifm-code-font-size: 95%;
|
|
17
|
-
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
21
|
-
[data-theme='dark'] {
|
|
22
|
-
--ifm-color-primary: #25c2a0;
|
|
23
|
-
--ifm-color-primary-dark: #21af90;
|
|
24
|
-
--ifm-color-primary-darker: #1fa588;
|
|
25
|
-
--ifm-color-primary-darkest: #1a8870;
|
|
26
|
-
--ifm-color-primary-light: #29d5b0;
|
|
27
|
-
--ifm-color-primary-lighter: #32d8b4;
|
|
28
|
-
--ifm-color-primary-lightest: #4fddbf;
|
|
29
|
-
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
30
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
3
|
-
* and scoped locally.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
.heroBanner {
|
|
7
|
-
padding: 4rem 0;
|
|
8
|
-
text-align: center;
|
|
9
|
-
position: relative;
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@media screen and (max-width: 996px) {
|
|
14
|
-
.heroBanner {
|
|
15
|
-
padding: 2rem;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.buttons {
|
|
20
|
-
display: flex;
|
|
21
|
-
align-items: center;
|
|
22
|
-
justify-content: center;
|
|
23
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
import clsx from 'clsx';
|
|
3
|
-
import Link from '@docusaurus/Link';
|
|
4
|
-
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
5
|
-
import Layout from '@theme/Layout';
|
|
6
|
-
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
|
7
|
-
import Heading from '@theme/Heading';
|
|
8
|
-
|
|
9
|
-
import styles from './index.module.css';
|
|
10
|
-
|
|
11
|
-
function HomepageHeader() {
|
|
12
|
-
const { siteConfig } = useDocusaurusContext();
|
|
13
|
-
|
|
14
|
-
return (
|
|
15
|
-
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
|
16
|
-
<div className="container">
|
|
17
|
-
<Heading as="h1" className="hero__title">
|
|
18
|
-
{siteConfig.title}
|
|
19
|
-
</Heading>
|
|
20
|
-
|
|
21
|
-
<p className="hero__subtitle">
|
|
22
|
-
{siteConfig.tagline}
|
|
23
|
-
</p>
|
|
24
|
-
|
|
25
|
-
<div className={styles.buttons}>
|
|
26
|
-
<Link
|
|
27
|
-
className="button button--secondary button--lg"
|
|
28
|
-
to="/intro"
|
|
29
|
-
>
|
|
30
|
-
Docusaurus Tutorial · 5 min ⏱️
|
|
31
|
-
</Link>
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
34
|
-
</header>
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export default function Home(): ReactNode {
|
|
39
|
-
const { siteConfig } = useDocusaurusContext();
|
|
40
|
-
|
|
41
|
-
return (
|
|
42
|
-
<Layout
|
|
43
|
-
title={`Hello from ${siteConfig.title}`}
|
|
44
|
-
description="Production-ready TypeScript template documentation"
|
|
45
|
-
>
|
|
46
|
-
<HomepageHeader />
|
|
47
|
-
<main>
|
|
48
|
-
<HomepageFeatures />
|
|
49
|
-
</main>
|
|
50
|
-
</Layout>
|
|
51
|
-
);
|
|
52
|
-
}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
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.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg=="
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--light-code-background: #FFFFFF;
|
|
3
|
-
--dark-code-background: #1E1E1E;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
@media (prefers-color-scheme: light) { :root {
|
|
7
|
-
--code-background: var(--light-code-background);
|
|
8
|
-
} }
|
|
9
|
-
|
|
10
|
-
@media (prefers-color-scheme: dark) { :root {
|
|
11
|
-
--code-background: var(--dark-code-background);
|
|
12
|
-
} }
|
|
13
|
-
|
|
14
|
-
:root[data-theme='light'] {
|
|
15
|
-
--code-background: var(--light-code-background);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
:root[data-theme='dark'] {
|
|
19
|
-
--code-background: var(--dark-code-background);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
pre, code { background: var(--code-background); }
|
|
@@ -1,18 +0,0 @@
|
|
|
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><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
|
-
})()
|
|
@@ -1 +0,0 @@
|
|
|
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><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>
|