@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.
- package/dist/graphql/client/actions/query.list.actions.gql +1 -2
- package/dist/graphql/client/affiliations/query.list.affiliations.gql +1 -2
- package/dist/graphql/client/apps/query.list.apps.gql +1 -2
- package/dist/graphql/client/files/query.list.files.gql +1 -2
- package/dist/graphql/client/mailing/query.list.mailing.gql +1 -2
- package/dist/graphql/client/misc/query.list.disciplines.gql +1 -2
- package/dist/graphql/client/misc/query.list.tags.gql +1 -2
- package/dist/graphql/schemas/schema.apex.graphql +1 -2
- package/dist/graphql/schemas/schema.website.graphql +1 -2
- package/dist/list/actions.cjs.js +9 -11
- package/dist/list/actions.d.ts +2 -2
- package/dist/list/actions.js +9 -11
- package/dist/list/affiliations.cjs.js +9 -11
- package/dist/list/affiliations.d.ts +2 -2
- package/dist/list/affiliations.js +9 -11
- package/dist/list/apps.cjs.js +9 -11
- package/dist/list/apps.d.ts +2 -2
- package/dist/list/apps.js +9 -11
- package/dist/list/disciplines.cjs.js +9 -11
- package/dist/list/disciplines.d.ts +2 -2
- package/dist/list/disciplines.js +9 -11
- package/dist/list/events.cjs.js +14 -8
- package/dist/list/events.d.ts +2 -2
- package/dist/list/events.js +14 -8
- package/dist/list/fellowships.cjs.js +9 -11
- package/dist/list/fellowships.d.ts +2 -2
- package/dist/list/fellowships.js +9 -11
- package/dist/list/files.cjs.js +9 -11
- package/dist/list/files.d.ts +2 -2
- package/dist/list/files.js +9 -11
- package/dist/list/mailing.cjs.js +9 -11
- package/dist/list/mailing.d.ts +2 -2
- package/dist/list/mailing.js +9 -11
- package/dist/list/news.cjs.js +5 -9
- package/dist/list/news.d.ts +2 -2
- package/dist/list/news.js +5 -9
- package/dist/list/people.cjs.js +9 -13
- package/dist/list/people.d.ts +2 -2
- package/dist/list/people.js +9 -13
- package/dist/list/projects.cjs.js +15 -15
- package/dist/list/projects.d.ts +2 -2
- package/dist/list/projects.js +15 -15
- package/dist/list/publications.cjs.js +9 -11
- package/dist/list/publications.d.ts +2 -2
- package/dist/list/publications.js +9 -11
- package/dist/list/tags.cjs.js +9 -11
- package/dist/list/tags.d.ts +2 -2
- package/dist/list/tags.js +9 -11
- package/dist/list/users.cjs.js +9 -13
- package/dist/list/users.d.ts +2 -2
- package/dist/list/users.js +9 -13
- package/package.json +1 -1
package/dist/list/actions.cjs.js
CHANGED
|
@@ -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);
|
package/dist/list/actions.d.ts
CHANGED
package/dist/list/actions.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": {
|
|
@@ -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);
|
|
@@ -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);
|
package/dist/list/apps.cjs.js
CHANGED
|
@@ -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);
|
package/dist/list/apps.d.ts
CHANGED
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);
|
package/dist/list/disciplines.js
CHANGED
|
@@ -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);
|
package/dist/list/events.cjs.js
CHANGED
|
@@ -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
|
-
|
|
139
|
-
|
|
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
|
-
|
|
148
|
-
|
|
149
|
-
|
|
151
|
+
{
|
|
152
|
+
"start": 1
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"active": false
|
|
150
156
|
}
|
|
151
157
|
},
|
|
152
158
|
"view": {
|
package/dist/list/events.d.ts
CHANGED
package/dist/list/events.js
CHANGED
|
@@ -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
|
-
|
|
137
|
-
|
|
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
|
-
|
|
146
|
-
|
|
147
|
-
|
|
149
|
+
{
|
|
150
|
+
"start": 1
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"active": false
|
|
148
154
|
}
|
|
149
155
|
},
|
|
150
156
|
"view": {
|