@wyxos/vibe 2.1.18 → 2.2.4
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/lib/components/Masonry.vue.d.ts +8 -0
- package/lib/index.cjs +1 -1
- package/lib/index.js +845 -802
- package/lib/manifest.json +41 -41
- package/lib/masonry/backfill.d.ts +3 -1
- package/lib/masonry/types.d.ts +2 -1
- package/package.json +4 -4
package/lib/manifest.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "VIBE - Vue Infinite Block Engine",
|
|
3
|
-
"short_name": "VIBE",
|
|
4
|
-
"description": "A high-performance, responsive masonry layout engine for Vue 3",
|
|
5
|
-
"start_url": "/",
|
|
6
|
-
"display": "standalone",
|
|
7
|
-
"background_color": "#f8fafc",
|
|
8
|
-
"theme_color": "#3b82f6",
|
|
9
|
-
"icons": [
|
|
10
|
-
{
|
|
11
|
-
"src": "favicon-16x16.png",
|
|
12
|
-
"sizes": "16x16",
|
|
13
|
-
"type": "image/png"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"src": "favicon-32x32.png",
|
|
17
|
-
"sizes": "32x32",
|
|
18
|
-
"type": "image/png"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"src": "favicon-48x48.png",
|
|
22
|
-
"sizes": "48x48",
|
|
23
|
-
"type": "image/png"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"src": "favicon-64x64.png",
|
|
27
|
-
"sizes": "64x64",
|
|
28
|
-
"type": "image/png"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"src": "favicon-128x128.png",
|
|
32
|
-
"sizes": "128x128",
|
|
33
|
-
"type": "image/png"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"src": "favicon-256x256.png",
|
|
37
|
-
"sizes": "256x256",
|
|
38
|
-
"type": "image/png"
|
|
39
|
-
}
|
|
40
|
-
]
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "VIBE - Vue Infinite Block Engine",
|
|
3
|
+
"short_name": "VIBE",
|
|
4
|
+
"description": "A high-performance, responsive masonry layout engine for Vue 3",
|
|
5
|
+
"start_url": "/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"background_color": "#f8fafc",
|
|
8
|
+
"theme_color": "#3b82f6",
|
|
9
|
+
"icons": [
|
|
10
|
+
{
|
|
11
|
+
"src": "favicon-16x16.png",
|
|
12
|
+
"sizes": "16x16",
|
|
13
|
+
"type": "image/png"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "favicon-32x32.png",
|
|
17
|
+
"sizes": "32x32",
|
|
18
|
+
"type": "image/png"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"src": "favicon-48x48.png",
|
|
22
|
+
"sizes": "48x48",
|
|
23
|
+
"type": "image/png"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"src": "favicon-64x64.png",
|
|
27
|
+
"sizes": "64x64",
|
|
28
|
+
"type": "image/png"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"src": "favicon-128x128.png",
|
|
32
|
+
"sizes": "128x128",
|
|
33
|
+
"type": "image/png"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"src": "favicon-256x256.png",
|
|
37
|
+
"sizes": "256x256",
|
|
38
|
+
"type": "image/png"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
@@ -13,7 +13,8 @@ export type BackfillStatsShape<TPageToken> = {
|
|
|
13
13
|
enabled: boolean;
|
|
14
14
|
isBackfillActive: boolean;
|
|
15
15
|
isRequestInFlight: boolean;
|
|
16
|
-
|
|
16
|
+
page: TPageToken | null;
|
|
17
|
+
next: TPageToken | null;
|
|
17
18
|
progress: {
|
|
18
19
|
collected: number;
|
|
19
20
|
target: number;
|
|
@@ -46,6 +47,7 @@ export declare function createBackfillBatchLoader<TItem, TPageToken>(options: {
|
|
|
46
47
|
isEnabled: () => boolean;
|
|
47
48
|
getPageSize: () => number;
|
|
48
49
|
getRequestDelayMs: () => number;
|
|
50
|
+
getCancelToken?: () => number;
|
|
49
51
|
}): {
|
|
50
52
|
loadBackfillBatch: (startPage: TPageToken | null) => Promise<BackfillBatchResult<TItem, TPageToken>>;
|
|
51
53
|
};
|
package/lib/masonry/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wyxos/vibe",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "A high-performance, responsive masonry layout engine for Vue 3 with built-in infinite scrolling and virtualization.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"build:types": "vue-tsc -p tsconfig.lib.json",
|
|
45
45
|
"prepublishOnly": "npm run check && npm run build:lib && npm run build:types",
|
|
46
46
|
"preview": "vite preview",
|
|
47
|
-
"check": "
|
|
48
|
-
"lint": "eslint .",
|
|
47
|
+
"check": "npm run lint && npm run typecheck && npm run test && npm run test:e2e",
|
|
48
|
+
"lint": "eslint . --max-warnings 0",
|
|
49
49
|
"lint:fix": "eslint . --fix",
|
|
50
50
|
"release": "npx @wyxos/zephyr --type=node",
|
|
51
|
-
"test": "vitest run --reporter=dot
|
|
51
|
+
"test": "vitest run --reporter=dot",
|
|
52
52
|
"test:unit": "vitest run",
|
|
53
53
|
"test:watch": "vitest",
|
|
54
54
|
"test:e2e": "playwright test",
|