@paris-ias/trees 2.0.35 → 2.0.37

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 (52) hide show
  1. package/dist/graphql/client/actions/query.list.actions.gql +1 -2
  2. package/dist/graphql/client/affiliations/query.list.affiliations.gql +1 -2
  3. package/dist/graphql/client/apps/query.list.apps.gql +1 -2
  4. package/dist/graphql/client/files/query.list.files.gql +1 -2
  5. package/dist/graphql/client/mailing/query.list.mailing.gql +1 -2
  6. package/dist/graphql/client/misc/query.list.disciplines.gql +1 -2
  7. package/dist/graphql/client/misc/query.list.tags.gql +1 -2
  8. package/dist/graphql/schemas/schema.apex.graphql +1 -2
  9. package/dist/graphql/schemas/schema.website.graphql +1 -2
  10. package/dist/list/actions.cjs.js +9 -11
  11. package/dist/list/actions.d.ts +2 -2
  12. package/dist/list/actions.js +9 -11
  13. package/dist/list/affiliations.cjs.js +9 -11
  14. package/dist/list/affiliations.d.ts +2 -2
  15. package/dist/list/affiliations.js +9 -11
  16. package/dist/list/apps.cjs.js +9 -11
  17. package/dist/list/apps.d.ts +2 -2
  18. package/dist/list/apps.js +9 -11
  19. package/dist/list/disciplines.cjs.js +9 -11
  20. package/dist/list/disciplines.d.ts +2 -2
  21. package/dist/list/disciplines.js +9 -11
  22. package/dist/list/events.cjs.js +14 -8
  23. package/dist/list/events.d.ts +2 -2
  24. package/dist/list/events.js +14 -8
  25. package/dist/list/fellowships.cjs.js +9 -11
  26. package/dist/list/fellowships.d.ts +2 -2
  27. package/dist/list/fellowships.js +9 -11
  28. package/dist/list/files.cjs.js +9 -11
  29. package/dist/list/files.d.ts +2 -2
  30. package/dist/list/files.js +9 -11
  31. package/dist/list/mailing.cjs.js +9 -11
  32. package/dist/list/mailing.d.ts +2 -2
  33. package/dist/list/mailing.js +9 -11
  34. package/dist/list/news.cjs.js +5 -9
  35. package/dist/list/news.d.ts +2 -2
  36. package/dist/list/news.js +5 -9
  37. package/dist/list/people.cjs.js +9 -13
  38. package/dist/list/people.d.ts +2 -2
  39. package/dist/list/people.js +9 -13
  40. package/dist/list/projects.cjs.js +15 -15
  41. package/dist/list/projects.d.ts +2 -2
  42. package/dist/list/projects.js +15 -15
  43. package/dist/list/publications.cjs.js +9 -11
  44. package/dist/list/publications.d.ts +2 -2
  45. package/dist/list/publications.js +9 -11
  46. package/dist/list/tags.cjs.js +9 -11
  47. package/dist/list/tags.d.ts +2 -2
  48. package/dist/list/tags.js +9 -11
  49. package/dist/list/users.cjs.js +9 -13
  50. package/dist/list/users.d.ts +2 -2
  51. package/dist/list/users.js +9 -13
  52. package/package.json +1 -1
@@ -120,7 +120,8 @@ const data = {
120
120
  {
121
121
  "name": 1
122
122
  }
123
- ]
123
+ ],
124
+ "active": false
124
125
  },
125
126
  "namedesc": {
126
127
  "icon": "sort-alphabetical-descending",
@@ -129,7 +130,8 @@ const data = {
129
130
  {
130
131
  "name": -1
131
132
  }
132
- ]
133
+ ],
134
+ "active": false
133
135
  },
134
136
  "dateasc": {
135
137
  "icon": "sort-calendar-descending",
@@ -139,7 +141,8 @@ const data = {
139
141
  "applicationStart": -1
140
142
  }
141
143
  ],
142
- "default": true
144
+ "default": true,
145
+ "active": true
143
146
  },
144
147
  "datedesc": {
145
148
  "icon": "sort-calendar-ascending",
@@ -148,7 +151,8 @@ const data = {
148
151
  {
149
152
  "applicationStart": 1
150
153
  }
151
- ]
154
+ ],
155
+ "active": false
152
156
  }
153
157
  },
154
158
  "view": {
@@ -200,13 +204,7 @@ const data = {
200
204
  "value": ""
201
205
  }
202
206
  },
