briyah 1.0.7 → 1.0.9
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 +31 -21
- package/dist/server/src/ai/LLM/anthropic.service.js +16 -8
- package/dist/server/src/ai/LLM/base-ai.service.js +5 -4
- package/dist/server/src/ai/LLM/deepseek.service.js +8 -6
- package/dist/server/src/ai/LLM/fal.service.js +15 -14
- package/dist/server/src/ai/LLM/googleai.service.js +10 -8
- package/dist/server/src/ai/LLM/grok.service.js +9 -7
- package/dist/server/src/ai/LLM/mock.service.js +7 -6
- package/dist/server/src/ai/LLM/openai.service.js +15 -13
- package/dist/server/src/ai/LLM/together.service.js +10 -8
- package/dist/server/src/ai/LLM/vertexai.service.js +10 -9
- package/dist/server/src/ai/agent-store.service.js +12 -11
- package/dist/server/src/ai/artifact.service.js +7 -6
- package/dist/server/src/ai/attached-file.service.js +8 -7
- package/dist/server/src/ai/published-agents.service.js +5 -4
- package/dist/server/src/app/balance.service.js +7 -6
- package/dist/server/src/app/stripe.controller.js +12 -11
- package/dist/server/src/app/stripe.service.js +20 -19
- package/dist/server/src/app/transaction.service.js +6 -5
- package/dist/server/src/app/user-service-manager.js +6 -5
- package/dist/server/src/app.controller.js +95 -94
- package/dist/server/src/app.service.js +31 -30
- package/dist/server/src/auth/auth.controller.js +21 -20
- package/dist/server/src/auth/jwt-auth.guard.js +4 -3
- package/dist/server/src/auth/rate-limit.service.d.ts +0 -1
- package/dist/server/src/auth/rate-limit.service.js +6 -7
- package/dist/server/src/auth/twilio.service.js +4 -3
- package/dist/server/src/auth/users.service.js +5 -4
- package/dist/server/src/common/logger.d.ts +21 -0
- package/dist/server/src/common/logger.js +83 -0
- package/dist/server/src/room/artifact-store.service.d.ts +0 -1
- package/dist/server/src/room/artifact-store.service.js +16 -17
- package/dist/server/src/room/published-rooms.service.js +3 -2
- package/dist/server/src/room/room-store.service.js +17 -16
- package/dist/server/src/room/room.js +14 -13
- package/dist/server/src/sdk/briyah-config.d.ts +7 -0
- package/dist/server/src/sdk/briyah-config.js +1 -0
- package/dist/server/src/sdk/briyah.js +13 -4
- package/dist/server/src/sdk/index.d.ts +4 -1
- package/dist/server/src/sdk/index.js +3 -1
- package/dist/server/src/story/story-progress.service.js +2 -1
- package/dist/server/src/story/story-store.service.js +28 -27
- package/dist/server/src/story/story.service.js +114 -113
- package/dist/shared/types/app.types.d.ts +1 -2
- package/docs/.nojekyll +1 -0
- package/docs/assets/hierarchy.js +1 -0
- package/docs/assets/highlight.css +106 -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/classes/Agent.html +87 -0
- package/docs/classes/Briyah.html +64 -0
- package/docs/classes/BriyahConfigService.html +12 -0
- package/docs/classes/Room.html +119 -0
- package/docs/classes/RoomMessage.html +41 -0
- package/docs/enums/MessageAction.html +13 -0
- package/docs/hierarchy.html +1 -0
- package/docs/index.html +136 -0
- package/docs/interfaces/AgentInfo.html +17 -0
- package/docs/interfaces/AgentMessagesResponse.html +5 -0
- package/docs/interfaces/AppService.html +741 -0
- package/docs/interfaces/Artifact.html +6 -0
- package/docs/interfaces/ArtifactMetadata.html +8 -0
- package/docs/interfaces/AttachDocumentResponse.html +3 -0
- package/docs/interfaces/BriyahConfigOptions.html +16 -0
- package/docs/interfaces/ChapterInfo.html +3 -0
- package/docs/interfaces/Character.html +7 -0
- package/docs/interfaces/CreateAgentResponse.html +2 -0
- package/docs/interfaces/CreateRoomResponse.html +3 -0
- package/docs/interfaces/CreateStoryResponse.html +2 -0
- package/docs/interfaces/FileList.html +2 -0
- package/docs/interfaces/LoggingOptions.html +9 -0
- package/docs/interfaces/Message.html +6 -0
- package/docs/interfaces/ModelInfo.html +5 -0
- package/docs/interfaces/PreparedPromptResponse.html +3 -0
- package/docs/interfaces/ProcessTextResponse.html +7 -0
- package/docs/interfaces/PromptFile.html +3 -0
- package/docs/interfaces/PromptFileContent.html +3 -0
- package/docs/interfaces/PromptFilesResponse.html +2 -0
- package/docs/interfaces/PromptFolder.html +3 -0
- package/docs/interfaces/PromptFoldersResponse.html +2 -0
- package/docs/interfaces/RoomDetails.html +9 -0
- package/docs/interfaces/RoomInfo.html +5 -0
- package/docs/interfaces/RoomMessagesResponse.html +3 -0
- package/docs/interfaces/StoryIdea.html +5 -0
- package/docs/interfaces/StoryInfo.html +21 -0
- package/docs/interfaces/StoryMessageUpdate.html +6 -0
- package/docs/interfaces/StoryState.html +15 -0
- package/docs/interfaces/StorySuggestion.html +9 -0
- package/docs/modules.html +1 -0
- package/docs/types/PromptScope.html +1 -0
- package/package.json +6 -3
- package/data/common/config/story_ideas.txt +0 -6
|
@@ -247,8 +247,7 @@ export interface StorySuggestion {
|
|
|
247
247
|
timestamp: number;
|
|
248
248
|
}
|
|
249
249
|
export interface StoryMessageUpdate {
|
|
250
|
-
type: '
|
|
251
|
-
message?: Message;
|
|
250
|
+
type: 'state' | 'suggestion' | 'error';
|
|
252
251
|
state?: StoryState;
|
|
253
252
|
suggestion?: StorySuggestion;
|
|
254
253
|
error?: {
|
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 = "eJx1jc0KgzAQhN9lzrFWwWLyDr30Kh6CWWtoTCCbniTvXtI/pNDTwM63822IISSGGjopR4FIs6Mp2eAZakMnZQmvV4LCmZj1lSBws95Atd1J4B4dFKxPFGc9Eddv6rCk1UFgcpoZColNVd6qL1rKxToTyUMNzbHvxyxQcue8hLD+epu2/3if68T1Dvsrfh1yzg8aB1Bi"
|
|
@@ -0,0 +1,106 @@
|
|
|
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: #AF00DB;
|
|
9
|
+
--dark-hl-3: #C586C0;
|
|
10
|
+
--light-hl-4: #001080;
|
|
11
|
+
--dark-hl-4: #9CDCFE;
|
|
12
|
+
--light-hl-5: #008000;
|
|
13
|
+
--dark-hl-5: #6A9955;
|
|
14
|
+
--light-hl-6: #0000FF;
|
|
15
|
+
--dark-hl-6: #569CD6;
|
|
16
|
+
--light-hl-7: #0070C1;
|
|
17
|
+
--dark-hl-7: #4FC1FF;
|
|
18
|
+
--light-hl-8: #098658;
|
|
19
|
+
--dark-hl-8: #B5CEA8;
|
|
20
|
+
--light-hl-9: #267F99;
|
|
21
|
+
--dark-hl-9: #4EC9B0;
|
|
22
|
+
--light-hl-10: #000000FF;
|
|
23
|
+
--dark-hl-10: #D4D4D4;
|
|
24
|
+
--light-hl-11: #CD3131;
|
|
25
|
+
--dark-hl-11: #F44747;
|
|
26
|
+
--light-code-background: #FFFFFF;
|
|
27
|
+
--dark-code-background: #1E1E1E;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@media (prefers-color-scheme: light) { :root {
|
|
31
|
+
--hl-0: var(--light-hl-0);
|
|
32
|
+
--hl-1: var(--light-hl-1);
|
|
33
|
+
--hl-2: var(--light-hl-2);
|
|
34
|
+
--hl-3: var(--light-hl-3);
|
|
35
|
+
--hl-4: var(--light-hl-4);
|
|
36
|
+
--hl-5: var(--light-hl-5);
|
|
37
|
+
--hl-6: var(--light-hl-6);
|
|
38
|
+
--hl-7: var(--light-hl-7);
|
|
39
|
+
--hl-8: var(--light-hl-8);
|
|
40
|
+
--hl-9: var(--light-hl-9);
|
|
41
|
+
--hl-10: var(--light-hl-10);
|
|
42
|
+
--hl-11: var(--light-hl-11);
|
|
43
|
+
--code-background: var(--light-code-background);
|
|
44
|
+
} }
|
|
45
|
+
|
|
46
|
+
@media (prefers-color-scheme: dark) { :root {
|
|
47
|
+
--hl-0: var(--dark-hl-0);
|
|
48
|
+
--hl-1: var(--dark-hl-1);
|
|
49
|
+
--hl-2: var(--dark-hl-2);
|
|
50
|
+
--hl-3: var(--dark-hl-3);
|
|
51
|
+
--hl-4: var(--dark-hl-4);
|
|
52
|
+
--hl-5: var(--dark-hl-5);
|
|
53
|
+
--hl-6: var(--dark-hl-6);
|
|
54
|
+
--hl-7: var(--dark-hl-7);
|
|
55
|
+
--hl-8: var(--dark-hl-8);
|
|
56
|
+
--hl-9: var(--dark-hl-9);
|
|
57
|
+
--hl-10: var(--dark-hl-10);
|
|
58
|
+
--hl-11: var(--dark-hl-11);
|
|
59
|
+
--code-background: var(--dark-code-background);
|
|
60
|
+
} }
|
|
61
|
+
|
|
62
|
+
:root[data-theme='light'] {
|
|
63
|
+
--hl-0: var(--light-hl-0);
|
|
64
|
+
--hl-1: var(--light-hl-1);
|
|
65
|
+
--hl-2: var(--light-hl-2);
|
|
66
|
+
--hl-3: var(--light-hl-3);
|
|
67
|
+
--hl-4: var(--light-hl-4);
|
|
68
|
+
--hl-5: var(--light-hl-5);
|
|
69
|
+
--hl-6: var(--light-hl-6);
|
|
70
|
+
--hl-7: var(--light-hl-7);
|
|
71
|
+
--hl-8: var(--light-hl-8);
|
|
72
|
+
--hl-9: var(--light-hl-9);
|
|
73
|
+
--hl-10: var(--light-hl-10);
|
|
74
|
+
--hl-11: var(--light-hl-11);
|
|
75
|
+
--code-background: var(--light-code-background);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
:root[data-theme='dark'] {
|
|
79
|
+
--hl-0: var(--dark-hl-0);
|
|
80
|
+
--hl-1: var(--dark-hl-1);
|
|
81
|
+
--hl-2: var(--dark-hl-2);
|
|
82
|
+
--hl-3: var(--dark-hl-3);
|
|
83
|
+
--hl-4: var(--dark-hl-4);
|
|
84
|
+
--hl-5: var(--dark-hl-5);
|
|
85
|
+
--hl-6: var(--dark-hl-6);
|
|
86
|
+
--hl-7: var(--dark-hl-7);
|
|
87
|
+
--hl-8: var(--dark-hl-8);
|
|
88
|
+
--hl-9: var(--dark-hl-9);
|
|
89
|
+
--hl-10: var(--dark-hl-10);
|
|
90
|
+
--hl-11: var(--dark-hl-11);
|
|
91
|
+
--code-background: var(--dark-code-background);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.hl-0 { color: var(--hl-0); }
|
|
95
|
+
.hl-1 { color: var(--hl-1); }
|
|
96
|
+
.hl-2 { color: var(--hl-2); }
|
|
97
|
+
.hl-3 { color: var(--hl-3); }
|
|
98
|
+
.hl-4 { color: var(--hl-4); }
|
|
99
|
+
.hl-5 { color: var(--hl-5); }
|
|
100
|
+
.hl-6 { color: var(--hl-6); }
|
|
101
|
+
.hl-7 { color: var(--hl-7); }
|
|
102
|
+
.hl-8 { color: var(--hl-8); }
|
|
103
|
+
.hl-9 { color: var(--hl-9); }
|
|
104
|
+
.hl-10 { color: var(--hl-10); }
|
|
105
|
+
.hl-11 { color: var(--hl-11); }
|
|
106
|
+
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>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
window.translations={"copy":"Copy","copied":"Copied!","normally_hidden":"This member is normally hidden due to your filter settings.","hierarchy_expand":"Expand","hierarchy_collapse":"Collapse","folder":"Folder","search_index_not_available":"The search index is not available","search_no_results_found_for_0":"No results found for {0}","kind_1":"Project","kind_2":"Module","kind_4":"Namespace","kind_8":"Enumeration","kind_16":"Enumeration Member","kind_32":"Variable","kind_64":"Function","kind_128":"Class","kind_256":"Interface","kind_512":"Constructor","kind_1024":"Property","kind_2048":"Method","kind_4096":"Call Signature","kind_8192":"Index Signature","kind_16384":"Constructor Signature","kind_32768":"Parameter","kind_65536":"Type Literal","kind_131072":"Type Parameter","kind_262144":"Accessor","kind_524288":"Get Signature","kind_1048576":"Set Signature","kind_2097152":"Type Alias","kind_4194304":"Reference","kind_8388608":"Document"};
|
|
3
|
+
"use strict";(()=>{var Ke=Object.create;var he=Object.defineProperty;var Ge=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var Xe=Object.getPrototypeOf,Ye=Object.prototype.hasOwnProperty;var et=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var tt=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ze(e))!Ye.call(t,i)&&i!==n&&he(t,i,{get:()=>e[i],enumerable:!(r=Ge(e,i))||r.enumerable});return t};var nt=(t,e,n)=>(n=t!=null?Ke(Xe(t)):{},tt(e||!t||!t.__esModule?he(n,"default",{value:t,enumerable:!0}):n,t));var ye=et((me,ge)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=(function(e){return function(n){e.console&&console.warn&&console.warn(n)}})(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i<r.length;i++){var s=r[i],o=e[s];if(Array.isArray(o)){n[s]=o.slice();continue}if(typeof o=="string"||typeof o=="number"||typeof o=="boolean"){n[s]=o;continue}throw new TypeError("clone is not deep and does not support nested objects")}return n},t.FieldRef=function(e,n,r){this.docRef=e,this.fieldName=n,this._stringValue=r},t.FieldRef.joiner="/",t.FieldRef.fromString=function(e){var n=e.indexOf(t.FieldRef.joiner);if(n===-1)throw"malformed field ref string";var r=e.slice(0,n),i=e.slice(n+1);return new t.FieldRef(i,r,e)},t.FieldRef.prototype.toString=function(){return this._stringValue==null&&(this._stringValue=this.fieldName+t.FieldRef.joiner+this.docRef),this._stringValue};t.Set=function(e){if(this.elements=Object.create(null),e){this.length=e.length;for(var n=0;n<this.length;n++)this.elements[e[n]]=!0}else this.length=0},t.Set.complete={intersect:function(e){return e},union:function(){return this},contains:function(){return!0}},t.Set.empty={intersect:function(){return this},union:function(e){return e},contains:function(){return!1}},t.Set.prototype.contains=function(e){return!!this.elements[e]},t.Set.prototype.intersect=function(e){var n,r,i,s=[];if(e===t.Set.complete)return this;if(e===t.Set.empty)return e;this.length<e.length?(n=this,r=e):(n=e,r=this),i=Object.keys(n.elements);for(var o=0;o<i.length;o++){var a=i[o];a in r.elements&&s.push(a)}return new t.Set(s)},t.Set.prototype.union=function(e){return e===t.Set.complete?t.Set.complete:e===t.Set.empty?this:new t.Set(Object.keys(this.elements).concat(Object.keys(e.elements)))},t.idf=function(e,n){var r=0;for(var i in e)i!="_index"&&(r+=Object.keys(e[i]).length);var s=(n-r+.5)/(r+.5);return Math.log(1+Math.abs(s))},t.Token=function(e,n){this.str=e||"",this.metadata=n||{}},t.Token.prototype.toString=function(){return this.str},t.Token.prototype.update=function(e){return this.str=e(this.str,this.metadata),this},t.Token.prototype.clone=function(e){return e=e||function(n){return n},new t.Token(e(this.str,this.metadata),this.metadata)};t.tokenizer=function(e,n){if(e==null||e==null)return[];if(Array.isArray(e))return e.map(function(f){return new t.Token(t.utils.asString(f).toLowerCase(),t.utils.clone(n))});for(var r=e.toString().toLowerCase(),i=r.length,s=[],o=0,a=0;o<=i;o++){var c=r.charAt(o),l=o-a;if(c.match(t.tokenizer.separator)||o==i){if(l>0){var d=t.utils.clone(n)||{};d.position=[a,l],d.index=s.length,s.push(new t.Token(r.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index.
|
|
4
|
+
`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r<n;r++){for(var i=this._stack[r],s=[],o=0;o<e.length;o++){var a=i(e[o],o,e);if(!(a==null||a===""))if(Array.isArray(a))for(var c=0;c<a.length;c++)s.push(a[c]);else s.push(a)}e=s}return e},t.Pipeline.prototype.runString=function(e,n){var r=new t.Token(e,n);return this.run([r]).map(function(i){return i.toString()})},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})};t.Vector=function(e){this._magnitude=0,this.elements=e||[]},t.Vector.prototype.positionForIndex=function(e){if(this.elements.length==0)return 0;for(var n=0,r=this.elements.length/2,i=r-n,s=Math.floor(i/2),o=this.elements[s*2];i>1&&(o<e&&(n=s),o>e&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(o<e)return(s+1)*2},t.Vector.prototype.insert=function(e,n){this.upsert(e,n,function(){throw"duplicate index"})},t.Vector.prototype.upsert=function(e,n,r){this._magnitude=0;var i=this.positionForIndex(e);this.elements[i]==e?this.elements[i+1]=r(this.elements[i+1],n):this.elements.splice(i,0,e,n)},t.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e=0,n=this.elements.length,r=1;r<n;r+=2){var i=this.elements[r];e+=i*i}return this._magnitude=Math.sqrt(e)},t.Vector.prototype.dot=function(e){for(var n=0,r=this.elements,i=e.elements,s=r.length,o=i.length,a=0,c=0,l=0,d=0;l<s&&d<o;)a=r[l],c=i[d],a<c?l+=2:a>c?d+=2:a==c&&(n+=r[l+1]*i[d+1],l+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n<this.elements.length;n+=2,r++)e[r]=this.elements[n];return e},t.Vector.prototype.toJSON=function(){return this.elements};t.stemmer=(function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},n={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},r="[^aeiou]",i="[aeiouy]",s=r+"[^aeiouy]*",o=i+"[aeiou]*",a="^("+s+")?"+o+s,c="^("+s+")?"+o+s+"("+o+")?$",l="^("+s+")?"+o+s+o+s,d="^("+s+")?"+i,f=new RegExp(a),p=new RegExp(l),v=new RegExp(c),x=new RegExp(d),w=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,T=/^(.+?)(ed|ing)$/,L=/.$/,C=/(at|bl|iz)$/,O=new RegExp("([^aeiouylsz])\\1$"),j=new RegExp("^"+s+i+"[^aeiouwxy]$"),N=/^(.+?[^aeiou])y$/,q=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,W=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,B=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,z=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,U=/ll$/,J=new RegExp("^"+s+i+"[^aeiouwxy]$"),V=function(u){var y,P,k,h,E,Q,H;if(u.length<3)return u;if(k=u.substr(0,1),k=="y"&&(u=k.toUpperCase()+u.substr(1)),h=w,E=m,h.test(u)?u=u.replace(h,"$1$2"):E.test(u)&&(u=u.replace(E,"$1$2")),h=g,E=T,h.test(u)){var b=h.exec(u);h=f,h.test(b[1])&&(h=L,u=u.replace(h,""))}else if(E.test(u)){var b=E.exec(u);y=b[1],E=x,E.test(y)&&(u=y,E=C,Q=O,H=j,E.test(u)?u=u+"e":Q.test(u)?(h=L,u=u.replace(h,"")):H.test(u)&&(u=u+"e"))}if(h=N,h.test(u)){var b=h.exec(u);y=b[1],u=y+"i"}if(h=q,h.test(u)){var b=h.exec(u);y=b[1],P=b[2],h=f,h.test(y)&&(u=y+e[P])}if(h=W,h.test(u)){var b=h.exec(u);y=b[1],P=b[2],h=f,h.test(y)&&(u=y+n[P])}if(h=B,E=z,h.test(u)){var b=h.exec(u);y=b[1],h=p,h.test(y)&&(u=y)}else if(E.test(u)){var b=E.exec(u);y=b[1]+b[2],E=p,E.test(y)&&(u=y)}if(h=_,h.test(u)){var b=h.exec(u);y=b[1],h=p,E=v,Q=J,(h.test(y)||E.test(y)&&!Q.test(y))&&(u=y)}return h=U,E=p,h.test(u)&&E.test(u)&&(h=L,u=u.replace(h,"")),k=="y"&&(u=k.toLowerCase()+u.substr(1)),u};return function(A){return A.update(V)}})(),t.Pipeline.registerFunction(t.stemmer,"stemmer");t.generateStopWordFilter=function(e){var n=e.reduce(function(r,i){return r[i]=i,r},{});return function(r){if(r&&n[r.toString()]!==r.toString())return r}},t.stopWordFilter=t.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter");t.trimmer=function(e){return e.update(function(n){return n.replace(/^\W+/,"").replace(/\W+$/,"")})},t.Pipeline.registerFunction(t.trimmer,"trimmer");t.TokenSet=function(){this.final=!1,this.edges={},this.id=t.TokenSet._nextId,t.TokenSet._nextId+=1},t.TokenSet._nextId=1,t.TokenSet.fromArray=function(e){for(var n=new t.TokenSet.Builder,r=0,i=e.length;r<i;r++)n.insert(e[r]);return n.finish(),n.root},t.TokenSet.fromClause=function(e){return"editDistance"in e?t.TokenSet.fromFuzzyString(e.term,e.editDistance):t.TokenSet.fromString(e.term)},t.TokenSet.fromFuzzyString=function(e,n){for(var r=new t.TokenSet,i=[{node:r,editsRemaining:n,str:e}];i.length;){var s=i.pop();if(s.str.length>0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}if(s.str.length==0&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i<s;i++){var o=e[i],a=i==s-1;if(o=="*")n.edges[o]=n,n.final=a;else{var c=new t.TokenSet;c.final=a,n.edges[o]=c,n=c}}return r},t.TokenSet.prototype.toArray=function(){for(var e=[],n=[{prefix:"",node:this}];n.length;){var r=n.pop(),i=Object.keys(r.node.edges),s=i.length;r.node.final&&(r.prefix.charAt(0),e.push(r.prefix));for(var o=0;o<s;o++){var a=i[o];n.push({prefix:r.prefix.concat(a),node:r.node.edges[a]})}}return e},t.TokenSet.prototype.toString=function(){if(this._str)return this._str;for(var e=this.final?"1":"0",n=Object.keys(this.edges).sort(),r=n.length,i=0;i<r;i++){var s=n[i],o=this.edges[s];e=e+s+o.id}return e},t.TokenSet.prototype.intersect=function(e){for(var n=new t.TokenSet,r=void 0,i=[{qNode:e,output:n,node:this}];i.length;){r=i.pop();for(var s=Object.keys(r.qNode.edges),o=s.length,a=Object.keys(r.node.edges),c=a.length,l=0;l<o;l++)for(var d=s[l],f=0;f<c;f++){var p=a[f];if(p==d||d=="*"){var v=r.node.edges[p],x=r.qNode.edges[d],w=v.final&&x.final,m=void 0;p in r.output.edges?(m=r.output.edges[p],m.final=m.final||w):(m=new t.TokenSet,m.final=w,r.output.edges[p]=m),i.push({qNode:x,output:m,node:v})}}}return n},t.TokenSet.Builder=function(){this.previousWord="",this.root=new t.TokenSet,this.uncheckedNodes=[],this.minimizedNodes={}},t.TokenSet.Builder.prototype.insert=function(e){var n,r=0;if(e<this.previousWord)throw new Error("Out of order word insertion");for(var i=0;i<e.length&&i<this.previousWord.length&&e[i]==this.previousWord[i];i++)r++;this.minimize(r),this.uncheckedNodes.length==0?n=this.root:n=this.uncheckedNodes[this.uncheckedNodes.length-1].child;for(var i=r;i<e.length;i++){var s=new t.TokenSet,o=e[i];n.edges[o]=s,this.uncheckedNodes.push({parent:n,char:o,child:s}),n=s}n.final=!0,this.previousWord=e},t.TokenSet.Builder.prototype.finish=function(){this.minimize(0)},t.TokenSet.Builder.prototype.minimize=function(e){for(var n=this.uncheckedNodes.length-1;n>=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),c=0;c<this.fields.length;c++)i[this.fields[c]]=new t.Vector;e.call(n,n);for(var c=0;c<n.clauses.length;c++){var l=n.clauses[c],d=null,f=t.Set.empty;l.usePipeline?d=this.pipeline.runString(l.term,{fields:l.fields}):d=[l.term];for(var p=0;p<d.length;p++){var v=d[p];l.term=v;var x=t.TokenSet.fromClause(l),w=this.tokenSet.intersect(x).toArray();if(w.length===0&&l.presence===t.Query.presence.REQUIRED){for(var m=0;m<l.fields.length;m++){var g=l.fields[m];o[g]=t.Set.empty}break}for(var T=0;T<w.length;T++)for(var L=w[T],C=this.invertedIndex[L],O=C._index,m=0;m<l.fields.length;m++){var g=l.fields[m],j=C[g],N=Object.keys(j),q=L+"/"+g,W=new t.Set(N);if(l.presence==t.Query.presence.REQUIRED&&(f=f.union(W),o[g]===void 0&&(o[g]=t.Set.complete)),l.presence==t.Query.presence.PROHIBITED){a[g]===void 0&&(a[g]=t.Set.empty),a[g]=a[g].union(W);continue}if(i[g].upsert(O,l.boost,function(Ue,Je){return Ue+Je}),!s[q]){for(var B=0;B<N.length;B++){var z=N[B],_=new t.FieldRef(z,g),U=j[z],J;(J=r[_])===void 0?r[_]=new t.MatchData(L,g,U):J.add(L,g,U)}s[q]=!0}}}if(l.presence===t.Query.presence.REQUIRED)for(var m=0;m<l.fields.length;m++){var g=l.fields[m];o[g]=o[g].intersect(f)}}for(var V=t.Set.complete,A=t.Set.empty,c=0;c<this.fields.length;c++){var g=this.fields[c];o[g]&&(V=V.intersect(o[g])),a[g]&&(A=A.union(a[g]))}var u=Object.keys(r),y=[],P=Object.create(null);if(n.isNegated()){u=Object.keys(this.fieldVectors);for(var c=0;c<u.length;c++){var _=u[c],k=t.FieldRef.fromString(_);r[_]=new t.MatchData}}for(var c=0;c<u.length;c++){var k=t.FieldRef.fromString(u[c]),h=k.docRef;if(V.contains(h)&&!A.contains(h)){var E=this.fieldVectors[k],Q=i[k.fieldName].similarity(E),H;if((H=P[h])!==void 0)H.score+=Q,H.matchData.combine(r[k]);else{var b={ref:h,score:Q,matchData:r[k]};P[h]=b,y.push(b)}}}return y.sort(function(We,ze){return ze.score-We.score})},t.Index.prototype.toJSON=function(){var e=Object.keys(this.invertedIndex).sort().map(function(r){return[r,this.invertedIndex[r]]},this),n=Object.keys(this.fieldVectors).map(function(r){return[r,this.fieldVectors[r].toJSON()]},this);return{version:t.version,fields:this.fields,fieldVectors:n,invertedIndex:e,pipeline:this.pipeline.toJSON()}},t.Index.load=function(e){var n={},r={},i=e.fieldVectors,s=Object.create(null),o=e.invertedIndex,a=new t.TokenSet.Builder,c=t.Pipeline.load(e.pipeline);e.version!=t.version&&t.utils.warn("Version mismatch when loading serialised index. Current version of lunr '"+t.version+"' does not match serialized index '"+e.version+"'");for(var l=0;l<i.length;l++){var d=i[l],f=d[0],p=d[1];r[f]=new t.Vector(p)}for(var l=0;l<o.length;l++){var d=o[l],v=d[0],x=d[1];a.insert(v),s[v]=x}return a.finish(),n.fields=e.fields,n.fieldVectors=r,n.invertedIndex=s,n.tokenSet=a.root,n.pipeline=c,new t.Index(n)};t.Builder=function(){this._ref="id",this._fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(null),this.fieldTermFrequencies={},this.fieldLengths={},this.tokenizer=t.tokenizer,this.pipeline=new t.Pipeline,this.searchPipeline=new t.Pipeline,this.documentCount=0,this._b=.75,this._k1=1.2,this.termIndex=0,this.metadataWhitelist=[]},t.Builder.prototype.ref=function(e){this._ref=e},t.Builder.prototype.field=function(e,n){if(/\//.test(e))throw new RangeError("Field '"+e+"' contains illegal character '/'");this._fields[e]=n||{}},t.Builder.prototype.b=function(e){e<0?this._b=0:e>1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s<i.length;s++){var o=i[s],a=this._fields[o].extractor,c=a?a(e):e[o],l=this.tokenizer(c,{fields:[o]}),d=this.pipeline.run(l),f=new t.FieldRef(r,o),p=Object.create(null);this.fieldTermFrequencies[f]=p,this.fieldLengths[f]=0,this.fieldLengths[f]+=d.length;for(var v=0;v<d.length;v++){var x=d[v];if(p[x]==null&&(p[x]=0),p[x]+=1,this.invertedIndex[x]==null){var w=Object.create(null);w._index=this.termIndex,this.termIndex+=1;for(var m=0;m<i.length;m++)w[i[m]]=Object.create(null);this.invertedIndex[x]=w}this.invertedIndex[x][o][r]==null&&(this.invertedIndex[x][o][r]=Object.create(null));for(var g=0;g<this.metadataWhitelist.length;g++){var T=this.metadataWhitelist[g],L=x.metadata[T];this.invertedIndex[x][o][r][T]==null&&(this.invertedIndex[x][o][r][T]=[]),this.invertedIndex[x][o][r][T].push(L)}}}},t.Builder.prototype.calculateAverageFieldLengths=function(){for(var e=Object.keys(this.fieldLengths),n=e.length,r={},i={},s=0;s<n;s++){var o=t.FieldRef.fromString(e[s]),a=o.fieldName;i[a]||(i[a]=0),i[a]+=1,r[a]||(r[a]=0),r[a]+=this.fieldLengths[o]}for(var c=Object.keys(this._fields),s=0;s<c.length;s++){var l=c[s];r[l]=r[l]/i[l]}this.averageFieldLength=r},t.Builder.prototype.createFieldVectors=function(){for(var e={},n=Object.keys(this.fieldTermFrequencies),r=n.length,i=Object.create(null),s=0;s<r;s++){for(var o=t.FieldRef.fromString(n[s]),a=o.fieldName,c=this.fieldLengths[o],l=new t.Vector,d=this.fieldTermFrequencies[o],f=Object.keys(d),p=f.length,v=this._fields[a].boost||1,x=this._documents[o.docRef].boost||1,w=0;w<p;w++){var m=f[w],g=d[m],T=this.invertedIndex[m]._index,L,C,O;i[m]===void 0?(L=t.idf(this.invertedIndex[m],this.documentCount),i[m]=L):L=i[m],C=L*((this._k1+1)*g)/(this._k1*(1-this._b+this._b*(c/this.averageFieldLength[a]))+g),C*=v,C*=x,O=Math.round(C*1e3)/1e3,l.insert(T,O)}e[o]=l}this.fieldVectors=e},t.Builder.prototype.createTokenSet=function(){this.tokenSet=t.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())},t.Builder.prototype.build=function(){return this.calculateAverageFieldLengths(),this.createFieldVectors(),this.createTokenSet(),new t.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:Object.keys(this._fields),pipeline:this.searchPipeline})},t.Builder.prototype.use=function(e){var n=Array.prototype.slice.call(arguments,1);n.unshift(this),e.apply(this,n)},t.MatchData=function(e,n,r){for(var i=Object.create(null),s=Object.keys(r||{}),o=0;o<s.length;o++){var a=s[o];i[a]=r[a].slice()}this.metadata=Object.create(null),e!==void 0&&(this.metadata[e]=Object.create(null),this.metadata[e][n]=i)},t.MatchData.prototype.combine=function(e){for(var n=Object.keys(e.metadata),r=0;r<n.length;r++){var i=n[r],s=Object.keys(e.metadata[i]);this.metadata[i]==null&&(this.metadata[i]=Object.create(null));for(var o=0;o<s.length;o++){var a=s[o],c=Object.keys(e.metadata[i][a]);this.metadata[i][a]==null&&(this.metadata[i][a]=Object.create(null));for(var l=0;l<c.length;l++){var d=c[l];this.metadata[i][a][d]==null?this.metadata[i][a][d]=e.metadata[i][a][d]:this.metadata[i][a][d]=this.metadata[i][a][d].concat(e.metadata[i][a][d])}}}},t.MatchData.prototype.add=function(e,n,r){if(!(e in this.metadata)){this.metadata[e]=Object.create(null),this.metadata[e][n]=r;return}if(!(n in this.metadata[e])){this.metadata[e][n]=r;return}for(var i=Object.keys(r),s=0;s<i.length;s++){var o=i[s];o in this.metadata[e][n]?this.metadata[e][n][o]=this.metadata[e][n][o].concat(r[o]):this.metadata[e][n][o]=r[o]}},t.Query=function(e){this.clauses=[],this.allFields=e},t.Query.wildcard=new String("*"),t.Query.wildcard.NONE=0,t.Query.wildcard.LEADING=1,t.Query.wildcard.TRAILING=2,t.Query.presence={OPTIONAL:1,REQUIRED:2,PROHIBITED:3},t.Query.prototype.clause=function(e){return"fields"in e||(e.fields=this.allFields),"boost"in e||(e.boost=1),"usePipeline"in e||(e.usePipeline=!0),"wildcard"in e||(e.wildcard=t.Query.wildcard.NONE),e.wildcard&t.Query.wildcard.LEADING&&e.term.charAt(0)!=t.Query.wildcard&&(e.term="*"+e.term),e.wildcard&t.Query.wildcard.TRAILING&&e.term.slice(-1)!=t.Query.wildcard&&(e.term=""+e.term+"*"),"presence"in e||(e.presence=t.Query.presence.OPTIONAL),this.clauses.push(e),this},t.Query.prototype.isNegated=function(){for(var e=0;e<this.clauses.length;e++)if(this.clauses[e].presence!=t.Query.presence.PROHIBITED)return!1;return!0},t.Query.prototype.term=function(e,n){if(Array.isArray(e))return e.forEach(function(i){this.term(i,t.utils.clone(n))},this),this;var r=n||{};return r.term=e.toString(),this.clause(r),this},t.QueryParseError=function(e,n,r){this.name="QueryParseError",this.message=e,this.start=n,this.end=r},t.QueryParseError.prototype=new Error,t.QueryLexer=function(e){this.lexemes=[],this.str=e,this.length=e.length,this.pos=0,this.start=0,this.escapeCharPositions=[]},t.QueryLexer.prototype.run=function(){for(var e=t.QueryLexer.lexText;e;)e=e(this)},t.QueryLexer.prototype.sliceString=function(){for(var e=[],n=this.start,r=this.pos,i=0;i<this.escapeCharPositions.length;i++)r=this.escapeCharPositions[i],e.push(this.str.slice(n,r)),n=r+1;return e.push(this.str.slice(n,this.pos)),this.escapeCharPositions.length=0,e.join("")},t.QueryLexer.prototype.emit=function(e){this.lexemes.push({type:e,str:this.sliceString(),start:this.start,end:this.pos}),this.start=this.pos},t.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1),this.pos+=1},t.QueryLexer.prototype.next=function(){if(this.pos>=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos<this.length},t.QueryLexer.EOS="EOS",t.QueryLexer.FIELD="FIELD",t.QueryLexer.TERM="TERM",t.QueryLexer.EDIT_DISTANCE="EDIT_DISTANCE",t.QueryLexer.BOOST="BOOST",t.QueryLexer.PRESENCE="PRESENCE",t.QueryLexer.lexField=function(e){return e.backup(),e.emit(t.QueryLexer.FIELD),e.ignore(),t.QueryLexer.lexText},t.QueryLexer.lexTerm=function(e){if(e.width()>1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}if(s.type===t.QueryLexer.TERM)return t.QueryParser.parseTerm;var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},(function(e,n){typeof define=="function"&&define.amd?define(n):typeof me=="object"?ge.exports=n():e.lunr=n()})(this,function(){return t})})()});var M,G={getItem(){return null},setItem(){}},K;try{K=localStorage,M=K}catch{K=G,M=G}var S={getItem:t=>M.getItem(t),setItem:(t,e)=>M.setItem(t,e),disableWritingLocalStorage(){M=G},disable(){localStorage.clear(),M=G},enable(){M=K}};window.TypeDoc||={disableWritingLocalStorage(){S.disableWritingLocalStorage()},disableLocalStorage:()=>{S.disable()},enableLocalStorage:()=>{S.enable()}};window.translations||={copy:"Copy",copied:"Copied!",normally_hidden:"This member is normally hidden due to your filter settings.",hierarchy_expand:"Expand",hierarchy_collapse:"Collapse",search_index_not_available:"The search index is not available",search_no_results_found_for_0:"No results found for {0}",folder:"Folder",kind_1:"Project",kind_2:"Module",kind_4:"Namespace",kind_8:"Enumeration",kind_16:"Enumeration Member",kind_32:"Variable",kind_64:"Function",kind_128:"Class",kind_256:"Interface",kind_512:"Constructor",kind_1024:"Property",kind_2048:"Method",kind_4096:"Call Signature",kind_8192:"Index Signature",kind_16384:"Constructor Signature",kind_32768:"Parameter",kind_65536:"Type Literal",kind_131072:"Type Parameter",kind_262144:"Accessor",kind_524288:"Get Signature",kind_1048576:"Set Signature",kind_2097152:"Type Alias",kind_4194304:"Reference",kind_8388608:"Document"};var pe=[];function X(t,e){pe.push({selector:e,constructor:t})}var Z=class{alwaysVisibleMember=null;constructor(){this.createComponents(document.body),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible()),document.body.style.display||(this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}createComponents(e){pe.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}showPage(){document.body.style.display&&(document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){let e=document.getElementById(location.hash.substring(1));if(!e)return;e.scrollIntoView({behavior:"instant",block:"start"})}}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),n=e?.parentElement;for(;n&&!n.classList.contains(".tsd-navigation");)n instanceof HTMLDetailsElement&&(n.open=!0),n=n.parentElement;if(e&&!rt(e)){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r,document.querySelector(".col-sidebar").scrollTop=r}}updateIndexVisibility(){let e=document.querySelector(".tsd-index-content"),n=e?.open;e&&(e.open=!0),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let i=Array.from(r.querySelectorAll(".tsd-index-link")).every(s=>s.offsetParent==null);r.style.display=i?"none":"block"}),e&&(e.open=n)}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(!n)return;let r=n.offsetParent==null,i=n;for(;i!==document.body;)i instanceof HTMLDetailsElement&&(i.open=!0),i=i.parentElement;if(n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let s=document.createElement("p");s.classList.add("warning"),s.textContent=window.translations.normally_hidden,n.prepend(s)}r&&e.scrollIntoView()}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let n;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent=window.translations.copied,e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent=window.translations.copy},100)},1e3)})})}};function rt(t){let e=t.getBoundingClientRect(),n=Math.max(document.documentElement.clientHeight,window.innerHeight);return!(e.bottom<0||e.top-n>=0)}var fe=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var Ie=nt(ye(),1);async function R(t){let e=Uint8Array.from(atob(t),s=>s.charCodeAt(0)),r=new Blob([e]).stream().pipeThrough(new DecompressionStream("deflate")),i=await new Response(r).text();return JSON.parse(i)}var Y="closing",ae="tsd-overlay";function it(){let t=Math.abs(window.innerWidth-document.documentElement.clientWidth);document.body.style.overflow="hidden",document.body.style.paddingRight=`${t}px`}function st(){document.body.style.removeProperty("overflow"),document.body.style.removeProperty("padding-right")}function xe(t,e){t.addEventListener("animationend",()=>{t.classList.contains(Y)&&(t.classList.remove(Y),document.getElementById(ae)?.remove(),t.close(),st())}),t.addEventListener("cancel",n=>{n.preventDefault(),ve(t)}),e?.closeOnClick&&document.addEventListener("click",n=>{t.open&&!t.contains(n.target)&&ve(t)},!0)}function Ee(t){if(t.open)return;let e=document.createElement("div");e.id=ae,document.body.appendChild(e),t.showModal(),it()}function ve(t){if(!t.open)return;document.getElementById(ae)?.classList.add(Y),t.classList.add(Y)}var I=class{el;app;constructor(e){this.el=e.el,this.app=e.app}};var be=document.head.appendChild(document.createElement("style"));be.dataset.for="filters";var le={};function we(t){for(let e of t.split(/\s+/))if(le.hasOwnProperty(e)&&!le[e])return!0;return!1}var ee=class extends I{key;value;constructor(e){super(e),this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),be.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; }
|
|
5
|
+
`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=S.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){S.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),le[`tsd-is-${this.el.name}`]=this.value,this.app.filterChanged(),this.app.updateIndexVisibility()}};var Le=0;async function Se(t,e){if(!window.searchData)return;let n=await R(window.searchData);t.data=n,t.index=Ie.Index.load(n.index),e.innerHTML=""}function _e(){let t=document.getElementById("tsd-search-trigger"),e=document.getElementById("tsd-search"),n=document.getElementById("tsd-search-input"),r=document.getElementById("tsd-search-results"),i=document.getElementById("tsd-search-script"),s=document.getElementById("tsd-search-status");if(!(t&&e&&n&&r&&i&&s))throw new Error("Search controls missing");let o={base:document.documentElement.dataset.base};o.base.endsWith("/")||(o.base+="/"),i.addEventListener("error",()=>{let a=window.translations.search_index_not_available;Pe(s,a)}),i.addEventListener("load",()=>{Se(o,s)}),Se(o,s),ot({trigger:t,searchEl:e,results:r,field:n,status:s},o)}function ot(t,e){let{field:n,results:r,searchEl:i,status:s,trigger:o}=t;xe(i,{closeOnClick:!0});function a(){Ee(i),n.setSelectionRange(0,n.value.length)}o.addEventListener("click",a),n.addEventListener("input",fe(()=>{at(r,n,s,e)},200)),n.addEventListener("keydown",l=>{if(r.childElementCount===0||l.ctrlKey||l.metaKey||l.altKey)return;let d=n.getAttribute("aria-activedescendant"),f=d?document.getElementById(d):null;if(f){let p=!1,v=!1;switch(l.key){case"Home":case"End":case"ArrowLeft":case"ArrowRight":v=!0;break;case"ArrowDown":case"ArrowUp":p=l.shiftKey;break}(p||v)&&ke(n)}if(!l.shiftKey)switch(l.key){case"Enter":f?.querySelector("a")?.click();break;case"ArrowUp":Te(r,n,f,-1),l.preventDefault();break;case"ArrowDown":Te(r,n,f,1),l.preventDefault();break}});function c(){ke(n)}n.addEventListener("change",c),n.addEventListener("blur",c),n.addEventListener("click",c),document.body.addEventListener("keydown",l=>{if(l.altKey||l.metaKey||l.shiftKey)return;let d=l.ctrlKey&&l.key==="k",f=!l.ctrlKey&&!ut()&&l.key==="/";(d||f)&&(l.preventDefault(),a())})}function at(t,e,n,r){if(!r.index||!r.data)return;t.innerHTML="",n.innerHTML="",Le+=1;let i=e.value.trim(),s;if(i){let a=i.split(" ").map(c=>c.length?`*${c}*`:"").join(" ");s=r.index.search(a).filter(({ref:c})=>{let l=r.data.rows[Number(c)].classes;return!l||!we(l)})}else s=[];if(s.length===0&&i){let a=window.translations.search_no_results_found_for_0.replace("{0}",` "<strong>${te(i)}</strong>" `);Pe(n,a);return}for(let a=0;a<s.length;a++){let c=s[a],l=r.data.rows[Number(c.ref)],d=1;l.name.toLowerCase().startsWith(i.toLowerCase())&&(d*=10/(1+Math.abs(l.name.length-i.length))),c.score*=d}s.sort((a,c)=>c.score-a.score);let o=Math.min(10,s.length);for(let a=0;a<o;a++){let c=r.data.rows[Number(s[a].ref)],d=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon" aria-label="${window.translations[`kind_${c.kind}`].replaceAll('"',""")}"><use href="#icon-${c.icon||c.kind}"></use></svg>`,f=Ce(c.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(f+=` (score: ${s[a].score.toFixed(2)})`),c.parent&&(f=`<span class="parent">
|
|
6
|
+
${Ce(c.parent,i)}.</span>${f}`);let p=document.createElement("li");p.id=`tsd-search:${Le}-${a}`,p.role="option",p.ariaSelected="false",p.classList.value=c.classes??"";let v=document.createElement("a");v.tabIndex=-1,v.href=r.base+c.url,v.innerHTML=d+`<span class="text">${f}</span>`,p.append(v),t.appendChild(p)}}function Te(t,e,n,r){let i;if(r===1?i=n?.nextElementSibling||t.firstElementChild:i=n?.previousElementSibling||t.lastElementChild,i!==n){if(!i||i.role!=="option"){console.error("Option missing");return}i.ariaSelected="true",i.scrollIntoView({behavior:"smooth",block:"nearest"}),e.setAttribute("aria-activedescendant",i.id),n?.setAttribute("aria-selected","false")}}function ke(t){let e=t.getAttribute("aria-activedescendant");(e?document.getElementById(e):null)?.setAttribute("aria-selected","false"),t.setAttribute("aria-activedescendant","")}function Ce(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(te(t.substring(s,o)),`<mark>${te(t.substring(o,o+r.length))}</mark>`),s=o+r.length,o=n.indexOf(r,s);return i.push(te(t.substring(s))),i.join("")}var lt={"&":"&","<":"<",">":">","'":"'",'"':"""};function te(t){return t.replace(/[&<>"'"]/g,e=>lt[e])}function Pe(t,e){t.innerHTML=e?`<div>${e}</div>`:""}var ct=["button","checkbox","file","hidden","image","radio","range","reset","submit"];function ut(){let t=document.activeElement;return t?t.isContentEditable||t.tagName==="TEXTAREA"||t.tagName==="SEARCH"?!0:t.tagName==="INPUT"&&!ct.includes(t.type):!1}var D="mousedown",Me="mousemove",$="mouseup",ne={x:0,y:0},Qe=!1,ce=!1,dt=!1,F=!1,Oe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Oe?"is-mobile":"not-mobile");Oe&&"ontouchstart"in document.documentElement&&(dt=!0,D="touchstart",Me="touchmove",$="touchend");document.addEventListener(D,t=>{ce=!0,F=!1;let e=D=="touchstart"?t.targetTouches[0]:t;ne.y=e.pageY||0,ne.x=e.pageX||0});document.addEventListener(Me,t=>{if(ce&&!F){let e=D=="touchstart"?t.targetTouches[0]:t,n=ne.x-(e.pageX||0),r=ne.y-(e.pageY||0);F=Math.sqrt(n*n+r*r)>10}});document.addEventListener($,()=>{ce=!1});document.addEventListener("click",t=>{Qe&&(t.preventDefault(),t.stopImmediatePropagation(),Qe=!1)});var re=class extends I{active;className;constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener($,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(D,n=>this.onDocumentPointerDown(n)),document.addEventListener($,n=>this.onDocumentPointerUp(n))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(e){F||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!F&&this.active&&e.target.closest(".col-sidebar")){let n=e.target.closest("a");if(n){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substring(0,r.indexOf("#"))),n.href.substring(0,r.length)==r&&setTimeout(()=>this.setActive(!1),250)}}}};var ue=new Map,de=class{open;accordions=[];key;constructor(e,n){this.key=e,this.open=n}add(e){this.accordions.push(e),e.open=this.open,e.addEventListener("toggle",()=>{this.toggle(e.open)})}toggle(e){for(let n of this.accordions)n.open=e;S.setItem(this.key,e.toString())}},ie=class extends I{constructor(e){super(e);let n=this.el.querySelector("summary"),r=n.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)});let i=`tsd-accordion-${n.dataset.key??n.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`,s;if(ue.has(i))s=ue.get(i);else{let o=S.getItem(i),a=o?o==="true":this.el.open;s=new de(i,a),ue.set(i,s)}s.add(this.el)}};function He(t){let e=S.getItem("tsd-theme")||"os";t.value=e,Ae(e),t.addEventListener("change",()=>{S.setItem("tsd-theme",t.value),Ae(t.value)})}function Ae(t){document.documentElement.dataset.theme=t}var se;function Ne(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",Re),Re())}async function Re(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let e=await R(window.navigationData);se=document.documentElement.dataset.base,se.endsWith("/")||(se+="/"),t.innerHTML="";for(let n of e)Be(n,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function Be(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class?`${t.class} tsd-accordion`:"tsd-accordion";let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.dataset.key=i.join("$"),o.innerHTML='<svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>',De(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let c=a.appendChild(document.createElement("ul"));c.className="tsd-nested-navigation";for(let l of t.children)Be(l,c,i)}else De(t,r,t.class)}function De(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));if(r.href=se+t.path,n&&(r.className=n),location.pathname===r.pathname&&!r.href.includes("#")&&(r.classList.add("current"),r.ariaCurrent="page"),t.kind){let i=window.translations[`kind_${t.kind}`].replaceAll('"',""");r.innerHTML=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon" aria-label="${i}"><use href="#icon-${t.icon||t.kind}"></use></svg>`}r.appendChild(Fe(t.text,document.createElement("span")))}else{let r=e.appendChild(document.createElement("span")),i=window.translations.folder.replaceAll('"',""");r.innerHTML=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon" aria-label="${i}"><use href="#icon-folder"></use></svg>`,r.appendChild(Fe(t.text,document.createElement("span")))}}function Fe(t,e){let n=t.split(/(?<=[^A-Z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])|(?<=[_-])(?=[^_-])/);for(let r=0;r<n.length;++r)r!==0&&e.appendChild(document.createElement("wbr")),e.appendChild(document.createTextNode(n[r]));return e}var oe=document.documentElement.dataset.base;oe.endsWith("/")||(oe+="/");function $e(){document.querySelector(".tsd-full-hierarchy")?ht():document.querySelector(".tsd-hierarchy")&&pt()}function ht(){document.addEventListener("click",r=>{let i=r.target;for(;i.parentElement&&i.parentElement.tagName!="LI";)i=i.parentElement;i.dataset.dropdown&&(i.dataset.dropdown=String(i.dataset.dropdown!=="true"))});let t=new Map,e=new Set;for(let r of document.querySelectorAll(".tsd-full-hierarchy [data-refl]")){let i=r.querySelector("ul");t.has(r.dataset.refl)?e.add(r.dataset.refl):i&&t.set(r.dataset.refl,i)}for(let r of e)n(r);function n(r){let i=t.get(r).cloneNode(!0);i.querySelectorAll("[id]").forEach(s=>{s.removeAttribute("id")}),i.querySelectorAll("[data-dropdown]").forEach(s=>{s.dataset.dropdown="false"});for(let s of document.querySelectorAll(`[data-refl="${r}"]`)){let o=gt(),a=s.querySelector("ul");s.insertBefore(o,a),o.dataset.dropdown=String(!!a),a||s.appendChild(i.cloneNode(!0))}}}function pt(){let t=document.getElementById("tsd-hierarchy-script");t&&(t.addEventListener("load",Ve),Ve())}async function Ve(){let t=document.querySelector(".tsd-panel.tsd-hierarchy:has(h4 a)");if(!t||!window.hierarchyData)return;let e=+t.dataset.refl,n=await R(window.hierarchyData),r=t.querySelector("ul"),i=document.createElement("ul");if(i.classList.add("tsd-hierarchy"),ft(i,n,e),r.querySelectorAll("li").length==i.querySelectorAll("li").length)return;let s=document.createElement("span");s.classList.add("tsd-hierarchy-toggle"),s.textContent=window.translations.hierarchy_expand,t.querySelector("h4 a")?.insertAdjacentElement("afterend",s),s.insertAdjacentText("beforebegin",", "),s.addEventListener("click",()=>{s.textContent===window.translations.hierarchy_expand?(r.insertAdjacentElement("afterend",i),r.remove(),s.textContent=window.translations.hierarchy_collapse):(i.insertAdjacentElement("afterend",r),i.remove(),s.textContent=window.translations.hierarchy_expand)})}function ft(t,e,n){let r=e.roots.filter(i=>mt(e,i,n));for(let i of r)t.appendChild(je(e,i,n))}function je(t,e,n,r=new Set){if(r.has(e))return;r.add(e);let i=t.reflections[e],s=document.createElement("li");if(s.classList.add("tsd-hierarchy-item"),e===n){let o=s.appendChild(document.createElement("span"));o.textContent=i.name,o.classList.add("tsd-hierarchy-target")}else{for(let a of i.uniqueNameParents||[]){let c=t.reflections[a],l=s.appendChild(document.createElement("a"));l.textContent=c.name,l.href=oe+c.url,l.className=c.class+" tsd-signature-type",s.append(document.createTextNode("."))}let o=s.appendChild(document.createElement("a"));o.textContent=t.reflections[e].name,o.href=oe+i.url,o.className=i.class+" tsd-signature-type"}if(i.children){let o=s.appendChild(document.createElement("ul"));o.classList.add("tsd-hierarchy");for(let a of i.children){let c=je(t,a,n,r);c&&o.appendChild(c)}}return r.delete(e),s}function mt(t,e,n){if(e===n)return!0;let r=new Set,i=[t.reflections[e]];for(;i.length;){let s=i.pop();if(!r.has(s)){r.add(s);for(let o of s.children||[]){if(o===n)return!0;i.push(t.reflections[o])}}}return!1}function gt(){let t=document.createElementNS("http://www.w3.org/2000/svg","svg");return t.setAttribute("width","20"),t.setAttribute("height","20"),t.setAttribute("viewBox","0 0 24 24"),t.setAttribute("fill","none"),t.innerHTML='<use href="#icon-chevronDown"></use>',t}X(re,"a[data-toggle]");X(ie,".tsd-accordion");X(ee,".tsd-filter-item input[type=checkbox]");var qe=document.getElementById("tsd-theme");qe&&He(qe);var yt=new Z;Object.defineProperty(window,"app",{value:yt});_e();Ne();$e();"virtualKeyboard"in navigator&&(navigator.virtualKeyboard.overlaysContent=!0);})();
|
|
7
|
+
/*! Bundled license information:
|
|
8
|
+
|
|
9
|
+
lunr/lunr.js:
|
|
10
|
+
(**
|
|
11
|
+
* lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9
|
|
12
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
13
|
+
* @license MIT
|
|
14
|
+
*)
|
|
15
|
+
(*!
|
|
16
|
+
* lunr.utils
|
|
17
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
18
|
+
*)
|
|
19
|
+
(*!
|
|
20
|
+
* lunr.Set
|
|
21
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
22
|
+
*)
|
|
23
|
+
(*!
|
|
24
|
+
* lunr.tokenizer
|
|
25
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
26
|
+
*)
|
|
27
|
+
(*!
|
|
28
|
+
* lunr.Pipeline
|
|
29
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
30
|
+
*)
|
|
31
|
+
(*!
|
|
32
|
+
* lunr.Vector
|
|
33
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
34
|
+
*)
|
|
35
|
+
(*!
|
|
36
|
+
* lunr.stemmer
|
|
37
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
38
|
+
* Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
|
|
39
|
+
*)
|
|
40
|
+
(*!
|
|
41
|
+
* lunr.stopWordFilter
|
|
42
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
43
|
+
*)
|
|
44
|
+
(*!
|
|
45
|
+
* lunr.trimmer
|
|
46
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
47
|
+
*)
|
|
48
|
+
(*!
|
|
49
|
+
* lunr.TokenSet
|
|
50
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
51
|
+
*)
|
|
52
|
+
(*!
|
|
53
|
+
* lunr.Index
|
|
54
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
55
|
+
*)
|
|
56
|
+
(*!
|
|
57
|
+
* lunr.Builder
|
|
58
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
59
|
+
*)
|
|
60
|
+
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window.navigationData = "eJyN1sFO4zAQBuB38blalkrA0htbhIQEAtHdE+JgOdPEIrEte4qoEO+OEtJgN/bY1/y/v6buOOnzB0N4R7Zi9+Acr+FKoNSKLZjh2LAVA7Xr3EkQ/mqwa9mCvUpVsdWfz8VkXNWg8GetaLlz4E6Gy+Gq06W/7q+Ve97MF35fz69ca7WV9QbsmxSQYoISZT5p3c2R/mpu1bhN8cVjSBnDRt2qrf4RpEKwWy4O29inIbE8Oz8mxo9yT+CMVg7S3HGTpI2ZbbHvTTGJWJRbLjBOjGEJcA/IK46chA4lEkTkornWYteBQnrLolUK90fvwfSnx0XlSI9i1w03CDY5Kl6eYSwXCDaFfKckYYEjDLNEbl2kl2f7Y1Og+rU8ukFt9wVq0KPYG9nCnXTxkT6EFHCn61oqcj7CCoXNnkGeEn0EHS3XFbTJuZpSini0YLiF6tHqztBTEa/SuBbg3D94z8mzXobtDPY/Vkob4zJkrRUGr8KoNbbKSPphHukVsLqtEmffL5RCRXcYNim6P9XXgFy28SPh5TkmOc+HMAcUvVBjRQoeHjC3FcRfYVOaJ1LfbkqzxHjb/03FMf7l5rUsukESG+I8sqtrcOF/0pk0dfKjuhHaeDeFezPN5hAdCb8vL07Plp8vX/pW2ak="
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window.searchData = "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";
|