spreadsheet-lit-element
Advanced tools
Comparing version 0.0.41 to 0.0.42
{ | ||
"name": "spreadsheet-lit-element", | ||
"version": "0.0.41", | ||
"version": "0.0.42", | ||
"description": "A simple web component", | ||
@@ -5,0 +5,0 @@ "main": "vaadin-spreadsheet.js", |
@@ -239,102 +239,103 @@ /** | ||
let newVal = this[name]; | ||
let notify = !initial; | ||
if ('rowBufferSize' == name) { | ||
this.api.setRowBufferSize(newVal, initial); | ||
this.api.setRowBufferSize(newVal, notify); | ||
} else if ('columnBufferSize' == name) { | ||
this.api.setColumnBufferSize(newVal, initial); | ||
this.api.setColumnBufferSize(newVal, notify); | ||
} else if ('rows' == name) { | ||
this.api.setRows(newVal, initial); | ||
this.api.setRows(newVal, notify); | ||
} else if ('cols' == name) { | ||
this.api.setCols(newVal, initial); | ||
this.api.setCols(newVal, notify); | ||
} else if ('colGroupingData' == name) { | ||
this.api.setColGroupingData(newVal, initial); | ||
this.api.setColGroupingData(newVal, notify); | ||
} else if ('rowGroupingData' == name) { | ||
this.api.setRowGroupingData(newVal, initial); | ||
this.api.setRowGroupingData(newVal, notify); | ||
} else if ('colGroupingMax' == name) { | ||
this.api.setColGroupingMax(newVal, initial); | ||
this.api.setColGroupingMax(newVal, notify); | ||
} else if ('rowGroupingMax' == name) { | ||
this.api.setRowGroupingMax(newVal, initial); | ||
this.api.setRowGroupingMax(newVal, notify); | ||
} else if ('colGroupingInversed' == name) { | ||
this.api.setColGroupingInversed(newVal, initial); | ||
this.api.setColGroupingInversed(newVal, notify); | ||
} else if ('rowGroupingInversed' == name) { | ||
this.api.setRowGroupingInversed(newVal, initial); | ||
this.api.setRowGroupingInversed(newVal, notify); | ||
} else if ('defRowH' == name) { | ||
this.api.setDefRowH(newVal, initial); | ||
this.api.setDefRowH(newVal, notify); | ||
} else if ('defColW' == name) { | ||
this.api.setDefColW(newVal, initial); | ||
this.api.setDefColW(newVal, notify); | ||
} else if ('rowH' == name) { | ||
this.api.setRowH(newVal, initial); | ||
this.api.setRowH(newVal, notify); | ||
} else if ('colW' == name) { | ||
this.api.setColW(newVal, initial); | ||
this.api.setColW(newVal, notify); | ||
} else if ('reload' == name) { | ||
this.api.setReload(newVal, initial); | ||
this.api.setReload(newVal, notify); | ||
} else if ('' == name) { | ||
this.api.setSheetIndex(newVal, initial); | ||
this.api.setSheetIndex(newVal, notify); | ||
} else if ('sheetNames' == name) { | ||
this.api.setSheetNames(newVal, initial); | ||
this.api.setSheetNames(newVal, notify); | ||
} else if ('cellStyleToCSSStyle' == name) { | ||
this.api.setCellStyleToCSSStyle(newVal, initial); | ||
this.api.setCellStyleToCSSStyle(newVal, notify); | ||
} else if ('rowIndexToStyleIndex' == name) { | ||
this.api.setRowIndexToStyleIndex(newVal, initial); | ||
this.api.setRowIndexToStyleIndex(newVal, notify); | ||
} else if ('columnIndexToStyleIndex' == name) { | ||
this.api.setColumnIndexToStyleIndex(newVal, initial); | ||
this.api.setColumnIndexToStyleIndex(newVal, notify); | ||
} else if ('lockedColumnIndexes' == name) { | ||
this.api.setLockedColumnIndexes(newVal, initial); | ||
this.api.setLockedColumnIndexes(newVal, notify); | ||
} else if ('lockedRowIndexes' == name) { | ||
this.api.setLockedRowIndexes(newVal, initial); | ||
this.api.setLockedRowIndexes(newVal, notify); | ||
} else if ('shiftedCellBorderStyles' == name) { | ||
this.api.setShiftedCellBorderStyles(newVal, initial); | ||
this.api.setShiftedCellBorderStyles(newVal, notify); | ||
} else if ('conditionalFormattingStyles' == name) { | ||
this.api.setConditionalFormattingStyles(newVal, initial); | ||
this.api.setConditionalFormattingStyles(newVal, notify); | ||
} else if ('hiddenColumnIndexes' == name) { | ||
this.api.setHiddenColumnIndexes(newVal, initial); | ||
this.api.setHiddenColumnIndexes(newVal, notify); | ||
} else if ('hiddenRowIndexes' == name) { | ||
this.api.setHiddenRowIndexes(newVal, initial); | ||
this.api.setHiddenRowIndexes(newVal, notify); | ||
} else if ('verticalScrollPositions' == name) { | ||
this.api.setVerticalScrollPositions(newVal, initial); | ||
this.api.setVerticalScrollPositions(newVal, notify); | ||
} else if ('horizontalScrollPositions' == name) { | ||
this.api.setHorizontalScrollPositions(newVal, initial); | ||
this.api.setHorizontalScrollPositions(newVal, notify); | ||
} else if ('sheetProtected' == name) { | ||
this.api.setSheetProtected(newVal, initial); | ||
this.api.setSheetProtected(newVal, notify); | ||
} else if ('workbookProtected' == name) { | ||
this.api.setWorkbookProtected(newVal, initial); | ||
this.api.setWorkbookProtected(newVal, notify); | ||
} else if ('cellKeysToEditorIdMap' == name) { | ||
this.api.setCellKeysToEditorIdMap(newVal, initial); | ||
this.api.setCellKeysToEditorIdMap(newVal, notify); | ||
} else if ('componentIDtoCellKeysMap' == name) { | ||
this.api.setComponentIDtoCellKeysMap(newVal, initial); | ||
this.api.setComponentIDtoCellKeysMap(newVal, notify); | ||
} else if ('hyperlinksTooltips' == name) { | ||
this.api.setHyperlinksTooltips(newVal, initial); | ||
this.api.setHyperlinksTooltips(newVal, notify); | ||
} else if ('cellComments' == name) { | ||
this.api.setCellComments(newVal, initial); | ||
this.api.setCellComments(newVal, notify); | ||
} else if ('cellCommentAuthors' == name) { | ||
this.api.setCellCommentAuthors(newVal, initial); | ||
this.api.setCellCommentAuthors(newVal, notify); | ||
} else if ('visibleCellComments' == name) { | ||
this.api.setVisibleCellComments(newVal, initial); | ||
this.api.setVisibleCellComments(newVal, notify); | ||
} else if ('invalidFormulaCells' == name) { | ||
this.api.setInvalidFormulaCells(newVal, initial); | ||
this.api.setInvalidFormulaCells(newVal, notify); | ||
} else if ('hasActions' == name) { | ||
this.api.setHasActions(newVal, initial); | ||
this.api.setHasActions(newVal, notify); | ||
} else if ('overlays' == name) { | ||
this.api.setOverlays(newVal, initial); | ||
this.api.setOverlays(newVal, notify); | ||
} else if ('mergedRegions' == name) { | ||
this.api.setMergedRegions(newVal, initial); | ||
this.api.setMergedRegions(newVal, notify); | ||
} else if ('displayGridlines' == name) { | ||
this.api.setDisplayGridlines(newVal, initial); | ||
this.api.setDisplayGridlines(newVal, notify); | ||
} else if ('displayRowColHeadings' == name) { | ||
this.api.setDisplayRowColHeadings(newVal, initial); | ||
this.api.setDisplayRowColHeadings(newVal, notify); | ||
} else if ('verticalSplitPosition' == name) { | ||
this.api.setVerticalSplitPosition(newVal, initial); | ||
this.api.setVerticalSplitPosition(newVal, notify); | ||
} else if ('horizontalSplitPosition' == name) { | ||
this.api.setHorizontalSplitPosition(newVal, initial); | ||
this.api.setHorizontalSplitPosition(newVal, notify); | ||
} else if ('infoLabelValue' == name) { | ||
this.api.setInfoLabelValue(newVal, initial); | ||
this.api.setInfoLabelValue(newVal, notify); | ||
} else if ('workbookChangeToggle' == name) { | ||
this.api.setWorkbookChangeToggle(newVal, initial); | ||
this.api.setWorkbookChangeToggle(newVal, notify); | ||
} else if ('invalidFormulaErrorMessage' == name) { | ||
this.api.setInvalidFormulaErrorMessage(newVal, initial); | ||
this.api.setInvalidFormulaErrorMessage(newVal, notify); | ||
} else if ('lockFormatColumns' == name) { | ||
this.api.setLockFormatColumns(newVal, initial); | ||
this.api.setLockFormatColumns(newVal, notify); | ||
} else if ('lockFormatRows' == name) { | ||
this.api.setLockFormatRows(newVal, initial); | ||
this.api.setLockFormatRows(newVal, notify); | ||
} else if ('namedRanges' == name) { | ||
this.api.setNamedRanges(newVal, initial); | ||
this.api.setNamedRanges(newVal, notify); | ||
} else { | ||
@@ -341,0 +342,0 @@ console.log('unsupported property ' + name) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1320
68427