203
- "limit": 20,
204
- "sortBy": [
205
- "applicationStart"
206
- ],
207
- "sortDesc": [
208
- -1
209
- ]
207
+ "limit": 20
210
208
  };
211
209
 
212
210
  var fellowships = selectiveDeepFreeze(data);
@@ -49,8 +49,8 @@ export interface ListModule {
49
49
  view?: Views | string
50
50
  filters: Record<string, any>
51
51
  limit?: number
52
- sortBy?: string[]
53
- sortDesc?: number[]
52
+ // sortBy?: string[]
53
+ // sortDesc?: number[]
54
54
  }
55
55
 
56
56
  declare const data: ListModule
@@ -118,7 +118,8 @@ const data = {
118
118
  {
119
119
  "name": 1
120
120
  }
121
- ]
121
+ ],
122
+ "active": false
122
123
  },
123
124
  "namedesc": {
124
125
  "icon": "sort-alphabetical-descending",
@@ -127,7 +128,8 @@ const data = {
127
128
  {
128
129
  "name": -1
129
130
  }
130
- ]
131
+ ],
132
+ "active": false
131
133
  },
132
134
  "dateasc": {
133
135
  "icon": "sort-calendar-descending",
@@ -137,7 +139,8 @@ const data = {
137
139
  "applicationStart": -1
138
140
  }
139
141
  ],
140
- "default": true
142
+ "default": true,
143
+ "active": true
141
144
  },
142
145
  "datedesc": {
143
146
  "icon": "sort-calendar-ascending",
@@ -146,7 +149,8 @@ const data = {
146
149
  {
147
150
  "applicationStart": 1
148
151
  }
149
- ]
152
+ ],
153
+ "active": false
150
154
  }
151
155
  },
152
156
  "view": {
@@ -198,13 +202,7 @@ const data = {
198
202
  "value": ""
199
203
  }
200
204
  },
201
- "limit": 20,
202
- "sortBy": [
203
- "applicationStart"
204
- ],
205
- "sortDesc": [
206
- -1
207
- ]
205
+ "limit": 20
208
206
  };
209
207
 
210
208
  var fellowships = selectiveDeepFreeze(data);
@@ -128,7 +128,8 @@ const data = {
128
128
  {
129
129
  "article_title": 1
130
130
  }
131
- ]
131
+ ],
132
+ "active": false
132
133
  },
133
134
  "namedesc": {
134
135
  "icon": "sort-alphabetical-descending",
@@ -137,7 +138,8 @@ const data = {
137
138
  {
138
139
  "article_title": -1
139
140
  }
140
- ]
141
+ ],
142
+ "active": false
141
143
  },
142
144
  "dateasc": {
143
145
  "icon": "sort-calendar-descending",
@@ -147,7 +149,8 @@ const data = {
147
149
  "date": -1
148
150
  }
149
151
  ],
150
- "default": true
152
+ "default": true,
153
+ "active": true
151
154
  },
152
155
  "datedesc": {
153
156
  "icon": "sort-calendar-ascending",
@@ -156,7 +159,8 @@ const data = {
156
159
  {
157
160
  "date": 1
158
161
  }
159
- ]
162
+ ],
163
+ "active": false
160
164
  }
161
165
  },
162
166
  "view": {
@@ -190,13 +194,7 @@ const data = {
190
194
  "multiple": true
191
195
  }
192
196
  },
193
- "limit": 20,
194
- "sortBy": [
195
- "date"
196
- ],
197
- "sortDesc": [
198
- -1
199
- ]
197
+ "limit": 20
200
198
  };
201
199
 
202
200
  var files = selectiveDeepFreeze(data);
@@ -35,8 +35,8 @@ export interface ListModule {
35
35
  view?: Views | string
36
36
  filters: Record<string, any>
37
37
  limit?: number
38
- sortBy?: string[]
39
- sortDesc?: number[]
38
+ // sortBy?: string[]
39
+ // sortDesc?: number[]
40
40
  }
41
41
 
42
42
  declare const data: ListModule
@@ -126,7 +126,8 @@ const data = {
126
126
  {
127
127
  "article_title": 1
128
128
  }
129
- ]
129
+ ],
130
+ "active": false
130
131
  },
131
132
  "namedesc": {
132
133
  "icon": "sort-alphabetical-descending",
@@ -135,7 +136,8 @@ const data = {
135
136
  {
136
137
  "article_title": -1
137
138
  }
138
- ]
139
+ ],
140
+ "active": false
139
141
  },
140
142
  "dateasc": {
141
143
  "icon": "sort-calendar-descending",
@@ -145,7 +147,8 @@ const data = {
145
147
  "date": -1
146
148
  }
147
149
  ],
