@visitscotland/component-library 5.15.3 → 5.16.0
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/dist/client/manifest.json +14 -16
- package/dist/client/scripts/2265981c0419fd31e547.js +1 -0
- package/dist/client/scripts/{d7c116548c18ae4946f6.js → 49f72f28d28a8aea228b.js} +1 -1
- package/dist/client/scripts/701b3f29f72a42f4ba5b.js +1 -0
- package/dist/client/scripts/{d4e53de1fac9706422b8.js → 721044e6d4d9f7d20737.js} +1 -1
- package/dist/client/scripts/{5f1fb56b0d235de7a280.js → 7b75378e25bc74c7aeb0.js} +1 -1
- package/dist/client/styles/701b3f29f72a42f4ba5b.css +1 -0
- package/dist/components/components/panel/Panel.vue.d.ts +25 -663
- package/dist/components/stores/federatedSearch.store.d.ts +7 -1
- package/dist/components/style.css +1 -1
- package/dist/components/vs-component-library.js +34 -34
- package/dist/components/vs-component-library.mjs +696 -683
- package/dist/ssr/index.js +1 -1
- package/dist/ssr/manifest.json +1 -1
- package/dist/ssr/styles/{a2de22def952bbe88547.css → 9a83335238cd4a02f82a.css} +1 -1
- package/package.json +1 -1
- package/dist/client/scripts/38d93988ab8f6c51fb4d.js +0 -1
- package/dist/client/scripts/e9fdb60cef82c8616777.js +0 -1
- package/dist/client/styles/38d93988ab8f6c51fb4d.css +0 -1
- /package/dist/client/styles/{e9fdb60cef82c8616777.css → 2265981c0419fd31e547.css} +0 -0
- /package/dist/client/styles/{5f1fb56b0d235de7a280.css → 7b75378e25bc74c7aeb0.css} +0 -0
|
@@ -25,12 +25,14 @@ declare const useFederatedSearchStore: import('pinia').StoreDefinition<"federate
|
|
|
25
25
|
selectedSubCategory: import('vue').Ref<any[], any[]>;
|
|
26
26
|
selectedSubCategoryKey: import('vue').Ref<any[], any[]>;
|
|
27
27
|
totalResults: import('vue').Ref<any, any>;
|
|
28
|
+
totalResultsCludo: import('vue').Ref<any, any>;
|
|
29
|
+
totalResultsEvents: import('vue').Ref<any, any>;
|
|
28
30
|
navigateToResultsPage: (resetPageNo?: boolean) => void;
|
|
29
31
|
isHomePage: import('vue').Ref<boolean, boolean>;
|
|
30
32
|
startDate: import('vue').Ref<string, string>;
|
|
31
33
|
endDate: import('vue').Ref<string, string>;
|
|
32
34
|
sortBy: import('vue').Ref<any, any>;
|
|
33
|
-
}, "currentPage" | "isHomePage" | "selectedSubCategory" | "isLoading" | "selectedCategory" | "searchTerm" | "endDate" | "startDate" | "cludoCategories" | "cludoCredentials" | "cludoError" | "eventsApi" | "eventsApiError" | "results" | "selectedCategoryKey" | "selectedSubCategoryKey" | "totalResults" | "sortBy">, Pick<{
|
|
35
|
+
}, "currentPage" | "isHomePage" | "selectedSubCategory" | "isLoading" | "selectedCategory" | "searchTerm" | "endDate" | "startDate" | "cludoCategories" | "cludoCredentials" | "cludoError" | "eventsApi" | "eventsApiError" | "results" | "selectedCategoryKey" | "selectedSubCategoryKey" | "totalResults" | "totalResultsCludo" | "totalResultsEvents" | "sortBy">, Pick<{
|
|
34
36
|
cludoCategories: import('vue').Ref<any, any>;
|
|
35
37
|
currentPage: import('vue').Ref<number, number>;
|
|
36
38
|
cludoCredentials: import('vue').Ref<{
|
|
@@ -55,6 +57,8 @@ declare const useFederatedSearchStore: import('pinia').StoreDefinition<"federate
|
|
|
55
57
|
selectedSubCategory: import('vue').Ref<any[], any[]>;
|
|
56
58
|
selectedSubCategoryKey: import('vue').Ref<any[], any[]>;
|
|
57
59
|
totalResults: import('vue').Ref<any, any>;
|
|
60
|
+
totalResultsCludo: import('vue').Ref<any, any>;
|
|
61
|
+
totalResultsEvents: import('vue').Ref<any, any>;
|
|
58
62
|
navigateToResultsPage: (resetPageNo?: boolean) => void;
|
|
59
63
|
isHomePage: import('vue').Ref<boolean, boolean>;
|
|
60
64
|
startDate: import('vue').Ref<string, string>;
|
|
@@ -85,6 +89,8 @@ declare const useFederatedSearchStore: import('pinia').StoreDefinition<"federate
|
|
|
85
89
|
selectedSubCategory: import('vue').Ref<any[], any[]>;
|
|
86
90
|
selectedSubCategoryKey: import('vue').Ref<any[], any[]>;
|
|
87
91
|
totalResults: import('vue').Ref<any, any>;
|
|
92
|
+
totalResultsCludo: import('vue').Ref<any, any>;
|
|
93
|
+
totalResultsEvents: import('vue').Ref<any, any>;
|
|
88
94
|
navigateToResultsPage: (resetPageNo?: boolean) => void;
|
|
89
95
|
isHomePage: import('vue').Ref<boolean, boolean>;
|
|
90
96
|
startDate: import('vue').Ref<string, string>;
|