diff --git a/bits/75_xlml.js b/bits/75_xlml.js index d634c95..4cf45d1 100644 --- a/bits/75_xlml.js +++ b/bits/75_xlml.js @@ -945,9 +945,9 @@ function write_ws_xlml_wsopts(ws/*:Worksheet*/, opts, idx/*:number*/, wb/*:Workb if(ws['!protect'].selectLockedCells != null && !ws['!protect'].selectLockedCells) o.push(writetag("EnableSelection", "NoSelection")); else if(ws['!protect'].selectUnlockedCells != null && !ws['!protect'].selectUnlockedCells) o.push(writetag("EnableSelection", "UnlockedCells")); [ - [ "formatColumns", "AllowFormatCells" ], - [ "formatRows", "AllowSizeCols" ], - [ "formatCells", "AllowSizeRows" ], + [ "formatCells", "AllowFormatCells" ], + [ "formatColumns", "AllowSizeCols" ], + [ "formatRows", "AllowSizeRows" ], [ "insertColumns", "AllowInsertCols" ], [ "insertRows", "AllowInsertRows" ], [ "insertHyperlinks", "AllowInsertHyperlinks" ], diff --git a/xlsx.flow.js b/xlsx.flow.js index 8251c99..45ca67c 100644 --- a/xlsx.flow.js +++ b/xlsx.flow.js @@ -14345,9 +14345,9 @@ function write_ws_xlml_wsopts(ws/*:Worksheet*/, opts, idx/*:number*/, wb/*:Workb if(ws['!protect'].selectLockedCells != null && !ws['!protect'].selectLockedCells) o.push(writetag("EnableSelection", "NoSelection")); else if(ws['!protect'].selectUnlockedCells != null && !ws['!protect'].selectUnlockedCells) o.push(writetag("EnableSelection", "UnlockedCells")); [ - [ "formatColumns", "AllowFormatCells" ], - [ "formatRows", "AllowSizeCols" ], - [ "formatCells", "AllowSizeRows" ], + [ "formatCells", "AllowFormatCells" ], + [ "formatColumns", "AllowSizeCols" ], + [ "formatRows", "AllowSizeRows" ], [ "insertColumns", "AllowInsertCols" ], [ "insertRows", "AllowInsertRows" ], [ "insertHyperlinks", "AllowInsertHyperlinks" ], diff --git a/xlsx.js b/xlsx.js index 65c0572..f00baae 100644 --- a/xlsx.js +++ b/xlsx.js @@ -14250,9 +14250,9 @@ function write_ws_xlml_wsopts(ws, opts, idx, wb) { if(ws['!protect'].selectLockedCells != null && !ws['!protect'].selectLockedCells) o.push(writetag("EnableSelection", "NoSelection")); else if(ws['!protect'].selectUnlockedCells != null && !ws['!protect'].selectUnlockedCells) o.push(writetag("EnableSelection", "UnlockedCells")); [ - [ "formatColumns", "AllowFormatCells" ], - [ "formatRows", "AllowSizeCols" ], - [ "formatCells", "AllowSizeRows" ], + [ "formatCells", "AllowFormatCells" ], + [ "formatColumns", "AllowSizeCols" ], + [ "formatRows", "AllowSizeRows" ], [ "insertColumns", "AllowInsertCols" ], [ "insertRows", "AllowInsertRows" ], [ "insertHyperlinks", "AllowInsertHyperlinks" ],