@empathyco/x-components 6.0.0-alpha.155 → 6.0.0-alpha.157
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-components.aioverview.md +1 -0
- package/docs/API-reference/api/x-components.empathizexevents.empathizegotnocontent.md +13 -0
- package/docs/API-reference/api/x-components.empathizexevents.md +1 -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/js/x-modules/ai/components/ai-overview.vue.js +240 -233
- package/js/x-modules/ai/components/ai-overview.vue.js.map +1 -1
- package/js/x-modules/ai/components/ai-overview.vue2.js +6 -1
- package/js/x-modules/ai/components/ai-overview.vue2.js.map +1 -1
- package/js/x-modules/empathize/components/empathize.vue.js.map +1 -1
- package/js/x-modules/empathize/components/empathize.vue2.js +1 -1
- package/js/x-modules/empathize/components/empathize.vue2.js.map +1 -1
- package/js/x-modules/search/wiring.js +4 -0
- package/js/x-modules/search/wiring.js.map +1 -1
- package/package.json +2 -2
- package/report/x-components.api.json +59 -5
- package/report/x-components.api.md +15 -6
- 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 +1 -0
- package/types/x-modules/ai/components/ai-overview.vue.d.ts.map +1 -1
- package/types/x-modules/empathize/events.types.d.ts +5 -0
- package/types/x-modules/empathize/events.types.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/search/wiring.d.ts +4 -0
- package/types/x-modules/search/wiring.d.ts.map +1 -1
|
@@ -245,6 +245,7 @@ slidingPanelButtonsClasses: {
|
|
|
245
245
|
type: PropType<string>;
|
|
246
246
|
};
|
|
247
247
|
}, {
|
|
248
|
+
aiOverviewRef: Ref<HTMLDivElement | null>;
|
|
248
249
|
buttonText: ComputedRef<string>;
|
|
249
250
|
emptyTaggingRequest: TaggingRequest;
|
|
250
251
|
expanded: Ref<boolean>;
|
|
@@ -2500,6 +2501,7 @@ export const empathizeWiring: {
|
|
|
2500
2501
|
// @public
|
|
2501
2502
|
export interface EmpathizeXEvents {
|
|
2502
2503
|
EmpathizeClosed: void;
|
|
2504
|
+
EmpathizeGotNoContent: string;
|
|
2503
2505
|
EmpathizeOpened: void;
|
|
2504
2506
|
UserClosedEmpathize: void;
|
|
2505
2507
|
}
|
|
@@ -3414,6 +3416,7 @@ DeviceProvided?: string | null | undefined;
|
|
|
3414
3416
|
EmpathizeClosed?: void | undefined;
|
|
3415
3417
|
EmpathizeOpened?: void | undefined;
|
|
3416
3418
|
UserClosedEmpathize?: void | undefined;
|
|
3419
|
+
EmpathizeGotNoContent?: string | undefined;
|
|
3417
3420
|
UserChangedExtraParams?: Dictionary<unknown> | undefined;
|
|
3418
3421
|
ExtraParamsChanged?: Dictionary<unknown> | undefined;
|
|
3419
3422
|
ExtraParamsProvided?: Dictionary<unknown> | undefined;
|
|
@@ -6820,6 +6823,10 @@ export const searchWiring: {
|
|
|
6820
6823
|
setSearchQuery: Wire<string>;
|
|
6821
6824
|
saveOriginWire: AnyWire;
|
|
6822
6825
|
};
|
|
6826
|
+
EmpathizeGotNoContent: {
|
|
6827
|
+
setSearchQuery: Wire<string>;
|
|
6828
|
+
saveOriginWire: AnyWire;
|
|
6829
|
+
};
|
|
6823
6830
|
UserAcceptedSpellcheckQuery: {
|
|
6824
6831
|
resetSpellcheckQuery: AnyWire;
|
|
6825
6832
|
};
|
|
@@ -7390,6 +7397,7 @@ DeviceProvided?: string | null | undefined;
|
|
|
7390
7397
|
EmpathizeClosed?: void | undefined;
|
|
7391
7398
|
EmpathizeOpened?: void | undefined;
|
|
7392
7399
|
UserClosedEmpathize?: void | undefined;
|
|
7400
|
+
EmpathizeGotNoContent?: string | undefined;
|
|
7393
7401
|
UserChangedExtraParams?: Dictionary<unknown> | undefined;
|
|
7394
7402
|
ExtraParamsChanged?: Dictionary<unknown> | undefined;
|
|
7395
7403
|
ExtraParamsProvided?: Dictionary<unknown> | undefined;
|
|
@@ -7723,6 +7731,7 @@ DeviceProvided: (payload: string | null, metadata: WireMetadata) => unknown;
|
|
|
7723
7731
|
EmpathizeClosed: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
7724
7732
|
EmpathizeOpened: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
7725
7733
|
UserClosedEmpathize: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
7734
|
+
EmpathizeGotNoContent: (payload: string, metadata: WireMetadata) => unknown;
|
|
7726
7735
|
UserChangedExtraParams: (payload: Dictionary<unknown>, metadata: WireMetadata) => unknown;
|
|
7727
7736
|
ExtraParamsChanged: (payload: Dictionary<unknown>, metadata: WireMetadata) => unknown;
|
|
7728
7737
|
ExtraParamsProvided: (payload: Dictionary<unknown>, metadata: WireMetadata) => unknown;
|
|
@@ -9248,18 +9257,18 @@ export type XStoreModuleOptions<StoreModule extends AnyXStoreModule> = StoreModu
|
|
|
9248
9257
|
// 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
|
|
9249
9258
|
// 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
|
|
9250
9259
|
// 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
|
|
9251
|
-
// dist/types/x-modules/ai/components/ai-overview.vue.d.ts:
|
|
9260
|
+
// dist/types/x-modules/ai/components/ai-overview.vue.d.ts:66:5 - (ae-forgotten-export) The symbol "TaggingRequest" needs to be exported by the entry point index.d.ts
|
|
9252
9261
|
// 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
|
|
9253
9262
|
// 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
|
|
9254
9263
|
// 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
|
|
9255
9264
|
// dist/types/x-modules/facets/components/filters/all-filter.vue.d.ts:16:9 - (ae-forgotten-export) The symbol "Facet" needs to be exported by the entry point index.d.ts
|
|
9256
9265
|
// dist/types/x-modules/facets/components/filters/editable-number-range-filter.vue.d.ts:25:9 - (ae-forgotten-export) The symbol "EditableNumberRangeFilter_2" needs to be exported by the entry point index.d.ts
|
|
9257
9266
|
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:62:13 - (ae-forgotten-export) The symbol "ResultVariant" needs to be exported by the entry point index.d.ts
|
|
9258
|
-
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:
|
|
9259
|
-
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:
|
|
9260
|
-
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:
|
|
9261
|
-
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:
|
|
9262
|
-
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:
|
|
9267
|
+
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:111:9 - (ae-forgotten-export) The symbol "NextQuery_2" needs to be exported by the entry point index.d.ts
|
|
9268
|
+
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:174:9 - (ae-forgotten-export) The symbol "Redirection_2" needs to be exported by the entry point index.d.ts
|
|
9269
|
+
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:175:9 - (ae-forgotten-export) The symbol "Promoted_2" needs to be exported by the entry point index.d.ts
|
|
9270
|
+
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:180:9 - (ae-forgotten-export) The symbol "SemanticQuery_2" needs to be exported by the entry point index.d.ts
|
|
9271
|
+
// dist/types/x-modules/facets/components/filters/hierarchical-filter.vue.d.ts:202:9 - (ae-forgotten-export) The symbol "RelatedPrompt_2" needs to be exported by the entry point index.d.ts
|
|
9263
9272
|
// dist/types/x-modules/facets/components/lists/selected-filters-list.vue.d.ts:35:5 - (ae-forgotten-export) The symbol "RenderFilter" needs to be exported by the entry point index.d.ts
|
|
9264
9273
|
// dist/types/x-modules/related-prompts/components/related-prompts-tag-list.vue.d.ts:62:9 - (ae-forgotten-export) The symbol "RelatedPromptNextQuery" needs to be exported by the entry point index.d.ts
|
|
9265
9274
|
// dist/types/x-modules/search/components/banner.vue.d.ts:23:9 - (ae-forgotten-export) The symbol "Banner_2" needs to be exported by the entry point index.d.ts
|
|
@@ -50,6 +50,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
50
50
|
EmpathizeClosed: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
51
51
|
EmpathizeOpened: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
52
52
|
UserClosedEmpathize: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
53
|
+
EmpathizeGotNoContent: (payload: string, metadata: WireMetadata) => unknown;
|
|
53
54
|
UserChangedExtraParams: (payload: import("@empathyco/x-utils").Dictionary<unknown>, metadata: WireMetadata) => unknown;
|
|
54
55
|
ExtraParamsChanged: (payload: import("@empathyco/x-utils").Dictionary<unknown>, metadata: WireMetadata) => unknown;
|
|
55
56
|
ExtraParamsProvided: (payload: import("@empathyco/x-utils").Dictionary<unknown>, metadata: WireMetadata) => unknown;
|
|
@@ -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"}
|
|
@@ -61,6 +61,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
type: PropType<string>;
|
|
62
62
|
};
|
|
63
63
|
}, {
|
|
64
|
+
aiOverviewRef: import("vue").Ref<HTMLDivElement | null>;
|
|
64
65
|
buttonText: import("vue").ComputedRef<string>;
|
|
65
66
|
emptyTaggingRequest: TaggingRequest;
|
|
66
67
|
expanded: import("vue").Ref<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,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
|
|
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;;;;;;;;;;;4BAgCH,OAAO;oCARC,OAAO;;;;;;;IAlF9C;;;;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,wBA4IE"}
|
|
@@ -20,5 +20,10 @@ export interface EmpathizeXEvents {
|
|
|
20
20
|
* Payload: none.
|
|
21
21
|
*/
|
|
22
22
|
UserClosedEmpathize: void;
|
|
23
|
+
/**
|
|
24
|
+
* The empathize reached a state with no content (empty).
|
|
25
|
+
* Payload: The search box query at the time of the event.
|
|
26
|
+
*/
|
|
27
|
+
EmpathizeGotNoContent: string;
|
|
23
28
|
}
|
|
24
29
|
//# sourceMappingURL=events.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/empathize/events.types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,eAAe,EAAE,IAAI,CAAA;IACrB;;;OAGG;IACH,eAAe,EAAE,IAAI,CAAA;IACrB;;;OAGG;IACH,mBAAmB,EAAE,IAAI,CAAA;
|
|
1
|
+
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/empathize/events.types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,eAAe,EAAE,IAAI,CAAA;IACrB;;;OAGG;IACH,eAAe,EAAE,IAAI,CAAA;IACrB;;;OAGG;IACH,mBAAmB,EAAE,IAAI,CAAA;IACzB;;;OAGG;IACH,qBAAqB,EAAE,MAAM,CAAA;CAC9B"}
|
|
@@ -75,6 +75,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
75
|
EmpathizeClosed?: void | undefined;
|
|
76
76
|
EmpathizeOpened?: void | undefined;
|
|
77
77
|
UserClosedEmpathize?: void | undefined;
|
|
78
|
+
EmpathizeGotNoContent?: string | undefined;
|
|
78
79
|
UserChangedExtraParams?: Dictionary<unknown> | undefined;
|
|
79
80
|
ExtraParamsChanged?: Dictionary<unknown> | undefined;
|
|
80
81
|
ExtraParamsProvided?: Dictionary<unknown> | 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"}
|
|
@@ -65,6 +65,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
65
|
EmpathizeClosed?: void | undefined;
|
|
66
66
|
EmpathizeOpened?: void | undefined;
|
|
67
67
|
UserClosedEmpathize?: void | undefined;
|
|
68
|
+
EmpathizeGotNoContent?: string | undefined;
|
|
68
69
|
UserChangedExtraParams?: Dictionary<unknown> | undefined;
|
|
69
70
|
ExtraParamsChanged?: Dictionary<unknown> | undefined;
|
|
70
71
|
ExtraParamsProvided?: Dictionary<unknown> | 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"}
|
|
@@ -153,6 +153,10 @@ export declare const searchWiring: {
|
|
|
153
153
|
setSearchQuery: import("../../wiring").Wire<string>;
|
|
154
154
|
saveOriginWire: import("../../wiring").AnyWire;
|
|
155
155
|
};
|
|
156
|
+
EmpathizeGotNoContent: {
|
|
157
|
+
setSearchQuery: import("../../wiring").Wire<string>;
|
|
158
|
+
saveOriginWire: import("../../wiring").AnyWire;
|
|
159
|
+
};
|
|
156
160
|
UserAcceptedSpellcheckQuery: {
|
|
157
161
|
resetSpellcheckQuery: import("../../wiring").AnyWire;
|
|
158
162
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/wiring.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AA8CpD;;;;GAIG;AACH,eAAO,MAAM,oCAAoC,gCAEhD,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAAyD,CAAA;AAEpF;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,2DAA6C,CAAA;AAExF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,gCAAkC,CAAA;AAEnE;;;;GAIG;AACH,eAAO,MAAM,cAAc,wEAA+B,CAAA;AAE1D;;;;GAIG;AACH,eAAO,MAAM,cAAc,qCAAyB,CAAA;AAEpD;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAA6B,CAAA;AAE1D;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,oEAAmC,CAAA;AAElE;;;;GAIG;AACH,eAAO,MAAM,OAAO,qCAAwB,CAAA;AAE5C;;;;GAIG;AACH,eAAO,MAAM,YAAY,wDAA+B,CAAA;AAExD;;;;GAIG;AACH,eAAO,MAAM,aAAa,qCAAwB,CAAA;AAElD;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,+EAA0B,CAAA;AAE3D;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,gCAAkD,CAAA;AAEtF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAAsC,CAAA;AAEnE;;;;GAIG;AACH,eAAO,MAAM,6BAA6B,gCAAmD,CAAA;AAE7F;;;;GAIG;AACH,eAAO,MAAM,gCAAgC,gCAE5C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAA0C,CAAA;AAErE;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,gCAMxC,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,2DAErC,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,gCAGrC,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,+BAA+B,gCAG3C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,mCAAmC,gCAG/C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,wCAAwC,gCAGpD,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/wiring.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AA8CpD;;;;GAIG;AACH,eAAO,MAAM,oCAAoC,gCAEhD,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAAyD,CAAA;AAEpF;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,2DAA6C,CAAA;AAExF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,gCAAkC,CAAA;AAEnE;;;;GAIG;AACH,eAAO,MAAM,cAAc,wEAA+B,CAAA;AAE1D;;;;GAIG;AACH,eAAO,MAAM,cAAc,qCAAyB,CAAA;AAEpD;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAA6B,CAAA;AAE1D;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,oEAAmC,CAAA;AAElE;;;;GAIG;AACH,eAAO,MAAM,OAAO,qCAAwB,CAAA;AAE5C;;;;GAIG;AACH,eAAO,MAAM,YAAY,wDAA+B,CAAA;AAExD;;;;GAIG;AACH,eAAO,MAAM,aAAa,qCAAwB,CAAA;AAElD;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,+EAA0B,CAAA;AAE3D;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,gCAAkD,CAAA;AAEtF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAAsC,CAAA;AAEnE;;;;GAIG;AACH,eAAO,MAAM,6BAA6B,gCAAmD,CAAA;AAE7F;;;;GAIG;AACH,eAAO,MAAM,gCAAgC,gCAE5C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAA0C,CAAA;AAErE;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,gCAMxC,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,2DAErC,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,gCAGrC,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,+BAA+B,gCAG3C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,mCAAmC,gCAG/C,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,wCAAwC,gCAGpD,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8EvB,CAAA"}
|