@a3s-lab/office 0.39.0 → 0.40.0
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 +9 -2
- package/dist/{0~7240.js → 0~2330.js} +897 -641
- package/dist/0~5024.js +240 -240
- package/dist/0~document-editor.js +1 -0
- package/dist/0~work-docx-export.js +1023 -922
- package/dist/0~work-docx-import.js +13 -4
- package/dist/0~work-office-diagnostics.js +96 -94
- package/dist/4174.js +497 -233
- package/dist/internal/features/work/work-document-format-change-tracking.d.ts +1 -1
- package/dist/internal/features/work/work-document-numbering-change-tracking.d.ts +7 -0
- package/dist/internal/features/work/work-document-numbering-changes.d.ts +29 -0
- package/dist/internal/features/work/work-docx-import.d.ts +7 -5
- package/dist/internal/features/work/work-docx-list-export.d.ts +1 -0
- package/dist/internal/features/work/work-docx-numbering-change-export.d.ts +13 -0
- package/dist/internal/features/work/work-docx-numbering-change-import.d.ts +17 -0
- package/dist/internal/features/work/work-types.d.ts +1 -1
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +13 -0
- package/package.json +8 -5
|
@@ -3,7 +3,7 @@ import type { EditorState, PluginKey, Transaction } from '@tiptap/pm/state';
|
|
|
3
3
|
import type { WorkDocumentChangeIdentity } from './work-document-changes';
|
|
4
4
|
interface DocumentFormattingChangeTrackingOptions {
|
|
5
5
|
isTracking: () => boolean;
|
|
6
|
-
createChange: (kind: 'formatting' | 'paragraph-formatting') => WorkDocumentChangeIdentity;
|
|
6
|
+
createChange: (kind: 'formatting' | 'paragraph-formatting' | 'numbering') => WorkDocumentChangeIdentity;
|
|
7
7
|
}
|
|
8
8
|
export declare function trackDocumentFormattingTransaction(transaction: Transaction, state: EditorState, type: ProseMirrorMark['type'], options: DocumentFormattingChangeTrackingOptions, pluginKey: PluginKey): void;
|
|
9
9
|
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { EditorState, Transaction } from '@tiptap/pm/state';
|
|
2
|
+
import type { WorkDocumentChangeIdentity } from './work-document-changes';
|
|
3
|
+
interface DocumentNumberingChangeTrackingOptions {
|
|
4
|
+
createChange: () => WorkDocumentChangeIdentity;
|
|
5
|
+
}
|
|
6
|
+
export declare function trackDocumentNumberingChangeTransaction(transaction: Transaction, state: EditorState, options: DocumentNumberingChangeTrackingOptions): boolean;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export type DocumentNumberingChangeType = 'a' | 'A' | 'i' | 'I' | null;
|
|
2
|
+
export interface DocumentNumberingChangeSnapshot {
|
|
3
|
+
start: number;
|
|
4
|
+
type: DocumentNumberingChangeType;
|
|
5
|
+
officeNumberingId: string | null;
|
|
6
|
+
officeAbstractNumberingId: string | null;
|
|
7
|
+
officeNumberingLevel: string | null;
|
|
8
|
+
officeNumberingFormat: string | null;
|
|
9
|
+
officeNumberingText: string | null;
|
|
10
|
+
officeNumberingSuffix: string | null;
|
|
11
|
+
officeNumberingAlignment: string | null;
|
|
12
|
+
officeNumberingIndentLeft: string | null;
|
|
13
|
+
officeNumberingIndentRight: string | null;
|
|
14
|
+
officeNumberingIndentStart: string | null;
|
|
15
|
+
officeNumberingIndentEnd: string | null;
|
|
16
|
+
officeNumberingIndentHanging: string | null;
|
|
17
|
+
officeNumberingIndentFirstLine: string | null;
|
|
18
|
+
officeNumberingRestartAfterLevel: string | null;
|
|
19
|
+
level: number;
|
|
20
|
+
originalFormat: number;
|
|
21
|
+
originalSuffix: string;
|
|
22
|
+
}
|
|
23
|
+
export declare const DOCUMENT_NUMBERING_CHANGE_ATTRIBUTES: readonly ["numberingChangeKind", "numberingChangeId", "numberingChangeActorId", "numberingChangeAuthor", "numberingChangeDate", "numberingChangeBefore"];
|
|
24
|
+
export declare function serializeDocumentNumberingChange(attributes: Record<string, unknown>): string;
|
|
25
|
+
export declare function parseDocumentNumberingChange(value: unknown): DocumentNumberingChangeSnapshot | null;
|
|
26
|
+
export declare function restoredDocumentNumberingAttributes(attributes: Record<string, unknown>, serialized: unknown): Record<string, unknown> | null;
|
|
27
|
+
export declare function clearDocumentNumberingChangeAttributes(attributes: Record<string, unknown>): Record<string, unknown>;
|
|
28
|
+
export declare function numberingFormatFromType(type: DocumentNumberingChangeType): number;
|
|
29
|
+
export declare function numberingTypeFromFormat(format: number): DocumentNumberingChangeType | undefined;
|
|
@@ -5,22 +5,23 @@ import { type ImportedDocxCitationMarkers } from './work-docx-citation-import';
|
|
|
5
5
|
import { type ImportedDocxCommentMarkers } from './work-docx-comment-import';
|
|
6
6
|
import { type ImportedDocxEquationMarkers } from './work-docx-equation-import';
|
|
7
7
|
import { type ImportedDocxFieldMarkers } from './work-docx-field-import';
|
|
8
|
-
import { type ImportedDocxIndexMarkers } from './work-docx-index-import';
|
|
9
|
-
import { type ImportedDocxTableOfContentsMarkers } from './work-docx-table-of-contents-import';
|
|
10
8
|
import { type ImportedDocxImageLayoutMarkers } from './work-docx-image-layout-import';
|
|
9
|
+
import { type ImportedDocxIndexMarkers } from './work-docx-index-import';
|
|
11
10
|
import { type ImportedDocxListMarkers } from './work-docx-list-import';
|
|
11
|
+
import { type ImportedDocxNumberingChangeMarkers } from './work-docx-numbering-change-import';
|
|
12
12
|
import { type ImportedDocxParagraphAlignmentMarkers } from './work-docx-paragraph-alignment-import';
|
|
13
|
+
import { type ImportedDocxParagraphBorderMarkers } from './work-docx-paragraph-borders-import';
|
|
13
14
|
import { type ImportedDocxParagraphDirectionMarkers } from './work-docx-paragraph-direction-import';
|
|
14
|
-
import { type ImportedDocxParagraphIdentityMarkers } from './work-docx-paragraph-identity-import';
|
|
15
15
|
import { type ImportedDocxParagraphFormattingChangeMarkers } from './work-docx-paragraph-format-change-import';
|
|
16
|
+
import { type ImportedDocxParagraphIdentityMarkers } from './work-docx-paragraph-identity-import';
|
|
16
17
|
import { type ImportedDocxParagraphIndentMarkers } from './work-docx-paragraph-indent-import';
|
|
17
18
|
import { type ImportedDocxParagraphPaginationMarkers } from './work-docx-paragraph-pagination-import';
|
|
18
|
-
import { type ImportedDocxParagraphBorderMarkers } from './work-docx-paragraph-borders-import';
|
|
19
19
|
import { type ImportedDocxParagraphShadingMarkers } from './work-docx-paragraph-shading-import';
|
|
20
20
|
import { type ImportedDocxParagraphSpacingMarkers } from './work-docx-paragraph-spacing-import';
|
|
21
21
|
import { type ImportedDocxRunFormattingMarkers } from './work-docx-run-formatting-import';
|
|
22
22
|
import { type ImportedDocxParagraphTabStopMarkers } from './work-docx-tab-stop-import';
|
|
23
23
|
import { type ImportedDocxTableCellMarkers } from './work-docx-table-cell-import';
|
|
24
|
+
import { type ImportedDocxTableOfContentsMarkers } from './work-docx-table-of-contents-import';
|
|
24
25
|
import { type ImportedDocxTableRowMarkers } from './work-docx-table-row-import';
|
|
25
26
|
import { type ImportedDocxTableSizingMarkers } from './work-docx-table-sizing-import';
|
|
26
27
|
import { OoxmlPackage } from './work-ooxml-package';
|
|
@@ -43,6 +44,7 @@ export interface PreparedDocxImport {
|
|
|
43
44
|
equationMarkers: ImportedDocxEquationMarkers;
|
|
44
45
|
citationMarkers: ImportedDocxCitationMarkers;
|
|
45
46
|
listMarkers: ImportedDocxListMarkers;
|
|
47
|
+
numberingChangeMarkers: ImportedDocxNumberingChangeMarkers;
|
|
46
48
|
imageLayoutMarkers: ImportedDocxImageLayoutMarkers;
|
|
47
49
|
paragraphIdentityMarkers: ImportedDocxParagraphIdentityMarkers;
|
|
48
50
|
paragraphFormattingChangeMarkers: ImportedDocxParagraphFormattingChangeMarkers;
|
|
@@ -62,6 +64,6 @@ export interface PreparedDocxImport {
|
|
|
62
64
|
trackChanges: boolean;
|
|
63
65
|
}
|
|
64
66
|
export declare function prepareDocxImport(buffer: ArrayBuffer, sourcePackage?: OoxmlPackage): Promise<PreparedDocxImport>;
|
|
65
|
-
export declare function applyDocxSectionsToHtml(html: string, sections: PreparedDocxImport['sections'], captionMarkers?: ImportedDocxCaptionMarkers, bookmarkMarkers?: ImportedDocxBookmarkMarkers, changeMarkers?: ImportedDocxChangeMarkers, commentMarkers?: ImportedDocxCommentMarkers, fieldMarkers?: ImportedDocxFieldMarkers, tableOfContentsMarkers?: ImportedDocxTableOfContentsMarkers, indexMarkers?: ImportedDocxIndexMarkers, equationMarkers?: ImportedDocxEquationMarkers, citationMarkers?: ImportedDocxCitationMarkers, listMarkers?: ImportedDocxListMarkers, imageLayoutMarkers?: ImportedDocxImageLayoutMarkers, paragraphIdentityMarkers?: ImportedDocxParagraphIdentityMarkers, paragraphFormattingChangeMarkers?: ImportedDocxParagraphFormattingChangeMarkers, paragraphAlignmentMarkers?: ImportedDocxParagraphAlignmentMarkers, runFormattingMarkers?: ImportedDocxRunFormattingMarkers, paragraphDirectionMarkers?: ImportedDocxParagraphDirectionMarkers, paragraphIndentMarkers?: ImportedDocxParagraphIndentMarkers, paragraphSpacingMarkers?: ImportedDocxParagraphSpacingMarkers, paragraphBorderMarkers?: ImportedDocxParagraphBorderMarkers, paragraphShadingMarkers?: ImportedDocxParagraphShadingMarkers, paragraphPaginationMarkers?: ImportedDocxParagraphPaginationMarkers, bibliography?: WorkDocumentContent['bibliography'], tabStopMarkers?: ImportedDocxParagraphTabStopMarkers, tableCellMarkers?: ImportedDocxTableCellMarkers, tableRowMarkers?: ImportedDocxTableRowMarkers, tableSizingMarkers?: ImportedDocxTableSizingMarkers): string;
|
|
67
|
+
export declare function applyDocxSectionsToHtml(html: string, sections: PreparedDocxImport['sections'], captionMarkers?: ImportedDocxCaptionMarkers, bookmarkMarkers?: ImportedDocxBookmarkMarkers, changeMarkers?: ImportedDocxChangeMarkers, commentMarkers?: ImportedDocxCommentMarkers, fieldMarkers?: ImportedDocxFieldMarkers, tableOfContentsMarkers?: ImportedDocxTableOfContentsMarkers, indexMarkers?: ImportedDocxIndexMarkers, equationMarkers?: ImportedDocxEquationMarkers, citationMarkers?: ImportedDocxCitationMarkers, listMarkers?: ImportedDocxListMarkers, numberingChangeMarkers?: ImportedDocxNumberingChangeMarkers, imageLayoutMarkers?: ImportedDocxImageLayoutMarkers, paragraphIdentityMarkers?: ImportedDocxParagraphIdentityMarkers, paragraphFormattingChangeMarkers?: ImportedDocxParagraphFormattingChangeMarkers, paragraphAlignmentMarkers?: ImportedDocxParagraphAlignmentMarkers, runFormattingMarkers?: ImportedDocxRunFormattingMarkers, paragraphDirectionMarkers?: ImportedDocxParagraphDirectionMarkers, paragraphIndentMarkers?: ImportedDocxParagraphIndentMarkers, paragraphSpacingMarkers?: ImportedDocxParagraphSpacingMarkers, paragraphBorderMarkers?: ImportedDocxParagraphBorderMarkers, paragraphShadingMarkers?: ImportedDocxParagraphShadingMarkers, paragraphPaginationMarkers?: ImportedDocxParagraphPaginationMarkers, bibliography?: WorkDocumentContent['bibliography'], tabStopMarkers?: ImportedDocxParagraphTabStopMarkers, tableCellMarkers?: ImportedDocxTableCellMarkers, tableRowMarkers?: ImportedDocxTableRowMarkers, tableSizingMarkers?: ImportedDocxTableSizingMarkers): string;
|
|
66
68
|
export declare function readDocxLayout(buffer: ArrayBuffer): Promise<ImportedDocumentLayout>;
|
|
67
69
|
export {};
|
|
@@ -12,6 +12,7 @@ export interface DocxListExportContext {
|
|
|
12
12
|
numberingSourceIdentities: Array<DocxSourceNumberingIdentity | null>;
|
|
13
13
|
paragraphBorderPatches?: DocxParagraphBorderPatchCollector;
|
|
14
14
|
themePatches?: DocxThemePatchCollector;
|
|
15
|
+
numberingChangeMarker?: (list: HTMLElement, itemIndex: number) => string | null;
|
|
15
16
|
}
|
|
16
17
|
type InlineRuns = (element: HTMLElement) => Promise<ParagraphChild[]>;
|
|
17
18
|
export declare function listToDocxParagraphs(list: HTMLElement, docx: typeof import('docx'), context: DocxListExportContext, inlineRuns: InlineRuns, depth?: number): Promise<Array<InstanceType<typeof docx.Paragraph>>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface DocxNumberingChangePatch {
|
|
2
|
+
marker: string;
|
|
3
|
+
id: number;
|
|
4
|
+
author: string;
|
|
5
|
+
date: string;
|
|
6
|
+
original: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class DocxNumberingChangePatchCollector {
|
|
9
|
+
readonly patches: DocxNumberingChangePatch[];
|
|
10
|
+
register(list: HTMLElement, itemIndex: number, id: number): string | null;
|
|
11
|
+
}
|
|
12
|
+
export declare function patchDocxNumberingChanges(buffer: ArrayBuffer, patches: readonly DocxNumberingChangePatch[]): Promise<ArrayBuffer>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface ImportedDocxNumberingChangeGroup {
|
|
2
|
+
markers: string[];
|
|
3
|
+
id: string;
|
|
4
|
+
author: string;
|
|
5
|
+
date: string;
|
|
6
|
+
start: number;
|
|
7
|
+
level: number;
|
|
8
|
+
format: number;
|
|
9
|
+
suffix: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ImportedDocxNumberingChangeMarkers {
|
|
12
|
+
groups: ImportedDocxNumberingChangeGroup[];
|
|
13
|
+
}
|
|
14
|
+
export declare function markDocxNumberingChanges(document: Document): ImportedDocxNumberingChangeMarkers;
|
|
15
|
+
export declare function applyImportedDocxNumberingChangeMarkers(document: Document, markers: ImportedDocxNumberingChangeMarkers): void;
|
|
16
|
+
export declare function hasImportedDocxNumberingChangeMarkers(markers: ImportedDocxNumberingChangeMarkers): boolean;
|
|
17
|
+
export declare function isSupportedDocxNumberingChange(change: Element): boolean;
|
|
@@ -106,7 +106,7 @@ export interface WorkDocumentContent {
|
|
|
106
106
|
comments?: WorkDocumentComment[];
|
|
107
107
|
bibliography?: WorkDocumentBibliography;
|
|
108
108
|
}
|
|
109
|
-
export type WorkDocumentChangeKind = 'insertion' | 'deletion' | 'formatting' | 'paragraph-formatting';
|
|
109
|
+
export type WorkDocumentChangeKind = 'insertion' | 'deletion' | 'formatting' | 'paragraph-formatting' | 'numbering';
|
|
110
110
|
export type WorkDocumentChangeDecisionAction = 'accept' | 'reject';
|
|
111
111
|
/**
|
|
112
112
|
* Immutable audit record created when an editor accepts or rejects one
|
package/dist/office-kernel.wasm
CHANGED
|
Binary file
|
package/dist/styles.css
CHANGED
|
@@ -9191,6 +9191,10 @@ button.work-office-collaboration-participant:hover .work-office-collaboration-lo
|
|
|
9191
9191
|
border-left-color: #6d5bd0;
|
|
9192
9192
|
}
|
|
9193
9193
|
|
|
9194
|
+
.work-document-change-item.numbering {
|
|
9195
|
+
border-left-color: #0f7b78;
|
|
9196
|
+
}
|
|
9197
|
+
|
|
9194
9198
|
.work-document-change-summary {
|
|
9195
9199
|
min-width: 0;
|
|
9196
9200
|
color: var(--a3s-ink);
|
|
@@ -9222,6 +9226,11 @@ button.work-office-collaboration-participant:hover .work-office-collaboration-lo
|
|
|
9222
9226
|
background: #f0edff;
|
|
9223
9227
|
}
|
|
9224
9228
|
|
|
9229
|
+
.work-document-change-list .work-document-change-item.numbering .work-document-change-summary > span {
|
|
9230
|
+
color: #0f6663;
|
|
9231
|
+
background: #e5f5f3;
|
|
9232
|
+
}
|
|
9233
|
+
|
|
9225
9234
|
.work-document-change-summary strong {
|
|
9226
9235
|
text-overflow: ellipsis;
|
|
9227
9236
|
white-space: nowrap;
|
|
@@ -9730,6 +9739,10 @@ button.work-office-collaboration-participant:hover .work-office-collaboration-lo
|
|
|
9730
9739
|
box-shadow: inset 3px 0 #8b5cf6;
|
|
9731
9740
|
}
|
|
9732
9741
|
|
|
9742
|
+
.work-document-editor ol[data-document-change][data-change-kind="numbering"], .work-pdf-export-page.document ol[data-document-change][data-change-kind="numbering"] {
|
|
9743
|
+
box-shadow: inset 3px 0 #0f7b78;
|
|
9744
|
+
}
|
|
9745
|
+
|
|
9733
9746
|
.work-document-font-dialog {
|
|
9734
9747
|
width: min(680px, 100%);
|
|
9735
9748
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a3s-lab/office",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.0",
|
|
4
4
|
"description": "Open-source collaborative browser editors for documents, Markdown, spreadsheets, presentations, and PDFs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"office",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"playground:ime:webkit": "playwright test --config playwright.ime.config.ts",
|
|
90
90
|
"playground:visual": "playwright test --config playwright.config.ts",
|
|
91
91
|
"playground:visual:docs-changelog": "playwright test visual-tests/docs-changelog.functional.spec.ts --config playwright.config.ts",
|
|
92
|
+
"playground:visual:home": "playwright test visual-tests/playground-home.functional.spec.ts --config playwright.config.ts",
|
|
92
93
|
"playground:visual:document-emphasis": "playwright test visual-tests/document-emphasis.functional.spec.ts --config playwright.config.ts",
|
|
93
94
|
"playground:visual:document-index": "playwright test visual-tests/document-index.functional.spec.ts --config playwright.config.ts",
|
|
94
95
|
"playground:visual:document-comparison": "playwright test visual-tests/document-comparison.functional.spec.ts --config playwright.config.ts",
|
|
@@ -136,9 +137,11 @@
|
|
|
136
137
|
"performance:pdf": "bun .a3s-test/performance/generate-fixtures.ts --pdf-only && bun .a3s-test/performance/benchmark-pdf.ts --url http://127.0.0.1:4175/playground/ --runs 3 --timeout-ms 120000",
|
|
137
138
|
"performance:presentation": "bun .a3s-test/performance/generate-fixtures.ts --presentations-only && bun .a3s-test/performance/benchmark-presentation.ts --url http://127.0.0.1:4175/playground/ --runs 3 --timeout-ms 120000 --modes default,content-visibility",
|
|
138
139
|
"test": "rstest",
|
|
139
|
-
"test:e2e": "bun run test:e2e:fixtures && a3s-test run tests/e2e/word-page-color.acl --json && a3s-test run tests/e2e/word-page-setup-phone.acl --json && a3s-test run tests/e2e/word-paragraph-layout-phone.acl --json && a3s-test run tests/e2e/word-list-formatting-phone.acl --json && a3s-test run tests/e2e/word-font-picker-phone.acl --json && a3s-test run tests/e2e/word-comments-drawer.acl --json && a3s-test run tests/e2e/word-comment-windowing.acl --json && a3s-test run tests/e2e/word-citations-phone.acl --json && a3s-test run tests/e2e/word-navigation-search.acl --json && a3s-test run tests/e2e/word-navigation-windowing.acl --json && a3s-test run tests/e2e/word-find-replace-phone.acl --json && a3s-test run tests/e2e/word-page-navigation.acl --json && a3s-test run tests/e2e/word-page-windowing.acl --json && a3s-test run tests/e2e/word-ai-question.acl --json && a3s-test run tests/e2e/word-picture-insert.acl --json && a3s-test run tests/e2e/word-picture-alt-text-phone.acl --json && a3s-test run tests/e2e/word-track-changes-phone.acl --json && a3s-test run tests/e2e/word-formatting-revision.acl --json && a3s-test run tests/e2e/word-paragraph-formatting-revision.acl --json && a3s-test run tests/e2e/word-document-comparison.acl --json && a3s-test run tests/e2e/word-review-conflict-phone.acl --json && a3s-test run tests/e2e/word-revision-windowing.acl --json && a3s-test run tests/e2e/word-table-phone.acl --json && a3s-test run tests/e2e/word-table-borders.acl --json && a3s-test run tests/e2e/word-theme-table.acl --json && a3s-test run tests/e2e/word-styled-table.acl --json && a3s-test run tests/e2e/word-multi-page-table.acl --json && a3s-test run tests/e2e/word-cross-reference-phone.acl --json && a3s-test run tests/e2e/word-bookmark-links-phone.acl --json && a3s-test run tests/e2e/word-notes-phone.acl --json && a3s-test run tests/e2e/word-fields-phone.acl --json && a3s-test run tests/e2e/spreadsheet-phone-rename.acl --json && a3s-test run tests/e2e/spreadsheet-phone-find.acl --json && a3s-test run tests/e2e/spreadsheet-phone-context-menu.acl --json && a3s-test run tests/e2e/spreadsheet-phone-task-pane.acl --json && a3s-test run tests/e2e/spreadsheet-maximum-sparse.acl --json && a3s-test run tests/e2e/spreadsheet-cell-style.acl --json && a3s-test run tests/e2e/spreadsheet-paste-special.acl --json && a3s-test run tests/e2e/spreadsheet-hyperlink.acl --json && a3s-test run tests/e2e/presentation-cut-paste-focus.acl --json && a3s-test run tests/e2e/presentation-presenter-view.acl --json && a3s-test run tests/e2e/presentation-phone-chart-pane.acl --json && a3s-test run tests/e2e/presentation-phone-comments.acl --json && a3s-test run tests/e2e/pdf-thumbnail-keyboard.acl --json && a3s-test run tests/e2e/pdf-page-drawer-phone.acl --json && a3s-test run tests/e2e/markdown-phone-modes.acl --json && a3s-test run tests/e2e/office-sidebar-breakpoint.acl --json && a3s-test run tests/e2e/office-docs-navigation.acl --json && a3s-test run tests/e2e/collaboration-playground-entry.acl --json && a3s-test run tests/e2e/collaboration-document-comments.acl --command-timeout-ms 120000 --json && a3s-test run tests/e2e/collaboration-document-suggestions.acl --command-timeout-ms 120000 --json && a3s-test run tests/e2e/collaboration-participants.acl --json && a3s-test run tests/e2e/collaboration-pdf-annotations.acl --json && a3s-test run tests/e2e/collaboration-spreadsheet-cells.acl --json && a3s-test run tests/e2e/collaboration-presentation-elements.acl --json",
|
|
140
|
-
"test:e2e:check": "bun run test:e2e:fixtures && a3s-test check tests/e2e/word-page-color.acl --json && a3s-test check tests/e2e/word-page-setup-phone.acl --json && a3s-test check tests/e2e/word-paragraph-layout-phone.acl --json && a3s-test check tests/e2e/word-list-formatting-phone.acl --json && a3s-test check tests/e2e/word-font-picker-phone.acl --json && a3s-test check tests/e2e/word-comments-drawer.acl --json && a3s-test check tests/e2e/word-comment-windowing.acl --json && a3s-test check tests/e2e/word-citations-phone.acl --json && a3s-test check tests/e2e/word-navigation-search.acl --json && a3s-test check tests/e2e/word-navigation-windowing.acl --json && a3s-test check tests/e2e/word-find-replace-phone.acl --json && a3s-test check tests/e2e/word-page-navigation.acl --json && a3s-test check tests/e2e/word-page-windowing.acl --json && a3s-test check tests/e2e/word-ai-question.acl --json && a3s-test check tests/e2e/word-picture-insert.acl --json && a3s-test check tests/e2e/word-picture-alt-text-phone.acl --json && a3s-test check tests/e2e/word-track-changes-phone.acl --json && a3s-test check tests/e2e/word-formatting-revision.acl --json && a3s-test check tests/e2e/word-paragraph-formatting-revision.acl --json && a3s-test check tests/e2e/word-document-comparison.acl --json && a3s-test check tests/e2e/word-review-conflict-phone.acl --json && a3s-test check tests/e2e/word-revision-windowing.acl --json && a3s-test check tests/e2e/word-table-phone.acl --json && a3s-test check tests/e2e/word-table-borders.acl --json && a3s-test check tests/e2e/word-theme-table.acl --json && a3s-test check tests/e2e/word-styled-table.acl --json && a3s-test check tests/e2e/word-multi-page-table.acl --json && a3s-test check tests/e2e/word-cross-reference-phone.acl --json && a3s-test check tests/e2e/word-bookmark-links-phone.acl --json && a3s-test check tests/e2e/word-notes-phone.acl --json && a3s-test check tests/e2e/word-fields-phone.acl --json && a3s-test check tests/e2e/spreadsheet-phone-rename.acl --json && a3s-test check tests/e2e/spreadsheet-phone-find.acl --json && a3s-test check tests/e2e/spreadsheet-phone-context-menu.acl --json && a3s-test check tests/e2e/spreadsheet-phone-task-pane.acl --json && a3s-test check tests/e2e/spreadsheet-maximum-sparse.acl --json && a3s-test check tests/e2e/spreadsheet-cell-style.acl --json && a3s-test check tests/e2e/spreadsheet-paste-special.acl --json && a3s-test check tests/e2e/spreadsheet-hyperlink.acl --json && a3s-test check tests/e2e/presentation-cut-paste-focus.acl --json && a3s-test check tests/e2e/presentation-presenter-view.acl --json && a3s-test check tests/e2e/presentation-phone-chart-pane.acl --json && a3s-test check tests/e2e/presentation-phone-comments.acl --json && a3s-test check tests/e2e/pdf-thumbnail-keyboard.acl --json && a3s-test check tests/e2e/pdf-page-drawer-phone.acl --json && a3s-test check tests/e2e/markdown-phone-modes.acl --json && a3s-test check tests/e2e/office-sidebar-breakpoint.acl --json && a3s-test check tests/e2e/office-docs-navigation.acl --json && a3s-test check tests/e2e/collaboration-playground-entry.acl --json && a3s-test check tests/e2e/collaboration-document-comments.acl --json && a3s-test check tests/e2e/collaboration-document-suggestions.acl --json && a3s-test check tests/e2e/collaboration-participants.acl --json && a3s-test check tests/e2e/collaboration-pdf-annotations.acl --json && a3s-test check tests/e2e/collaboration-spreadsheet-cells.acl --json && a3s-test check tests/e2e/collaboration-presentation-elements.acl --json",
|
|
140
|
+
"test:e2e": "bun run test:e2e:fixtures && a3s-test run tests/e2e/word-page-color.acl --json && a3s-test run tests/e2e/word-page-setup-phone.acl --json && a3s-test run tests/e2e/word-paragraph-layout-phone.acl --json && a3s-test run tests/e2e/word-list-formatting-phone.acl --json && a3s-test run tests/e2e/word-font-picker-phone.acl --json && a3s-test run tests/e2e/word-comments-drawer.acl --json && a3s-test run tests/e2e/word-comment-windowing.acl --json && a3s-test run tests/e2e/word-citations-phone.acl --json && a3s-test run tests/e2e/word-navigation-search.acl --json && a3s-test run tests/e2e/word-navigation-windowing.acl --json && a3s-test run tests/e2e/word-find-replace-phone.acl --json && a3s-test run tests/e2e/word-page-navigation.acl --json && a3s-test run tests/e2e/word-page-windowing.acl --json && a3s-test run tests/e2e/word-ai-question.acl --json && a3s-test run tests/e2e/word-picture-insert.acl --json && a3s-test run tests/e2e/word-picture-alt-text-phone.acl --json && a3s-test run tests/e2e/word-track-changes-phone.acl --json && a3s-test run tests/e2e/word-formatting-revision.acl --json && a3s-test run tests/e2e/word-paragraph-formatting-revision.acl --json && a3s-test run tests/e2e/word-numbering-revision.acl --json && a3s-test run tests/e2e/word-document-comparison.acl --json && a3s-test run tests/e2e/word-review-conflict-phone.acl --json && a3s-test run tests/e2e/word-revision-windowing.acl --json && a3s-test run tests/e2e/word-table-phone.acl --json && a3s-test run tests/e2e/word-table-borders.acl --json && a3s-test run tests/e2e/word-theme-table.acl --json && a3s-test run tests/e2e/word-styled-table.acl --json && a3s-test run tests/e2e/word-multi-page-table.acl --json && a3s-test run tests/e2e/word-cross-reference-phone.acl --json && a3s-test run tests/e2e/word-bookmark-links-phone.acl --json && a3s-test run tests/e2e/word-notes-phone.acl --json && a3s-test run tests/e2e/word-fields-phone.acl --json && a3s-test run tests/e2e/spreadsheet-phone-rename.acl --json && a3s-test run tests/e2e/spreadsheet-phone-find.acl --json && a3s-test run tests/e2e/spreadsheet-phone-context-menu.acl --json && a3s-test run tests/e2e/spreadsheet-phone-task-pane.acl --json && a3s-test run tests/e2e/spreadsheet-maximum-sparse.acl --json && a3s-test run tests/e2e/spreadsheet-cell-style.acl --json && a3s-test run tests/e2e/spreadsheet-paste-special.acl --json && a3s-test run tests/e2e/spreadsheet-hyperlink.acl --json && a3s-test run tests/e2e/presentation-cut-paste-focus.acl --json && a3s-test run tests/e2e/presentation-presenter-view.acl --json && a3s-test run tests/e2e/presentation-phone-chart-pane.acl --json && a3s-test run tests/e2e/presentation-phone-comments.acl --json && a3s-test run tests/e2e/pdf-thumbnail-keyboard.acl --json && a3s-test run tests/e2e/pdf-page-drawer-phone.acl --json && a3s-test run tests/e2e/markdown-phone-modes.acl --json && a3s-test run tests/e2e/office-sidebar-breakpoint.acl --json && a3s-test run tests/e2e/office-docs-navigation.acl --json && a3s-test run tests/e2e/collaboration-playground-entry.acl --json && a3s-test run tests/e2e/collaboration-document-comments.acl --command-timeout-ms 120000 --json && a3s-test run tests/e2e/collaboration-document-suggestions.acl --command-timeout-ms 120000 --json && a3s-test run tests/e2e/collaboration-participants.acl --json && a3s-test run tests/e2e/collaboration-pdf-annotations.acl --json && a3s-test run tests/e2e/collaboration-spreadsheet-cells.acl --json && a3s-test run tests/e2e/collaboration-presentation-elements.acl --json",
|
|
141
|
+
"test:e2e:check": "bun run test:e2e:fixtures && a3s-test check tests/e2e/word-page-color.acl --json && a3s-test check tests/e2e/word-page-setup-phone.acl --json && a3s-test check tests/e2e/word-paragraph-layout-phone.acl --json && a3s-test check tests/e2e/word-list-formatting-phone.acl --json && a3s-test check tests/e2e/word-font-picker-phone.acl --json && a3s-test check tests/e2e/word-comments-drawer.acl --json && a3s-test check tests/e2e/word-comment-windowing.acl --json && a3s-test check tests/e2e/word-citations-phone.acl --json && a3s-test check tests/e2e/word-navigation-search.acl --json && a3s-test check tests/e2e/word-navigation-windowing.acl --json && a3s-test check tests/e2e/word-find-replace-phone.acl --json && a3s-test check tests/e2e/word-page-navigation.acl --json && a3s-test check tests/e2e/word-page-windowing.acl --json && a3s-test check tests/e2e/word-ai-question.acl --json && a3s-test check tests/e2e/word-picture-insert.acl --json && a3s-test check tests/e2e/word-picture-alt-text-phone.acl --json && a3s-test check tests/e2e/word-track-changes-phone.acl --json && a3s-test check tests/e2e/word-formatting-revision.acl --json && a3s-test check tests/e2e/word-paragraph-formatting-revision.acl --json && a3s-test check tests/e2e/word-numbering-revision.acl --json && a3s-test check tests/e2e/word-document-comparison.acl --json && a3s-test check tests/e2e/word-review-conflict-phone.acl --json && a3s-test check tests/e2e/word-revision-windowing.acl --json && a3s-test check tests/e2e/word-table-phone.acl --json && a3s-test check tests/e2e/word-table-borders.acl --json && a3s-test check tests/e2e/word-theme-table.acl --json && a3s-test check tests/e2e/word-styled-table.acl --json && a3s-test check tests/e2e/word-multi-page-table.acl --json && a3s-test check tests/e2e/word-cross-reference-phone.acl --json && a3s-test check tests/e2e/word-bookmark-links-phone.acl --json && a3s-test check tests/e2e/word-notes-phone.acl --json && a3s-test check tests/e2e/word-fields-phone.acl --json && a3s-test check tests/e2e/spreadsheet-phone-rename.acl --json && a3s-test check tests/e2e/spreadsheet-phone-find.acl --json && a3s-test check tests/e2e/spreadsheet-phone-context-menu.acl --json && a3s-test check tests/e2e/spreadsheet-phone-task-pane.acl --json && a3s-test check tests/e2e/spreadsheet-maximum-sparse.acl --json && a3s-test check tests/e2e/spreadsheet-cell-style.acl --json && a3s-test check tests/e2e/spreadsheet-paste-special.acl --json && a3s-test check tests/e2e/spreadsheet-hyperlink.acl --json && a3s-test check tests/e2e/presentation-cut-paste-focus.acl --json && a3s-test check tests/e2e/presentation-presenter-view.acl --json && a3s-test check tests/e2e/presentation-phone-chart-pane.acl --json && a3s-test check tests/e2e/presentation-phone-comments.acl --json && a3s-test check tests/e2e/pdf-thumbnail-keyboard.acl --json && a3s-test check tests/e2e/pdf-page-drawer-phone.acl --json && a3s-test check tests/e2e/markdown-phone-modes.acl --json && a3s-test check tests/e2e/office-sidebar-breakpoint.acl --json && a3s-test check tests/e2e/office-docs-navigation.acl --json && a3s-test check tests/e2e/collaboration-playground-entry.acl --json && a3s-test check tests/e2e/collaboration-document-comments.acl --json && a3s-test check tests/e2e/collaboration-document-suggestions.acl --json && a3s-test check tests/e2e/collaboration-participants.acl --json && a3s-test check tests/e2e/collaboration-pdf-annotations.acl --json && a3s-test check tests/e2e/collaboration-spreadsheet-cells.acl --json && a3s-test check tests/e2e/collaboration-presentation-elements.acl --json",
|
|
141
142
|
"test:e2e:fixtures": "bun scripts/create-e2e-fixtures.ts",
|
|
143
|
+
"test:e2e:numbering-revision": "A3S_TEST_SUITE=tests/e2e/word-numbering-revision.acl bash scripts/run-a3s-test-web-gate.sh",
|
|
144
|
+
"test:e2e:numbering-revision:check": "a3s-test check tests/e2e/word-numbering-revision.acl --json",
|
|
142
145
|
"test:e2e:large-documents": "bun .a3s-test/performance/generate-fixtures.ts --documents-only && a3s-test run tests/e2e/word-large-document-windowing.acl --json",
|
|
143
146
|
"test:e2e:large-documents:check": "a3s-test check tests/e2e/word-large-document-windowing.acl --json",
|
|
144
147
|
"test:e2e:large-pdf": "bun .a3s-test/performance/generate-fixtures.ts --pdf-only && a3s-test run tests/e2e/pdf-large-windowing.acl --json",
|
|
@@ -157,8 +160,8 @@
|
|
|
157
160
|
"test:e2e:docs:check": "a3s-test check tests/e2e/office-docs-navigation.acl --json",
|
|
158
161
|
"test:e2e:homepage": "A3S_TEST_SUITE=tests/e2e/homepage-editor-demo.acl bash scripts/run-a3s-test-web-gate.sh",
|
|
159
162
|
"test:e2e:homepage:check": "a3s-test check tests/e2e/homepage-editor-demo.acl --json",
|
|
160
|
-
"test:e2e:
|
|
161
|
-
"test:e2e:
|
|
163
|
+
"test:e2e:playground-templates": "A3S_TEST_SUITE=tests/e2e/playground-template-discoverability.acl bash scripts/run-a3s-test-web-gate.sh",
|
|
164
|
+
"test:e2e:playground-templates:check": "a3s-test check tests/e2e/playground-template-discoverability.acl --json",
|
|
162
165
|
"test:e2e:collaboration-participants": "a3s-test run tests/e2e/collaboration-participants.acl --json",
|
|
163
166
|
"test:e2e:collaboration-participants:check": "a3s-test check tests/e2e/collaboration-participants.acl --json",
|
|
164
167
|
"test:e2e:collaboration-playground": "a3s-test run tests/e2e/collaboration-playground-entry.acl --json",
|