@paris-ias/list 1.0.112 → 1.0.113

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.
Files changed (151) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/list/molecules/Pagination.vue +2 -0
  3. package/dist/runtime/components/list/organisms/List.vue +11 -1
  4. package/dist/runtime/runtime/components/actions/ExpandedItem.vue +14 -0
  5. package/dist/runtime/runtime/components/actions/RowsItem.vue +12 -0
  6. package/dist/runtime/runtime/components/actions/View.vue +20 -0
  7. package/dist/runtime/runtime/components/affiliations/ExpandedItem.vue +14 -0
  8. package/dist/runtime/runtime/components/affiliations/RowsItem.vue +12 -0
  9. package/dist/runtime/runtime/components/affiliations/View.vue +20 -0
  10. package/dist/runtime/runtime/components/apps/ExpandedItem.vue +14 -0
  11. package/dist/runtime/runtime/components/apps/RowsItem.vue +12 -0
  12. package/dist/runtime/runtime/components/apps/View.vue +20 -0
  13. package/dist/runtime/runtime/components/disciplines/ExpandedItem.vue +14 -0
  14. package/dist/runtime/runtime/components/disciplines/RowsItem.vue +12 -0
  15. package/dist/runtime/runtime/components/disciplines/View.vue +20 -0
  16. package/dist/runtime/runtime/components/events/Badges.vue +73 -0
  17. package/dist/runtime/runtime/components/events/DateTimePlace.vue +77 -0
  18. package/dist/runtime/runtime/components/events/DenseItem.vue +60 -0
  19. package/dist/runtime/runtime/components/events/ExpandedItem.vue +9 -0
  20. package/dist/runtime/runtime/components/events/RegisterModal.vue +50 -0
  21. package/dist/runtime/runtime/components/events/RelatedItem.vue +44 -0
  22. package/dist/runtime/runtime/components/events/RowsItem.vue +118 -0
  23. package/dist/runtime/runtime/components/events/SlidingItem.vue +63 -0
  24. package/dist/runtime/runtime/components/events/View.vue +333 -0
  25. package/dist/runtime/runtime/components/fellowships/Badges.vue +47 -0
  26. package/dist/runtime/runtime/components/fellowships/DenseItem.vue +42 -0
  27. package/dist/runtime/runtime/components/fellowships/ExpandedItem.vue +7 -0
  28. package/dist/runtime/runtime/components/fellowships/RegisterModal.vue +41 -0
  29. package/dist/runtime/runtime/components/fellowships/RowsItem.vue +58 -0
  30. package/dist/runtime/runtime/components/fellowships/View.vue +203 -0
  31. package/dist/runtime/runtime/components/files/ExpandedItem.vue +14 -0
  32. package/dist/runtime/runtime/components/files/RowsItem.vue +12 -0
  33. package/dist/runtime/runtime/components/files/View.vue +20 -0
  34. package/dist/runtime/runtime/components/list/atoms/FiltersMenu.vue +44 -0
  35. package/dist/runtime/runtime/components/list/atoms/ResetButton.vue +33 -0
  36. package/dist/runtime/runtime/components/list/atoms/ResultsList.vue +27 -0
  37. package/dist/runtime/runtime/components/list/atoms/SearchInput.vue +59 -0
  38. package/dist/runtime/runtime/components/list/atoms/SearchItem.vue +65 -0
  39. package/dist/runtime/runtime/components/list/atoms/SearchString.vue +160 -0
  40. package/dist/runtime/runtime/components/list/atoms/SortMenu.vue +80 -0
  41. package/dist/runtime/runtime/components/list/atoms/ViewMenu.vue +63 -0
  42. package/dist/runtime/runtime/components/list/atoms/itemsPerPage.vue +33 -0
  43. package/dist/runtime/runtime/components/list/inputs/AutoComplete.vue +24 -0
  44. package/dist/runtime/runtime/components/list/inputs/BooleanSwitch.vue +20 -0
  45. package/dist/runtime/runtime/components/list/inputs/Checkbox.vue +20 -0
  46. package/dist/runtime/runtime/components/list/inputs/Select.vue +28 -0
  47. package/dist/runtime/runtime/components/list/molecules/Filters.vue +98 -0
  48. package/dist/runtime/runtime/components/list/molecules/GlobalSearchInput.vue +131 -0
  49. package/dist/runtime/runtime/components/list/molecules/Header.vue +51 -0
  50. package/dist/runtime/runtime/components/list/molecules/Pagination.vue +194 -0
  51. package/dist/runtime/runtime/components/list/molecules/ResultsContainer.vue +78 -0
  52. package/dist/runtime/runtime/components/list/organisms/List.vue +110 -0
  53. package/dist/runtime/runtime/components/list/organisms/Results.vue +72 -0
  54. package/dist/runtime/runtime/components/list/organisms/Slider.vue +180 -0
  55. package/dist/runtime/runtime/components/list/views/Dense.vue +12 -0
  56. package/dist/runtime/runtime/components/list/views/Expanded.vue +10 -0
  57. package/dist/runtime/runtime/components/list/views/Grid.vue +13 -0
  58. package/dist/runtime/runtime/components/list/views/Rows.vue +12 -0
  59. package/dist/runtime/runtime/components/list/views/Slider.vue +147 -0
  60. package/dist/runtime/runtime/components/list/views/Table.vue +13 -0
  61. package/dist/runtime/runtime/components/mailing/ExpandedItem.vue +14 -0
  62. package/dist/runtime/runtime/components/mailing/RowsItem.vue +12 -0
  63. package/dist/runtime/runtime/components/mailing/View.vue +20 -0
  64. package/dist/runtime/runtime/components/misc/atoms/DateStamp.vue +101 -0
  65. package/dist/runtime/runtime/components/misc/atoms/ImageContainer.vue +127 -0
  66. package/dist/runtime/runtime/components/misc/atoms/ShareMenu.vue +61 -0
  67. package/dist/runtime/runtime/components/misc/atoms/Socials.vue +120 -0
  68. package/dist/runtime/runtime/components/misc/molecules/ChipContainer.vue +31 -0
  69. package/dist/runtime/runtime/components/misc/molecules/Related.vue +28 -0
  70. package/dist/runtime/runtime/components/misc/molecules/RelatedItems.vue +27 -0
  71. package/dist/runtime/runtime/components/misc/molecules/SearchItem.vue +26 -0
  72. package/dist/runtime/runtime/components/news/DenseItem.vue +73 -0
  73. package/dist/runtime/runtime/components/news/ExpandedItem.vue +145 -0
  74. package/dist/runtime/runtime/components/news/Header.vue +7 -0
  75. package/dist/runtime/runtime/components/news/RelatedItem.vue +44 -0
  76. package/dist/runtime/runtime/components/news/RowsItem.vue +182 -0
  77. package/dist/runtime/runtime/components/news/View.vue +174 -0
  78. package/dist/runtime/runtime/components/people/DenseItem.vue +60 -0
  79. package/dist/runtime/runtime/components/people/ExpandedItem.vue +14 -0
  80. package/dist/runtime/runtime/components/people/GroupBadges.vue +54 -0
  81. package/dist/runtime/runtime/components/people/RelatedItem.vue +41 -0
  82. package/dist/runtime/runtime/components/people/RowsItem.vue +93 -0
  83. package/dist/runtime/runtime/components/people/View.vue +172 -0
  84. package/dist/runtime/runtime/components/projects/DenseItem.vue +77 -0
  85. package/dist/runtime/runtime/components/projects/ExpandedItem.vue +12 -0
  86. package/dist/runtime/runtime/components/projects/RelatedItem.vue +44 -0
  87. package/dist/runtime/runtime/components/projects/RowsItem.vue +103 -0
  88. package/dist/runtime/runtime/components/projects/View.vue +130 -0
  89. package/dist/runtime/runtime/components/publications/DenseItem.vue +89 -0
  90. package/dist/runtime/runtime/components/publications/RelatedItem.vue +44 -0
  91. package/dist/runtime/runtime/components/publications/RowsItem.vue +105 -0
  92. package/dist/runtime/runtime/components/publications/View.vue +132 -0
  93. package/dist/runtime/runtime/components/tags/ExpandedItem.vue +14 -0
  94. package/dist/runtime/runtime/components/tags/RowsItem.vue +12 -0
  95. package/dist/runtime/runtime/components/tags/View.vue +20 -0
  96. package/dist/runtime/runtime/components/users/ExpandedItem.vue +14 -0
  97. package/dist/runtime/runtime/components/users/RowsItem.vue +12 -0
  98. package/dist/runtime/runtime/components/users/View.vue +20 -0
  99. package/dist/runtime/runtime/composables/useFetchItem.d.ts +6 -0
  100. package/dist/runtime/runtime/composables/useFetchItem.js +49 -0
  101. package/dist/runtime/runtime/composables/useIcons.d.ts +1 -0
  102. package/dist/runtime/runtime/composables/useIcons.js +30 -0
  103. package/dist/runtime/runtime/composables/useUtils.d.ts +12 -0
  104. package/dist/runtime/runtime/composables/useUtils.js +48 -0
  105. package/dist/runtime/runtime/graphql/buildFiltersValues.gql +35 -0
  106. package/dist/runtime/runtime/graphql/item/action.gql +22 -0
  107. package/dist/runtime/runtime/graphql/item/affiliations.gql +37 -0
  108. package/dist/runtime/runtime/graphql/item/apps.gql +34 -0
  109. package/dist/runtime/runtime/graphql/item/disciplines.gql +17 -0
  110. package/dist/runtime/runtime/graphql/item/events.gql +120 -0
  111. package/dist/runtime/runtime/graphql/item/fellowships.gql +164 -0
  112. package/dist/runtime/runtime/graphql/item/files.gql +25 -0
  113. package/dist/runtime/runtime/graphql/item/mailing.gql +10 -0
  114. package/dist/runtime/runtime/graphql/item/news.gql +129 -0
  115. package/dist/runtime/runtime/graphql/item/people.gql +174 -0
  116. package/dist/runtime/runtime/graphql/item/projects.gql +171 -0
  117. package/dist/runtime/runtime/graphql/item/publications.gql +169 -0
  118. package/dist/runtime/runtime/graphql/item/tags.gql +13 -0
  119. package/dist/runtime/runtime/graphql/item/users.gql +14 -0
  120. package/dist/runtime/runtime/graphql/list/action.gql +31 -0
  121. package/dist/runtime/runtime/graphql/list/affiliations.gql +42 -0
  122. package/dist/runtime/runtime/graphql/list/apps.gql +42 -0
  123. package/dist/runtime/runtime/graphql/list/disciplines.gql +22 -0
  124. package/dist/runtime/runtime/graphql/list/events.gql +44 -0
  125. package/dist/runtime/runtime/graphql/list/fellowships.gql +53 -0
  126. package/dist/runtime/runtime/graphql/list/files.gql +37 -0
  127. package/dist/runtime/runtime/graphql/list/mailing.gql +22 -0
  128. package/dist/runtime/runtime/graphql/list/news.gql +40 -0
  129. package/dist/runtime/runtime/graphql/list/people.gql +50 -0
  130. package/dist/runtime/runtime/graphql/list/projects.gql +37 -0
  131. package/dist/runtime/runtime/graphql/list/publications.gql +38 -0
  132. package/dist/runtime/runtime/graphql/list/search.gql +161 -0
  133. package/dist/runtime/runtime/graphql/list/tags.gql +22 -0
  134. package/dist/runtime/runtime/graphql/list/users.gql +38 -0
  135. package/dist/runtime/runtime/graphql/login.gql +0 -0
  136. package/dist/runtime/runtime/plugins/pinia.d.ts +2 -0
  137. package/dist/runtime/runtime/plugins/pinia.js +134 -0
  138. package/dist/runtime/runtime/plugins/vuetify.d.ts +2 -0
  139. package/dist/runtime/runtime/plugins/vuetify.js +21 -0
  140. package/dist/runtime/runtime/public/default.png +0 -0
  141. package/dist/runtime/runtime/public/filters.json +72 -0
  142. package/dist/runtime/runtime/server/tsconfig.json +3 -0
  143. package/dist/runtime/runtime/stores/factory.d.ts +25 -0
  144. package/dist/runtime/runtime/stores/factory.js +19 -0
  145. package/dist/runtime/runtime/stores/root.d.ts +60 -0
  146. package/dist/runtime/runtime/stores/root.js +315 -0
  147. package/dist/runtime/runtime/translations/en.json +350 -0
  148. package/dist/runtime/runtime/translations/fr.json +349 -0
  149. package/dist/runtime/runtime/types/imports.d.ts +13 -0
  150. package/dist/runtime/runtime/types/stores.d.ts +11 -0
  151. package/package.json +1 -1
