@a3s-lab/office 0.14.0 → 0.15.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 +13 -1
- package/dist/0~spreadsheet-editor.js +3676 -1902
- package/dist/0~work-office-diagnostics.js +1 -1
- package/dist/{4476.js → 2180.js} +34 -1
- package/dist/4104.js +41 -19
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/dist/internal/features/work/editors/spreadsheet-command-catalog.d.ts +23 -0
- package/dist/internal/features/work/editors/spreadsheet-command-controller.d.ts +18 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation.d.ts +50 -0
- package/dist/internal/features/work/editors/spreadsheet-editor-support.d.ts +1 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink.d.ts +44 -0
- package/dist/internal/features/work/editors/use-spreadsheet-data-validation.d.ts +23 -0
- package/dist/internal/features/work/editors/use-spreadsheet-hyperlink.d.ts +24 -0
- package/dist/internal/features/work/work-spreadsheet-data-validation.d.ts +2 -0
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +297 -0
- package/package.json +9 -3
package/dist/styles.css
CHANGED
|
@@ -15925,6 +15925,303 @@ button.work-office-collaboration-participant:hover .work-office-collaboration-lo
|
|
|
15925
15925
|
}
|
|
15926
15926
|
}
|
|
15927
15927
|
|
|
15928
|
+
.work-spreadsheet-data-validation-dialog {
|
|
15929
|
+
--work-office-control-accent: var(--work-spreadsheet-accent, #159469);
|
|
15930
|
+
width: min(640px, 100%);
|
|
15931
|
+
}
|
|
15932
|
+
|
|
15933
|
+
.work-spreadsheet-data-validation-dialog form {
|
|
15934
|
+
gap: 18px;
|
|
15935
|
+
display: grid;
|
|
15936
|
+
}
|
|
15937
|
+
|
|
15938
|
+
.work-spreadsheet-data-validation-dialog section {
|
|
15939
|
+
gap: 12px;
|
|
15940
|
+
min-width: 0;
|
|
15941
|
+
display: grid;
|
|
15942
|
+
}
|
|
15943
|
+
|
|
15944
|
+
.work-spreadsheet-data-validation-dialog section + section {
|
|
15945
|
+
border-top: 1px solid var(--a3s-line);
|
|
15946
|
+
padding-top: 16px;
|
|
15947
|
+
}
|
|
15948
|
+
|
|
15949
|
+
.work-spreadsheet-data-validation-dialog h3 {
|
|
15950
|
+
color: var(--a3s-ink);
|
|
15951
|
+
margin: 0;
|
|
15952
|
+
font-size: 12px;
|
|
15953
|
+
font-weight: 650;
|
|
15954
|
+
}
|
|
15955
|
+
|
|
15956
|
+
.work-spreadsheet-data-validation-scope {
|
|
15957
|
+
background: var(--a3s-panel-soft);
|
|
15958
|
+
border-radius: 8px;
|
|
15959
|
+
grid-template-columns: 32px minmax(0, 1fr);
|
|
15960
|
+
align-items: center;
|
|
15961
|
+
gap: 10px;
|
|
15962
|
+
min-width: 0;
|
|
15963
|
+
padding: 9px 11px;
|
|
15964
|
+
display: grid;
|
|
15965
|
+
}
|
|
15966
|
+
|
|
15967
|
+
.work-spreadsheet-data-validation-scope > span {
|
|
15968
|
+
background: color-mix(in srgb,
|
|
15969
|
+
var(--work-spreadsheet-accent, #159469) 11%,
|
|
15970
|
+
var(--a3s-panel));
|
|
15971
|
+
width: 32px;
|
|
15972
|
+
height: 32px;
|
|
15973
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
15974
|
+
border-radius: 7px;
|
|
15975
|
+
place-items: center;
|
|
15976
|
+
display: grid;
|
|
15977
|
+
}
|
|
15978
|
+
|
|
15979
|
+
.work-spreadsheet-data-validation-scope > div {
|
|
15980
|
+
gap: 2px;
|
|
15981
|
+
min-width: 0;
|
|
15982
|
+
display: grid;
|
|
15983
|
+
}
|
|
15984
|
+
|
|
15985
|
+
.work-spreadsheet-data-validation-scope strong, .work-spreadsheet-data-validation-scope small {
|
|
15986
|
+
text-overflow: ellipsis;
|
|
15987
|
+
white-space: nowrap;
|
|
15988
|
+
overflow: hidden;
|
|
15989
|
+
}
|
|
15990
|
+
|
|
15991
|
+
.work-spreadsheet-data-validation-scope strong {
|
|
15992
|
+
color: var(--a3s-ink);
|
|
15993
|
+
font-size: 11px;
|
|
15994
|
+
font-weight: 650;
|
|
15995
|
+
}
|
|
15996
|
+
|
|
15997
|
+
.work-spreadsheet-data-validation-scope small {
|
|
15998
|
+
color: var(--a3s-muted);
|
|
15999
|
+
font-size: 10px;
|
|
16000
|
+
}
|
|
16001
|
+
|
|
16002
|
+
.work-spreadsheet-data-validation-mixed {
|
|
16003
|
+
color: color-mix(in srgb, var(--a3s-ink) 74%, #9a6900);
|
|
16004
|
+
margin: -6px 0 0;
|
|
16005
|
+
font-size: 11px;
|
|
16006
|
+
line-height: 1.45;
|
|
16007
|
+
}
|
|
16008
|
+
|
|
16009
|
+
.work-spreadsheet-data-validation-section-heading {
|
|
16010
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
16011
|
+
align-items: center;
|
|
16012
|
+
gap: 7px;
|
|
16013
|
+
display: flex;
|
|
16014
|
+
}
|
|
16015
|
+
|
|
16016
|
+
.work-spreadsheet-data-validation-condition-grid, .work-spreadsheet-data-validation-values.two {
|
|
16017
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16018
|
+
gap: 10px;
|
|
16019
|
+
display: grid;
|
|
16020
|
+
}
|
|
16021
|
+
|
|
16022
|
+
.work-spreadsheet-data-validation-values {
|
|
16023
|
+
gap: 8px;
|
|
16024
|
+
min-width: 0;
|
|
16025
|
+
display: grid;
|
|
16026
|
+
}
|
|
16027
|
+
|
|
16028
|
+
.work-spreadsheet-data-validation-inline-error {
|
|
16029
|
+
color: var(--a3s-danger, #c23535);
|
|
16030
|
+
grid-column: 1 / -1;
|
|
16031
|
+
font-size: 10px;
|
|
16032
|
+
}
|
|
16033
|
+
|
|
16034
|
+
.work-spreadsheet-data-validation-behavior {
|
|
16035
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16036
|
+
gap: 8px;
|
|
16037
|
+
display: grid;
|
|
16038
|
+
}
|
|
16039
|
+
|
|
16040
|
+
.work-spreadsheet-data-validation-behavior .work-office-checkbox {
|
|
16041
|
+
min-height: 40px;
|
|
16042
|
+
padding: 8px 10px;
|
|
16043
|
+
}
|
|
16044
|
+
|
|
16045
|
+
.work-spreadsheet-data-validation-dialog textarea {
|
|
16046
|
+
resize: vertical;
|
|
16047
|
+
min-height: 70px;
|
|
16048
|
+
}
|
|
16049
|
+
|
|
16050
|
+
.work-spreadsheet-data-validation-error {
|
|
16051
|
+
color: var(--a3s-danger, #c23535);
|
|
16052
|
+
margin: 0;
|
|
16053
|
+
font-size: 11px;
|
|
16054
|
+
}
|
|
16055
|
+
|
|
16056
|
+
.work-spreadsheet-data-validation-remove {
|
|
16057
|
+
margin-right: auto;
|
|
16058
|
+
}
|
|
16059
|
+
|
|
16060
|
+
@media (width <= 560px) {
|
|
16061
|
+
.work-spreadsheet-data-validation-condition-grid, .work-spreadsheet-data-validation-values.two, .work-spreadsheet-data-validation-behavior {
|
|
16062
|
+
grid-template-columns: minmax(0, 1fr);
|
|
16063
|
+
}
|
|
16064
|
+
}
|
|
16065
|
+
|
|
16066
|
+
.work-spreadsheet-hyperlink-dialog {
|
|
16067
|
+
--work-office-control-accent: var(--work-spreadsheet-accent, #159469);
|
|
16068
|
+
width: min(610px, 100%);
|
|
16069
|
+
}
|
|
16070
|
+
|
|
16071
|
+
.work-spreadsheet-hyperlink-dialog form {
|
|
16072
|
+
gap: 18px;
|
|
16073
|
+
display: grid;
|
|
16074
|
+
}
|
|
16075
|
+
|
|
16076
|
+
.work-spreadsheet-hyperlink-types {
|
|
16077
|
+
border: 0;
|
|
16078
|
+
min-width: 0;
|
|
16079
|
+
margin: 0;
|
|
16080
|
+
padding: 0;
|
|
16081
|
+
}
|
|
16082
|
+
|
|
16083
|
+
.work-spreadsheet-hyperlink-types > legend {
|
|
16084
|
+
color: var(--a3s-muted);
|
|
16085
|
+
margin-bottom: 8px;
|
|
16086
|
+
font-size: 12px;
|
|
16087
|
+
font-weight: 600;
|
|
16088
|
+
}
|
|
16089
|
+
|
|
16090
|
+
.work-spreadsheet-hyperlink-types > div {
|
|
16091
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
16092
|
+
gap: 7px;
|
|
16093
|
+
display: grid;
|
|
16094
|
+
}
|
|
16095
|
+
|
|
16096
|
+
.work-spreadsheet-hyperlink-types label {
|
|
16097
|
+
border: 1px solid var(--a3s-line);
|
|
16098
|
+
background: var(--a3s-panel);
|
|
16099
|
+
min-width: 0;
|
|
16100
|
+
min-height: 62px;
|
|
16101
|
+
color: var(--a3s-muted);
|
|
16102
|
+
cursor: pointer;
|
|
16103
|
+
border-radius: 8px;
|
|
16104
|
+
grid-template-columns: 20px minmax(0, 1fr);
|
|
16105
|
+
align-items: center;
|
|
16106
|
+
gap: 8px;
|
|
16107
|
+
padding: 9px 10px;
|
|
16108
|
+
display: grid;
|
|
16109
|
+
position: relative;
|
|
16110
|
+
}
|
|
16111
|
+
|
|
16112
|
+
.work-spreadsheet-hyperlink-types label:hover {
|
|
16113
|
+
border-color: color-mix(in srgb,
|
|
16114
|
+
var(--work-spreadsheet-accent, #159469) 42%,
|
|
16115
|
+
var(--a3s-line));
|
|
16116
|
+
}
|
|
16117
|
+
|
|
16118
|
+
.work-spreadsheet-hyperlink-types label.selected {
|
|
16119
|
+
border-color: color-mix(in srgb,
|
|
16120
|
+
var(--work-spreadsheet-accent, #159469) 58%,
|
|
16121
|
+
var(--a3s-line));
|
|
16122
|
+
background: color-mix(in srgb,
|
|
16123
|
+
var(--work-spreadsheet-accent, #159469) 8%,
|
|
16124
|
+
var(--a3s-panel));
|
|
16125
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
16126
|
+
}
|
|
16127
|
+
|
|
16128
|
+
.work-spreadsheet-hyperlink-types label:has(input:focus-visible) {
|
|
16129
|
+
outline: 2px solid
|
|
16130
|
+
color-mix(in srgb, var(--work-spreadsheet-accent, #159469) 38%, transparent);
|
|
16131
|
+
outline-offset: 2px;
|
|
16132
|
+
}
|
|
16133
|
+
|
|
16134
|
+
.work-spreadsheet-hyperlink-types input {
|
|
16135
|
+
opacity: 0;
|
|
16136
|
+
width: 1px;
|
|
16137
|
+
height: 1px;
|
|
16138
|
+
position: absolute;
|
|
16139
|
+
}
|
|
16140
|
+
|
|
16141
|
+
.work-spreadsheet-hyperlink-types label > span {
|
|
16142
|
+
gap: 1px;
|
|
16143
|
+
min-width: 0;
|
|
16144
|
+
display: grid;
|
|
16145
|
+
}
|
|
16146
|
+
|
|
16147
|
+
.work-spreadsheet-hyperlink-types strong, .work-spreadsheet-hyperlink-types small {
|
|
16148
|
+
text-overflow: ellipsis;
|
|
16149
|
+
white-space: nowrap;
|
|
16150
|
+
overflow: hidden;
|
|
16151
|
+
}
|
|
16152
|
+
|
|
16153
|
+
.work-spreadsheet-hyperlink-types strong {
|
|
16154
|
+
color: var(--a3s-ink);
|
|
16155
|
+
font-size: 11px;
|
|
16156
|
+
font-weight: 650;
|
|
16157
|
+
}
|
|
16158
|
+
|
|
16159
|
+
.work-spreadsheet-hyperlink-types small {
|
|
16160
|
+
color: var(--a3s-muted);
|
|
16161
|
+
font-size: 9px;
|
|
16162
|
+
}
|
|
16163
|
+
|
|
16164
|
+
.work-spreadsheet-hyperlink-preview {
|
|
16165
|
+
background: var(--a3s-panel-soft);
|
|
16166
|
+
border-radius: 8px;
|
|
16167
|
+
grid-template-columns: 30px minmax(0, 1fr);
|
|
16168
|
+
align-items: center;
|
|
16169
|
+
gap: 10px;
|
|
16170
|
+
min-width: 0;
|
|
16171
|
+
min-height: 56px;
|
|
16172
|
+
padding: 9px 11px;
|
|
16173
|
+
display: grid;
|
|
16174
|
+
}
|
|
16175
|
+
|
|
16176
|
+
.work-spreadsheet-hyperlink-preview > span {
|
|
16177
|
+
background: color-mix(in srgb,
|
|
16178
|
+
var(--work-spreadsheet-accent, #159469) 11%,
|
|
16179
|
+
var(--a3s-panel));
|
|
16180
|
+
width: 30px;
|
|
16181
|
+
height: 30px;
|
|
16182
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
16183
|
+
border-radius: 7px;
|
|
16184
|
+
place-items: center;
|
|
16185
|
+
display: grid;
|
|
16186
|
+
}
|
|
16187
|
+
|
|
16188
|
+
.work-spreadsheet-hyperlink-preview > div {
|
|
16189
|
+
gap: 1px;
|
|
16190
|
+
min-width: 0;
|
|
16191
|
+
display: grid;
|
|
16192
|
+
}
|
|
16193
|
+
|
|
16194
|
+
.work-spreadsheet-hyperlink-preview strong, .work-spreadsheet-hyperlink-preview small {
|
|
16195
|
+
text-overflow: ellipsis;
|
|
16196
|
+
white-space: nowrap;
|
|
16197
|
+
overflow: hidden;
|
|
16198
|
+
}
|
|
16199
|
+
|
|
16200
|
+
.work-spreadsheet-hyperlink-preview strong {
|
|
16201
|
+
color: var(--a3s-ink);
|
|
16202
|
+
font-size: 11px;
|
|
16203
|
+
font-weight: 650;
|
|
16204
|
+
}
|
|
16205
|
+
|
|
16206
|
+
.work-spreadsheet-hyperlink-preview small {
|
|
16207
|
+
color: var(--a3s-muted);
|
|
16208
|
+
font-size: 10px;
|
|
16209
|
+
}
|
|
16210
|
+
|
|
16211
|
+
.work-spreadsheet-hyperlink-remove {
|
|
16212
|
+
margin-right: auto;
|
|
16213
|
+
}
|
|
16214
|
+
|
|
16215
|
+
@media (width <= 560px) {
|
|
16216
|
+
.work-spreadsheet-hyperlink-types > div {
|
|
16217
|
+
grid-template-columns: minmax(0, 1fr);
|
|
16218
|
+
}
|
|
16219
|
+
|
|
16220
|
+
.work-spreadsheet-hyperlink-types label {
|
|
16221
|
+
min-height: 50px;
|
|
16222
|
+
}
|
|
16223
|
+
}
|
|
16224
|
+
|
|
15928
16225
|
.work-spreadsheet-paste-special-dialog {
|
|
15929
16226
|
--work-office-control-accent: var(--work-spreadsheet-accent, #159469);
|
|
15930
16227
|
width: min(660px, 100%);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a3s-lab/office",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Open-source collaborative browser editors for documents, Markdown, spreadsheets, presentations, and PDFs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"office",
|
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"playground:preview": "rsbuild preview --config playground/rsbuild.config.ts --host 127.0.0.1 --port 4175 --strict-port",
|
|
88
88
|
"playground:typecheck": "tsc --noEmit -p playground/tsconfig.json",
|
|
89
89
|
"playground:visual": "playwright test --config playwright.config.ts",
|
|
90
|
+
"playground:visual:spreadsheet-data-validation": "playwright test visual-tests/spreadsheet-data-validation.functional.spec.ts --config playwright.config.ts",
|
|
91
|
+
"playground:visual:spreadsheet-hyperlink": "playwright test visual-tests/spreadsheet-hyperlink.functional.spec.ts --config playwright.config.ts",
|
|
90
92
|
"playground:visual:spreadsheet-ribbon": "playwright test visual-tests/spreadsheet-ribbon.functional.spec.ts --config playwright.config.ts",
|
|
91
93
|
"playground:visual:update": "playwright test --config playwright.config.ts --update-snapshots",
|
|
92
94
|
"performance:fixtures": "bun .a3s-test/performance/generate-fixtures.ts",
|
|
@@ -97,8 +99,8 @@
|
|
|
97
99
|
"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/ --runs 3 --timeout-ms 120000",
|
|
98
100
|
"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/ --runs 3 --timeout-ms 120000 --modes default,content-visibility",
|
|
99
101
|
"test": "rstest",
|
|
100
|
-
"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-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/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",
|
|
101
|
-
"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-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/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",
|
|
102
|
+
"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-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",
|
|
103
|
+
"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-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",
|
|
102
104
|
"test:e2e:fixtures": "bun scripts/create-e2e-fixtures.ts",
|
|
103
105
|
"test:e2e:large-documents": "bun .a3s-test/performance/generate-fixtures.ts --documents-only && a3s-test run tests/e2e/word-large-document-windowing.acl --json",
|
|
104
106
|
"test:e2e:large-documents:check": "a3s-test check tests/e2e/word-large-document-windowing.acl --json",
|
|
@@ -140,6 +142,10 @@
|
|
|
140
142
|
"test:e2e:spreadsheet-paste-special:check": "a3s-test check tests/e2e/spreadsheet-paste-special.acl --json",
|
|
141
143
|
"test:e2e:spreadsheet-go-to": "a3s-test run tests/e2e/spreadsheet-go-to.acl --json",
|
|
142
144
|
"test:e2e:spreadsheet-go-to:check": "a3s-test check tests/e2e/spreadsheet-go-to.acl --json",
|
|
145
|
+
"test:e2e:spreadsheet-data-validation": "a3s-test run tests/e2e/spreadsheet-data-validation.acl --json",
|
|
146
|
+
"test:e2e:spreadsheet-data-validation:check": "a3s-test check tests/e2e/spreadsheet-data-validation.acl --json",
|
|
147
|
+
"test:e2e:spreadsheet-hyperlink": "a3s-test run tests/e2e/spreadsheet-hyperlink.acl --json",
|
|
148
|
+
"test:e2e:spreadsheet-hyperlink:check": "a3s-test check tests/e2e/spreadsheet-hyperlink.acl --json",
|
|
143
149
|
"test:e2e:spreadsheet-maximum-sparse": "a3s-test run tests/e2e/spreadsheet-maximum-sparse.acl --json",
|
|
144
150
|
"test:e2e:spreadsheet-maximum-sparse:check": "a3s-test check tests/e2e/spreadsheet-maximum-sparse.acl --json",
|
|
145
151
|
"test:e2e:spreadsheet-large": "bun .a3s-test/performance/generate-fixtures.ts --spreadsheets-only && a3s-test run tests/e2e/spreadsheet-large-controlled-editing.acl --json",
|