@aitronos/freddy-plugins 0.4.30 → 0.4.32
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/CHANGELOG.md +30 -0
- package/dist/freddy-plugins.css +1 -1
- package/dist/index.d.ts +2235 -2235
- package/package.json +1 -1
- package/dist/IconEllipse-DLGy68E0.js +0 -5
- package/dist/IconEllipse-DLGy68E0.js.map +0 -1
- package/dist/IconFreddyHubTitle-C_G-c5eW.js +0 -5
- package/dist/IconFreddyHubTitle-C_G-c5eW.js.map +0 -1
- package/dist/web-component-wrapper-CrHDCQ8a.js +0 -68084
- package/dist/web-component-wrapper-CrHDCQ8a.js.map +0 -1
- package/dist/web-components.iife.js +0 -233
- package/dist/web-components.iife.js.map +0 -1
- package/dist/web-components.js +0 -41
- package/dist/web-components.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -17,130 +17,130 @@ import { Ref } from 'vue';
|
|
|
17
17
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
|
|
19
19
|
declare const __VLS_component_10: DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
20
|
-
|
|
20
|
+
tooltipWrapper: HTMLDivElement;
|
|
21
21
|
}, HTMLDivElement>;
|
|
22
22
|
|
|
23
23
|
declare const __VLS_component_2: DefineComponent<Props, {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
execute: (customData?: any) => Promise<void>;
|
|
25
|
+
retry: () => void;
|
|
26
|
+
loading: ComputedRef<boolean>;
|
|
27
|
+
error: ComputedRef<string | null>;
|
|
28
|
+
success: ComputedRef<boolean>;
|
|
29
|
+
data: ComputedRef<any>;
|
|
30
30
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
error: (error: string) => any;
|
|
32
|
+
loading: (loading: boolean) => any;
|
|
33
|
+
success: (data: any) => any;
|
|
34
|
+
complete: () => any;
|
|
35
35
|
}, string, PublicProps, Readonly<Props> & Readonly<{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
onError?: ((error: string) => any) | undefined;
|
|
37
|
+
onLoading?: ((loading: boolean) => any) | undefined;
|
|
38
|
+
onSuccess?: ((data: any) => any) | undefined;
|
|
39
|
+
onComplete?: (() => any) | undefined;
|
|
40
40
|
}>, {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
41
|
+
size: "sm" | "md" | "lg";
|
|
42
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
43
|
+
showRetry: boolean;
|
|
44
|
+
showSuccess: boolean;
|
|
45
|
+
autoExecute: boolean;
|
|
46
|
+
variant: "default" | "card" | "minimal";
|
|
47
47
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
48
48
|
|
|
49
49
|
declare const __VLS_component_3: DefineComponent<Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
50
|
+
error: (details: {
|
|
51
|
+
message: string;
|
|
52
|
+
stack?: string;
|
|
53
|
+
componentName: string;
|
|
54
|
+
errorInfo: string;
|
|
55
|
+
timestamp: string;
|
|
56
|
+
}) => any;
|
|
57
|
+
retry: () => any;
|
|
58
58
|
}, string, PublicProps, Readonly<Props_13> & Readonly<{
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
59
|
+
onError?: ((details: {
|
|
60
|
+
message: string;
|
|
61
|
+
stack?: string;
|
|
62
|
+
componentName: string;
|
|
63
|
+
errorInfo: string;
|
|
64
|
+
timestamp: string;
|
|
65
|
+
}) => any) | undefined;
|
|
66
|
+
onRetry?: (() => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
|
-
|
|
68
|
+
fallbackMessage: string;
|
|
69
69
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
70
70
|
|
|
71
71
|
declare const __VLS_component_4: DefineComponent<Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
select: (value: Option_2) => any;
|
|
73
|
+
toggle: (value: Option_2) => any;
|
|
74
74
|
}, string, PublicProps, Readonly<Props_16> & Readonly<{
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
onSelect?: ((value: Option_2) => any) | undefined;
|
|
76
|
+
onToggle?: ((value: Option_2) => any) | undefined;
|
|
77
77
|
}>, {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
78
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
79
|
+
label: string;
|
|
80
|
+
iconOnly: boolean;
|
|
81
|
+
variant: "primary" | "secondary" | "blanc";
|
|
82
|
+
searchPlaceholder: string;
|
|
83
|
+
options: Option_2[];
|
|
84
|
+
searchable: boolean;
|
|
85
|
+
openUp: boolean;
|
|
86
|
+
chevronRight: boolean;
|
|
87
|
+
showIcon: boolean;
|
|
88
|
+
customIcon: any;
|
|
89
|
+
optionIconRight: boolean;
|
|
90
|
+
showShortcut: boolean;
|
|
91
|
+
background: string;
|
|
92
|
+
borderRadius: string;
|
|
93
|
+
activeBackground: string;
|
|
94
|
+
openBackground: string;
|
|
95
|
+
stayOpen: boolean;
|
|
96
96
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
97
97
|
|
|
98
98
|
declare const __VLS_component_5: DefineComponent<Props_18, {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
99
|
+
inputId: ComputedRef<string>;
|
|
100
|
+
containerClasses: ComputedRef< {
|
|
101
|
+
[x: string]: boolean;
|
|
102
|
+
'input-field-container--destructive': boolean;
|
|
103
|
+
'input-field-container--focused': boolean;
|
|
104
|
+
'input-field-container--disabled': boolean;
|
|
105
|
+
'input-field-container--loading': boolean;
|
|
106
|
+
'input-field-container--success': boolean;
|
|
107
|
+
}>;
|
|
108
|
+
focusInput: () => void;
|
|
109
109
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
blur: (event: FocusEvent) => any;
|
|
111
|
+
focus: (event: FocusEvent) => any;
|
|
112
112
|
}, string, PublicProps, Readonly<Props_18> & Readonly<{
|
|
113
|
-
|
|
114
|
-
|
|
113
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
114
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
115
115
|
}>, {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
116
|
+
size: InputFieldSize;
|
|
117
|
+
label: string;
|
|
118
|
+
disabled: boolean;
|
|
119
|
+
state: InputFieldState;
|
|
120
|
+
required: boolean;
|
|
121
|
+
hintText: string;
|
|
122
|
+
destructive: boolean;
|
|
123
|
+
colorStyle: InputFieldColorStyle;
|
|
124
124
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
125
125
|
|
|
126
126
|
declare const __VLS_component_6: DefineComponent<Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_26> & Readonly<{}>, {
|
|
127
|
-
|
|
127
|
+
brand: "contentplate" | "flowplate" | "freddy";
|
|
128
128
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
129
129
|
|
|
130
130
|
declare const __VLS_component_7: DefineComponent<Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_27> & Readonly<{}>, {
|
|
131
|
-
|
|
131
|
+
brand: "contentplate" | "flowplate" | "freddy";
|
|
132
132
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
133
133
|
|
|
134
134
|
declare const __VLS_component_8: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
135
|
-
|
|
135
|
+
close: (...args: any[]) => void;
|
|
136
136
|
}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
|
|
137
|
-
|
|
137
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
138
138
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
139
139
|
|
|
140
140
|
declare const __VLS_component_9: DefineComponent<SwitchSlotProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
141
|
-
|
|
141
|
+
"update:modelValue": (value: boolean) => any;
|
|
142
142
|
}, string, PublicProps, Readonly<SwitchSlotProps> & Readonly<{
|
|
143
|
-
|
|
143
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
144
144
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
145
145
|
|
|
146
146
|
declare type __VLS_Props = {
|
|
@@ -490,15 +490,15 @@ export declare interface ApiResponseChoice {
|
|
|
490
490
|
}
|
|
491
491
|
|
|
492
492
|
export declare const AssistantField: DefineComponent<AssistantFieldProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
493
|
-
|
|
493
|
+
assistantFieldClick: (event: MouseEvent) => any;
|
|
494
494
|
}, string, PublicProps, Readonly<AssistantFieldProps> & Readonly<{
|
|
495
|
-
|
|
495
|
+
onAssistantFieldClick?: ((event: MouseEvent) => any) | undefined;
|
|
496
496
|
}>, {
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
497
|
+
name: string;
|
|
498
|
+
date: string;
|
|
499
|
+
assistantId: string;
|
|
500
|
+
isDefault: boolean;
|
|
501
|
+
isSelected: boolean;
|
|
502
502
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
503
503
|
|
|
504
504
|
/**
|
|
@@ -573,12 +573,12 @@ export declare interface AssistantItem {
|
|
|
573
573
|
}
|
|
574
574
|
|
|
575
575
|
export declare const AssistantList: DefineComponent<AssistantListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
576
|
-
|
|
576
|
+
assistantClick: (assistant: AssistantItem, event: MouseEvent) => any;
|
|
577
577
|
}, string, PublicProps, Readonly<AssistantListProps> & Readonly<{
|
|
578
|
-
|
|
578
|
+
onAssistantClick?: ((assistant: AssistantItem, event: MouseEvent) => any) | undefined;
|
|
579
579
|
}>, {
|
|
580
|
-
|
|
581
|
-
|
|
580
|
+
assistants: AssistantItem[];
|
|
581
|
+
selectedAssistantId: string | null;
|
|
582
582
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
583
583
|
|
|
584
584
|
/**
|
|
@@ -610,15 +610,15 @@ export declare interface AssistantListProps {
|
|
|
610
610
|
}
|
|
611
611
|
|
|
612
612
|
export declare const AssistantsHeader: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
613
|
-
|
|
614
|
-
|
|
613
|
+
edit: (event: MouseEvent) => any;
|
|
614
|
+
playground: (event: MouseEvent) => any;
|
|
615
615
|
}, string, PublicProps, Readonly<Props_2> & Readonly<{
|
|
616
|
-
|
|
617
|
-
|
|
616
|
+
onEdit?: ((event: MouseEvent) => any) | undefined;
|
|
617
|
+
onPlayground?: ((event: MouseEvent) => any) | undefined;
|
|
618
618
|
}>, {
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
619
|
+
assistantId: string;
|
|
620
|
+
assistantImage: string;
|
|
621
|
+
assistantIcon: string;
|
|
622
622
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
623
623
|
|
|
624
624
|
export declare const AuthCard: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
@@ -626,14 +626,14 @@ export declare const AuthCard: __VLS_WithTemplateSlots_6<typeof __VLS_component_
|
|
|
626
626
|
export declare const AuthContainer: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
627
627
|
|
|
628
628
|
export declare const AuthManager: DefineComponent<Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
629
|
-
|
|
630
|
-
|
|
629
|
+
"login-success": (email: string) => any;
|
|
630
|
+
"register-success": (email: string) => any;
|
|
631
631
|
}, string, PublicProps, Readonly<Props_23> & Readonly<{
|
|
632
|
-
|
|
633
|
-
|
|
632
|
+
"onLogin-success"?: ((email: string) => any) | undefined;
|
|
633
|
+
"onRegister-success"?: ((email: string) => any) | undefined;
|
|
634
634
|
}>, {
|
|
635
|
-
|
|
636
|
-
|
|
635
|
+
initialEmail: string;
|
|
636
|
+
initialView: "login" | "register";
|
|
637
637
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
638
638
|
|
|
639
639
|
declare interface Avatar {
|
|
@@ -643,55 +643,55 @@ declare interface Avatar {
|
|
|
643
643
|
}
|
|
644
644
|
|
|
645
645
|
export declare const AvatarChoosing: DefineComponent<Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
646
|
-
|
|
646
|
+
click: (event: MouseEvent) => any;
|
|
647
647
|
}, string, PublicProps, Readonly<Props_3> & Readonly<{
|
|
648
|
-
|
|
648
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
649
649
|
}>, {
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
650
|
+
backgroundColor: string;
|
|
651
|
+
isSelected: boolean;
|
|
652
|
+
altText: string;
|
|
653
653
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
654
654
|
|
|
655
655
|
export declare const AvatarList: DefineComponent<Props_4, {
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
656
|
+
selectedAvatarId: Ref<string | number | null, string | number | null>;
|
|
657
|
+
selectedAvatar: ComputedRef<Avatar | null>;
|
|
658
|
+
selectAvatar: (id: string | number) => void;
|
|
659
|
+
clearSelection: () => void;
|
|
660
660
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
661
|
-
|
|
662
|
-
|
|
661
|
+
selectionChange: (selectedId: string | number | null) => any;
|
|
662
|
+
avatarClick: (avatarId: string | number, isSelected: boolean) => any;
|
|
663
663
|
}, string, PublicProps, Readonly<Props_4> & Readonly<{
|
|
664
|
-
|
|
665
|
-
|
|
664
|
+
onSelectionChange?: ((selectedId: string | number | null) => any) | undefined;
|
|
665
|
+
onAvatarClick?: ((avatarId: string | number, isSelected: boolean) => any) | undefined;
|
|
666
666
|
}>, {
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
667
|
+
title: string;
|
|
668
|
+
showSelectedInfo: boolean;
|
|
669
|
+
allowDeselect: boolean;
|
|
670
|
+
multiple: boolean;
|
|
671
671
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
672
672
|
|
|
673
673
|
export declare const BaseButton: DefineComponent<BaseButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
674
|
+
click: (event: MouseEvent) => any;
|
|
675
|
+
leftIconClick: (event: MouseEvent) => any;
|
|
676
|
+
rightIconClick: (event: MouseEvent) => any;
|
|
677
677
|
}, string, PublicProps, Readonly<BaseButtonProps> & Readonly<{
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
678
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
679
|
+
onLeftIconClick?: ((event: MouseEvent) => any) | undefined;
|
|
680
|
+
onRightIconClick?: ((event: MouseEvent) => any) | undefined;
|
|
681
681
|
}>, {
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
682
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
683
|
+
label: string;
|
|
684
|
+
disabled: boolean;
|
|
685
|
+
loading: boolean;
|
|
686
|
+
hierarchy: "primary" | "secondary" | "tertiary" | "link";
|
|
687
|
+
state: "default" | "hover" | "focused" | "disabled" | "loading";
|
|
688
|
+
errorState: boolean;
|
|
689
|
+
iconOnly: boolean;
|
|
690
|
+
leftIcon: string;
|
|
691
|
+
rightIcon: string;
|
|
692
|
+
loadingText: string;
|
|
693
|
+
tooltip: string;
|
|
694
|
+
tooltipPlacement: "top" | "bottom" | "left" | "right";
|
|
695
695
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
696
696
|
|
|
697
697
|
export declare interface BaseButtonEmits {
|
|
@@ -822,14 +822,14 @@ export declare interface BaseInputProps {
|
|
|
822
822
|
}
|
|
823
823
|
|
|
824
824
|
export declare const BaseTabButton: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
825
|
-
|
|
825
|
+
tabSwitch: (...args: any[]) => void;
|
|
826
826
|
}, string, PublicProps, Readonly<ITabList> & Readonly<{
|
|
827
|
-
|
|
827
|
+
onTabSwitch?: ((...args: any[]) => any) | undefined;
|
|
828
828
|
}>, {
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
829
|
+
currentTab: number;
|
|
830
|
+
activeStateType: "bottom-dash" | "left-dash" | "background-border";
|
|
831
|
+
orientation: "horizontal" | "vertical";
|
|
832
|
+
fullWidth: boolean;
|
|
833
833
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
834
834
|
|
|
835
835
|
/**
|
|
@@ -875,77 +875,77 @@ export declare interface ButtonStateSpecs {
|
|
|
875
875
|
export declare const calculatePercentage: (partialValue: number, totalValue: number) => string;
|
|
876
876
|
|
|
877
877
|
export declare const CardInput: DefineComponent<Props_19, {
|
|
878
|
-
|
|
879
|
-
|
|
878
|
+
focus: () => void;
|
|
879
|
+
inputRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
880
880
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
881
|
+
blur: (event: FocusEvent) => any;
|
|
882
|
+
focus: (event: FocusEvent) => any;
|
|
883
|
+
input: (value: string) => any;
|
|
884
|
+
keydown: (event: KeyboardEvent) => any;
|
|
885
|
+
"update:modelValue": (value: string) => any;
|
|
886
|
+
"update:cardNumber": (number: string) => any;
|
|
887
|
+
"card-type-detected": (type: CardType) => any;
|
|
888
|
+
"trailing-icon-click": (event: MouseEvent) => any;
|
|
889
|
+
"leading-icon-click": (event: MouseEvent) => any;
|
|
890
|
+
"trailing-button-click": (event: MouseEvent) => any;
|
|
891
|
+
"update:countryCode": (code: string) => any;
|
|
892
|
+
"update:phoneNumber": (number: string) => any;
|
|
893
|
+
"country-change": (country: CountryOption) => any;
|
|
894
|
+
"update:currency": (currency: string) => any;
|
|
895
|
+
"update:amount": (amount: string | number) => any;
|
|
896
|
+
"currency-change": (currency: CurrencyOption) => any;
|
|
897
|
+
"update:protocol": (protocol: string) => any;
|
|
898
|
+
"update:url": (url: string) => any;
|
|
899
|
+
"protocol-change": (protocol: string) => any;
|
|
900
|
+
"update:tags": (tags: string[]) => any;
|
|
901
|
+
"tag-added": (tag: string) => any;
|
|
902
|
+
"tag-removed": (tag: string, index: number) => any;
|
|
903
|
+
"max-tags-reached": () => any;
|
|
904
|
+
"copy-success": (text: string) => any;
|
|
905
|
+
"copy-error": (error: Error) => any;
|
|
906
906
|
}, string, PublicProps, Readonly<Props_19> & Readonly<{
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
907
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
908
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
909
|
+
onInput?: ((value: string) => any) | undefined;
|
|
910
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
911
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
912
|
+
"onUpdate:cardNumber"?: ((number: string) => any) | undefined;
|
|
913
|
+
"onCard-type-detected"?: ((type: CardType) => any) | undefined;
|
|
914
|
+
"onTrailing-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
915
|
+
"onLeading-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
916
|
+
"onTrailing-button-click"?: ((event: MouseEvent) => any) | undefined;
|
|
917
|
+
"onUpdate:countryCode"?: ((code: string) => any) | undefined;
|
|
918
|
+
"onUpdate:phoneNumber"?: ((number: string) => any) | undefined;
|
|
919
|
+
"onCountry-change"?: ((country: CountryOption) => any) | undefined;
|
|
920
|
+
"onUpdate:currency"?: ((currency: string) => any) | undefined;
|
|
921
|
+
"onUpdate:amount"?: ((amount: string | number) => any) | undefined;
|
|
922
|
+
"onCurrency-change"?: ((currency: CurrencyOption) => any) | undefined;
|
|
923
|
+
"onUpdate:protocol"?: ((protocol: string) => any) | undefined;
|
|
924
|
+
"onUpdate:url"?: ((url: string) => any) | undefined;
|
|
925
|
+
"onProtocol-change"?: ((protocol: string) => any) | undefined;
|
|
926
|
+
"onUpdate:tags"?: ((tags: string[]) => any) | undefined;
|
|
927
|
+
"onTag-added"?: ((tag: string) => any) | undefined;
|
|
928
|
+
"onTag-removed"?: ((tag: string, index: number) => any) | undefined;
|
|
929
|
+
"onMax-tags-reached"?: (() => any) | undefined;
|
|
930
|
+
"onCopy-success"?: ((text: string) => any) | undefined;
|
|
931
|
+
"onCopy-error"?: ((error: Error) => any) | undefined;
|
|
932
932
|
}>, {
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
933
|
+
size: InputFieldSize;
|
|
934
|
+
label: string;
|
|
935
|
+
placeholder: string;
|
|
936
|
+
disabled: boolean;
|
|
937
|
+
state: InputFieldState;
|
|
938
|
+
cardNumber: string;
|
|
939
|
+
cardType: CardType;
|
|
940
|
+
maskInput: boolean;
|
|
941
|
+
showCardIcon: boolean;
|
|
942
|
+
readonly: boolean;
|
|
943
|
+
required: boolean;
|
|
944
|
+
hintText: string;
|
|
945
|
+
destructive: boolean;
|
|
946
|
+
colorStyle: InputFieldColorStyle;
|
|
947
947
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
948
|
-
|
|
948
|
+
inputRef: HTMLInputElement;
|
|
949
949
|
}, HTMLDivElement>;
|
|
950
950
|
|
|
951
951
|
export declare interface CardInputEvents extends InputFieldEvents {
|
|
@@ -984,528 +984,528 @@ export declare interface CardInputProps extends BaseInputProps {
|
|
|
984
984
|
export declare type CardType = 'visa' | 'mastercard' | 'amex' | 'discover' | 'unknown';
|
|
985
985
|
|
|
986
986
|
export declare const ChatInput: DefineComponent<ExtractPropTypes< {
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
987
|
+
placeholder: {
|
|
988
|
+
type: StringConstructor;
|
|
989
|
+
default: () => string;
|
|
990
|
+
};
|
|
991
|
+
disabled: {
|
|
992
|
+
type: BooleanConstructor;
|
|
993
|
+
default: () => boolean;
|
|
994
|
+
};
|
|
995
|
+
minLength: {
|
|
996
|
+
type: NumberConstructor;
|
|
997
|
+
default: () => number;
|
|
998
|
+
};
|
|
999
|
+
size: {
|
|
1000
|
+
type: () => "s" | "sm" | "md" | "lg" | "xl";
|
|
1001
|
+
default: () => string;
|
|
1002
|
+
};
|
|
1003
|
+
assistants: {
|
|
1004
|
+
type: () => Array<{
|
|
1005
|
+
name: string;
|
|
1006
|
+
id: string;
|
|
1007
|
+
description?: string;
|
|
1008
|
+
default?: boolean;
|
|
1009
|
+
}>;
|
|
1010
|
+
default: () => never[];
|
|
1011
|
+
};
|
|
1012
|
+
models: {
|
|
1013
|
+
type: () => Array<{
|
|
1014
|
+
name: string;
|
|
1015
|
+
id: string;
|
|
1016
|
+
description?: string;
|
|
1017
|
+
default?: boolean;
|
|
1018
|
+
}>;
|
|
1019
|
+
default: () => never[];
|
|
1020
|
+
};
|
|
1021
|
+
contextData: {
|
|
1022
|
+
type: () => Reference[];
|
|
1023
|
+
default: () => {
|
|
1024
|
+
id: string;
|
|
1025
|
+
type: string;
|
|
1026
|
+
name: string;
|
|
1027
|
+
path: string;
|
|
1028
|
+
}[];
|
|
1029
|
+
};
|
|
1030
1030
|
}>, {
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1031
|
+
focus: () => void;
|
|
1032
|
+
showErrorBanner: (message: string) => void;
|
|
1033
|
+
hideError: () => void;
|
|
1034
1034
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1035
|
+
"update:modelValue": (value: string) => any;
|
|
1036
|
+
send: (message: string) => any;
|
|
1037
|
+
sendWithContext: (message: string, context: Reference[]) => any;
|
|
1038
1038
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1039
|
+
placeholder: {
|
|
1040
|
+
type: StringConstructor;
|
|
1041
|
+
default: () => string;
|
|
1042
|
+
};
|
|
1043
|
+
disabled: {
|
|
1044
|
+
type: BooleanConstructor;
|
|
1045
|
+
default: () => boolean;
|
|
1046
|
+
};
|
|
1047
|
+
minLength: {
|
|
1048
|
+
type: NumberConstructor;
|
|
1049
|
+
default: () => number;
|
|
1050
|
+
};
|
|
1051
|
+
size: {
|
|
1052
|
+
type: () => "s" | "sm" | "md" | "lg" | "xl";
|
|
1053
|
+
default: () => string;
|
|
1054
|
+
};
|
|
1055
|
+
assistants: {
|
|
1056
|
+
type: () => Array<{
|
|
1057
|
+
name: string;
|
|
1058
|
+
id: string;
|
|
1059
|
+
description?: string;
|
|
1060
|
+
default?: boolean;
|
|
1061
|
+
}>;
|
|
1062
|
+
default: () => never[];
|
|
1063
|
+
};
|
|
1064
|
+
models: {
|
|
1065
|
+
type: () => Array<{
|
|
1066
|
+
name: string;
|
|
1067
|
+
id: string;
|
|
1068
|
+
description?: string;
|
|
1069
|
+
default?: boolean;
|
|
1070
|
+
}>;
|
|
1071
|
+
default: () => never[];
|
|
1072
|
+
};
|
|
1073
|
+
contextData: {
|
|
1074
|
+
type: () => Reference[];
|
|
1075
|
+
default: () => {
|
|
1076
|
+
id: string;
|
|
1077
|
+
type: string;
|
|
1078
|
+
name: string;
|
|
1079
|
+
path: string;
|
|
1080
|
+
}[];
|
|
1081
|
+
};
|
|
1082
1082
|
}>> & Readonly<{
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1083
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1084
|
+
onSend?: ((message: string) => any) | undefined;
|
|
1085
|
+
onSendWithContext?: ((message: string, context: Reference[]) => any) | undefined;
|
|
1086
1086
|
}>, {
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1087
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
1088
|
+
placeholder: string;
|
|
1089
|
+
disabled: boolean;
|
|
1090
|
+
assistants: {
|
|
1091
|
+
name: string;
|
|
1092
|
+
id: string;
|
|
1093
|
+
description?: string;
|
|
1094
|
+
default?: boolean;
|
|
1095
|
+
}[];
|
|
1096
|
+
contextData: Reference[];
|
|
1097
|
+
minLength: number;
|
|
1098
|
+
models: {
|
|
1099
|
+
name: string;
|
|
1100
|
+
id: string;
|
|
1101
|
+
description?: string;
|
|
1102
|
+
default?: boolean;
|
|
1103
|
+
}[];
|
|
1104
1104
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1105
|
+
contextManagerRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1106
|
+
contextData?: Reference[];
|
|
1107
|
+
readonly?: boolean;
|
|
1108
|
+
size?: "s" | "sm" | "md" | "lg" | "xl";
|
|
1109
|
+
}> & Readonly<{}>, {
|
|
1110
|
+
selectedReferences: Ref< {
|
|
1111
|
+
id: string;
|
|
1112
|
+
title?: string | undefined;
|
|
1113
|
+
name?: string | undefined;
|
|
1114
|
+
description?: string | undefined;
|
|
1115
|
+
url?: string | undefined;
|
|
1116
|
+
type?: string | undefined;
|
|
1117
|
+
path?: string | undefined;
|
|
1118
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1119
|
+
}[], Reference[] | {
|
|
1120
|
+
id: string;
|
|
1121
|
+
title?: string | undefined;
|
|
1122
|
+
name?: string | undefined;
|
|
1123
|
+
description?: string | undefined;
|
|
1124
|
+
url?: string | undefined;
|
|
1125
|
+
type?: string | undefined;
|
|
1126
|
+
path?: string | undefined;
|
|
1127
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1128
|
+
}[]>;
|
|
1129
|
+
filteredAvailableReferences: ComputedRef< {
|
|
1130
|
+
id: string;
|
|
1131
|
+
title?: string | undefined;
|
|
1132
|
+
name?: string | undefined;
|
|
1133
|
+
description?: string | undefined;
|
|
1134
|
+
url?: string | undefined;
|
|
1135
|
+
type?: string | undefined;
|
|
1136
|
+
path?: string | undefined;
|
|
1137
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1138
|
+
}[]>;
|
|
1139
|
+
handleSelect: (ref: Reference) => void;
|
|
1140
|
+
handleRemove: (ref: Reference) => void;
|
|
1141
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
1142
|
+
P: {};
|
|
1143
|
+
B: {};
|
|
1144
|
+
D: {};
|
|
1145
|
+
C: {};
|
|
1146
|
+
M: {};
|
|
1147
|
+
Defaults: {};
|
|
1148
|
+
}, Readonly<{
|
|
1149
|
+
contextData?: Reference[];
|
|
1150
|
+
readonly?: boolean;
|
|
1151
|
+
size?: "s" | "sm" | "md" | "lg" | "xl";
|
|
1152
|
+
}> & Readonly<{}>, {
|
|
1153
|
+
selectedReferences: Ref< {
|
|
1154
|
+
id: string;
|
|
1155
|
+
title?: string | undefined;
|
|
1156
|
+
name?: string | undefined;
|
|
1157
|
+
description?: string | undefined;
|
|
1158
|
+
url?: string | undefined;
|
|
1159
|
+
type?: string | undefined;
|
|
1160
|
+
path?: string | undefined;
|
|
1161
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1162
|
+
}[], Reference[] | {
|
|
1163
|
+
id: string;
|
|
1164
|
+
title?: string | undefined;
|
|
1165
|
+
name?: string | undefined;
|
|
1166
|
+
description?: string | undefined;
|
|
1167
|
+
url?: string | undefined;
|
|
1168
|
+
type?: string | undefined;
|
|
1169
|
+
path?: string | undefined;
|
|
1170
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1171
|
+
}[]>;
|
|
1172
|
+
filteredAvailableReferences: ComputedRef< {
|
|
1173
|
+
id: string;
|
|
1174
|
+
title?: string | undefined;
|
|
1175
|
+
name?: string | undefined;
|
|
1176
|
+
description?: string | undefined;
|
|
1177
|
+
url?: string | undefined;
|
|
1178
|
+
type?: string | undefined;
|
|
1179
|
+
path?: string | undefined;
|
|
1180
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1181
|
+
}[]>;
|
|
1182
|
+
handleSelect: (ref: Reference) => void;
|
|
1183
|
+
handleRemove: (ref: Reference) => void;
|
|
1184
|
+
}, {}, {}, {}, {}> | null;
|
|
1185
|
+
chatInput: HTMLTextAreaElement;
|
|
1186
1186
|
}, HTMLDivElement>;
|
|
1187
1187
|
|
|
1188
1188
|
export declare const ChatInterface: DefineComponent<IChatInterfaceProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1189
|
-
|
|
1190
|
-
|
|
1189
|
+
send: (message: string) => any;
|
|
1190
|
+
sendWithContext: (message: string, context: string[]) => any;
|
|
1191
1191
|
}, string, PublicProps, Readonly<IChatInterfaceProps_2> & Readonly<{
|
|
1192
|
-
|
|
1193
|
-
|
|
1192
|
+
onSend?: ((message: string) => any) | undefined;
|
|
1193
|
+
onSendWithContext?: ((message: string, context: string[]) => any) | undefined;
|
|
1194
1194
|
}>, {
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1195
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
1196
|
+
placeholder: string;
|
|
1197
|
+
messages: IMessage_2[];
|
|
1198
|
+
fileSearch: boolean;
|
|
1199
|
+
webSearch: boolean;
|
|
1200
|
+
apiKey: string;
|
|
1201
|
+
apiBaseUrl: string;
|
|
1202
|
+
organizationId: string;
|
|
1203
|
+
debugMode: boolean;
|
|
1204
|
+
welcomeTitle: string;
|
|
1205
|
+
welcomeText: string;
|
|
1206
|
+
welcomeIcon: string;
|
|
1207
1207
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1208
|
+
messagesContainer: HTMLDivElement;
|
|
1209
|
+
chatInputRef: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
1210
|
+
placeholder: {
|
|
1211
|
+
type: StringConstructor;
|
|
1212
|
+
default: () => string;
|
|
1213
|
+
};
|
|
1214
|
+
disabled: {
|
|
1215
|
+
type: BooleanConstructor;
|
|
1216
|
+
default: () => boolean;
|
|
1217
|
+
};
|
|
1218
|
+
minLength: {
|
|
1219
|
+
type: NumberConstructor;
|
|
1220
|
+
default: () => number;
|
|
1221
|
+
};
|
|
1222
|
+
size: {
|
|
1223
|
+
type: () => "s" | "sm" | "md" | "lg" | "xl";
|
|
1224
|
+
default: () => string;
|
|
1225
|
+
};
|
|
1226
|
+
assistants: {
|
|
1227
|
+
type: () => Array<{
|
|
1228
|
+
name: string;
|
|
1229
|
+
id: string;
|
|
1230
|
+
description?: string;
|
|
1231
|
+
default?: boolean;
|
|
1232
|
+
}>;
|
|
1233
|
+
default: () => never[];
|
|
1234
|
+
};
|
|
1235
|
+
models: {
|
|
1236
|
+
type: () => Array<{
|
|
1237
|
+
name: string;
|
|
1238
|
+
id: string;
|
|
1239
|
+
description?: string;
|
|
1240
|
+
default?: boolean;
|
|
1241
|
+
}>;
|
|
1242
|
+
default: () => never[];
|
|
1243
|
+
};
|
|
1244
|
+
contextData: {
|
|
1245
|
+
type: () => Reference[];
|
|
1246
|
+
default: () => {
|
|
1247
|
+
id: string;
|
|
1248
|
+
type: string;
|
|
1249
|
+
name: string;
|
|
1250
|
+
path: string;
|
|
1251
|
+
}[];
|
|
1252
|
+
};
|
|
1253
|
+
}>> & Readonly<{
|
|
1254
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1255
|
+
onSend?: ((message: string) => any) | undefined;
|
|
1256
|
+
onSendWithContext?: ((message: string, context: Reference[]) => any) | undefined;
|
|
1257
|
+
}>, {
|
|
1258
|
+
focus: () => void;
|
|
1259
|
+
showErrorBanner: (message: string) => void;
|
|
1260
|
+
hideError: () => void;
|
|
1261
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1262
|
+
"update:modelValue": (value: string) => any;
|
|
1263
|
+
send: (message: string) => any;
|
|
1264
|
+
sendWithContext: (message: string, context: Reference[]) => any;
|
|
1265
|
+
}, PublicProps, {
|
|
1266
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
1267
|
+
placeholder: string;
|
|
1268
|
+
disabled: boolean;
|
|
1269
|
+
assistants: {
|
|
1270
|
+
name: string;
|
|
1271
|
+
id: string;
|
|
1272
|
+
description?: string;
|
|
1273
|
+
default?: boolean;
|
|
1274
|
+
}[];
|
|
1275
|
+
contextData: Reference[];
|
|
1276
|
+
minLength: number;
|
|
1277
|
+
models: {
|
|
1278
|
+
name: string;
|
|
1279
|
+
id: string;
|
|
1280
|
+
description?: string;
|
|
1281
|
+
default?: boolean;
|
|
1282
|
+
}[];
|
|
1283
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1284
|
+
contextManagerRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1285
|
+
contextData?: Reference[];
|
|
1286
|
+
readonly?: boolean;
|
|
1287
|
+
size?: "s" | "sm" | "md" | "lg" | "xl";
|
|
1288
|
+
}> & Readonly<{}>, {
|
|
1289
|
+
selectedReferences: Ref< {
|
|
1290
|
+
id: string;
|
|
1291
|
+
title?: string | undefined;
|
|
1292
|
+
name?: string | undefined;
|
|
1293
|
+
description?: string | undefined;
|
|
1294
|
+
url?: string | undefined;
|
|
1295
|
+
type?: string | undefined;
|
|
1296
|
+
path?: string | undefined;
|
|
1297
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1298
|
+
}[], Reference[] | {
|
|
1299
|
+
id: string;
|
|
1300
|
+
title?: string | undefined;
|
|
1301
|
+
name?: string | undefined;
|
|
1302
|
+
description?: string | undefined;
|
|
1303
|
+
url?: string | undefined;
|
|
1304
|
+
type?: string | undefined;
|
|
1305
|
+
path?: string | undefined;
|
|
1306
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1307
|
+
}[]>;
|
|
1308
|
+
filteredAvailableReferences: ComputedRef< {
|
|
1309
|
+
id: string;
|
|
1310
|
+
title?: string | undefined;
|
|
1311
|
+
name?: string | undefined;
|
|
1312
|
+
description?: string | undefined;
|
|
1313
|
+
url?: string | undefined;
|
|
1314
|
+
type?: string | undefined;
|
|
1315
|
+
path?: string | undefined;
|
|
1316
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1317
|
+
}[]>;
|
|
1318
|
+
handleSelect: (ref: Reference) => void;
|
|
1319
|
+
handleRemove: (ref: Reference) => void;
|
|
1320
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
1321
|
+
P: {};
|
|
1322
|
+
B: {};
|
|
1323
|
+
D: {};
|
|
1324
|
+
C: {};
|
|
1325
|
+
M: {};
|
|
1326
|
+
Defaults: {};
|
|
1327
|
+
}, Readonly<{
|
|
1328
|
+
contextData?: Reference[];
|
|
1329
|
+
readonly?: boolean;
|
|
1330
|
+
size?: "s" | "sm" | "md" | "lg" | "xl";
|
|
1331
|
+
}> & Readonly<{}>, {
|
|
1332
|
+
selectedReferences: Ref< {
|
|
1333
|
+
id: string;
|
|
1334
|
+
title?: string | undefined;
|
|
1335
|
+
name?: string | undefined;
|
|
1336
|
+
description?: string | undefined;
|
|
1337
|
+
url?: string | undefined;
|
|
1338
|
+
type?: string | undefined;
|
|
1339
|
+
path?: string | undefined;
|
|
1340
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1341
|
+
}[], Reference[] | {
|
|
1342
|
+
id: string;
|
|
1343
|
+
title?: string | undefined;
|
|
1344
|
+
name?: string | undefined;
|
|
1345
|
+
description?: string | undefined;
|
|
1346
|
+
url?: string | undefined;
|
|
1347
|
+
type?: string | undefined;
|
|
1348
|
+
path?: string | undefined;
|
|
1349
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1350
|
+
}[]>;
|
|
1351
|
+
filteredAvailableReferences: ComputedRef< {
|
|
1352
|
+
id: string;
|
|
1353
|
+
title?: string | undefined;
|
|
1354
|
+
name?: string | undefined;
|
|
1355
|
+
description?: string | undefined;
|
|
1356
|
+
url?: string | undefined;
|
|
1357
|
+
type?: string | undefined;
|
|
1358
|
+
path?: string | undefined;
|
|
1359
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1360
|
+
}[]>;
|
|
1361
|
+
handleSelect: (ref: Reference) => void;
|
|
1362
|
+
handleRemove: (ref: Reference) => void;
|
|
1363
|
+
}, {}, {}, {}, {}> | null;
|
|
1364
|
+
chatInput: HTMLTextAreaElement;
|
|
1365
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
1366
|
+
P: {};
|
|
1367
|
+
B: {};
|
|
1368
|
+
D: {};
|
|
1369
|
+
C: {};
|
|
1370
|
+
M: {};
|
|
1371
|
+
Defaults: {};
|
|
1372
|
+
}, Readonly<ExtractPropTypes< {
|
|
1373
|
+
placeholder: {
|
|
1374
|
+
type: StringConstructor;
|
|
1375
|
+
default: () => string;
|
|
1376
|
+
};
|
|
1377
|
+
disabled: {
|
|
1378
|
+
type: BooleanConstructor;
|
|
1379
|
+
default: () => boolean;
|
|
1380
|
+
};
|
|
1381
|
+
minLength: {
|
|
1382
|
+
type: NumberConstructor;
|
|
1383
|
+
default: () => number;
|
|
1384
|
+
};
|
|
1385
|
+
size: {
|
|
1386
|
+
type: () => "s" | "sm" | "md" | "lg" | "xl";
|
|
1387
|
+
default: () => string;
|
|
1388
|
+
};
|
|
1389
|
+
assistants: {
|
|
1390
|
+
type: () => Array<{
|
|
1391
|
+
name: string;
|
|
1392
|
+
id: string;
|
|
1393
|
+
description?: string;
|
|
1394
|
+
default?: boolean;
|
|
1395
|
+
}>;
|
|
1396
|
+
default: () => never[];
|
|
1397
|
+
};
|
|
1398
|
+
models: {
|
|
1399
|
+
type: () => Array<{
|
|
1400
|
+
name: string;
|
|
1401
|
+
id: string;
|
|
1402
|
+
description?: string;
|
|
1403
|
+
default?: boolean;
|
|
1404
|
+
}>;
|
|
1405
|
+
default: () => never[];
|
|
1406
|
+
};
|
|
1407
|
+
contextData: {
|
|
1408
|
+
type: () => Reference[];
|
|
1409
|
+
default: () => {
|
|
1410
|
+
id: string;
|
|
1411
|
+
type: string;
|
|
1412
|
+
name: string;
|
|
1413
|
+
path: string;
|
|
1414
|
+
}[];
|
|
1415
|
+
};
|
|
1416
|
+
}>> & Readonly<{
|
|
1417
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1418
|
+
onSend?: ((message: string) => any) | undefined;
|
|
1419
|
+
onSendWithContext?: ((message: string, context: Reference[]) => any) | undefined;
|
|
1420
|
+
}>, {
|
|
1421
|
+
focus: () => void;
|
|
1422
|
+
showErrorBanner: (message: string) => void;
|
|
1423
|
+
hideError: () => void;
|
|
1424
|
+
}, {}, {}, {}, {
|
|
1425
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
1426
|
+
placeholder: string;
|
|
1427
|
+
disabled: boolean;
|
|
1428
|
+
assistants: {
|
|
1429
|
+
name: string;
|
|
1430
|
+
id: string;
|
|
1431
|
+
description?: string;
|
|
1432
|
+
default?: boolean;
|
|
1433
|
+
}[];
|
|
1434
|
+
contextData: Reference[];
|
|
1435
|
+
minLength: number;
|
|
1436
|
+
models: {
|
|
1437
|
+
name: string;
|
|
1438
|
+
id: string;
|
|
1439
|
+
description?: string;
|
|
1440
|
+
default?: boolean;
|
|
1441
|
+
}[];
|
|
1442
|
+
}> | null;
|
|
1443
1443
|
}, HTMLDivElement>;
|
|
1444
1444
|
|
|
1445
1445
|
export declare const ChatMessage: DefineComponent<Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1446
|
-
|
|
1447
|
-
|
|
1446
|
+
codeCopy: (code: string) => any;
|
|
1447
|
+
codeClick: (code: string) => any;
|
|
1448
1448
|
}, string, PublicProps, Readonly<Props_11> & Readonly<{
|
|
1449
|
-
|
|
1450
|
-
|
|
1449
|
+
onCodeCopy?: ((code: string) => any) | undefined;
|
|
1450
|
+
onCodeClick?: ((code: string) => any) | undefined;
|
|
1451
1451
|
}>, {
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1452
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
1453
|
+
variant: string;
|
|
1454
|
+
markdown: boolean;
|
|
1455
|
+
content: MessageContent;
|
|
1456
|
+
context: string[];
|
|
1457
1457
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1458
1458
|
|
|
1459
1459
|
export declare const ChatMessages: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1460
|
-
|
|
1460
|
+
container: HTMLDivElement;
|
|
1461
1461
|
}, HTMLDivElement>;
|
|
1462
1462
|
|
|
1463
1463
|
export declare const ChooseAssistantAvatar: DefineComponent<Props_5, {
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1464
|
+
selectedIconId: Ref<string | number | null, string | number | null>;
|
|
1465
|
+
selectedFaceId: Ref<string | number | null, string | number | null>;
|
|
1466
|
+
selectedVoiceId: Ref<string | number | null, string | number | null>;
|
|
1467
|
+
resetSelections: () => void;
|
|
1468
1468
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1469
|
+
cancel: () => any;
|
|
1470
|
+
close: () => any;
|
|
1471
|
+
save: (data: {
|
|
1472
|
+
selectedIconId: string | number | null;
|
|
1473
|
+
selectedFaceId: string | number | null;
|
|
1474
|
+
selectedVoiceId: string | number | null;
|
|
1475
|
+
}) => any;
|
|
1476
|
+
iconSelect: (icon: Icon) => any;
|
|
1477
|
+
faceSelect: (face: Face) => any;
|
|
1478
|
+
voiceSelect: (voice: Voice) => any;
|
|
1479
|
+
searchInput: (query: string) => any;
|
|
1480
|
+
searchClick: () => any;
|
|
1481
|
+
uploadClick: () => any;
|
|
1482
1482
|
}, string, PublicProps, Readonly<Props_5> & Readonly<{
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1483
|
+
onCancel?: (() => any) | undefined;
|
|
1484
|
+
onClose?: (() => any) | undefined;
|
|
1485
|
+
onSave?: ((data: {
|
|
1486
|
+
selectedIconId: string | number | null;
|
|
1487
|
+
selectedFaceId: string | number | null;
|
|
1488
|
+
selectedVoiceId: string | number | null;
|
|
1489
|
+
}) => any) | undefined;
|
|
1490
|
+
onIconSelect?: ((icon: Icon) => any) | undefined;
|
|
1491
|
+
onFaceSelect?: ((face: Face) => any) | undefined;
|
|
1492
|
+
onVoiceSelect?: ((voice: Voice) => any) | undefined;
|
|
1493
|
+
onSearchInput?: ((query: string) => any) | undefined;
|
|
1494
|
+
onSearchClick?: (() => any) | undefined;
|
|
1495
|
+
onUploadClick?: (() => any) | undefined;
|
|
1496
1496
|
}>, {
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1497
|
+
title: string;
|
|
1498
|
+
description: string;
|
|
1499
|
+
icons: Icon[];
|
|
1500
|
+
faces: Face[];
|
|
1501
|
+
voices: Voice[];
|
|
1502
|
+
searchPlaceholder: string;
|
|
1503
|
+
cancelButtonText: string;
|
|
1504
|
+
saveButtonText: string;
|
|
1505
|
+
closeButtonAriaLabel: string;
|
|
1506
|
+
searchButtonAriaLabel: string;
|
|
1507
|
+
uploadButtonAriaLabel: string;
|
|
1508
|
+
allowMultipleSelection: boolean;
|
|
1509
1509
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1510
1510
|
|
|
1511
1511
|
export declare function cloneDeepSafe<T>(value: T): T;
|
|
@@ -1519,14 +1519,14 @@ declare interface CodeContent {
|
|
|
1519
1519
|
}
|
|
1520
1520
|
|
|
1521
1521
|
export declare const CodeSnippet: DefineComponent<Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1522
|
-
|
|
1523
|
-
|
|
1522
|
+
click: (code: string) => any;
|
|
1523
|
+
copy: (code: string) => any;
|
|
1524
1524
|
}, string, PublicProps, Readonly<Props_12> & Readonly<{
|
|
1525
|
-
|
|
1526
|
-
|
|
1525
|
+
onClick?: ((code: string) => any) | undefined;
|
|
1526
|
+
onCopy?: ((code: string) => any) | undefined;
|
|
1527
1527
|
}>, {
|
|
1528
|
-
|
|
1529
|
-
|
|
1528
|
+
variant: string;
|
|
1529
|
+
language: string;
|
|
1530
1530
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1531
1531
|
|
|
1532
1532
|
export declare const ColorComparison: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -1598,73 +1598,73 @@ export declare interface Configuration {
|
|
|
1598
1598
|
export declare const ConfigurationDashboard: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1599
1599
|
|
|
1600
1600
|
export declare const ConfirmationModal: DefineComponent<ExtractPropTypes< {
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1601
|
+
title: {
|
|
1602
|
+
type: StringConstructor;
|
|
1603
|
+
required: true;
|
|
1604
|
+
};
|
|
1605
|
+
description: {
|
|
1606
|
+
type: StringConstructor;
|
|
1607
|
+
default: string;
|
|
1608
|
+
};
|
|
1609
1609
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1610
|
-
|
|
1611
|
-
|
|
1610
|
+
close: (...args: any[]) => void;
|
|
1611
|
+
confirmDeletion: (...args: any[]) => void;
|
|
1612
1612
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1613
|
+
title: {
|
|
1614
|
+
type: StringConstructor;
|
|
1615
|
+
required: true;
|
|
1616
|
+
};
|
|
1617
|
+
description: {
|
|
1618
|
+
type: StringConstructor;
|
|
1619
|
+
default: string;
|
|
1620
|
+
};
|
|
1621
1621
|
}>> & Readonly<{
|
|
1622
|
-
|
|
1623
|
-
|
|
1622
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1623
|
+
onConfirmDeletion?: ((...args: any[]) => any) | undefined;
|
|
1624
1624
|
}>, {
|
|
1625
|
-
|
|
1625
|
+
description: string;
|
|
1626
1626
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1627
1627
|
|
|
1628
1628
|
export declare const ContextItem: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1629
|
-
|
|
1630
|
-
|
|
1629
|
+
select: (reference: Reference) => any;
|
|
1630
|
+
remove: (reference: Reference) => any;
|
|
1631
1631
|
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
1632
|
-
|
|
1633
|
-
|
|
1632
|
+
onSelect?: ((reference: Reference) => any) | undefined;
|
|
1633
|
+
onRemove?: ((reference: Reference) => any) | undefined;
|
|
1634
1634
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1635
1635
|
|
|
1636
1636
|
export declare const ContextManager: DefineComponent<__VLS_Props_4, {
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1637
|
+
selectedReferences: Ref< {
|
|
1638
|
+
id: string;
|
|
1639
|
+
title?: string | undefined;
|
|
1640
|
+
name?: string | undefined;
|
|
1641
|
+
description?: string | undefined;
|
|
1642
|
+
url?: string | undefined;
|
|
1643
|
+
type?: string | undefined;
|
|
1644
|
+
path?: string | undefined;
|
|
1645
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1646
|
+
}[], Reference[] | {
|
|
1647
|
+
id: string;
|
|
1648
|
+
title?: string | undefined;
|
|
1649
|
+
name?: string | undefined;
|
|
1650
|
+
description?: string | undefined;
|
|
1651
|
+
url?: string | undefined;
|
|
1652
|
+
type?: string | undefined;
|
|
1653
|
+
path?: string | undefined;
|
|
1654
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1655
|
+
}[]>;
|
|
1656
|
+
filteredAvailableReferences: ComputedRef< {
|
|
1657
|
+
id: string;
|
|
1658
|
+
title?: string | undefined;
|
|
1659
|
+
name?: string | undefined;
|
|
1660
|
+
description?: string | undefined;
|
|
1661
|
+
url?: string | undefined;
|
|
1662
|
+
type?: string | undefined;
|
|
1663
|
+
path?: string | undefined;
|
|
1664
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1665
|
+
}[]>;
|
|
1666
|
+
handleSelect: typeof handleSelect;
|
|
1667
|
+
handleRemove: typeof handleRemove;
|
|
1668
1668
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1669
1669
|
|
|
1670
1670
|
export declare interface CopyInputEvents extends InputFieldEvents {
|
|
@@ -1714,9 +1714,9 @@ export declare interface CurrencyOption {
|
|
|
1714
1714
|
}
|
|
1715
1715
|
|
|
1716
1716
|
export declare const CustomCheckbox: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1717
|
-
|
|
1717
|
+
"update:isChecked": (value: boolean) => any;
|
|
1718
1718
|
}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
|
|
1719
|
-
|
|
1719
|
+
"onUpdate:isChecked"?: ((value: boolean) => any) | undefined;
|
|
1720
1720
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
1721
1721
|
|
|
1722
1722
|
export declare const daysInMonth: number;
|
|
@@ -1753,39 +1753,39 @@ export { _default as flowplateApiService }
|
|
|
1753
1753
|
export declare const defaultImageSrc = "https://img.freepik.com/premium-vector/default-image-icon-vector-missing-picture-page-website-design-mobile-app-no-photo-available_87543-11093.jpg";
|
|
1754
1754
|
|
|
1755
1755
|
export declare const DefaultInput: DefineComponent<Props_20, {
|
|
1756
|
-
|
|
1757
|
-
|
|
1756
|
+
focus: () => void;
|
|
1757
|
+
inputRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1758
1758
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1759
|
+
blur: (event: FocusEvent) => any;
|
|
1760
|
+
focus: (event: FocusEvent) => any;
|
|
1761
|
+
input: (value: string) => any;
|
|
1762
|
+
keydown: (event: KeyboardEvent) => any;
|
|
1763
|
+
"update:modelValue": (value: string) => any;
|
|
1764
|
+
"trailing-icon-click": (event: MouseEvent) => any;
|
|
1765
|
+
"leading-icon-click": (event: MouseEvent) => any;
|
|
1766
1766
|
}, string, PublicProps, Readonly<Props_20> & Readonly<{
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1767
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
1768
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
1769
|
+
onInput?: ((value: string) => any) | undefined;
|
|
1770
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1771
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1772
|
+
"onTrailing-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
1773
|
+
"onLeading-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
1774
1774
|
}>, {
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1775
|
+
size: InputFieldSize;
|
|
1776
|
+
label: string;
|
|
1777
|
+
placeholder: string;
|
|
1778
|
+
disabled: boolean;
|
|
1779
|
+
state: InputFieldState;
|
|
1780
|
+
inputType: string;
|
|
1781
|
+
modelValue: string;
|
|
1782
|
+
readonly: boolean;
|
|
1783
|
+
required: boolean;
|
|
1784
|
+
hintText: string;
|
|
1785
|
+
destructive: boolean;
|
|
1786
|
+
colorStyle: InputFieldColorStyle;
|
|
1787
1787
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1788
|
-
|
|
1788
|
+
inputRef: HTMLInputElement;
|
|
1789
1789
|
}, HTMLDivElement>;
|
|
1790
1790
|
|
|
1791
1791
|
export declare interface DefaultInputEvents {
|
|
@@ -1809,85 +1809,85 @@ export declare interface DefaultInputProps extends BaseInputProps {
|
|
|
1809
1809
|
}
|
|
1810
1810
|
|
|
1811
1811
|
export declare const DeleteConfirmationModal: DefineComponent<ExtractPropTypes< {
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1812
|
+
title: {
|
|
1813
|
+
type: StringConstructor;
|
|
1814
|
+
required: true;
|
|
1815
|
+
};
|
|
1816
|
+
description: {
|
|
1817
|
+
type: StringConstructor;
|
|
1818
|
+
default: string;
|
|
1819
|
+
};
|
|
1820
1820
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1821
|
-
|
|
1822
|
-
|
|
1821
|
+
close: (...args: any[]) => void;
|
|
1822
|
+
confirmDeletion: (...args: any[]) => void;
|
|
1823
1823
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1824
|
+
title: {
|
|
1825
|
+
type: StringConstructor;
|
|
1826
|
+
required: true;
|
|
1827
|
+
};
|
|
1828
|
+
description: {
|
|
1829
|
+
type: StringConstructor;
|
|
1830
|
+
default: string;
|
|
1831
|
+
};
|
|
1832
1832
|
}>> & Readonly<{
|
|
1833
|
-
|
|
1834
|
-
|
|
1833
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1834
|
+
onConfirmDeletion?: ((...args: any[]) => any) | undefined;
|
|
1835
1835
|
}>, {
|
|
1836
|
-
|
|
1836
|
+
description: string;
|
|
1837
1837
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1838
1838
|
|
|
1839
1839
|
export declare const Descriptions: DefineComponent<Props_15, {
|
|
1840
|
-
|
|
1840
|
+
focus: () => void;
|
|
1841
1841
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1842
|
+
blur: (event: FocusEvent) => any;
|
|
1843
|
+
focus: (event: FocusEvent) => any;
|
|
1844
|
+
input: (value: string) => any;
|
|
1845
|
+
"update:modelValue": (value: string) => any;
|
|
1846
|
+
"ask-ai": (content: string) => any;
|
|
1847
|
+
expand: (content: string) => any;
|
|
1848
|
+
"remove-tag": (index: number) => any;
|
|
1849
|
+
"tooltip-click": () => any;
|
|
1850
|
+
"add-tag": (tag: string) => any;
|
|
1851
|
+
"tags-click": () => any;
|
|
1852
1852
|
}, string, PublicProps, Readonly<Props_15> & Readonly<{
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1853
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
1854
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
1855
|
+
onInput?: ((value: string) => any) | undefined;
|
|
1856
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1857
|
+
"onAsk-ai"?: ((content: string) => any) | undefined;
|
|
1858
|
+
onExpand?: ((content: string) => any) | undefined;
|
|
1859
|
+
"onRemove-tag"?: ((index: number) => any) | undefined;
|
|
1860
|
+
"onTooltip-click"?: (() => any) | undefined;
|
|
1861
|
+
"onAdd-tag"?: ((tag: string) => any) | undefined;
|
|
1862
|
+
"onTags-click"?: (() => any) | undefined;
|
|
1863
1863
|
}>, {
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1864
|
+
label: string;
|
|
1865
|
+
type: DescriptionType;
|
|
1866
|
+
placeholder: string;
|
|
1867
|
+
disabled: boolean;
|
|
1868
|
+
tags: string[];
|
|
1869
|
+
tooltipText: string;
|
|
1870
|
+
modelValue: string;
|
|
1871
|
+
readonly: boolean;
|
|
1872
|
+
required: boolean;
|
|
1873
|
+
errorMessage: string;
|
|
1874
|
+
openaiApiKey: string;
|
|
1875
|
+
openaiModel: string;
|
|
1876
|
+
openaiOrganization: string;
|
|
1877
|
+
showTooltip: boolean;
|
|
1878
|
+
showAiButton: boolean;
|
|
1879
|
+
hintText: string;
|
|
1880
|
+
modalTitle: string;
|
|
1881
|
+
modalDescription: string;
|
|
1882
|
+
showUnderlines: boolean;
|
|
1883
|
+
dynamicTitle: string;
|
|
1884
|
+
showHint: boolean;
|
|
1885
|
+
diffMode: boolean;
|
|
1886
|
+
oldText: string;
|
|
1887
|
+
newText: string;
|
|
1888
|
+
tagsOnly: boolean;
|
|
1889
|
+
stage: DescriptionStage;
|
|
1890
|
+
destructive: boolean;
|
|
1891
1891
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1892
1892
|
|
|
1893
1893
|
declare type DescriptionStage = 'placeholder' | 'default' | 'focused' | 'disabled' | 'error';
|
|
@@ -1903,192 +1903,192 @@ declare interface DiffProps {
|
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
1905
1905
|
export declare const DiffTextarea: DefineComponent<DiffProps, {
|
|
1906
|
-
|
|
1907
|
-
|
|
1906
|
+
focus: () => void | undefined;
|
|
1907
|
+
blur: () => void | undefined;
|
|
1908
1908
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1909
|
-
|
|
1909
|
+
"update:modelValue": (value: string) => any;
|
|
1910
1910
|
}, string, PublicProps, Readonly<DiffProps> & Readonly<{
|
|
1911
|
-
|
|
1911
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1912
1912
|
}>, {
|
|
1913
|
-
|
|
1914
|
-
|
|
1913
|
+
placeholder: string;
|
|
1914
|
+
showDiff: boolean;
|
|
1915
1915
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1916
|
-
|
|
1916
|
+
textareaRef: HTMLTextAreaElement;
|
|
1917
1917
|
}, HTMLDivElement>;
|
|
1918
1918
|
|
|
1919
1919
|
export declare const Dropdown: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1920
1920
|
|
|
1921
1921
|
export declare const EditFeaturedExcerptModal: DefineComponent<ExtractPropTypes< {
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1922
|
+
isVisible: {
|
|
1923
|
+
type: BooleanConstructor;
|
|
1924
|
+
required: true;
|
|
1925
|
+
};
|
|
1926
|
+
title: {
|
|
1927
|
+
type: StringConstructor;
|
|
1928
|
+
default: string;
|
|
1929
|
+
};
|
|
1930
|
+
description: {
|
|
1931
|
+
type: StringConstructor;
|
|
1932
|
+
default: string;
|
|
1933
|
+
};
|
|
1934
|
+
initialContent: {
|
|
1935
|
+
type: StringConstructor;
|
|
1936
|
+
default: string;
|
|
1937
|
+
};
|
|
1938
|
+
openaiApiKey: {
|
|
1939
|
+
type: StringConstructor;
|
|
1940
|
+
default: string;
|
|
1941
|
+
};
|
|
1942
|
+
openaiModel: {
|
|
1943
|
+
type: StringConstructor;
|
|
1944
|
+
default: string;
|
|
1945
|
+
};
|
|
1946
|
+
openaiOrganization: {
|
|
1947
|
+
type: StringConstructor;
|
|
1948
|
+
default: string;
|
|
1949
|
+
};
|
|
1950
1950
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1951
|
+
cancel: (...args: any[]) => void;
|
|
1952
|
+
close: (...args: any[]) => void;
|
|
1953
|
+
save: (...args: any[]) => void;
|
|
1954
|
+
askAI: (...args: any[]) => void;
|
|
1955
|
+
toggleAI: (...args: any[]) => void;
|
|
1956
1956
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1957
|
+
isVisible: {
|
|
1958
|
+
type: BooleanConstructor;
|
|
1959
|
+
required: true;
|
|
1960
|
+
};
|
|
1961
|
+
title: {
|
|
1962
|
+
type: StringConstructor;
|
|
1963
|
+
default: string;
|
|
1964
|
+
};
|
|
1965
|
+
description: {
|
|
1966
|
+
type: StringConstructor;
|
|
1967
|
+
default: string;
|
|
1968
|
+
};
|
|
1969
|
+
initialContent: {
|
|
1970
|
+
type: StringConstructor;
|
|
1971
|
+
default: string;
|
|
1972
|
+
};
|
|
1973
|
+
openaiApiKey: {
|
|
1974
|
+
type: StringConstructor;
|
|
1975
|
+
default: string;
|
|
1976
|
+
};
|
|
1977
|
+
openaiModel: {
|
|
1978
|
+
type: StringConstructor;
|
|
1979
|
+
default: string;
|
|
1980
|
+
};
|
|
1981
|
+
openaiOrganization: {
|
|
1982
|
+
type: StringConstructor;
|
|
1983
|
+
default: string;
|
|
1984
|
+
};
|
|
1985
1985
|
}>> & Readonly<{
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1986
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
1987
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1988
|
+
onSave?: ((...args: any[]) => any) | undefined;
|
|
1989
|
+
onAskAI?: ((...args: any[]) => any) | undefined;
|
|
1990
|
+
onToggleAI?: ((...args: any[]) => any) | undefined;
|
|
1991
1991
|
}>, {
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1992
|
+
title: string;
|
|
1993
|
+
description: string;
|
|
1994
|
+
openaiApiKey: string;
|
|
1995
|
+
initialContent: string;
|
|
1996
|
+
openaiModel: string;
|
|
1997
|
+
openaiOrganization: string;
|
|
1998
1998
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
1999
|
+
chatRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2000
|
+
placeholder?: string;
|
|
2001
|
+
messages?: IChatMessage[];
|
|
2002
|
+
enableAI?: boolean;
|
|
2003
|
+
openaiApiKey?: string;
|
|
2004
|
+
textBoxContent?: string;
|
|
2005
|
+
}> & Readonly<{
|
|
2006
|
+
onSend?: ((message: string) => any) | undefined;
|
|
2007
|
+
onAcceptChanges?: ((message: IChatMessage) => any) | undefined;
|
|
2008
|
+
onDenyChanges?: ((message: IChatMessage) => any) | undefined;
|
|
2009
|
+
onTextReplacement?: ((data: {
|
|
2010
|
+
original?: string;
|
|
2011
|
+
improved: string;
|
|
2012
|
+
stats?: any;
|
|
2013
|
+
}) => any) | undefined;
|
|
2014
|
+
onTextCompletion?: ((data: {
|
|
2015
|
+
original?: string;
|
|
2016
|
+
completion: string;
|
|
2017
|
+
}) => any) | undefined;
|
|
2018
|
+
}>, {
|
|
2019
|
+
addAIResponse: (content: string, changes?: {
|
|
2020
|
+
title?: string;
|
|
2021
|
+
description: string;
|
|
2022
|
+
added: number;
|
|
2023
|
+
removed: number;
|
|
2024
|
+
data?: any;
|
|
2025
|
+
}) => void;
|
|
2026
|
+
addAIResponseFromApi: (apiResponse: any) => void;
|
|
2027
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2028
|
+
send: (message: string) => any;
|
|
2029
|
+
acceptChanges: (message: IChatMessage) => any;
|
|
2030
|
+
denyChanges: (message: IChatMessage) => any;
|
|
2031
|
+
textReplacement: (data: {
|
|
2032
|
+
original?: string;
|
|
2033
|
+
improved: string;
|
|
2034
|
+
stats?: any;
|
|
2035
|
+
}) => any;
|
|
2036
|
+
textCompletion: (data: {
|
|
2037
|
+
original?: string;
|
|
2038
|
+
completion: string;
|
|
2039
|
+
}) => any;
|
|
2040
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
2041
|
+
messagesContainer: HTMLDivElement;
|
|
2042
|
+
inputRef: HTMLTextAreaElement;
|
|
2043
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
2044
|
+
P: {};
|
|
2045
|
+
B: {};
|
|
2046
|
+
D: {};
|
|
2047
|
+
C: {};
|
|
2048
|
+
M: {};
|
|
2049
|
+
Defaults: {};
|
|
2050
|
+
}, Readonly<{
|
|
2051
|
+
placeholder?: string;
|
|
2052
|
+
messages?: IChatMessage[];
|
|
2053
|
+
enableAI?: boolean;
|
|
2054
|
+
openaiApiKey?: string;
|
|
2055
|
+
textBoxContent?: string;
|
|
2056
|
+
}> & Readonly<{
|
|
2057
|
+
onSend?: ((message: string) => any) | undefined;
|
|
2058
|
+
onAcceptChanges?: ((message: IChatMessage) => any) | undefined;
|
|
2059
|
+
onDenyChanges?: ((message: IChatMessage) => any) | undefined;
|
|
2060
|
+
onTextReplacement?: ((data: {
|
|
2061
|
+
original?: string;
|
|
2062
|
+
improved: string;
|
|
2063
|
+
stats?: any;
|
|
2064
|
+
}) => any) | undefined;
|
|
2065
|
+
onTextCompletion?: ((data: {
|
|
2066
|
+
original?: string;
|
|
2067
|
+
completion: string;
|
|
2068
|
+
}) => any) | undefined;
|
|
2069
|
+
}>, {
|
|
2070
|
+
addAIResponse: (content: string, changes?: {
|
|
2071
|
+
title?: string;
|
|
2072
|
+
description: string;
|
|
2073
|
+
added: number;
|
|
2074
|
+
removed: number;
|
|
2075
|
+
data?: any;
|
|
2076
|
+
}) => void;
|
|
2077
|
+
addAIResponseFromApi: (apiResponse: any) => void;
|
|
2078
|
+
}, {}, {}, {}, {}> | null;
|
|
2079
2079
|
}, any>;
|
|
2080
2080
|
|
|
2081
2081
|
export declare const EmailCodeVerification: DefineComponent<Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2082
|
-
|
|
2083
|
-
|
|
2082
|
+
verify: (code: string) => any;
|
|
2083
|
+
resend: () => any;
|
|
2084
2084
|
}, string, PublicProps, Readonly<Props_17> & Readonly<{
|
|
2085
|
-
|
|
2086
|
-
|
|
2085
|
+
onVerify?: ((code: string) => any) | undefined;
|
|
2086
|
+
onResend?: (() => any) | undefined;
|
|
2087
2087
|
}>, {
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2088
|
+
error: string;
|
|
2089
|
+
loading: boolean;
|
|
2090
|
+
brand: "contentplate" | "flowplate" | "freddy";
|
|
2091
|
+
resendCooldown: number;
|
|
2092
2092
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2093
2093
|
|
|
2094
2094
|
export declare const ErrorBoundary: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
@@ -2817,75 +2817,75 @@ export declare const IconDropdownArrow: DefineComponent< {}, {}, {}, {}, {},
|
|
|
2817
2817
|
export declare const IconEdit: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2818
2818
|
|
|
2819
2819
|
export declare const IconEditLinePath: DefineComponent<ExtractPropTypes< {
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2820
|
+
showCircles: {
|
|
2821
|
+
type: BooleanConstructor;
|
|
2822
|
+
default: boolean;
|
|
2823
|
+
};
|
|
2824
|
+
circleCount: {
|
|
2825
|
+
type: NumberConstructor;
|
|
2826
|
+
default: number;
|
|
2827
|
+
validator: (value: number) => boolean;
|
|
2828
|
+
};
|
|
2829
|
+
circleColor: {
|
|
2830
|
+
type: StringConstructor;
|
|
2831
|
+
default: string;
|
|
2832
|
+
};
|
|
2833
|
+
centerDistance: {
|
|
2834
|
+
type: NumberConstructor;
|
|
2835
|
+
default: number;
|
|
2836
|
+
};
|
|
2837
|
+
circleGap: {
|
|
2838
|
+
type: NumberConstructor;
|
|
2839
|
+
default: number;
|
|
2840
|
+
};
|
|
2841
|
+
borderWidth: {
|
|
2842
|
+
type: NumberConstructor;
|
|
2843
|
+
default: number;
|
|
2844
|
+
};
|
|
2845
|
+
opacityStep: {
|
|
2846
|
+
type: NumberConstructor;
|
|
2847
|
+
default: number;
|
|
2848
|
+
validator: (value: number) => boolean;
|
|
2849
|
+
};
|
|
2850
2850
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2851
|
+
showCircles: {
|
|
2852
|
+
type: BooleanConstructor;
|
|
2853
|
+
default: boolean;
|
|
2854
|
+
};
|
|
2855
|
+
circleCount: {
|
|
2856
|
+
type: NumberConstructor;
|
|
2857
|
+
default: number;
|
|
2858
|
+
validator: (value: number) => boolean;
|
|
2859
|
+
};
|
|
2860
|
+
circleColor: {
|
|
2861
|
+
type: StringConstructor;
|
|
2862
|
+
default: string;
|
|
2863
|
+
};
|
|
2864
|
+
centerDistance: {
|
|
2865
|
+
type: NumberConstructor;
|
|
2866
|
+
default: number;
|
|
2867
|
+
};
|
|
2868
|
+
circleGap: {
|
|
2869
|
+
type: NumberConstructor;
|
|
2870
|
+
default: number;
|
|
2871
|
+
};
|
|
2872
|
+
borderWidth: {
|
|
2873
|
+
type: NumberConstructor;
|
|
2874
|
+
default: number;
|
|
2875
|
+
};
|
|
2876
|
+
opacityStep: {
|
|
2877
|
+
type: NumberConstructor;
|
|
2878
|
+
default: number;
|
|
2879
|
+
validator: (value: number) => boolean;
|
|
2880
|
+
};
|
|
2881
2881
|
}>> & Readonly<{}>, {
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2882
|
+
showCircles: boolean;
|
|
2883
|
+
circleCount: number;
|
|
2884
|
+
circleColor: string;
|
|
2885
|
+
centerDistance: number;
|
|
2886
|
+
circleGap: number;
|
|
2887
|
+
borderWidth: number;
|
|
2888
|
+
opacityStep: number;
|
|
2889
2889
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2890
2890
|
|
|
2891
2891
|
export declare const IconEllipse: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
@@ -3405,74 +3405,74 @@ export declare interface INotificationProps {
|
|
|
3405
3405
|
}
|
|
3406
3406
|
|
|
3407
3407
|
export declare const InputField: DefineComponent<Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3408
|
+
blur: (event: FocusEvent) => any;
|
|
3409
|
+
focus: (event: FocusEvent) => any;
|
|
3410
|
+
input: (value: string) => any;
|
|
3411
|
+
keydown: (event: KeyboardEvent) => any;
|
|
3412
|
+
"update:modelValue": (value: string) => any;
|
|
3413
|
+
"update:cardNumber": (number: string) => any;
|
|
3414
|
+
"card-type-detected": (type: CardType) => any;
|
|
3415
|
+
"trailing-icon-click": (event: MouseEvent) => any;
|
|
3416
|
+
"leading-icon-click": (event: MouseEvent) => any;
|
|
3417
|
+
"trailing-button-click": (event: MouseEvent) => any;
|
|
3418
|
+
"update:countryCode": (code: string) => any;
|
|
3419
|
+
"update:phoneNumber": (number: string) => any;
|
|
3420
|
+
"country-change": (country: CountryOption) => any;
|
|
3421
|
+
"update:currency": (currency: string) => any;
|
|
3422
|
+
"update:amount": (amount: string | number) => any;
|
|
3423
|
+
"currency-change": (currency: CurrencyOption) => any;
|
|
3424
|
+
"update:protocol": (protocol: string) => any;
|
|
3425
|
+
"update:url": (url: string) => any;
|
|
3426
|
+
"protocol-change": (protocol: string) => any;
|
|
3427
|
+
"update:tags": (tags: string[]) => any;
|
|
3428
|
+
"tag-added": (tag: string) => any;
|
|
3429
|
+
"tag-removed": (tag: string, index: number) => any;
|
|
3430
|
+
"max-tags-reached": () => any;
|
|
3431
|
+
"copy-success": (text: string) => any;
|
|
3432
|
+
"copy-error": (error: Error) => any;
|
|
3433
3433
|
}, string, PublicProps, Readonly<Props_21> & Readonly<{
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3434
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
3435
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
3436
|
+
onInput?: ((value: string) => any) | undefined;
|
|
3437
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3438
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
3439
|
+
"onUpdate:cardNumber"?: ((number: string) => any) | undefined;
|
|
3440
|
+
"onCard-type-detected"?: ((type: CardType) => any) | undefined;
|
|
3441
|
+
"onTrailing-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
3442
|
+
"onLeading-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
3443
|
+
"onTrailing-button-click"?: ((event: MouseEvent) => any) | undefined;
|
|
3444
|
+
"onUpdate:countryCode"?: ((code: string) => any) | undefined;
|
|
3445
|
+
"onUpdate:phoneNumber"?: ((number: string) => any) | undefined;
|
|
3446
|
+
"onCountry-change"?: ((country: CountryOption) => any) | undefined;
|
|
3447
|
+
"onUpdate:currency"?: ((currency: string) => any) | undefined;
|
|
3448
|
+
"onUpdate:amount"?: ((amount: string | number) => any) | undefined;
|
|
3449
|
+
"onCurrency-change"?: ((currency: CurrencyOption) => any) | undefined;
|
|
3450
|
+
"onUpdate:protocol"?: ((protocol: string) => any) | undefined;
|
|
3451
|
+
"onUpdate:url"?: ((url: string) => any) | undefined;
|
|
3452
|
+
"onProtocol-change"?: ((protocol: string) => any) | undefined;
|
|
3453
|
+
"onUpdate:tags"?: ((tags: string[]) => any) | undefined;
|
|
3454
|
+
"onTag-added"?: ((tag: string) => any) | undefined;
|
|
3455
|
+
"onTag-removed"?: ((tag: string, index: number) => any) | undefined;
|
|
3456
|
+
"onMax-tags-reached"?: (() => any) | undefined;
|
|
3457
|
+
"onCopy-success"?: ((text: string) => any) | undefined;
|
|
3458
|
+
"onCopy-error"?: ((error: Error) => any) | undefined;
|
|
3459
3459
|
}>, {
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3460
|
+
size: InputFieldSize;
|
|
3461
|
+
label: string;
|
|
3462
|
+
type: InputFieldVariant;
|
|
3463
|
+
placeholder: string;
|
|
3464
|
+
disabled: boolean;
|
|
3465
|
+
state: InputFieldState;
|
|
3466
|
+
variant: InputFieldVariant;
|
|
3467
|
+
countryCode: string;
|
|
3468
|
+
phoneNumber: string;
|
|
3469
|
+
inputType: string;
|
|
3470
|
+
modelValue: string;
|
|
3471
|
+
readonly: boolean;
|
|
3472
|
+
required: boolean;
|
|
3473
|
+
hintText: string;
|
|
3474
|
+
destructive: boolean;
|
|
3475
|
+
colorStyle: InputFieldColorStyle;
|
|
3476
3476
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3477
3477
|
|
|
3478
3478
|
export declare type InputFieldColorStyle = 'freddy' | 'contentplate';
|
|
@@ -3487,21 +3487,21 @@ export declare type InputFieldState = 'placeholder' | 'filled' | 'focused' | 'di
|
|
|
3487
3487
|
export declare type InputFieldVariant = 'default' | 'phone' | 'price' | 'url' | 'card' | 'tags' | 'copy' | 'leading-dropdown' | 'trailing-dropdown' | 'leading-text' | 'payment' | 'trailing-button' | 'clear' | 'freddy-input';
|
|
3488
3488
|
|
|
3489
3489
|
export declare const InstructionsModal: DefineComponent<ExtractPropTypes< {
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3490
|
+
isVisible: {
|
|
3491
|
+
type: BooleanConstructor;
|
|
3492
|
+
required: true;
|
|
3493
|
+
};
|
|
3494
3494
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3495
|
+
isVisible: {
|
|
3496
|
+
type: BooleanConstructor;
|
|
3497
|
+
required: true;
|
|
3498
|
+
};
|
|
3499
3499
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3500
3500
|
|
|
3501
3501
|
export declare const InstructiontextArea: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
3502
|
-
|
|
3502
|
+
"update:inputValue": (value: string) => any;
|
|
3503
3503
|
}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
|
|
3504
|
-
|
|
3504
|
+
"onUpdate:inputValue"?: ((value: string) => any) | undefined;
|
|
3505
3505
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
|
|
3506
3506
|
|
|
3507
3507
|
/**
|
|
@@ -3850,24 +3850,24 @@ export declare interface IVerticalTab {
|
|
|
3850
3850
|
}
|
|
3851
3851
|
|
|
3852
3852
|
export declare const LoginForm: DefineComponent<Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3853
|
-
|
|
3854
|
-
|
|
3853
|
+
submit: (email: string, password: string) => any;
|
|
3854
|
+
"switch-to-register": () => any;
|
|
3855
3855
|
}, string, PublicProps, Readonly<Props_28> & Readonly<{
|
|
3856
|
-
|
|
3857
|
-
|
|
3856
|
+
onSubmit?: ((email: string, password: string) => any) | undefined;
|
|
3857
|
+
"onSwitch-to-register"?: (() => any) | undefined;
|
|
3858
3858
|
}>, {
|
|
3859
|
-
|
|
3860
|
-
|
|
3859
|
+
error: string;
|
|
3860
|
+
loading: boolean;
|
|
3861
3861
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3862
3862
|
|
|
3863
3863
|
export declare const LoginPage: DefineComponent<Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3864
|
-
|
|
3865
|
-
|
|
3864
|
+
"switch-to-register": () => any;
|
|
3865
|
+
"login-success": (email: string) => any;
|
|
3866
3866
|
}, string, PublicProps, Readonly<Props_24> & Readonly<{
|
|
3867
|
-
|
|
3868
|
-
|
|
3867
|
+
"onSwitch-to-register"?: (() => any) | undefined;
|
|
3868
|
+
"onLogin-success"?: ((email: string) => any) | undefined;
|
|
3869
3869
|
}>, {
|
|
3870
|
-
|
|
3870
|
+
initialEmail: string;
|
|
3871
3871
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3872
3872
|
|
|
3873
3873
|
declare type MessageContent = string | TextContent | CodeContent | MixedContent;
|
|
@@ -3882,14 +3882,14 @@ export { ModalBox }
|
|
|
3882
3882
|
export declare const ModalOverlay: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
3883
3883
|
|
|
3884
3884
|
export declare const ModelDropdown: DefineComponent<ModelDropdownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
3885
|
-
|
|
3885
|
+
select: (option: ModelOption) => any;
|
|
3886
3886
|
}, string, PublicProps, Readonly<ModelDropdownProps> & Readonly<{
|
|
3887
|
-
|
|
3887
|
+
onSelect?: ((option: ModelOption) => any) | undefined;
|
|
3888
3888
|
}>, {
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3889
|
+
size: "sm" | "md" | "lg";
|
|
3890
|
+
searchPlaceholder: string;
|
|
3891
|
+
searchable: boolean;
|
|
3892
|
+
modelPlaceholder: string;
|
|
3893
3893
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3894
3894
|
|
|
3895
3895
|
declare interface ModelDropdownProps {
|
|
@@ -3930,106 +3930,106 @@ declare interface Option_2 {
|
|
|
3930
3930
|
}
|
|
3931
3931
|
|
|
3932
3932
|
export declare const OutputModeModal: DefineComponent<ExtractPropTypes< {
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3933
|
+
isVisible: {
|
|
3934
|
+
type: BooleanConstructor;
|
|
3935
|
+
required: true;
|
|
3936
|
+
};
|
|
3937
|
+
initialJsonContent: {
|
|
3938
|
+
type: StringConstructor;
|
|
3939
|
+
default: string;
|
|
3940
|
+
};
|
|
3941
|
+
openaiApiKey: {
|
|
3942
|
+
type: StringConstructor;
|
|
3943
|
+
default: string;
|
|
3944
|
+
};
|
|
3945
|
+
openaiModel: {
|
|
3946
|
+
type: StringConstructor;
|
|
3947
|
+
default: string;
|
|
3948
|
+
};
|
|
3949
|
+
openaiOrganization: {
|
|
3950
|
+
type: StringConstructor;
|
|
3951
|
+
default: string;
|
|
3952
|
+
};
|
|
3953
3953
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3954
|
+
cancel: (...args: any[]) => void;
|
|
3955
|
+
close: (...args: any[]) => void;
|
|
3956
|
+
save: (...args: any[]) => void;
|
|
3957
|
+
askAI: (...args: any[]) => void;
|
|
3958
|
+
toggleAI: (...args: any[]) => void;
|
|
3959
3959
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3960
|
+
isVisible: {
|
|
3961
|
+
type: BooleanConstructor;
|
|
3962
|
+
required: true;
|
|
3963
|
+
};
|
|
3964
|
+
initialJsonContent: {
|
|
3965
|
+
type: StringConstructor;
|
|
3966
|
+
default: string;
|
|
3967
|
+
};
|
|
3968
|
+
openaiApiKey: {
|
|
3969
|
+
type: StringConstructor;
|
|
3970
|
+
default: string;
|
|
3971
|
+
};
|
|
3972
|
+
openaiModel: {
|
|
3973
|
+
type: StringConstructor;
|
|
3974
|
+
default: string;
|
|
3975
|
+
};
|
|
3976
|
+
openaiOrganization: {
|
|
3977
|
+
type: StringConstructor;
|
|
3978
|
+
default: string;
|
|
3979
|
+
};
|
|
3980
3980
|
}>> & Readonly<{
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3981
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
3982
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3983
|
+
onSave?: ((...args: any[]) => any) | undefined;
|
|
3984
|
+
onAskAI?: ((...args: any[]) => any) | undefined;
|
|
3985
|
+
onToggleAI?: ((...args: any[]) => any) | undefined;
|
|
3986
3986
|
}>, {
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3987
|
+
openaiApiKey: string;
|
|
3988
|
+
openaiModel: string;
|
|
3989
|
+
openaiOrganization: string;
|
|
3990
|
+
initialJsonContent: string;
|
|
3991
3991
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3992
3992
|
|
|
3993
3993
|
export declare const Pagination: DefineComponent<ExtractPropTypes< {
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
3994
|
+
totalItems: {
|
|
3995
|
+
type: NumberConstructor;
|
|
3996
|
+
required: true;
|
|
3997
|
+
default: number;
|
|
3998
|
+
};
|
|
3999
|
+
itemsPerPage: {
|
|
4000
|
+
type: NumberConstructor;
|
|
4001
|
+
required: true;
|
|
4002
|
+
default: number;
|
|
4003
|
+
};
|
|
4004
|
+
currentPage: {
|
|
4005
|
+
type: NumberConstructor;
|
|
4006
|
+
required: true;
|
|
4007
|
+
default: number;
|
|
4008
|
+
};
|
|
4009
4009
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4010
|
-
|
|
4010
|
+
"update:currentPage": (...args: any[]) => void;
|
|
4011
4011
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4012
|
+
totalItems: {
|
|
4013
|
+
type: NumberConstructor;
|
|
4014
|
+
required: true;
|
|
4015
|
+
default: number;
|
|
4016
|
+
};
|
|
4017
|
+
itemsPerPage: {
|
|
4018
|
+
type: NumberConstructor;
|
|
4019
|
+
required: true;
|
|
4020
|
+
default: number;
|
|
4021
|
+
};
|
|
4022
|
+
currentPage: {
|
|
4023
|
+
type: NumberConstructor;
|
|
4024
|
+
required: true;
|
|
4025
|
+
default: number;
|
|
4026
|
+
};
|
|
4027
4027
|
}>> & Readonly<{
|
|
4028
|
-
|
|
4028
|
+
"onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
|
|
4029
4029
|
}>, {
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4030
|
+
currentPage: number;
|
|
4031
|
+
totalItems: number;
|
|
4032
|
+
itemsPerPage: number;
|
|
4033
4033
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4034
4034
|
|
|
4035
4035
|
/**
|
|
@@ -4066,75 +4066,75 @@ export declare interface PerformanceMetrics {
|
|
|
4066
4066
|
}
|
|
4067
4067
|
|
|
4068
4068
|
export declare const PhoneInput: DefineComponent<Props_22, {
|
|
4069
|
-
|
|
4070
|
-
|
|
4069
|
+
focus: () => void;
|
|
4070
|
+
inputRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
4071
4071
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4072
|
+
blur: (event: FocusEvent) => any;
|
|
4073
|
+
focus: (event: FocusEvent) => any;
|
|
4074
|
+
input: (value: string) => any;
|
|
4075
|
+
keydown: (event: KeyboardEvent) => any;
|
|
4076
|
+
"update:modelValue": (value: string) => any;
|
|
4077
|
+
"update:cardNumber": (number: string) => any;
|
|
4078
|
+
"card-type-detected": (type: CardType) => any;
|
|
4079
|
+
"trailing-icon-click": (event: MouseEvent) => any;
|
|
4080
|
+
"leading-icon-click": (event: MouseEvent) => any;
|
|
4081
|
+
"trailing-button-click": (event: MouseEvent) => any;
|
|
4082
|
+
"update:countryCode": (code: string) => any;
|
|
4083
|
+
"update:phoneNumber": (number: string) => any;
|
|
4084
|
+
"country-change": (country: CountryOption) => any;
|
|
4085
|
+
"update:currency": (currency: string) => any;
|
|
4086
|
+
"update:amount": (amount: string | number) => any;
|
|
4087
|
+
"currency-change": (currency: CurrencyOption) => any;
|
|
4088
|
+
"update:protocol": (protocol: string) => any;
|
|
4089
|
+
"update:url": (url: string) => any;
|
|
4090
|
+
"protocol-change": (protocol: string) => any;
|
|
4091
|
+
"update:tags": (tags: string[]) => any;
|
|
4092
|
+
"tag-added": (tag: string) => any;
|
|
4093
|
+
"tag-removed": (tag: string, index: number) => any;
|
|
4094
|
+
"max-tags-reached": () => any;
|
|
4095
|
+
"copy-success": (text: string) => any;
|
|
4096
|
+
"copy-error": (error: Error) => any;
|
|
4097
4097
|
}, string, PublicProps, Readonly<Props_22> & Readonly<{
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4098
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
4099
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
4100
|
+
onInput?: ((value: string) => any) | undefined;
|
|
4101
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4102
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4103
|
+
"onUpdate:cardNumber"?: ((number: string) => any) | undefined;
|
|
4104
|
+
"onCard-type-detected"?: ((type: CardType) => any) | undefined;
|
|
4105
|
+
"onTrailing-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
4106
|
+
"onLeading-icon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
4107
|
+
"onTrailing-button-click"?: ((event: MouseEvent) => any) | undefined;
|
|
4108
|
+
"onUpdate:countryCode"?: ((code: string) => any) | undefined;
|
|
4109
|
+
"onUpdate:phoneNumber"?: ((number: string) => any) | undefined;
|
|
4110
|
+
"onCountry-change"?: ((country: CountryOption) => any) | undefined;
|
|
4111
|
+
"onUpdate:currency"?: ((currency: string) => any) | undefined;
|
|
4112
|
+
"onUpdate:amount"?: ((amount: string | number) => any) | undefined;
|
|
4113
|
+
"onCurrency-change"?: ((currency: CurrencyOption) => any) | undefined;
|
|
4114
|
+
"onUpdate:protocol"?: ((protocol: string) => any) | undefined;
|
|
4115
|
+
"onUpdate:url"?: ((url: string) => any) | undefined;
|
|
4116
|
+
"onProtocol-change"?: ((protocol: string) => any) | undefined;
|
|
4117
|
+
"onUpdate:tags"?: ((tags: string[]) => any) | undefined;
|
|
4118
|
+
"onTag-added"?: ((tag: string) => any) | undefined;
|
|
4119
|
+
"onTag-removed"?: ((tag: string, index: number) => any) | undefined;
|
|
4120
|
+
"onMax-tags-reached"?: (() => any) | undefined;
|
|
4121
|
+
"onCopy-success"?: ((text: string) => any) | undefined;
|
|
4122
|
+
"onCopy-error"?: ((error: Error) => any) | undefined;
|
|
4123
4123
|
}>, {
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4124
|
+
size: InputFieldSize;
|
|
4125
|
+
label: string;
|
|
4126
|
+
placeholder: string;
|
|
4127
|
+
disabled: boolean;
|
|
4128
|
+
state: InputFieldState;
|
|
4129
|
+
countryCode: string;
|
|
4130
|
+
phoneNumber: string;
|
|
4131
|
+
readonly: boolean;
|
|
4132
|
+
required: boolean;
|
|
4133
|
+
hintText: string;
|
|
4134
|
+
destructive: boolean;
|
|
4135
|
+
colorStyle: InputFieldColorStyle;
|
|
4136
4136
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
4137
|
-
|
|
4137
|
+
inputRef: HTMLInputElement;
|
|
4138
4138
|
}, HTMLDivElement>;
|
|
4139
4139
|
|
|
4140
4140
|
export declare interface PhoneInputEvents extends InputFieldEvents {
|
|
@@ -4462,24 +4462,24 @@ export declare interface Reference {
|
|
|
4462
4462
|
}
|
|
4463
4463
|
|
|
4464
4464
|
export declare const RegisterForm: DefineComponent<Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4465
|
-
|
|
4466
|
-
|
|
4465
|
+
submit: (fullName: string, email: string, password: string) => any;
|
|
4466
|
+
"switch-to-login": () => any;
|
|
4467
4467
|
}, string, PublicProps, Readonly<Props_29> & Readonly<{
|
|
4468
|
-
|
|
4469
|
-
|
|
4468
|
+
onSubmit?: ((fullName: string, email: string, password: string) => any) | undefined;
|
|
4469
|
+
"onSwitch-to-login"?: (() => any) | undefined;
|
|
4470
4470
|
}>, {
|
|
4471
|
-
|
|
4472
|
-
|
|
4471
|
+
error: string;
|
|
4472
|
+
loading: boolean;
|
|
4473
4473
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4474
4474
|
|
|
4475
4475
|
export declare const RegisterPage: DefineComponent<Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4476
|
-
|
|
4477
|
-
|
|
4476
|
+
"switch-to-login": () => any;
|
|
4477
|
+
"register-success": (email: string) => any;
|
|
4478
4478
|
}, string, PublicProps, Readonly<Props_25> & Readonly<{
|
|
4479
|
-
|
|
4480
|
-
|
|
4479
|
+
"onSwitch-to-login"?: (() => any) | undefined;
|
|
4480
|
+
"onRegister-success"?: ((email: string) => any) | undefined;
|
|
4481
4481
|
}>, {
|
|
4482
|
-
|
|
4482
|
+
initialEmail: string;
|
|
4483
4483
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4484
4484
|
|
|
4485
4485
|
/**
|
|
@@ -4531,24 +4531,24 @@ export declare interface RuleCreator {
|
|
|
4531
4531
|
}
|
|
4532
4532
|
|
|
4533
4533
|
export declare const RulesManagement: DefineComponent<Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4534
|
+
view: (rule: Rule) => any;
|
|
4535
|
+
search: (query: string) => any;
|
|
4536
|
+
edit: (rule: Rule) => any;
|
|
4537
|
+
createRule: () => any;
|
|
4538
|
+
tabChange: (tabId: string) => any;
|
|
4539
|
+
pageChange: (page: number) => any;
|
|
4540
4540
|
}, string, PublicProps, Readonly<Props_6> & Readonly<{
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4541
|
+
onView?: ((rule: Rule) => any) | undefined;
|
|
4542
|
+
onSearch?: ((query: string) => any) | undefined;
|
|
4543
|
+
onEdit?: ((rule: Rule) => any) | undefined;
|
|
4544
|
+
onCreateRule?: (() => any) | undefined;
|
|
4545
|
+
onTabChange?: ((tabId: string) => any) | undefined;
|
|
4546
|
+
onPageChange?: ((page: number) => any) | undefined;
|
|
4547
4547
|
}>, {
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4548
|
+
rules: Rule[];
|
|
4549
|
+
tabs: RuleTab[];
|
|
4550
|
+
initialTab: string;
|
|
4551
|
+
totalPages: number;
|
|
4552
4552
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4553
4553
|
|
|
4554
4554
|
/**
|
|
@@ -4583,19 +4583,19 @@ export declare const scrollToBottom: (containerElement: HTMLElement | string, sm
|
|
|
4583
4583
|
export declare const scrollToElement: (targetElement: string) => void;
|
|
4584
4584
|
|
|
4585
4585
|
export declare const SearchInput: DefineComponent<SearchInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4586
|
-
|
|
4587
|
-
|
|
4586
|
+
clear: () => any;
|
|
4587
|
+
"update:searchInput": (inputValue: string | null) => any;
|
|
4588
4588
|
}, string, PublicProps, Readonly<SearchInputProps> & Readonly<{
|
|
4589
|
-
|
|
4590
|
-
|
|
4589
|
+
onClear?: (() => any) | undefined;
|
|
4590
|
+
"onUpdate:searchInput"?: ((inputValue: string | null) => any) | undefined;
|
|
4591
4591
|
}>, {
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4592
|
+
placeholder: string;
|
|
4593
|
+
showLoaderForSearch: boolean;
|
|
4594
|
+
maxCharLimit: number;
|
|
4595
|
+
showCloseButton: boolean;
|
|
4596
4596
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
4597
|
-
|
|
4598
|
-
|
|
4597
|
+
dropdownRef: HTMLDivElement;
|
|
4598
|
+
searchInput: HTMLInputElement;
|
|
4599
4599
|
}, any>;
|
|
4600
4600
|
|
|
4601
4601
|
declare interface SearchInputProps {
|
|
@@ -4612,43 +4612,43 @@ declare interface SearchInputProps {
|
|
|
4612
4612
|
export declare const SendButton: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
4613
4613
|
|
|
4614
4614
|
export declare const SimpleChatInterface: DefineComponent<__VLS_Props_10, {
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4615
|
+
addAIResponse: (content: string, changes?: {
|
|
4616
|
+
title?: string;
|
|
4617
|
+
description: string;
|
|
4618
|
+
added: number;
|
|
4619
|
+
removed: number;
|
|
4620
|
+
data?: any;
|
|
4621
|
+
}) => void;
|
|
4622
|
+
addAIResponseFromApi: (apiResponse: any) => void;
|
|
4623
4623
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4624
|
+
send: (message: string) => any;
|
|
4625
|
+
acceptChanges: (message: IChatMessage) => any;
|
|
4626
|
+
denyChanges: (message: IChatMessage) => any;
|
|
4627
|
+
textReplacement: (data: {
|
|
4628
|
+
original?: string;
|
|
4629
|
+
improved: string;
|
|
4630
|
+
stats?: any;
|
|
4631
|
+
}) => any;
|
|
4632
|
+
textCompletion: (data: {
|
|
4633
|
+
original?: string;
|
|
4634
|
+
completion: string;
|
|
4635
|
+
}) => any;
|
|
4636
4636
|
}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4637
|
+
onSend?: ((message: string) => any) | undefined;
|
|
4638
|
+
onAcceptChanges?: ((message: IChatMessage) => any) | undefined;
|
|
4639
|
+
onDenyChanges?: ((message: IChatMessage) => any) | undefined;
|
|
4640
|
+
onTextReplacement?: ((data: {
|
|
4641
|
+
original?: string;
|
|
4642
|
+
improved: string;
|
|
4643
|
+
stats?: any;
|
|
4644
|
+
}) => any) | undefined;
|
|
4645
|
+
onTextCompletion?: ((data: {
|
|
4646
|
+
original?: string;
|
|
4647
|
+
completion: string;
|
|
4648
|
+
}) => any) | undefined;
|
|
4649
4649
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
4650
|
-
|
|
4651
|
-
|
|
4650
|
+
messagesContainer: HTMLDivElement;
|
|
4651
|
+
inputRef: HTMLTextAreaElement;
|
|
4652
4652
|
}, HTMLDivElement>;
|
|
4653
4653
|
|
|
4654
4654
|
export declare const SkeletonLoader: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -4656,21 +4656,21 @@ export declare const SkeletonLoader: DefineComponent<__VLS_Props_11, {}, {}, {},
|
|
|
4656
4656
|
declare type SkeletonType = "card" | "paragraph" | "table" | "single-box" | "single-paragraph";
|
|
4657
4657
|
|
|
4658
4658
|
export declare const Slider: DefineComponent<SliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4659
|
-
|
|
4660
|
-
|
|
4659
|
+
"update:modelValue": (value: number) => any;
|
|
4660
|
+
"update:rangeValue": (range: [number, number]) => any;
|
|
4661
4661
|
}, string, PublicProps, Readonly<SliderProps> & Readonly<{
|
|
4662
|
-
|
|
4663
|
-
|
|
4662
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
4663
|
+
"onUpdate:rangeValue"?: ((range: [number, number]) => any) | undefined;
|
|
4664
4664
|
}>, {
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4665
|
+
disabled: boolean;
|
|
4666
|
+
tooltipPlacement: "top" | "bottom" | "left" | "right";
|
|
4667
|
+
range: boolean;
|
|
4668
|
+
step: number;
|
|
4669
|
+
min: number;
|
|
4670
|
+
max: number;
|
|
4671
|
+
showValue: boolean;
|
|
4672
4672
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
4673
|
-
|
|
4673
|
+
sliderTrack: HTMLDivElement;
|
|
4674
4674
|
}, HTMLDivElement>;
|
|
4675
4675
|
|
|
4676
4676
|
/**
|
|
@@ -4854,15 +4854,15 @@ export declare interface SocialButtonProps {
|
|
|
4854
4854
|
}
|
|
4855
4855
|
|
|
4856
4856
|
export declare const SocialButtons: DefineComponent<SocialButtonGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4857
|
-
|
|
4857
|
+
click: (provider: SocialProvider, event: MouseEvent) => any;
|
|
4858
4858
|
}, string, PublicProps, Readonly<SocialButtonGroupProps> & Readonly<{
|
|
4859
|
-
|
|
4859
|
+
onClick?: ((provider: SocialProvider, event: MouseEvent) => any) | undefined;
|
|
4860
4860
|
}>, {
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4861
|
+
size: SocialButtonSize;
|
|
4862
|
+
disabled: boolean;
|
|
4863
|
+
iconOnly: boolean;
|
|
4864
|
+
variant: SocialButtonVariant;
|
|
4865
|
+
layout: SocialButtonLayout;
|
|
4866
4866
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4867
4867
|
|
|
4868
4868
|
export declare type SocialButtonSize = 'sm' | 'md' | 'lg';
|
|
@@ -4910,9 +4910,9 @@ declare interface SpacemanLogoProps {
|
|
|
4910
4910
|
export declare const Spinner: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4911
4911
|
|
|
4912
4912
|
export declare const Switch: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4913
|
-
|
|
4913
|
+
"update:modelValue": (...args: any[]) => void;
|
|
4914
4914
|
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
4915
|
-
|
|
4915
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4916
4916
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
4917
4917
|
|
|
4918
4918
|
export declare const SwitchSlot: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
@@ -5008,247 +5008,247 @@ export declare type TestResult = {
|
|
|
5008
5008
|
};
|
|
5009
5009
|
|
|
5010
5010
|
declare const Text_2: DefineComponent<Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_14> & Readonly<{}>, {
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5011
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
5012
|
+
variant: string;
|
|
5013
|
+
markdown: boolean;
|
|
5014
|
+
isHtml: boolean;
|
|
5015
5015
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5016
5016
|
export { Text_2 as Text }
|
|
5017
5017
|
|
|
5018
5018
|
export declare const TextAreaInputField: DefineComponent<Props_30, {
|
|
5019
|
-
|
|
5019
|
+
focus: () => void;
|
|
5020
5020
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5021
|
+
blur: (event: FocusEvent) => any;
|
|
5022
|
+
focus: (event: FocusEvent) => any;
|
|
5023
|
+
input: (value: string) => any;
|
|
5024
|
+
"update:modelValue": (value: string) => any;
|
|
5025
|
+
"ask-ai": (content: string) => any;
|
|
5026
|
+
expand: (content: string) => any;
|
|
5027
|
+
"remove-tag": (index: number) => any;
|
|
5028
|
+
"tooltip-click": () => any;
|
|
5029
|
+
"add-tag": (tag: string) => any;
|
|
5030
|
+
"tags-click": () => any;
|
|
5031
5031
|
}, string, PublicProps, Readonly<Props_30> & Readonly<{
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5032
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
5033
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
5034
|
+
onInput?: ((value: string) => any) | undefined;
|
|
5035
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5036
|
+
"onAsk-ai"?: ((content: string) => any) | undefined;
|
|
5037
|
+
onExpand?: ((content: string) => any) | undefined;
|
|
5038
|
+
"onRemove-tag"?: ((index: number) => any) | undefined;
|
|
5039
|
+
"onTooltip-click"?: (() => any) | undefined;
|
|
5040
|
+
"onAdd-tag"?: ((tag: string) => any) | undefined;
|
|
5041
|
+
"onTags-click"?: (() => any) | undefined;
|
|
5042
5042
|
}>, {
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5043
|
+
label: string;
|
|
5044
|
+
placeholder: string;
|
|
5045
|
+
disabled: boolean;
|
|
5046
|
+
tags: string[];
|
|
5047
|
+
tooltipText: string;
|
|
5048
|
+
modelValue: string;
|
|
5049
|
+
readonly: boolean;
|
|
5050
|
+
required: boolean;
|
|
5051
|
+
hasError: boolean;
|
|
5052
|
+
errorMessage: string;
|
|
5053
|
+
openaiApiKey: string;
|
|
5054
|
+
openaiModel: string;
|
|
5055
|
+
openaiOrganization: string;
|
|
5056
|
+
showTooltip: boolean;
|
|
5057
|
+
showAiButton: boolean;
|
|
5058
|
+
showTags: boolean;
|
|
5059
|
+
showAddTagsPlaceholder: boolean;
|
|
5060
|
+
addTagsPlaceholder: string;
|
|
5061
|
+
hintText: string;
|
|
5062
|
+
modalTitle: string;
|
|
5063
|
+
modalDescription: string;
|
|
5064
|
+
showUnderlines: boolean;
|
|
5065
|
+
dynamicTitle: string;
|
|
5066
|
+
showHint: boolean;
|
|
5067
|
+
diffMode: boolean;
|
|
5068
|
+
oldText: string;
|
|
5069
|
+
newText: string;
|
|
5070
|
+
tagsOnly: boolean;
|
|
5071
5071
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5099
|
-
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
5114
|
-
|
|
5115
|
-
|
|
5116
|
-
|
|
5117
|
-
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
|
|
5179
|
-
|
|
5180
|
-
|
|
5181
|
-
|
|
5182
|
-
|
|
5183
|
-
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
|
|
5191
|
-
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5072
|
+
textareaRef: HTMLTextAreaElement;
|
|
5073
|
+
aiModalRef: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
5074
|
+
isVisible: {
|
|
5075
|
+
type: BooleanConstructor;
|
|
5076
|
+
required: true;
|
|
5077
|
+
};
|
|
5078
|
+
title: {
|
|
5079
|
+
type: StringConstructor;
|
|
5080
|
+
default: string;
|
|
5081
|
+
};
|
|
5082
|
+
description: {
|
|
5083
|
+
type: StringConstructor;
|
|
5084
|
+
default: string;
|
|
5085
|
+
};
|
|
5086
|
+
initialContent: {
|
|
5087
|
+
type: StringConstructor;
|
|
5088
|
+
default: string;
|
|
5089
|
+
};
|
|
5090
|
+
openaiApiKey: {
|
|
5091
|
+
type: StringConstructor;
|
|
5092
|
+
default: string;
|
|
5093
|
+
};
|
|
5094
|
+
openaiModel: {
|
|
5095
|
+
type: StringConstructor;
|
|
5096
|
+
default: string;
|
|
5097
|
+
};
|
|
5098
|
+
openaiOrganization: {
|
|
5099
|
+
type: StringConstructor;
|
|
5100
|
+
default: string;
|
|
5101
|
+
};
|
|
5102
|
+
}>> & Readonly<{
|
|
5103
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
5104
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
5105
|
+
onSave?: ((...args: any[]) => any) | undefined;
|
|
5106
|
+
onAskAI?: ((...args: any[]) => any) | undefined;
|
|
5107
|
+
onToggleAI?: ((...args: any[]) => any) | undefined;
|
|
5108
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5109
|
+
cancel: (...args: any[]) => void;
|
|
5110
|
+
close: (...args: any[]) => void;
|
|
5111
|
+
save: (...args: any[]) => void;
|
|
5112
|
+
askAI: (...args: any[]) => void;
|
|
5113
|
+
toggleAI: (...args: any[]) => void;
|
|
5114
|
+
}, PublicProps, {
|
|
5115
|
+
title: string;
|
|
5116
|
+
description: string;
|
|
5117
|
+
openaiApiKey: string;
|
|
5118
|
+
initialContent: string;
|
|
5119
|
+
openaiModel: string;
|
|
5120
|
+
openaiOrganization: string;
|
|
5121
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5122
|
+
chatRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
5123
|
+
placeholder?: string;
|
|
5124
|
+
messages?: IChatMessage[];
|
|
5125
|
+
enableAI?: boolean;
|
|
5126
|
+
openaiApiKey?: string;
|
|
5127
|
+
textBoxContent?: string;
|
|
5128
|
+
}> & Readonly<{
|
|
5129
|
+
onSend?: ((message: string) => any) | undefined;
|
|
5130
|
+
onAcceptChanges?: ((message: IChatMessage) => any) | undefined;
|
|
5131
|
+
onDenyChanges?: ((message: IChatMessage) => any) | undefined;
|
|
5132
|
+
onTextReplacement?: ((data: {
|
|
5133
|
+
original?: string;
|
|
5134
|
+
improved: string;
|
|
5135
|
+
stats?: any;
|
|
5136
|
+
}) => any) | undefined;
|
|
5137
|
+
onTextCompletion?: ((data: {
|
|
5138
|
+
original?: string;
|
|
5139
|
+
completion: string;
|
|
5140
|
+
}) => any) | undefined;
|
|
5141
|
+
}>, {
|
|
5142
|
+
addAIResponse: (content: string, changes?: {
|
|
5143
|
+
title?: string;
|
|
5144
|
+
description: string;
|
|
5145
|
+
added: number;
|
|
5146
|
+
removed: number;
|
|
5147
|
+
data?: any;
|
|
5148
|
+
}) => void;
|
|
5149
|
+
addAIResponseFromApi: (apiResponse: any) => void;
|
|
5150
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5151
|
+
send: (message: string) => any;
|
|
5152
|
+
acceptChanges: (message: IChatMessage) => any;
|
|
5153
|
+
denyChanges: (message: IChatMessage) => any;
|
|
5154
|
+
textReplacement: (data: {
|
|
5155
|
+
original?: string;
|
|
5156
|
+
improved: string;
|
|
5157
|
+
stats?: any;
|
|
5158
|
+
}) => any;
|
|
5159
|
+
textCompletion: (data: {
|
|
5160
|
+
original?: string;
|
|
5161
|
+
completion: string;
|
|
5162
|
+
}) => any;
|
|
5163
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5164
|
+
messagesContainer: HTMLDivElement;
|
|
5165
|
+
inputRef: HTMLTextAreaElement;
|
|
5166
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
5167
|
+
P: {};
|
|
5168
|
+
B: {};
|
|
5169
|
+
D: {};
|
|
5170
|
+
C: {};
|
|
5171
|
+
M: {};
|
|
5172
|
+
Defaults: {};
|
|
5173
|
+
}, Readonly<{
|
|
5174
|
+
placeholder?: string;
|
|
5175
|
+
messages?: IChatMessage[];
|
|
5176
|
+
enableAI?: boolean;
|
|
5177
|
+
openaiApiKey?: string;
|
|
5178
|
+
textBoxContent?: string;
|
|
5179
|
+
}> & Readonly<{
|
|
5180
|
+
onSend?: ((message: string) => any) | undefined;
|
|
5181
|
+
onAcceptChanges?: ((message: IChatMessage) => any) | undefined;
|
|
5182
|
+
onDenyChanges?: ((message: IChatMessage) => any) | undefined;
|
|
5183
|
+
onTextReplacement?: ((data: {
|
|
5184
|
+
original?: string;
|
|
5185
|
+
improved: string;
|
|
5186
|
+
stats?: any;
|
|
5187
|
+
}) => any) | undefined;
|
|
5188
|
+
onTextCompletion?: ((data: {
|
|
5189
|
+
original?: string;
|
|
5190
|
+
completion: string;
|
|
5191
|
+
}) => any) | undefined;
|
|
5192
|
+
}>, {
|
|
5193
|
+
addAIResponse: (content: string, changes?: {
|
|
5194
|
+
title?: string;
|
|
5195
|
+
description: string;
|
|
5196
|
+
added: number;
|
|
5197
|
+
removed: number;
|
|
5198
|
+
data?: any;
|
|
5199
|
+
}) => void;
|
|
5200
|
+
addAIResponseFromApi: (apiResponse: any) => void;
|
|
5201
|
+
}, {}, {}, {}, {}> | null;
|
|
5202
|
+
}, any, ComponentProvideOptions, {
|
|
5203
|
+
P: {};
|
|
5204
|
+
B: {};
|
|
5205
|
+
D: {};
|
|
5206
|
+
C: {};
|
|
5207
|
+
M: {};
|
|
5208
|
+
Defaults: {};
|
|
5209
|
+
}, Readonly<ExtractPropTypes< {
|
|
5210
|
+
isVisible: {
|
|
5211
|
+
type: BooleanConstructor;
|
|
5212
|
+
required: true;
|
|
5213
|
+
};
|
|
5214
|
+
title: {
|
|
5215
|
+
type: StringConstructor;
|
|
5216
|
+
default: string;
|
|
5217
|
+
};
|
|
5218
|
+
description: {
|
|
5219
|
+
type: StringConstructor;
|
|
5220
|
+
default: string;
|
|
5221
|
+
};
|
|
5222
|
+
initialContent: {
|
|
5223
|
+
type: StringConstructor;
|
|
5224
|
+
default: string;
|
|
5225
|
+
};
|
|
5226
|
+
openaiApiKey: {
|
|
5227
|
+
type: StringConstructor;
|
|
5228
|
+
default: string;
|
|
5229
|
+
};
|
|
5230
|
+
openaiModel: {
|
|
5231
|
+
type: StringConstructor;
|
|
5232
|
+
default: string;
|
|
5233
|
+
};
|
|
5234
|
+
openaiOrganization: {
|
|
5235
|
+
type: StringConstructor;
|
|
5236
|
+
default: string;
|
|
5237
|
+
};
|
|
5238
|
+
}>> & Readonly<{
|
|
5239
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
5240
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
5241
|
+
onSave?: ((...args: any[]) => any) | undefined;
|
|
5242
|
+
onAskAI?: ((...args: any[]) => any) | undefined;
|
|
5243
|
+
onToggleAI?: ((...args: any[]) => any) | undefined;
|
|
5244
|
+
}>, {}, {}, {}, {}, {
|
|
5245
|
+
title: string;
|
|
5246
|
+
description: string;
|
|
5247
|
+
openaiApiKey: string;
|
|
5248
|
+
initialContent: string;
|
|
5249
|
+
openaiModel: string;
|
|
5250
|
+
openaiOrganization: string;
|
|
5251
|
+
}> | null;
|
|
5252
5252
|
}, HTMLDivElement>;
|
|
5253
5253
|
|
|
5254
5254
|
declare interface TextContent {
|
|
@@ -5381,19 +5381,19 @@ export declare interface UrlInputProps extends BaseInputFieldProps {
|
|
|
5381
5381
|
*/
|
|
5382
5382
|
export declare function useErrorHandler(options?: UseErrorHandlerOptions): {
|
|
5383
5383
|
errors: ComputedRef< {
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5384
|
+
message: string;
|
|
5385
|
+
code?: string | number | undefined;
|
|
5386
|
+
stack?: string | undefined;
|
|
5387
|
+
timestamp: string;
|
|
5388
|
+
context?: Record<string, unknown> | undefined;
|
|
5389
5389
|
}[]>;
|
|
5390
5390
|
hasErrors: ComputedRef<boolean>;
|
|
5391
5391
|
latestError: ComputedRef< {
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5392
|
+
message: string;
|
|
5393
|
+
code?: string | number | undefined;
|
|
5394
|
+
stack?: string | undefined;
|
|
5395
|
+
timestamp: string;
|
|
5396
|
+
context?: Record<string, unknown> | undefined;
|
|
5397
5397
|
}>;
|
|
5398
5398
|
isLoading: ComputedRef<boolean>;
|
|
5399
5399
|
retryCount: ComputedRef<number>;
|
|
@@ -5422,10 +5422,10 @@ export declare interface UseErrorHandlerOptions {
|
|
|
5422
5422
|
*/
|
|
5423
5423
|
export declare function usePerformance(options?: UsePerformanceOptions): {
|
|
5424
5424
|
metrics: ComputedRef< {
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5425
|
+
renderTime: number;
|
|
5426
|
+
componentCount: number;
|
|
5427
|
+
memoryUsage?: number | undefined;
|
|
5428
|
+
timestamp: string;
|
|
5429
5429
|
}[]>;
|
|
5430
5430
|
isTracking: ComputedRef<boolean>;
|
|
5431
5431
|
averageRenderTime: ComputedRef<number>;
|
|
@@ -5469,17 +5469,17 @@ export declare interface UsePerformanceOptions {
|
|
|
5469
5469
|
|
|
5470
5470
|
export declare const useSnackBar: () => {
|
|
5471
5471
|
snackQueue: Ref< {
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5472
|
+
title: string;
|
|
5473
|
+
message: string;
|
|
5474
|
+
toastType: ToastType;
|
|
5475
|
+
duration?: number | undefined;
|
|
5476
|
+
toastContainerSize?: "full" | "half" | "side70" | undefined;
|
|
5477
5477
|
}[], Snack[] | {
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5478
|
+
title: string;
|
|
5479
|
+
message: string;
|
|
5480
|
+
toastType: ToastType;
|
|
5481
|
+
duration?: number | undefined;
|
|
5482
|
+
toastContainerSize?: "full" | "half" | "side70" | undefined;
|
|
5483
5483
|
}[]>;
|
|
5484
5484
|
addSnackBar: (snack: Snack) => void;
|
|
5485
5485
|
removeSnackBar: (snack: Snack) => void;
|
|
@@ -5489,515 +5489,515 @@ export declare const useThemeService: () => {
|
|
|
5489
5489
|
currentBrandId: Readonly<Ref<string, string>>;
|
|
5490
5490
|
currentModeId: Readonly<Ref<string, string>>;
|
|
5491
5491
|
currentProject: Readonly<Ref< {
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5492
|
+
readonly name: string;
|
|
5493
|
+
readonly id: string;
|
|
5494
|
+
readonly version: number;
|
|
5495
|
+
readonly colorModes: readonly {
|
|
5496
|
+
readonly name: string;
|
|
5497
|
+
readonly id: string;
|
|
5498
|
+
readonly textColors: {
|
|
5499
|
+
readonly id: string;
|
|
5500
|
+
readonly name: string;
|
|
5501
|
+
readonly colors: readonly {
|
|
5502
|
+
readonly name: string;
|
|
5503
|
+
readonly id: string;
|
|
5504
|
+
readonly version: number;
|
|
5505
|
+
readonly value: string;
|
|
5506
|
+
}[];
|
|
5507
|
+
};
|
|
5508
|
+
readonly foregroundColors: {
|
|
5509
|
+
readonly id: string;
|
|
5510
|
+
readonly name: string;
|
|
5511
|
+
readonly colors: readonly {
|
|
5512
|
+
readonly name: string;
|
|
5513
|
+
readonly id: string;
|
|
5514
|
+
readonly version: number;
|
|
5515
|
+
readonly value: string;
|
|
5516
|
+
}[];
|
|
5517
|
+
};
|
|
5518
|
+
readonly backgroundColor: {
|
|
5519
|
+
readonly id: string;
|
|
5520
|
+
readonly name: string;
|
|
5521
|
+
readonly colors: readonly {
|
|
5522
|
+
readonly name: string;
|
|
5523
|
+
readonly id: string;
|
|
5524
|
+
readonly version: number;
|
|
5525
|
+
readonly value: string;
|
|
5526
|
+
}[];
|
|
5527
|
+
};
|
|
5528
|
+
readonly borderColor: {
|
|
5529
|
+
readonly id: string;
|
|
5530
|
+
readonly name: string;
|
|
5531
|
+
readonly colors: readonly {
|
|
5532
|
+
readonly name: string;
|
|
5533
|
+
readonly id: string;
|
|
5534
|
+
readonly version: number;
|
|
5535
|
+
readonly value: string;
|
|
5536
|
+
}[];
|
|
5537
|
+
};
|
|
5538
|
+
readonly utilityColors: {
|
|
5539
|
+
readonly id: string;
|
|
5540
|
+
readonly name: string;
|
|
5541
|
+
readonly colors: readonly {
|
|
5542
|
+
readonly name: string;
|
|
5543
|
+
readonly id: string;
|
|
5544
|
+
readonly version: number;
|
|
5545
|
+
readonly value: string;
|
|
5546
|
+
}[];
|
|
5547
|
+
};
|
|
5548
|
+
}[];
|
|
5549
|
+
readonly fontThemes?: readonly {
|
|
5550
|
+
readonly name: string;
|
|
5551
|
+
readonly id: string;
|
|
5552
|
+
readonly version: number;
|
|
5553
|
+
readonly fonts: {
|
|
5554
|
+
readonly [x: string]: {
|
|
5555
|
+
readonly name: string;
|
|
5556
|
+
readonly id: string;
|
|
5557
|
+
readonly version: number;
|
|
5558
|
+
readonly properties: {
|
|
5559
|
+
readonly [x: string]: string | number;
|
|
5560
|
+
};
|
|
5561
|
+
};
|
|
5562
|
+
};
|
|
5563
|
+
}[] | undefined;
|
|
5564
|
+
readonly cornerRadiusThemes?: readonly {
|
|
5565
|
+
readonly name: string;
|
|
5566
|
+
readonly id: string;
|
|
5567
|
+
readonly version: number;
|
|
5568
|
+
readonly cornerRadius: {
|
|
5569
|
+
readonly [x: string]: string | number;
|
|
5570
|
+
};
|
|
5571
|
+
}[] | undefined;
|
|
5572
5572
|
} | null, {
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
5619
|
-
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5648
|
-
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
|
|
5652
|
-
|
|
5573
|
+
readonly name: string;
|
|
5574
|
+
readonly id: string;
|
|
5575
|
+
readonly version: number;
|
|
5576
|
+
readonly colorModes: readonly {
|
|
5577
|
+
readonly name: string;
|
|
5578
|
+
readonly id: string;
|
|
5579
|
+
readonly textColors: {
|
|
5580
|
+
readonly id: string;
|
|
5581
|
+
readonly name: string;
|
|
5582
|
+
readonly colors: readonly {
|
|
5583
|
+
readonly name: string;
|
|
5584
|
+
readonly id: string;
|
|
5585
|
+
readonly version: number;
|
|
5586
|
+
readonly value: string;
|
|
5587
|
+
}[];
|
|
5588
|
+
};
|
|
5589
|
+
readonly foregroundColors: {
|
|
5590
|
+
readonly id: string;
|
|
5591
|
+
readonly name: string;
|
|
5592
|
+
readonly colors: readonly {
|
|
5593
|
+
readonly name: string;
|
|
5594
|
+
readonly id: string;
|
|
5595
|
+
readonly version: number;
|
|
5596
|
+
readonly value: string;
|
|
5597
|
+
}[];
|
|
5598
|
+
};
|
|
5599
|
+
readonly backgroundColor: {
|
|
5600
|
+
readonly id: string;
|
|
5601
|
+
readonly name: string;
|
|
5602
|
+
readonly colors: readonly {
|
|
5603
|
+
readonly name: string;
|
|
5604
|
+
readonly id: string;
|
|
5605
|
+
readonly version: number;
|
|
5606
|
+
readonly value: string;
|
|
5607
|
+
}[];
|
|
5608
|
+
};
|
|
5609
|
+
readonly borderColor: {
|
|
5610
|
+
readonly id: string;
|
|
5611
|
+
readonly name: string;
|
|
5612
|
+
readonly colors: readonly {
|
|
5613
|
+
readonly name: string;
|
|
5614
|
+
readonly id: string;
|
|
5615
|
+
readonly version: number;
|
|
5616
|
+
readonly value: string;
|
|
5617
|
+
}[];
|
|
5618
|
+
};
|
|
5619
|
+
readonly utilityColors: {
|
|
5620
|
+
readonly id: string;
|
|
5621
|
+
readonly name: string;
|
|
5622
|
+
readonly colors: readonly {
|
|
5623
|
+
readonly name: string;
|
|
5624
|
+
readonly id: string;
|
|
5625
|
+
readonly version: number;
|
|
5626
|
+
readonly value: string;
|
|
5627
|
+
}[];
|
|
5628
|
+
};
|
|
5629
|
+
}[];
|
|
5630
|
+
readonly fontThemes?: readonly {
|
|
5631
|
+
readonly name: string;
|
|
5632
|
+
readonly id: string;
|
|
5633
|
+
readonly version: number;
|
|
5634
|
+
readonly fonts: {
|
|
5635
|
+
readonly [x: string]: {
|
|
5636
|
+
readonly name: string;
|
|
5637
|
+
readonly id: string;
|
|
5638
|
+
readonly version: number;
|
|
5639
|
+
readonly properties: {
|
|
5640
|
+
readonly [x: string]: string | number;
|
|
5641
|
+
};
|
|
5642
|
+
};
|
|
5643
|
+
};
|
|
5644
|
+
}[] | undefined;
|
|
5645
|
+
readonly cornerRadiusThemes?: readonly {
|
|
5646
|
+
readonly name: string;
|
|
5647
|
+
readonly id: string;
|
|
5648
|
+
readonly version: number;
|
|
5649
|
+
readonly cornerRadius: {
|
|
5650
|
+
readonly [x: string]: string | number;
|
|
5651
|
+
};
|
|
5652
|
+
}[] | undefined;
|
|
5653
5653
|
} | null>>;
|
|
5654
5654
|
currentColorMode: Readonly<Ref< {
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5680
|
-
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
|
|
5692
|
-
|
|
5693
|
-
|
|
5694
|
-
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
|
|
5700
|
-
|
|
5701
|
-
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5655
|
+
readonly name: string;
|
|
5656
|
+
readonly id: string;
|
|
5657
|
+
readonly textColors: {
|
|
5658
|
+
readonly id: string;
|
|
5659
|
+
readonly name: string;
|
|
5660
|
+
readonly colors: readonly {
|
|
5661
|
+
readonly name: string;
|
|
5662
|
+
readonly id: string;
|
|
5663
|
+
readonly version: number;
|
|
5664
|
+
readonly value: string;
|
|
5665
|
+
}[];
|
|
5666
|
+
};
|
|
5667
|
+
readonly foregroundColors: {
|
|
5668
|
+
readonly id: string;
|
|
5669
|
+
readonly name: string;
|
|
5670
|
+
readonly colors: readonly {
|
|
5671
|
+
readonly name: string;
|
|
5672
|
+
readonly id: string;
|
|
5673
|
+
readonly version: number;
|
|
5674
|
+
readonly value: string;
|
|
5675
|
+
}[];
|
|
5676
|
+
};
|
|
5677
|
+
readonly backgroundColor: {
|
|
5678
|
+
readonly id: string;
|
|
5679
|
+
readonly name: string;
|
|
5680
|
+
readonly colors: readonly {
|
|
5681
|
+
readonly name: string;
|
|
5682
|
+
readonly id: string;
|
|
5683
|
+
readonly version: number;
|
|
5684
|
+
readonly value: string;
|
|
5685
|
+
}[];
|
|
5686
|
+
};
|
|
5687
|
+
readonly borderColor: {
|
|
5688
|
+
readonly id: string;
|
|
5689
|
+
readonly name: string;
|
|
5690
|
+
readonly colors: readonly {
|
|
5691
|
+
readonly name: string;
|
|
5692
|
+
readonly id: string;
|
|
5693
|
+
readonly version: number;
|
|
5694
|
+
readonly value: string;
|
|
5695
|
+
}[];
|
|
5696
|
+
};
|
|
5697
|
+
readonly utilityColors: {
|
|
5698
|
+
readonly id: string;
|
|
5699
|
+
readonly name: string;
|
|
5700
|
+
readonly colors: readonly {
|
|
5701
|
+
readonly name: string;
|
|
5702
|
+
readonly id: string;
|
|
5703
|
+
readonly version: number;
|
|
5704
|
+
readonly value: string;
|
|
5705
|
+
}[];
|
|
5706
|
+
};
|
|
5707
5707
|
} | null, {
|
|
5708
|
-
|
|
5709
|
-
|
|
5710
|
-
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5738
|
-
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5708
|
+
readonly name: string;
|
|
5709
|
+
readonly id: string;
|
|
5710
|
+
readonly textColors: {
|
|
5711
|
+
readonly id: string;
|
|
5712
|
+
readonly name: string;
|
|
5713
|
+
readonly colors: readonly {
|
|
5714
|
+
readonly name: string;
|
|
5715
|
+
readonly id: string;
|
|
5716
|
+
readonly version: number;
|
|
5717
|
+
readonly value: string;
|
|
5718
|
+
}[];
|
|
5719
|
+
};
|
|
5720
|
+
readonly foregroundColors: {
|
|
5721
|
+
readonly id: string;
|
|
5722
|
+
readonly name: string;
|
|
5723
|
+
readonly colors: readonly {
|
|
5724
|
+
readonly name: string;
|
|
5725
|
+
readonly id: string;
|
|
5726
|
+
readonly version: number;
|
|
5727
|
+
readonly value: string;
|
|
5728
|
+
}[];
|
|
5729
|
+
};
|
|
5730
|
+
readonly backgroundColor: {
|
|
5731
|
+
readonly id: string;
|
|
5732
|
+
readonly name: string;
|
|
5733
|
+
readonly colors: readonly {
|
|
5734
|
+
readonly name: string;
|
|
5735
|
+
readonly id: string;
|
|
5736
|
+
readonly version: number;
|
|
5737
|
+
readonly value: string;
|
|
5738
|
+
}[];
|
|
5739
|
+
};
|
|
5740
|
+
readonly borderColor: {
|
|
5741
|
+
readonly id: string;
|
|
5742
|
+
readonly name: string;
|
|
5743
|
+
readonly colors: readonly {
|
|
5744
|
+
readonly name: string;
|
|
5745
|
+
readonly id: string;
|
|
5746
|
+
readonly version: number;
|
|
5747
|
+
readonly value: string;
|
|
5748
|
+
}[];
|
|
5749
|
+
};
|
|
5750
|
+
readonly utilityColors: {
|
|
5751
|
+
readonly id: string;
|
|
5752
|
+
readonly name: string;
|
|
5753
|
+
readonly colors: readonly {
|
|
5754
|
+
readonly name: string;
|
|
5755
|
+
readonly id: string;
|
|
5756
|
+
readonly version: number;
|
|
5757
|
+
readonly value: string;
|
|
5758
|
+
}[];
|
|
5759
|
+
};
|
|
5760
5760
|
} | null>>;
|
|
5761
5761
|
currentFontTheme: Readonly<Ref< {
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5762
|
+
readonly name: string;
|
|
5763
|
+
readonly id: string;
|
|
5764
|
+
readonly version: number;
|
|
5765
|
+
readonly fonts: {
|
|
5766
|
+
readonly [x: string]: {
|
|
5767
|
+
readonly name: string;
|
|
5768
|
+
readonly id: string;
|
|
5769
|
+
readonly version: number;
|
|
5770
|
+
readonly properties: {
|
|
5771
|
+
readonly [x: string]: string | number;
|
|
5772
|
+
};
|
|
5773
|
+
};
|
|
5774
|
+
};
|
|
5775
5775
|
} | null, {
|
|
5776
|
-
|
|
5777
|
-
|
|
5778
|
-
|
|
5779
|
-
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5776
|
+
readonly name: string;
|
|
5777
|
+
readonly id: string;
|
|
5778
|
+
readonly version: number;
|
|
5779
|
+
readonly fonts: {
|
|
5780
|
+
readonly [x: string]: {
|
|
5781
|
+
readonly name: string;
|
|
5782
|
+
readonly id: string;
|
|
5783
|
+
readonly version: number;
|
|
5784
|
+
readonly properties: {
|
|
5785
|
+
readonly [x: string]: string | number;
|
|
5786
|
+
};
|
|
5787
|
+
};
|
|
5788
|
+
};
|
|
5789
5789
|
} | null>>;
|
|
5790
5790
|
currentCornerRadiusTheme: Readonly<Ref< {
|
|
5791
|
-
|
|
5792
|
-
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5791
|
+
readonly name: string;
|
|
5792
|
+
readonly id: string;
|
|
5793
|
+
readonly version: number;
|
|
5794
|
+
readonly cornerRadius: {
|
|
5795
|
+
readonly [x: string]: string | number;
|
|
5796
|
+
};
|
|
5797
5797
|
} | null, {
|
|
5798
|
-
|
|
5799
|
-
|
|
5800
|
-
|
|
5801
|
-
|
|
5802
|
-
|
|
5803
|
-
|
|
5798
|
+
readonly name: string;
|
|
5799
|
+
readonly id: string;
|
|
5800
|
+
readonly version: number;
|
|
5801
|
+
readonly cornerRadius: {
|
|
5802
|
+
readonly [x: string]: string | number;
|
|
5803
|
+
};
|
|
5804
5804
|
} | null>>;
|
|
5805
5805
|
configuration: Readonly<Ref< {
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5815
|
-
|
|
5816
|
-
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
|
|
5829
|
-
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
|
|
5838
|
-
|
|
5839
|
-
|
|
5840
|
-
|
|
5841
|
-
|
|
5842
|
-
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
|
|
5852
|
-
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
|
|
5858
|
-
|
|
5859
|
-
|
|
5860
|
-
|
|
5861
|
-
|
|
5862
|
-
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
5877
|
-
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5806
|
+
readonly metadata: {
|
|
5807
|
+
readonly generatedAt: string;
|
|
5808
|
+
readonly source: string;
|
|
5809
|
+
readonly totalProjects: number;
|
|
5810
|
+
readonly note: string;
|
|
5811
|
+
};
|
|
5812
|
+
readonly projects: readonly {
|
|
5813
|
+
readonly name: string;
|
|
5814
|
+
readonly id: string;
|
|
5815
|
+
readonly version: number;
|
|
5816
|
+
readonly colorModes: readonly {
|
|
5817
|
+
readonly name: string;
|
|
5818
|
+
readonly id: string;
|
|
5819
|
+
readonly textColors: {
|
|
5820
|
+
readonly id: string;
|
|
5821
|
+
readonly name: string;
|
|
5822
|
+
readonly colors: readonly {
|
|
5823
|
+
readonly name: string;
|
|
5824
|
+
readonly id: string;
|
|
5825
|
+
readonly version: number;
|
|
5826
|
+
readonly value: string;
|
|
5827
|
+
}[];
|
|
5828
|
+
};
|
|
5829
|
+
readonly foregroundColors: {
|
|
5830
|
+
readonly id: string;
|
|
5831
|
+
readonly name: string;
|
|
5832
|
+
readonly colors: readonly {
|
|
5833
|
+
readonly name: string;
|
|
5834
|
+
readonly id: string;
|
|
5835
|
+
readonly version: number;
|
|
5836
|
+
readonly value: string;
|
|
5837
|
+
}[];
|
|
5838
|
+
};
|
|
5839
|
+
readonly backgroundColor: {
|
|
5840
|
+
readonly id: string;
|
|
5841
|
+
readonly name: string;
|
|
5842
|
+
readonly colors: readonly {
|
|
5843
|
+
readonly name: string;
|
|
5844
|
+
readonly id: string;
|
|
5845
|
+
readonly version: number;
|
|
5846
|
+
readonly value: string;
|
|
5847
|
+
}[];
|
|
5848
|
+
};
|
|
5849
|
+
readonly borderColor: {
|
|
5850
|
+
readonly id: string;
|
|
5851
|
+
readonly name: string;
|
|
5852
|
+
readonly colors: readonly {
|
|
5853
|
+
readonly name: string;
|
|
5854
|
+
readonly id: string;
|
|
5855
|
+
readonly version: number;
|
|
5856
|
+
readonly value: string;
|
|
5857
|
+
}[];
|
|
5858
|
+
};
|
|
5859
|
+
readonly utilityColors: {
|
|
5860
|
+
readonly id: string;
|
|
5861
|
+
readonly name: string;
|
|
5862
|
+
readonly colors: readonly {
|
|
5863
|
+
readonly name: string;
|
|
5864
|
+
readonly id: string;
|
|
5865
|
+
readonly version: number;
|
|
5866
|
+
readonly value: string;
|
|
5867
|
+
}[];
|
|
5868
|
+
};
|
|
5869
|
+
}[];
|
|
5870
|
+
readonly fontThemes?: readonly {
|
|
5871
|
+
readonly name: string;
|
|
5872
|
+
readonly id: string;
|
|
5873
|
+
readonly version: number;
|
|
5874
|
+
readonly fonts: {
|
|
5875
|
+
readonly [x: string]: {
|
|
5876
|
+
readonly name: string;
|
|
5877
|
+
readonly id: string;
|
|
5878
|
+
readonly version: number;
|
|
5879
|
+
readonly properties: {
|
|
5880
|
+
readonly [x: string]: string | number;
|
|
5881
|
+
};
|
|
5882
|
+
};
|
|
5883
|
+
};
|
|
5884
|
+
}[] | undefined;
|
|
5885
|
+
readonly cornerRadiusThemes?: readonly {
|
|
5886
|
+
readonly name: string;
|
|
5887
|
+
readonly id: string;
|
|
5888
|
+
readonly version: number;
|
|
5889
|
+
readonly cornerRadius: {
|
|
5890
|
+
readonly [x: string]: string | number;
|
|
5891
|
+
};
|
|
5892
|
+
}[] | undefined;
|
|
5893
|
+
}[];
|
|
5894
5894
|
} | null, {
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
5935
|
-
|
|
5936
|
-
|
|
5937
|
-
|
|
5938
|
-
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
|
|
5955
|
-
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5895
|
+
readonly metadata: {
|
|
5896
|
+
readonly generatedAt: string;
|
|
5897
|
+
readonly source: string;
|
|
5898
|
+
readonly totalProjects: number;
|
|
5899
|
+
readonly note: string;
|
|
5900
|
+
};
|
|
5901
|
+
readonly projects: readonly {
|
|
5902
|
+
readonly name: string;
|
|
5903
|
+
readonly id: string;
|
|
5904
|
+
readonly version: number;
|
|
5905
|
+
readonly colorModes: readonly {
|
|
5906
|
+
readonly name: string;
|
|
5907
|
+
readonly id: string;
|
|
5908
|
+
readonly textColors: {
|
|
5909
|
+
readonly id: string;
|
|
5910
|
+
readonly name: string;
|
|
5911
|
+
readonly colors: readonly {
|
|
5912
|
+
readonly name: string;
|
|
5913
|
+
readonly id: string;
|
|
5914
|
+
readonly version: number;
|
|
5915
|
+
readonly value: string;
|
|
5916
|
+
}[];
|
|
5917
|
+
};
|
|
5918
|
+
readonly foregroundColors: {
|
|
5919
|
+
readonly id: string;
|
|
5920
|
+
readonly name: string;
|
|
5921
|
+
readonly colors: readonly {
|
|
5922
|
+
readonly name: string;
|
|
5923
|
+
readonly id: string;
|
|
5924
|
+
readonly version: number;
|
|
5925
|
+
readonly value: string;
|
|
5926
|
+
}[];
|
|
5927
|
+
};
|
|
5928
|
+
readonly backgroundColor: {
|
|
5929
|
+
readonly id: string;
|
|
5930
|
+
readonly name: string;
|
|
5931
|
+
readonly colors: readonly {
|
|
5932
|
+
readonly name: string;
|
|
5933
|
+
readonly id: string;
|
|
5934
|
+
readonly version: number;
|
|
5935
|
+
readonly value: string;
|
|
5936
|
+
}[];
|
|
5937
|
+
};
|
|
5938
|
+
readonly borderColor: {
|
|
5939
|
+
readonly id: string;
|
|
5940
|
+
readonly name: string;
|
|
5941
|
+
readonly colors: readonly {
|
|
5942
|
+
readonly name: string;
|
|
5943
|
+
readonly id: string;
|
|
5944
|
+
readonly version: number;
|
|
5945
|
+
readonly value: string;
|
|
5946
|
+
}[];
|
|
5947
|
+
};
|
|
5948
|
+
readonly utilityColors: {
|
|
5949
|
+
readonly id: string;
|
|
5950
|
+
readonly name: string;
|
|
5951
|
+
readonly colors: readonly {
|
|
5952
|
+
readonly name: string;
|
|
5953
|
+
readonly id: string;
|
|
5954
|
+
readonly version: number;
|
|
5955
|
+
readonly value: string;
|
|
5956
|
+
}[];
|
|
5957
|
+
};
|
|
5958
|
+
}[];
|
|
5959
|
+
readonly fontThemes?: readonly {
|
|
5960
|
+
readonly name: string;
|
|
5961
|
+
readonly id: string;
|
|
5962
|
+
readonly version: number;
|
|
5963
|
+
readonly fonts: {
|
|
5964
|
+
readonly [x: string]: {
|
|
5965
|
+
readonly name: string;
|
|
5966
|
+
readonly id: string;
|
|
5967
|
+
readonly version: number;
|
|
5968
|
+
readonly properties: {
|
|
5969
|
+
readonly [x: string]: string | number;
|
|
5970
|
+
};
|
|
5971
|
+
};
|
|
5972
|
+
};
|
|
5973
|
+
}[] | undefined;
|
|
5974
|
+
readonly cornerRadiusThemes?: readonly {
|
|
5975
|
+
readonly name: string;
|
|
5976
|
+
readonly id: string;
|
|
5977
|
+
readonly version: number;
|
|
5978
|
+
readonly cornerRadius: {
|
|
5979
|
+
readonly [x: string]: string | number;
|
|
5980
|
+
};
|
|
5981
|
+
}[] | undefined;
|
|
5982
|
+
}[];
|
|
5983
5983
|
} | null>>;
|
|
5984
5984
|
isLoading: Readonly<Ref<boolean, boolean>>;
|
|
5985
5985
|
error: Readonly<Ref<string | null, string | null>>;
|
|
5986
5986
|
availableBrands: Readonly<Ref<readonly {
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5987
|
+
readonly id: string;
|
|
5988
|
+
readonly name: string;
|
|
5989
|
+
readonly version: number;
|
|
5990
5990
|
}[], readonly {
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5991
|
+
readonly id: string;
|
|
5992
|
+
readonly name: string;
|
|
5993
|
+
readonly version: number;
|
|
5994
5994
|
}[]>>;
|
|
5995
5995
|
availableModes: Readonly<Ref<readonly {
|
|
5996
|
-
|
|
5997
|
-
|
|
5996
|
+
readonly id: string;
|
|
5997
|
+
readonly name: string;
|
|
5998
5998
|
}[], readonly {
|
|
5999
|
-
|
|
6000
|
-
|
|
5999
|
+
readonly id: string;
|
|
6000
|
+
readonly name: string;
|
|
6001
6001
|
}[]>>;
|
|
6002
6002
|
setBrand: (brandId: string) => Promise<void>;
|
|
6003
6003
|
setMode: (modeId: string) => Promise<void>;
|
|
@@ -6012,26 +6012,26 @@ export declare const useThemeService: () => {
|
|
|
6012
6012
|
|
|
6013
6013
|
export declare const useToast: () => {
|
|
6014
6014
|
toastQueue: Ref< {
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6015
|
+
message: string;
|
|
6016
|
+
toastType: "success" | "danger" | "info";
|
|
6017
|
+
duration?: number | undefined;
|
|
6018
6018
|
}[], Toast[] | {
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6019
|
+
message: string;
|
|
6020
|
+
toastType: "success" | "danger" | "info";
|
|
6021
|
+
duration?: number | undefined;
|
|
6022
6022
|
}[]>;
|
|
6023
6023
|
addToast: (toast: Toast) => void;
|
|
6024
6024
|
hasToasts: ComputedRef<boolean>;
|
|
6025
6025
|
};
|
|
6026
6026
|
|
|
6027
6027
|
export declare const VectorFrame: DefineComponent<Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6028
|
-
|
|
6028
|
+
click: (event: MouseEvent) => any;
|
|
6029
6029
|
}, string, PublicProps, Readonly<Props_7> & Readonly<{
|
|
6030
|
-
|
|
6030
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
6031
6031
|
}>, {
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6032
|
+
title: string;
|
|
6033
|
+
isSelected: boolean;
|
|
6034
|
+
badgeText: string;
|
|
6035
6035
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6036
6036
|
|
|
6037
6037
|
declare interface VectorFrameData {
|
|
@@ -6042,21 +6042,21 @@ declare interface VectorFrameData {
|
|
|
6042
6042
|
}
|
|
6043
6043
|
|
|
6044
6044
|
export declare const VectorSection: DefineComponent<Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6048
|
-
|
|
6045
|
+
searchInput: (query: string) => any;
|
|
6046
|
+
frameClick: (frame: VectorFrameData, index: number) => any;
|
|
6047
|
+
addVectorStore: () => any;
|
|
6048
|
+
showMore: () => any;
|
|
6049
6049
|
}, string, PublicProps, Readonly<Props_8> & Readonly<{
|
|
6050
|
-
|
|
6051
|
-
|
|
6052
|
-
|
|
6053
|
-
|
|
6050
|
+
onSearchInput?: ((query: string) => any) | undefined;
|
|
6051
|
+
onFrameClick?: ((frame: VectorFrameData, index: number) => any) | undefined;
|
|
6052
|
+
onAddVectorStore?: (() => any) | undefined;
|
|
6053
|
+
onShowMore?: (() => any) | undefined;
|
|
6054
6054
|
}>, {
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6055
|
+
title: string;
|
|
6056
|
+
searchPlaceholder: string;
|
|
6057
|
+
dbCount: number;
|
|
6058
|
+
frames: VectorFrameData[];
|
|
6059
|
+
maxDisplayed: number;
|
|
6060
6060
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6061
6061
|
|
|
6062
6062
|
export declare type VerticalTabSize = 'sm' | 'md';
|
|
@@ -6079,28 +6079,28 @@ declare interface Voice_2 {
|
|
|
6079
6079
|
}
|
|
6080
6080
|
|
|
6081
6081
|
export declare const VoiceList: DefineComponent<Props_9, {
|
|
6082
|
-
|
|
6083
|
-
|
|
6084
|
-
|
|
6085
|
-
|
|
6082
|
+
selectedVoiceId: Ref<string | number | null, string | number | null>;
|
|
6083
|
+
selectedVoice: ComputedRef<Voice_2 | null>;
|
|
6084
|
+
selectVoice: (id: string | number) => void;
|
|
6085
|
+
clearSelection: () => void;
|
|
6086
6086
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6087
|
-
|
|
6088
|
-
|
|
6087
|
+
selectionChange: (selectedId: string | number | null) => any;
|
|
6088
|
+
voiceClick: (voiceId: string | number, isSelected: boolean) => any;
|
|
6089
6089
|
}, string, PublicProps, Readonly<Props_9> & Readonly<{
|
|
6090
|
-
|
|
6091
|
-
|
|
6090
|
+
onSelectionChange?: ((selectedId: string | number | null) => any) | undefined;
|
|
6091
|
+
onVoiceClick?: ((voiceId: string | number, isSelected: boolean) => any) | undefined;
|
|
6092
6092
|
}>, {
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6093
|
+
title: string;
|
|
6094
|
+
showSelectedInfo: boolean;
|
|
6095
|
+
allowDeselect: boolean;
|
|
6096
6096
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6097
6097
|
|
|
6098
6098
|
export declare const VoiceSelection: DefineComponent<Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6099
|
-
|
|
6099
|
+
handleClick: (event: MouseEvent) => any;
|
|
6100
6100
|
}, string, PublicProps, Readonly<Props_10> & Readonly<{
|
|
6101
|
-
|
|
6101
|
+
onHandleClick?: ((event: MouseEvent) => any) | undefined;
|
|
6102
6102
|
}>, {
|
|
6103
|
-
|
|
6103
|
+
isSelected: boolean;
|
|
6104
6104
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6105
6105
|
|
|
6106
6106
|
export { }
|