@@ -0,0 +1,349 @@
1
+ {
2
+ "applications-closed-since-0": "Inscriptions fermées depuis le {0}",
3
+ "back": "Retour",
4
+ "biography": "Biographie",
5
+ "date-et-heure": "Date et heure",
6
+ "details": "Plus de détails",
7
+ "details-0": "Détails",
8
+ "document": "Documents",
9
+ "events": {
10
+ "key": "Événements",
11
+ "register": "Inscrivez-vous à cet événement",
12
+ "register-me": "S'inscrire",
13
+ "see-more": "Voir plus d'événements"
14
+ },
15
+ "filters": "filtre | filtre | Filtres",
16
+ "from {0} to {1}": "Du {0} à {1}",
17
+ "gallery": "Galerie",
18
+ "hybrid-event": "Évènement hybride",
19
+ "inscription-gratuite-et-obligatoire": "Enregistrement gratuit et obligatoire",
20
+ "inscription-ouverte": "Inscription ouverte",
21
+ "items": {
22
+ "all": "Tout",
23
+ "events": "événement |événement | événements",
24
+ "fellow": "résident | résident | résidents",
25
+ "fellowships": "programme d'accueil | programme d'accueil | programmes d'accueil",
26
+ "news": "actualité | actualités | actualités",
27
+ "people": "personne | personne | personnes",
28
+ "projects": "projet | projet | projets",
29
+ "publications": "publication | publications | publications"
30
+ },
31
+ "learn-more": "En savoir plus",
32
+ "list": {
33
+ "reset-filters": "Réinitialiser les filtres",
34
+ "0-items-found": "Aucun {1} trouvé. | Un seul {1} trouvé. | {0} {1} trouvés. ",
35
+ "0-items-found-f": "Aucune {1} trouvée. | Une seule {1} trouvée. | {0} {1} trouvées. ",
36
+ "0-items-found-searching-for": "Aucun {1} trouvé pour la recherche de \"{2}\". | Un seul {1} trouvé pour la recherche de \"{2}\".| {0} {1} trouvés pour la recherche de \"{2}\". ",
37
+ "0-items-found-searching-for-f": "Aucune {1} trouvée pour la recherche de \"{2}\". | Une seule {1} trouvée pour la recherche de \"{2}\".| {0} {1} trouvées pour la recherche de \"{2}\". ",
38
+ "0-items-found-searching-for-with-1-filter": "Aucun {1} trouvé pour la recherche de \"{2}\" avec {3} {4}.| Un seul {1} trouvé pour la recherche de \"{2}\" avec {3} {4}. | {0} {1} trouvés pour la recherche de \"{2}\" avec {3} {4}. ",
39
+ "0-items-found-searching-for-with-1-filter-f": "Aucune {1} trouvée pour la recherche de \"{2}\" avec {3} {4}. | Une seule {1} trouvée pour la recherche de \"{2}\" avec {3} {4}. | {0} {1} trouvées pour la recherche de \"{2}\" avec {3} {4}. ",
40
+ "0-items-found-with-1-filter": "Aucun {1} trouvé avec {2} {3}. | Un seul {1} trouvé avec {2} {3}. | {0} {1} trouvés avec {2} {3}. ",
41
+ "0-items-found-with-1-filter-f": "Aucune {1} trouvée avec {2} {3}. | Une seule {1} trouvée avec {2} {3}. | {0} {1} trouvées avec {2} {3}. ",
42
+ "by-date-most-recent-first": "Dernier",
43
+ "by-date-oldest-first": "Le plus ancien",
44
+ "by-name-from-a-to-z": "Par nom, de A à Z",
45
+ "by-name-from-z-to-a": "Par nom, de Z à A",
46
+ "dense": "Dense",
47
+ "expanded": "Étendu",
48
+ "filters": {
49
+ "events": {
50
+ "category": {
51
+ "label": "Catégorie",
52
+ "COLLOQUIUM": "Colloque",
53
+ "CONFERENCE": "Conférence",
54
+ "FELLOW_PRESENTATION": "Présentation de Fellow",
55
+ "FORUM": "Forum",
56
+ "LECTURE": "Conférence",
57
+ "MEETING": "Réunion",
58
+ "OTHER": "Autre",
59
+ "PANEL": "Panneau",
60
+ "ROUND_TABLE": "Table ronde",
61
+ "SEMINAR": "Séminaire",
62
+ "SYMPOSIUM": "Symposium",
63
+ "EXHIBITION": "Exposition",
64
+ "WEBINAR": "Webinaire",
65
+ "WORKSHOP": "Atelier",
66
+ "CALL": "Appel à propositions"
67
+ },
68
+ "fellowship": {
69
+ "label": "Programme d'accueil",
70
+ "cat": "Pensée avancée constructive",
71
+ "fias": "Instituts français pour une étude avancée",
72
+ "paris-ias-ideas": "Idées de Paris IAS",
73
+ "pop": "Programme Oxford-Paris"
74
+ },
75
+ "online": {
76
+ "label": "En ligne"
77
+ },
78
+ "tags": {
79
+ "label": "Tags",
80
+ "Socioscope": "Socioscope",
81
+ "WPRN": "WPRN",
82
+ "WPRN-2021": "WPRN 2021"
83
+ },
84
+ "organiserCategory": {
85
+ "label": "Type d'organisateur",
86
+ "IAS": "IEA de Paris",
87
+ "MEMBER": "Membres",
88
+ "FELLOW": "Résidents",
89
+ "EXTERNAL": "Externe"
90
+ },
91
+ "outside": {
92
+ "label": "Hors les murs"
93
+ },
94
+ "past": {
95
+ "label": "Passé"
96
+ },
97
+ "disciplines": {
98
+ "label": "Discipline"
99
+ },
100
+ "status": {
101
+ "label": "Statut",
102
+ "CANCELLED": "Annulé",
103
+ "DONE": "terminé",
104
+ "POSTPONED": "Reporté",
105
+ "PUBLISHED": "Publié",
106
+ "RESCHEDULED": "Reprogrammé"
107
+ }
108
+ },
109
+ "fellowships": {
110
+ "affiliation": {
111
+ "label": "Affiliation",
112
+ "paris-1": "Paris 1",
113
+ "paris-2": "Paris 2"
114
+ },
115
+ "fellowshipType": {
116
+ "label": "Type de programme",
117
+ "IN_GROUP": "En groupe",
118
+ "LONG_STAY": "Séjour long",
119
+ "SHORT_STAY": "Séjour court"
120
+ },
121
+ "status": {
122
+ "label": "Statut",
123
+ "CANCELLED": "Annulé",
124
+ "FINISHED": "Fini",
125
+ "ONGOING": "En cours",
126
+ "PLANNED": "Prévu"
127
+ },
128
+ "disciplines": {
129
+ "label": "Discipline"
130
+ }
131
+ },
132
+ "news": {
133
+ "category": {
134
+ "label": "Catégorie",
135
+ "ANNOUNCEMENT": "Annonce",
136
+ "ARTICLE": "Article",
137
+ "AUDIO": "Audio",
138
+ "AWARD": "Prix",
139
+ "BLOG": "Blog",
140
+ "DATA": "Données",
141
+ "EVENT": "Événement",
142
+ "FELLOWSHIP": "Programme d'accueil chercheur",
143
+ "GRANT": "Financement",
144
+ "INTERVIEW": "Entretien",
145
+ "JOB": "Emploi",
146
+ "LIFE_AT_THE_INSTITUTE": "La vie à l'institut",
147
+ "OPINION": "Opinion",
148
+ "PRESS_RELEASE": "Communiqué de presse",
149
+ "PROJECT": "Projet",
150
+ "PUBLICATION": "Publication",
151
+ "REPORT": "Rapport",
152
+ "SOFTWARE": "Logiciel",
153
+ "TOOL": "Outil",
154
+ "VIDEO": "Vidéo",
155
+ "OTHER": "Autres"
156
+ },
157
+ "tags": {
158
+ "label": "Tags",
159
+ "Socioscope": "Socioscope",
160
+ "WPRN": "WPRN",
161
+ "WPRN-2021": "WPRN 2021"
162
+ }
163
+ },
164
+ "people": {
165
+ "groups": {
166
+ "label": "Catégorie",
167
+ "board": "Conseil d'administration",
168
+ "fellows": "Résidents",
169
+ "sab": "Conseil scientifique",
170
+ "sponsor": "Mécènes",
171
+ "team": "Équipe"
172
+ },
173
+ "member": {
174
+ "label": "Membre IEA",
175
+ "paris-1": "Paris 1"
176
+ },
177
+ "programs": {
178
+ "label": "Programme d'accueil",
179
+ "cat": "Pensée avancée constructive",
180
+ "fias": "Instituts français pour une étude avancée",
181
+ "paris-ias-ideas": "Idées de Paris IAS",
182
+ "pop": "Programme Oxford-Paris"
183
+ },
184
+ "vintage": {
185
+ "label": "Année"
186
+ },
187
+ "disciplines": {
188
+ "label": "Discipline"
189
+ }
190
+ },
191
+ "projects": {
192
+ "status": {
193
+ "label": "Statut",
194
+ "CANCELLED": "Annulé",
195
+ "FINISHED": "Terminé",
196
+ "IN_PROGRESS": "En cours",
197
+ "PLANNED": "Prévu"
198
+ },
199
+ "tags": {
200
+ "label": "Tags",
201
+ "Socioscope": "Socioscope",
202
+ "WPRN": "WPRN",
203
+ "WPRN-2021": "WPRN 2021"
204
+ }
205
+ },
206
+ "publications": {
207
+ "affiliations": {
208
+ "label": "Affiliation",
209
+ "paris-1": "Paris 1"
210
+ },
211
+ "tags": {
212
+ "label": "Tags",
213
+ "Socioscope": "Socioscope",
214
+ "WPRN": "WPRN",
215
+ "WPRN-2021": "WPRN 2021"
216
+ },
217
+ "disciplines": {
218
+ "label": "Disciplines"
219
+ },
220
+ "eventCategories": {
221
+ "label": "Catégorie d'évènement",
222
+ "COLLOQUIUM": "Colloque",
223
+ "CONFERENCE": "Conférence",
224
+ "FELLOW_PRESENTATION": "Présentation de Fellow",
225
+ "FORUM": "Forum",
226
+ "LECTURE": "Conférence",
227
+ "MEETING": "Réunion",
228
+ "OTHER": "Autre",
229
+ "PANEL": "Panneau",
230
+ "ROUND_TABLE": "Table ronde",
231
+ "SEMINAR": "Séminaire",
232
+ "SYMPOSIUM": "Symposium",
233
+ "WEBINAR": "Webinaire",
234
+ "WORKSHOP": "Atelier",
235
+ "OTHERS": "Autres"
236
+ },
237
+ "type": {
238
+ "label": "Type",
239
+ "ARTICLE": "Article",
240
+ "AUDIO": "Audio",
241
+ "BOOK": "Livre",
242
+ "BOOK_CHAPTER": "Chapitre de livre",
243
+ "CONFERENCE_PAPER": "Actes de conférence",
244
+ "DATA": "Données",
245
+ "PODCAST": "Podcast",
246
+ "REPORT": "Rapport",
247
+ "SOFTWARE": "Logiciel",
248
+ "THESIS": "Thèse",
249
+ "VIDEO": "Vidéo",
250
+ "OTHERS": "Autres"
251
+ }
252
+ }
253
+ },
254
+ "list": "Liste",
255
+ "page-0-of-1": "Page {0} sur {1}",
256
+ "pls-x-more": "{0} Plus",
257
+ "rows": "Rangées",
258
+ "search-type": "Rechercher parmi les {0}",
259
+ "search-type-f": "Rechercher parmi les {0}",
260
+ "sort-mode": "Mode de tri:",
261
+ "tiles": "Tuiles",
262
+ "view-issues": "Par numéro",
263
+ "view-list": "Liste",
264
+ "view-mode": "Mode d'affichage':",
265
+ "view-text": "Texte",
266
+ "view-tiles": "Tuiles"
267
+ },
268
+ "live-stream-available": "Flux vidéo disponible",
269
+ "location": "Emplacement",
270
+ "no-result": "Aucun résultat trouvé",
271
+ "online": "En ligne",
272
+ "open-the-filter-panel": "Ouvrez le panneau de filtre",
273
+ "organizers": "Organisateurs",
274
+ "our-members": "Nos membres",
275
+ "our-sponsors": "Nos mécènes",
276
+ "outside-event": "Événement extérieur",
277
+ "page-not-found": "Page introuvable",
278
+ "paris-ias": "IEA de Paris",
279
+ "people-attending-our-events-since-2011": "Les personnes assistent à nos événements depuis 2011",
280
+ "plus-de-details": "Plus les détails De",
281
+ "positions-and-affiliations": "Postes et affiliations",
282
+ "presentation": "Présentation",
283
+ "privacy-policy": "Politique de confidentialité",
284
+ "projects": "Projets",
285
+ "publications": "Publications",
286
+ "read-more": "En savoir plus",
287
+ "register": "S'inscrire",
288
+ "register-until-0": "Inscrivez-vous jusqu'au {0}",
289
+ "related": {
290
+ "events": "Événements liés",
291
+ "news": "Actualités en rapport",
292
+ "people": "Personnes impliquées",
293
+ "projects": "Projets connexes",
294
+ "publications": "Publications rattachées"
295
+ },
296
+ "rules": {
297
+ "at-least-0-characters": "Au moins {0} caractères",
298
+ "invalid-e-mail": "E-mail non valide",
299
+ "invalid-url": "URL non valide",
300
+ "invalid-youtube-url": "URL YouTube non valide",
301
+ "max-0-characters": "Caractères max {0}",
302
+ "numbers-and-special-characters-not-allowed": "Les chiffres et les caractères spéciaux ne sont pas autorisés",
303
+ "only-digits-allowed": "Nombres uniquement",
304
+ "required": "Requis"
305
+ },
306
+ "sab": "Conseil scientifique",
307
+ "scientific-advisory-board": "Conseil scientifique",
308
+ "see-more": "Voir plus",
309
+ "share-on": "Partagez cela sur {0}",
310
+ "share-this-on": "Jetez un œil à {1}",
311
+ "show-on-map": "Afficher sur la carte",
312
+ "socials": {
313
+ "ROR": "Visitez la page Institution ROR",
314
+ "facebook": "Visitez notre page Facebook",
315
+ "github": "Visitez nos référentiels GitHub",
316
+ "idRef": "Visitez la page de l'auteur IDREF",
317
+ "instagram": "Suivez-nous sur Instagram",
318
+ "linkedin": "Rester en contact sur LinkedIn",
319
+ "orcid": "Visitez la page Orcid de l'auteur",
320
+ "rss": "RSS",
321
+ "scholar": "Visitez la page de l'auteur Google Scholar",
322
+ "twitter": "Suivez-nous sur Twitter",
323
+ "wikipedia": "Vérifiez la page Wikipedia de l'auteur",
324
+ "youtube": "Découvrez notre chaîne YouTube",
325
+ "bluesky": "Visitez notre page BlueSky"
326
+ },
327
+ "subscribe": "S'abonner",
328
+ "subscribe-to-our-newsletter": "Abonnez-vous à notre newsletter",
329
+ "support": "Soutenez-nous",
330
+ "tasks": "Tâches",
331
+ "team": "Équipe",
332
+ "this-fellowship-alumni": "Cet ancien des anciens",
333
+ "type": "Type",
334
+ "upcoming-events": "Événements à venir",
335
+ "videos": "Vidéos",
336
+ "view-larger-map": "Afficher sur une carte plus grande",
337
+ "vintage": "Résident {0}",
338
+ "visit": "Nous rendre visite",
339
+ "visit-the-project-website": "Visiter le site web",
340
+ "groups": "Catégorie",
341
+ "present": "aujourd'hui",
342
+ "visit-this-project-website": "Visitez le site Web du projet",
343
+ "visit-this-publications-website": "Visitez la page Web de cette publication",
344
+ "no-biography": "Aucune biographie disponible",
345
+ "search": "Rechercher",
346
+ "close-the-filter-panel": "Réduire les filtres",
347
+ "list.by-vintage-from-recent-to-old": "Par année, du plus récent au plus vieux",
348
+ "list.by-vintage-from-old-to-recent": "Par année, du plus vieux au plus récent"
349
+ }
@@ -0,0 +1,13 @@
1
+ // Or use a wildcard if you prefer
2
+ declare module "@paris-ias/data/dist/*" {
3
+ const value: any
4
+ export default value
5
+ }
6
+ declare module "@paris-ias/data/dist/form/*" {
7
+ const value: any
8
+ export default value
9
+ }
10
+ declare module "@paris-ias/data/dist/list/*" {
11
+ const value: any
12
+ export default value
13
+ }
@@ -0,0 +1,11 @@
1
+ import { events } from "~/stores/factory" // Import your store types
2
+
3
+ declare module "#app" {
4
+ interface NuxtApp {
5
+ $stores: {
6
+ events: ReturnType<typeof createDynamicStore<"events">>
7
+ news: ReturnType<typeof createDynamicStore<"news">>
8
+ // Add other store types...
9
+ }
10
+ }
11
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "license": "AGPL-3.0-only",
3
3
  "main": "./dist/module.mjs",
4
- "version": "1.0.112",
4
+ "version": "1.0.113",
5
5
  "name": "@paris-ias/list",
6
6
  "repository": {
7
7
  "url": "git+https://github.com/IEA-Paris/list.git",