@empathyco/x-components 6.0.0-alpha.167 → 6.0.0-alpha.169
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 +19 -0
- package/docs/API-reference/api/x-components.aiactions.fetchandsaveaisuggestionssearch.md +2 -2
- package/docs/API-reference/api/x-components.aiactions.md +1 -1
- package/docs/API-reference/api/x-components.aioverview.md +24 -16
- package/docs/API-reference/api/x-components.aixevents.aisuggestionssearchchanged.md +11 -0
- package/docs/API-reference/api/x-components.aixevents.md +1 -0
- package/docs/API-reference/api/x-components.fetchandsaveaisuggestionssearch.md +1 -1
- package/docs/API-reference/api/x-components.hierarchicalfilter.md +1 -0
- package/docs/API-reference/api/x-components.md +2 -1
- package/docs/API-reference/api/x-components.simplefilter.md +1 -0
- package/docs/API-reference/api/x-components.snippetcallbacks.md +1 -0
- package/docs/API-reference/api/x-components.trackaisuggestionssearchwire.md +13 -0
- package/docs/API-reference/components/ai/x-components.ai-overview.md +11 -9
- package/js/index.js +1 -1
- package/js/x-modules/ai/components/ai-overview.vue.js +4 -3
- package/js/x-modules/ai/components/ai-overview.vue.js.map +1 -1
- package/js/x-modules/ai/components/ai-overview.vue2.js +25 -42
- package/js/x-modules/ai/components/ai-overview.vue2.js.map +1 -1
- package/js/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.js +5 -5
- package/js/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.js.map +1 -1
- package/js/x-modules/ai/store/emitters.js +1 -0
- package/js/x-modules/ai/store/emitters.js.map +1 -1
- package/js/x-modules/ai/wiring.js +4 -4
- package/js/x-modules/ai/wiring.js.map +1 -1
- package/js/x-modules/tagging/wiring.js +9 -1
- package/js/x-modules/tagging/wiring.js.map +1 -1
- package/package.json +2 -2
- package/report/x-components.api.json +167 -62
- package/report/x-components.api.md +42 -22
- package/tagging/index.js +1 -1
- package/types/components/snippet-callbacks.vue.d.ts +1 -0
- package/types/components/snippet-callbacks.vue.d.ts.map +1 -1
- package/types/x-modules/ai/components/ai-overview.vue.d.ts +24 -87
- package/types/x-modules/ai/components/ai-overview.vue.d.ts.map +1 -1
- package/types/x-modules/ai/events.types.d.ts +2 -1
- package/types/x-modules/ai/events.types.d.ts.map +1 -1
- package/types/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.d.ts +3 -4
- package/types/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.d.ts.map +1 -1
- package/types/x-modules/ai/store/emitters.d.ts +1 -0
- package/types/x-modules/ai/store/emitters.d.ts.map +1 -1
- package/types/x-modules/ai/store/types.d.ts +3 -3
- package/types/x-modules/ai/store/types.d.ts.map +1 -1
- package/types/x-modules/ai/wiring.d.ts +2 -2
- package/types/x-modules/ai/wiring.d.ts.map +1 -1
- package/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts +1 -0
- package/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts.map +1 -1
- package/types/x-modules/facets/components/filters/simple-filter.vue.d.ts +1 -0
- package/types/x-modules/facets/components/filters/simple-filter.vue.d.ts.map +1 -1
- package/types/x-modules/tagging/wiring.d.ts +8 -0
- package/types/x-modules/tagging/wiring.d.ts.map +1 -1
|
@@ -1,64 +1,32 @@
|
|
|
1
1
|
import type { TaggingRequest } from '@empathyco/x-types';
|
|
2
|
-
import type { PropType } from 'vue';
|
|
3
2
|
declare const _default: import("vue").DefineComponent<{
|
|
4
|
-
/**
|
|
5
|
-
* The text displayed when the question ended loading
|
|
6
|
-
*
|
|
7
|
-
* @public
|
|
8
|
-
*/
|
|
9
3
|
title: {
|
|
10
|
-
type:
|
|
4
|
+
type: StringConstructor;
|
|
11
5
|
};
|
|
12
|
-
/**
|
|
13
|
-
* The text displayed when the question is loading.
|
|
14
|
-
*
|
|
15
|
-
* @public
|
|
16
|
-
*/
|
|
17
6
|
titleLoading: {
|
|
18
|
-
type:
|
|
7
|
+
type: StringConstructor;
|
|
19
8
|
default: string;
|
|
20
9
|
};
|
|
21
|
-
/**
|
|
22
|
-
* The text displayed on the toggle button when collapsed.
|
|
23
|
-
*
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
10
|
expandText: {
|
|
27
|
-
type:
|
|
11
|
+
type: StringConstructor;
|
|
28
12
|
default: string;
|
|
29
13
|
};
|
|
30
|
-
/**
|
|
31
|
-
* The text displayed on the toggle button when expanded.
|
|
32
|
-
*
|
|
33
|
-
* @public
|
|
34
|
-
*/
|
|
35
14
|
collapseText: {
|
|
36
|
-
type:
|
|
15
|
+
type: StringConstructor;
|
|
37
16
|
default: string;
|
|
38
17
|
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
*/
|
|
18
|
+
autoExpandInSearchNoResults: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
44
22
|
slidingPanelsClasses: {
|
|
45
|
-
type:
|
|
23
|
+
type: StringConstructor;
|
|
46
24
|
};
|
|
47
|
-
/**
|
|
48
|
-
* The classes added to each sliding panel container of each query.
|
|
49
|
-
*
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
25
|
slidingPanelContainersClasses: {
|
|
53
|
-
type:
|
|
26
|
+
type: StringConstructor;
|
|
54
27
|
};
|
|
55
|
-
/**
|
|
56
|
-
* The classes added to each sliding panel buttons of each query.
|
|
57
|
-
*
|
|
58
|
-
* @public
|
|
59
|
-
*/
|
|
60
28
|
slidingPanelButtonsClasses: {
|
|
61
|
-
type:
|
|
29
|
+
type: StringConstructor;
|
|
62
30
|
};
|
|
63
31
|
}, {
|
|
64
32
|
aiOverviewRef: import("vue").Ref<HTMLDivElement | null>;
|
|
@@ -69,77 +37,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
37
|
suggestionsLoading: import("vue").ComputedRef<boolean>;
|
|
70
38
|
suggestionsSearch: import("vue").ComputedRef<import("@empathyco/x-types").AiSuggestionSearch[]>;
|
|
71
39
|
suggestionText: import("vue").ComputedRef<string>;
|
|
72
|
-
|
|
73
|
-
onExpandButtonClick: (newValue: boolean) => void;
|
|
40
|
+
emitAndSetExpand: (isExpanded: boolean) => void;
|
|
74
41
|
shouldAnimateSuggestion: import("vue").Ref<boolean>;
|
|
75
42
|
query: import("vue").ComputedRef<string>;
|
|
76
43
|
tagging: import("vue").ComputedRef<import("@empathyco/x-types").AiSuggestionTagging | undefined>;
|
|
77
44
|
isNoResults: import("vue").ComputedRef<boolean>;
|
|
78
45
|
queries: import("vue").ComputedRef<import("@empathyco/x-types").AiSuggestionQuery[]>;
|
|
79
46
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
|
-
/**
|
|
81
|
-
* The text displayed when the question ended loading
|
|
82
|
-
*
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
47
|
title: {
|
|
86
|
-
type:
|
|
48
|
+
type: StringConstructor;
|
|
87
49
|
};
|
|
88
|
-
/**
|
|
89
|
-
* The text displayed when the question is loading.
|
|
90
|
-
*
|
|
91
|
-
* @public
|
|
92
|
-
*/
|
|
93
50
|
titleLoading: {
|
|
94
|
-
type:
|
|
51
|
+
type: StringConstructor;
|
|
95
52
|
default: string;
|
|
96
53
|
};
|
|
97
|
-
/**
|
|
98
|
-
* The text displayed on the toggle button when collapsed.
|
|
99
|
-
*
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
54
|
expandText: {
|
|
103
|
-
type:
|
|
55
|
+
type: StringConstructor;
|
|
104
56
|
default: string;
|
|
105
57
|
};
|
|
106
|
-
/**
|
|
107
|
-
* The text displayed on the toggle button when expanded.
|
|
108
|
-
*
|
|
109
|
-
* @public
|
|
110
|
-
*/
|
|
111
58
|
collapseText: {
|
|
112
|
-
type:
|
|
59
|
+
type: StringConstructor;
|
|
113
60
|
default: string;
|
|
114
61
|
};
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
*/
|
|
62
|
+
autoExpandInSearchNoResults: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
120
66
|
slidingPanelsClasses: {
|
|
121
|
-
type:
|
|
67
|
+
type: StringConstructor;
|
|
122
68
|
};
|
|
123
|
-
/**
|
|
124
|
-
* The classes added to each sliding panel container of each query.
|
|
125
|
-
*
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
69
|
slidingPanelContainersClasses: {
|
|
129
|
-
type:
|
|
70
|
+
type: StringConstructor;
|
|
130
71
|
};
|
|
131
|
-
/**
|
|
132
|
-
* The classes added to each sliding panel buttons of each query.
|
|
133
|
-
*
|
|
134
|
-
* @public
|
|
135
|
-
*/
|
|
136
72
|
slidingPanelButtonsClasses: {
|
|
137
|
-
type:
|
|
73
|
+
type: StringConstructor;
|
|
138
74
|
};
|
|
139
75
|
}>>, {
|
|
140
76
|
titleLoading: string;
|
|
141
77
|
expandText: string;
|
|
142
78
|
collapseText: string;
|
|
79
|
+
autoExpandInSearchNoResults: boolean;
|
|
143
80
|
}, {}>;
|
|
144
81
|
export default _default;
|
|
145
82
|
//# sourceMappingURL=ai-overview.vue?vue&type=script&lang.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-overview.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/ai/components/ai-overview.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA
|
|
1
|
+
{"version":3,"file":"ai-overview.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/ai/components/ai-overview.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAgGd,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA7EjD,wBAiIE"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AiSuggestionsRequest, AiSuggestionsSearchRequest, Result } from '@empathyco/x-types';
|
|
1
|
+
import type { AiSuggestionSearch, AiSuggestionsRequest, AiSuggestionsSearchRequest, Result } from '@empathyco/x-types';
|
|
2
2
|
/**
|
|
3
3
|
* Dictionary of the events of AI XModule, where each key is the event name, and the value is
|
|
4
4
|
* the event payload type or `void` if it has no payload.
|
|
@@ -8,6 +8,7 @@ import type { AiSuggestionsRequest, AiSuggestionsSearchRequest, Result } from '@
|
|
|
8
8
|
export interface AiXEvents {
|
|
9
9
|
AiSuggestionsRequestUpdated: AiSuggestionsRequest | null;
|
|
10
10
|
AiSuggestionsSearchRequestUpdated: AiSuggestionsSearchRequest | null;
|
|
11
|
+
AiSuggestionsSearchChanged: AiSuggestionSearch[];
|
|
11
12
|
UserClickedAiOverviewExpandButton: boolean;
|
|
12
13
|
UserClickedAnAiOverviewResult: Result;
|
|
13
14
|
AiOverviewMounted: void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/ai/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/ai/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,kBAAkB,EAClB,oBAAoB,EACpB,0BAA0B,EAC1B,MAAM,EACP,MAAM,oBAAoB,CAAA;AAE3B;;;;;GAKG;AACH,MAAM,WAAW,SAAS;IACxB,2BAA2B,EAAE,oBAAoB,GAAG,IAAI,CAAA;IACxD,iCAAiC,EAAE,0BAA0B,GAAG,IAAI,CAAA;IACpE,0BAA0B,EAAE,kBAAkB,EAAE,CAAA;IAChD,iCAAiC,EAAE,OAAO,CAAA;IAC1C,6BAA6B,EAAE,MAAM,CAAA;IACrC,iBAAiB,EAAE,IAAI,CAAA;CACxB"}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import type { AiXStoreModule } from '../types';
|
|
2
2
|
/**
|
|
3
|
-
* Default implementation for the
|
|
3
|
+
* Default implementation for the `AiActions.fetchAndSaveAiSuggestionsSearch`.
|
|
4
4
|
*
|
|
5
|
-
* @param _ - The {@link https://vuex.vuejs.org/guide/actions.html | context} of the commits
|
|
6
|
-
* provided by Vuex.
|
|
7
|
-
* @param request - The AI search request to make.
|
|
5
|
+
* @param _ - The {@link https://vuex.vuejs.org/guide/actions.html | context} of the commits and
|
|
6
|
+
* getters provided by Vuex.
|
|
8
7
|
* @returns The AI search response.
|
|
9
8
|
* @public
|
|
10
9
|
*/
|
package/types/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-and-save-ai-suggestions-search.action.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AAG9C
|
|
1
|
+
{"version":3,"file":"fetch-and-save-ai-suggestions-search.action.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/ai/store/actions/fetch-and-save-ai-suggestions-search.action.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AAG9C;;;;;;;GAOG;AACH,eAAO,MAAM,+BAA+B,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC,iCAAiC,CAqBtG,CAAA"}
|
|
@@ -6,5 +6,6 @@
|
|
|
6
6
|
export declare const aiEmitters: {
|
|
7
7
|
AiSuggestionsRequestUpdated: (_: import("./types").AiState, getters: import("../../..").Returns<import("../../../store").GettersTree<import("./types").AiState, import("./types").AiGetters>>) => import("@empathyco/x-types").AiSuggestionsRequest;
|
|
8
8
|
AiSuggestionsSearchRequestUpdated: (_: import("./types").AiState, getters: import("../../..").Returns<import("../../../store").GettersTree<import("./types").AiState, import("./types").AiGetters>>) => import("@empathyco/x-types").AiSuggestionsSearchRequest | null;
|
|
9
|
+
AiSuggestionsSearchChanged: (state: import("./types").AiState) => import("@empathyco/x-types").AiSuggestionSearch[];
|
|
9
10
|
};
|
|
10
11
|
//# sourceMappingURL=emitters.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emitters.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/ai/store/emitters.ts"],"names":[],"mappings":"AAGA;;;;GAIG;AACH,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"emitters.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/ai/store/emitters.ts"],"names":[],"mappings":"AAGA;;;;GAIG;AACH,eAAO,MAAM,UAAU;;;;CAIrB,CAAA"}
|
|
@@ -149,11 +149,11 @@ export interface AiActions {
|
|
|
149
149
|
*/
|
|
150
150
|
fetchAndSaveAiSuggestions: (request: AiSuggestionsRequest | null) => void;
|
|
151
151
|
/**
|
|
152
|
-
* Requests suggestions search for the module
|
|
152
|
+
* Requests suggestions search for the module AI.
|
|
153
153
|
*
|
|
154
|
-
* @param
|
|
154
|
+
* @param expanded - The expanded state of the AI overview.
|
|
155
155
|
*/
|
|
156
|
-
fetchAndSaveAiSuggestionsSearch: (
|
|
156
|
+
fetchAndSaveAiSuggestionsSearch: (expanded: boolean) => void;
|
|
157
157
|
/**
|
|
158
158
|
* Checks if the URL has params on it and then updates the state with these values.
|
|
159
159
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/ai/store/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/ai/store/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -23,8 +23,8 @@ export declare const aiWiring: {
|
|
|
23
23
|
resetAiStateWire: import("../../wiring").AnyWire;
|
|
24
24
|
fetchAndSaveAiSuggestionsWire: import("../../wiring").Wire<import("@empathyco/x-types").AiSuggestionsRequest | null>;
|
|
25
25
|
};
|
|
26
|
-
|
|
27
|
-
fetchAndSaveAiSuggestionsSearchWire: import("../../wiring").Wire<
|
|
26
|
+
UserClickedAiOverviewExpandButton: {
|
|
27
|
+
fetchAndSaveAiSuggestionsSearchWire: import("../../wiring").Wire<boolean>;
|
|
28
28
|
};
|
|
29
29
|
SelectedRelatedTagsChanged: {
|
|
30
30
|
setAiRelatedTagsWire: import("../../wiring").Wire<import("@empathyco/x-types").RelatedTag[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/ai/wiring.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/ai/wiring.ts"],"names":[],"mappings":"AAgDA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCnB,CAAA"}
|
|
@@ -203,6 +203,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
203
203
|
ReloadRelatedPromptsRequested?: void | undefined;
|
|
204
204
|
AiSuggestionsRequestUpdated?: import("@empathyco/x-types").AiSuggestionsRequest | null | undefined;
|
|
205
205
|
AiSuggestionsSearchRequestUpdated?: import("@empathyco/x-types").AiSuggestionsSearchRequest | null | undefined;
|
|
206
|
+
AiSuggestionsSearchChanged?: import("@empathyco/x-types").AiSuggestionSearch[] | undefined;
|
|
206
207
|
UserClickedAiOverviewExpandButton?: boolean | undefined;
|
|
207
208
|
UserClickedAnAiOverviewResult?: import("@empathyco/x-types").Result | undefined;
|
|
208
209
|
AiOverviewMounted?: void | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hierarchical-filter.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/facets/components/filters/hierarchical-filter.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,kBAAkB,IAAI,uBAAuB,EAAE,MAAM,oBAAoB,CAAA;AAC/F,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AASnE;;;;GAIG;;IAMC,iCAAiC;;cAEf,QAAQ,CAAC,uBAAuB,CAAC;;;IAGnD,+DAA+D;;IAE/D;;;;OAIG;iBACoB,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,+BAA+B;;cAEd,QAAQ,CAAC,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;;;IAG3D,0CAA0C;;IAE1C,0CAA0C
|
|
1
|
+
{"version":3,"file":"hierarchical-filter.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/facets/components/filters/hierarchical-filter.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,kBAAkB,IAAI,uBAAuB,EAAE,MAAM,oBAAoB,CAAA;AAC/F,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AASnE;;;;GAIG;;IAMC,iCAAiC;;cAEf,QAAQ,CAAC,uBAAuB,CAAC;;;IAGnD,+DAA+D;;IAE/D;;;;OAIG;iBACoB,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,+BAA+B;;cAEd,QAAQ,CAAC,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;;;IAG3D,0CAA0C;;IAE1C,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAwDM,uBAAuB;;IA5EvE,iCAAiC;;cAEf,QAAQ,CAAC,uBAAuB,CAAC;;;IAGnD,+DAA+D;;IAE/D;;;;OAIG;iBACoB,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,+BAA+B;;cAEd,QAAQ,CAAC,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;;;IAG3D,0CAA0C;;IAE1C,0CAA0C;;;;;AAzB9C,wBA+GE"}
|
|
@@ -193,6 +193,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
193
193
|
ReloadRelatedPromptsRequested?: void | undefined;
|
|
194
194
|
AiSuggestionsRequestUpdated?: import("@empathyco/x-types").AiSuggestionsRequest | null | undefined;
|
|
195
195
|
AiSuggestionsSearchRequestUpdated?: import("@empathyco/x-types").AiSuggestionsSearchRequest | null | undefined;
|
|
196
|
+
AiSuggestionsSearchChanged?: import("@empathyco/x-types").AiSuggestionSearch[] | undefined;
|
|
196
197
|
UserClickedAiOverviewExpandButton?: boolean | undefined;
|
|
197
198
|
UserClickedAnAiOverviewResult?: import("@empathyco/x-types").Result | undefined;
|
|
198
199
|
AiOverviewMounted?: void | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"simple-filter.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/facets/components/filters/simple-filter.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,IAAI,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAC3E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAKnE;;;;GAIG;;IAOC,iCAAiC;;cAEf,QAAQ,CAAC,iBAAiB,CAAC;;;IAG7C,iFAAiF;iBAC1D,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,+BAA+B;;cAEd,QAAQ,CAAC,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC
|
|
1
|
+
{"version":3,"file":"simple-filter.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/facets/components/filters/simple-filter.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,IAAI,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAC3E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAKnE;;;;GAIG;;IAOC,iCAAiC;;cAEf,QAAQ,CAAC,iBAAiB,CAAC;;;IAG7C,iFAAiF;iBAC1D,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,+BAA+B;;cAEd,QAAQ,CAAC,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAT3D,iCAAiC;;cAEf,QAAQ,CAAC,iBAAiB,CAAC;;;IAG7C,iFAAiF;iBAC1D,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,+BAA+B;;cAEd,QAAQ,CAAC,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;;;;;;AAf/D,wBAsCE"}
|
|
@@ -177,6 +177,11 @@ export declare function createTrackRelatedPromptToolingDisplayClickWire(): Wire<
|
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
179
|
export declare function createSetQueryTaggingFromQueryPreview(): Wire<Taggable>;
|
|
180
|
+
/**
|
|
181
|
+
* Tracks query tagging of the AI suggestions-search.
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
export declare const trackAiSuggestionsSearchWire: import("../../wiring/wiring.types").AnyWire;
|
|
180
185
|
/**
|
|
181
186
|
* Wiring configuration for the {@link TaggingXModule | tagging module}.
|
|
182
187
|
*
|
|
@@ -247,6 +252,9 @@ export declare const taggingWiring: {
|
|
|
247
252
|
UserSelectedARelatedPrompt: {
|
|
248
253
|
trackRelatedPromptToolingDisplayClickWire: Wire<any>;
|
|
249
254
|
};
|
|
255
|
+
AiSuggestionsSearchChanged: {
|
|
256
|
+
trackAiSuggestionsSearchWire: import("../../wiring/wiring.types").AnyWire;
|
|
257
|
+
};
|
|
250
258
|
UserClickedAiOverviewExpandButton: {
|
|
251
259
|
trackAiOverviewButtonClickedWire: Wire<any>;
|
|
252
260
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/tagging/wiring.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/tagging/wiring.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAGV,MAAM,EAEN,QAAQ,EACR,OAAO,EACP,cAAc,EACf,MAAM,oBAAoB,CAAA;AAE3B,OAAO,KAAK,EAAuB,IAAI,EAAE,MAAM,2BAA2B,CAAA;AAyF1E;;;;GAIG;AACH,eAAO,MAAM,UAAU,eAA2B,CAAA;AAElD;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,uDAA2C,CAAA;AAEtF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,8CAA4B,CAAA;AAEzD;;;;GAIG;AACH,eAAO,MAAM,cAAc,yCAK1B,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,sBAa/B,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,+BAA+B,gBAA0C,CAAA;AAEtF;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,gBAA2B,CAAA;AAE9D;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,gBAA2B,CAAA;AAE9D;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,gBAA2B,CAAA;AAEhE;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,gBAA8B,CAAA;AAE7D;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,gBAAyC,CAAA;AAE7E;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,gBAAkC,CAAA;AAE7E;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,gBAAmC,CAAA;AAExE;;;;GAIG;AACH,eAAO,MAAM,yCAAyC,WACH,CAAA;AAEnD;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,gBAAoC,CAAA;AAE1E;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAWvE;AAED;;;;;;GAMG;AACH,eAAO,MAAM,mCAAmC,WAU/C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,4CAA4C,WAIxD,CAAA;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,oCAAoC,WAAsC,CAAA;AAEvF;;;;;GAKG;AACH,eAAO,MAAM,6CAA6C,WACZ,CAAA;AAE9C;;;;GAIG;AACH,eAAO,MAAM,gCAAgC,WAc5C,CAAA;AAED;;;;;;;GAOG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAkB9E;AAsBD;;;;;;GAMG;AACH,wBAAgB,6BAA6B,IAAI,IAAI,CAAC,QAAQ,CAAC,CAY9D;AAED;;;;;;GAMG;AACH,wBAAgB,8BAA8B,IAAI,IAAI,CAAC,QAAQ,CAAC,CAY/D;AAED;;;;;;GAMG;AACH,wBAAgB,+CAA+C,cAmB9D;AAED;;;;;;GAMG;AACH,wBAAgB,qCAAqC,IAAI,IAAI,CAAC,QAAQ,CAAC,CAQtE;AAED;;;GAGG;AACH,eAAO,MAAM,4BAA4B,6CAExC,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6ExB,CAAA"}
|