@paris-ias/list 1.0.49 → 1.0.51
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/module.json
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-row>
|
|
3
3
|
<template v-for="filterItem in Object.keys($stores[type].filters)">
|
|
4
|
-
<v-col
|
|
4
|
+
<v-col
|
|
5
|
+
v-if="computeVisibility(filterItem)"
|
|
6
|
+
:key="type + filterItem"
|
|
7
|
+
cols="12"
|
|
8
|
+
sm="6"
|
|
9
|
+
md="4"
|
|
10
|
+
>
|
|
5
11
|
<component
|
|
6
12
|
:is="ComponentName(filterItem)"
|
|
7
13
|
tile
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
type: string;
|
|
3
|
-
totalPages: number;
|
|
4
3
|
currentPage: number;
|
|
4
|
+
totalPages: number;
|
|
5
5
|
pagePadding: number;
|
|
6
6
|
pageGap: number;
|
|
7
7
|
hidePrevNext: boolean;
|
|
8
8
|
$props: {
|
|
9
9
|
readonly type?: string | undefined;
|
|
10
|
-
readonly totalPages?: number | undefined;
|
|
11
10
|
readonly currentPage?: number | undefined;
|
|
11
|
+
readonly totalPages?: number | undefined;
|
|
12
12
|
readonly pagePadding?: number | undefined;
|
|
13
13
|
readonly pageGap?: number | undefined;
|
|
14
14
|
readonly hidePrevNext?: boolean | undefined;
|
|
@@ -37,7 +37,7 @@ export const useRootStore = defineStore("rootStore", {
|
|
|
37
37
|
if (Object.keys(query)?.length) {
|
|
38
38
|
Object.keys(query).forEach((filter) => {
|
|
39
39
|
if (Object.keys($stores[type].filters).includes(filter))
|
|
40
|
-
$stores[type].filters[filter].value = $stores[type].
|
|
40
|
+
$stores[type].filters[filter].value = $stores[type].filters[filter].multiple ? JSON.parse(query[filter]) : query[filter];
|
|
41
41
|
});
|
|
42
42
|
}
|
|
43
43
|
console.log("query loaded");
|
|
@@ -307,6 +307,7 @@
|
|
|
307
307
|
"github": "Visit our Github repositories",
|
|
308
308
|
"idRef": "Visit the author IdRef page",
|
|
309
309
|
"instagram": "Follow us on Instagram",
|
|
310
|
+
"researchgate": "Visit the author ResearchGate page",
|
|
310
311
|
"linkedin": "Get in touch on linkedin",
|
|
311
312
|
"orcid": "Visit the author Orcid page",
|
|
312
313
|
"ROR": "Visit the institution ROR page",
|
|
@@ -333,5 +334,8 @@
|
|
|
333
334
|
"watch-the-replay": "Watch the replay",
|
|
334
335
|
"present": "present",
|
|
335
336
|
"visit-this-project-website": "Visit this project website",
|
|
336
|
-
"visit-this-publications-website": "Visit this publication webpage"
|
|
337
|
+
"visit-this-publications-website": "Visit this publication webpage",
|
|
338
|
+
"close-the-filter-panel": "Close the filter panel",
|
|
339
|
+
"list.by-vintage-from-recent-to-old": "By Year, from recent to old",
|
|
340
|
+
"list.by-vintage-from-old-to-recent": "By Year, from old to recent"
|
|
337
341
|
}
|