@progress/kendo-spreadsheet-common 1.0.0-develop.12 → 1.0.0-develop.13
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/dist/index-esm.js +11 -0
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index-esm.js
CHANGED
|
@@ -23994,6 +23994,16 @@ class PropertyChangeCommand extends Command {
|
|
|
23994
23994
|
}
|
|
23995
23995
|
}
|
|
23996
23996
|
|
|
23997
|
+
class PropertyCleanCommand extends PropertyChangeCommand {
|
|
23998
|
+
exec() {
|
|
23999
|
+
let range = this.range();
|
|
24000
|
+
if (range.enable()) {
|
|
24001
|
+
this.getState();
|
|
24002
|
+
range.clearFormat();
|
|
24003
|
+
}
|
|
24004
|
+
}
|
|
24005
|
+
}
|
|
24006
|
+
|
|
23997
24007
|
class ClearContentCommand extends Command {
|
|
23998
24008
|
exec() {
|
|
23999
24009
|
let values = [], range, rowValues, nullValues, validationState, currentRange;
|
|
@@ -25095,6 +25105,7 @@ var commands = /*#__PURE__*/Object.freeze({
|
|
|
25095
25105
|
OpenCommand: OpenCommand,
|
|
25096
25106
|
PasteCommand: PasteCommand,
|
|
25097
25107
|
PropertyChangeCommand: PropertyChangeCommand,
|
|
25108
|
+
PropertyCleanCommand: PropertyCleanCommand,
|
|
25098
25109
|
ReorderDrawingsCommand: ReorderDrawingsCommand,
|
|
25099
25110
|
RowHeightCommand: RowHeightCommand,
|
|
25100
25111
|
SaveAsCommand: SaveAsCommand,
|
package/dist/index.js
CHANGED
|
@@ -23995,6 +23995,16 @@
|
|
|
23995
23995
|
}
|
|
23996
23996
|
}
|
|
23997
23997
|
|
|
23998
|
+
class PropertyCleanCommand extends PropertyChangeCommand {
|
|
23999
|
+
exec() {
|
|
24000
|
+
let range = this.range();
|
|
24001
|
+
if (range.enable()) {
|
|
24002
|
+
this.getState();
|
|
24003
|
+
range.clearFormat();
|
|
24004
|
+
}
|
|
24005
|
+
}
|
|
24006
|
+
}
|
|
24007
|
+
|
|
23998
24008
|
class ClearContentCommand extends Command {
|
|
23999
24009
|
exec() {
|
|
24000
24010
|
let values = [], range, rowValues, nullValues, validationState, currentRange;
|
|
@@ -25096,6 +25106,7 @@
|
|
|
25096
25106
|
OpenCommand: OpenCommand,
|
|
25097
25107
|
PasteCommand: PasteCommand,
|
|
25098
25108
|
PropertyChangeCommand: PropertyChangeCommand,
|
|
25109
|
+
PropertyCleanCommand: PropertyCleanCommand,
|
|
25099
25110
|
ReorderDrawingsCommand: ReorderDrawingsCommand,
|
|
25100
25111
|
RowHeightCommand: RowHeightCommand,
|
|
25101
25112
|
SaveAsCommand: SaveAsCommand,
|