@univerjs/sheets 0.1.0-alpha.1 → 0.1.0-alpha.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.
- package/LICENSE.txt +178 -0
- package/lib/cjs/index.js +3 -11383
- package/lib/es/index.js +6319 -0
- package/lib/types/basics/__tests__/rangeMerge.spec.d.ts +16 -0
- package/lib/types/basics/const/command-listener-const.d.ts +15 -1
- package/lib/types/basics/const/default-spreadsheet-plugin-data.d.ts +17 -3
- package/lib/types/basics/const/index.d.ts +15 -1
- package/lib/types/basics/index.d.ts +16 -1
- package/lib/types/basics/interfaces/i-ruler-manager.d.ts +15 -1
- package/lib/types/basics/interfaces/index.d.ts +15 -1
- package/lib/types/basics/interfaces/mutation-interface.d.ts +15 -1
- package/lib/types/basics/interfaces/selection-config.d.ts +15 -1
- package/lib/types/basics/interfaces/spreadsheet-config.d.ts +16 -2
- package/lib/types/basics/rangeMerge.d.ts +24 -0
- package/lib/types/basics/selection.d.ts +15 -1
- package/lib/types/basics/sheet-header.d.ts +15 -1
- package/lib/types/basics/utils.d.ts +17 -0
- package/lib/types/commands/commands/__tests__/clear-selection.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/copy-worksheet.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/create-command-test-bed.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/delete-range.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/insert-range.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/insert-remove-rows-cols.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/move-range-commands.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/move-rows-cols.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/remove-sheet.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-border.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-col-width.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-range-values.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-row-col-visible.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-row-height.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-style.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-tab-color.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-hide.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-name.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-order.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-show.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/add-worksheet-merge.command.d.ts +15 -8
- package/lib/types/commands/commands/clear-selection-all.command.d.ts +15 -1
- package/lib/types/commands/commands/clear-selection-content.command.d.ts +15 -1
- package/lib/types/commands/commands/clear-selection-format.command.d.ts +15 -1
- package/lib/types/commands/commands/copy-to-worksheet.command.d.ts +15 -1
- package/lib/types/commands/commands/copy-worksheet.command.d.ts +15 -1
- package/lib/types/commands/commands/delete-range-move-left.command.d.ts +15 -1
- package/lib/types/commands/commands/delete-range-move-up.command.d.ts +15 -1
- package/lib/types/commands/commands/insert-range-move-down.command.d.ts +15 -1
- package/lib/types/commands/commands/insert-range-move-right.command.d.ts +15 -1
- package/lib/types/commands/commands/insert-row-col.command.d.ts +15 -1
- package/lib/types/commands/commands/insert-sheet.command.d.ts +15 -1
- package/lib/types/commands/commands/move-range.command.d.ts +15 -1
- package/lib/types/commands/commands/move-rows-cols.command.d.ts +15 -1
- package/lib/types/commands/commands/remove-row-col.command.d.ts +15 -1
- package/lib/types/commands/commands/remove-sheet.command.d.ts +15 -1
- package/lib/types/commands/commands/remove-worksheet-merge.command.d.ts +15 -1
- package/lib/types/commands/commands/set-border-command.d.ts +15 -1
- package/lib/types/commands/commands/set-col-visible.command.d.ts +15 -1
- package/lib/types/commands/commands/set-frozen-cancel.command.d.ts +15 -1
- package/lib/types/commands/commands/set-frozen.command.d.ts +15 -1
- package/lib/types/commands/commands/set-hide-gridlines.command.d.ts +15 -1
- package/lib/types/commands/commands/set-range-values.command.d.ts +15 -1
- package/lib/types/commands/commands/set-row-visible.command.d.ts +15 -1
- package/lib/types/commands/commands/set-style.command.d.ts +15 -1
- package/lib/types/commands/commands/set-tab-color.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-activate.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-col-width.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-hide.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-name.command.d.ts +16 -2
- package/lib/types/commands/commands/set-worksheet-order.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-right-to-left.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-row-height.command.d.ts +15 -1
- package/lib/types/commands/commands/set-worksheet-show.command.d.ts +15 -1
- package/lib/types/commands/commands/utils/merged-cell-util.d.ts +15 -1
- package/lib/types/commands/commands/utils/selection-util.d.ts +15 -1
- package/lib/types/commands/mutations/add-worksheet-merge.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/delete-range.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/insert-range.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/insert-row-col.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/insert-sheet.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/move-range.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/move-rows-cols.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/numfmt-mutation.d.ts +52 -0
- package/lib/types/commands/mutations/remove-row-col.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/remove-sheet.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/remove-worksheet-merge.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-col-visible.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-frozen.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts +15 -1
- package/lib/types/commands/mutations/set-range-values.mutation.d.ts +15 -5
- package/lib/types/commands/mutations/set-row-visible.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-tab-color.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-config.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-hide.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-name.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-order.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-right-to-left.mutation.d.ts +15 -1
- package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts +15 -1
- package/lib/types/commands/operations/selection.operation.d.ts +17 -1
- package/lib/types/commands/operations/set-worksheet-active.operation.d.ts +21 -0
- package/lib/types/commands/utils/interface.d.ts +15 -1
- package/lib/types/controllers/__tests__/util.d.ts +15 -1
- package/lib/types/controllers/basic-worksheet.controller.d.ts +15 -1
- package/lib/types/controllers/calculate-result-apply.controller.d.ts +22 -0
- package/lib/types/controllers/config/config.d.ts +15 -1
- package/lib/types/controllers/feature-calculation.controller.d.ts +25 -0
- package/lib/types/controllers/merge-cell.controller.d.ts +24 -2
- package/lib/types/index.d.ts +25 -9
- package/lib/types/locale/en-US.d.ts +15 -1
- package/lib/types/locale/index.d.ts +15 -1
- package/lib/types/locale/zh-CN.d.ts +15 -1
- package/lib/types/services/__tests__/numfmt.service.test.d.ts +16 -0
- package/lib/types/services/__tests__/ref-range.setvice.spec.d.ts +15 -1
- package/lib/types/services/__tests__/sheet-permission.spec.d.ts +15 -1
- package/lib/types/services/__tests__/util.d.ts +15 -1
- package/lib/types/services/border-style-manager.service.d.ts +15 -1
- package/lib/types/services/numfmt/numfmt.service.d.ts +19 -5
- package/lib/types/services/numfmt/type.d.ts +20 -6
- package/lib/types/services/permission/index.d.ts +15 -1
- package/lib/types/services/permission/permission-point.d.ts +15 -1
- package/lib/types/services/permission/sheet-permission.service.d.ts +15 -1
- package/lib/types/services/ref-range/__tests__/util.d.ts +15 -1
- package/lib/types/services/ref-range/__tests__/util.spec.d.ts +15 -1
- package/lib/types/services/ref-range/ref-range.service.d.ts +22 -25
- package/lib/types/services/ref-range/type.d.ts +15 -1
- package/lib/types/services/ref-range/util.d.ts +15 -1
- package/lib/types/services/selection-manager.service.d.ts +34 -8
- package/lib/types/services/sheet-interceptor/__tests__/create-core-test-bed.d.ts +15 -1
- package/lib/types/services/sheet-interceptor/__tests__/sheet-interceptor.service.spec.d.ts +15 -1
- package/lib/types/services/sheet-interceptor/interceptor-const.d.ts +17 -3
- package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts +15 -1
- package/lib/types/services/sheet-interceptor/utils/interceptor.d.ts +15 -1
- package/lib/types/sheets-plugin.d.ts +21 -3
- package/lib/umd/index.js +3 -0
- package/package.json +26 -23
- package/LICENSE +0 -21
- package/lib/cjs/locale/en-US.js +0 -26
- package/lib/cjs/locale/zh-CN.js +0 -26
- package/lib/esm/index.js +0 -10934
- package/lib/esm/locale/en-US.js +0 -5
- package/lib/esm/locale/zh-CN.js +0 -5
- package/lib/types/basics/const/command-listener-const.d.ts.map +0 -1
- package/lib/types/basics/const/default-spreadsheet-plugin-data.d.ts.map +0 -1
- package/lib/types/basics/const/index.d.ts.map +0 -1
- package/lib/types/basics/get-apply-data.d.ts +0 -1
- package/lib/types/basics/get-apply-data.d.ts.map +0 -1
- package/lib/types/basics/index.d.ts.map +0 -1
- package/lib/types/basics/interfaces/i-ruler-manager.d.ts.map +0 -1
- package/lib/types/basics/interfaces/index.d.ts.map +0 -1
- package/lib/types/basics/interfaces/mutation-interface.d.ts.map +0 -1
- package/lib/types/basics/interfaces/selection-config.d.ts.map +0 -1
- package/lib/types/basics/interfaces/spreadsheet-config.d.ts.map +0 -1
- package/lib/types/basics/selection.d.ts.map +0 -1
- package/lib/types/basics/sheet-header.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/add-worksheet-merge.command.spec.d.ts +0 -2
- package/lib/types/commands/commands/__tests__/add-worksheet-merge.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/clear-selection.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/copy-worksheet.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/create-command-test-bed.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/delete-range.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/insert-range.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/insert-remove-rows-cols.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/move-range-commands.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/move-rows-cols.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/remove-sheet.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-border.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-col-width.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-range-values.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-row-col-visible.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-row-height.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-style.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-tab-color.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-hide.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-name.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-order.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-worksheet-show.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/add-worksheet-merge.command.d.ts.map +0 -1
- package/lib/types/commands/commands/clear-selection-all.command.d.ts.map +0 -1
- package/lib/types/commands/commands/clear-selection-content.command.d.ts.map +0 -1
- package/lib/types/commands/commands/clear-selection-format.command.d.ts.map +0 -1
- package/lib/types/commands/commands/copy-to-worksheet.command.d.ts.map +0 -1
- package/lib/types/commands/commands/copy-worksheet.command.d.ts.map +0 -1
- package/lib/types/commands/commands/delete-range-move-left.command.d.ts.map +0 -1
- package/lib/types/commands/commands/delete-range-move-up.command.d.ts.map +0 -1
- package/lib/types/commands/commands/insert-range-move-down.command.d.ts.map +0 -1
- package/lib/types/commands/commands/insert-range-move-right.command.d.ts.map +0 -1
- package/lib/types/commands/commands/insert-row-col.command.d.ts.map +0 -1
- package/lib/types/commands/commands/insert-sheet.command.d.ts.map +0 -1
- package/lib/types/commands/commands/move-range.command.d.ts.map +0 -1
- package/lib/types/commands/commands/move-rows-cols.command.d.ts.map +0 -1
- package/lib/types/commands/commands/remove-row-col.command.d.ts.map +0 -1
- package/lib/types/commands/commands/remove-sheet.command.d.ts.map +0 -1
- package/lib/types/commands/commands/remove-worksheet-merge.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-border-command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-col-visible.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-frozen-cancel.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-frozen.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-hide-gridlines.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-range-values.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-row-visible.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-style.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-tab-color.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-activate.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-col-width.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-hide.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-name.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-order.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-right-to-left.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-row-height.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-worksheet-show.command.d.ts.map +0 -1
- package/lib/types/commands/commands/utils/merged-cell-util.d.ts.map +0 -1
- package/lib/types/commands/commands/utils/selection-util.d.ts.map +0 -1
- package/lib/types/commands/mutations/add-worksheet-merge.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/delete-range.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/insert-range.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/insert-row-col.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/insert-sheet.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/move-range.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/move-rows-cols.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/remove-row-col.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/remove-sheet.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/remove-worksheet-merge.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-col-visible.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-frozen.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-numfmt-mutation.d.ts +0 -16
- package/lib/types/commands/mutations/set-numfmt-mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-range-formatted-value.mutation.d.ts +0 -18
- package/lib/types/commands/mutations/set-range-formatted-value.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-range-values.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-row-visible.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-tab-color.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-activate.mutation.d.ts +0 -9
- package/lib/types/commands/mutations/set-worksheet-activate.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-config.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-hide.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-name.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-order.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-right-to-left.mutation.d.ts.map +0 -1
- package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts.map +0 -1
- package/lib/types/commands/operations/selection.operation.d.ts.map +0 -1
- package/lib/types/commands/utils/interface.d.ts.map +0 -1
- package/lib/types/controllers/__tests__/util.d.ts.map +0 -1
- package/lib/types/controllers/basic-worksheet.controller.d.ts.map +0 -1
- package/lib/types/controllers/config/config.d.ts.map +0 -1
- package/lib/types/controllers/merge-cell.controller.d.ts.map +0 -1
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/locale/en-US.d.ts.map +0 -1
- package/lib/types/locale/index.d.ts.map +0 -1
- package/lib/types/locale/zh-CN.d.ts.map +0 -1
- package/lib/types/services/__tests__/ref-range.setvice.spec.d.ts.map +0 -1
- package/lib/types/services/__tests__/sheet-permission.spec.d.ts.map +0 -1
- package/lib/types/services/__tests__/util.d.ts.map +0 -1
- package/lib/types/services/border-style-manager.service.d.ts.map +0 -1
- package/lib/types/services/numfmt/numfmt.service.d.ts.map +0 -1
- package/lib/types/services/numfmt/type.d.ts.map +0 -1
- package/lib/types/services/permission/index.d.ts.map +0 -1
- package/lib/types/services/permission/permission-point.d.ts.map +0 -1
- package/lib/types/services/permission/sheet-permission.service.d.ts.map +0 -1
- package/lib/types/services/ref-range/__tests__/util.d.ts.map +0 -1
- package/lib/types/services/ref-range/__tests__/util.spec.d.ts.map +0 -1
- package/lib/types/services/ref-range/ref-range.service.d.ts.map +0 -1
- package/lib/types/services/ref-range/type.d.ts.map +0 -1
- package/lib/types/services/ref-range/util.d.ts.map +0 -1
- package/lib/types/services/selection-manager.service.d.ts.map +0 -1
- package/lib/types/services/sheet-interceptor/__tests__/create-core-test-bed.d.ts.map +0 -1
- package/lib/types/services/sheet-interceptor/__tests__/sheet-interceptor.service.spec.d.ts.map +0 -1
- package/lib/types/services/sheet-interceptor/interceptor-const.d.ts.map +0 -1
- package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts.map +0 -1
- package/lib/types/services/sheet-interceptor/utils/interceptor.d.ts.map +0 -1
- package/lib/types/sheets-plugin.d.ts.map +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export declare const COMMAND_LISTENER_SKELETON_CHANGE: string[];
|
|
2
17
|
export declare const COMMAND_LISTENER_VALUE_CHANGE: string[];
|
|
3
|
-
//# sourceMappingURL=command-listener-const.d.ts.map
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { IUniverSheetsConfig } from '../interfaces/spreadsheet-config';
|
|
17
|
+
export declare const DEFAULT_SPREADSHEET_PLUGIN_DATA: IUniverSheetsConfig;
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export * from './command-listener-const';
|
|
2
17
|
export * from './default-spreadsheet-plugin-data';
|
|
3
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,4 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export * from './const/index';
|
|
2
17
|
export * from './interfaces/index';
|
|
3
18
|
export * from './selection';
|
|
4
|
-
|
|
19
|
+
export { createUniqueKey, groupByKey } from './utils';
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { BooleanNumber } from '@univerjs/core';
|
|
2
17
|
/**
|
|
3
18
|
* Column ruler data type
|
|
@@ -5,4 +20,3 @@ import type { BooleanNumber } from '@univerjs/core';
|
|
|
5
20
|
export interface IColumnRulerData {
|
|
6
21
|
hd: BooleanNumber;
|
|
7
22
|
}
|
|
8
|
-
//# sourceMappingURL=i-ruler-manager.d.ts.map
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export * from './mutation-interface';
|
|
2
17
|
export * from './selection-config';
|
|
3
18
|
export * from './spreadsheet-config';
|
|
4
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { Dimension, ICellData, IColumnData, IRange, IRowData, IWorksheetData, ObjectArray, ObjectMatrixPrimitiveType } from '@univerjs/core';
|
|
2
17
|
/** Params of `RemoveSheetMutation` */
|
|
3
18
|
export interface IRemoveSheetMutationParams {
|
|
@@ -63,4 +78,3 @@ export interface IAddWorksheetMergeMutationParams {
|
|
|
63
78
|
worksheetId: string;
|
|
64
79
|
ranges: IRange[];
|
|
65
80
|
}
|
|
66
|
-
//# sourceMappingURL=mutation-interface.d.ts.map
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { IRange, IRangeCellData } from '@univerjs/core';
|
|
2
17
|
export interface ISelectionConfig {
|
|
3
18
|
selection: IRange;
|
|
@@ -6,4 +21,3 @@ export interface ISelectionConfig {
|
|
|
6
21
|
export interface ISelectionsConfig {
|
|
7
22
|
[worksheetId: string]: ISelectionConfig[];
|
|
8
23
|
}
|
|
9
|
-
//# sourceMappingURL=selection-config.d.ts.map
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { ISelectionsConfig } from './selection-config';
|
|
2
|
-
export interface
|
|
17
|
+
export interface IUniverSheetsConfig {
|
|
3
18
|
selections: ISelectionsConfig;
|
|
4
19
|
}
|
|
5
|
-
//# sourceMappingURL=spreadsheet-config.d.ts.map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { IRange } from '@univerjs/core';
|
|
17
|
+
/**
|
|
18
|
+
* Some operations generate sparse ranges such as paste/autofill/ref-range, and this function merge some small ranges into some large ranges to reduce transmission size.
|
|
19
|
+
* Time Complexity: O(mn) , where m and n are rows and columns. It takes O(mn) to compute the markMatrix and O(n) to apply the histogram algorithm to each column.
|
|
20
|
+
* ps. column sparse matrices have better performance
|
|
21
|
+
* @param {IRange[]} ranges
|
|
22
|
+
* @returns {IRange[]}
|
|
23
|
+
*/
|
|
24
|
+
export declare const rangeMerge: (ranges: IRange[]) => IRange[];
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { IRange, ISelection, ISelectionCellWithCoord, ISelectionWithCoord, Nullable, ThemeService } from '@univerjs/core';
|
|
2
17
|
export declare const SELECTION_CONTROL_BORDER_BUFFER_WIDTH = 1;
|
|
3
18
|
export declare const SELECTION_CONTROL_BORDER_BUFFER_COLOR = "rgba(255,255,255, 0.01)";
|
|
@@ -133,4 +148,3 @@ export declare function convertPrimaryWithCoordToPrimary(primaryWithCoord: ISele
|
|
|
133
148
|
* @returns ISelectionWithStyle
|
|
134
149
|
*/
|
|
135
150
|
export declare function transformCellDataToSelectionData(row: number, column: number, mergeData: IRange[]): Nullable<ISelectionWithStyle>;
|
|
136
|
-
//# sourceMappingURL=selection.d.ts.map
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { Worksheet } from '@univerjs/core';
|
|
2
17
|
export declare function rowHeightByHeader(worksheet: Worksheet): number;
|
|
3
18
|
export declare function columnWidthByHeader(worksheet: Worksheet): number;
|
|
4
|
-
//# sourceMappingURL=sheet-header.d.ts.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare const groupByKey: <T = Record<string, unknown>>(arr: T[], key: string, blankKey?: string) => Record<string, T[]>;
|
|
17
|
+
export declare const createUniqueKey: (initValue?: number) => () => number;
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=clear-selection.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=copy-worksheet.command.spec.d.ts.map
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { IWorkbookData, Workbook } from '@univerjs/core';
|
|
2
17
|
import { Univer } from '@univerjs/core';
|
|
3
18
|
import type { Dependency } from '@wendellhu/redi';
|
|
@@ -8,4 +23,3 @@ export interface ITestBed {
|
|
|
8
23
|
sheet: Workbook;
|
|
9
24
|
}
|
|
10
25
|
export declare function createCommandTestBed(workbookConfig?: IWorkbookData, dependencies?: Dependency[]): ITestBed;
|
|
11
|
-
//# sourceMappingURL=create-command-test-bed.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=delete-range.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=insert-range.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=insert-remove-rows-cols.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=move-range-commands.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=move-rows-cols.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=remove-sheet.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-border.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-col-width.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-frozen.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-range-values.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-row-col-visible.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-row-height.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-style.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-tab-color.command.spec.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export {};
|
|
2
|
-
//# sourceMappingURL=set-worksheet-hide.command.spec.d.ts.map
|