@paris-ias/trees 2.0.32 → 2.0.35
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/events/query.get.events.gql +0 -1
- package/dist/graphql/client/news/query.list.news.gql +1 -1
- package/dist/graphql/schemas/schema.apex.graphql +0 -2
- package/dist/graphql/schemas/schema.website.graphql +0 -2
- package/dist/list/actions.cjs.js +12 -8
- package/dist/list/actions.js +12 -8
- package/dist/list/affiliations.cjs.js +12 -8
- package/dist/list/affiliations.js +12 -8
- package/dist/list/apps.cjs.js +12 -8
- package/dist/list/apps.js +12 -8
- package/dist/list/disciplines.cjs.js +12 -8
- package/dist/list/disciplines.js +12 -8
- package/dist/list/events.cjs.js +7 -11
- package/dist/list/events.js +7 -11
- package/dist/list/fellowships.cjs.js +12 -8
- package/dist/list/fellowships.js +12 -8
- package/dist/list/files.cjs.js +12 -8
- package/dist/list/files.js +12 -8
- package/dist/list/mailing.cjs.js +12 -8
- package/dist/list/mailing.js +12 -8
- package/dist/list/news.cjs.js +6 -4
- package/dist/list/news.js +6 -4
- package/dist/list/people.cjs.js +21 -9
- package/dist/list/people.js +21 -9
- package/dist/list/projects.cjs.js +6 -4
- package/dist/list/projects.js +6 -4
- package/dist/list/publications.cjs.js +12 -8
- package/dist/list/publications.js +12 -8
- package/dist/list/tags.cjs.js +12 -8
- package/dist/list/tags.js +12 -8
- package/dist/list/users.cjs.js +21 -9
- package/dist/list/users.js +21 -9
- package/package.json +1 -1
|
@@ -296,7 +296,6 @@ input EventInput {
|
|
|
296
296
|
location: LocationInput
|
|
297
297
|
name: String!
|
|
298
298
|
outside: Boolean
|
|
299
|
-
place: String
|
|
300
299
|
program: String
|
|
301
300
|
slots: [SlotInput!]
|
|
302
301
|
start: AWSDateTime
|
|
@@ -323,7 +322,6 @@ type Event {
|
|
|
323
322
|
location: Location
|
|
324
323
|
name: String!
|
|
325
324
|
outside: Boolean
|
|
326
|
-
place: String
|
|
327
325
|
program: String
|
|
328
326
|
related: Related
|
|
329
327
|
score: Float
|
|
@@ -90,7 +90,6 @@ input EventInput {
|
|
|
90
90
|
location: LocationInput
|
|
91
91
|
name: String!
|
|
92
92
|
outside: Boolean
|
|
93
|
-
place: String
|
|
94
93
|
program: String
|
|
95
94
|
slots: [SlotInput!]
|
|
96
95
|
start: AWSDateTime
|
|
@@ -117,7 +116,6 @@ type Event {
|
|
|
117
116
|
location: Location
|
|
118
117
|
name: String!
|
|
119
118
|
outside: Boolean
|
|
120
|
-
place: String
|
|
121
119
|
program: String
|
|
122
120
|
related: Related
|
|
123
121
|
score: Float
|
package/dist/list/actions.cjs.js
CHANGED
|
@@ -125,24 +125,27 @@ const data = {
|
|
|
125
125
|
"icon": "sort-alphabetical-ascending",
|
|
126
126
|
"text": "by-name-from-a-to-z",
|
|
127
127
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
{
|
|
129
|
+
"name": 1
|
|
130
|
+
}
|
|
130
131
|
]
|
|
131
132
|
},
|
|
132
133
|
"namedesc": {
|
|
133
134
|
"icon": "sort-alphabetical-descending",
|
|
134
135
|
"text": "by-name-from-z-to-a",
|
|
135
136
|
"value": [
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
{
|
|
138
|
+
"name": 1
|
|
139
|
+
}
|
|
138
140
|
]
|
|
139
141
|
},
|
|
140
142
|
"dateasc": {
|
|
141
143
|
"icon": "sort-calendar-descending",
|
|
142
144
|
"text": "by-date-most-recent-first",
|
|
143
145
|
"value": [
|
|
144
|
-
|
|
145
|
-
|
|
146
|
+
{
|
|
147
|
+
"date": -1
|
|
148
|
+
}
|
|
146
149
|
],
|
|
147
150
|
"default": true
|
|
148
151
|
},
|
|
@@ -150,8 +153,9 @@ const data = {
|
|
|
150
153
|
"icon": "sort-calendar-ascending",
|
|
151
154
|
"text": "by-date-oldest-first",
|
|
152
155
|
"value": [
|
|
153
|
-
|
|
154
|
-
|
|
156
|
+
{
|
|
157
|
+
"date": 1
|
|
158
|
+
}
|
|
155
159
|
]
|
|
156
160
|
}
|
|
157
161
|
},
|
package/dist/list/actions.js
CHANGED
|
@@ -123,24 +123,27 @@ const data = {
|
|
|
123
123
|
"icon": "sort-alphabetical-ascending",
|
|
124
124
|
"text": "by-name-from-a-to-z",
|
|
125
125
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
{
|
|
127
|
+
"name": 1
|
|
128
|
+
}
|
|
128
129
|
]
|
|
129
130
|
},
|
|
130
131
|
"namedesc": {
|
|
131
132
|
"icon": "sort-alphabetical-descending",
|
|
132
133
|
"text": "by-name-from-z-to-a",
|
|
133
134
|
"value": [
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
{
|
|
136
|
+
"name": 1
|
|
137
|
+
}
|
|
136
138
|
]
|
|
137
139
|
},
|
|
138
140
|
"dateasc": {
|
|
139
141
|
"icon": "sort-calendar-descending",
|
|
140
142
|
"text": "by-date-most-recent-first",
|
|
141
143
|
"value": [
|
|
142
|
-
|
|
143
|
-
|
|
144
|
+
{
|
|
145
|
+
"date": -1
|
|
146
|
+
}
|
|
144
147
|
],
|
|
145
148
|
"default": true
|
|
146
149
|
},
|
|
@@ -148,8 +151,9 @@ const data = {
|
|
|
148
151
|
"icon": "sort-calendar-ascending",
|
|
149
152
|
"text": "by-date-oldest-first",
|
|
150
153
|
"value": [
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
{
|
|
155
|
+
"date": 1
|
|
156
|
+
}
|
|
153
157
|
]
|
|
154
158
|
}
|
|
155
159
|
},
|
|
@@ -125,24 +125,27 @@ const data = {
|
|
|
125
125
|
"icon": "sort-alphabetical-ascending",
|
|
126
126
|
"text": "by-name-from-a-to-z",
|
|
127
127
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
{
|
|
129
|
+
"name": 1
|
|
130
|
+
}
|
|
130
131
|
]
|
|
131
132
|
},
|
|
132
133
|
"namedesc": {
|
|
133
134
|
"icon": "sort-alphabetical-descending",
|
|
134
135
|
"text": "by-name-from-z-to-a",
|
|
135
136
|
"value": [
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
{
|
|
138
|
+
"name": -1
|
|
139
|
+
}
|
|
138
140
|
]
|
|
139
141
|
},
|
|
140
142
|
"dateasc": {
|
|
141
143
|
"icon": "sort-calendar-descending",
|
|
142
144
|
"text": "by-date-most-recent-first",
|
|
143
145
|
"value": [
|
|
144
|
-
|
|
145
|
-
|
|
146
|
+
{
|
|
147
|
+
"date": -1
|
|
148
|
+
}
|
|
146
149
|
],
|
|
147
150
|
"default": true
|
|
148
151
|
},
|
|
@@ -150,8 +153,9 @@ const data = {
|
|
|
150
153
|
"icon": "sort-calendar-ascending",
|
|
151
154
|
"text": "by-date-oldest-first",
|
|
152
155
|
"value": [
|
|
153
|
-
|
|
154
|
-
|
|
156
|
+
{
|
|
157
|
+
"date": 1
|
|
158
|
+
}
|
|
155
159
|
]
|
|
156
160
|
}
|
|
157
161
|
},
|
|
@@ -123,24 +123,27 @@ const data = {
|
|
|
123
123
|
"icon": "sort-alphabetical-ascending",
|
|
124
124
|
"text": "by-name-from-a-to-z",
|
|
125
125
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
{
|
|
127
|
+
"name": 1
|
|
128
|
+
}
|
|
128
129
|
]
|
|
129
130
|
},
|
|
130
131
|
"namedesc": {
|
|
131
132
|
"icon": "sort-alphabetical-descending",
|
|
132
133
|
"text": "by-name-from-z-to-a",
|
|
133
134
|
"value": [
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
{
|
|
136
|
+
"name": -1
|
|
137
|
+
}
|
|
136
138
|
]
|
|
137
139
|
},
|
|
138
140
|
"dateasc": {
|
|
139
141
|
"icon": "sort-calendar-descending",
|
|
140
142
|
"text": "by-date-most-recent-first",
|
|
141
143
|
"value": [
|
|
142
|
-
|
|
143
|
-
|
|
144
|
+
{
|
|
145
|
+
"date": -1
|
|
146
|
+
}
|
|
144
147
|
],
|
|
145
148
|
"default": true
|
|
146
149
|
},
|
|
@@ -148,8 +151,9 @@ const data = {
|
|
|
148
151
|
"icon": "sort-calendar-ascending",
|
|
149
152
|
"text": "by-date-oldest-first",
|
|
150
153
|
"value": [
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
{
|
|
155
|
+
"date": 1
|
|
156
|
+
}
|
|
153
157
|
]
|
|
154
158
|
}
|
|
155
159
|
},
|
package/dist/list/apps.cjs.js
CHANGED
|
@@ -125,24 +125,27 @@ const data = {
|
|
|
125
125
|
"icon": "sort-alphabetical-ascending",
|
|
126
126
|
"text": "by-name-from-a-to-z",
|
|
127
127
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
{
|
|
129
|
+
"name": 1
|
|
130
|
+
}
|
|
130
131
|
]
|
|
131
132
|
},
|
|
132
133
|
"namedesc": {
|
|
133
134
|
"icon": "sort-alphabetical-descending",
|
|
134
135
|
"text": "by-name-from-z-to-a",
|
|
135
136
|
"value": [
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
{
|
|
138
|
+
"name": -1
|
|
139
|
+
}
|
|
138
140
|
]
|
|
139
141
|
},
|
|
140
142
|
"dateasc": {
|
|
141
143
|
"icon": "sort-calendar-descending",
|
|
142
144
|
"text": "by-date-most-recent-first",
|
|
143
145
|
"value": [
|
|
144
|
-
|
|
145
|
-
|
|
146
|
+
{
|
|
147
|
+
"date": -1
|
|
148
|
+
}
|
|
146
149
|
],
|
|
147
150
|
"default": true
|
|
148
151
|
},
|
|
@@ -150,8 +153,9 @@ const data = {
|
|
|
150
153
|
"icon": "sort-calendar-ascending",
|
|
151
154
|
"text": "by-date-oldest-first",
|
|
152
155
|
"value": [
|
|
153
|
-
|
|
154
|
-
|
|
156
|
+
{
|
|
157
|
+
"date": 1
|
|
158
|
+
}
|
|
155
159
|
]
|
|
156
160
|
}
|
|
157
161
|
},
|
package/dist/list/apps.js
CHANGED
|
@@ -123,24 +123,27 @@ const data = {
|
|
|
123
123
|
"icon": "sort-alphabetical-ascending",
|
|
124
124
|
"text": "by-name-from-a-to-z",
|
|
125
125
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
{
|
|
127
|
+
"name": 1
|
|
128
|
+
}
|
|
128
129
|
]
|
|
129
130
|
},
|
|
130
131
|
"namedesc": {
|
|
131
132
|
"icon": "sort-alphabetical-descending",
|
|
132
133
|
"text": "by-name-from-z-to-a",
|
|
133
134
|
"value": [
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
{
|
|
136
|
+
"name": -1
|
|
137
|
+
}
|
|
136
138
|
]
|
|
137
139
|
},
|
|
138
140
|
"dateasc": {
|
|
139
141
|
"icon": "sort-calendar-descending",
|
|
140
142
|
"text": "by-date-most-recent-first",
|
|
141
143
|
"value": [
|
|
142
|
-
|
|
143
|
-
|
|
144
|
+
{
|
|
145
|
+
"date": -1
|
|
146
|
+
}
|
|
144
147
|
],
|
|
145
148
|
"default": true
|
|
146
149
|
},
|
|
@@ -148,8 +151,9 @@ const data = {
|
|
|
148
151
|
"icon": "sort-calendar-ascending",
|
|
149
152
|
"text": "by-date-oldest-first",
|
|
150
153
|
"value": [
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
{
|
|
155
|
+
"date": 1
|
|
156
|
+
}
|
|
153
157
|
]
|
|
154
158
|
}
|
|
155
159
|
},
|
|
@@ -125,24 +125,27 @@ const data = {
|
|
|
125
125
|
"icon": "sort-alphabetical-ascending",
|
|
126
126
|
"text": "by-name-from-a-to-z",
|
|
127
127
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
{
|
|
129
|
+
"article_title": 1
|
|
130
|
+
}
|
|
130
131
|
]
|
|
131
132
|
},
|
|
132
133
|
"namedesc": {
|
|
133
134
|
"icon": "sort-alphabetical-descending",
|
|
134
135
|
"text": "by-name-from-z-to-a",
|
|
135
136
|
"value": [
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
{
|
|
138
|
+
"article_title": -1
|
|
139
|
+
}
|
|
138
140
|
]
|
|
139
141
|
},
|
|
140
142
|
"dateasc": {
|
|
141
143
|
"icon": "sort-calendar-descending",
|
|
142
144
|
"text": "by-date-most-recent-first",
|
|
143
145
|
"value": [
|
|
144
|
-
|
|
145
|
-
|
|
146
|
+
{
|
|
147
|
+
"date": -1
|
|
148
|
+
}
|
|
146
149
|
],
|
|
147
150
|
"default": true
|
|
148
151
|
},
|
|
@@ -150,8 +153,9 @@ const data = {
|
|
|
150
153
|
"icon": "sort-calendar-ascending",
|
|
151
154
|
"text": "by-date-oldest-first",
|
|
152
155
|
"value": [
|
|
153
|
-
|
|
154
|
-
|
|
156
|
+
{
|
|
157
|
+
"date": 1
|
|
158
|
+
}
|
|
155
159
|
]
|
|
156
160
|
}
|
|
157
161
|
},
|
package/dist/list/disciplines.js
CHANGED
|
@@ -123,24 +123,27 @@ const data = {
|
|
|
123
123
|
"icon": "sort-alphabetical-ascending",
|
|
124
124
|
"text": "by-name-from-a-to-z",
|
|
125
125
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
{
|
|
127
|
+
"article_title": 1
|
|
128
|
+
}
|
|
128
129
|
]
|
|
129
130
|
},
|
|
130
131
|
"namedesc": {
|
|
131
132
|
"icon": "sort-alphabetical-descending",
|
|
132
133
|
"text": "by-name-from-z-to-a",
|
|
133
134
|
"value": [
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
{
|
|
136
|
+
"article_title": -1
|
|
137
|
+
}
|
|
136
138
|
]
|
|
137
139
|
},
|
|
138
140
|
"dateasc": {
|
|
139
141
|
"icon": "sort-calendar-descending",
|
|
140
142
|
"text": "by-date-most-recent-first",
|
|
141
143
|
"value": [
|
|
142
|
-
|
|
143
|
-
|
|
144
|
+
{
|
|
145
|
+
"date": -1
|
|
146
|
+
}
|
|
144
147
|
],
|
|
145
148
|
"default": true
|
|
146
149
|
},
|
|
@@ -148,8 +151,9 @@ const data = {
|
|
|
148
151
|
"icon": "sort-calendar-ascending",
|
|
149
152
|
"text": "by-date-oldest-first",
|
|
150
153
|
"value": [
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
{
|
|
155
|
+
"date": 1
|
|
156
|
+
}
|
|
153
157
|
]
|
|
154
158
|
}
|
|
155
159
|
},
|
package/dist/list/events.cjs.js
CHANGED
|
@@ -117,16 +117,18 @@ const data = {
|
|
|
117
117
|
"icon": "sort-alphabetical-ascending",
|
|
118
118
|
"text": "by-name-from-a-to-z",
|
|
119
119
|
"value": [
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
{
|
|
121
|
+
"name": 1
|
|
122
|
+
}
|
|
122
123
|
]
|
|
123
124
|
},
|
|
124
125
|
"namedesc": {
|
|
125
126
|
"icon": "sort-alphabetical-descending",
|
|
126
127
|
"text": "by-name-from-z-to-a",
|
|
127
128
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
129
|
+
{
|
|
130
|
+
"name": -1
|
|
131
|
+
}
|
|
130
132
|
]
|
|
131
133
|
},
|
|
132
134
|
"dateasc": {
|
|
@@ -238,13 +240,7 @@ const data = {
|
|
|
238
240
|
"value": ""
|
|
239
241
|
}
|
|
240
242
|
},
|
|
241
|
-
"limit": 20
|
|
242
|
-
"sortBy": [
|
|
243
|
-
"start"
|
|
244
|
-
],
|
|
245
|
-
"sortDesc": [
|
|
246
|
-
-1
|
|
247
|
-
]
|
|
243
|
+
"limit": 20
|
|
248
244
|
};
|
|
249
245
|
|
|
250
246
|
var events = selectiveDeepFreeze(data);
|
package/dist/list/events.js
CHANGED
|
@@ -115,16 +115,18 @@ const data = {
|
|
|
115
115
|
"icon": "sort-alphabetical-ascending",
|
|
116
116
|
"text": "by-name-from-a-to-z",
|
|
117
117
|
"value": [
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
{
|
|
119
|
+
"name": 1
|
|
120
|
+
}
|
|
120
121
|
]
|
|
121
122
|
},
|
|
122
123
|
"namedesc": {
|
|
123
124
|
"icon": "sort-alphabetical-descending",
|
|
124
125
|
"text": "by-name-from-z-to-a",
|
|
125
126
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
127
|
+
{
|
|
128
|
+
"name": -1
|
|
129
|
+
}
|
|
128
130
|
]
|
|
129
131
|
},
|
|
130
132
|
"dateasc": {
|
|
@@ -236,13 +238,7 @@ const data = {
|
|
|
236
238
|
"value": ""
|
|
237
239
|
}
|
|
238
240
|
},
|
|
239
|
-
"limit": 20
|
|
240
|
-
"sortBy": [
|
|
241
|
-
"start"
|
|
242
|
-
],
|
|
243
|
-
"sortDesc": [
|
|
244
|
-
-1
|
|
245
|
-
]
|
|
241
|
+
"limit": 20
|
|
246
242
|
};
|
|
247
243
|
|
|
248
244
|
var events = selectiveDeepFreeze(data);
|
|
@@ -117,24 +117,27 @@ const data = {
|
|
|
117
117
|
"icon": "sort-alphabetical-ascending",
|
|
118
118
|
"text": "by-name-from-a-to-z",
|
|
119
119
|
"value": [
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
{
|
|
121
|
+
"name": 1
|
|
122
|
+
}
|
|
122
123
|
]
|
|
123
124
|
},
|
|
124
125
|
"namedesc": {
|
|
125
126
|
"icon": "sort-alphabetical-descending",
|
|
126
127
|
"text": "by-name-from-z-to-a",
|
|
127
128
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
129
|
+
{
|
|
130
|
+
"name": -1
|
|
131
|
+
}
|
|
130
132
|
]
|
|
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
|
+
"applicationStart": -1
|
|
140
|
+
}
|
|
138
141
|
],
|
|
139
142
|
"default": true
|
|
140
143
|
},
|
|
@@ -142,8 +145,9 @@ const data = {
|
|
|
142
145
|
"icon": "sort-calendar-ascending",
|
|
143
146
|
"text": "by-date-oldest-first",
|
|
144
147
|
"value": [
|
|
145
|
-
|
|
146
|
-
|
|
148
|
+
{
|
|
149
|
+
"applicationStart": 1
|
|
150
|
+
}
|
|
147
151
|
]
|
|
148
152
|
}
|
|
149
153
|
},
|
package/dist/list/fellowships.js
CHANGED
|
@@ -115,24 +115,27 @@ const data = {
|
|
|
115
115
|
"icon": "sort-alphabetical-ascending",
|
|
116
116
|
"text": "by-name-from-a-to-z",
|
|
117
117
|
"value": [
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
{
|
|
119
|
+
"name": 1
|
|
120
|
+
}
|
|
120
121
|
]
|
|
121
122
|
},
|
|
122
123
|
"namedesc": {
|
|
123
124
|
"icon": "sort-alphabetical-descending",
|
|
124
125
|
"text": "by-name-from-z-to-a",
|
|
125
126
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
127
|
+
{
|
|
128
|
+
"name": -1
|
|
129
|
+
}
|
|
128
130
|
]
|
|
129
131
|
},
|
|
130
132
|
"dateasc": {
|
|
131
133
|
"icon": "sort-calendar-descending",
|
|
132
134
|
"text": "by-date-most-recent-first",
|
|
133
135
|
"value": [
|
|
134
|
-
|
|
135
|
-
|
|
136
|
+
{
|
|
137
|
+
"applicationStart": -1
|
|
138
|
+
}
|
|
136
139
|
],
|
|
137
140
|
"default": true
|
|
138
141
|
},
|
|
@@ -140,8 +143,9 @@ const data = {
|
|
|
140
143
|
"icon": "sort-calendar-ascending",
|
|
141
144
|
"text": "by-date-oldest-first",
|
|
142
145
|
"value": [
|
|
143
|
-
|
|
144
|
-
|
|
146
|
+
{
|
|
147
|
+
"applicationStart": 1
|
|
148
|
+
}
|
|
145
149
|
]
|
|
146
150
|
}
|
|
147
151
|
},
|
package/dist/list/files.cjs.js
CHANGED
|
@@ -125,24 +125,27 @@ const data = {
|
|
|
125
125
|
"icon": "sort-alphabetical-ascending",
|
|
126
126
|
"text": "by-name-from-a-to-z",
|
|
127
127
|
"value": [
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
{
|
|
129
|
+
"article_title": 1
|
|
130
|
+
}
|
|
130
131
|
]
|
|
131
132
|
},
|
|
132
133
|
"namedesc": {
|
|
133
134
|
"icon": "sort-alphabetical-descending",
|
|
134
135
|
"text": "by-name-from-z-to-a",
|
|
135
136
|
"value": [
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
{
|
|
138
|
+
"article_title": -1
|
|
139
|
+
}
|
|
138
140
|
]
|
|
139
141
|
},
|
|
140
142
|
"dateasc": {
|
|
141
143
|
"icon": "sort-calendar-descending",
|
|
142
144
|
"text": "by-date-most-recent-first",
|
|
143
145
|
"value": [
|
|
144
|
-
|
|
145
|
-
|
|
146
|
+
{
|
|
147
|
+
"date": -1
|
|
148
|
+
}
|
|
146
149
|
],
|
|
147
150
|
"default": true
|
|
148
151
|
},
|
|
@@ -150,8 +153,9 @@ const data = {
|
|
|
150
153
|
"icon": "sort-calendar-ascending",
|
|
151
154
|
"text": "by-date-oldest-first",
|
|
152
155
|
"value": [
|
|
153
|
-
|
|
154
|
-
|
|
156
|
+
{
|
|
157
|
+
"date": 1
|
|
158
|
+
}
|
|
155
159
|
]
|
|
156
160
|
}
|
|
157
161
|
},
|
package/dist/list/files.js
CHANGED
|
@@ -123,24 +123,27 @@ const data = {
|
|
|
123
123
|
"icon": "sort-alphabetical-ascending",
|
|
124
124
|
"text": "by-name-from-a-to-z",
|
|
125
125
|
"value": [
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
{
|
|
127
|
+
"article_title": 1
|
|
128
|
+
}
|
|
128
129
|
]
|
|
129
130
|
},
|
|
130
131
|
"namedesc": {
|
|
131
132
|
"icon": "sort-alphabetical-descending",
|
|
132
133
|
"text": "by-name-from-z-to-a",
|
|
133
134
|
"value": [
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
{
|
|
136
|
+
"article_title": -1
|
|
137
|
+
}
|
|
136
138
|
]
|
|
137
139
|
},
|
|
138
140
|
"dateasc": {
|
|
139
141
|
"icon": "sort-calendar-descending",
|
|
140
142
|
"text": "by-date-most-recent-first",
|
|
141
143
|
"value": [
|
|
142
|
-
|
|
143
|
-
|
|
144
|
+
{
|
|
145
|
+
"date": -1
|
|
146
|
+
}
|
|
144
147
|
],
|
|
145
148
|
"default": true
|
|
146
149
|
},
|
|
@@ -148,8 +151,9 @@ const data = {
|
|
|
148
151
|
"icon": "sort-calendar-ascending",
|
|
149
152
|
"text": "by-date-oldest-first",
|
|
150
153
|
"value": [
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
{
|
|
155
|
+
"date": 1
|
|
156
|
+
}
|
|
153
157
|
]
|
|
154
158
|
}
|
|
155
159
|
},
|