@copilotkitnext/angular 0.0.9-alpha.2 → 0.0.10
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/dist/esm2022/index.mjs +2 -70
- package/dist/esm2022/lib/agent.mjs +73 -0
- package/dist/esm2022/lib/chat-config.mjs +35 -0
- package/dist/esm2022/lib/chat-state.mjs +18 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message-buttons.mjs +344 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message-renderer.mjs +260 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message-toolbar.mjs +22 -0
- package/dist/esm2022/{components/chat/copilot-chat-assistant-message.component.mjs → lib/components/chat/copilot-chat-assistant-message.mjs} +216 -240
- package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message.types.mjs +2 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-audio-recorder.mjs +196 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-buttons.mjs +299 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-input-defaults.mjs +39 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-input.mjs +634 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-input.types.mjs +10 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-message-view-cursor.mjs +27 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-message-view.mjs +268 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-message-view.types.mjs +2 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-textarea.mjs +139 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-tool-calls-view.mjs +36 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-toolbar.mjs +20 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-tools-menu.mjs +203 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-user-message-branch-navigation.mjs +118 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-user-message-buttons.mjs +182 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-user-message-renderer.mjs +28 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-user-message-toolbar.mjs +25 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-user-message.mjs +306 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-user-message.types.mjs +2 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view-disclaimer.mjs +48 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view-feather.mjs +41 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view-handlers.mjs +19 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view-input-container.mjs +96 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view-scroll-to-bottom-button.mjs +89 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view-scroll-view.mjs +456 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view.mjs +404 -0
- package/dist/esm2022/lib/components/chat/copilot-chat-view.types.mjs +2 -0
- package/dist/esm2022/lib/components/chat/copilot-chat.mjs +167 -0
- package/dist/esm2022/lib/config.mjs +9 -0
- package/dist/esm2022/lib/copilotkit.mjs +124 -0
- package/dist/esm2022/lib/directives/copilotkit-agent-context.mjs +130 -0
- package/dist/esm2022/lib/directives/stick-to-bottom.mjs +170 -0
- package/dist/esm2022/lib/directives/tooltip.mjs +217 -0
- package/dist/esm2022/lib/human-in-the-loop.mjs +19 -0
- package/dist/esm2022/lib/render-tool-calls.mjs +131 -0
- package/dist/esm2022/lib/resize-observer.mjs +152 -0
- package/dist/esm2022/lib/scroll-position.mjs +124 -0
- package/dist/esm2022/lib/slots/copilot-slot.mjs +156 -0
- package/dist/esm2022/lib/slots/index.mjs +4 -0
- package/dist/esm2022/lib/slots/slot.types.mjs +3 -3
- package/dist/esm2022/lib/slots/slot.utils.mjs +19 -15
- package/dist/esm2022/lib/tools.mjs +31 -0
- package/dist/esm2022/lib/utils.mjs +3 -3
- package/dist/esm2022/public-api.mjs +47 -0
- package/dist/fesm2022/copilotkitnext-angular.mjs +5249 -8271
- package/dist/fesm2022/copilotkitnext-angular.mjs.map +1 -1
- package/dist/index.d.ts +1 -55
- package/dist/lib/agent.d.ts +53 -0
- package/dist/{core/chat-configuration/chat-configuration.types.d.ts → lib/chat-config.d.ts} +4 -8
- package/dist/lib/chat-state.d.ts +10 -0
- package/dist/lib/components/chat/copilot-chat-assistant-message-buttons.d.ts +68 -0
- package/dist/lib/components/chat/copilot-chat-assistant-message-renderer.d.ts +26 -0
- package/dist/lib/components/chat/copilot-chat-assistant-message-toolbar.d.ts +7 -0
- package/dist/lib/components/chat/copilot-chat-assistant-message.d.ts +178 -0
- package/dist/{components → lib/components}/chat/copilot-chat-assistant-message.types.d.ts +1 -1
- package/dist/{components/chat/copilot-chat-audio-recorder.component.d.ts → lib/components/chat/copilot-chat-audio-recorder.d.ts} +10 -10
- package/dist/lib/components/chat/copilot-chat-buttons.d.ts +65 -0
- package/dist/lib/components/chat/copilot-chat-input-defaults.d.ts +38 -0
- package/dist/lib/components/chat/copilot-chat-input.d.ts +133 -0
- package/dist/{components → lib/components}/chat/copilot-chat-input.types.d.ts +11 -11
- package/dist/lib/components/chat/copilot-chat-message-view-cursor.d.ts +11 -0
- package/dist/{components/chat/copilot-chat-message-view.component.d.ts → lib/components/chat/copilot-chat-message-view.d.ts} +68 -36
- package/dist/{components → lib/components}/chat/copilot-chat-message-view.types.d.ts +2 -2
- package/dist/lib/components/chat/copilot-chat-textarea.d.ts +41 -0
- package/dist/lib/components/chat/copilot-chat-tool-calls-view.d.ts +55 -0
- package/dist/lib/components/chat/copilot-chat-toolbar.d.ts +7 -0
- package/dist/lib/components/chat/copilot-chat-tools-menu.d.ts +20 -0
- package/dist/lib/components/chat/copilot-chat-user-message-branch-navigation.d.ts +20 -0
- package/dist/lib/components/chat/copilot-chat-user-message-buttons.d.ts +35 -0
- package/dist/lib/components/chat/copilot-chat-user-message-renderer.d.ts +8 -0
- package/dist/lib/components/chat/copilot-chat-user-message-toolbar.d.ts +7 -0
- package/dist/lib/components/chat/copilot-chat-user-message.d.ts +55 -0
- package/dist/{components → lib/components}/chat/copilot-chat-user-message.types.d.ts +2 -2
- package/dist/lib/components/chat/copilot-chat-view-disclaimer.d.ts +15 -0
- package/dist/{components/chat/copilot-chat-view-feather.component.d.ts → lib/components/chat/copilot-chat-view-feather.d.ts} +6 -6
- package/dist/{components/chat/copilot-chat-view-handlers.service.d.ts → lib/components/chat/copilot-chat-view-handlers.d.ts} +3 -3
- package/dist/lib/components/chat/copilot-chat-view-input-container.d.ts +23 -0
- package/dist/lib/components/chat/copilot-chat-view-scroll-to-bottom-button.d.ts +16 -0
- package/dist/lib/components/chat/copilot-chat-view-scroll-view.d.ts +114 -0
- package/dist/lib/components/chat/copilot-chat-view.d.ts +239 -0
- package/dist/{components → lib/components}/chat/copilot-chat-view.types.d.ts +2 -2
- package/dist/lib/components/chat/copilot-chat.d.ts +67 -0
- package/dist/lib/config.d.ts +16 -0
- package/dist/lib/copilotkit.d.ts +29 -0
- package/dist/{directives/copilotkit-agent-context.directive.d.ts → lib/directives/copilotkit-agent-context.d.ts} +5 -5
- package/dist/lib/directives/stick-to-bottom.d.ts +62 -0
- package/dist/lib/directives/tooltip.d.ts +33 -0
- package/dist/lib/human-in-the-loop.d.ts +13 -0
- package/dist/lib/render-tool-calls.d.ts +75 -0
- package/dist/{services/resize-observer.service.d.ts → lib/resize-observer.d.ts} +2 -2
- package/dist/{services/scroll-position.service.d.ts → lib/scroll-position.d.ts} +6 -6
- package/dist/lib/slots/copilot-slot.d.ts +34 -0
- package/dist/lib/slots/index.d.ts +3 -0
- package/dist/lib/slots/slot.types.d.ts +1 -1
- package/dist/lib/slots/slot.utils.d.ts +6 -4
- package/dist/lib/tools.d.ts +63 -0
- package/dist/lib/utils.d.ts +1 -1
- package/dist/public-api.d.ts +46 -0
- package/dist/styles.css +0 -69
- package/package.json +3 -3
- package/dist/components/chat/copilot-chat-assistant-message-buttons.component.d.ts +0 -75
- package/dist/components/chat/copilot-chat-assistant-message-renderer.component.d.ts +0 -31
- package/dist/components/chat/copilot-chat-assistant-message-toolbar.component.d.ts +0 -8
- package/dist/components/chat/copilot-chat-assistant-message.component.d.ts +0 -132
- package/dist/components/chat/copilot-chat-buttons.component.d.ts +0 -66
- package/dist/components/chat/copilot-chat-input-defaults.d.ts +0 -37
- package/dist/components/chat/copilot-chat-input.component.d.ts +0 -133
- package/dist/components/chat/copilot-chat-message-view-cursor.component.d.ts +0 -15
- package/dist/components/chat/copilot-chat-textarea.component.d.ts +0 -45
- package/dist/components/chat/copilot-chat-tool-calls-view.component.d.ts +0 -35
- package/dist/components/chat/copilot-chat-toolbar.component.d.ts +0 -8
- package/dist/components/chat/copilot-chat-tools-menu.component.d.ts +0 -20
- package/dist/components/chat/copilot-chat-user-message-branch-navigation.component.d.ts +0 -23
- package/dist/components/chat/copilot-chat-user-message-buttons.component.d.ts +0 -39
- package/dist/components/chat/copilot-chat-user-message-renderer.component.d.ts +0 -9
- package/dist/components/chat/copilot-chat-user-message-toolbar.component.d.ts +0 -8
- package/dist/components/chat/copilot-chat-user-message.component.d.ts +0 -55
- package/dist/components/chat/copilot-chat-view-disclaimer.component.d.ts +0 -15
- package/dist/components/chat/copilot-chat-view-input-container.component.d.ts +0 -23
- package/dist/components/chat/copilot-chat-view-scroll-to-bottom-button.component.d.ts +0 -17
- package/dist/components/chat/copilot-chat-view-scroll-view.component.d.ts +0 -84
- package/dist/components/chat/copilot-chat-view.component.d.ts +0 -205
- package/dist/components/chat/copilot-chat.component.d.ts +0 -36
- package/dist/components/copilotkit-tool-render.component.d.ts +0 -25
- package/dist/core/chat-configuration/chat-configuration.providers.d.ts +0 -54
- package/dist/core/chat-configuration/chat-configuration.service.d.ts +0 -75
- package/dist/core/copilotkit.providers.d.ts +0 -13
- package/dist/core/copilotkit.service.d.ts +0 -119
- package/dist/core/copilotkit.types.d.ts +0 -81
- package/dist/directives/copilotkit-agent.directive.d.ts +0 -106
- package/dist/directives/copilotkit-chat-config.directive.d.ts +0 -84
- package/dist/directives/copilotkit-config.directive.d.ts +0 -44
- package/dist/directives/copilotkit-frontend-tool.directive.d.ts +0 -25
- package/dist/directives/copilotkit-human-in-the-loop.directive.d.ts +0 -124
- package/dist/directives/stick-to-bottom.directive.d.ts +0 -62
- package/dist/esm2022/components/chat/copilot-chat-assistant-message-buttons.component.mjs +0 -384
- package/dist/esm2022/components/chat/copilot-chat-assistant-message-renderer.component.mjs +0 -286
- package/dist/esm2022/components/chat/copilot-chat-assistant-message-toolbar.component.mjs +0 -27
- package/dist/esm2022/components/chat/copilot-chat-assistant-message.types.mjs +0 -2
- package/dist/esm2022/components/chat/copilot-chat-audio-recorder.component.mjs +0 -202
- package/dist/esm2022/components/chat/copilot-chat-buttons.component.mjs +0 -321
- package/dist/esm2022/components/chat/copilot-chat-input-defaults.mjs +0 -38
- package/dist/esm2022/components/chat/copilot-chat-input.component.mjs +0 -666
- package/dist/esm2022/components/chat/copilot-chat-input.types.mjs +0 -10
- package/dist/esm2022/components/chat/copilot-chat-message-view-cursor.component.mjs +0 -45
- package/dist/esm2022/components/chat/copilot-chat-message-view.component.mjs +0 -296
- package/dist/esm2022/components/chat/copilot-chat-message-view.types.mjs +0 -2
- package/dist/esm2022/components/chat/copilot-chat-textarea.component.mjs +0 -188
- package/dist/esm2022/components/chat/copilot-chat-tool-calls-view.component.mjs +0 -222
- package/dist/esm2022/components/chat/copilot-chat-toolbar.component.mjs +0 -25
- package/dist/esm2022/components/chat/copilot-chat-tools-menu.component.mjs +0 -199
- package/dist/esm2022/components/chat/copilot-chat-user-message-branch-navigation.component.mjs +0 -137
- package/dist/esm2022/components/chat/copilot-chat-user-message-buttons.component.mjs +0 -207
- package/dist/esm2022/components/chat/copilot-chat-user-message-renderer.component.mjs +0 -35
- package/dist/esm2022/components/chat/copilot-chat-user-message-toolbar.component.mjs +0 -34
- package/dist/esm2022/components/chat/copilot-chat-user-message.component.mjs +0 -341
- package/dist/esm2022/components/chat/copilot-chat-user-message.types.mjs +0 -2
- package/dist/esm2022/components/chat/copilot-chat-view-disclaimer.component.mjs +0 -52
- package/dist/esm2022/components/chat/copilot-chat-view-feather.component.mjs +0 -55
- package/dist/esm2022/components/chat/copilot-chat-view-handlers.service.mjs +0 -19
- package/dist/esm2022/components/chat/copilot-chat-view-input-container.component.mjs +0 -110
- package/dist/esm2022/components/chat/copilot-chat-view-scroll-to-bottom-button.component.mjs +0 -93
- package/dist/esm2022/components/chat/copilot-chat-view-scroll-view.component.mjs +0 -443
- package/dist/esm2022/components/chat/copilot-chat-view.component.mjs +0 -479
- package/dist/esm2022/components/chat/copilot-chat-view.types.mjs +0 -2
- package/dist/esm2022/components/chat/copilot-chat.component.mjs +0 -220
- package/dist/esm2022/components/copilotkit-tool-render.component.mjs +0 -150
- package/dist/esm2022/core/chat-configuration/chat-configuration.providers.mjs +0 -65
- package/dist/esm2022/core/chat-configuration/chat-configuration.service.mjs +0 -145
- package/dist/esm2022/core/chat-configuration/chat-configuration.types.mjs +0 -26
- package/dist/esm2022/core/copilotkit.providers.mjs +0 -34
- package/dist/esm2022/core/copilotkit.service.mjs +0 -411
- package/dist/esm2022/core/copilotkit.types.mjs +0 -13
- package/dist/esm2022/directives/copilotkit-agent-context.directive.mjs +0 -130
- package/dist/esm2022/directives/copilotkit-agent.directive.mjs +0 -221
- package/dist/esm2022/directives/copilotkit-chat-config.directive.mjs +0 -218
- package/dist/esm2022/directives/copilotkit-config.directive.mjs +0 -94
- package/dist/esm2022/directives/copilotkit-frontend-tool.directive.mjs +0 -128
- package/dist/esm2022/directives/copilotkit-human-in-the-loop.directive.mjs +0 -265
- package/dist/esm2022/directives/stick-to-bottom.directive.mjs +0 -181
- package/dist/esm2022/lib/directives/tooltip.directive.mjs +0 -211
- package/dist/esm2022/lib/slots/copilot-slot.component.mjs +0 -154
- package/dist/esm2022/services/resize-observer.service.mjs +0 -152
- package/dist/esm2022/services/scroll-position.service.mjs +0 -124
- package/dist/esm2022/types/frontend-tool.mjs +0 -2
- package/dist/esm2022/types/human-in-the-loop.mjs +0 -2
- package/dist/esm2022/utils/agent-context.utils.mjs +0 -114
- package/dist/esm2022/utils/agent.utils.mjs +0 -212
- package/dist/esm2022/utils/chat-config.utils.mjs +0 -186
- package/dist/esm2022/utils/copilotkit.utils.mjs +0 -20
- package/dist/esm2022/utils/frontend-tool.utils.mjs +0 -224
- package/dist/esm2022/utils/human-in-the-loop.utils.mjs +0 -293
- package/dist/lib/directives/tooltip.directive.d.ts +0 -33
- package/dist/lib/slots/copilot-slot.component.d.ts +0 -34
- package/dist/types/frontend-tool.d.ts +0 -37
- package/dist/types/human-in-the-loop.d.ts +0 -44
- package/dist/utils/agent-context.utils.d.ts +0 -75
- package/dist/utils/agent.utils.d.ts +0 -108
- package/dist/utils/chat-config.utils.d.ts +0 -166
- package/dist/utils/copilotkit.utils.d.ts +0 -16
- package/dist/utils/frontend-tool.utils.d.ts +0 -119
- package/dist/utils/human-in-the-loop.utils.d.ts +0 -92
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
import { Component, input, output, signal, computed, ChangeDetectionStrategy, ViewEncapsulation, } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { LucideAngularModule, Copy, Check, ThumbsUp, ThumbsDown, Volume2, RefreshCw, } from "lucide-angular";
|
|
4
|
+
import { CopilotTooltip } from "../../directives/tooltip";
|
|
5
|
+
import { cn } from "../../utils";
|
|
6
|
+
import { injectChatLabels } from "../../chat-config";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../directives/tooltip";
|
|
9
|
+
import * as i2 from "lucide-angular";
|
|
10
|
+
// Base toolbar button component
|
|
11
|
+
export class CopilotChatAssistantMessageToolbarButton {
|
|
12
|
+
title = input("");
|
|
13
|
+
disabled = input(false);
|
|
14
|
+
inputClass = input();
|
|
15
|
+
computedClass = computed(() => {
|
|
16
|
+
return cn(
|
|
17
|
+
// Flex centering with gap (from React button base styles)
|
|
18
|
+
"inline-flex items-center justify-center gap-2",
|
|
19
|
+
// Cursor
|
|
20
|
+
"cursor-pointer",
|
|
21
|
+
// Background and text
|
|
22
|
+
"p-0 text-[rgb(93,93,93)] hover:bg-[#E8E8E8]",
|
|
23
|
+
// Dark mode
|
|
24
|
+
"dark:text-[rgb(243,243,243)] dark:hover:bg-[#303030]",
|
|
25
|
+
// Shape and sizing
|
|
26
|
+
"h-8 w-8 rounded-md",
|
|
27
|
+
// Interactions
|
|
28
|
+
"transition-colors",
|
|
29
|
+
// Hover states
|
|
30
|
+
"hover:text-[rgb(93,93,93)]", "dark:hover:text-[rgb(243,243,243)]",
|
|
31
|
+
// Focus states
|
|
32
|
+
"focus:outline-none focus:ring-2 focus:ring-offset-2",
|
|
33
|
+
// Disabled state
|
|
34
|
+
"disabled:opacity-50 disabled:cursor-not-allowed",
|
|
35
|
+
// SVG styling from React Button component
|
|
36
|
+
"[&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
37
|
+
// Ensure proper sizing
|
|
38
|
+
"shrink-0", this.inputClass());
|
|
39
|
+
});
|
|
40
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageToolbarButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
41
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: CopilotChatAssistantMessageToolbarButton, isStandalone: true, selector: "button[copilotChatAssistantMessageToolbarButton]", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, inputClass: { classPropertyName: "inputClass", publicName: "inputClass", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "type": "button" }, properties: { "class": "computedClass()", "attr.disabled": "disabled() ? true : null", "attr.aria-label": "title()" } }, hostDirectives: [{ directive: i1.CopilotTooltip, inputs: ["copilotTooltip", "title", "tooltipPosition", "tooltipPosition", "tooltipDelay", "tooltipDelay"] }], ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
42
|
+
}
|
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageToolbarButton, decorators: [{
|
|
44
|
+
type: Component,
|
|
45
|
+
args: [{
|
|
46
|
+
standalone: true,
|
|
47
|
+
selector: "button[copilotChatAssistantMessageToolbarButton]",
|
|
48
|
+
imports: [CommonModule],
|
|
49
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
50
|
+
encapsulation: ViewEncapsulation.None,
|
|
51
|
+
template: ` <ng-content></ng-content> `,
|
|
52
|
+
host: {
|
|
53
|
+
"[class]": "computedClass()",
|
|
54
|
+
"[attr.disabled]": "disabled() ? true : null",
|
|
55
|
+
type: "button",
|
|
56
|
+
"[attr.aria-label]": "title()",
|
|
57
|
+
},
|
|
58
|
+
hostDirectives: [
|
|
59
|
+
{
|
|
60
|
+
directive: CopilotTooltip,
|
|
61
|
+
inputs: ["copilotTooltip: title", "tooltipPosition", "tooltipDelay"],
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
}]
|
|
65
|
+
}] });
|
|
66
|
+
// Copy button component
|
|
67
|
+
export class CopilotChatAssistantMessageCopyButton {
|
|
68
|
+
title = input();
|
|
69
|
+
disabled = input(false);
|
|
70
|
+
inputClass = input();
|
|
71
|
+
content = input();
|
|
72
|
+
clicked = output();
|
|
73
|
+
CopyIcon = Copy;
|
|
74
|
+
CheckIcon = Check;
|
|
75
|
+
copied = signal(false);
|
|
76
|
+
labels = injectChatLabels();
|
|
77
|
+
handleCopy(event) {
|
|
78
|
+
event?.stopPropagation();
|
|
79
|
+
if (!this.content())
|
|
80
|
+
return;
|
|
81
|
+
// Set copied immediately for instant feedback
|
|
82
|
+
this.copied.set(true);
|
|
83
|
+
setTimeout(() => this.copied.set(false), 2000);
|
|
84
|
+
// Copy to clipboard (fire and forget)
|
|
85
|
+
navigator.clipboard.writeText(this.content()).then(() => this.clicked.emit(), (err) => {
|
|
86
|
+
console.error("Failed to copy message:", err);
|
|
87
|
+
this.copied.set(false);
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageCopyButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
91
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CopilotChatAssistantMessageCopyButton, isStandalone: true, selector: "copilot-chat-assistant-message-copy-button", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, inputClass: { classPropertyName: "inputClass", publicName: "inputClass", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clicked: "clicked" }, ngImport: i0, template: `
|
|
92
|
+
<button
|
|
93
|
+
copilotChatAssistantMessageToolbarButton
|
|
94
|
+
[title]="title() || labels.assistantMessageToolbarCopyMessageLabel"
|
|
95
|
+
[disabled]="disabled()"
|
|
96
|
+
[inputClass]="inputClass()"
|
|
97
|
+
(click)="handleCopy($event)"
|
|
98
|
+
>
|
|
99
|
+
@if (copied()) {
|
|
100
|
+
<lucide-angular [img]="CheckIcon" [size]="18"></lucide-angular>
|
|
101
|
+
} @else {
|
|
102
|
+
<lucide-angular [img]="CopyIcon" [size]="18"></lucide-angular>
|
|
103
|
+
}
|
|
104
|
+
</button>
|
|
105
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: LucideAngularModule }, { kind: "component", type: i2.LucideAngularComponent, selector: "lucide-angular, lucide-icon, i-lucide, span-lucide", inputs: ["class", "name", "img", "color", "absoluteStrokeWidth", "size", "strokeWidth"] }, { kind: "component", type: CopilotChatAssistantMessageToolbarButton, selector: "button[copilotChatAssistantMessageToolbarButton]", inputs: ["title", "disabled", "inputClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
106
|
+
}
|
|
107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageCopyButton, decorators: [{
|
|
108
|
+
type: Component,
|
|
109
|
+
args: [{
|
|
110
|
+
standalone: true,
|
|
111
|
+
selector: "copilot-chat-assistant-message-copy-button",
|
|
112
|
+
imports: [
|
|
113
|
+
CommonModule,
|
|
114
|
+
LucideAngularModule,
|
|
115
|
+
CopilotChatAssistantMessageToolbarButton,
|
|
116
|
+
],
|
|
117
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
118
|
+
encapsulation: ViewEncapsulation.None,
|
|
119
|
+
template: `
|
|
120
|
+
<button
|
|
121
|
+
copilotChatAssistantMessageToolbarButton
|
|
122
|
+
[title]="title() || labels.assistantMessageToolbarCopyMessageLabel"
|
|
123
|
+
[disabled]="disabled()"
|
|
124
|
+
[inputClass]="inputClass()"
|
|
125
|
+
(click)="handleCopy($event)"
|
|
126
|
+
>
|
|
127
|
+
@if (copied()) {
|
|
128
|
+
<lucide-angular [img]="CheckIcon" [size]="18"></lucide-angular>
|
|
129
|
+
} @else {
|
|
130
|
+
<lucide-angular [img]="CopyIcon" [size]="18"></lucide-angular>
|
|
131
|
+
}
|
|
132
|
+
</button>
|
|
133
|
+
`,
|
|
134
|
+
}]
|
|
135
|
+
}] });
|
|
136
|
+
// Thumbs up button component
|
|
137
|
+
export class CopilotChatAssistantMessageThumbsUpButton {
|
|
138
|
+
title = input();
|
|
139
|
+
disabled = input(false);
|
|
140
|
+
inputClass = input();
|
|
141
|
+
clicked = output();
|
|
142
|
+
ThumbsUpIcon = ThumbsUp;
|
|
143
|
+
labels = injectChatLabels();
|
|
144
|
+
handleClick(event) {
|
|
145
|
+
event?.stopPropagation();
|
|
146
|
+
if (!this.disabled()) {
|
|
147
|
+
this.clicked.emit();
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageThumbsUpButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
151
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: CopilotChatAssistantMessageThumbsUpButton, isStandalone: true, selector: "copilot-chat-assistant-message-thumbs-up-button", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, inputClass: { classPropertyName: "inputClass", publicName: "inputClass", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clicked: "clicked" }, ngImport: i0, template: `
|
|
152
|
+
<button
|
|
153
|
+
copilotChatAssistantMessageToolbarButton
|
|
154
|
+
[title]="title() || labels.assistantMessageToolbarThumbsUpLabel"
|
|
155
|
+
[disabled]="disabled()"
|
|
156
|
+
[inputClass]="inputClass()"
|
|
157
|
+
(click)="handleClick($event)"
|
|
158
|
+
>
|
|
159
|
+
<lucide-angular [img]="ThumbsUpIcon" [size]="18"></lucide-angular>
|
|
160
|
+
</button>
|
|
161
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: LucideAngularModule }, { kind: "component", type: i2.LucideAngularComponent, selector: "lucide-angular, lucide-icon, i-lucide, span-lucide", inputs: ["class", "name", "img", "color", "absoluteStrokeWidth", "size", "strokeWidth"] }, { kind: "component", type: CopilotChatAssistantMessageToolbarButton, selector: "button[copilotChatAssistantMessageToolbarButton]", inputs: ["title", "disabled", "inputClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
162
|
+
}
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageThumbsUpButton, decorators: [{
|
|
164
|
+
type: Component,
|
|
165
|
+
args: [{
|
|
166
|
+
standalone: true,
|
|
167
|
+
selector: "copilot-chat-assistant-message-thumbs-up-button",
|
|
168
|
+
imports: [
|
|
169
|
+
CommonModule,
|
|
170
|
+
LucideAngularModule,
|
|
171
|
+
CopilotChatAssistantMessageToolbarButton,
|
|
172
|
+
],
|
|
173
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
174
|
+
encapsulation: ViewEncapsulation.None,
|
|
175
|
+
template: `
|
|
176
|
+
<button
|
|
177
|
+
copilotChatAssistantMessageToolbarButton
|
|
178
|
+
[title]="title() || labels.assistantMessageToolbarThumbsUpLabel"
|
|
179
|
+
[disabled]="disabled()"
|
|
180
|
+
[inputClass]="inputClass()"
|
|
181
|
+
(click)="handleClick($event)"
|
|
182
|
+
>
|
|
183
|
+
<lucide-angular [img]="ThumbsUpIcon" [size]="18"></lucide-angular>
|
|
184
|
+
</button>
|
|
185
|
+
`,
|
|
186
|
+
}]
|
|
187
|
+
}] });
|
|
188
|
+
// Thumbs down button component
|
|
189
|
+
export class CopilotChatAssistantMessageThumbsDownButton {
|
|
190
|
+
title = input();
|
|
191
|
+
disabled = input(false);
|
|
192
|
+
inputClass = input();
|
|
193
|
+
clicked = output();
|
|
194
|
+
ThumbsDownIcon = ThumbsDown;
|
|
195
|
+
labels = injectChatLabels();
|
|
196
|
+
handleClick(event) {
|
|
197
|
+
event?.stopPropagation();
|
|
198
|
+
if (!this.disabled()) {
|
|
199
|
+
this.clicked.emit();
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageThumbsDownButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
203
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: CopilotChatAssistantMessageThumbsDownButton, isStandalone: true, selector: "copilot-chat-assistant-message-thumbs-down-button", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, inputClass: { classPropertyName: "inputClass", publicName: "inputClass", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clicked: "clicked" }, ngImport: i0, template: `
|
|
204
|
+
<button
|
|
205
|
+
copilotChatAssistantMessageToolbarButton
|
|
206
|
+
[title]="title() || labels.assistantMessageToolbarThumbsDownLabel"
|
|
207
|
+
[disabled]="disabled()"
|
|
208
|
+
[inputClass]="inputClass()"
|
|
209
|
+
(click)="handleClick($event)"
|
|
210
|
+
>
|
|
211
|
+
<lucide-angular [img]="ThumbsDownIcon" [size]="18"></lucide-angular>
|
|
212
|
+
</button>
|
|
213
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: LucideAngularModule }, { kind: "component", type: i2.LucideAngularComponent, selector: "lucide-angular, lucide-icon, i-lucide, span-lucide", inputs: ["class", "name", "img", "color", "absoluteStrokeWidth", "size", "strokeWidth"] }, { kind: "component", type: CopilotChatAssistantMessageToolbarButton, selector: "button[copilotChatAssistantMessageToolbarButton]", inputs: ["title", "disabled", "inputClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
214
|
+
}
|
|
215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageThumbsDownButton, decorators: [{
|
|
216
|
+
type: Component,
|
|
217
|
+
args: [{
|
|
218
|
+
standalone: true,
|
|
219
|
+
selector: "copilot-chat-assistant-message-thumbs-down-button",
|
|
220
|
+
imports: [
|
|
221
|
+
CommonModule,
|
|
222
|
+
LucideAngularModule,
|
|
223
|
+
CopilotChatAssistantMessageToolbarButton,
|
|
224
|
+
],
|
|
225
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
226
|
+
encapsulation: ViewEncapsulation.None,
|
|
227
|
+
template: `
|
|
228
|
+
<button
|
|
229
|
+
copilotChatAssistantMessageToolbarButton
|
|
230
|
+
[title]="title() || labels.assistantMessageToolbarThumbsDownLabel"
|
|
231
|
+
[disabled]="disabled()"
|
|
232
|
+
[inputClass]="inputClass()"
|
|
233
|
+
(click)="handleClick($event)"
|
|
234
|
+
>
|
|
235
|
+
<lucide-angular [img]="ThumbsDownIcon" [size]="18"></lucide-angular>
|
|
236
|
+
</button>
|
|
237
|
+
`,
|
|
238
|
+
}]
|
|
239
|
+
}] });
|
|
240
|
+
// Read aloud button component
|
|
241
|
+
export class CopilotChatAssistantMessageReadAloudButton {
|
|
242
|
+
title = input();
|
|
243
|
+
disabled = input(false);
|
|
244
|
+
inputClass = input();
|
|
245
|
+
clicked = output();
|
|
246
|
+
Volume2Icon = Volume2;
|
|
247
|
+
labels = injectChatLabels();
|
|
248
|
+
handleClick(event) {
|
|
249
|
+
event?.stopPropagation();
|
|
250
|
+
if (!this.disabled()) {
|
|
251
|
+
this.clicked.emit();
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageReadAloudButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
255
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: CopilotChatAssistantMessageReadAloudButton, isStandalone: true, selector: "copilot-chat-assistant-message-read-aloud-button", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, inputClass: { classPropertyName: "inputClass", publicName: "inputClass", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clicked: "clicked" }, ngImport: i0, template: `
|
|
256
|
+
<button
|
|
257
|
+
copilotChatAssistantMessageToolbarButton
|
|
258
|
+
[title]="title() || labels.assistantMessageToolbarReadAloudLabel"
|
|
259
|
+
[disabled]="disabled()"
|
|
260
|
+
[inputClass]="inputClass()"
|
|
261
|
+
(click)="handleClick($event)"
|
|
262
|
+
>
|
|
263
|
+
<lucide-angular [img]="Volume2Icon" [size]="20"></lucide-angular>
|
|
264
|
+
</button>
|
|
265
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: LucideAngularModule }, { kind: "component", type: i2.LucideAngularComponent, selector: "lucide-angular, lucide-icon, i-lucide, span-lucide", inputs: ["class", "name", "img", "color", "absoluteStrokeWidth", "size", "strokeWidth"] }, { kind: "component", type: CopilotChatAssistantMessageToolbarButton, selector: "button[copilotChatAssistantMessageToolbarButton]", inputs: ["title", "disabled", "inputClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
266
|
+
}
|
|
267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageReadAloudButton, decorators: [{
|
|
268
|
+
type: Component,
|
|
269
|
+
args: [{
|
|
270
|
+
standalone: true,
|
|
271
|
+
selector: "copilot-chat-assistant-message-read-aloud-button",
|
|
272
|
+
imports: [
|
|
273
|
+
CommonModule,
|
|
274
|
+
LucideAngularModule,
|
|
275
|
+
CopilotChatAssistantMessageToolbarButton,
|
|
276
|
+
],
|
|
277
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
278
|
+
encapsulation: ViewEncapsulation.None,
|
|
279
|
+
template: `
|
|
280
|
+
<button
|
|
281
|
+
copilotChatAssistantMessageToolbarButton
|
|
282
|
+
[title]="title() || labels.assistantMessageToolbarReadAloudLabel"
|
|
283
|
+
[disabled]="disabled()"
|
|
284
|
+
[inputClass]="inputClass()"
|
|
285
|
+
(click)="handleClick($event)"
|
|
286
|
+
>
|
|
287
|
+
<lucide-angular [img]="Volume2Icon" [size]="20"></lucide-angular>
|
|
288
|
+
</button>
|
|
289
|
+
`,
|
|
290
|
+
}]
|
|
291
|
+
}] });
|
|
292
|
+
// Regenerate button component
|
|
293
|
+
export class CopilotChatAssistantMessageRegenerateButton {
|
|
294
|
+
title = input();
|
|
295
|
+
disabled = input(false);
|
|
296
|
+
inputClass = input();
|
|
297
|
+
clicked = output();
|
|
298
|
+
RefreshCwIcon = RefreshCw;
|
|
299
|
+
labels = injectChatLabels();
|
|
300
|
+
handleClick(event) {
|
|
301
|
+
event?.stopPropagation();
|
|
302
|
+
if (!this.disabled()) {
|
|
303
|
+
this.clicked.emit();
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageRegenerateButton, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
307
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: CopilotChatAssistantMessageRegenerateButton, isStandalone: true, selector: "copilot-chat-assistant-message-regenerate-button", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, inputClass: { classPropertyName: "inputClass", publicName: "inputClass", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clicked: "clicked" }, ngImport: i0, template: `
|
|
308
|
+
<button
|
|
309
|
+
copilotChatAssistantMessageToolbarButton
|
|
310
|
+
[title]="title() || labels.assistantMessageToolbarRegenerateLabel"
|
|
311
|
+
[disabled]="disabled()"
|
|
312
|
+
[inputClass]="inputClass()"
|
|
313
|
+
(click)="handleClick($event)"
|
|
314
|
+
>
|
|
315
|
+
<lucide-angular [img]="RefreshCwIcon" [size]="18"></lucide-angular>
|
|
316
|
+
</button>
|
|
317
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: LucideAngularModule }, { kind: "component", type: i2.LucideAngularComponent, selector: "lucide-angular, lucide-icon, i-lucide, span-lucide", inputs: ["class", "name", "img", "color", "absoluteStrokeWidth", "size", "strokeWidth"] }, { kind: "component", type: CopilotChatAssistantMessageToolbarButton, selector: "button[copilotChatAssistantMessageToolbarButton]", inputs: ["title", "disabled", "inputClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
318
|
+
}
|
|
319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopilotChatAssistantMessageRegenerateButton, decorators: [{
|
|
320
|
+
type: Component,
|
|
321
|
+
args: [{
|
|
322
|
+
standalone: true,
|
|
323
|
+
selector: "copilot-chat-assistant-message-regenerate-button",
|
|
324
|
+
imports: [
|
|
325
|
+
CommonModule,
|
|
326
|
+
LucideAngularModule,
|
|
327
|
+
CopilotChatAssistantMessageToolbarButton,
|
|
328
|
+
],
|
|
329
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
330
|
+
encapsulation: ViewEncapsulation.None,
|
|
331
|
+
template: `
|
|
332
|
+
<button
|
|
333
|
+
copilotChatAssistantMessageToolbarButton
|
|
334
|
+
[title]="title() || labels.assistantMessageToolbarRegenerateLabel"
|
|
335
|
+
[disabled]="disabled()"
|
|
336
|
+
[inputClass]="inputClass()"
|
|
337
|
+
(click)="handleClick($event)"
|
|
338
|
+
>
|
|
339
|
+
<lucide-angular [img]="RefreshCwIcon" [size]="18"></lucide-angular>
|
|
340
|
+
</button>
|
|
341
|
+
`,
|
|
342
|
+
}]
|
|
343
|
+
}] });
|
|
344
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29waWxvdC1jaGF0LWFzc2lzdGFudC1tZXNzYWdlLWJ1dHRvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvY2hhdC9jb3BpbG90LWNoYXQtYXNzaXN0YW50LW1lc3NhZ2UtYnV0dG9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssRUFDTCxNQUFNLEVBQ04sTUFBTSxFQUNOLFFBQVEsRUFDUix1QkFBdUIsRUFDdkIsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0wsbUJBQW1CLEVBQ25CLElBQUksRUFDSixLQUFLLEVBQ0wsUUFBUSxFQUNSLFVBQVUsRUFDVixPQUFPLEVBQ1AsU0FBUyxHQUNWLE1BQU0sZ0JBQWdCLENBQUM7QUFDeEIsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzFELE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFDakMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sbUJBQW1CLENBQUM7Ozs7QUFFckQsZ0NBQWdDO0FBcUJoQyxNQUFNLE9BQU8sd0NBQXdDO0lBQ25ELEtBQUssR0FBRyxLQUFLLENBQVMsRUFBRSxDQUFDLENBQUM7SUFDMUIsUUFBUSxHQUFHLEtBQUssQ0FBVSxLQUFLLENBQUMsQ0FBQztJQUNqQyxVQUFVLEdBQUcsS0FBSyxFQUFzQixDQUFDO0lBRXpDLGFBQWEsR0FBRyxRQUFRLENBQUMsR0FBRyxFQUFFO1FBQzVCLE9BQU8sRUFBRTtRQUNQLDBEQUEwRDtRQUMxRCwrQ0FBK0M7UUFDL0MsU0FBUztRQUNULGdCQUFnQjtRQUNoQixzQkFBc0I7UUFDdEIsNkNBQTZDO1FBQzdDLFlBQVk7UUFDWixzREFBc0Q7UUFDdEQsbUJBQW1CO1FB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QixDQUFDO0lBQ0gsQ0FBQzt3R0FiVSwyQ0FBMkM7NEZBQTNDLDJDQUEyQyx5aEJBWjVDOzs7Ozs7Ozs7O0dBVVQsMkRBaEJDLFlBQVksOEJBQ1osbUJBQW1CLGdQQXZOVix3Q0FBd0M7OzRGQXdPeEMsMkNBQTJDO2tCQXRCdkQsU0FBUzttQkFBQztvQkFDVCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsUUFBUSxFQUFFLGtEQUFrRDtvQkFDNUQsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osbUJBQW1CO3dCQUNuQix3Q0FBd0M7cUJBQ3pDO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsUUFBUSxFQUFFOzs7Ozs7Ozs7O0dBVVQ7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb21wb25lbnQsXG4gIGlucHV0LFxuICBvdXRwdXQsXG4gIHNpZ25hbCxcbiAgY29tcHV0ZWQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcbmltcG9ydCB7XG4gIEx1Y2lkZUFuZ3VsYXJNb2R1bGUsXG4gIENvcHksXG4gIENoZWNrLFxuICBUaHVtYnNVcCxcbiAgVGh1bWJzRG93bixcbiAgVm9sdW1lMixcbiAgUmVmcmVzaEN3LFxufSBmcm9tIFwibHVjaWRlLWFuZ3VsYXJcIjtcbmltcG9ydCB7IENvcGlsb3RUb29sdGlwIH0gZnJvbSBcIi4uLy4uL2RpcmVjdGl2ZXMvdG9vbHRpcFwiO1xuaW1wb3J0IHsgY24gfSBmcm9tIFwiLi4vLi4vdXRpbHNcIjtcbmltcG9ydCB7IGluamVjdENoYXRMYWJlbHMgfSBmcm9tIFwiLi4vLi4vY2hhdC1jb25maWdcIjtcblxuLy8gQmFzZSB0b29sYmFyIGJ1dHRvbiBjb21wb25lbnRcbkBDb21wb25lbnQoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBzZWxlY3RvcjogXCJidXR0b25bY29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvbl1cIixcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICB0ZW1wbGF0ZTogYCA8bmctY29udGVudD48L25nLWNvbnRlbnQ+IGAsXG4gIGhvc3Q6IHtcbiAgICBcIltjbGFzc11cIjogXCJjb21wdXRlZENsYXNzKClcIixcbiAgICBcIlthdHRyLmRpc2FibGVkXVwiOiBcImRpc2FibGVkKCkgPyB0cnVlIDogbnVsbFwiLFxuICAgIHR5cGU6IFwiYnV0dG9uXCIsXG4gICAgXCJbYXR0ci5hcmlhLWxhYmVsXVwiOiBcInRpdGxlKClcIixcbiAgfSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICB7XG4gICAgICBkaXJlY3RpdmU6IENvcGlsb3RUb29sdGlwLFxuICAgICAgaW5wdXRzOiBbXCJjb3BpbG90VG9vbHRpcDogdGl0bGVcIiwgXCJ0b29sdGlwUG9zaXRpb25cIiwgXCJ0b29sdGlwRGVsYXlcIl0sXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvbiB7XG4gIHRpdGxlID0gaW5wdXQ8c3RyaW5nPihcIlwiKTtcbiAgZGlzYWJsZWQgPSBpbnB1dDxib29sZWFuPihmYWxzZSk7XG4gIGlucHV0Q2xhc3MgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG5cbiAgY29tcHV0ZWRDbGFzcyA9IGNvbXB1dGVkKCgpID0+IHtcbiAgICByZXR1cm4gY24oXG4gICAgICAvLyBGbGV4IGNlbnRlcmluZyB3aXRoIGdhcCAoZnJvbSBSZWFjdCBidXR0b24gYmFzZSBzdHlsZXMpXG4gICAgICBcImlubGluZS1mbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNlbnRlciBnYXAtMlwiLFxuICAgICAgLy8gQ3Vyc29yXG4gICAgICBcImN1cnNvci1wb2ludGVyXCIsXG4gICAgICAvLyBCYWNrZ3JvdW5kIGFuZCB0ZXh0XG4gICAgICBcInAtMCB0ZXh0LVtyZ2IoOTMsOTMsOTMpXSBob3ZlcjpiZy1bI0U4RThFOF1cIixcbiAgICAgIC8vIERhcmsgbW9kZVxuICAgICAgXCJkYXJrOnRleHQtW3JnYigyNDMsMjQzLDI0MyldIGRhcms6aG92ZXI6YmctWyMzMDMwMzBdXCIsXG4gICAgICAvLyBTaGFwZSBhbmQgc2l6aW5nXG4gICAgICBcImgtOCB3LTggcm91bmRlZC1tZFwiLFxuICAgICAgLy8gSW50ZXJhY3Rpb25zXG4gICAgICBcInRyYW5zaXRpb24tY29sb3JzXCIsXG4gICAgICAvLyBIb3ZlciBzdGF0ZXNcbiAgICAgIFwiaG92ZXI6dGV4dC1bcmdiKDkzLDkzLDkzKV1cIixcbiAgICAgIFwiZGFyazpob3Zlcjp0ZXh0LVtyZ2IoMjQzLDI0MywyNDMpXVwiLFxuICAgICAgLy8gRm9jdXMgc3RhdGVzXG4gICAgICBcImZvY3VzOm91dGxpbmUtbm9uZSBmb2N1czpyaW5nLTIgZm9jdXM6cmluZy1vZmZzZXQtMlwiLFxuICAgICAgLy8gRGlzYWJsZWQgc3RhdGVcbiAgICAgIFwiZGlzYWJsZWQ6b3BhY2l0eS01MCBkaXNhYmxlZDpjdXJzb3Itbm90LWFsbG93ZWRcIixcbiAgICAgIC8vIFNWRyBzdHlsaW5nIGZyb20gUmVhY3QgQnV0dG9uIGNvbXBvbmVudFxuICAgICAgXCJbJl9zdmddOnBvaW50ZXItZXZlbnRzLW5vbmUgWyZfc3ZnXTpzaHJpbmstMFwiLFxuICAgICAgLy8gRW5zdXJlIHByb3BlciBzaXppbmdcbiAgICAgIFwic2hyaW5rLTBcIixcbiAgICAgIHRoaXMuaW5wdXRDbGFzcygpXG4gICAgKTtcbiAgfSk7XG59XG5cbi8vIENvcHkgYnV0dG9uIGNvbXBvbmVudFxuQENvbXBvbmVudCh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHNlbGVjdG9yOiBcImNvcGlsb3QtY2hhdC1hc3Npc3RhbnQtbWVzc2FnZS1jb3B5LWJ1dHRvblwiLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEx1Y2lkZUFuZ3VsYXJNb2R1bGUsXG4gICAgQ29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvbixcbiAgXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGJ1dHRvblxuICAgICAgY29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvblxuICAgICAgW3RpdGxlXT1cInRpdGxlKCkgfHwgbGFiZWxzLmFzc2lzdGFudE1lc3NhZ2VUb29sYmFyQ29weU1lc3NhZ2VMYWJlbFwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKVwiXG4gICAgICBbaW5wdXRDbGFzc109XCJpbnB1dENsYXNzKClcIlxuICAgICAgKGNsaWNrKT1cImhhbmRsZUNvcHkoJGV2ZW50KVwiXG4gICAgPlxuICAgICAgQGlmIChjb3BpZWQoKSkge1xuICAgICAgICA8bHVjaWRlLWFuZ3VsYXIgW2ltZ109XCJDaGVja0ljb25cIiBbc2l6ZV09XCIxOFwiPjwvbHVjaWRlLWFuZ3VsYXI+XG4gICAgICB9IEBlbHNlIHtcbiAgICAgICAgPGx1Y2lkZS1hbmd1bGFyIFtpbWddPVwiQ29weUljb25cIiBbc2l6ZV09XCIxOFwiPjwvbHVjaWRlLWFuZ3VsYXI+XG4gICAgICB9XG4gICAgPC9idXR0b24+XG4gIGAsXG59KVxuZXhwb3J0IGNsYXNzIENvcGlsb3RDaGF0QXNzaXN0YW50TWVzc2FnZUNvcHlCdXR0b24ge1xuICByZWFkb25seSB0aXRsZSA9IGlucHV0PHN0cmluZyB8IHVuZGVmaW5lZD4oKTtcbiAgcmVhZG9ubHkgZGlzYWJsZWQgPSBpbnB1dDxib29sZWFuPihmYWxzZSk7XG4gIHJlYWRvbmx5IGlucHV0Q2xhc3MgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG4gIHJlYWRvbmx5IGNvbnRlbnQgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG4gIHJlYWRvbmx5IGNsaWNrZWQgPSBvdXRwdXQ8dm9pZD4oKTtcbiAgcmVhZG9ubHkgQ29weUljb24gPSBDb3B5O1xuICByZWFkb25seSBDaGVja0ljb24gPSBDaGVjaztcbiAgcmVhZG9ubHkgY29waWVkID0gc2lnbmFsKGZhbHNlKTtcbiAgcmVhZG9ubHkgbGFiZWxzID0gaW5qZWN0Q2hhdExhYmVscygpO1xuXG4gIGhhbmRsZUNvcHkoZXZlbnQ/OiBFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50Py5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICBpZiAoIXRoaXMuY29udGVudCgpKSByZXR1cm47XG5cbiAgICAvLyBTZXQgY29waWVkIGltbWVkaWF0ZWx5IGZvciBpbnN0YW50IGZlZWRiYWNrXG4gICAgdGhpcy5jb3BpZWQuc2V0KHRydWUpO1xuICAgIHNldFRpbWVvdXQoKCkgPT4gdGhpcy5jb3BpZWQuc2V0KGZhbHNlKSwgMjAwMCk7XG5cbiAgICAvLyBDb3B5IHRvIGNsaXBib2FyZCAoZmlyZSBhbmQgZm9yZ2V0KVxuICAgIG5hdmlnYXRvci5jbGlwYm9hcmQud3JpdGVUZXh0KHRoaXMuY29udGVudCgpISkudGhlbihcbiAgICAgICgpID0+IHRoaXMuY2xpY2tlZC5lbWl0KCksXG4gICAgICAoZXJyKSA9PiB7XG4gICAgICAgIGNvbnNvbGUuZXJyb3IoXCJGYWlsZWQgdG8gY29weSBtZXNzYWdlOlwiLCBlcnIpO1xuICAgICAgICB0aGlzLmNvcGllZC5zZXQoZmFsc2UpO1xuICAgICAgfVxuICAgICk7XG4gIH1cbn1cblxuLy8gVGh1bWJzIHVwIGJ1dHRvbiBjb21wb25lbnRcbkBDb21wb25lbnQoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBzZWxlY3RvcjogXCJjb3BpbG90LWNoYXQtYXNzaXN0YW50LW1lc3NhZ2UtdGh1bWJzLXVwLWJ1dHRvblwiLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEx1Y2lkZUFuZ3VsYXJNb2R1bGUsXG4gICAgQ29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvbixcbiAgXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGJ1dHRvblxuICAgICAgY29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvblxuICAgICAgW3RpdGxlXT1cInRpdGxlKCkgfHwgbGFiZWxzLmFzc2lzdGFudE1lc3NhZ2VUb29sYmFyVGh1bWJzVXBMYWJlbFwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKVwiXG4gICAgICBbaW5wdXRDbGFzc109XCJpbnB1dENsYXNzKClcIlxuICAgICAgKGNsaWNrKT1cImhhbmRsZUNsaWNrKCRldmVudClcIlxuICAgID5cbiAgICAgIDxsdWNpZGUtYW5ndWxhciBbaW1nXT1cIlRodW1ic1VwSWNvblwiIFtzaXplXT1cIjE4XCI+PC9sdWNpZGUtYW5ndWxhcj5cbiAgICA8L2J1dHRvbj5cbiAgYCxcbn0pXG5leHBvcnQgY2xhc3MgQ29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVGh1bWJzVXBCdXR0b24ge1xuICByZWFkb25seSB0aXRsZSA9IGlucHV0PHN0cmluZyB8IHVuZGVmaW5lZD4oKTtcbiAgcmVhZG9ubHkgZGlzYWJsZWQgPSBpbnB1dDxib29sZWFuPihmYWxzZSk7XG4gIHJlYWRvbmx5IGlucHV0Q2xhc3MgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG4gIHJlYWRvbmx5IGNsaWNrZWQgPSBvdXRwdXQ8dm9pZD4oKTtcbiAgcmVhZG9ubHkgVGh1bWJzVXBJY29uID0gVGh1bWJzVXA7XG4gIHJlYWRvbmx5IGxhYmVscyA9IGluamVjdENoYXRMYWJlbHMoKTtcblxuICBoYW5kbGVDbGljayhldmVudD86IEV2ZW50KTogdm9pZCB7XG4gICAgZXZlbnQ/LnN0b3BQcm9wYWdhdGlvbigpO1xuICAgIGlmICghdGhpcy5kaXNhYmxlZCgpKSB7XG4gICAgICB0aGlzLmNsaWNrZWQuZW1pdCgpO1xuICAgIH1cbiAgfVxufVxuXG4vLyBUaHVtYnMgZG93biBidXR0b24gY29tcG9uZW50XG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgc2VsZWN0b3I6IFwiY29waWxvdC1jaGF0LWFzc2lzdGFudC1tZXNzYWdlLXRodW1icy1kb3duLWJ1dHRvblwiLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEx1Y2lkZUFuZ3VsYXJNb2R1bGUsXG4gICAgQ29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvbixcbiAgXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGJ1dHRvblxuICAgICAgY29waWxvdENoYXRBc3Npc3RhbnRNZXNzYWdlVG9vbGJhckJ1dHRvblxuICAgICAgW3RpdGxlXT1cInRpdGxlKCkgfHwgbGFiZWxzLmFzc2lzdGFudE1lc3NhZ2VUb29sYmFyVGh1bWJzRG93bkxhYmVsXCJcbiAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZCgpXCJcbiAgICAgIFtpbnB1dENsYXNzXT1cImlucHV0Q2xhc3MoKVwiXG4gICAgICAoY2xpY2spPVwiaGFuZGxlQ2xpY2soJGV2ZW50KVwiXG4gICAgPlxuICAgICAgPGx1Y2lkZS1hbmd1bGFyIFtpbWddPVwiVGh1bWJzRG93bkljb25cIiBbc2l6ZV09XCIxOFwiPjwvbHVjaWRlLWFuZ3VsYXI+XG4gICAgPC9idXR0b24+XG4gIGAsXG59KVxuZXhwb3J0IGNsYXNzIENvcGlsb3RDaGF0QXNzaXN0YW50TWVzc2FnZVRodW1ic0Rvd25CdXR0b24ge1xuICByZWFkb25seSB0aXRsZSA9IGlucHV0PHN0cmluZyB8IHVuZGVmaW5lZD4oKTtcbiAgcmVhZG9ubHkgZGlzYWJsZWQgPSBpbnB1dDxib29sZWFuPihmYWxzZSk7XG4gIHJlYWRvbmx5IGlucHV0Q2xhc3MgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG4gIHJlYWRvbmx5IGNsaWNrZWQgPSBvdXRwdXQ8dm9pZD4oKTtcbiAgcmVhZG9ubHkgVGh1bWJzRG93bkljb24gPSBUaHVtYnNEb3duO1xuICByZWFkb25seSBsYWJlbHMgPSBpbmplY3RDaGF0TGFiZWxzKCk7XG5cbiAgaGFuZGxlQ2xpY2soZXZlbnQ/OiBFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50Py5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICBpZiAoIXRoaXMuZGlzYWJsZWQoKSkge1xuICAgICAgdGhpcy5jbGlja2VkLmVtaXQoKTtcbiAgICB9XG4gIH1cbn1cblxuLy8gUmVhZCBhbG91ZCBidXR0b24gY29tcG9uZW50XG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgc2VsZWN0b3I6IFwiY29waWxvdC1jaGF0LWFzc2lzdGFudC1tZXNzYWdlLXJlYWQtYWxvdWQtYnV0dG9uXCIsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgTHVjaWRlQW5ndWxhck1vZHVsZSxcbiAgICBDb3BpbG90Q2hhdEFzc2lzdGFudE1lc3NhZ2VUb29sYmFyQnV0dG9uLFxuICBdLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgdGVtcGxhdGU6IGBcbiAgICA8YnV0dG9uXG4gICAgICBjb3BpbG90Q2hhdEFzc2lzdGFudE1lc3NhZ2VUb29sYmFyQnV0dG9uXG4gICAgICBbdGl0bGVdPVwidGl0bGUoKSB8fCBsYWJlbHMuYXNzaXN0YW50TWVzc2FnZVRvb2xiYXJSZWFkQWxvdWRMYWJlbFwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKVwiXG4gICAgICBbaW5wdXRDbGFzc109XCJpbnB1dENsYXNzKClcIlxuICAgICAgKGNsaWNrKT1cImhhbmRsZUNsaWNrKCRldmVudClcIlxuICAgID5cbiAgICAgIDxsdWNpZGUtYW5ndWxhciBbaW1nXT1cIlZvbHVtZTJJY29uXCIgW3NpemVdPVwiMjBcIj48L2x1Y2lkZS1hbmd1bGFyPlxuICAgIDwvYnV0dG9uPlxuICBgLFxufSlcbmV4cG9ydCBjbGFzcyBDb3BpbG90Q2hhdEFzc2lzdGFudE1lc3NhZ2VSZWFkQWxvdWRCdXR0b24ge1xuICByZWFkb25seSB0aXRsZSA9IGlucHV0PHN0cmluZyB8IHVuZGVmaW5lZD4oKTtcbiAgcmVhZG9ubHkgZGlzYWJsZWQgPSBpbnB1dDxib29sZWFuPihmYWxzZSk7XG4gIHJlYWRvbmx5IGlucHV0Q2xhc3MgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG4gIHJlYWRvbmx5IGNsaWNrZWQgPSBvdXRwdXQ8dm9pZD4oKTtcbiAgcmVhZG9ubHkgVm9sdW1lMkljb24gPSBWb2x1bWUyO1xuICByZWFkb25seSBsYWJlbHMgPSBpbmplY3RDaGF0TGFiZWxzKCk7XG5cbiAgaGFuZGxlQ2xpY2soZXZlbnQ/OiBFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50Py5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICBpZiAoIXRoaXMuZGlzYWJsZWQoKSkge1xuICAgICAgdGhpcy5jbGlja2VkLmVtaXQoKTtcbiAgICB9XG4gIH1cbn1cblxuLy8gUmVnZW5lcmF0ZSBidXR0b24gY29tcG9uZW50XG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgc2VsZWN0b3I6IFwiY29waWxvdC1jaGF0LWFzc2lzdGFudC1tZXNzYWdlLXJlZ2VuZXJhdGUtYnV0dG9uXCIsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgTHVjaWRlQW5ndWxhck1vZHVsZSxcbiAgICBDb3BpbG90Q2hhdEFzc2lzdGFudE1lc3NhZ2VUb29sYmFyQnV0dG9uLFxuICBdLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgdGVtcGxhdGU6IGBcbiAgICA8YnV0dG9uXG4gICAgICBjb3BpbG90Q2hhdEFzc2lzdGFudE1lc3NhZ2VUb29sYmFyQnV0dG9uXG4gICAgICBbdGl0bGVdPVwidGl0bGUoKSB8fCBsYWJlbHMuYXNzaXN0YW50TWVzc2FnZVRvb2xiYXJSZWdlbmVyYXRlTGFiZWxcIlxuICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkKClcIlxuICAgICAgW2lucHV0Q2xhc3NdPVwiaW5wdXRDbGFzcygpXCJcbiAgICAgIChjbGljayk9XCJoYW5kbGVDbGljaygkZXZlbnQpXCJcbiAgICA+XG4gICAgICA8bHVjaWRlLWFuZ3VsYXIgW2ltZ109XCJSZWZyZXNoQ3dJY29uXCIgW3NpemVdPVwiMThcIj48L2x1Y2lkZS1hbmd1bGFyPlxuICAgIDwvYnV0dG9uPlxuICBgLFxufSlcbmV4cG9ydCBjbGFzcyBDb3BpbG90Q2hhdEFzc2lzdGFudE1lc3NhZ2VSZWdlbmVyYXRlQnV0dG9uIHtcbiAgcmVhZG9ubHkgdGl0bGUgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XG4gIHJlYWRvbmx5IGRpc2FibGVkID0gaW5wdXQ8Ym9vbGVhbj4oZmFsc2UpO1xuICByZWFkb25seSBpbnB1dENsYXNzID0gaW5wdXQ8c3RyaW5nIHwgdW5kZWZpbmVkPigpO1xuICByZWFkb25seSBjbGlja2VkID0gb3V0cHV0PHZvaWQ+KCk7XG4gIHJlYWRvbmx5IFJlZnJlc2hDd0ljb24gPSBSZWZyZXNoQ3c7XG4gIHJlYWRvbmx5IGxhYmVscyA9IGluamVjdENoYXRMYWJlbHMoKTtcblxuICBoYW5kbGVDbGljayhldmVudD86IEV2ZW50KTogdm9pZCB7XG4gICAgZXZlbnQ/LnN0b3BQcm9wYWdhdGlvbigpO1xuICAgIGlmICghdGhpcy5kaXNhYmxlZCgpKSB7XG4gICAgICB0aGlzLmNsaWNrZWQuZW1pdCgpO1xuICAgIH1cbiAgfVxufVxuIl19
|