@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
@@ -2,8 +2,7 @@ query listActions(
2
2
  $options: ListInput = {
3
3
  skip: 0
4
4
  limit: 9
5
- sortBy: ["start"]
6
- sortDesc: false
5
+ sort
7
6
  filters: "{}"
8
7
  }
9
8
  $appId: ID = "iea"
@@ -2,8 +2,7 @@ query listAffiliations(
2
2
  $options: ListInput = {
3
3
  skip: 0
4
4
  limit: 9
5
- sortBy: ["start"]
6
- sortDesc: false
5
+ sort
7
6
  filters: "{}"
8
7
  }
9
8
  $lang: String = "en"
@@ -2,8 +2,7 @@ query listApps(
2
2
  $options: ListInput = {
3
3
  skip: 0
4
4
  limit: 9
5
- sortBy: ["start"]
6
- sortDesc: false
5
+ sort
7
6
  filters: "{}"
8
7
  }
9
8
  $lang: String = "en"
@@ -4,8 +4,7 @@ query listFiles(
4
4
  $options: ListInput = {
5
5
  skip: 0
6
6
  limit: 9
7
- sortBy: ["start"]
8
- sortDesc: false
7
+ sort
9
8
  filters: "{}"
10
9
  }
11
10
  ) {
@@ -4,8 +4,7 @@ query listMailing(
4
4
  $options: ListInput = {
5
5
  skip: 0
6
6
  limit: 9
7
- sortBy: ["start"]
8
- sortDesc: false
7
+ sort
9
8
  filters: "{}"
10
9
  }
11
10
  ) {
@@ -4,8 +4,7 @@ query listDisciplines(
4
4
  $options: ListInput = {
5
5
  skip: 0
6
6
  limit: 9
7
- sortBy: ["start"]
8
- sortDesc: false
7
+ sort
9
8
  filters: "{}"
10
9
  }
11
10
  ) {
@@ -2,8 +2,7 @@ query listTags(
2
2
  $options: ListInput = {
3
3
  skip: 0
4
4
  limit: 9
5
- sortBy: ["start"]
6
- sortDesc: false
5
+ sort
7
6
  filters: "{}"
8
7
  }
9
8
  $appId: ID = "iea"
@@ -661,8 +661,7 @@ input ListInput {
661
661
  filters: AWSJSON
662
662
  limit: Int
663
663
  skip: Int
664
- sortBy: [String!]
665
- sortDesc: [Boolean!]
664
+ sort: [String!]
666
665
  search: String
667
666
  }
668
667
 
@@ -455,8 +455,7 @@ input ListInput {
455
455
  filters: AWSJSON
456
456
  limit: Int
457
457
  skip: Int
458
- sortBy: [String!]
459
- sortDesc: [Boolean!]
458
+ sort: [String!]
460
459
  search: String
461
460
  }
462
461
 
@@ -128,7 +128,8 @@ const data = {
128
128
  {
129
129
  "name": 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
  "name": 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": {
@@ -191,13 +195,7 @@ const data = {
191
195
  "multiple": true
192
196
  }
193
197
  },
194
- "limit": 20,
195
- "sortBy": [
196
- "date"
197
- ],
198
- "sortDesc": [
199
- -1
200
- ]
198
+ "limit": 20
201
199
  };
202
200
 
203
201
  var actions = selectiveDeepFreeze(data);
@@ -33,8 +33,8 @@ export interface ListModule {
33
33
  view?: Views | string
34
34
  filters: Record<string, any>
35
35
  limit?: number
36
- sortBy?: string[]
37
- sortDesc?: number[]
36
+ // sortBy?: string[]
37
+ // sortDesc?: number[]
38
38
  }
39
39
 
40
40
  declare const data: ListModule
@@ -126,7 +126,8 @@ const data = {
126
126
  {
127
127
  "name": 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
  "name": 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": {
@@ -189,13 +193,7 @@ const data = {
189
193
  "multiple": true
190
194
  }
191
195
  },
192
- "limit": 20,
193
- "sortBy": [
194
- "date"
195
- ],
196
- "sortDesc": [
197
- -1
198
- ]
196
+ "limit": 20
199
197
  };
200
198
 
201
199
  var actions = selectiveDeepFreeze(data);
@@ -128,7 +128,8 @@ const data = {
128
128
  {
129
129
  "name": 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
  "name": -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": {
@@ -186,13 +190,7 @@ const data = {
186
190
  "multiple": true
187
191
  }
188
192
  },
189
- "limit": 20,
190
- "sortBy": [
191
- "date"
192
- ],
193
- "sortDesc": [
194
- -1
195
- ]
193
+ "limit": 20
196
194
  };
197
195
 
198
196
  var affiliations = selectiveDeepFreeze(data);
@@ -26,8 +26,8 @@ export interface ListModule {
26
26
  view?: Views | string
27
27
  filters: Record<string, any>
28
28
  limit?: number
29
- sortBy?: string[]
30
- sortDesc?: number[]
29
+ // sortBy?: string[]
30
+ // sortDesc?: number[]
31
31
  }
32
32
 
33
33
  declare const data: ListModule
@@ -126,7 +126,8 @@ const data = {
126
126
  {
127
127
  "name": 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
  "name": -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": {
@@ -184,13 +188,7 @@ const data = {
184
188
  "multiple": true
185
189
  }
186
190
  },
187
- "limit": 20,
188
- "sortBy": [
189
- "date"
190
- ],
191
- "sortDesc": [
192
- -1
193
- ]
191
+ "limit": 20
194
192
  };
195
193
 
196
194
  var affiliations = selectiveDeepFreeze(data);
@@ -128,7 +128,8 @@ const data = {
128
128
  {
129
129
  "name": 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
  "name": -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": {
@@ -185,13 +189,7 @@ const data = {
185
189
  "value": ""
186
190
  }
187
191
  },
188
- "limit": 20,
189
- "sortBy": [
190
- "date"
191
- ],
192
- "sortDesc": [
193
- -1
194
- ]
192
+ "limit": 20
195
193
  };
196
194
 
197
195
  var apps = selectiveDeepFreeze(data);
@@ -31,8 +31,8 @@ export interface ListModule {
31
31
  view?: Views | string
32
32
  filters: Record<string, any>
33
33
  limit?: number
34
- sortBy?: string[]
35
- sortDesc?: number[]
34
+ // sortBy?: string[]
35
+ // sortDesc?: number[]
36
36
  }
37
37
 
38
38
  declare const data: ListModule
package/dist/list/apps.js CHANGED
@@ -126,7 +126,8 @@ const data = {
126
126
  {
127
127
  "name": 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
  "name": -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": {
@@ -183,13 +187,7 @@ const data = {
183
187
  "value": ""
184
188
  }
185
189
  },
186
- "limit": 20,
187
- "sortBy": [
188
- "date"
189
- ],
190
- "sortDesc": [
191
- -1
192
- ]
190
+ "limit": 20
193
191
  };
194
192
 
195
193
  var apps = 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 disciplines = selectiveDeepFreeze(data);
@@ -13,8 +13,8 @@ export interface ListModule {
13
13
  view?: Views | string
14
14
  filters: Record<string, any>
15
15
  limit?: number
16
- sortBy?: string[]
17
- sortDesc?: number[]
16
+ // sortBy?: string[]
17
+ // sortDesc?: number[]
18
18
  }
19
19
 
20
20
  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 disciplines = selectiveDeepFreeze(data);
@@ -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,24 +130,29 @@ 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",
136
138
  "text": "by-date-most-recent-first",
137
139
  "value": [
138
- "start",
139
- -1
140
+ {
141
+ "start": -1
142
+ }
140
143
  ],
141
- "default": true
144
+ "default": true,
145
+ "active": true
142
146
  },
143
147
  "datedesc": {
144
148
  "icon": "sort-calendar-ascending",
145
149
  "text": "by-date-oldest-first",
146
150
  "value": [
147
- "start",
148
- 1
149
- ]
151
+ {
152
+ "start": 1
153
+ }
154
+ ],
155
+ "active": false
150
156
  }
151
157
  },
152
158
  "view": {
@@ -98,8 +98,8 @@ export interface ListModule {
98
98
  view?: Views | string
99
99
  filters: Record<string, any>
100
100
  limit?: number
101
- sortBy?: string[]
102
- sortDesc?: number[]
101
+ // sortBy?: string[]
102
+ // sortDesc?: number[]
103
103
  }
104
104
 
105
105
  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,24 +128,29 @@ 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",
134
136
  "text": "by-date-most-recent-first",
135
137
  "value": [
136
- "start",
137
- -1
138
+ {
139
+ "start": -1
140
+ }
138
141
  ],
139
- "default": true
142
+ "default": true,
143
+ "active": true
140
144
  },
141
145
  "datedesc": {
142
146
  "icon": "sort-calendar-ascending",
143
147
  "text": "by-date-oldest-first",
144
148
  "value": [
145
- "start",
146
- 1
147
- ]
149
+ {
150
+ "start": 1
151
+ }
152
+ ],
153
+ "active": false
148
154
  }
149
155
  },
150
156
  "view": {