@magda/registry-aspects 4.2.2 → 4.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magda/registry-aspects",
3
- "version": "4.2.2",
3
+ "version": "4.2.3",
4
4
  "description": "Common aspects for use with the registry.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema#",
3
+ "title": "Preview Tabular Data Settings",
4
+ "description": "Provides extra tabular data preview configuration options at dataset/distribution level.",
5
+ "type": "object",
6
+ "properties": {
7
+ "enableChart": {
8
+ "title": "Whether the tabular data chart view should be enabled (when possible) for the attached dataset/distribution.",
9
+ "type": "boolean",
10
+ "default": true
11
+ },
12
+ "enableTable": {
13
+ "title": "Whether the tabular data table view should be enabled (when possible) for the attached dataset/distribution.",
14
+ "type": "boolean",
15
+ "default": true
16
+ }
17
+ }
18
+ }