148
- "default": true
150
+ "default": true,
151
+ "active": true
149
152
  },
150
153
  "datedesc": {
151
154
  "icon": "sort-calendar-ascending",
@@ -154,7 +157,8 @@ const data = {
154
157
  {
155
158
  "date": 1
156
159
  }
157
- ]
160
+ ],
161
+ "active": false
158
162
  }
159
163
  },
160
164
  "view": {
@@ -188,13 +192,7 @@ const data = {
188
192
  "multiple": true
189
193
  }
190
194
  },
191
- "limit": 20,
192
- "sortBy": [
193
- "date"
194
- ],
195
- "sortDesc": [
196
- -1
197
- ]
195
+ "limit": 20
198
196
  };
199
197
 
200
198
  var files = selectiveDeepFreeze(data);
@@ -128,7 +128,8 @@ const data = {
128
128
  {
129
129
  "article_title": 1
130
130
  }
131
- ]
131
+ ],
132
+ "active": false
132
133
  },
133
134
  "namedesc": {
134
135
  "icon": "sort-alphabetical-descending",
@@ -137,7 +138,8 @@ const data = {
137
138
  {
138
139
  "article_title": -1
139
140
  }
140
- ]
141
+ ],
142
+ "active": false
141
143
  },
142
144
  "dateasc": {
143
145
  "icon": "sort-calendar-descending",
@@ -147,7 +149,8 @@ const data = {
147
149
  "date": -1
148
150
  }
149
151
  ],
150
- "default": true
152
+ "default": true,
153
+ "active": true
151
154
  },
152
155
  "datedesc": {
153
156
  "icon": "sort-calendar-ascending",
@@ -156,7 +159,8 @@ const data = {
156
159
  {
157
160
  "date": 1
158
161
  }
159
- ]
162
+ ],
163
+ "active": false
160
164
  }
161
165
  },
162
166
  "view": {
@@ -175,13 +179,7 @@ const data = {
175
179
  }
176
180
  },
177
181
  "filters": {},
178
- "limit": 20,
179
- "sortBy": [
180
- "date"
181
- ],
182
- "sortDesc": [
183
- -1
184
- ]
182
+ "limit": 20
185
183
  };
186
184
 
187
185
  var mailing = selectiveDeepFreeze(data);
@@ -20,8 +20,8 @@ export interface ListModule {
20
20
  view?: Views | string
21
21
  filters: Record<string, any>
22
22
  limit?: number
23
- sortBy?: string[]
24
- sortDesc?: number[]
23
+ // sortBy?: string[]
24
+ // sortDesc?: number[]
25
25
  }
26
26
 
27
27
  declare const data: ListModule
@@ -126,7 +126,8 @@ const data = {
126
126
  {
127
127
  "article_title": 1
128
128
  }
129
- ]
129
+ ],
130
+ "active": false
130
131
  },
131
132
  "namedesc": {
132
133
  "icon": "sort-alphabetical-descending",
@@ -135,7 +136,8 @@ const data = {
135
136
  {
136
137
  "article_title": -1
137
138
  }
138
- ]
139
+ ],
140
+ "active": false
139
141
  },
140
142
  "dateasc": {
141
143
  "icon": "sort-calendar-descending",
@@ -145,7 +147,8 @@ const data = {
145
147
  "date": -1
146
148
  }
147
149
  ],
148
- "default": true
150
+ "default": true,
151
+ "active": true
149
152
  },
150
153
  "datedesc": {
151
154
  "icon": "sort-calendar-ascending",
@@ -154,7 +157,8 @@ const data = {
154
157
  {
155
158
  "date": 1
156
159
  }
157
- ]
160
+ ],
161
+ "active": false
158
162
  }
159
163
  },
160
164
  "view": {
@@ -173,13 +177,7 @@ const data = {
173
177
  }
174
178
  },
175
179
  "filters": {},
176
- "limit": 20,
177
- "sortBy": [
178
- "date"
179
- ],
180
- "sortDesc": [
181
- -1
182
- ]
180
+ "limit": 20
183
181
  };
184
182
 
185
183
  var mailing = selectiveDeepFreeze(data);
@@ -121,7 +121,8 @@ const data = {
121
121
  "date": -1
122
122
  }
123
123
  ],
124
- "default": true
124
+ "default": true,
125
+ "active": true
125
126
  },
126
127
  "datedesc": {
127
128
  "icon": "sort-calendar-ascending",
@@ -130,7 +131,8 @@ const data = {
130
131
  {
131
132
  "date": 1
132
133
  }
133
- ]
134
+ ],
135
+ "active": false
134
136
  }
