@a3s-lab/office 0.37.3 → 0.37.5
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/README.md +8 -1
- package/dist/0~spreadsheet-editor.js +5521 -5100
- package/dist/5416.js +84 -45
- package/dist/core.js +56 -10
- package/dist/internal/features/work/editors/spreadsheet-auto-filter-menu.d.ts +2 -2
- package/dist/internal/features/work/editors/spreadsheet-auto-filter.d.ts +3 -3
- package/dist/internal/features/work/editors/spreadsheet-date-time-command.d.ts +2 -1
- package/dist/internal/features/work/editors/spreadsheet-editor-support.d.ts +2 -2
- package/dist/internal/features/work/editors/spreadsheet-filter-reconciliation.d.ts +7 -0
- package/dist/internal/features/work/editors/spreadsheet-sort-options-dialog.d.ts +2 -1
- package/dist/internal/features/work/editors/spreadsheet-sort.d.ts +23 -1
- package/dist/internal/features/work/work-spreadsheet-auto-filter.d.ts +3 -0
- package/dist/internal/features/work/work-spreadsheet-dynamic-filter.d.ts +3 -2
- package/dist/internal/features/work/work-types.d.ts +3 -0
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +7 -0
- package/docs/latest/en/browser-editor-architecture.md +28 -9
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -309,9 +309,16 @@ and [CLI reference](./docs/latest/en/cli-reference.md).
|
|
|
309
309
|
|
|
310
310
|
## Current release
|
|
311
311
|
|
|
312
|
-
Version `0.37.
|
|
312
|
+
Version `0.37.5` keeps the release surface focused on local, testable
|
|
313
313
|
workflows:
|
|
314
314
|
|
|
315
|
+
- Spreadsheet XLSX import/export now retains the workbook's native 1900 or
|
|
316
|
+
1904 date system, exact typed date serials, dynamic date filters, and
|
|
317
|
+
epoch-correct current-date authoring across controlled and collaborative
|
|
318
|
+
reopen flows.
|
|
319
|
+
- Spreadsheet Custom Sort now recognizes native table and AutoFilter-owned
|
|
320
|
+
ranges, keeps headers and totals structurally safe, and reapplies active
|
|
321
|
+
filter visibility after one formula-safe, undoable sort.
|
|
315
322
|
- Spreadsheet Custom Sort now includes a responsive, keyboard-accessible
|
|
316
323
|
preference manager for creating, editing, deleting, and reordering bounded
|
|
317
324
|
user sequences while keeping the seven built-in sequences read-only.
|