@vc-shell/framework 2.0.10-pr246.61f3e38 → 2.0.10-pr247.f47cc74
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 +2 -2
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-D077_c8I.js → VcAiAgentPanel.vue_vue_type_style_index_0_lang-CThvtYtw.js} +426 -431
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-D077_c8I.js.map → VcAiAgentPanel.vue_vue_type_style_index_0_lang-CThvtYtw.js.map} +1 -1
- package/dist/chunks/{VcTableAdapter.vue_vue_type_style_index_0_lang-B3154ZmD.js → VcTableAdapter.vue_vue_type_style_index_0_lang-DioMlB3f.js} +776 -776
- package/dist/chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-DioMlB3f.js.map +1 -0
- package/dist/chunks/{index-DELXU1qy.js → index-0btrtSam.js} +1 -1
- package/dist/chunks/{index-DELXU1qy.js.map → index-0btrtSam.js.map} +1 -1
- package/dist/core/blade-navigation/index.d.ts.map +1 -1
- package/dist/core/blade-navigation/table-query-state/useTableQueryState.d.ts +5 -11
- package/dist/core/blade-navigation/table-query-state/useTableQueryState.d.ts.map +1 -1
- package/dist/core/composables/useBlade/index.d.ts +0 -2
- package/dist/core/composables/useBlade/index.d.ts.map +1 -1
- package/dist/framework.js +76 -77
- package/dist/framework.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +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/components/VcColumn.vue.d.ts +1 -1
- package/dist/ui/composables/index.d.ts +1 -0
- package/dist/ui/composables/index.d.ts.map +1 -1
- package/dist/ui/composables/useDataTablePagination.d.ts +3 -1
- package/dist/ui/composables/useDataTablePagination.d.ts.map +1 -1
- package/dist/ui/composables/useDataTableSort.d.ts +2 -0
- package/dist/ui/composables/useDataTableSort.d.ts.map +1 -1
- package/dist/ui/composables/useTableSearch.d.ts +18 -0
- package/dist/ui/composables/useTableSearch.d.ts.map +1 -0
- package/dist/ui/index.js +29 -28
- package/package.json +4 -4
- package/dist/chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-B3154ZmD.js.map +0 -1
- package/dist/ui/components/organisms/vc-data-table/composables/useTableQueryPersistence.d.ts +0 -24
- package/dist/ui/components/organisms/vc-data-table/composables/useTableQueryPersistence.d.ts.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { inject as c, computed as b, watch as _, onUnmounted as m } from "vue";
|
|
2
|
-
import { b as v, B as y, d as p, D as C, A as x } from "./VcAiAgentPanel.vue_vue_type_style_index_0_lang-
|
|
2
|
+
import { b as v, B as y, d as p, D as C, A as x } from "./VcAiAgentPanel.vue_vue_type_style_index_0_lang-CThvtYtw.js";
|
|
3
3
|
const s = p("use-ai-agent-context");
|
|
4
4
|
function D(e) {
|
|
5
5
|
return Array.isArray(e.value);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-0btrtSam.js","sources":["../../core/plugins/ai-agent/composables/useAiAgentContext.ts","../../core/plugins/ai-agent/index.ts"],"sourcesContent":["import { inject, computed, watch, onUnmounted, type Ref } from \"vue\";\nimport { AiAgentServiceKey } from \"@framework/injection-keys\";\nimport { BladeDescriptorKey } from \"@core/blade-navigation/types\";\nimport type { IAiAgentServiceInternal } from \"@core/plugins/ai-agent/services/ai-agent-service\";\nimport type { UseAiAgentContextOptions, AiAgentContextType } from \"@core/plugins/ai-agent/types\";\nimport { createLogger } from \"@core/utilities\";\n\nconst logger = createLogger(\"use-ai-agent-context\");\n\n/**\n * Checks if the ref value is an array\n */\nfunction isArrayRef<T>(dataRef: Ref<T> | Ref<T[]>): dataRef is Ref<T[]> {\n return Array.isArray(dataRef.value);\n}\n\n/**\n * Normalizes any ref value to an array for sending to the AI agent\n */\nfunction normalizeToArray<T>(value: T | T[]): T[] {\n if (Array.isArray(value)) {\n return value;\n }\n return value != null ? [value] : [];\n}\n\n/**\n * Composable for binding blade data to AI agent context.\n *\n * Sends data updates to the AI agent when dataRef changes and normalizes\n * single objects to arrays for the agent protocol.\n *\n * @example List blade (array of selected items)\n * ```typescript\n * const { selectedItems } = useTableSelection<Offer>();\n *\n * useAiAgentContext({ dataRef: selectedItems });\n * ```\n *\n * @example Details blade (single object - automatically wrapped in array)\n * ```typescript\n * const offer = ref<Offer>({});\n *\n * useAiAgentContext({ dataRef: offer });\n * ```\n *\n * @example With custom suggestions\n * ```typescript\n * useAiAgentContext({\n * dataRef: offer,\n * suggestions: [\n * {\n * id: \"translate\",\n * title: \"Translate description\",\n * icon: \"translation\",\n * iconColor: \"#FF4A4A\",\n * prompt: \"Translate the offer description to English\"\n * },\n * ],\n * });\n * ```\n */\nexport function useAiAgentContext<\n T extends {\n id?: string | undefined;\n objectType?: string | undefined;\n name?: string | undefined;\n },\n>(options: UseAiAgentContextOptions<T>): void {\n const { dataRef, suggestions } = options;\n\n // Try to get the service (may not be available if plugin not installed)\n const service = inject(AiAgentServiceKey) as IAiAgentServiceInternal | undefined;\n\n // Get current blade descriptor to identify which blade this context belongs to\n const bladeDescriptor = inject(BladeDescriptorKey, null);\n const bladeId = computed(() => bladeDescriptor?.value?.id);\n\n // If service is not available, nothing to bind\n if (!service) {\n logger.debug(\"AiAgentService not available, context binding disabled\");\n return;\n }\n\n // Determine context type based on dataRef type\n // Array ref = list blade (multiple selected items)\n // Single object ref = details blade (single item being edited)\n const detectedContextType: AiAgentContextType = isArrayRef(dataRef) ? \"list\" : \"details\";\n\n // Set context data in service (items, contextType, and suggestions)\n // Always sends an array to the service, normalizing single objects\n // Context is bound to specific blade ID\n const updateContextData = () => {\n const raw = normalizeToArray(dataRef.value);\n const items =\n detectedContextType === \"details\"\n ? raw.map((item) => ({ ...item }))\n : raw.map((item) => ({ id: item.id, objectType: item.objectType, name: item.name }));\n service._setContextData(items, detectedContextType, suggestions, bladeId.value);\n logger.debug(`Context updated: ${items.length} items, type: ${detectedContextType}, blade: ${bladeId.value}`);\n };\n\n // Watch dataRef for changes and update context\n const stopWatch = watch(dataRef, updateContextData, { deep: true, immediate: true });\n\n // Cleanup on unmount\n onUnmounted(() => {\n stopWatch();\n // Clear context for this specific blade when component unmounts\n service._setContextData([], \"list\", undefined, bladeId.value);\n logger.debug(`Context cleared on unmount for blade: ${bladeId.value}`);\n });\n}\n","import type { App } from \"vue\";\r\nimport type { IAiAgentConfig } from \"@core/plugins/ai-agent/types\";\r\nimport { DEFAULT_AI_AGENT_CONFIG, AI_AGENT_URL_ENV_KEY } from \"@core/plugins/ai-agent/constants\";\r\nimport { createLogger } from \"@core/utilities\";\r\n\r\nconst logger = createLogger(\"ai-agent-plugin\");\r\n\r\n/**\r\n * Options for the AI Agent Plugin\r\n */\r\nexport interface AiAgentPluginOptions {\r\n /**\r\n * AI Agent configuration.\r\n * URL can also be set via APP_AI_AGENT_URL environment variable.\r\n */\r\n config?: Partial<IAiAgentConfig>;\r\n\r\n /**\r\n * Whether to add the AI button to all blade toolbars automatically.\r\n * Default: true\r\n */\r\n addGlobalToolbarButton?: boolean;\r\n}\r\n\r\n/**\r\n * Vue plugin for AI Agent integration.\r\n *\r\n * @example\r\n * ```typescript\r\n * import { createApp } from \"vue\";\r\n * import { aiAgentPlugin } from \"@vc-shell/framework\";\r\n *\r\n * const app = createApp(App);\r\n *\r\n * // Install with options\r\n * app.use(aiAgentPlugin, {\r\n * config: {\r\n * title: \"AI Assistant\",\r\n * width: 400,\r\n * },\r\n * addGlobalToolbarButton: true,\r\n * });\r\n * ```\r\n */\r\nexport const aiAgentPlugin = {\r\n install(app: App, options: AiAgentPluginOptions = {}) {\r\n const { config = {}, addGlobalToolbarButton = true } = options;\r\n\r\n // Get URL from environment variable if not provided\r\n let url = config.url || \"\";\r\n if (!url && typeof import.meta !== \"undefined\" && import.meta.env) {\r\n url = import.meta.env[AI_AGENT_URL_ENV_KEY] || \"\";\r\n }\r\n\r\n // Skip installation if no URL configured\r\n if (!url) {\r\n logger.info(\r\n \"AI Agent plugin skipped: no URL configured. Set APP_AI_AGENT_URL env variable or pass config.url option.\",\r\n );\r\n return;\r\n }\r\n\r\n // Merge config with defaults\r\n const finalConfig: IAiAgentConfig = {\r\n ...DEFAULT_AI_AGENT_CONFIG,\r\n ...config,\r\n url,\r\n };\r\n\r\n // Store config in app global properties for access during service creation\r\n app.config.globalProperties.$aiAgentConfig = finalConfig;\r\n app.provide(\"aiAgentConfig\", finalConfig);\r\n app.provide(\"aiAgentAddGlobalToolbarButton\", addGlobalToolbarButton);\r\n\r\n logger.info(`AI Agent plugin installed. URL: ${url}, addGlobalToolbarButton: ${addGlobalToolbarButton}`);\r\n },\r\n};\r\n\r\n// Re-export all types\r\nexport * from \"@core/plugins/ai-agent/types\";\r\nexport * from \"@core/plugins/ai-agent/constants\";\r\n\r\n// Re-export composables\r\nexport {\r\n useAiAgent,\r\n provideAiAgentService,\r\n createAiAgentToolbarButton,\r\n} from \"@core/plugins/ai-agent/composables/useAiAgent\";\r\nexport type { UseAiAgentReturn, ProvideAiAgentServiceOptions } from \"@core/plugins/ai-agent/composables/useAiAgent\";\r\n\r\nexport { useAiAgentContext } from \"@core/plugins/ai-agent/composables/useAiAgentContext\";\r\n\r\n// Re-export components\r\nexport { VcAiAgentPanel } from \"@core/plugins/ai-agent/components\";\r\n\r\n// Re-export service types\r\nexport type {\r\n IAiAgentServiceInternal,\r\n CreateAiAgentServiceOptions,\r\n} from \"@core/plugins/ai-agent/services/ai-agent-service\";\r\n"],"names":["logger","createLogger","isArrayRef","dataRef","normalizeToArray","value","useAiAgentContext","options","suggestions","service","inject","AiAgentServiceKey","bladeDescriptor","BladeDescriptorKey","bladeId","computed","detectedContextType","stopWatch","watch","raw","items","item","onUnmounted","aiAgentPlugin","app","config","addGlobalToolbarButton","url","__vite_import_meta_env__","AI_AGENT_URL_ENV_KEY","finalConfig","DEFAULT_AI_AGENT_CONFIG"],"mappings":";;AAOA,MAAMA,IAASC,EAAa,sBAAsB;AAKlD,SAASC,EAAcC,GAAiD;AACtE,SAAO,MAAM,QAAQA,EAAQ,KAAK;AACpC;AAKA,SAASC,EAAoBC,GAAqB;AAChD,SAAI,MAAM,QAAQA,CAAK,IACdA,IAEFA,KAAS,OAAO,CAACA,CAAK,IAAI,CAAA;AACnC;AAsCO,SAASC,EAMdC,GAA4C;AAC5C,QAAM,EAAE,SAAAJ,GAAS,aAAAK,EAAA,IAAgBD,GAG3BE,IAAUC,EAAOC,CAAiB,GAGlCC,IAAkBF,EAAOG,GAAoB,IAAI,GACjDC,IAAUC,EAAS,MAAMH,GAAiB,OAAO,EAAE;AAGzD,MAAI,CAACH,GAAS;AACZT,IAAAA,EAAO,MAAM,wDAAwD;AACrE;AAAA,EACF;AAKA,QAAMgB,IAA0Cd,EAAWC,CAAO,IAAI,SAAS,WAgBzEc,IAAYC,EAAMf,GAXE,MAAM;AAC9B,UAAMgB,IAAMf,EAAiBD,EAAQ,KAAK,GACpCiB,IACJJ,MAAwB,YACpBG,EAAI,IAAI,CAACE,OAAU,EAAE,GAAGA,IAAO,IAC/BF,EAAI,IAAI,CAACE,OAAU,EAAE,IAAIA,EAAK,IAAI,YAAYA,EAAK,YAAY,MAAMA,EAAK,KAAA,EAAO;AACvF,IAAAZ,EAAQ,gBAAgBW,GAAOJ,GAAqBR,GAAaM,EAAQ,KAAK,GAC9Ed,EAAO,MAAM,oBAAoBoB,EAAM,MAAM,iBAAiBJ,CAAmB,YAAYF,EAAQ,KAAK,EAAE;AAAA,EAC9G,GAGoD,EAAE,MAAM,IAAM,WAAW,IAAM;AAGnF,EAAAQ,EAAY,MAAM;AAChB,IAAAL,EAAA,GAEAR,EAAQ,gBAAgB,CAAA,GAAI,QAAQ,QAAWK,EAAQ,KAAK,GAC5Dd,EAAO,MAAM,yCAAyCc,EAAQ,KAAK,EAAE;AAAA,EACvE,CAAC;AACH;6EC3GMd,IAASC,EAAa,iBAAiB,GAuChCsB,IAAgB;AAAA,EAC3B,QAAQC,GAAUjB,IAAgC,IAAI;AACpD,UAAM,EAAE,QAAAkB,IAAS,CAAA,GAAI,wBAAAC,IAAyB,OAASnB;AAGvD,QAAIoB,IAAMF,EAAO,OAAO;AAMxB,QALI,CAACE,KAAO,OAAO,cAAgB,OAAeC,MAChDD,IAAMC,EAAgBC,CAAoB,KAAK,KAI7C,CAACF,GAAK;AACR,MAAA3B,EAAO;AAAA,QACL;AAAA,MAAA;AAEF;AAAA,IACF;AAGA,UAAM8B,IAA8B;AAAA,MAClC,GAAGC;AAAA,MACH,GAAGN;AAAA,MACH,KAAAE;AAAA,IAAA;AAIF,IAAAH,EAAI,OAAO,iBAAiB,iBAAiBM,GAC7CN,EAAI,QAAQ,iBAAiBM,CAAW,GACxCN,EAAI,QAAQ,iCAAiCE,CAAsB,GAEnE1B,EAAO,KAAK,mCAAmC2B,CAAG,6BAA6BD,CAAsB,EAAE;AAAA,EACzG;AACF;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../core/blade-navigation/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;AAC7E,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,qBAAqB,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,4CAA4C,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../core/blade-navigation/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;AAC7E,cAAc,8BAA8B,CAAC;AAC7C,OAAO,EAAE,qBAAqB,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,4CAA4C,CAAC;AACvH,OAAO,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AAC9E,YAAY,EAAE,wBAAwB,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC"}
|
|
@@ -1,20 +1,14 @@
|
|
|
1
1
|
import { type TableQueryPatch } from "./types";
|
|
2
2
|
export interface UseTableQueryStateReturn {
|
|
3
|
-
/**
|
|
4
|
-
* Read the table view state (sort/search/page) restored from the URL for this
|
|
5
|
-
* table. Returns an empty patch when no persistence service is provided (a
|
|
6
|
-
* standalone table or a non-URL blade), so callers can use it unconditionally.
|
|
7
|
-
*/
|
|
3
|
+
/** Read the restored view state for this table from the URL. `{}` when no service. */
|
|
8
4
|
read(): TableQueryPatch;
|
|
9
5
|
}
|
|
10
6
|
/**
|
|
11
|
-
*
|
|
7
|
+
* Low-level page-facing read of restored table view state. Most pages use the
|
|
8
|
+
* URL-aware state composables (useDataTableSort/useDataTablePagination/useTableSearch)
|
|
9
|
+
* instead; use this for custom cases (e.g. a hand-rolled data-layer pagination).
|
|
12
10
|
*
|
|
13
|
-
*
|
|
14
|
-
* own refs before its loader runs, so a reload makes one request. Read-only: the
|
|
15
|
-
* write-back (view state → URL) stays inside VcDataTable via useTableQueryPersistence.
|
|
16
|
-
*
|
|
17
|
-
* @param stateKey The same `state-key` passed to VcDataTable for this table.
|
|
11
|
+
* @param stateKey The same `state-key` used for this table.
|
|
18
12
|
*/
|
|
19
13
|
export declare function useTableQueryState(stateKey?: string): UseTableQueryStateReturn;
|
|
20
14
|
//# sourceMappingURL=useTableQueryState.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTableQueryState.d.ts","sourceRoot":"","sources":["../../../../core/blade-navigation/table-query-state/useTableQueryState.ts"],"names":[],"mappings":"AACA,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,SAAS,CAAC;AAEnE,MAAM,WAAW,wBAAwB;IACvC
|
|
1
|
+
{"version":3,"file":"useTableQueryState.d.ts","sourceRoot":"","sources":["../../../../core/blade-navigation/table-query-state/useTableQueryState.ts"],"names":[],"mappings":"AACA,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,SAAS,CAAC;AAEnE,MAAM,WAAW,wBAAwB;IACvC,sFAAsF;IACtF,IAAI,IAAI,eAAe,CAAC;CACzB;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,wBAAwB,CAG9E"}
|
|
@@ -4,8 +4,6 @@ export type { IBladeBanner } from "../../blade-navigation/types";
|
|
|
4
4
|
export interface UseBladeReturn<TOptions = Record<string, unknown>> {
|
|
5
5
|
readonly id: ComputedRef<string>;
|
|
6
6
|
readonly param: ComputedRef<string | undefined>;
|
|
7
|
-
/** param of the direct child blade opened from this blade, or undefined. */
|
|
8
|
-
readonly activeChildParam: ComputedRef<string | undefined>;
|
|
9
7
|
readonly options: ComputedRef<TOptions | undefined>;
|
|
10
8
|
readonly query: ComputedRef<Record<string, string> | undefined>;
|
|
11
9
|
readonly closable: ComputedRef<boolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../core/composables/useBlade/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoE,KAAK,WAAW,EAAE,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAQxH,OAAO,KAAK,EAAE,cAAc,EAAe,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC9F,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAIjE,MAAM,WAAW,cAAc,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAEhE,QAAQ,CAAC,EAAE,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChD,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../core/composables/useBlade/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoE,KAAK,WAAW,EAAE,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAQxH,OAAO,KAAK,EAAE,cAAc,EAAe,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC9F,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAIjE,MAAM,WAAW,cAAc,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAEhE,QAAQ,CAAC,EAAE,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChD,QAAQ,CAAC,OAAO,EAAE,WAAW,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IACpD,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC;IAChE,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IACxC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IACxC,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACnC,qDAAqD;IACrD,gBAAgB,CAAC,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;IAEhE,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG;QAAE,WAAW,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE5E,SAAS,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IAC9B,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAC/B,WAAW,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAClD,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEhD,UAAU,CAAC,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;IAEpE,gBAAgB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,GAAG,IAAI,CAAC;IAEzE,aAAa,CAAC,KAAK,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;IAEnD,WAAW,CAAC,QAAQ,EAAE,MAAM,IAAI,GAAG,IAAI,CAAC;IACxC,aAAa,CAAC,QAAQ,EAAE,MAAM,IAAI,GAAG,IAAI,CAAC;IAE1C,QAAQ,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;IAC/B,UAAU,IAAI,IAAI,CAAC;IAEnB,SAAS,CAAC,OAAO,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,SAAS,CAAC,GAAG,MAAM,CAAC;IACjE,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,YAAY,IAAI,IAAI,CAAC;CACtB;AAUD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAgB,QAAQ,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,cAAc,CAAC,QAAQ,CAAC,CAsQvF"}
|
package/dist/framework.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { a as ts, b as as } from "./chunks/vendor-vueuse-core-CEdpDfzx.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { bo as gt, bp as Ee, bq as ss, br as re, bs as os, bt as jt, bu as Z, bv as oe, bw as Ke, bx as ns, by as rs, aw as is, U as q, bz as qe, bA as ls, bB as cs, bC as Be, bD as ds, bE as Yt, bF as Zt, R as Xt, a2 as us, ac as he, af as mt, aa as je, ai as j, aL as fs, a3 as gs, a1 as we, aR as Jt, bG as ms, bH as ps, bI as Es, aE as hs, O as Oe, ae as me, ap as Qt, Q as vs, bJ as Ss, bK as As, bL as bs, bM as ws, aM as It, bN as Ts, bO as Ls, bP as _s, bQ as Os, bR as ys, bS as Is, bT as Rs, bU as Ps, bV as Cs, bW as Ds, bX as Ns } from "./chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-DioMlB3f.js";
|
|
3
|
+
import { bY as pd, B as Ed, _ as hd, a as vd, b as Sd, c as Ad, d as bd, e as wd, f as Td, g as Ld, h as _d, i as Od, j as yd, bZ as Id, b_ as Rd, C as Pd, b$ as Cd, c0 as Dd, c1 as Nd, c2 as kd, c3 as Bd, c4 as Md, k as Fd, c5 as Vd, c6 as $d, c7 as Ud, c8 as Wd, c9 as Gd, ca as xd, cb as Hd, l as zd, m as Kd, n as qd, o as jd, p as Yd, q as Zd, T as Xd, r as Jd, s as Qd, t as eu, u as tu, v as au, w as su, x as ou, cc as nu, cd as ru, ce as iu, V as lu, y as cu, z as du, A as uu, D as fu, E as gu, F as mu, G as pu, H as Eu, I as hu, J as vu, K as Su, L as Au, M as bu, N as wu, P as Tu, cf as Lu, cf as _u, cg as Ou, S as yu, W as Iu, X as Ru, Y as Pu, Z as Cu, $ as Du, a0 as Nu, a4 as ku, a5 as Bu, a6 as Mu, a7 as Fu, a8 as Vu, a9 as $u, ab as Uu, ad as Wu, ag as Gu, ah as xu, aj as Hu, ak as zu, al as Ku, am as qu, an as ju, ao as Yu, aq as Zu, ar as Xu, as as Ju, at as Qu, au as ef, av as tf, ax as af, ay as sf, az as of, aA as nf, aB as rf, aC as lf, aD as cf, aF as df, aG as uf, aH as ff, aI as gf, aJ as mf, aK as pf, aN as Ef, aO as hf, aP as vf, ch as Sf, ci as Af, cj as bf, ck as wf, aQ as Tf, cl as Lf, cm as _f, cn as Of, co as yf, cp as If, cq as Rf, cr as Pf, cs as Cf, ct as Df, cu as Nf, cv as kf, cw as Bf, cx as Mf, cy as Ff, cz as Vf, cA as $f, cB as Uf, cC as Wf, cD as Gf, aS as xf, cE as Hf, cF as zf, cG as Kf, cH as qf, cI as jf, cJ as Yf, cK as Zf, cL as Xf, cM as Jf, cN as Qf, cO as eg, cP as tg, cQ as ag, cR as sg, cS as og, cT as ng, aT as rg, aU as ig, aV as lg, aW as cg, cU as dg, aX as ug, aY as fg, aZ as gg, cV as mg, cW as pg, a_ as Eg, a$ as hg, b0 as vg, b1 as Sg, cX as Ag, b2 as bg, b3 as wg, b4 as Tg, b5 as Lg, b6 as _g, cY as Og, b7 as yg, cZ as Ig, c_ as Rg, b8 as Pg, c$ as Cg, b9 as Dg, ba as Ng, bb as kg, d0 as Bg, bc as Mg, bd as Fg, be as Vg, bf as $g, bg as Ug, bh as Wg, bi as Gg, bj as xg, bk as Hg, bl as zg, bm as Kg, d1 as qg, bn as jg, aQ as Yg, d2 as Zg } from "./chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-DioMlB3f.js";
|
|
4
4
|
import { getCurrentScope as ea, onScopeDispose as ta, computed as O, inject as ee, watch as te, defineComponent as U, openBlock as h, createBlock as D, createSlots as ye, withCtx as T, renderSlot as W, createElementVNode as k, normalizeClass as aa, createElementBlock as N, Fragment as Y, createVNode as y, unref as c, createTextVNode as G, toDisplayString as F, shallowReactive as ks, ref as R, readonly as nt, onMounted as ve, onBeforeMount as Bs, onBeforeUnmount as Ms, onUnmounted as sa, provide as oa, toValue as na, isRef as ra, normalizeStyle as Se, createCommentVNode as V, withDirectives as ia, withModifiers as Ye, reactive as de, createApp as Fs, nextTick as ge, renderList as ae, withKeys as pt, mergeProps as ne, shallowRef as Vs, createStaticVNode as $s, resolveDynamicComponent as Us, getCurrentInstance as Ws, warn as Gs, h as le, toRaw as xs } from "vue";
|
|
5
5
|
import { _ as Hs } from "./chunks/vendor-cypress-signalr-mock-itnm2wpA.js";
|
|
6
|
-
import { d as H, p as zs, e as Ks, f as qs, g as js, s as Ys, h as Zs, i as Xs, j as Js, k as Qs, S as eo, W as la, B as ca, l as to, m as da, n as Et, o as ua, M as ao, _ as fa, q as so, r as oo, t as no, v as ro, w as io, x as lo, y as co, L as uo, I as fo, z as go, C as mo, F as po, G as Eo, J as ho, T as vo, K as So, N as Ao, O as bo, P as wo } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-
|
|
7
|
-
import { A as
|
|
6
|
+
import { d as H, p as zs, e as Ks, f as qs, g as js, s as Ys, h as Zs, i as Xs, j as Js, k as Qs, S as eo, W as la, B as ca, l as to, m as da, n as Et, o as ua, M as ao, _ as fa, q as so, r as oo, t as no, v as ro, w as io, x as lo, y as co, L as uo, I as fo, z as go, C as mo, F as po, G as Eo, J as ho, T as vo, K as So, N as Ao, O as bo, P as wo } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-CThvtYtw.js";
|
|
7
|
+
import { A as Jg, b as Qg, Q as em, R as tm, U as am, V as sm, X as om, Y as nm, Z as rm, $ as im, a0 as lm, a1 as cm, a2 as dm, a3 as um, a4 as fm, a5 as gm, a6 as mm, D as pm, a7 as Em, a8 as hm, a9 as vm, aa as Sm, ab as Am, ac as bm, E as wm, ad as Tm, ae as Lm, af as _m, H as Om, ag as ym, ah as Im, ai as Rm, aj as Pm, ak as Cm, al as Dm, am as Nm, an as km, ao as Bm, ap as Mm, aq as Fm, ar as Vm, as as $m, at as Um, a as Wm, au as Gm, av as xm, c as Hm, aw as zm, ax as Km, u as qm, ay as jm, az as Ym } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-CThvtYtw.js";
|
|
8
8
|
import { H as To, L as Lo } from "./chunks/vendor-microsoft-signalr-Bgpbb4fW.js";
|
|
9
|
-
import { a as _o } from "./chunks/index-
|
|
10
|
-
import { u as
|
|
9
|
+
import { a as _o } from "./chunks/index-0btrtSam.js";
|
|
10
|
+
import { u as Xm } from "./chunks/index-0btrtSam.js";
|
|
11
11
|
import "./chunks/ExtensionPoint.vue_vue_type_style_index_0_lang-B1R06zHa.js";
|
|
12
12
|
import "./chunks/vendor-dompurify-DpIUMBYC.js";
|
|
13
13
|
import { u as Ae } from "./chunks/vendor-vue-i18n-LO-EJStU.js";
|
|
@@ -92,7 +92,7 @@ import { A as Io, u as Ro } from "./chunks/vendor-vue3-application-insights-CAgb
|
|
|
92
92
|
import { o as Po, c as Q, d as Co, i as Do } from "./chunks/vendor-lodash-es-D2n90GJy.js";
|
|
93
93
|
import { T as No, x as ko, b as Bo, S as Mo, $ as Fo } from "./chunks/vendor-web-vitals-ByFgAM-8.js";
|
|
94
94
|
import { _ as Vo } from "./chunks/index-BuTo_Lx8.js";
|
|
95
|
-
import { E as
|
|
95
|
+
import { E as Qm, d as ep, u as tp } from "./chunks/index-BuTo_Lx8.js";
|
|
96
96
|
import { S as ga, z as vt, A as $o, C as Uo, a as Ue, w as Wo, b as Go, D as xo, c as Ho, E as zo } from "./chunks/vendor-unovis-vue-CZWGT3-0.js";
|
|
97
97
|
function bc(e) {
|
|
98
98
|
return e.replace(/[\w]([A-Z])/g, function(t) {
|
|
@@ -213,9 +213,7 @@ const va = Symbol("NotificationContainerState"), Rt = H("signalR"), Zo = {
|
|
|
213
213
|
};
|
|
214
214
|
function yc(e) {
|
|
215
215
|
const t = ee(os, void 0);
|
|
216
|
-
return {
|
|
217
|
-
read: () => t ? t.read(e) : {}
|
|
218
|
-
};
|
|
216
|
+
return { read: () => t ? t.read(e) : {} };
|
|
219
217
|
}
|
|
220
218
|
const Xo = H("modularity");
|
|
221
219
|
function At(e) {
|
|
@@ -665,7 +663,7 @@ function Sa(e, t) {
|
|
|
665
663
|
const f = Be(l);
|
|
666
664
|
if (s.value = f, fn.error("Async action failed:", l), o && l && typeof l == "object") {
|
|
667
665
|
const p = `async-error-${f.message.slice(0, 80)}`, m = setTimeout(async () => {
|
|
668
|
-
Xe || (Xe = (await import("./chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-
|
|
666
|
+
Xe || (Xe = (await import("./chunks/VcTableAdapter.vue_vue_type_style_index_0_lang-DioMlB3f.js").then((w) => w.d3)).notification), Xe.error(f.message, {
|
|
669
667
|
timeout: i,
|
|
670
668
|
notificationId: p
|
|
671
669
|
});
|
|
@@ -2035,8 +2033,8 @@ const hr = "2.0.10";
|
|
|
2035
2033
|
function vr() {
|
|
2036
2034
|
return {
|
|
2037
2035
|
version: hr,
|
|
2038
|
-
buildDate: "2026-06-
|
|
2039
|
-
gitHash: "
|
|
2036
|
+
buildDate: "2026-06-22T15:25:10.722Z",
|
|
2037
|
+
gitHash: "f47cc742e"
|
|
2040
2038
|
};
|
|
2041
2039
|
}
|
|
2042
2040
|
function Sr(e = vr()) {
|
|
@@ -4406,31 +4404,31 @@ const fd = {
|
|
|
4406
4404
|
}
|
|
4407
4405
|
};
|
|
4408
4406
|
export {
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4407
|
+
Jg as AI_AGENT_URL_ENV_KEY,
|
|
4408
|
+
Qg as AiAgentServiceKey,
|
|
4409
|
+
em as ApiException,
|
|
4410
|
+
tm as AppBarMobileButtonsServiceKey,
|
|
4413
4411
|
So as AppBarWidgetServiceKey,
|
|
4414
4412
|
Ds as AppInsightsInstanceKey,
|
|
4415
4413
|
Cs as AppInsightsOptionsKey,
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4419
|
-
|
|
4414
|
+
am as AppManifestClient,
|
|
4415
|
+
sm as AppPlacement,
|
|
4416
|
+
om as AppRootElementKey,
|
|
4417
|
+
nm as AppsClient,
|
|
4420
4418
|
Hn as AssetsDetailsModule,
|
|
4421
4419
|
qn as AssetsManager,
|
|
4422
4420
|
Yn as AssetsManagerModule,
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4421
|
+
rm as AuthApiBase,
|
|
4422
|
+
im as AuthorizationClient,
|
|
4423
|
+
lm as BladeBackButtonKey,
|
|
4424
|
+
cm as BladeBannersKey,
|
|
4427
4425
|
da as BladeContextKey,
|
|
4428
|
-
|
|
4426
|
+
dm as BladeDataKey,
|
|
4429
4427
|
ca as BladeDescriptorKey,
|
|
4430
4428
|
pd as BladeError,
|
|
4431
4429
|
co as BladeFormKey,
|
|
4432
|
-
|
|
4433
|
-
|
|
4430
|
+
um as BladeLoadingKey,
|
|
4431
|
+
fm as BladeMaximizedKey,
|
|
4434
4432
|
Zs as BladeMessagingKey,
|
|
4435
4433
|
ho as BladeRoutesKey,
|
|
4436
4434
|
js as BladeStackKey,
|
|
@@ -4447,86 +4445,86 @@ export {
|
|
|
4447
4445
|
_d as CellNumber,
|
|
4448
4446
|
Od as CellStatus,
|
|
4449
4447
|
yd as CellStatusIcon,
|
|
4450
|
-
|
|
4448
|
+
gm as ChangeLogClient,
|
|
4451
4449
|
Id as ChangePassword,
|
|
4452
4450
|
Rd as ChangePasswordButton,
|
|
4453
4451
|
Kc as ChangePasswordPage,
|
|
4454
4452
|
wt as ChartContainer,
|
|
4455
4453
|
Tt as ChartLegend,
|
|
4456
4454
|
nd as ChartTooltip,
|
|
4457
|
-
|
|
4455
|
+
mm as CloseSettingsMenuKey,
|
|
4458
4456
|
Pd as ColumnCollector,
|
|
4459
|
-
|
|
4457
|
+
pm as DEFAULT_AI_AGENT_CONFIG,
|
|
4460
4458
|
id as DashboardBarChart,
|
|
4461
4459
|
ld as DashboardDonutChart,
|
|
4462
4460
|
sd as DashboardFeedList,
|
|
4463
4461
|
od as DashboardFeedRow,
|
|
4464
4462
|
rd as DashboardLineChart,
|
|
4465
|
-
|
|
4463
|
+
Em as DashboardServiceKey,
|
|
4466
4464
|
ad as DashboardStatItem,
|
|
4467
4465
|
td as DashboardWidgetCard,
|
|
4468
|
-
|
|
4469
|
-
|
|
4466
|
+
hm as DeveloperToolsClient,
|
|
4467
|
+
vm as DiagnosticsClient,
|
|
4470
4468
|
Cd as DisplayableError,
|
|
4471
4469
|
qc as DraggableDashboard,
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4470
|
+
Sm as DynamicModulesKey,
|
|
4471
|
+
Am as DynamicPropertiesClient,
|
|
4472
|
+
bm as DynamicPropertyValueType,
|
|
4473
|
+
wm as EMBEDDED_TO_HOST_MESSAGE_TYPES,
|
|
4474
|
+
Tm as EmbeddedModeKey,
|
|
4475
|
+
Lm as EntryState,
|
|
4478
4476
|
Dd as ErrorInterceptor,
|
|
4479
4477
|
Vo as ExtensionPoint,
|
|
4480
|
-
|
|
4478
|
+
Qm as ExtensionPoints,
|
|
4481
4479
|
Lr as ExternalProviders,
|
|
4482
|
-
|
|
4480
|
+
_m as ExternalSignInClient,
|
|
4483
4481
|
Nd as FALLBACK_BLADE_ID,
|
|
4484
4482
|
xc as ForgotPassword,
|
|
4485
4483
|
kd as FrameworkError,
|
|
4486
|
-
|
|
4484
|
+
Om as HOST_TO_EMBEDDED_MESSAGE_TYPES,
|
|
4487
4485
|
Yt as InjectionError,
|
|
4488
|
-
|
|
4486
|
+
ym as InternalRoutesKey,
|
|
4489
4487
|
zc as Invite,
|
|
4490
4488
|
po as IsDesktopKey,
|
|
4491
4489
|
mo as IsMobileKey,
|
|
4492
4490
|
fo as IsPhoneKey,
|
|
4493
4491
|
go as IsTabletKey,
|
|
4494
4492
|
Eo as IsTouchKey,
|
|
4495
|
-
|
|
4496
|
-
|
|
4493
|
+
Im as JobsClient,
|
|
4494
|
+
Rm as JsonValueKind,
|
|
4497
4495
|
ed as LAYOUT_STORAGE_KEY,
|
|
4498
4496
|
Bd as LanguageSelector,
|
|
4499
4497
|
uo as LanguageServiceKey,
|
|
4500
|
-
|
|
4498
|
+
Pm as LocalizableSettingsClient,
|
|
4501
4499
|
Gc as Login,
|
|
4502
4500
|
Md as LogoutButton,
|
|
4503
4501
|
Fd as MenuBurgerIcon,
|
|
4504
4502
|
Ao as MenuServiceKey,
|
|
4505
4503
|
Vd as ModuleLoadError,
|
|
4506
|
-
|
|
4507
|
-
|
|
4504
|
+
Cm as ModulesClient,
|
|
4505
|
+
Dm as ModulesLoadErrorKey,
|
|
4508
4506
|
ao as ModulesReadyKey,
|
|
4509
4507
|
yi as NotificationContainer,
|
|
4510
4508
|
ss as NotificationContextKey,
|
|
4511
4509
|
$d as NotificationDropdown,
|
|
4512
4510
|
wo as NotificationStoreKey,
|
|
4513
4511
|
Ud as NotificationTemplate,
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4512
|
+
Nm as OAuthAppsClient,
|
|
4513
|
+
km as ProgressMessageLevel,
|
|
4514
|
+
Bm as PushNotificationClient,
|
|
4517
4515
|
Wd as RegistrationError,
|
|
4518
4516
|
Hc as ResetPassword,
|
|
4519
|
-
|
|
4517
|
+
Mm as SecurityClient,
|
|
4520
4518
|
Gd as ServiceError,
|
|
4521
4519
|
eo as SettingClient,
|
|
4522
|
-
|
|
4520
|
+
Fm as SettingValueType,
|
|
4523
4521
|
xd as SettingsMenu,
|
|
4524
4522
|
Hd as SettingsMenuItem,
|
|
4525
4523
|
bo as SettingsMenuServiceKey,
|
|
4526
|
-
|
|
4527
|
-
|
|
4524
|
+
Vm as SettingsV2Client,
|
|
4525
|
+
$m as ShellIndicatorsKey,
|
|
4528
4526
|
Wc as Sidebar,
|
|
4529
|
-
|
|
4527
|
+
Um as SortDirection,
|
|
4530
4528
|
zd as Table,
|
|
4531
4529
|
Kd as TableBody,
|
|
4532
4530
|
qd as TableCell,
|
|
@@ -4547,7 +4545,7 @@ export {
|
|
|
4547
4545
|
iu as ValidationError,
|
|
4548
4546
|
lu as VcAccordion,
|
|
4549
4547
|
cu as VcAccordionItem,
|
|
4550
|
-
|
|
4548
|
+
Wm as VcAiAgentPanel,
|
|
4551
4549
|
du as VcApp,
|
|
4552
4550
|
uu as VcAppBarMobileActions,
|
|
4553
4551
|
fu as VcAppBarOverlay,
|
|
@@ -4632,9 +4630,9 @@ export {
|
|
|
4632
4630
|
to as WidgetScopeKey,
|
|
4633
4631
|
la as WidgetServiceKey,
|
|
4634
4632
|
Zt as __registerBladeConfig,
|
|
4635
|
-
|
|
4633
|
+
Gm as _createInternalUserLogic,
|
|
4636
4634
|
cd as _resetAdapterState,
|
|
4637
|
-
|
|
4635
|
+
xm as _sharedInternalUserLogic,
|
|
4638
4636
|
Sf as addAppBarWidget,
|
|
4639
4637
|
Af as addMenuItem,
|
|
4640
4638
|
bf as addSettingsMenuItem,
|
|
@@ -4648,13 +4646,13 @@ export {
|
|
|
4648
4646
|
Qc as clearLayoutStorage,
|
|
4649
4647
|
Of as convertColorNameToHex,
|
|
4650
4648
|
yf as convertMomentFormat,
|
|
4651
|
-
|
|
4649
|
+
Hm as createAiAgentToolbarButton,
|
|
4652
4650
|
Ic as createAppModule,
|
|
4653
4651
|
H as createLogger,
|
|
4654
4652
|
fd as default,
|
|
4655
4653
|
At as defineAppModule,
|
|
4656
4654
|
Vc as defineBladeContext,
|
|
4657
|
-
|
|
4655
|
+
ep as defineExtensionPoint,
|
|
4658
4656
|
If as fileWeight,
|
|
4659
4657
|
Rf as formatBadgeCount,
|
|
4660
4658
|
Pf as formatDateRelative,
|
|
@@ -4680,8 +4678,8 @@ export {
|
|
|
4680
4678
|
Uf as languageToCountryMap,
|
|
4681
4679
|
Zc as loadLayoutFromStorage,
|
|
4682
4680
|
Jt as loading,
|
|
4683
|
-
|
|
4684
|
-
|
|
4681
|
+
zm as logger,
|
|
4682
|
+
Km as loggers,
|
|
4685
4683
|
Jc as mergeLayoutWithWidgets,
|
|
4686
4684
|
Wf as mindimensions,
|
|
4687
4685
|
Gf as normalizeHexColor,
|
|
@@ -4711,8 +4709,8 @@ export {
|
|
|
4711
4709
|
rg as stripTenantPrefix,
|
|
4712
4710
|
jc as toGridstackWidget,
|
|
4713
4711
|
ig as useAdaptiveItems,
|
|
4714
|
-
|
|
4715
|
-
|
|
4712
|
+
qm as useAiAgent,
|
|
4713
|
+
Xm as useAiAgentContext,
|
|
4716
4714
|
gn as useApiClient,
|
|
4717
4715
|
lg as useAppBarMobileActions,
|
|
4718
4716
|
cg as useAppBarState,
|
|
@@ -4730,7 +4728,7 @@ export {
|
|
|
4730
4728
|
mg as useBladeMessaging,
|
|
4731
4729
|
dd as useBladeNavigation,
|
|
4732
4730
|
Lc as useBladeNotifications,
|
|
4733
|
-
|
|
4731
|
+
jm as useBladeStack,
|
|
4734
4732
|
Mc as useBladeWidgets,
|
|
4735
4733
|
pg as useBreadcrumbs,
|
|
4736
4734
|
Oc as useBroadcastFilter,
|
|
@@ -4742,7 +4740,7 @@ export {
|
|
|
4742
4740
|
Sg as useDataTableSort,
|
|
4743
4741
|
kc as useDynamicProperties,
|
|
4744
4742
|
Ag as useErrorHandler,
|
|
4745
|
-
|
|
4743
|
+
tp as useExtensionPoint,
|
|
4746
4744
|
bg as useFilterState,
|
|
4747
4745
|
wg as useFloatingPosition,
|
|
4748
4746
|
Tg as useFormField,
|
|
@@ -4777,17 +4775,18 @@ export {
|
|
|
4777
4775
|
yc as useTableQueryState,
|
|
4778
4776
|
Ug as useTableRowGrouping,
|
|
4779
4777
|
Wg as useTableRowReorder,
|
|
4780
|
-
Gg as
|
|
4781
|
-
xg as
|
|
4782
|
-
Hg as
|
|
4778
|
+
Gg as useTableSearch,
|
|
4779
|
+
xg as useTableSelection,
|
|
4780
|
+
Hg as useTableSort,
|
|
4781
|
+
zg as useTeleportTarget,
|
|
4783
4782
|
Ts as useTheme,
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4783
|
+
Kg as useToggleableContent,
|
|
4784
|
+
qg as useToolbar,
|
|
4785
|
+
Ym as useUser,
|
|
4786
|
+
jg as useVirtualScroll,
|
|
4788
4787
|
Bc as useWebVitals,
|
|
4789
4788
|
Fc as useWidgetTrigger,
|
|
4790
|
-
|
|
4789
|
+
Yg as vAutofocus,
|
|
4791
4790
|
Jt as vLoading,
|
|
4792
|
-
|
|
4791
|
+
Zg as wrapError
|
|
4793
4792
|
};
|