shel-neos-schema 1.1.0 → 1.1.2
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/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/NodeTypes.Schema.json +4 -1
- package/examples/NodeTypes.Simple.yaml +3 -0
- package/examples/NodeTypes.WithChildren.yaml +1 -0
- package/package.json +1 -1
package/NodeTypes.Schema.json
CHANGED
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
"properties": {
|
|
23
23
|
"message": {
|
|
24
24
|
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"thumbnail": {
|
|
27
|
+
"type": "string"
|
|
25
28
|
}
|
|
26
29
|
}
|
|
27
30
|
},
|
|
@@ -1458,7 +1461,7 @@
|
|
|
1458
1461
|
"additionalProperties": false,
|
|
1459
1462
|
"properties": {
|
|
1460
1463
|
"label": {
|
|
1461
|
-
"type": "string",
|
|
1464
|
+
"type": ["string", "null"],
|
|
1462
1465
|
"description": "Set a custom label for the node (Neos 8.4+)"
|
|
1463
1466
|
},
|
|
1464
1467
|
"position": {
|
|
@@ -14,6 +14,9 @@ My.Vendor:Content.Text:
|
|
|
14
14
|
options:
|
|
15
15
|
someCustomOption: true
|
|
16
16
|
ui:
|
|
17
|
+
help:
|
|
18
|
+
message: 'Explanation about this text property'
|
|
19
|
+
thumbnail: 'resource://My.Site/Private/Images/helpThumbnail.png'
|
|
17
20
|
inlineEditable: true
|
|
18
21
|
inspector:
|
|
19
22
|
editor: Neos.Neos/Inspector/Editors/TextFieldEditor
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shel-neos-schema",
|
|
3
3
|
"description": "A tool to validate Neos YAML schema files like nodetypes and other configuration",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"main": "bin/validate.js",
|
|
6
6
|
"author": "Sebastian Helzle <sebastian@helzle.it>",
|
|
7
7
|
"license": "MIT",
|