135
137
  },
136
138
  "view": {
@@ -182,13 +184,7 @@ const data = {
182
184
  "value": ""
183
185
  }
184
186
  },
185
- "limit": 20,
186
- "sortBy": [
187
- "date"
188
- ],
189
- "sortDesc": [
190
- -1
191
- ]
187
+ "limit": 20
192
188
  };
193
189
 
194
190
  var news = selectiveDeepFreeze(data);
@@ -52,8 +52,8 @@ export interface ListModule {
52
52
  view?: Views | string
53
53
  filters: Record<string, any>
54
54
  limit?: number
55
- sortBy?: string[]
56
- sortDesc?: number[]
55
+ // sortBy?: string[]
56
+ // sortDesc?: number[]
57
57
  }
58
58
 
59
59
  declare const data: ListModule
package/dist/list/news.js CHANGED
@@ -119,7 +119,8 @@ const data = {
119
119
  "date": -1
120
120
  }
121
121
  ],
122
- "default": true
122
+ "default": true,
123
+ "active": true
123
124
  },
124
125
  "datedesc": {
125
126
  "icon": "sort-calendar-ascending",
@@ -128,7 +129,8 @@ const data = {
128
129
  {
129
130
  "date": 1
130
131
  }
131
- ]
132
+ ],
133
+ "active": false
132
134
  }
133
135
  },
134
136
  "view": {
@@ -180,13 +182,7 @@ const data = {
180
182
  "value": ""
181
183
  }
182
184
  },
183
- "limit": 20,
184
- "sortBy": [
185
- "date"
186
- ],
187
- "sortDesc": [
188
- -1
189
- ]
185
+ "limit": 20
190
186
  };
191
187
 
192
188
  var news = selectiveDeepFreeze(data);
@@ -120,7 +120,8 @@ const data = {
120
120
  {
121
121
  "lastname": 1
122
122
  }
123
- ]
123
+ ],
124
+ "active": false
124
125
  },
125
126
  "namedesc": {
126
127
  "icon": "sort-alphabetical-descending",
@@ -129,7 +130,8 @@ const data = {
129
130
  {
130
131
  "lastname": -1
131
132
  }
132
- ]
133
+ ],
134
+ "active": false
133
135
  },
134
136
  "vintagedesc": {
135
137
  "icon": "sort-calendar-descending",
@@ -141,7 +143,8 @@ const data = {
141
143
  {
142
144
  "lastname": 1
143
145
  }
144
- ]
146
+ ],
147
+ "active": false
145
148
  },
146
149
  "vintageasc": {
147
150
  "icon": "sort-calendar-descending",
@@ -154,7 +157,8 @@ const data = {
154
157
  "lastname": 1
155
158
  }
156
159
  ],
157
- "default": true
160
+ "default": true,
161
+ "active": true
158
162
  }
159
163
  },
160
164
  "view": {
@@ -234,15 +238,7 @@ const data = {
234
238
  "value": ""
235
239
  }
236
240
  },
237
- "limit": 20,
238
- "sortBy": [
239
- "groups.vintage.year",
240
- "lastname"
241
- ],
242
- "sortDesc": [
243
- 1,
244
- 1
245
- ]
241
+ "limit": 20
246
242
  };
247
243
 
248
244
  var people = selectiveDeepFreeze(data);
@@ -27,8 +27,8 @@ export interface ListModule {
27
27
  view?: Views | string
28
28
  filters: Record<string, any>
29
29
  limit?: number
30
- sortBy?: string[]
31
- sortDesc?: number[]
30
+ // sortBy?: string[]
31
+ // sortDesc?: number[]
32
32
  }
33
33
 
34
34
  declare const data: ListModule
@@ -118,7 +118,8 @@ const data = {
118
118
  {
119
119
  "lastname": 1
120
120
  }
121
- ]
121
+ ],
122
+ "active": false
122
123
  },
123
124
  "namedesc": {
124
125
  "icon": "sort-alphabetical-descending",
@@ -127,7 +128,8 @@ const data = {
127
128
  {
128
129
  "lastname": -1
129
130
  }
130
- ]
131
+ ],
132
+ "active": false
131
133
  },
132
134
  "vintagedesc": {
133
135
  "icon": "sort-calendar-descending",
@@ -139,7 +141,8 @@ const data = {
139
141
  {
140
142
  "lastname": 1
141
143
  }
142
- ]
144
+ ],
145
+ "active": false
143
146
  },
