@empathyco/x-components 6.0.0-alpha.32 → 6.0.0-alpha.33
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 +9 -0
- package/core/index.js +1 -0
- package/core/index.js.map +1 -1
- package/design-system/deprecated-full-theme.css +1270 -1270
- package/docs/API-reference/api/x-components.globalxbus.md +2 -0
- package/docs/API-reference/api/x-components.hierarchicalfilter.md +1 -0
- package/docs/API-reference/api/x-components.md +1 -0
- package/docs/API-reference/api/x-components.pageselector.md +80 -0
- package/docs/API-reference/api/x-components.searchconfig.md +1 -0
- package/docs/API-reference/api/x-components.searchconfig.pagemode.md +11 -0
- package/docs/API-reference/api/x-components.searchxevents.md +1 -0
- package/docs/API-reference/api/x-components.searchxevents.userselectedapage.md +13 -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/components/common/x-components.page-selector.md +151 -0
- package/js/components/page-selector.vue.js +78 -0
- package/js/components/page-selector.vue.js.map +1 -0
- package/js/components/page-selector.vue2.js +128 -0
- package/js/components/page-selector.vue2.js.map +1 -0
- package/js/components/page-selector.vue3.js +7 -0
- package/js/components/page-selector.vue3.js.map +1 -0
- package/js/index.js +1 -0
- package/js/index.js.map +1 -1
- package/js/x-modules/empathize/components/empathize.vue2.js +2 -0
- package/js/x-modules/empathize/components/empathize.vue2.js.map +1 -1
- package/js/x-modules/queries-preview/components/query-preview-button.vue2.js +2 -0
- package/js/x-modules/queries-preview/components/query-preview-button.vue2.js.map +1 -1
- package/js/x-modules/queries-preview/components/query-preview.vue2.js +2 -0
- package/js/x-modules/queries-preview/components/query-preview.vue2.js.map +1 -1
- package/js/x-modules/scroll/components/scroll-to-top.vue2.js +2 -0
- package/js/x-modules/scroll/components/scroll-to-top.vue2.js.map +1 -1
- package/js/x-modules/search/store/actions/fetch-and-save-search-response.action.js +10 -3
- package/js/x-modules/search/store/actions/fetch-and-save-search-response.action.js.map +1 -1
- package/js/x-modules/search/store/module.js +2 -1
- package/js/x-modules/search/store/module.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 +388 -4
- package/report/x-components.api.md +87 -2
- package/types/components/global-x-bus.vue.d.ts +2 -0
- package/types/components/global-x-bus.vue.d.ts.map +1 -1
- package/types/components/index.d.ts +1 -0
- package/types/components/index.d.ts.map +1 -1
- package/types/components/page-selector.vue.d.ts +125 -0
- package/types/components/page-selector.vue.d.ts.map +1 -0
- package/types/components/snippet-callbacks.vue.d.ts +1 -0
- package/types/components/snippet-callbacks.vue.d.ts.map +1 -1
- package/types/types/page-mode.d.ts +2 -0
- package/types/types/page-mode.d.ts.map +1 -0
- 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/config.types.d.ts +2 -0
- package/types/x-modules/search/config.types.d.ts.map +1 -1
- package/types/x-modules/search/events.types.d.ts +4 -0
- package/types/x-modules/search/events.types.d.ts.map +1 -1
- package/types/x-modules/search/store/actions/fetch-and-save-search-response.action.d.ts.map +1 -1
- package/types/x-modules/search/store/module.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
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { Dictionary } from '@empathyco/x-utils';
|
|
3
|
+
interface PageItem {
|
|
4
|
+
value: number | string;
|
|
5
|
+
isSelected: boolean;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Component that renders a pagination control with buttons for navigating
|
|
9
|
+
* between pages. It displays the current page, allows selecting other pages,
|
|
10
|
+
* and emits events when a page is selected.
|
|
11
|
+
*
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
declare const _default: import("vue").DefineComponent<{
|
|
15
|
+
/**
|
|
16
|
+
* CSS classes to customize the prev/next buttons.
|
|
17
|
+
*/
|
|
18
|
+
buttonClasses: {
|
|
19
|
+
type: PropType<(string | Dictionary<boolean>)[]>;
|
|
20
|
+
default: () => never[];
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* The current page number.
|
|
24
|
+
*/
|
|
25
|
+
currentPage: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* The string content of the hidden pages.
|
|
31
|
+
*/
|
|
32
|
+
hiddenPage: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* CSS classes to customize the page items.
|
|
38
|
+
*/
|
|
39
|
+
itemClasses: {
|
|
40
|
+
type: PropType<(isSelected: boolean) => string | Dictionary<boolean> | (string | Dictionary<boolean>)[]>;
|
|
41
|
+
default: () => never[];
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* The number of pages to show before and after the current page.
|
|
45
|
+
*/
|
|
46
|
+
range: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
default: number;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* The class of the scroll container to scroll to top when a page is selected.
|
|
52
|
+
*/
|
|
53
|
+
scrollTarget: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* The total number of pages.
|
|
59
|
+
*/
|
|
60
|
+
totalPages: {
|
|
61
|
+
type: NumberConstructor;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
}, {
|
|
65
|
+
visiblePages: import("vue").ComputedRef<PageItem[]>;
|
|
66
|
+
selectPage: (page: number | string) => void;
|
|
67
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
+
/**
|
|
69
|
+
* CSS classes to customize the prev/next buttons.
|
|
70
|
+
*/
|
|
71
|
+
buttonClasses: {
|
|
72
|
+
type: PropType<(string | Dictionary<boolean>)[]>;
|
|
73
|
+
default: () => never[];
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* The current page number.
|
|
77
|
+
*/
|
|
78
|
+
currentPage: {
|
|
79
|
+
type: NumberConstructor;
|
|
80
|
+
required: true;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* The string content of the hidden pages.
|
|
84
|
+
*/
|
|
85
|
+
hiddenPage: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* CSS classes to customize the page items.
|
|
91
|
+
*/
|
|
92
|
+
itemClasses: {
|
|
93
|
+
type: PropType<(isSelected: boolean) => string | Dictionary<boolean> | (string | Dictionary<boolean>)[]>;
|
|
94
|
+
default: () => never[];
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* The number of pages to show before and after the current page.
|
|
98
|
+
*/
|
|
99
|
+
range: {
|
|
100
|
+
type: NumberConstructor;
|
|
101
|
+
default: number;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* The class of the scroll container to scroll to top when a page is selected.
|
|
105
|
+
*/
|
|
106
|
+
scrollTarget: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* The total number of pages.
|
|
112
|
+
*/
|
|
113
|
+
totalPages: {
|
|
114
|
+
type: NumberConstructor;
|
|
115
|
+
required: true;
|
|
116
|
+
};
|
|
117
|
+
}>>, {
|
|
118
|
+
buttonClasses: (string | Dictionary<boolean>)[];
|
|
119
|
+
hiddenPage: string;
|
|
120
|
+
itemClasses: (isSelected: boolean) => string | Dictionary<boolean> | (string | Dictionary<boolean>)[];
|
|
121
|
+
range: number;
|
|
122
|
+
scrollTarget: string;
|
|
123
|
+
}, {}>;
|
|
124
|
+
export default _default;
|
|
125
|
+
//# sourceMappingURL=page-selector.vue?vue&type=script&lang.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-selector.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../src/components/page-selector.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACE,OAAO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGhD,UAAU,QAAQ;IAChB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,UAAU,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;GAMG;;IAIC;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;oCAGc,OAAO,KAAK,MAAM,GAAG,WAAW,OAAO,CAAC,GAAG,CAAC,MAAM,GAAG,WAAW,OAAO,CAAC,CAAC,EAAE;;;IAI5F;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;uBA0CuB,MAAM,GAAG,MAAM,KAAG,IAAI;;IAxFhD;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;oCAGc,OAAO,KAAK,MAAM,GAAG,WAAW,OAAO,CAAC,GAAG,CAAC,MAAM,GAAG,WAAW,OAAO,CAAC,CAAC,EAAE;;;IAI5F;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;;8BApBc,OAAO,KAAK,MAAM,GAAG,WAAW,OAAO,CAAC,GAAG,CAAC,MAAM,GAAG,WAAW,OAAO,CAAC,CAAC,EAAE;;;;AA7BhG,wBA8GG"}
|
|
@@ -149,6 +149,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
149
149
|
UserClickedAPromoted: (payload: import("@empathyco/x-types").Promoted, metadata: WireMetadata) => unknown;
|
|
150
150
|
UserClickedABanner: (payload: import("@empathyco/x-types").Banner, metadata: WireMetadata) => unknown;
|
|
151
151
|
UserClickedAbortARedirection: (payload: undefined, metadata: WireMetadata) => unknown;
|
|
152
|
+
UserSelectedAPage: (payload: number, metadata: WireMetadata) => unknown;
|
|
152
153
|
SemanticQueryRequestUpdated: (payload: import("@empathyco/x-types").SemanticQueriesRequest | null, metadata: WireMetadata) => unknown;
|
|
153
154
|
SemanticQueriesResponseChanged: (payload: import("@empathyco/x-types").SemanticQuery[], metadata: WireMetadata) => unknown;
|
|
154
155
|
UserSelectedASemanticQuery: (payload: import("@empathyco/x-types").SemanticQuery, 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":"AAGE,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAKzC;;;;;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":"AAGE,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAKzC;;;;;GAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACH,wBA0CG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-mode.d.ts","sourceRoot":"","sources":["../../../src/types/page-mode.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,QAAQ,GAAG,iBAAiB,GAAG,YAAY,CAAC"}
|
|
@@ -174,6 +174,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
174
|
UserClickedAPromoted?: import("@empathyco/x-types").Promoted | undefined;
|
|
175
175
|
UserClickedABanner?: import("@empathyco/x-types").Banner | undefined;
|
|
176
176
|
UserClickedAbortARedirection?: void | undefined;
|
|
177
|
+
UserSelectedAPage?: number | undefined;
|
|
177
178
|
SemanticQueryRequestUpdated?: import("@empathyco/x-types").SemanticQueriesRequest | null | undefined;
|
|
178
179
|
SemanticQueriesResponseChanged?: import("@empathyco/x-types").SemanticQuery[] | undefined;
|
|
179
180
|
UserSelectedASemanticQuery?: import("@empathyco/x-types").SemanticQuery | 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":"AACE,OAAO,EACL,MAAM,EACN,kBAAkB,IAAI,uBAAuB,EAE9C,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAY,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAM/D;;;;GAIG;;IAMC,iCAAiC;;;;;IAKjC,+DAA+D;;IAE/D;;;;OAIG;;IAEH,+BAA+B;;;;;IAK/B,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":"AACE,OAAO,EACL,MAAM,EACN,kBAAkB,IAAI,uBAAuB,EAE9C,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAY,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAM/D;;;;GAIG;;IAMC,iCAAiC;;;;;IAKjC,+DAA+D;;IAE/D;;;;OAIG;;IAEH,+BAA+B;;;;;IAK/B,0CAA0C;;IAE1C,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAyDM,uBAAuB;;IA7EvE,iCAAiC;;;;;IAKjC,+DAA+D;;IAE/D;;;;OAIG;;IAEH,+BAA+B;;;;;IAK/B,0CAA0C;;IAE1C,0CAA0C;;;;;AAzB9C,wBAgHG"}
|
|
@@ -164,6 +164,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
164
164
|
UserClickedAPromoted?: import("@empathyco/x-types").Promoted | undefined;
|
|
165
165
|
UserClickedABanner?: import("@empathyco/x-types").Banner | undefined;
|
|
166
166
|
UserClickedAbortARedirection?: void | undefined;
|
|
167
|
+
UserSelectedAPage?: number | undefined;
|
|
167
168
|
SemanticQueryRequestUpdated?: import("@empathyco/x-types").SemanticQueriesRequest | null | undefined;
|
|
168
169
|
SemanticQueriesResponseChanged?: import("@empathyco/x-types").SemanticQuery[] | undefined;
|
|
169
170
|
UserSelectedASemanticQuery?: import("@empathyco/x-types").SemanticQuery | 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":"AACE,OAAO,EAAE,YAAY,IAAI,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAI/D;;;;GAIG;;IAOC,iCAAiC;;;;;IAKjC,iFAAiF;;IAEjF,+BAA+B
|
|
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":"AACE,OAAO,EAAE,YAAY,IAAI,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAI/D;;;;GAIG;;IAOC,iCAAiC;;;;;IAKjC,iFAAiF;;IAEjF,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAP/B,iCAAiC;;;;;IAKjC,iFAAiF;;IAEjF,+BAA+B;;;;;;;;AAbnC,wBAsCG"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PageMode } from '../../types/page-mode';
|
|
1
2
|
/**
|
|
2
3
|
* Configuration options for the {@link SearchXModule}.
|
|
3
4
|
*
|
|
@@ -8,5 +9,6 @@ export interface SearchConfig {
|
|
|
8
9
|
* Maximum number of results to request.
|
|
9
10
|
*/
|
|
10
11
|
pageSize: number;
|
|
12
|
+
pageMode: PageMode;
|
|
11
13
|
}
|
|
12
14
|
//# sourceMappingURL=config.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/config.types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/config.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;CACpB"}
|
|
@@ -103,5 +103,9 @@ export interface SearchXEvents {
|
|
|
103
103
|
* The user has aborted a redirection.
|
|
104
104
|
*/
|
|
105
105
|
UserClickedAbortARedirection: void;
|
|
106
|
+
/**
|
|
107
|
+
* The user has selected a page.
|
|
108
|
+
*/
|
|
109
|
+
UserSelectedAPage: number;
|
|
106
110
|
}
|
|
107
111
|
//# sourceMappingURL=events.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,KAAK,EACL,QAAQ,EACR,WAAW,EACX,MAAM,EACN,IAAI,EACJ,cAAc,EACf,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAExE;;;;;GAKG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,aAAa,EAAE,KAAK,EAAE,CAAC;IACvB;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,qBAAqB,EAAE,IAAI,CAAC;IAC5B;;;OAGG;IACH,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB;;;;OAIG;IACH,oBAAoB,EAAE,qBAAqB,GAAG,IAAI,CAAC;IACnD;;;;;;;;OAQG;IACH,oBAAoB,EAAE,qBAAqB,GAAG,IAAI,CAAC;IACnD;;;OAGG;IACH,qBAAqB,EAAE,sBAAsB,CAAC;IAC9C;;;OAGG;IACH,oBAAoB,EAAE,cAAc,CAAC;IACrC;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,gBAAgB,EAAE,IAAI,CAAC;IACvB;;;;;;OAMG;IACH,oBAAoB,EAAE,IAAI,CAAC;IAC3B;;;OAGG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;OAEG;IACH,yBAAyB,EAAE,IAAI,CAAC;IAChC;;;OAGG;IACH,uBAAuB,EAAE,WAAW,CAAC;IACrC;;;OAGG;IACH,oBAAoB,EAAE,QAAQ,CAAC;IAC/B;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;OAEG;IACH,4BAA4B,EAAE,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,KAAK,EACL,QAAQ,EACR,WAAW,EACX,MAAM,EACN,IAAI,EACJ,cAAc,EACf,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAExE;;;;;GAKG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,aAAa,EAAE,KAAK,EAAE,CAAC;IACvB;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,qBAAqB,EAAE,IAAI,CAAC;IAC5B;;;OAGG;IACH,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB;;;;OAIG;IACH,oBAAoB,EAAE,qBAAqB,GAAG,IAAI,CAAC;IACnD;;;;;;;;OAQG;IACH,oBAAoB,EAAE,qBAAqB,GAAG,IAAI,CAAC;IACnD;;;OAGG;IACH,qBAAqB,EAAE,sBAAsB,CAAC;IAC9C;;;OAGG;IACH,oBAAoB,EAAE,cAAc,CAAC;IACrC;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,gBAAgB,EAAE,IAAI,CAAC;IACvB;;;;;;OAMG;IACH,oBAAoB,EAAE,IAAI,CAAC;IAC3B;;;OAGG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;OAEG;IACH,yBAAyB,EAAE,IAAI,CAAC;IAChC;;;OAGG;IACH,uBAAuB,EAAE,WAAW,CAAC;IACrC;;;OAGG;IACH,oBAAoB,EAAE,QAAQ,CAAC;IAC/B;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;OAEG;IACH,4BAA4B,EAAE,IAAI,CAAC;IACnC;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-and-save-search-response.action.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/search/store/actions/fetch-and-save-search-response.action.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAe,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"fetch-and-save-search-response.action.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/search/store/actions/fetch-and-save-search-response.action.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAe,MAAM,UAAU,CAAC;AAsD5D;;;;GAIG;AACH,eAAO,MAAM,0BAA0B,+FAAe,CAAC;AAEvD;;;;GAIG;AACH,eAAO,MAAM,gCAAgC,YAAiB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/search/store/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAkB1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,EAAE,
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/search/store/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAkB1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,EAAE,kBA+GhC,CAAC;AAEF;;;;;;;GAOG;AACH,wBAAgB,eAAe;;;;;;;;;;;;;;;;;;;;;;;;EA0B9B"}
|
|
@@ -214,5 +214,9 @@ export declare const searchWiring: {
|
|
|
214
214
|
UserSelectedAHistoryQuery: {
|
|
215
215
|
setSearchSelectedFiltersFromHistoryQuery: import("../../wiring").AnyWire;
|
|
216
216
|
};
|
|
217
|
+
UserSelectedAPage: {
|
|
218
|
+
setSearchPage: import("../../wiring").Wire<number>;
|
|
219
|
+
resetAppending: import("../../wiring").AnyWire;
|
|
220
|
+
};
|
|
217
221
|
};
|
|
218
222
|
//# sourceMappingURL=wiring.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/wiring.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAqChD;;;;GAIG;AACH,eAAO,MAAM,oCAAoC,gCAEhD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAAyD,CAAC;AAErF;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,2DAA6C,CAAC;AAEzF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,gCAAkC,CAAC;AAEpE;;;;GAIG;AACH,eAAO,MAAM,cAAc,wEAA+B,CAAC;AAE3D;;;;GAIG;AACH,eAAO,MAAM,cAAc,qCAAyB,CAAC;AAErD;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAA6B,CAAC;AAE3D;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,oEAAmC,CAAC;AAEnE;;;;GAIG;AACH,eAAO,MAAM,OAAO,qCAAwB,CAAC;AAE7C;;;;GAIG;AACH,eAAO,MAAM,YAAY,wDAA+B,CAAC;AAEzD;;;;GAIG;AACH,eAAO,MAAM,aAAa,qCAAwB,CAAC;AAEnD;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,+EAA0B,CAAC;AAE5D;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,gCAAkD,CAAC;AAEvF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAAsC,CAAC;AAEpE;;;;GAIG;AACH,eAAO,MAAM,6BAA6B,gCAAmD,CAAC;AAE9F;;;;GAIG;AACH,eAAO,MAAM,gCAAgC,gCAE5C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAA0C,CAAC;AAEtE;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,gCAMxC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,2DAErC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,gCAGrC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,+BAA+B,gCAG3C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,mCAAmC,gCAG/C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,wCAAwC,gCAGpD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/search/wiring.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAqChD;;;;GAIG;AACH,eAAO,MAAM,oCAAoC,gCAEhD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAAyD,CAAC;AAErF;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,2DAA6C,CAAC;AAEzF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,gCAAkC,CAAC;AAEpE;;;;GAIG;AACH,eAAO,MAAM,cAAc,wEAA+B,CAAC;AAE3D;;;;GAIG;AACH,eAAO,MAAM,cAAc,qCAAyB,CAAC;AAErD;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAA6B,CAAC;AAE3D;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,oEAAmC,CAAC;AAEnE;;;;GAIG;AACH,eAAO,MAAM,OAAO,qCAAwB,CAAC;AAE7C;;;;GAIG;AACH,eAAO,MAAM,YAAY,wDAA+B,CAAC;AAEzD;;;;GAIG;AACH,eAAO,MAAM,aAAa,qCAAwB,CAAC;AAEnD;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,+EAA0B,CAAC;AAE5D;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,gCAAkD,CAAC;AAEvF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,gCAAsC,CAAC;AAEpE;;;;GAIG;AACH,eAAO,MAAM,6BAA6B,gCAAmD,CAAC;AAE9F;;;;GAIG;AACH,eAAO,MAAM,gCAAgC,gCAE5C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,gCAA0C,CAAC;AAEtE;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,gCAMxC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,2DAErC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,gCAGrC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,+BAA+B,gCAG3C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,mCAAmC,gCAG/C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,wCAAwC,gCAGpD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EvB,CAAC"}
|