@fses/workbench-app 0.1.0
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/LICENSE +9 -0
- package/dist/Workspace-DP3xr4Jp.js +42979 -0
- package/dist/adapters/defaults.d.ts +15 -0
- package/dist/adapters/index.d.ts +8 -0
- package/dist/adapters/testDoubles.d.ts +12 -0
- package/dist/adapters/types.d.ts +84 -0
- package/dist/canvas/api/types.d.ts +117 -0
- package/dist/canvas/bridge/workbenchCanvasBus.d.ts +7 -0
- package/dist/canvas/layout/logicalLayoutEngine.d.ts +85 -0
- package/dist/canvas/persistence/canvasSnapshotStorage.d.ts +3 -0
- package/dist/card/index.d.ts +8 -0
- package/dist/card/index.js +17 -0
- package/dist/chat/index.d.ts +9 -0
- package/dist/chat/index.js +12 -0
- package/dist/components/WorkbenchAppHost.vue.d.ts +28 -0
- package/dist/components/WorkbenchApplication.vue.d.ts +13 -0
- package/dist/components/WorkbenchShell.vue.d.ts +32 -0
- package/dist/components/WorkbenchWorkspaceCore.vue.d.ts +20 -0
- package/dist/config/workbenchAppConfig.d.ts +43 -0
- package/dist/contracts/index.d.ts +7 -0
- package/dist/contracts/index.js +6 -0
- package/dist/extensions/index.d.ts +59 -0
- package/dist/fde-runtime/runtime/fdeSkillDisplayLabel.d.ts +15 -0
- package/dist/fses-workbench-app.js +91 -0
- package/dist/index-A8Vg4UXL.js +1091 -0
- package/dist/index.d.ts +39 -0
- package/dist/internal/personal-workbench/canvas-runtime/api/canvasFacade.d.ts +2 -0
- package/dist/internal/personal-workbench/canvas-runtime/api/types.d.ts +6 -0
- package/dist/internal/personal-workbench/canvas-runtime/factory/cardFactory.d.ts +25 -0
- package/dist/internal/personal-workbench/canvas-runtime/layout/logicalLayoutEngine.d.ts +6 -0
- package/dist/internal/personal-workbench/canvas-runtime/layout/recommendedCardPlacement.d.ts +54 -0
- package/dist/internal/personal-workbench/canvas-runtime/lifecycle/cardLifecycleService.d.ts +12 -0
- package/dist/internal/personal-workbench/canvas-runtime/primitive/primitivePolicyGate.d.ts +9 -0
- package/dist/internal/personal-workbench/components/runtime/RuntimeCapabilitySlots.vue.d.ts +14 -0
- package/dist/internal/personal-workbench/components/workbench/ChartLinkageConfigModal.vue.d.ts +23 -0
- package/dist/internal/personal-workbench/components/workbench/ConversationTurnCard.vue.d.ts +23 -0
- package/dist/internal/personal-workbench/components/workbench/GridStackCanvas.vue.d.ts +91 -0
- package/dist/internal/personal-workbench/components/workbench/GridStackCardShell.vue.d.ts +49 -0
- package/dist/internal/personal-workbench/components/workbench/GridStackContainer.vue.d.ts +39 -0
- package/dist/internal/personal-workbench/components/workbench/LayoutPicker.vue.d.ts +13 -0
- package/dist/internal/personal-workbench/components/workbench/StudioComposer.vue.d.ts +24 -0
- package/dist/internal/personal-workbench/components/workbench/SystemCardPreviewPopover.vue.d.ts +17 -0
- package/dist/internal/personal-workbench/components/workbench/WelcomeBanner.vue.d.ts +19 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchAccessDenied.vue.d.ts +7 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchCanvas.vue.d.ts +290 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchCanvasSettingsMenu.vue.d.ts +40 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchCardConfigDialog.vue.d.ts +14 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchDropdownPortal.vue.d.ts +32 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchFdeCardCatalog.vue.d.ts +12 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchListPopover.vue.d.ts +15 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchMetricFilterBindingEditor.vue.d.ts +14 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchRecommendationFieldConfigDialog.vue.d.ts +14 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchStudio.vue.d.ts +301 -0
- package/dist/internal/personal-workbench/components/workbench/WorkbenchThemePicker.vue.d.ts +10 -0
- package/dist/internal/personal-workbench/components/workbench/helpers.d.ts +18 -0
- package/dist/internal/personal-workbench/components/workbench/showcase/WorkbenchShowcase.vue.d.ts +273 -0
- package/dist/internal/personal-workbench/composables/useWorkbenchRuntime.d.ts +9 -0
- package/dist/internal/personal-workbench/extensions/cards/customCardCatalog.d.ts +27 -0
- package/dist/internal/personal-workbench/extensions/cards/customComponentRegistry.d.ts +7 -0
- package/dist/internal/personal-workbench/extensions/cards/userCustomCardInsertion.d.ts +21 -0
- package/dist/internal/personal-workbench/extensions/fde/fdeGeneratedCards.d.ts +2 -0
- package/dist/internal/personal-workbench/extensions/fde/fdeGeneratedDashboard.d.ts +1 -0
- package/dist/internal/personal-workbench/extensions/fde/fdeGeneratedTemplatePage.d.ts +1 -0
- package/dist/internal/personal-workbench/extensions/fde/fdeSkillWorkbenchTheme.d.ts +1 -0
- package/dist/internal/personal-workbench/extensions/runtimeExtensions.d.ts +37 -0
- package/dist/internal/personal-workbench/extensions/workbenchAdapters.d.ts +1 -0
- package/dist/internal/personal-workbench/extensions/workbenchConfig.d.ts +1 -0
- package/dist/internal/personal-workbench/extensions/workbenchExtensions.d.ts +1 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillCardsHost.vue.d.ts +2 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillChartCard.vue.d.ts +57 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardCockpitHeader.vue.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardCockpitTitle.vue.d.ts +5 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardGrid.vue.d.ts +57 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardHeaderBand.vue.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardHost.vue.d.ts +2 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardKpiItem.vue.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardMarqueeList.vue.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardShell.vue.d.ts +21 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardSummaryHeader.vue.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardWidget.vue.d.ts +56 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDrilldownModal.vue.d.ts +20 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillFilterBar.vue.d.ts +18 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillHeaderCard.vue.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillListCard.vue.d.ts +21 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillMetricChartToolbar.vue.d.ts +20 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillNumberCard.vue.d.ts +21 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillProtocolChartRenderer.vue.d.ts +18 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillQueryCard.vue.d.ts +23 -0
- package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillTemplatePageHost.vue.d.ts +2 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillCardTypes.d.ts +514 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillChartDataRequestMeta.d.ts +13 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillChartDensityFit.d.ts +67 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillChartOptions.d.ts +14 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillChartTheme.d.ts +51 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardContext.d.ts +19 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardDrilldown.d.ts +21 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardKpi.d.ts +36 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardLayout.d.ts +39 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardRefresh.d.ts +24 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardThemes.d.ts +108 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardTypes.d.ts +87 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDashboardViewport.d.ts +71 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDataRefresh.d.ts +59 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillDisplayLabel.d.ts +6 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillFilterBarBridge.d.ts +100 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillFilterDefaults.d.ts +21 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillFilterOptions.d.ts +95 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillFloatingAction.d.ts +19 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillJson.d.ts +11 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillListMarquee.d.ts +32 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillMetricChartDrilldown.d.ts +101 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillMetricNumberDetail.d.ts +19 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillNumberFormat.d.ts +17 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillProtocolChart.d.ts +37 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillProtocolChartApi.d.ts +17 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillProtocolChartDisplayData.d.ts +10 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillProtocolChartDrilldown.d.ts +68 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillProtocolChartLinkage.d.ts +19 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillProtocolChartRefresh.d.ts +19 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillQueryFilters.d.ts +82 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillServiceDrilldown.d.ts +89 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillServiceFields.d.ts +17 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillTemplatePageMount.d.ts +37 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillTemplatePageTypes.d.ts +59 -0
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillTimeRangeDefault.d.ts +45 -0
- package/dist/internal/personal-workbench/lib/agentMemoryClient.d.ts +376 -0
- package/dist/internal/personal-workbench/lib/aiChartProtocol.d.ts +31 -0
- package/dist/internal/personal-workbench/lib/aiMetricCardSpec.d.ts +89 -0
- package/dist/internal/personal-workbench/lib/artifactRules.d.ts +15 -0
- package/dist/internal/personal-workbench/lib/assistantPersona.d.ts +28 -0
- package/dist/internal/personal-workbench/lib/assistantPersonaProfiles.d.ts +21 -0
- package/dist/internal/personal-workbench/lib/businessGroupClient.d.ts +25 -0
- package/dist/internal/personal-workbench/lib/canonicalLayoutContext.d.ts +38 -0
- package/dist/internal/personal-workbench/lib/cardContractDemo.d.ts +20 -0
- package/dist/internal/personal-workbench/lib/cardDisplay.d.ts +1 -0
- package/dist/internal/personal-workbench/lib/cardSizeConfig.d.ts +29 -0
- package/dist/internal/personal-workbench/lib/cardStyleConfig.d.ts +128 -0
- package/dist/internal/personal-workbench/lib/conversationScreenContext.d.ts +30 -0
- package/dist/internal/personal-workbench/lib/deepAgentApi.d.ts +133 -0
- package/dist/internal/personal-workbench/lib/deepAgentProcessGroups.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/deepAgentProgressMessage.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/deepAgentToolDisplayName.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/deepAgentWorkbenchCardMutation.d.ts +39 -0
- package/dist/internal/personal-workbench/lib/deepAgentWorkbenchCardRecommendation.d.ts +66 -0
- package/dist/internal/personal-workbench/lib/dynamicEchartOption.d.ts +14 -0
- package/dist/internal/personal-workbench/lib/echartsOptionEditorBridge.d.ts +34 -0
- package/dist/internal/personal-workbench/lib/echartsProtocolDataSlimming.d.ts +24 -0
- package/dist/internal/personal-workbench/lib/echartsTemplateAssets.d.ts +24 -0
- package/dist/internal/personal-workbench/lib/echartsTemplateMaterializer.d.ts +31 -0
- package/dist/internal/personal-workbench/lib/fdeWorkbenchAssetPackage.d.ts +107 -0
- package/dist/internal/personal-workbench/lib/fdeWorkbenchConfigClient.d.ts +96 -0
- package/dist/internal/personal-workbench/lib/formatters.d.ts +5 -0
- package/dist/internal/personal-workbench/lib/historyCardBindingRestore.fixture.d.ts +15 -0
- package/dist/internal/personal-workbench/lib/platformFetchClient.d.ts +105 -0
- package/dist/internal/personal-workbench/lib/queryTraceDisplay.d.ts +30 -0
- package/dist/internal/personal-workbench/lib/runtimeCapabilities.d.ts +8 -0
- package/dist/internal/personal-workbench/lib/runtimeIdentity.d.ts +36 -0
- package/dist/internal/personal-workbench/lib/runtimePrimitiveRegistry.d.ts +51 -0
- package/dist/internal/personal-workbench/lib/summaryPreview.d.ts +18 -0
- package/dist/internal/personal-workbench/lib/systemCardPreviewProfile.d.ts +23 -0
- package/dist/internal/personal-workbench/lib/userVisibleTextGuard.d.ts +23 -0
- package/dist/internal/personal-workbench/lib/utils.d.ts +46 -0
- package/dist/internal/personal-workbench/lib/vueRuntimeAdapters.d.ts +450 -0
- package/dist/internal/personal-workbench/lib/workbenchApi.d.ts +686 -0
- package/dist/internal/personal-workbench/lib/workbenchAttachmentUpload.d.ts +47 -0
- package/dist/internal/personal-workbench/lib/workbenchAutoRefreshSession.d.ts +21 -0
- package/dist/internal/personal-workbench/lib/workbenchBusinessGapDiagnostics.d.ts +16 -0
- package/dist/internal/personal-workbench/lib/workbenchCanvasBusinessGapChecklist.d.ts +106 -0
- package/dist/internal/personal-workbench/lib/workbenchCanvasClassification.d.ts +119 -0
- package/dist/internal/personal-workbench/lib/workbenchCanvasDiagnostics.d.ts +100 -0
- package/dist/internal/personal-workbench/lib/workbenchCanvasImageCardVisual.d.ts +168 -0
- package/dist/internal/personal-workbench/lib/workbenchCanvasImageCompose.d.ts +106 -0
- package/dist/internal/personal-workbench/lib/workbenchCanvasLayoutOverride.d.ts +46 -0
- package/dist/internal/personal-workbench/lib/workbenchCardConfigProfile.d.ts +45 -0
- package/dist/internal/personal-workbench/lib/workbenchCardRecommendationBinding.d.ts +64 -0
- package/dist/internal/personal-workbench/lib/workbenchCardRecommendationFallback.d.ts +24 -0
- package/dist/internal/personal-workbench/lib/workbenchCardRecommendationViews.d.ts +24 -0
- package/dist/internal/personal-workbench/lib/workbenchCardUsabilityProfile.d.ts +33 -0
- package/dist/internal/personal-workbench/lib/workbenchChatHistory.d.ts +19 -0
- package/dist/internal/personal-workbench/lib/workbenchChatHistoryReplay.d.ts +25 -0
- package/dist/internal/personal-workbench/lib/workbenchChatMessageOrdering.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/workbenchChatPendingTurn.d.ts +21 -0
- package/dist/internal/personal-workbench/lib/workbenchChatReplyBridge.d.ts +55 -0
- package/dist/internal/personal-workbench/lib/workbenchChatStatusCompletion.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/workbenchChatTurnSignature.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/workbenchConfigDraftReseed.d.ts +18 -0
- package/dist/internal/personal-workbench/lib/workbenchCustomCardCatalog.d.ts +16 -0
- package/dist/internal/personal-workbench/lib/workbenchCustomComponentRegistry.d.ts +4 -0
- package/dist/internal/personal-workbench/lib/workbenchDataBindingBadge.d.ts +19 -0
- package/dist/internal/personal-workbench/lib/workbenchDataBindingRefreshPolicy.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/workbenchDataBindingRefreshTarget.d.ts +47 -0
- package/dist/internal/personal-workbench/lib/workbenchDeleteLayoutCompact.d.ts +41 -0
- package/dist/internal/personal-workbench/lib/workbenchEntryParams.d.ts +50 -0
- package/dist/internal/personal-workbench/lib/workbenchGridstackAdapter.d.ts +231 -0
- package/dist/internal/personal-workbench/lib/workbenchGridstackSaveLayout.d.ts +48 -0
- package/dist/internal/personal-workbench/lib/workbenchImageCanvasSizing.d.ts +45 -0
- package/dist/internal/personal-workbench/lib/workbenchImageComposeEntry.d.ts +53 -0
- package/dist/internal/personal-workbench/lib/workbenchImageGridstackRowRecovery.d.ts +93 -0
- package/dist/internal/personal-workbench/lib/workbenchLayout.d.ts +174 -0
- package/dist/internal/personal-workbench/lib/workbenchManualReplacement.d.ts +87 -0
- package/dist/internal/personal-workbench/lib/workbenchMetricChartDetail.d.ts +75 -0
- package/dist/internal/personal-workbench/lib/workbenchMetricDetailApi.d.ts +62 -0
- package/dist/internal/personal-workbench/lib/workbenchMetricFilterBinding.d.ts +85 -0
- package/dist/internal/personal-workbench/lib/workbenchMetricFilterLinkage.d.ts +30 -0
- package/dist/internal/personal-workbench/lib/workbenchPendingPatch.d.ts +54 -0
- package/dist/internal/personal-workbench/lib/workbenchRemoteClient.d.ts +39 -0
- package/dist/internal/personal-workbench/lib/workbenchShellSplit.d.ts +107 -0
- package/dist/internal/personal-workbench/lib/workbenchShowcase.d.ts +60 -0
- package/dist/internal/personal-workbench/lib/workbenchSocketClient.d.ts +28 -0
- package/dist/internal/personal-workbench/lib/workbenchStorage.d.ts +67 -0
- package/dist/internal/personal-workbench/lib/workbenchSystemCardPreviews.d.ts +31 -0
- package/dist/internal/personal-workbench/lib/workbenchSystemCardPrompt.d.ts +36 -0
- package/dist/internal/personal-workbench/lib/workbenchTextIntent.d.ts +11 -0
- package/dist/internal/personal-workbench/lib/workbenchThemes.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/workbenchV2Adapter.d.ts +49 -0
- package/dist/internal/personal-workbench/pages/Workspace.vue.d.ts +7 -0
- package/dist/internal/personal-workbench/stores/workbenchRuntime.d.ts +170 -0
- package/dist/internal/personal-workbench/themes/index.d.ts +6 -0
- package/dist/internal/personal-workbench/themes/workbenchThemeDefinitions.d.ts +78 -0
- package/dist/internal/personal-workbench/types/workbenchV2.d.ts +211 -0
- package/dist/internal/personal-workbench/vue-types/workbenchRuntime.d.ts +191 -0
- package/dist/runtime/context/workbenchAppContext.d.ts +32 -0
- package/dist/runtime/conversation/workbenchChatMessageOrdering.d.ts +50 -0
- package/dist/runtime/conversation/workbenchChatStatusCompletion.d.ts +27 -0
- package/dist/runtime/conversation/workbenchChatTurnSignature.d.ts +11 -0
- package/dist/runtime/data-binding/workbenchDataBindingRefreshPolicy.d.ts +36 -0
- package/dist/runtime/deep-agent/deepAgentProcessGroups.d.ts +84 -0
- package/dist/runtime/deep-agent/deepAgentProgressMessage.d.ts +22 -0
- package/dist/runtime/deep-agent/deepAgentToolDisplayName.d.ts +12 -0
- package/dist/runtime/index.d.ts +8 -0
- package/dist/runtime/index.js +5 -0
- package/dist/runtime/store/workbenchRuntimeFacade.d.ts +16 -0
- package/dist/style.css +1 -0
- package/dist/types/index.d.ts +19 -0
- package/dist/useWorkbenchRuntime-Pekhufen.js +26338 -0
- package/package.json +143 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview workbench-app public entry - exports reusable workbench application shell, config, adapters, extensions, and styles.
|
|
3
|
+
* @author seadon
|
|
4
|
+
* @created 2026-08-11
|
|
5
|
+
*/
|
|
6
|
+
import './styles/workbench-app.css';
|
|
7
|
+
export { default as WorkbenchWorkspaceCore } from './components/WorkbenchWorkspaceCore.vue';
|
|
8
|
+
export { default as WorkbenchAppHost } from './components/WorkbenchAppHost.vue';
|
|
9
|
+
export { default as WorkbenchApplication } from './components/WorkbenchApplication.vue';
|
|
10
|
+
export { default as WorkbenchShell } from './components/WorkbenchShell.vue';
|
|
11
|
+
export type { WorkbenchAppConfig } from './config/workbenchAppConfig';
|
|
12
|
+
export type { WorkbenchAppExtensions } from './extensions';
|
|
13
|
+
export * from './adapters/index';
|
|
14
|
+
export * from './types';
|
|
15
|
+
export * from './canvas/api/types';
|
|
16
|
+
export { createCanvasApiFacade } from './internal/personal-workbench/canvas-runtime/api/canvasFacade';
|
|
17
|
+
export * from './canvas/bridge/workbenchCanvasBus';
|
|
18
|
+
export * from './canvas/layout/logicalLayoutEngine';
|
|
19
|
+
export * from './canvas/persistence/canvasSnapshotStorage';
|
|
20
|
+
export * from './runtime/conversation/workbenchChatMessageOrdering';
|
|
21
|
+
export * from './runtime/conversation/workbenchChatStatusCompletion';
|
|
22
|
+
export * from './runtime/conversation/workbenchChatTurnSignature';
|
|
23
|
+
export * from './runtime/deep-agent/deepAgentProcessGroups';
|
|
24
|
+
export * from './runtime/deep-agent/deepAgentProgressMessage';
|
|
25
|
+
export * from './runtime/deep-agent/deepAgentToolDisplayName';
|
|
26
|
+
export * from './runtime/data-binding/workbenchDataBindingRefreshPolicy';
|
|
27
|
+
export * from './fde-runtime/runtime/fdeSkillDisplayLabel';
|
|
28
|
+
export { createWorkbenchAppContext, WORKBENCH_APP_CONTEXT_KEY, useWorkbenchAppContext } from './runtime/context/workbenchAppContext';
|
|
29
|
+
export type { WorkbenchAppContext, WorkbenchAppContextSource } from './runtime/context/workbenchAppContext';
|
|
30
|
+
export type { WorkbenchRuntimeFacade } from './runtime/store/workbenchRuntimeFacade';
|
|
31
|
+
export { useWorkbenchRuntime, useWorkbenchRuntimeStore } from './runtime';
|
|
32
|
+
export { ensurePlatformUserSessionReady } from './internal/personal-workbench/lib/platformFetchClient';
|
|
33
|
+
export { formatAmount } from './internal/personal-workbench/lib/formatters';
|
|
34
|
+
export * from './internal/personal-workbench/lib/agentMemoryClient';
|
|
35
|
+
export { resolveBrowserWorkbenchEntryParams } from './internal/personal-workbench/lib/workbenchEntryParams';
|
|
36
|
+
export { WORKBENCH_CUSTOM_CARD_CATALOG, WORKBENCH_TEMPLATE_WEATHER_CAPABILITY_ID, WORKBENCH_TEMPLATE_WEATHER_COMPONENT_REF, WORKBENCH_TEMPLATE_WEATHER_PREVIEW_URL, } from './internal/personal-workbench/lib/workbenchCustomCardCatalog';
|
|
37
|
+
export { customComponentRegistry } from './internal/personal-workbench/lib/workbenchCustomComponentRegistry';
|
|
38
|
+
export { DEFAULT_WORKBENCH_CARD_STYLE_CONFIG, cardStyleConfigFromSnapshotVisualConfig, isDefaultWorkbenchCardStyleConfig, } from './internal/personal-workbench/lib/cardStyleConfig';
|
|
39
|
+
export declare const WORKBENCH_APP_PACKAGE_NAME = "@fses/workbench-app";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview 卡片工厂 - 根据卡片库能力生成画布物化卡片和示例数据。
|
|
3
|
+
* @author seadon
|
|
4
|
+
* @created 2026-05-21
|
|
5
|
+
*/
|
|
6
|
+
import type { DisplayBlockData, MaterializedBlock } from '@fses/workbench-app/types';
|
|
7
|
+
import type { InsertCardParams } from '../api/types';
|
|
8
|
+
import type { CardRegistryEntry } from '@fses/workbench-app/types';
|
|
9
|
+
import { type LogicalRect } from '../layout/logicalLayoutEngine';
|
|
10
|
+
export interface CardFactoryResult {
|
|
11
|
+
status: 'success' | 'failed';
|
|
12
|
+
block?: MaterializedBlock;
|
|
13
|
+
registryEntry?: CardRegistryEntry;
|
|
14
|
+
reason?: string;
|
|
15
|
+
suggestion?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare function sampleDisplayData(entry: CardRegistryEntry, override?: Record<string, unknown>): DisplayBlockData | Record<string, unknown>;
|
|
18
|
+
export declare function createCardFromRegistry(params: InsertCardParams, placed: LogicalRect[]): CardFactoryResult;
|
|
19
|
+
/**
|
|
20
|
+
* 异步创建系统卡片,ECharts 模板会先加载协议资源再生成 block。
|
|
21
|
+
* @param params - 插入卡片参数。
|
|
22
|
+
* @param placed - 已放置的逻辑布局。
|
|
23
|
+
* @returns 卡片工厂结果。
|
|
24
|
+
*/
|
|
25
|
+
export declare function createCardFromRegistryAsync(params: InsertCardParams, placed: LogicalRect[]): Promise<CardFactoryResult>;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Recommended card placement - resolves preview and final insert layouts from canonical canvas state.
|
|
3
|
+
* @author seadon
|
|
4
|
+
* @created 2026-07-11
|
|
5
|
+
*/
|
|
6
|
+
import type { BlockLayout, MaterializedBlock, WorkbenchSnapshot } from '@fses/workbench-app/types';
|
|
7
|
+
import type { CardSizePreset } from '../api/types';
|
|
8
|
+
export interface RecommendedCardSizeProfile {
|
|
9
|
+
targetW: number;
|
|
10
|
+
targetH: number;
|
|
11
|
+
minW: number;
|
|
12
|
+
minH: number;
|
|
13
|
+
maxW?: number;
|
|
14
|
+
maxH?: number;
|
|
15
|
+
sourcePreset?: string;
|
|
16
|
+
sourcePresetScale?: 'backend' | 'frontend';
|
|
17
|
+
shrinkPolicy?: 'none' | 'fit_within_bounds' | 'height_align_only';
|
|
18
|
+
reasonCodes?: string[];
|
|
19
|
+
}
|
|
20
|
+
export interface PlannedLayoutTreePatch extends Record<string, unknown> {
|
|
21
|
+
layoutTreeVersion: 4;
|
|
22
|
+
baseVersion: number;
|
|
23
|
+
baseLayoutFingerprint: string;
|
|
24
|
+
source: 'frontend_runtime';
|
|
25
|
+
upsertNodes: Array<Record<string, unknown> & {
|
|
26
|
+
i: string;
|
|
27
|
+
x: number;
|
|
28
|
+
y: number;
|
|
29
|
+
w: number;
|
|
30
|
+
h: number;
|
|
31
|
+
}>;
|
|
32
|
+
removeNodeIds: string[];
|
|
33
|
+
}
|
|
34
|
+
export interface RecommendedCardPlacementInput {
|
|
35
|
+
snapshot: WorkbenchSnapshot;
|
|
36
|
+
candidateBlock: MaterializedBlock;
|
|
37
|
+
sizeProfile: RecommendedCardSizeProfile;
|
|
38
|
+
placementMode?: 'auto' | 'near_selected' | 'below_selected' | 'new_row';
|
|
39
|
+
selectedBlockId?: string;
|
|
40
|
+
layoutTree?: Record<string, unknown>;
|
|
41
|
+
fallbackPreset?: CardSizePreset;
|
|
42
|
+
}
|
|
43
|
+
export interface RecommendedCardPlacementResult {
|
|
44
|
+
layout: BlockLayout;
|
|
45
|
+
layoutTreePatch?: PlannedLayoutTreePatch;
|
|
46
|
+
adjustedSizeProfile: RecommendedCardSizeProfile;
|
|
47
|
+
reasonCodes: string[];
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Resolves the preview/final layout for a recommended card from canonical persisted canvas state.
|
|
51
|
+
* @param input - Snapshot, candidate block and backend/frontend size profile.
|
|
52
|
+
* @returns Planned block layout and optional GridStack V4 patch.
|
|
53
|
+
*/
|
|
54
|
+
export declare function resolveRecommendedCardPlacement(input: RecommendedCardPlacementInput): RecommendedCardPlacementResult;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { WorkbenchSnapshot } from '@fses/workbench-app/types';
|
|
2
|
+
import type { CardLifecycleOperation, CanvasMutationError, UpdateCardParams } from '../api/types';
|
|
3
|
+
export interface LifecycleExecutionResult {
|
|
4
|
+
status: 'success' | 'failed';
|
|
5
|
+
snapshot?: WorkbenchSnapshot;
|
|
6
|
+
affectedCardIds: string[];
|
|
7
|
+
transactionId?: string;
|
|
8
|
+
locatedCardId?: string;
|
|
9
|
+
error?: CanvasMutationError;
|
|
10
|
+
}
|
|
11
|
+
export declare function normalizeLifecycleOperation(operation: string): CardLifecycleOperation | null;
|
|
12
|
+
export declare function executeLifecycleOperation(snapshot: WorkbenchSnapshot, params: UpdateCardParams): Promise<LifecycleExecutionResult>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { RuntimeCapabilityMount } from '@fses/workbench-app/types';
|
|
2
|
+
import type { CanvasMutationError, PrimitiveGap } from '../api/types';
|
|
3
|
+
export interface PrimitivePolicyResult {
|
|
4
|
+
allowed: boolean;
|
|
5
|
+
capability?: RuntimeCapabilityMount;
|
|
6
|
+
gap?: PrimitiveGap;
|
|
7
|
+
error?: CanvasMutationError;
|
|
8
|
+
}
|
|
9
|
+
export declare function validateRuntimeCapabilityPolicy(value: unknown, userNeed?: string): PrimitivePolicyResult;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { MaterializedBlock, RuntimeCapabilityMount } from '@fses/workbench-app/types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
block: MaterializedBlock;
|
|
4
|
+
slot: RuntimeCapabilityMount['slot'];
|
|
5
|
+
blocks: MaterializedBlock[];
|
|
6
|
+
workspaceId?: string;
|
|
7
|
+
userId?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
focusBlock: (blockId: string) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
onFocusBlock?: (blockId: string) => any;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
package/dist/internal/personal-workbench/components/workbench/ChartLinkageConfigModal.vue.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type ChartLinkageCandidate = {
|
|
2
|
+
id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
bindingId: string;
|
|
5
|
+
rendererKey?: string;
|
|
6
|
+
dataShape?: string;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
currentTitle: string;
|
|
10
|
+
candidates: ChartLinkageCandidate[];
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
close: () => any;
|
|
14
|
+
confirm: (payload: {
|
|
15
|
+
targetId: string | null;
|
|
16
|
+
}) => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
onClose?: () => any;
|
|
19
|
+
onConfirm?: (payload: {
|
|
20
|
+
targetId: string | null;
|
|
21
|
+
}) => any;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { ConversationTurn } from '@fses/workbench-app/types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
turn: ConversationTurn;
|
|
4
|
+
saving: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
confirmLayoutDraft: () => any;
|
|
8
|
+
confirmCardMutation: () => any;
|
|
9
|
+
cancelCardMutation: () => any;
|
|
10
|
+
confirmSubmitDraft: () => any;
|
|
11
|
+
insertPreview: () => any;
|
|
12
|
+
rollbackPreview: () => any;
|
|
13
|
+
toggleCollapse: () => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onConfirmLayoutDraft?: () => any;
|
|
16
|
+
onConfirmCardMutation?: () => any;
|
|
17
|
+
onCancelCardMutation?: () => any;
|
|
18
|
+
onConfirmSubmitDraft?: () => any;
|
|
19
|
+
onInsertPreview?: () => any;
|
|
20
|
+
onRollbackPreview?: () => any;
|
|
21
|
+
onToggleCollapse?: () => any;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import 'gridstack/dist/gridstack.css';
|
|
2
|
+
import { type CSSProperties } from 'vue';
|
|
3
|
+
import type { WorkbenchEchartClickParams, WorkbenchRendererHostBridge } from '@fses/workbench-app/types';
|
|
4
|
+
import type { LayoutConfig, MaterializedBlock, RoleId, WorkbenchLayoutV4 } from '@fses/workbench-app/types';
|
|
5
|
+
type CardClass = string | string[] | Record<string, boolean>;
|
|
6
|
+
type GridStackCardDensity = 'thumbnail' | 'compact' | 'standard' | 'expanded';
|
|
7
|
+
type WorkbenchChartClickPayload = WorkbenchEchartClickParams & {
|
|
8
|
+
blockId: string;
|
|
9
|
+
block: MaterializedBlock;
|
|
10
|
+
};
|
|
11
|
+
type WorkbenchMetricDetailPayload = {
|
|
12
|
+
blockId: string;
|
|
13
|
+
block: MaterializedBlock;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_Props = {
|
|
16
|
+
blocks: MaterializedBlock[];
|
|
17
|
+
layoutConfig: LayoutConfig;
|
|
18
|
+
layoutTree?: WorkbenchLayoutV4;
|
|
19
|
+
isConfigMode?: boolean;
|
|
20
|
+
selectedBlockId?: string | null;
|
|
21
|
+
selectedNestedBlock?: {
|
|
22
|
+
parentId: string;
|
|
23
|
+
childId: string;
|
|
24
|
+
} | null;
|
|
25
|
+
roleId?: RoleId | string;
|
|
26
|
+
userId?: string;
|
|
27
|
+
cardStyleForBlock: (block: MaterializedBlock) => CSSProperties;
|
|
28
|
+
cardClassForBlock?: (block: MaterializedBlock) => CardClass;
|
|
29
|
+
cardDensityForBlock?: (block: MaterializedBlock) => GridStackCardDensity;
|
|
30
|
+
canEditData?: (block: MaterializedBlock) => boolean;
|
|
31
|
+
canRemove?: (block: MaterializedBlock) => boolean;
|
|
32
|
+
canConfigure?: (block: MaterializedBlock) => boolean;
|
|
33
|
+
canViewMetricDetail?: (block: MaterializedBlock) => boolean;
|
|
34
|
+
rendererHostBridge?: WorkbenchRendererHostBridge;
|
|
35
|
+
canvasWidth?: number;
|
|
36
|
+
canvasMinHeight?: number;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Re-measures display scaling after an outer shell layout change settles.
|
|
40
|
+
* @returns Nothing; updates display width across immediate and settled frames.
|
|
41
|
+
*/
|
|
42
|
+
declare function requestDisplayResizeRemeasure(): void;
|
|
43
|
+
/**
|
|
44
|
+
* Reads the layout tree currently rendered by GridStack without marking it as a user edit.
|
|
45
|
+
* @returns V4 layout tree that matches the visible top-level GridStack positions.
|
|
46
|
+
*/
|
|
47
|
+
declare function currentRenderedLayoutTree(): WorkbenchLayoutV4;
|
|
48
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
49
|
+
currentRenderedLayoutTree: typeof currentRenderedLayoutTree;
|
|
50
|
+
requestDisplayResizeRemeasure: typeof requestDisplayResizeRemeasure;
|
|
51
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
52
|
+
focusBlock: (blockId: string) => any;
|
|
53
|
+
configure: (block: MaterializedBlock) => any;
|
|
54
|
+
remove: (block: MaterializedBlock) => any;
|
|
55
|
+
dataBindingBadgeClick: (block: MaterializedBlock, event?: Event) => any;
|
|
56
|
+
metricDetail: (payload: WorkbenchMetricDetailPayload) => any;
|
|
57
|
+
focusNestedBlock: (parentId: string, childId: string) => any;
|
|
58
|
+
nestedDataBindingBadgeClick: (parentBlock: MaterializedBlock, childBlock: MaterializedBlock) => any;
|
|
59
|
+
layoutTreeChange: (layoutTree: WorkbenchLayoutV4) => any;
|
|
60
|
+
chartClick: (payload: WorkbenchChartClickPayload) => any;
|
|
61
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
62
|
+
onFocusBlock?: (blockId: string) => any;
|
|
63
|
+
onConfigure?: (block: MaterializedBlock) => any;
|
|
64
|
+
onRemove?: (block: MaterializedBlock) => any;
|
|
65
|
+
onDataBindingBadgeClick?: (block: MaterializedBlock, event?: Event) => any;
|
|
66
|
+
onMetricDetail?: (payload: WorkbenchMetricDetailPayload) => any;
|
|
67
|
+
onFocusNestedBlock?: (parentId: string, childId: string) => any;
|
|
68
|
+
onNestedDataBindingBadgeClick?: (parentBlock: MaterializedBlock, childBlock: MaterializedBlock) => any;
|
|
69
|
+
onLayoutTreeChange?: (layoutTree: WorkbenchLayoutV4) => any;
|
|
70
|
+
onChartClick?: (payload: WorkbenchChartClickPayload) => any;
|
|
71
|
+
}>, {
|
|
72
|
+
userId: string;
|
|
73
|
+
roleId: RoleId | string;
|
|
74
|
+
isConfigMode: boolean;
|
|
75
|
+
canEditData: (block: MaterializedBlock) => boolean;
|
|
76
|
+
canRemove: (block: MaterializedBlock) => boolean;
|
|
77
|
+
canConfigure: (block: MaterializedBlock) => boolean;
|
|
78
|
+
canViewMetricDetail: (block: MaterializedBlock) => boolean;
|
|
79
|
+
rendererHostBridge: WorkbenchRendererHostBridge;
|
|
80
|
+
selectedNestedBlock: {
|
|
81
|
+
parentId: string;
|
|
82
|
+
childId: string;
|
|
83
|
+
} | null;
|
|
84
|
+
layoutTree: WorkbenchLayoutV4;
|
|
85
|
+
selectedBlockId: string | null;
|
|
86
|
+
cardClassForBlock: (block: MaterializedBlock) => CardClass;
|
|
87
|
+
cardDensityForBlock: (block: MaterializedBlock) => GridStackCardDensity;
|
|
88
|
+
canvasWidth: number;
|
|
89
|
+
canvasMinHeight: number;
|
|
90
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
91
|
+
export default _default;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { type CSSProperties } from 'vue';
|
|
2
|
+
import type { MaterializedBlock } from '@fses/workbench-app/types';
|
|
3
|
+
type CardClass = string | string[] | Record<string, boolean>;
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
block: MaterializedBlock;
|
|
6
|
+
isConfigMode?: boolean;
|
|
7
|
+
selected?: boolean;
|
|
8
|
+
canEditData?: boolean;
|
|
9
|
+
canRemove?: boolean;
|
|
10
|
+
canConfigure?: boolean;
|
|
11
|
+
canViewMetricDetail?: boolean;
|
|
12
|
+
cardClass?: CardClass;
|
|
13
|
+
cardStyle?: CSSProperties;
|
|
14
|
+
title?: string;
|
|
15
|
+
};
|
|
16
|
+
declare var __VLS_33: {};
|
|
17
|
+
type __VLS_Slots = {} & {
|
|
18
|
+
default?: (props: typeof __VLS_33) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
focusBlock: (blockId: string) => any;
|
|
22
|
+
configure: (block: MaterializedBlock) => any;
|
|
23
|
+
remove: (block: MaterializedBlock) => any;
|
|
24
|
+
dataBindingBadgeClick: (block: MaterializedBlock, event: MouseEvent) => any;
|
|
25
|
+
metricDetail: (block: MaterializedBlock) => any;
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
27
|
+
onFocusBlock?: (blockId: string) => any;
|
|
28
|
+
onConfigure?: (block: MaterializedBlock) => any;
|
|
29
|
+
onRemove?: (block: MaterializedBlock) => any;
|
|
30
|
+
onDataBindingBadgeClick?: (block: MaterializedBlock, event: MouseEvent) => any;
|
|
31
|
+
onMetricDetail?: (block: MaterializedBlock) => any;
|
|
32
|
+
}>, {
|
|
33
|
+
title: string;
|
|
34
|
+
isConfigMode: boolean;
|
|
35
|
+
selected: boolean;
|
|
36
|
+
canEditData: boolean;
|
|
37
|
+
canRemove: boolean;
|
|
38
|
+
canConfigure: boolean;
|
|
39
|
+
canViewMetricDetail: boolean;
|
|
40
|
+
cardClass: CardClass;
|
|
41
|
+
cardStyle: CSSProperties;
|
|
42
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
43
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
44
|
+
export default _default;
|
|
45
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
46
|
+
new (): {
|
|
47
|
+
$slots: S;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import 'gridstack/dist/gridstack.css';
|
|
2
|
+
import type { WorkbenchRendererHostBridge } from '@fses/workbench-app/types';
|
|
3
|
+
import type { MaterializedBlock, RoleId, WorkbenchGridLayoutNode } from '@fses/workbench-app/types';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
parentBlock: MaterializedBlock;
|
|
6
|
+
children?: WorkbenchGridLayoutNode[];
|
|
7
|
+
isConfigMode?: boolean;
|
|
8
|
+
roleId?: RoleId | string;
|
|
9
|
+
userId?: string;
|
|
10
|
+
rendererHostBridge?: WorkbenchRendererHostBridge;
|
|
11
|
+
selectedNestedBlock?: {
|
|
12
|
+
parentId: string;
|
|
13
|
+
childId: string;
|
|
14
|
+
} | null;
|
|
15
|
+
};
|
|
16
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
childrenChange: (parentId: string, children: WorkbenchGridLayoutNode[], meta?: {
|
|
18
|
+
movedTopLevelChildId?: string;
|
|
19
|
+
}) => any;
|
|
20
|
+
focusNestedBlock: (parentId: string, childId: string) => any;
|
|
21
|
+
nestedDataBindingBadgeClick: (parentBlock: MaterializedBlock, childBlock: MaterializedBlock) => any;
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
|
+
onChildrenChange?: (parentId: string, children: WorkbenchGridLayoutNode[], meta?: {
|
|
24
|
+
movedTopLevelChildId?: string;
|
|
25
|
+
}) => any;
|
|
26
|
+
onFocusNestedBlock?: (parentId: string, childId: string) => any;
|
|
27
|
+
onNestedDataBindingBadgeClick?: (parentBlock: MaterializedBlock, childBlock: MaterializedBlock) => any;
|
|
28
|
+
}>, {
|
|
29
|
+
userId: string;
|
|
30
|
+
roleId: RoleId | string;
|
|
31
|
+
isConfigMode: boolean;
|
|
32
|
+
children: WorkbenchGridLayoutNode[];
|
|
33
|
+
rendererHostBridge: WorkbenchRendererHostBridge;
|
|
34
|
+
selectedNestedBlock: {
|
|
35
|
+
parentId: string;
|
|
36
|
+
childId: string;
|
|
37
|
+
} | null;
|
|
38
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { LayoutConfig } from '@fses/workbench-app/types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
current: LayoutConfig;
|
|
4
|
+
open: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
toggle: () => any;
|
|
8
|
+
select: (next: LayoutConfig) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
onToggle?: () => any;
|
|
11
|
+
onSelect?: (next: LayoutConfig) => any;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { WorkbenchIntentChannel } from '@fses/workbench-app/types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
input: string;
|
|
4
|
+
planning: boolean;
|
|
5
|
+
activeIntents?: Partial<Record<WorkbenchIntentChannel, boolean>>;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
image: () => any;
|
|
9
|
+
send: () => any;
|
|
10
|
+
stop: () => any;
|
|
11
|
+
"update:input": (value: string) => any;
|
|
12
|
+
"intent-select": (intent: WorkbenchIntentChannel) => any;
|
|
13
|
+
attach: () => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onImage?: () => any;
|
|
16
|
+
onSend?: () => any;
|
|
17
|
+
onStop?: () => any;
|
|
18
|
+
"onUpdate:input"?: (value: string) => any;
|
|
19
|
+
"onIntent-select"?: (intent: WorkbenchIntentChannel) => any;
|
|
20
|
+
onAttach?: () => any;
|
|
21
|
+
}>, {
|
|
22
|
+
activeIntents: Partial<Record<WorkbenchIntentChannel, boolean>>;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
export default _default;
|
package/dist/internal/personal-workbench/components/workbench/SystemCardPreviewPopover.vue.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
capabilityId: string;
|
|
3
|
+
title: string;
|
|
4
|
+
previewUrl?: string;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { Component } from 'vue';
|
|
2
|
+
export type WelcomeMetric = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
hint: string;
|
|
6
|
+
};
|
|
7
|
+
export type WelcomeBannerMetric = WelcomeMetric & {
|
|
8
|
+
icon?: Component;
|
|
9
|
+
badge?: string | number;
|
|
10
|
+
onClick?: () => void;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_Props = {
|
|
13
|
+
portalMetrics: WelcomeBannerMetric[];
|
|
14
|
+
class?: string;
|
|
15
|
+
};
|
|
16
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
17
|
+
class: string;
|
|
18
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
message?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
message: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
export default _default;
|