@vc-shell/framework 2.4.0-pr293.12237a1 → 2.4.0-pr295.d5bed36
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/dist/ai-agent/index.js +3 -3
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_script_setup_true_lang-Cm_izaFs.js → VcAiAgentPanel.vue_vue_type_script_setup_true_lang-DKRyBR_M.js} +1 -1
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_script_setup_true_lang-Cm_izaFs.js.map → VcAiAgentPanel.vue_vue_type_script_setup_true_lang-DKRyBR_M.js.map} +1 -1
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-DrGobYkj.js → VcAiAgentPanel.vue_vue_type_style_index_0_lang-CZdY18Hq.js} +74 -68
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-DrGobYkj.js.map → VcAiAgentPanel.vue_vue_type_style_index_0_lang-CZdY18Hq.js.map} +1 -1
- package/dist/chunks/{VcScheduler.vue_vue_type_script_setup_true_lang-BUv6ZtsI.js → VcScheduler.vue_vue_type_script_setup_true_lang-D73V_F2S.js} +1935 -1912
- package/dist/chunks/VcScheduler.vue_vue_type_script_setup_true_lang-D73V_F2S.js.map +1 -0
- package/dist/chunks/{VcScheduler.vue_vue_type_style_index_0_lang-Dj-nP2Jc.js → VcScheduler.vue_vue_type_style_index_0_lang-BTg4PjTB.js} +1 -1
- package/dist/chunks/VcScheduler.vue_vue_type_style_index_0_lang-BTg4PjTB.js.map +1 -0
- package/dist/chunks/{dashboard-feed-row.vue_vue_type_script_setup_true_lang-C6gLMw3Z.js → dashboard-feed-row.vue_vue_type_script_setup_true_lang-DSujdkDw.js} +2 -2
- package/dist/chunks/{dashboard-feed-row.vue_vue_type_script_setup_true_lang-C6gLMw3Z.js.map → dashboard-feed-row.vue_vue_type_script_setup_true_lang-DSujdkDw.js.map} +1 -1
- package/dist/chunks/{index-C-SEYj46.js → index-Cp8w9Q3q.js} +2 -2
- package/dist/chunks/{index-C-SEYj46.js.map → index-Cp8w9Q3q.js.map} +1 -1
- package/dist/core/interceptors/index.d.ts.map +1 -1
- package/dist/core/utilities/error.d.ts.map +1 -1
- package/dist/core/utilities/sessionExpiration.d.ts +14 -0
- package/dist/core/utilities/sessionExpiration.d.ts.map +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/framework.js +906 -904
- package/dist/framework.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/composables/useDataTablePagination.d.ts +22 -1
- package/dist/ui/composables/useDataTablePagination.d.ts.map +1 -1
- package/dist/ui/index.js +3 -3
- package/package.json +4 -4
- package/dist/chunks/VcScheduler.vue_vue_type_script_setup_true_lang-BUv6ZtsI.js.map +0 -1
- package/dist/chunks/VcScheduler.vue_vue_type_style_index_0_lang-Dj-nP2Jc.js.map +0 -1
|
@@ -13,7 +13,14 @@ export interface UseDataTablePaginationOptions {
|
|
|
13
13
|
stateKey?: string;
|
|
14
14
|
}
|
|
15
15
|
export interface UseDataTablePaginationReturn {
|
|
16
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* Current 1-based page number.
|
|
18
|
+
*
|
|
19
|
+
* @deprecated Writing to this is a silent `setPage`: the page changes and the URL slice is
|
|
20
|
+
* written, but `onPageChange` does not fire, so the table keeps showing the previous page's
|
|
21
|
+
* rows. Call `goToPage(page)` to change the page and load, or `setPage(page)` to seed it
|
|
22
|
+
* deliberately without loading. Reading stays fully supported.
|
|
23
|
+
*/
|
|
17
24
|
currentPage: number;
|
|
18
25
|
/** Total number of pages */
|
|
19
26
|
readonly pages: number;
|
|
@@ -32,6 +39,20 @@ export interface UseDataTablePaginationReturn {
|
|
|
32
39
|
setPage: (page: number) => void;
|
|
33
40
|
/** Reset to page 1. Does NOT fire onPageChange. */
|
|
34
41
|
reset: () => void;
|
|
42
|
+
/**
|
|
43
|
+
* The page seeded from the blade URL at setup, or `undefined` when nothing was restored.
|
|
44
|
+
*
|
|
45
|
+
* A restore deliberately does not fire `onPageChange` — that would cause a duplicate load —
|
|
46
|
+
* so without this the consumer had no way to know it happened, and an unconditional first
|
|
47
|
+
* load at `skip: 0` left the paginator on page N showing page 1's rows (VCST-5664).
|
|
48
|
+
*
|
|
49
|
+
* Read it, or simply always pass `skip` to the first load, which is correct either way.
|
|
50
|
+
*
|
|
51
|
+
* Optional on purpose: consumers build this interface by hand to re-expose a nested
|
|
52
|
+
* pagination (a facade over two views, say), and a required property would break every one
|
|
53
|
+
* of them at compile time. Our own composable always provides it.
|
|
54
|
+
*/
|
|
55
|
+
readonly restoredPage?: number;
|
|
35
56
|
}
|
|
36
57
|
export declare function useDataTablePagination(options: UseDataTablePaginationOptions): UseDataTablePaginationReturn;
|
|
37
58
|
//# sourceMappingURL=useDataTablePagination.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDataTablePagination.d.ts","sourceRoot":"","sources":["../../../ui/composables/useDataTablePagination.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0C,KAAK,gBAAgB,EAAW,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"useDataTablePagination.d.ts","sourceRoot":"","sources":["../../../ui/composables/useDataTablePagination.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0C,KAAK,gBAAgB,EAAW,MAAM,KAAK,CAAC;AAM7F,MAAM,WAAW,6BAA6B;IAC5C,kCAAkC;IAClC,QAAQ,CAAC,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACpC,oDAAoD;IACpD,UAAU,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACrC,qEAAqE;IACrE,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAC/D,8EAA8E;IAC9E,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,4BAA4B;IAC3C;;;;;;;OAOG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB,4BAA4B;IAC5B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,wDAAwD;IACxD,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,yBAAyB;IACzB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,mEAAmE;IACnE,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,mEAAmE;IACnE,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC;;;OAGG;IACH,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,mDAAmD;IACnD,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAC;CAChC;AAED,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,6BAA6B,GAAG,4BAA4B,CAkF3G"}
|
package/dist/ui/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as o, a as l, b as c, c as t, d as r, e as u, f as V, g as n, h as p, i, j as b, C as d, k as C, S as T, l as S, m as g, n as m, o as A, p as B, q as I, T as y, r as L, s as M, t as h, u as w, v as D, w as R, x as v, V as x, y as E, z as F, A as G, B as P, D as f, E as k, F as H, G as W, H as _, I as O, J as U, K, L as N, M as j, N as z, O as Z, P as q, Q as J, R as Q, U as X, W as Y, X as $, Y as aa, Z as ea, $ as sa, a0 as oa, a1 as la, a2 as ca, a3 as ta, a4 as ra, a5 as ua, a6 as Va, a7 as na, a8 as pa, a9 as ia, aa as ba, ab as da, ac as Ca, ad as Ta, ae as Sa, af as ga, ag as ma, ah as Aa, ai as Ba, aj as Ia, ak as ya, al as La, am as Ma, an as ha, ao as wa, ap as Da, aq as Ra, ar as va, as as xa, at as Ea, au as Fa, av as Ga, aw as Pa, ax as fa, ay as ka, az as Ha, aA as Wa, aB as _a, aC as Oa, aD as Ua, aE as Ka, aF as Na, aG as ja, aH as za, aI as Za, aJ as qa, aK as Ja, aL as Qa, aM as Xa, aN as Ya, aO as $a, aP as ae, aQ as ee, aR as se, aS as oe, aT as le, aU as ce, aV as te, aW as re, aX as ue, aY as Ve, aZ as ne, a_ as pe, a$ as ie, b0 as be, b1 as de, b2 as Ce, b3 as Te, b4 as Se, aF as ge } from "../chunks/VcScheduler.vue_vue_type_script_setup_true_lang-
|
|
2
|
-
import { B as Ae, _ as Be, a as Ie, b as ye, c as Le, V as Me, d as he, e as we, f as De, g as Re, h as ve, i as xe, j as Ee, l as Fe, p as Ge, u as Pe, k as fe, m as ke, n as He, o as We, l as _e } from "../chunks/VcScheduler.vue_vue_type_style_index_0_lang-
|
|
3
|
-
import { _ as Ue, a as Ke, u as Ne } from "../chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-
|
|
1
|
+
import { _ as o, a as l, b as c, c as t, d as r, e as u, f as V, g as n, h as p, i, j as b, C as d, k as C, S as T, l as S, m as g, n as m, o as A, p as B, q as I, T as y, r as L, s as M, t as h, u as w, v as D, w as R, x as v, V as x, y as E, z as F, A as G, B as P, D as f, E as k, F as H, G as W, H as _, I as O, J as U, K, L as N, M as j, N as z, O as Z, P as q, Q as J, R as Q, U as X, W as Y, X as $, Y as aa, Z as ea, $ as sa, a0 as oa, a1 as la, a2 as ca, a3 as ta, a4 as ra, a5 as ua, a6 as Va, a7 as na, a8 as pa, a9 as ia, aa as ba, ab as da, ac as Ca, ad as Ta, ae as Sa, af as ga, ag as ma, ah as Aa, ai as Ba, aj as Ia, ak as ya, al as La, am as Ma, an as ha, ao as wa, ap as Da, aq as Ra, ar as va, as as xa, at as Ea, au as Fa, av as Ga, aw as Pa, ax as fa, ay as ka, az as Ha, aA as Wa, aB as _a, aC as Oa, aD as Ua, aE as Ka, aF as Na, aG as ja, aH as za, aI as Za, aJ as qa, aK as Ja, aL as Qa, aM as Xa, aN as Ya, aO as $a, aP as ae, aQ as ee, aR as se, aS as oe, aT as le, aU as ce, aV as te, aW as re, aX as ue, aY as Ve, aZ as ne, a_ as pe, a$ as ie, b0 as be, b1 as de, b2 as Ce, b3 as Te, b4 as Se, aF as ge } from "../chunks/VcScheduler.vue_vue_type_script_setup_true_lang-D73V_F2S.js";
|
|
2
|
+
import { B as Ae, _ as Be, a as Ie, b as ye, c as Le, V as Me, d as he, e as we, f as De, g as Re, h as ve, i as xe, j as Ee, l as Fe, p as Ge, u as Pe, k as fe, m as ke, n as He, o as We, l as _e } from "../chunks/VcScheduler.vue_vue_type_style_index_0_lang-BTg4PjTB.js";
|
|
3
|
+
import { _ as Ue, a as Ke, u as Ne } from "../chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-CZdY18Hq.js";
|
|
4
4
|
import "vue";
|
|
5
5
|
export {
|
|
6
6
|
Ae as ButtonGroupKey,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/framework",
|
|
3
|
-
"version": "2.4.0-
|
|
3
|
+
"version": "2.4.0-pr295.d5bed36",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/framework.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -148,9 +148,9 @@
|
|
|
148
148
|
"@types/js-beautify": "^1.14.3",
|
|
149
149
|
"@types/semver": "^7.7.1",
|
|
150
150
|
"@types/sortablejs": "^1.15.9",
|
|
151
|
-
"@vc-shell/api-client-generator": "2.4.0-
|
|
152
|
-
"@vc-shell/config-generator": "2.4.0-
|
|
153
|
-
"@vc-shell/ts-config": "2.4.0-
|
|
151
|
+
"@vc-shell/api-client-generator": "2.4.0-pr295.d5bed36",
|
|
152
|
+
"@vc-shell/config-generator": "2.4.0-pr295.d5bed36",
|
|
153
|
+
"@vc-shell/ts-config": "2.4.0-pr295.d5bed36",
|
|
154
154
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
155
155
|
"@vue/test-utils": "^2.4.5",
|
|
156
156
|
"cypress-signalr-mock": "^1.5.0",
|