@neovici/cosmoz-omnitable 12.25.0 → 12.25.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.
|
@@ -105,7 +105,7 @@ class OmnitableColumnBoolean extends columnMixin(PolymerElement) {
|
|
|
105
105
|
? html`<paper-spinner-lite style="width: 20px; height: 20px;" suffix slot="suffix" active></paper-spinner-lite>`
|
|
106
106
|
: nothing;
|
|
107
107
|
|
|
108
|
-
return html`<cosmoz-autocomplete
|
|
108
|
+
return html`<cosmoz-autocomplete-ui
|
|
109
109
|
no-label-float
|
|
110
110
|
.title=${ computeItemTooltip(column.title, item, column.valuePath, computeSource(trueLabel, falseLabel)) }
|
|
111
111
|
.source=${ computeSource(trueLabel, falseLabel) }
|
|
@@ -15,8 +15,8 @@ export const
|
|
|
15
15
|
return data;
|
|
16
16
|
},
|
|
17
17
|
|
|
18
|
-
saveAsXlsxAction = (
|
|
19
|
-
const data = prepareXlsxData(
|
|
18
|
+
saveAsXlsxAction = (columns, selectedItems, xlsxFilename, xlsxSheetname) => {
|
|
19
|
+
const data = prepareXlsxData(columns, selectedItems),
|
|
20
20
|
xlsx = new NullXlsx(xlsxFilename).addSheetFromData(data, xlsxSheetname).generate();
|
|
21
21
|
|
|
22
22
|
saveAs(new File([xlsx], xlsxFilename, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovici/cosmoz-omnitable",
|
|
3
|
-
"version": "12.25.
|
|
3
|
+
"version": "12.25.2",
|
|
4
4
|
"description": "[](https://travis-ci.org/Neovici/cosmoz-omnitable)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components"
|