@movable/rollup-plugin-package-manifest-validator 2.42.0 → 2.42.1-canary.0
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.
|
@@ -354,6 +354,27 @@ var _default = {
|
|
|
354
354
|
type: 'array',
|
|
355
355
|
items: fieldSchema
|
|
356
356
|
},
|
|
357
|
+
field_headings: {
|
|
358
|
+
type: 'array',
|
|
359
|
+
items: {
|
|
360
|
+
type: 'object',
|
|
361
|
+
required: ['name', 'label'],
|
|
362
|
+
properties: {
|
|
363
|
+
name: {
|
|
364
|
+
type: 'string'
|
|
365
|
+
},
|
|
366
|
+
label: {
|
|
367
|
+
type: 'string'
|
|
368
|
+
},
|
|
369
|
+
toggleable: {
|
|
370
|
+
type: 'boolean'
|
|
371
|
+
},
|
|
372
|
+
default_toggle_collapsed: {
|
|
373
|
+
type: 'boolean'
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
},
|
|
357
378
|
studio_options: {
|
|
358
379
|
type: 'object',
|
|
359
380
|
properties: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/rollup-plugin-package-manifest-validator",
|
|
3
|
-
"version": "2.42.0",
|
|
3
|
+
"version": "2.42.1-canary.0",
|
|
4
4
|
"description": "Validates package-manifest.yml",
|
|
5
5
|
"main": "dist",
|
|
6
6
|
"keywords": [],
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"volta": {
|
|
40
40
|
"extends": "../../package.json"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "451954a037803969425f6bd06db7c1a4fd13883d"
|
|
43
43
|
}
|
|
@@ -215,6 +215,19 @@ export default {
|
|
|
215
215
|
type: 'array',
|
|
216
216
|
items: fieldSchema
|
|
217
217
|
},
|
|
218
|
+
field_headings: {
|
|
219
|
+
type: 'array',
|
|
220
|
+
items: {
|
|
221
|
+
type: 'object',
|
|
222
|
+
required: ['name', 'label'],
|
|
223
|
+
properties: {
|
|
224
|
+
name: { type: 'string' },
|
|
225
|
+
label: { type: 'string' },
|
|
226
|
+
toggleable: { type: 'boolean' },
|
|
227
|
+
default_toggle_collapsed: { type: 'boolean' }
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
218
231
|
studio_options: {
|
|
219
232
|
type: 'object',
|
|
220
233
|
properties: {
|