144
147
  "vintageasc": {
145
148
  "icon": "sort-calendar-descending",
@@ -152,7 +155,8 @@ const data = {
152
155
  "lastname": 1
153
156
  }
154
157
  ],
155
- "default": true
158
+ "default": true,
159
+ "active": true
156
160
  }
157
161
  },
158
162
  "view": {
@@ -232,15 +236,7 @@ const data = {
232
236
  "value": ""
233
237
  }
234
238
  },
235
- "limit": 20,
236
- "sortBy": [
237
- "groups.vintage.year",
238
- "lastname"
239
- ],
240
- "sortDesc": [
241
- 1,
242
- 1
243
- ]
239
+ "limit": 20
244
240
  };
245
241
 
246
242
  var people = selectiveDeepFreeze(data);
@@ -117,17 +117,21 @@ const data = {
117
117
  "icon": "sort-alphabetical-ascending",
118
118
  "text": "by-name-from-a-to-z",
119
119
  "value": [
120
- "title",
121
- 1
122
- ]
120
+ {
121
+ "title": 1
122
+ }
123
+ ],
124
+ "active": false
123
125
  },
124
126
  "namedesc": {
125
127
  "icon": "sort-alphabetical-descending",
126
128
  "text": "by-name-from-z-to-a",
127
129
  "value": [
128
- "title",
129
- -1
130
- ]
130
+ {
131
+ "title": -1
132
+ }
133
+ ],
134
+ "active": false
131
135
  },
132
136
  "dateasc": {
133
137
  "icon": "sort-calendar-descending",
@@ -137,7 +141,8 @@ const data = {
137
141
  "date": -1
138
142
  }
139
143
  ],
140
- "default": true
144
+ "default": true,
145
+ "active": true
141
146
  },
142
147
  "datedesc": {
143
148
  "icon": "sort-calendar-ascending",
@@ -146,7 +151,8 @@ const data = {
146
151
  {
147
152
  "date": 1
148
153
  }
149
- ]
154
+ ],
155
+ "active": false
150
156
  }
151
157
  },
152
158
  "view": {
@@ -182,13 +188,7 @@ const data = {
182
188
  "value": ""
183
189
  }
184
190
  },
185
- "limit": 20,
186
- "sortBy": [
187
- "date"
188
- ],
189
- "sortDesc": [
190
- -1
191
- ]
191
+ "limit": 20
192
192
  };
193
193
 
194
194
  var projects = selectiveDeepFreeze(data);
@@ -37,8 +37,8 @@ export interface ListModule {
37
37
  view?: Views | string
38
38
  filters: Record<string, any>
39
39
  limit?: number
40
- sortBy?: string[]
41
- sortDesc?: number[]
40
+ // sortBy?: string[]
41
+ // sortDesc?: number[]
42
42
  }
43
43
 
44
44
  declare const data: ListModule
@@ -115,17 +115,21 @@ const data = {
115
115
  "icon": "sort-alphabetical-ascending",
116
116
  "text": "by-name-from-a-to-z",
117
117
  "value": [
118
- "title",
119
- 1
120
- ]
118
+ {
119
+ "title": 1
120
+ }
121
+ ],
122
+ "active": false
121
123
  },
122
124
  "namedesc": {
123
125
  "icon": "sort-alphabetical-descending",
124
126
  "text": "by-name-from-z-to-a",
125
127
  "value": [
126
- "title",
127
- -1
128
- ]
128
+ {
129
+ "title": -1
130
+ }
131
+ ],
132
+ "active": false
129
133
  },
130
134
  "dateasc": {
131
135
  "icon": "sort-calendar-descending",
@@ -135,7 +139,8 @@ const data = {
135
139
  "date": -1
136
140
  }
137
141
  ],
138
- "default": true
142
+ "default": true,
143
+ "active": true
139
144
  },
140
145
  "datedesc": {
141
146
  "icon": "sort-calendar-ascending",
@@ -144,7 +149,8 @@ const data = {
144
149
  {
145
150
  "date": 1
146
151
  }
147
- ]
152
+ ],
153
+ "active": false
148
154
  }
149
155
  },
150
156
  "view": {
@@ -180,13 +186,7 @@ const data = {
180
186
  "value": ""
181
187
  }
182
188
  },
183
- "limit": 20,
184
- "sortBy": [
185
- "date"
186
- ],
187
- "sortDesc": [
188
- -1
189
- ]
189
+ "limit": 20
190
190
  };
191
191
 
192
192
  var projects = selectiveDeepFreeze(data);