@paris-ias/trees 2.0.49 → 2.0.51
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/form/events.cjs.js +5 -2
- package/dist/form/events.js +5 -2
- package/dist/form/fellowships.cjs.js +3 -1
- package/dist/form/fellowships.js +3 -1
- package/dist/form/publications.cjs.js +3 -1
- package/dist/form/publications.js +3 -1
- package/dist/graphql/client/misc/apex.mutations.delete.gql +7 -2
- package/dist/graphql/client/misc/apex.mutations.upsert.gql +8 -1
- package/package.json +1 -1
package/dist/form/events.cjs.js
CHANGED
|
@@ -177,7 +177,8 @@ const data = {
|
|
|
177
177
|
"component": "ImagePicker",
|
|
178
178
|
"type": "DOCUMENT",
|
|
179
179
|
"rules": {
|
|
180
|
-
"required": true
|
|
180
|
+
"required": true,
|
|
181
|
+
"max": 1
|
|
181
182
|
},
|
|
182
183
|
"meta": "image",
|
|
183
184
|
"default": ""
|
|
@@ -393,7 +394,9 @@ const data = {
|
|
|
393
394
|
"label": "gallery",
|
|
394
395
|
"component": "ImagePicker",
|
|
395
396
|
"type": "DOCUMENT",
|
|
396
|
-
"
|
|
397
|
+
"rules": {
|
|
398
|
+
"max": 24
|
|
399
|
+
},
|
|
397
400
|
"meta": "gallery",
|
|
398
401
|
"default": ""
|
|
399
402
|
},
|
package/dist/form/events.js
CHANGED
|
@@ -175,7 +175,8 @@ const data = {
|
|
|
175
175
|
"component": "ImagePicker",
|
|
176
176
|
"type": "DOCUMENT",
|
|
177
177
|
"rules": {
|
|
178
|
-
"required": true
|
|
178
|
+
"required": true,
|
|
179
|
+
"max": 1
|
|
179
180
|
},
|
|
180
181
|
"meta": "image",
|
|
181
182
|
"default": ""
|
|
@@ -391,7 +392,9 @@ const data = {
|
|
|
391
392
|
"label": "gallery",
|
|
392
393
|
"component": "ImagePicker",
|
|
393
394
|
"type": "DOCUMENT",
|
|
394
|
-
"
|
|
395
|
+
"rules": {
|
|
396
|
+
"max": 24
|
|
397
|
+
},
|
|
395
398
|
"meta": "gallery",
|
|
396
399
|
"default": ""
|
|
397
400
|
},
|
package/dist/form/fellowships.js
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
mutation DeleteItem(
|
|
2
|
-
|
|
1
|
+
mutation DeleteItem(
|
|
2
|
+
$appId: String
|
|
3
|
+
$itemId: String
|
|
4
|
+
$type: String!
|
|
5
|
+
$lang: String = "en"
|
|
6
|
+
) {
|
|
7
|
+
deleteItem(appId: $appId, itemId: $itemId, lang: $lang, type: $type)
|
|
3
8
|
}
|
|
@@ -2,7 +2,14 @@ mutation UpsertItem(
|
|
|
2
2
|
$appId: ID = "iea"
|
|
3
3
|
$itemId: ID
|
|
4
4
|
$type: String!
|
|
5
|
+
$lang: String = "en"
|
|
5
6
|
$item: AWSJSON!
|
|
6
7
|
) {
|
|
7
|
-
upsertItem(
|
|
8
|
+
upsertItem(
|
|
9
|
+
appId: $appId
|
|
10
|
+
itemId: $itemId
|
|
11
|
+
type: $type
|
|
12
|
+
lang: $lang
|
|
13
|
+
item: $item
|
|
14
|
+
)
|
|
8
15
|
}
|