@nebula.js/sn-pivot-table 1.0.2 → 2.0.0-alpha.1
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/README.md +1 -1
- package/api-specifications/properties.json +95 -2
- package/core/esm/index.js +4 -4
- package/core/package.json +3 -3
- package/dist/sn-pivot-table.js +23 -30
- package/dist/sn-pivot-table.systemjs.js +4 -4
- package/package.json +94 -61
- package/sn-pivot-table-ext/dist/sn-pivot-table.js +23 -30
- package/sn-pivot-table-ext/sn-pivot-table.qext +1 -1
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ yarn build
|
|
|
64
64
|
|
|
65
65
|
Compress the generated 'sn-pivot-table-ext' folder into the 'application/zip' file format
|
|
66
66
|
|
|
67
|
-
|
|
|
67
|
+
| [Saas Edition of Qlik Sense] | [Qlik Sense Enterprise] | [Qlik Sense Desktop] |
|
|
68
68
|
| :--------------------------------------------------------------------------------------: | :--------------------------------------------------------------------: | :------------------------------------------------------------------------------: |
|
|
69
69
|
| Copy sn-pivot-table-ext into https://your-tenant-id.us.qlikcloud.com/console/extensions/ | Copy sn-pivot-table-ext into Qlik Management Console (QMC)->Extensions | Copy sn-pivot-table-ext into ..\Users\<UserName>\Documents\Qlik\Sense\Extensions |
|
|
70
70
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "@nebula.js/sn-pivot-table:properties",
|
|
5
5
|
"description": "Pivot Table generic object definition",
|
|
6
|
-
"version": "
|
|
6
|
+
"version": "2.0.0-alpha.1",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"stability": "experimental",
|
|
9
9
|
"x-qlik-visibility": "public"
|
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
],
|
|
18
18
|
"kind": "object",
|
|
19
19
|
"entries": {
|
|
20
|
+
"components": {
|
|
21
|
+
"description": "Holds general styling",
|
|
22
|
+
"nullable": true,
|
|
23
|
+
"kind": "array",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "#/definitions/Component"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
20
28
|
"footnote": {
|
|
21
29
|
"description": "Visualization footnote",
|
|
22
30
|
"optional": true,
|
|
@@ -126,5 +134,90 @@
|
|
|
126
134
|
}
|
|
127
135
|
}
|
|
128
136
|
},
|
|
129
|
-
"definitions": {
|
|
137
|
+
"definitions": {
|
|
138
|
+
"Component": {
|
|
139
|
+
"description": "General styling for all columns.\nSplit up into header and content (body) styling.\nIf any property is not set, default values specific for each property is used.",
|
|
140
|
+
"kind": "object",
|
|
141
|
+
"entries": {
|
|
142
|
+
"key": {
|
|
143
|
+
"description": "This should be set to `theme`",
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
"content": {
|
|
147
|
+
"optional": true,
|
|
148
|
+
"type": "#/definitions/ContentStyling"
|
|
149
|
+
},
|
|
150
|
+
"header": {
|
|
151
|
+
"optional": true,
|
|
152
|
+
"type": "#/definitions/HeaderStyling"
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"ContentStyling": {
|
|
157
|
+
"description": "Holds properties for font size, font color and hover styling.",
|
|
158
|
+
"kind": "object",
|
|
159
|
+
"entries": {
|
|
160
|
+
"fontSize": {
|
|
161
|
+
"description": "Defaults to `14`",
|
|
162
|
+
"optional": true,
|
|
163
|
+
"type": "number"
|
|
164
|
+
},
|
|
165
|
+
"fontColor": {
|
|
166
|
+
"description": "Defaults to `#404040`",
|
|
167
|
+
"optional": true,
|
|
168
|
+
"type": "#/definitions/PaletteColor"
|
|
169
|
+
},
|
|
170
|
+
"hoverEffect": {
|
|
171
|
+
"description": "Toggles hover effect",
|
|
172
|
+
"optional": true,
|
|
173
|
+
"type": "boolean"
|
|
174
|
+
},
|
|
175
|
+
"hoverColor": {
|
|
176
|
+
"description": "Background hover color. Uses `#f4f4f4` if no hover colors are set, is transparent if only `hoverFontColor` is set",
|
|
177
|
+
"optional": true,
|
|
178
|
+
"type": "#/definitions/PaletteColor"
|
|
179
|
+
},
|
|
180
|
+
"hoverFontColor": {
|
|
181
|
+
"description": "When only `hoverColor` is set, this is adjusted to either `#f4f4f4` or `#ffffff` for optimal contrast",
|
|
182
|
+
"optional": true,
|
|
183
|
+
"type": "#/definitions/PaletteColor"
|
|
184
|
+
},
|
|
185
|
+
"padding": {
|
|
186
|
+
"description": "Css setting for the cell padding, defaults to `4px 12px`",
|
|
187
|
+
"optional": true,
|
|
188
|
+
"type": "string"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"HeaderStyling": {
|
|
193
|
+
"description": "Holds properties for font size and color.",
|
|
194
|
+
"kind": "object",
|
|
195
|
+
"entries": {
|
|
196
|
+
"fontSize": {
|
|
197
|
+
"description": "Defaults to `14`",
|
|
198
|
+
"optional": true,
|
|
199
|
+
"type": "number"
|
|
200
|
+
},
|
|
201
|
+
"fontColor": {
|
|
202
|
+
"description": "Defaults to `#404040`",
|
|
203
|
+
"optional": true,
|
|
204
|
+
"type": "#/definitions/PaletteColor"
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"PaletteColor": {
|
|
209
|
+
"description": "Color information structure. Holds the actual color and index in palette",
|
|
210
|
+
"kind": "object",
|
|
211
|
+
"entries": {
|
|
212
|
+
"color": {
|
|
213
|
+
"description": "Color as hex string (mandatory if index: -1)",
|
|
214
|
+
"type": "string"
|
|
215
|
+
},
|
|
216
|
+
"index": {
|
|
217
|
+
"description": "Index in palette",
|
|
218
|
+
"type": "number"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
130
223
|
}
|