@nebula.js/sn-table 1.13.0 → 1.14.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.
- package/api-specifications/properties.json +42 -3
- package/core/esm/index.js +140 -15
- package/core/package.json +3 -3
- package/dist/sn-table.js +162 -37
- package/package.json +2 -2
- package/sn-table-ext/dist/sn-table.js +162 -37
- package/sn-table-ext/sn-table.qext +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "@nebula.js/sn-table:properties",
|
|
5
5
|
"description": "Table generic object definition",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.14.0",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"stability": "experimental",
|
|
9
9
|
"x-qlik-visibility": "public"
|
|
@@ -61,14 +61,14 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"qDimensions": {
|
|
64
|
-
"description": "The maximum amount of dimensions is
|
|
64
|
+
"description": "The maximum amount of dimensions is 1000",
|
|
65
65
|
"kind": "array",
|
|
66
66
|
"items": {
|
|
67
67
|
"type": "#/definitions/DimensionProperties"
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
"qMeasures": {
|
|
71
|
-
"description": "The maximum amount of measures is
|
|
71
|
+
"description": "The maximum amount of measures is 1000",
|
|
72
72
|
"kind": "array",
|
|
73
73
|
"items": {
|
|
74
74
|
"type": "#/definitions/MeasureProperties"
|
|
@@ -124,6 +124,45 @@
|
|
|
124
124
|
],
|
|
125
125
|
"type": "any"
|
|
126
126
|
},
|
|
127
|
+
"totals": {
|
|
128
|
+
"description": "totals settings",
|
|
129
|
+
"kind": "object",
|
|
130
|
+
"entries": {
|
|
131
|
+
"label": {
|
|
132
|
+
"description": "The label of the totals row, shown in the leftmost column",
|
|
133
|
+
"optional": true,
|
|
134
|
+
"defaultValue": "Totals",
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
"position": {
|
|
138
|
+
"description": "The position of the totals row, hiding it if set to `noTotals`",
|
|
139
|
+
"optional": true,
|
|
140
|
+
"defaultValue": "noTotals",
|
|
141
|
+
"kind": "union",
|
|
142
|
+
"items": [
|
|
143
|
+
{
|
|
144
|
+
"kind": "literal",
|
|
145
|
+
"value": "'top'"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"kind": "literal",
|
|
149
|
+
"value": "'bottom'"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"kind": "literal",
|
|
153
|
+
"value": "'noTotals'"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"type": "string"
|
|
157
|
+
},
|
|
158
|
+
"show": {
|
|
159
|
+
"description": "Determines if the way totals row is showing is handle automatically, if `true` the `position` prop will be ignored",
|
|
160
|
+
"optional": true,
|
|
161
|
+
"defaultValue": true,
|
|
162
|
+
"type": "boolean"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
},
|
|
127
166
|
"version": {
|
|
128
167
|
"description": "Current version of this generic object definition",
|
|
129
168
|
"type": "string"
|