@empathyco/x-components 6.0.0-alpha.150 → 6.0.0-alpha.152
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 +16 -0
- package/docs/API-reference/api/x-adapter-platform.platformaisuggestionsearch.md +1 -0
- package/docs/API-reference/api/x-adapter-platform.platformaisuggestionsearch.tagging.md +13 -0
- package/docs/API-reference/api/x-adapter-platform.platformaisuggestionssearchresponse.items.md +1 -5
- package/docs/API-reference/api/x-adapter-platform.platformaisuggestionssearchresponse.md +1 -1
- package/docs/API-reference/api/x-components.aioverview.md +1 -0
- package/docs/API-reference/api/x-components.aixevents.md +1 -0
- package/docs/API-reference/api/x-components.aixevents.userclickedanaioverviewresult.md +11 -0
- package/docs/API-reference/api/x-components.hierarchicalfilter.md +1 -0
- 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-types.aisuggestionsearch.md +1 -0
- package/docs/API-reference/api/x-types.aisuggestionsearch.tagging.md +13 -0
- package/js/components/display-click-provider.vue.js +11 -2
- package/js/components/display-click-provider.vue.js.map +1 -1
- package/js/x-modules/ai/components/ai-overview.vue.js +110 -81
- package/js/x-modules/ai/components/ai-overview.vue.js.map +1 -1
- package/js/x-modules/ai/components/ai-overview.vue2.js +4 -1
- 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.action.js +36 -25
- package/js/x-modules/ai/store/actions/fetch-and-save-ai-suggestions.action.js.map +1 -1
- package/js/x-modules/tagging/wiring.js +6 -0
- package/js/x-modules/tagging/wiring.js.map +1 -1
- package/package.json +4 -4
- package/report/x-adapter-platform.api.json +31 -8
- package/report/x-components.api.json +80 -7
- package/report/x-components.api.md +15 -2
- package/report/x-types.api.json +36 -0
- package/types/components/display-click-provider.vue.d.ts.map +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 +2 -0
- 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.action.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/related-prompts/components/related-prompts-tag-list.vue.d.ts.map +1 -1
- package/types/x-modules/tagging/wiring.d.ts +6 -0
- package/types/x-modules/tagging/wiring.d.ts.map +1 -1
|
@@ -246,6 +246,7 @@ type: PropType<string>;
|
|
|
246
246
|
};
|
|
247
247
|
}, {
|
|
248
248
|
buttonText: ComputedRef<string>;
|
|
249
|
+
emptyTaggingRequest: TaggingRequest;
|
|
249
250
|
expanded: Ref<boolean>;
|
|
250
251
|
responseText: ComputedRef<string>;
|
|
251
252
|
suggestionsLoading: ComputedRef<boolean>;
|
|
@@ -344,6 +345,10 @@ export interface AiXEvents {
|
|
|
344
345
|
AiSuggestionsSearchRequestUpdated: AiSuggestionsSearchRequest | null;
|
|
345
346
|
// (undocumented)
|
|
346
347
|
UserClickedAiOverviewExpandButton: boolean;
|
|
348
|
+
// Warning: (ae-forgotten-export) The symbol "Result" needs to be exported by the entry point index.d.ts
|
|
349
|
+
//
|
|
350
|
+
// (undocumented)
|
|
351
|
+
UserClickedAnAiOverviewResult: Result;
|
|
347
352
|
}
|
|
348
353
|
|
|
349
354
|
// @public
|
|
@@ -3537,6 +3542,7 @@ ReloadRelatedPromptsRequested?: void | undefined;
|
|
|
3537
3542
|
AiSuggestionsRequestUpdated?: AiSuggestionsRequest | null | undefined;
|
|
3538
3543
|
AiSuggestionsSearchRequestUpdated?: AiSuggestionsSearchRequest | null | undefined;
|
|
3539
3544
|
UserClickedAiOverviewExpandButton?: boolean | undefined;
|
|
3545
|
+
UserClickedAnAiOverviewResult?: Result | undefined;
|
|
3540
3546
|
}>;
|
|
3541
3547
|
innerCssClasses: ComputedRef<(string | Dictionary<boolean>)[]>;
|
|
3542
3548
|
renderedChildrenFilters: ComputedRef<HierarchicalFilter_2[]>;
|
|
@@ -7509,6 +7515,7 @@ ReloadRelatedPromptsRequested?: void | undefined;
|
|
|
7509
7515
|
AiSuggestionsRequestUpdated?: AiSuggestionsRequest | null | undefined;
|
|
7510
7516
|
AiSuggestionsSearchRequestUpdated?: AiSuggestionsSearchRequest | null | undefined;
|
|
7511
7517
|
UserClickedAiOverviewExpandButton?: boolean | undefined;
|
|
7518
|
+
UserClickedAnAiOverviewResult?: Result | undefined;
|
|
7512
7519
|
}>;
|
|
7513
7520
|
innerCssClasses: ComputedRef<(string | Dictionary<boolean>)[]>;
|
|
7514
7521
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
@@ -7840,6 +7847,7 @@ ReloadRelatedPromptsRequested: (payload: undefined, metadata: WireMetadata) => u
|
|
|
7840
7847
|
AiSuggestionsRequestUpdated: (payload: AiSuggestionsRequest | null, metadata: WireMetadata) => unknown;
|
|
7841
7848
|
AiSuggestionsSearchRequestUpdated: (payload: AiSuggestionsSearchRequest | null, metadata: WireMetadata) => unknown;
|
|
7842
7849
|
UserClickedAiOverviewExpandButton: (payload: boolean, metadata: WireMetadata) => unknown;
|
|
7850
|
+
UserClickedAnAiOverviewResult: (payload: Result, metadata: WireMetadata) => unknown;
|
|
7843
7851
|
}>>;
|
|
7844
7852
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
7845
7853
|
|
|
@@ -8262,6 +8270,12 @@ export const taggingWiring: {
|
|
|
8262
8270
|
UserClickedAiOverviewExpandButton: {
|
|
8263
8271
|
trackAiOverviewButtonClickedWire: Wire<any>;
|
|
8264
8272
|
};
|
|
8273
|
+
UserClickedAnAiOverviewResult: {
|
|
8274
|
+
trackToolingDisplayClickedWire: Wire<Taggable>;
|
|
8275
|
+
};
|
|
8276
|
+
UserClickedAnAiOverviewAdd2Cart: {
|
|
8277
|
+
trackToolingAdd2CartWire: Wire<Taggable>;
|
|
8278
|
+
};
|
|
8265
8279
|
};
|
|
8266
8280
|
|
|
8267
8281
|
// @public
|
|
@@ -9225,12 +9239,11 @@ export type XStoreModuleOptions<StoreModule extends AnyXStoreModule> = StoreModu
|
|
|
9225
9239
|
// dist/types/components/base-dropdown.vue.d.ts:11:9 - (ae-forgotten-export) The symbol "DropdownItem" needs to be exported by the entry point index.d.ts
|
|
9226
9240
|
// dist/types/components/base-grid.vue.d.ts:45:5 - (ae-forgotten-export) The symbol "GridItem" needs to be exported by the entry point index.d.ts
|
|
9227
9241
|
// dist/types/components/column-picker/base-column-picker-list.vue.d.ts:29:5 - (ae-forgotten-export) The symbol "ColumnPickerItem" needs to be exported by the entry point index.d.ts
|
|
9228
|
-
// dist/types/components/display-click-provider.vue.d.ts:14:9 - (ae-forgotten-export) The symbol "TaggingRequest" needs to be exported by the entry point index.d.ts
|
|
9229
9242
|
// dist/types/components/filters/labels/base-price-filter-label.vue.d.ts:13:13 - (ae-forgotten-export) The symbol "RangeValue" needs to be exported by the entry point index.d.ts
|
|
9230
9243
|
// dist/types/components/filters/labels/base-rating-filter-label.vue.d.ts:16:9 - (ae-forgotten-export) The symbol "BooleanFilter" needs to be exported by the entry point index.d.ts
|
|
9231
9244
|
// dist/types/components/page-selector.vue.d.ts:65:5 - (ae-forgotten-export) The symbol "PageItem" needs to be exported by the entry point index.d.ts
|
|
9232
|
-
// dist/types/components/result/base-result-add-to-cart.vue.d.ts:18:9 - (ae-forgotten-export) The symbol "Result" needs to be exported by the entry point index.d.ts
|
|
9233
9245
|
// dist/types/components/suggestions/base-suggestion.vue.d.ts:31:9 - (ae-forgotten-export) The symbol "Suggestion" needs to be exported by the entry point index.d.ts
|
|
9246
|
+
// dist/types/x-modules/ai/components/ai-overview.vue.d.ts:65:5 - (ae-forgotten-export) The symbol "TaggingRequest" needs to be exported by the entry point index.d.ts
|
|
9234
9247
|
// dist/types/x-modules/device/components/device-detector.vue.d.ts:21:9 - (ae-forgotten-export) The symbol "Device" needs to be exported by the entry point index.d.ts
|
|
9235
9248
|
// dist/types/x-modules/device/components/device-detector.vue.d.ts:21:9 - (ae-forgotten-export) The symbol "MaxWidth" needs to be exported by the entry point index.d.ts
|
|
9236
9249
|
// dist/types/x-modules/facets/components/facets/facets.vue.d.ts:56:5 - (ae-forgotten-export) The symbol "RenderFacet" needs to be exported by the entry point index.d.ts
|
package/report/x-types.api.json
CHANGED
|
@@ -822,6 +822,42 @@
|
|
|
822
822
|
"startIndex": 1,
|
|
823
823
|
"endIndex": 3
|
|
824
824
|
}
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"kind": "PropertySignature",
|
|
828
|
+
"canonicalReference": "@empathyco/x-types!AiSuggestionSearch#tagging:member",
|
|
829
|
+
"docComment": "",
|
|
830
|
+
"excerptTokens": [
|
|
831
|
+
{
|
|
832
|
+
"kind": "Content",
|
|
833
|
+
"text": "tagging: "
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"kind": "Content",
|
|
837
|
+
"text": "{\n query: "
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"kind": "Reference",
|
|
841
|
+
"text": "TaggingRequest",
|
|
842
|
+
"canonicalReference": "@empathyco/x-types!TaggingRequest:interface"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"kind": "Content",
|
|
846
|
+
"text": ";\n }"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"kind": "Content",
|
|
850
|
+
"text": ";"
|
|
851
|
+
}
|
|
852
|
+
],
|
|
853
|
+
"isReadonly": false,
|
|
854
|
+
"isOptional": false,
|
|
855
|
+
"releaseTag": "Public",
|
|
856
|
+
"name": "tagging",
|
|
857
|
+
"propertyTypeTokenRange": {
|
|
858
|
+
"startIndex": 1,
|
|
859
|
+
"endIndex": 4
|
|
860
|
+
}
|
|
825
861
|
}
|
|
826
862
|
],
|
|
827
863
|
"extendsTokenRanges": []
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"display-click-provider.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../src/components/display-click-provider.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACxD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;;;cAS7B,QAAQ,CAAC,aAAa,CAAC;;;;;;;;cAQvB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;;;;cAlBxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;cAQvB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;AAtB9C,
|
|
1
|
+
{"version":3,"file":"display-click-provider.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../src/components/display-click-provider.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACxD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;;;cAS7B,QAAQ,CAAC,aAAa,CAAC;;;;;;;;cAQvB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;;;;cAlBxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;cAQvB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;cAKxB,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;AAtB9C,wBAsEE"}
|
|
@@ -178,6 +178,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
178
178
|
AiSuggestionsRequestUpdated: (payload: import("@empathyco/x-types").AiSuggestionsRequest | null, metadata: WireMetadata) => unknown;
|
|
179
179
|
AiSuggestionsSearchRequestUpdated: (payload: import("@empathyco/x-types").AiSuggestionsSearchRequest | null, metadata: WireMetadata) => unknown;
|
|
180
180
|
UserClickedAiOverviewExpandButton: (payload: boolean, metadata: WireMetadata) => unknown;
|
|
181
|
+
UserClickedAnAiOverviewResult: (payload: import("@empathyco/x-types").Result, metadata: WireMetadata) => unknown;
|
|
181
182
|
}>>;
|
|
182
183
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
183
184
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snippet-callbacks.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../src/components/snippet-callbacks.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAO7C;;;;;GAKG
|
|
1
|
+
{"version":3,"file":"snippet-callbacks.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../src/components/snippet-callbacks.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAO7C;;;;;GAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACH,wBA0CE"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { TaggingRequest } from '@empathyco/x-types';
|
|
1
2
|
import type { PropType } from 'vue';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
|
3
4
|
/**
|
|
@@ -61,6 +62,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
62
|
};
|
|
62
63
|
}, {
|
|
63
64
|
buttonText: import("vue").ComputedRef<string>;
|
|
65
|
+
emptyTaggingRequest: TaggingRequest;
|
|
64
66
|
expanded: import("vue").Ref<boolean>;
|
|
65
67
|
responseText: import("vue").ComputedRef<string>;
|
|
66
68
|
suggestionsLoading: import("vue").ComputedRef<boolean>;
|
|
@@ -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,QAAQ,EAAE,MAAM,KAAK,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;AACxD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;;IAsC/B;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;IAElC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;IAGlC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;IAGlC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;IAIlC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;IAElC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;IAElC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;;4BA+BH,OAAO;oCARC,OAAO;;;;;;;IAjF9C;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;IAElC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;IAGlC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;IAGlC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;IAIlC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;IAElC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;IAElC;;;;OAIG;;cAEe,QAAQ,CAAC,MAAM,CAAC;;;;;;;AA7EtC,wBAuIE"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AiSuggestionsRequest, AiSuggestionsSearchRequest } from '@empathyco/x-types';
|
|
1
|
+
import type { 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.
|
|
@@ -9,5 +9,6 @@ export interface AiXEvents {
|
|
|
9
9
|
AiSuggestionsRequestUpdated: AiSuggestionsRequest | null;
|
|
10
10
|
AiSuggestionsSearchRequestUpdated: AiSuggestionsSearchRequest | null;
|
|
11
11
|
UserClickedAiOverviewExpandButton: boolean;
|
|
12
|
+
UserClickedAnAiOverviewResult: Result;
|
|
12
13
|
}
|
|
13
14
|
//# sourceMappingURL=events.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/ai/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/ai/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA;AAElG;;;;;GAKG;AACH,MAAM,WAAW,SAAS;IACxB,2BAA2B,EAAE,oBAAoB,GAAG,IAAI,CAAA;IACxD,iCAAiC,EAAE,0BAA0B,GAAG,IAAI,CAAA;IACpE,iCAAiC,EAAE,OAAO,CAAA;IAC1C,6BAA6B,EAAE,MAAM,CAAA;CACtC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-and-save-ai-suggestions.action.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/ai/store/actions/fetch-and-save-ai-suggestions.action.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAmB,cAAc,EAAE,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"fetch-and-save-ai-suggestions.action.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/ai/store/actions/fetch-and-save-ai-suggestions.action.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAmB,cAAc,EAAE,MAAM,UAAU,CAAA;AAyB/D;;;;;;;;;GASG;AACH,eAAO,MAAM,yBAAyB,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC,2BAA2B,CAe1F,CAAA"}
|
|
@@ -203,6 +203,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
203
203
|
AiSuggestionsRequestUpdated?: import("@empathyco/x-types").AiSuggestionsRequest | null | undefined;
|
|
204
204
|
AiSuggestionsSearchRequestUpdated?: import("@empathyco/x-types").AiSuggestionsSearchRequest | null | undefined;
|
|
205
205
|
UserClickedAiOverviewExpandButton?: boolean | undefined;
|
|
206
|
+
UserClickedAnAiOverviewResult?: import("@empathyco/x-types").Result | undefined;
|
|
206
207
|
}>;
|
|
207
208
|
innerCssClasses: import("vue").ComputedRef<(string | Dictionary<boolean>)[]>;
|
|
208
209
|
renderedChildrenFilters: import("vue").ComputedRef<HierarchicalFilterModel[]>;
|
|
@@ -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
|
AiSuggestionsRequestUpdated?: import("@empathyco/x-types").AiSuggestionsRequest | null | undefined;
|
|
194
194
|
AiSuggestionsSearchRequestUpdated?: import("@empathyco/x-types").AiSuggestionsSearchRequest | null | undefined;
|
|
195
195
|
UserClickedAiOverviewExpandButton?: boolean | undefined;
|
|
196
|
+
UserClickedAnAiOverviewResult?: import("@empathyco/x-types").Result | undefined;
|
|
196
197
|
}>;
|
|
197
198
|
innerCssClasses: import("vue").ComputedRef<(string | Dictionary<boolean>)[]>;
|
|
198
199
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"related-prompts-tag-list.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/related-prompts/components/related-prompts-tag-list.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQnC;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;8BAoE8B,MAAM,KAAG,IAAI;wBAiEnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"related-prompts-tag-list.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/related-prompts/components/related-prompts-tag-list.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQnC;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;8BAoE8B,MAAM,KAAG,IAAI;wBAiEnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;iCAoC2vZ,CAAC;sCAAqD,CAAC;8BAA6C,CAAC;;;;;;;;;;;;;IA7O94Z;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;;;;AAxCP,wBAiPE"}
|
|
@@ -250,5 +250,11 @@ export declare const taggingWiring: {
|
|
|
250
250
|
UserClickedAiOverviewExpandButton: {
|
|
251
251
|
trackAiOverviewButtonClickedWire: Wire<any>;
|
|
252
252
|
};
|
|
253
|
+
UserClickedAnAiOverviewResult: {
|
|
254
|
+
trackToolingDisplayClickedWire: Wire<Taggable>;
|
|
255
|
+
};
|
|
256
|
+
UserClickedAnAiOverviewAdd2Cart: {
|
|
257
|
+
trackToolingAdd2CartWire: Wire<Taggable>;
|
|
258
|
+
};
|
|
253
259
|
};
|
|
254
260
|
//# sourceMappingURL=wiring.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/tagging/wiring.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,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;;;;GAIG;AACH,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/tagging/wiring.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,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;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0ExB,CAAA"}
|