Skip to content

Commit 804a267

Browse files
committed
feat(devindex): Add grid buffer settings and reorganize control tabs (#9164)
1 parent 329c4a9 commit 804a267

3 files changed

Lines changed: 49 additions & 3 deletions

File tree

resources/content/.sync-metadata.json

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"lastSync": "2026-02-14T19:21:19.962Z",
3-
"releasesLastFetched": "2026-02-14T19:21:20.747Z",
2+
"lastSync": "2026-02-15T02:43:48.655Z",
3+
"releasesLastFetched": "2026-02-15T02:43:48.679Z",
44
"pushFailures": [],
55
"issues": {
66
"3789": {
@@ -19987,6 +19987,41 @@
1998719987
"closedAt": "2026-02-14T19:15:52Z",
1998819988
"updatedAt": "2026-02-14T19:15:52Z",
1998919989
"contentHash": "4a54df9697915585a82614eb6e1d8fc46df5f7cf53c314c7796bf0e6bedc0a39"
19990+
},
19991+
"9156": {
19992+
"state": "CLOSED",
19993+
"path": "resources/content/issues/issue-9156.md",
19994+
"closedAt": "2026-02-14T23:52:44Z",
19995+
"updatedAt": "2026-02-14T23:52:44Z",
19996+
"contentHash": "df03a8ffc560f26b3ed2c0385fc38178a7618769b74d9c5cea83ae6c8a77a8c1"
19997+
},
19998+
"9157": {
19999+
"state": "CLOSED",
20000+
"path": "resources/content/issues/issue-9157.md",
20001+
"closedAt": "2026-02-15T00:29:52Z",
20002+
"updatedAt": "2026-02-15T00:29:52Z",
20003+
"contentHash": "625e8a83e913a4475f03876f4994bfda7e725c81365df3bbab7f0936b10e718a"
20004+
},
20005+
"9158": {
20006+
"state": "CLOSED",
20007+
"path": "resources/content/issues/issue-9158.md",
20008+
"closedAt": "2026-02-15T00:35:09Z",
20009+
"updatedAt": "2026-02-15T00:35:09Z",
20010+
"contentHash": "2343da5dbe8d2964784ff75a19c93f353445cc7bda56ec48481adb4dcc6991fb"
20011+
},
20012+
"9159": {
20013+
"state": "OPEN",
20014+
"path": "resources/content/issues/issue-9159.md",
20015+
"closedAt": null,
20016+
"updatedAt": "2026-02-15T00:59:13Z",
20017+
"contentHash": "5ebbe9217cf8f185de8e40de1497f69bdd568567293de28c28731a373ca6dd75"
20018+
},
20019+
"9160": {
20020+
"state": "OPEN",
20021+
"path": "resources/content/issues/issue-9160.md",
20022+
"closedAt": null,
20023+
"updatedAt": "2026-02-15T01:01:50Z",
20024+
"contentHash": "0c8f1645c96a984401353c8746d795b56eff6dd1a8634c9a9eeaf4023407d4d9"
1999020025
}
1999120026
},
1999220027
"releases": {

test/playwright/unit/data/proxy/Stream.spec.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ test.describe.serial('Neo.data.proxy.Stream', () => {
2323
// In Playwright Node environment, ReadableStream/TextDecoderStream should be available.
2424

2525
test.beforeEach(() => {
26-
proxy = Neo.create(StreamProxy);
26+
proxy = Neo.create(StreamProxy, {
27+
store: {}
28+
});
2729
});
2830

2931
test('read() should stream and parse NDJSON data', async () => {
@@ -39,6 +41,9 @@ test.describe.serial('Neo.data.proxy.Stream', () => {
3941
const originalFetch = globalThis.fetch;
4042
globalThis.fetch = async (url) => {
4143
return {
44+
headers: {
45+
get: () => 0
46+
},
4247
ok: true,
4348
body: new ReadableStream({
4449
start(controller) {
@@ -86,6 +91,9 @@ ${JSON.stringify(mockData[1])}
8691
const originalFetch = globalThis.fetch;
8792
globalThis.fetch = async (url) => {
8893
return {
94+
headers: {
95+
get: () => 0
96+
},
8997
ok: true,
9098
body: new ReadableStream({
9199
start(controller) {

test/playwright/unit/functional/Button.spec.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ test.describe('functional/Button', () => {
4242

4343
({vnode} = await button.initVnode());
4444
button.mounted = true; // Manually mount to enable updates in the test env
45+
46+
// Mock Neo.applyDeltas
47+
Neo.applyDeltas = async () => {};
4548
});
4649

4750
test.afterEach(() => {

0 commit comments

Comments
 (0)