@vc-shell/framework 2.0.5 → 2.0.6-pr232.5b58c86
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/CHANGELOG.md +6 -0
- package/dist/ai-agent/index.js +2 -2
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-D5HgEXFw.js → VcAiAgentPanel.vue_vue_type_style_index_0_lang-Y09G7Gnw.js} +659 -720
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-D5HgEXFw.js.map → VcAiAgentPanel.vue_vue_type_style_index_0_lang-Y09G7Gnw.js.map} +1 -1
- package/dist/chunks/{VcTableAdapter.vue_vue_type_style_index_0_lang-HqgHfIV-.js → VcTableAdapter.vue_vue_type_style_index_0_lang-By-yf14g.js} +3368 -3345
- package/dist/chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-By-yf14g.js.map +1 -0
- package/dist/chunks/index-B78ceaW1.js +45 -0
- package/dist/chunks/index-B78ceaW1.js.map +1 -0
- package/dist/chunks/vendor-lodash-es-D2n90GJy.js +1436 -0
- package/dist/chunks/vendor-lodash-es-D2n90GJy.js.map +1 -0
- package/dist/core/plugins/ai-agent/composables/index.d.ts +1 -1
- package/dist/core/plugins/ai-agent/composables/index.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/composables/useAiAgent.d.ts +2 -2
- package/dist/core/plugins/ai-agent/composables/useAiAgent.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/composables/useAiAgentContext.d.ts +7 -18
- package/dist/core/plugins/ai-agent/composables/useAiAgentContext.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/constants.d.ts +0 -5
- package/dist/core/plugins/ai-agent/constants.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/index.d.ts +1 -1
- package/dist/core/plugins/ai-agent/index.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/public.d.ts +1 -1
- package/dist/core/plugins/ai-agent/public.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/services/ai-agent-service.d.ts +1 -5
- package/dist/core/plugins/ai-agent/services/ai-agent-service.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/services/message-transport.d.ts +1 -3
- package/dist/core/plugins/ai-agent/services/message-transport.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/types.d.ts +1 -44
- package/dist/core/plugins/ai-agent/types.d.ts.map +1 -1
- package/dist/framework.js +8 -8
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/molecules/vc-dropdown-panel/panel-anchor-registry.d.ts +1 -1
- package/dist/ui/components/molecules/vc-dropdown-panel/panel-anchor-registry.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-dropdown-panel/vc-dropdown-panel.vue.d.ts +4 -4
- package/dist/ui/components/molecules/vc-dropdown-panel/vc-dropdown-panel.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-data-table/VcDataTable.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-data-table/VcTableAdapter.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-data-table/components/GlobalFiltersPanel.vue.d.ts +4 -3
- package/dist/ui/components/organisms/vc-data-table/components/GlobalFiltersPanel.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-data-table/components/TableColumnSwitcher.vue.d.ts +4 -3
- package/dist/ui/components/organisms/vc-data-table/components/TableColumnSwitcher.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-data-table/composables/useTableColumns.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-data-table/composables/useTableColumnsResize.d.ts +1 -1
- package/dist/ui/components/organisms/vc-data-table/composables/useTableColumnsResize.d.ts.map +1 -1
- package/dist/ui/composables/useFloatingPosition.d.ts +2 -2
- package/dist/ui/composables/useFloatingPosition.d.ts.map +1 -1
- package/dist/ui/index.js +2 -2
- package/package.json +4 -4
- package/dist/chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-HqgHfIV-.js.map +0 -1
- package/dist/chunks/index-CacTeJdd.js +0 -117
- package/dist/chunks/index-CacTeJdd.js.map +0 -1
- package/dist/chunks/vendor-lodash-es-CfnUOh0o.js +0 -1490
- package/dist/chunks/vendor-lodash-es-CfnUOh0o.js.map +0 -1
- package/dist/core/plugins/ai-agent/utils/deep-merge-changes.d.ts +0 -16
- package/dist/core/plugins/ai-agent/utils/deep-merge-changes.d.ts.map +0 -1
- package/dist/core/plugins/ai-agent/utils/index.d.ts +0 -2
- package/dist/core/plugins/ai-agent/utils/index.d.ts.map +0 -1
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Shared registry for opened dropdown panels and their anchor elements.
|
|
3
3
|
* Must be module-scoped so nested panel instances can see each other.
|
|
4
4
|
*/
|
|
5
|
-
export declare const panelAnchorRegistry: WeakMap<Element,
|
|
5
|
+
export declare const panelAnchorRegistry: WeakMap<Element, Element | null>;
|
|
6
6
|
//# sourceMappingURL=panel-anchor-registry.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel-anchor-registry.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-dropdown-panel/panel-anchor-registry.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"panel-anchor-registry.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-dropdown-panel/panel-anchor-registry.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB,kCAAyC,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { type Placement } from "@floating-ui/vue";
|
|
1
|
+
import { type Placement, type ReferenceElement } from "@floating-ui/vue";
|
|
2
2
|
interface Props {
|
|
3
3
|
/** Whether the panel is visible (v-model:show) */
|
|
4
4
|
show: boolean;
|
|
5
|
-
/** Anchor
|
|
6
|
-
anchorRef?:
|
|
5
|
+
/** Anchor for positioning — accepts an HTMLElement or a floating-ui VirtualElement (`{ getBoundingClientRect, contextElement? }`). Use a VirtualElement when the underlying DOM root can swap dynamically (e.g. wrapping a component whose root element changes via v-if). */
|
|
6
|
+
anchorRef?: ReferenceElement | null;
|
|
7
7
|
/** Panel header title (hidden if empty and no #header slot) */
|
|
8
8
|
title?: string;
|
|
9
9
|
/** Floating UI placement */
|
|
@@ -45,7 +45,7 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {
|
|
|
45
45
|
closeOnClickOutside: boolean;
|
|
46
46
|
closeOnEscape: boolean;
|
|
47
47
|
maxWidth: string;
|
|
48
|
-
anchorRef:
|
|
48
|
+
anchorRef: ReferenceElement | null;
|
|
49
49
|
contentScrollable: boolean;
|
|
50
50
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
51
51
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vc-dropdown-panel.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-dropdown-panel/vc-dropdown-panel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vc-dropdown-panel.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/molecules/vc-dropdown-panel/vc-dropdown-panel.vue"],"names":[],"mappings":"AAqVA,OAAO,EAA6B,KAAK,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAKpG,UAAU,KAAK;IACb,kDAAkD;IAClD,IAAI,EAAE,OAAO,CAAC;IACd,8QAA8Q;IAC9Q,SAAS,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACpC,+DAA+D;IAC/D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4BAA4B;IAC5B,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,sBAAsB;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sBAAsB;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2DAA2D;IAC3D,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,kCAAkC;IAClC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,0BAA0B;IAC1B,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAsRD,QAAA,IAAI,QAAQ;;CAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACpE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAO/C,QAAA,MAAM,UAAU;;;;;;;WAhTN,MAAM;WAIN,MAAM;eAIF,MAAM;eANN,SAAS;yBAUC,OAAO;mBAEb,OAAO;cARZ,MAAM;eARL,gBAAgB,GAAG,IAAI;uBAYf,OAAO;6EA2S3B,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VcDataTable.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-data-table/VcDataTable.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"VcDataTable.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-data-table/VcDataTable.vue"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VcTableAdapter.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-data-table/VcTableAdapter.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VcTableAdapter.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/organisms/vc-data-table/VcTableAdapter.vue"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { GlobalFilterConfig } from "../../../../components/organisms/vc-data-table/types";
|
|
2
|
+
import type { ReferenceElement } from "@floating-ui/vue";
|
|
2
3
|
interface Props {
|
|
3
4
|
/** List of filter configurations (id, label, type, options) */
|
|
4
5
|
filters: GlobalFilterConfig[];
|
|
@@ -6,8 +7,8 @@ interface Props {
|
|
|
6
7
|
modelValue: Record<string, unknown>;
|
|
7
8
|
/** Whether panel is visible */
|
|
8
9
|
show: boolean;
|
|
9
|
-
/** Anchor
|
|
10
|
-
anchorRef?:
|
|
10
|
+
/** Anchor for positioning the floating panel — HTMLElement or floating-ui VirtualElement. */
|
|
11
|
+
anchorRef?: ReferenceElement | null;
|
|
11
12
|
}
|
|
12
13
|
declare var __VLS_11: `filter-${string}`, __VLS_12: {
|
|
13
14
|
value: unknown;
|
|
@@ -32,7 +33,7 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, i
|
|
|
32
33
|
onApply?: ((args_0: Record<string, unknown>) => any) | undefined;
|
|
33
34
|
"onUpdate:show"?: ((args_0: boolean) => any) | undefined;
|
|
34
35
|
}>, {
|
|
35
|
-
anchorRef:
|
|
36
|
+
anchorRef: ReferenceElement | null;
|
|
36
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
37
38
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
38
39
|
declare const _default: typeof __VLS_export;
|
package/dist/ui/components/organisms/vc-data-table/components/GlobalFiltersPanel.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalFiltersPanel.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/components/GlobalFiltersPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GlobalFiltersPanel.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/components/GlobalFiltersPanel.vue"],"names":[],"mappings":"AA2dA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAGvF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEzD,UAAU,KAAK;IACb,+DAA+D;IAC/D,OAAO,EAAE,kBAAkB,EAAE,CAAC;IAC9B,4DAA4D;IAC5D,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACpC,+BAA+B;IAC/B,IAAI,EAAE,OAAO,CAAC;IACd,6FAA6F;IAC7F,SAAS,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAC;CACrC;AAuxBD,QAAA,IAAI,QAAQ,oBAAW,EAAE,QAAQ;;uBAjgBb,OAAO;CAigBgB,EAAE,QAAQ,oBAAW,EAAE,QAAQ;;uBAvOtD,OAAO;CAuO2D,CAAE;AACxF,KAAK,WAAW,GAAG,EAAE,GACnB;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,GACzE;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,CAAC;AAM5E,QAAA,MAAM,UAAU;;;;;;;;;;;eAjyBF,gBAAgB,GAAG,IAAI;6EAqyBnC,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ReferenceElement } from "@floating-ui/vue";
|
|
1
2
|
interface Column {
|
|
2
3
|
id: string;
|
|
3
4
|
label?: string;
|
|
@@ -12,8 +13,8 @@ interface Props {
|
|
|
12
13
|
visibleColumns?: string[];
|
|
13
14
|
/** Whether panel is visible */
|
|
14
15
|
show: boolean;
|
|
15
|
-
/** Anchor
|
|
16
|
-
anchorRef?:
|
|
16
|
+
/** Anchor for positioning the floating panel — HTMLElement or floating-ui VirtualElement. */
|
|
17
|
+
anchorRef?: ReferenceElement | null;
|
|
17
18
|
}
|
|
18
19
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
20
|
reset: () => any;
|
|
@@ -24,7 +25,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
|
|
|
24
25
|
"onUpdate:show"?: ((args_0: boolean) => any) | undefined;
|
|
25
26
|
"onUpdate:visibleColumns"?: ((columnIds: string[]) => any) | undefined;
|
|
26
27
|
}>, {
|
|
27
|
-
anchorRef:
|
|
28
|
+
anchorRef: ReferenceElement | null;
|
|
28
29
|
visibleColumns: string[];
|
|
29
30
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
31
|
declare const _default: typeof __VLS_export;
|
package/dist/ui/components/organisms/vc-data-table/components/TableColumnSwitcher.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableColumnSwitcher.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/components/TableColumnSwitcher.vue"],"names":[],"mappings":"AAyJA,UAAU,MAAM;IACd,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,wDAAwD;IACxD,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,UAAU,KAAK;IACb,4DAA4D;IAC5D,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,oDAAoD;IACpD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,+BAA+B;IAC/B,IAAI,EAAE,OAAO,CAAC;IACd,
|
|
1
|
+
{"version":3,"file":"TableColumnSwitcher.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/components/TableColumnSwitcher.vue"],"names":[],"mappings":"AAyJA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEzD,UAAU,MAAM;IACd,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,wDAAwD;IACxD,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,UAAU,KAAK;IACb,4DAA4D;IAC5D,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,oDAAoD;IACpD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,+BAA+B;IAC/B,IAAI,EAAE,OAAO,CAAC;IACd,6FAA6F;IAC7F,SAAS,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAC;CACrC;AAgND,QAAA,MAAM,YAAY;;;;;;;;;eAjNJ,gBAAgB,GAAG,IAAI;oBAJlB,MAAM,EAAE;6EAyNzB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTableColumns.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/composables/useTableColumns.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,EAAwB,KAAK,GAAG,EAAE,KAAK,WAAW,EAAE,MAAM,KAAK,CAAC;AACvE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8DAA8D,CAAC;AAEnG,OAAO,KAAK,EACV,aAAa,EACb,WAAW,EAEX,YAAY,EACb,MAAM,8CAA8C,CAAC;AACtD,OAAO,EAML,KAAK,YAAY,EAClB,MAAM,wBAAwB,CAAC;AAEhC,MAAM,WAAW,sBAAsB;IACrC,cAAc,EAAE,GAAG,CAAC,cAAc,EAAE,CAAC,GAAG,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;IACtE,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,MAAM,CAAC;CACjC;AAED,MAAM,WAAW,qBAAqB;IAEpC,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC;IAC9B,YAAY,EAAE,GAAG,CAAC,YAAY,CAAC,CAAC;IAChC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAGrC,YAAY,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,IAAI,CAAC;IAG9B,qBAAqB,EAAE,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;IACrD,YAAY,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAGlC,eAAe,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACjD,iBAAiB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACnD,mBAAmB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACrD,qBAAqB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACvD,uBAAuB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,SAAS,CAAC;IACpE,cAAc,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAChF,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAC9E,cAAc,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,SAAS,CAAC;IAC3D,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,SAAS,CAAC;IACzD,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,CAAC;CAC9C;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,qBAAqB,
|
|
1
|
+
{"version":3,"file":"useTableColumns.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/composables/useTableColumns.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,EAAwB,KAAK,GAAG,EAAE,KAAK,WAAW,EAAE,MAAM,KAAK,CAAC;AACvE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8DAA8D,CAAC;AAEnG,OAAO,KAAK,EACV,aAAa,EACb,WAAW,EAEX,YAAY,EACb,MAAM,8CAA8C,CAAC;AACtD,OAAO,EAML,KAAK,YAAY,EAClB,MAAM,wBAAwB,CAAC;AAEhC,MAAM,WAAW,sBAAsB;IACrC,cAAc,EAAE,GAAG,CAAC,cAAc,EAAE,CAAC,GAAG,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;IACtE,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,MAAM,CAAC;CACjC;AAED,MAAM,WAAW,qBAAqB;IAEpC,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC;IAC9B,YAAY,EAAE,GAAG,CAAC,YAAY,CAAC,CAAC;IAChC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAGrC,YAAY,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,IAAI,CAAC;IAG9B,qBAAqB,EAAE,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;IACrD,YAAY,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAGlC,eAAe,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACjD,iBAAiB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACnD,mBAAmB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACrD,qBAAqB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,OAAO,CAAC;IACvD,uBAAuB,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,SAAS,CAAC;IACpE,cAAc,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAChF,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAC9E,cAAc,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,SAAS,CAAC;IAC3D,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,GAAG,SAAS,CAAC;IACzD,YAAY,EAAE,CAAC,GAAG,EAAE,aAAa,KAAK,MAAM,CAAC;CAC9C;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,qBAAqB,CAmWtF"}
|
|
@@ -21,7 +21,7 @@ export interface UseTableColumnsResizeOptions {
|
|
|
21
21
|
* On drag start, snapshots current weights.
|
|
22
22
|
* During drag, converts pixel delta to weight delta and redistributes
|
|
23
23
|
* among right neighbors. On end, commits to columnState.
|
|
24
|
-
* Container resize calls recompute()
|
|
24
|
+
* Container resize calls recompute() immediately on the first tick, then rAF-throttled.
|
|
25
25
|
*/
|
|
26
26
|
export declare function useTableColumnsResize(options: UseTableColumnsResizeOptions): {
|
|
27
27
|
isResizing: Ref<boolean, boolean>;
|
package/dist/ui/components/organisms/vc-data-table/composables/useTableColumnsResize.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTableColumnsResize.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/composables/useTableColumnsResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,GAAG,EAAmB,MAAM,KAAK,CAAC;AAC5D,OAAO,KAAK,EAAE,WAAW,EAAc,MAAM,UAAU,CAAC;AACxD,OAAO,EAAyB,KAAK,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAElF,MAAM,WAAW,4BAA4B;IAC3C,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC;IAC9B,YAAY,EAAE,GAAG,CAAC,YAAY,CAAC,CAAC;IAChC,iFAAiF;IACjF,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,gFAAgF;IAChF,iBAAiB,EAAE,MAAM,MAAM,CAAC;IAChC,gFAAgF;IAChF,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uFAAuF;IACvF,0BAA0B,CAAC,EAAE,MAAM,MAAM,EAAE,CAAC;IAC5C,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,WAAW,CAAC,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CACvC;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,4BAA4B;;kCAyCpC,MAAM,SAAS,UAAU;mCAyIxB,MAAM,SAAS,MAAM;;;;4BAIrC,MAAM,GAAG,SAAS,KAAK,UAAU;;
|
|
1
|
+
{"version":3,"file":"useTableColumnsResize.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/organisms/vc-data-table/composables/useTableColumnsResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,GAAG,EAAmB,MAAM,KAAK,CAAC;AAC5D,OAAO,KAAK,EAAE,WAAW,EAAc,MAAM,UAAU,CAAC;AACxD,OAAO,EAAyB,KAAK,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAElF,MAAM,WAAW,4BAA4B;IAC3C,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC;IAC9B,YAAY,EAAE,GAAG,CAAC,YAAY,CAAC,CAAC;IAChC,iFAAiF;IACjF,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,gFAAgF;IAChF,iBAAiB,EAAE,MAAM,MAAM,CAAC;IAChC,gFAAgF;IAChF,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uFAAuF;IACvF,0BAA0B,CAAC,EAAE,MAAM,MAAM,EAAE,CAAC;IAC5C,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,WAAW,CAAC,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CACvC;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,4BAA4B;;kCAyCpC,MAAM,SAAS,UAAU;mCAyIxB,MAAM,SAAS,MAAM;;;;4BAIrC,MAAM,GAAG,SAAS,KAAK,UAAU;;EAoFxD"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Middleware, type Placement, type Strategy } from "@floating-ui/vue";
|
|
1
|
+
import { type Middleware, type Placement, type ReferenceElement, type Strategy } from "@floating-ui/vue";
|
|
2
2
|
import { type MaybeRefOrGetter, type Ref } from "vue";
|
|
3
3
|
export interface FloatingOffset {
|
|
4
4
|
mainAxis?: number;
|
|
@@ -18,7 +18,7 @@ export interface UseFloatingPositionOptions {
|
|
|
18
18
|
/**
|
|
19
19
|
* Shared floating-ui adapter with reactive placement/offset defaults.
|
|
20
20
|
*/
|
|
21
|
-
export declare function useFloatingPosition(referenceEl: Ref<
|
|
21
|
+
export declare function useFloatingPosition(referenceEl: Ref<ReferenceElement | null>, floatingEl: Ref<HTMLElement | null>, options?: UseFloatingPositionOptions): {
|
|
22
22
|
floatingStyle: import("vue").ComputedRef<{
|
|
23
23
|
position: Strategy;
|
|
24
24
|
top: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useFloatingPosition.d.ts","sourceRoot":"","sources":["../../../ui/composables/useFloatingPosition.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,KAAK,UAAU,EACf,KAAK,SAAS,EACd,KAAK,QAAQ,EACd,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAqB,KAAK,gBAAgB,EAAE,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AAEzE,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,0BAA0B;IACzC,SAAS,CAAC,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IACtC,MAAM,CAAC,EAAE,gBAAgB,CAAC,cAAc,GAAG,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/D,UAAU,CAAC,EAAE,gBAAgB,CAAC,UAAU,EAAE,GAAG,SAAS,CAAC,CAAC;IACxD,UAAU,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACvC,WAAW,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACxC,UAAU,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACvC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,WAAW,EAAE,GAAG,CAAC,
|
|
1
|
+
{"version":3,"file":"useFloatingPosition.d.ts","sourceRoot":"","sources":["../../../ui/composables/useFloatingPosition.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,KAAK,UAAU,EACf,KAAK,SAAS,EACd,KAAK,gBAAgB,EACrB,KAAK,QAAQ,EACd,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAqB,KAAK,gBAAgB,EAAE,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AAEzE,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,0BAA0B;IACzC,SAAS,CAAC,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IACtC,MAAM,CAAC,EAAE,gBAAgB,CAAC,cAAc,GAAG,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/D,UAAU,CAAC,EAAE,gBAAgB,CAAC,UAAU,EAAE,GAAG,SAAS,CAAC,CAAC;IACxD,UAAU,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACvC,WAAW,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACxC,UAAU,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACvC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,WAAW,EAAE,GAAG,CAAC,gBAAgB,GAAG,IAAI,CAAC,EACzC,UAAU,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EACnC,OAAO,GAAE,0BAA+B;;;;;;;;;;;;;;;;;;iBA2D89J,CAAC;kBAA6B,CAAC;;;EADtiK"}
|
package/dist/ui/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as o, _ as l, a as c, b as t, c as r, d as u, e as V, f as n, g as p, h as i, i as b, j as d, C, k as T, l as g, m as S, n as A, o as m, p as B, q as I, T as y, r as w, s as M, t as D, u as R, v as L, w as h, x as G, V as P, y as k, z as v, A as x, D as F, E as f, F as H, G as W, H as E, I as K, J as N, K as U, L as j, M as z, N as O, O as Q, P as _, Q as q, R as J, S as X, U as Y, W as Z, 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 ga, af as Sa, ag as Aa, ah as ma, ai as Ba, aj as Ia, ak as ya, al as wa, am as Ma, an as Da, ao as Ra, ap as La, aq as ha, ar as Ga, as as Pa, at as ka, au as va, av as xa, aw as Fa, ax as fa, ay as Ha, az as Wa, aA as Ea, aB as Ka, aC as Na, aD as Ua, aE as ja, aF as za, aG as Oa, aH as Qa, aI as _a, aJ as qa, aK as Ja, aL as Xa, aM as Ya, aN as Za, 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 ge, b5 as Se, b6 as Ae, b7 as me, b8 as Be, b9 as Ie, ba as ye, bb as we, bc as Me, bd as De, be as Re, bf as Le, bg as he, bh as Ge, bi as Pe, bj as ke, bk as ve, bl as xe, bm as Fe, aQ as fe, aR as He } from "../chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-
|
|
2
|
-
import { _ as Ee } from "../chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-
|
|
1
|
+
import { B as o, _ as l, a as c, b as t, c as r, d as u, e as V, f as n, g as p, h as i, i as b, j as d, C, k as T, l as g, m as S, n as A, o as m, p as B, q as I, T as y, r as w, s as M, t as D, u as R, v as L, w as h, x as G, V as P, y as k, z as v, A as x, D as F, E as f, F as H, G as W, H as E, I as K, J as N, K as U, L as j, M as z, N as O, O as Q, P as _, Q as q, R as J, S as X, U as Y, W as Z, 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 ga, af as Sa, ag as Aa, ah as ma, ai as Ba, aj as Ia, ak as ya, al as wa, am as Ma, an as Da, ao as Ra, ap as La, aq as ha, ar as Ga, as as Pa, at as ka, au as va, av as xa, aw as Fa, ax as fa, ay as Ha, az as Wa, aA as Ea, aB as Ka, aC as Na, aD as Ua, aE as ja, aF as za, aG as Oa, aH as Qa, aI as _a, aJ as qa, aK as Ja, aL as Xa, aM as Ya, aN as Za, 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 ge, b5 as Se, b6 as Ae, b7 as me, b8 as Be, b9 as Ie, ba as ye, bb as we, bc as Me, bd as De, be as Re, bf as Le, bg as he, bh as Ge, bi as Pe, bj as ke, bk as ve, bl as xe, bm as Fe, aQ as fe, aR as He } from "../chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-By-yf14g.js";
|
|
2
|
+
import { _ as Ee } from "../chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-Y09G7Gnw.js";
|
|
3
3
|
import "vue";
|
|
4
4
|
export {
|
|
5
5
|
o as ButtonGroupKey,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/framework",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6-pr232.5b58c86",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/framework.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -135,9 +135,9 @@
|
|
|
135
135
|
"@types/dompurify": "^3.0.5",
|
|
136
136
|
"@types/semver": "^7.7.1",
|
|
137
137
|
"@types/sortablejs": "^1.15.9",
|
|
138
|
-
"@vc-shell/api-client-generator": "2.0.
|
|
139
|
-
"@vc-shell/config-generator": "2.0.
|
|
140
|
-
"@vc-shell/ts-config": "2.0.
|
|
138
|
+
"@vc-shell/api-client-generator": "2.0.6-pr232.5b58c86",
|
|
139
|
+
"@vc-shell/config-generator": "2.0.6-pr232.5b58c86",
|
|
140
|
+
"@vc-shell/ts-config": "2.0.6-pr232.5b58c86",
|
|
141
141
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
142
142
|
"@vue/test-utils": "^2.4.5",
|
|
143
143
|
"cypress-signalr-mock": "^1.5.0",
|