@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const fdeSkillWorkbenchTheme: import("../../themes").WorkbenchThemeSourceConfig;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview 工作台扩展运行时桥 - 为机械迁移后的公共组件提供脚手架注入内容。
|
|
3
|
+
* @author seadon
|
|
4
|
+
* @created 2026-08-12
|
|
5
|
+
*/
|
|
6
|
+
import type { Component } from 'vue';
|
|
7
|
+
import type { WorkbenchAppAdapters } from '../../../adapters/types';
|
|
8
|
+
import type { WorkbenchAppConfig } from '../../../config/workbenchAppConfig';
|
|
9
|
+
import type { WorkbenchAppExtensions } from '../../../extensions';
|
|
10
|
+
/**
|
|
11
|
+
* 设置当前工作台扩展。
|
|
12
|
+
* @param extensions - 脚手架传入的用户扩展。
|
|
13
|
+
* @returns 无返回值。
|
|
14
|
+
*/
|
|
15
|
+
export declare function configureRuntimeExtensions(extensions: WorkbenchAppExtensions): void;
|
|
16
|
+
/**
|
|
17
|
+
* 设置当前宿主装配对象。
|
|
18
|
+
* @param adapters - 平台适配器。
|
|
19
|
+
* @param config - 工作台配置。
|
|
20
|
+
* @param extensions - 用户扩展。
|
|
21
|
+
* @returns 无返回值。
|
|
22
|
+
*/
|
|
23
|
+
export declare function configureRuntimeHost(adapters: Partial<WorkbenchAppAdapters>, config: WorkbenchAppConfig, extensions: WorkbenchAppExtensions): void;
|
|
24
|
+
/** @returns 当前平台适配器。 */
|
|
25
|
+
export declare function runtimeAdapters(): Partial<WorkbenchAppAdapters>;
|
|
26
|
+
/** @returns 当前工作台配置。 */
|
|
27
|
+
export declare function runtimeConfig(): WorkbenchAppConfig;
|
|
28
|
+
/**
|
|
29
|
+
* 读取当前工作台扩展。
|
|
30
|
+
* @returns 当前扩展对象。
|
|
31
|
+
*/
|
|
32
|
+
export declare function runtimeExtensions(): WorkbenchAppExtensions;
|
|
33
|
+
/**
|
|
34
|
+
* 读取用户模板壳组件。
|
|
35
|
+
* @returns 模板壳组件或 undefined。
|
|
36
|
+
*/
|
|
37
|
+
export declare function runtimeTemplateShell(): Component | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const workbenchAdapters: Partial<import("../../..").WorkbenchAppAdapters>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const workbenchConfig: import("../../..").WorkbenchAppConfig;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const workbenchExtensions: import("../../..").WorkbenchAppExtensions;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillCardsHost.vue.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillChartCard.vue.d.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type { FdeSkillChartCardIntent, FdeSkillDrilldownContext } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
import { type FdeMetricChartPathItem } from '../runtime/fdeSkillMetricChartDrilldown';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
card: FdeSkillChartCardIntent;
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
error?: string | null;
|
|
7
|
+
metricPathItems?: FdeMetricChartPathItem[];
|
|
8
|
+
/** card=完整卡壳;embed=模板坑内去边框/卡头 */
|
|
9
|
+
variant?: 'card' | 'embed';
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
12
|
+
drilldown: (payload: {
|
|
13
|
+
card: FdeSkillChartCardIntent;
|
|
14
|
+
context: FdeSkillDrilldownContext;
|
|
15
|
+
}) => any;
|
|
16
|
+
"metric-dimension-switch": (payload: {
|
|
17
|
+
cardId: string;
|
|
18
|
+
dimensionCode: string;
|
|
19
|
+
}) => any;
|
|
20
|
+
"metric-drilldown": (payload: {
|
|
21
|
+
cardId: string;
|
|
22
|
+
dataIndex: number;
|
|
23
|
+
nextDimensionCode: string;
|
|
24
|
+
}) => any;
|
|
25
|
+
"metric-path-jump": (payload: {
|
|
26
|
+
cardId: string;
|
|
27
|
+
index: number;
|
|
28
|
+
}) => any;
|
|
29
|
+
"metric-clear-drilldown": (payload: {
|
|
30
|
+
cardId: string;
|
|
31
|
+
}) => any;
|
|
32
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
33
|
+
onDrilldown?: (payload: {
|
|
34
|
+
card: FdeSkillChartCardIntent;
|
|
35
|
+
context: FdeSkillDrilldownContext;
|
|
36
|
+
}) => any;
|
|
37
|
+
"onMetric-dimension-switch"?: (payload: {
|
|
38
|
+
cardId: string;
|
|
39
|
+
dimensionCode: string;
|
|
40
|
+
}) => any;
|
|
41
|
+
"onMetric-drilldown"?: (payload: {
|
|
42
|
+
cardId: string;
|
|
43
|
+
dataIndex: number;
|
|
44
|
+
nextDimensionCode: string;
|
|
45
|
+
}) => any;
|
|
46
|
+
"onMetric-path-jump"?: (payload: {
|
|
47
|
+
cardId: string;
|
|
48
|
+
index: number;
|
|
49
|
+
}) => any;
|
|
50
|
+
"onMetric-clear-drilldown"?: (payload: {
|
|
51
|
+
cardId: string;
|
|
52
|
+
}) => any;
|
|
53
|
+
}>, {
|
|
54
|
+
variant: "card" | "embed";
|
|
55
|
+
metricPathItems: FdeMetricChartPathItem[];
|
|
56
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
57
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { FdeSkillDashboardWidget } from '../runtime/fdeSkillDashboardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
widget: FdeSkillDashboardWidget;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: 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>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title: 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<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardGrid.vue.d.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type { FdeSkillDrilldownContext } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
import type { FdeSkillDashboardLayoutSpec, FdeSkillDashboardWidget } from '../runtime/fdeSkillDashboardTypes';
|
|
3
|
+
import type { FdeMetricChartPathItem } from '../runtime/fdeSkillMetricChartDrilldown';
|
|
4
|
+
import type { FdeSkillChartTheme } from '../runtime/fdeSkillChartTheme';
|
|
5
|
+
import type { FdeSkillRefreshState } from '../runtime/fdeSkillDataRefresh';
|
|
6
|
+
import type { FdeSkillDetailSourceCard } from '../runtime/fdeSkillProtocolChartDrilldown';
|
|
7
|
+
type __VLS_Props = {
|
|
8
|
+
widgets: FdeSkillDashboardWidget[];
|
|
9
|
+
layout: FdeSkillDashboardLayoutSpec;
|
|
10
|
+
states: Record<string, FdeSkillRefreshState>;
|
|
11
|
+
chartTheme?: FdeSkillChartTheme;
|
|
12
|
+
metricPathItems?: Record<string, FdeMetricChartPathItem[]>;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
15
|
+
drilldown: (payload: {
|
|
16
|
+
card: FdeSkillDetailSourceCard;
|
|
17
|
+
context: FdeSkillDrilldownContext;
|
|
18
|
+
}) => any;
|
|
19
|
+
"metric-dimension-switch": (payload: {
|
|
20
|
+
cardId: string;
|
|
21
|
+
dimensionCode: string;
|
|
22
|
+
}) => any;
|
|
23
|
+
"metric-drilldown": (payload: {
|
|
24
|
+
cardId: string;
|
|
25
|
+
dataIndex: number;
|
|
26
|
+
nextDimensionCode: string;
|
|
27
|
+
}) => any;
|
|
28
|
+
"metric-path-jump": (payload: {
|
|
29
|
+
cardId: string;
|
|
30
|
+
index: number;
|
|
31
|
+
}) => any;
|
|
32
|
+
"metric-clear-drilldown": (payload: {
|
|
33
|
+
cardId: string;
|
|
34
|
+
}) => any;
|
|
35
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
36
|
+
onDrilldown?: (payload: {
|
|
37
|
+
card: FdeSkillDetailSourceCard;
|
|
38
|
+
context: FdeSkillDrilldownContext;
|
|
39
|
+
}) => any;
|
|
40
|
+
"onMetric-dimension-switch"?: (payload: {
|
|
41
|
+
cardId: string;
|
|
42
|
+
dimensionCode: string;
|
|
43
|
+
}) => any;
|
|
44
|
+
"onMetric-drilldown"?: (payload: {
|
|
45
|
+
cardId: string;
|
|
46
|
+
dataIndex: number;
|
|
47
|
+
nextDimensionCode: string;
|
|
48
|
+
}) => any;
|
|
49
|
+
"onMetric-path-jump"?: (payload: {
|
|
50
|
+
cardId: string;
|
|
51
|
+
index: number;
|
|
52
|
+
}) => any;
|
|
53
|
+
"onMetric-clear-drilldown"?: (payload: {
|
|
54
|
+
cardId: string;
|
|
55
|
+
}) => any;
|
|
56
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
57
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { FdeSkillDashboardWidget } from '../runtime/fdeSkillDashboardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
widget: FdeSkillDashboardWidget;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: 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>;
|
|
6
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardHost.vue.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { FdeSkillHeaderKpiItem } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
item: FdeSkillHeaderKpiItem;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: 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>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { FdeSkillListSpec } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
list: FdeSkillListSpec;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: 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>;
|
|
6
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardShell.vue.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { WorkbenchStyleKey } from '@workbench-internal/lib/workbenchThemes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
workbenchStyle: WorkbenchStyleKey;
|
|
4
|
+
showWorkbenchThemePicker?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_11: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_11) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
workbenchStyleChange: (style: WorkbenchStyleKey) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onWorkbenchStyleChange?: (style: WorkbenchStyleKey) => any;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { FdeSkillDashboardWidget } from '../runtime/fdeSkillDashboardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
widget: FdeSkillDashboardWidget;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: 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>;
|
|
6
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDashboardWidget.vue.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { FdeSkillDrilldownContext } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
import type { FdeSkillChartTheme } from '../runtime/fdeSkillChartTheme';
|
|
3
|
+
import type { FdeSkillRefreshState } from '../runtime/fdeSkillDataRefresh';
|
|
4
|
+
import { type FdeSkillDetailSourceCard } from '../runtime/fdeSkillProtocolChartDrilldown';
|
|
5
|
+
import { type FdeMetricChartPathItem } from '../runtime/fdeSkillMetricChartDrilldown';
|
|
6
|
+
import type { FdeSkillDashboardWidget } from '../runtime/fdeSkillDashboardTypes';
|
|
7
|
+
type __VLS_Props = {
|
|
8
|
+
widget: FdeSkillDashboardWidget;
|
|
9
|
+
states: Record<string, FdeSkillRefreshState>;
|
|
10
|
+
chartTheme: FdeSkillChartTheme;
|
|
11
|
+
metricPathItems?: FdeMetricChartPathItem[];
|
|
12
|
+
};
|
|
13
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
drilldown: (payload: {
|
|
15
|
+
card: FdeSkillDetailSourceCard;
|
|
16
|
+
context: FdeSkillDrilldownContext;
|
|
17
|
+
}) => any;
|
|
18
|
+
"metric-dimension-switch": (payload: {
|
|
19
|
+
cardId: string;
|
|
20
|
+
dimensionCode: string;
|
|
21
|
+
}) => any;
|
|
22
|
+
"metric-drilldown": (payload: {
|
|
23
|
+
cardId: string;
|
|
24
|
+
dataIndex: number;
|
|
25
|
+
nextDimensionCode: string;
|
|
26
|
+
}) => any;
|
|
27
|
+
"metric-path-jump": (payload: {
|
|
28
|
+
cardId: string;
|
|
29
|
+
index: number;
|
|
30
|
+
}) => any;
|
|
31
|
+
"metric-clear-drilldown": (payload: {
|
|
32
|
+
cardId: string;
|
|
33
|
+
}) => any;
|
|
34
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
35
|
+
onDrilldown?: (payload: {
|
|
36
|
+
card: FdeSkillDetailSourceCard;
|
|
37
|
+
context: FdeSkillDrilldownContext;
|
|
38
|
+
}) => any;
|
|
39
|
+
"onMetric-dimension-switch"?: (payload: {
|
|
40
|
+
cardId: string;
|
|
41
|
+
dimensionCode: string;
|
|
42
|
+
}) => any;
|
|
43
|
+
"onMetric-drilldown"?: (payload: {
|
|
44
|
+
cardId: string;
|
|
45
|
+
dataIndex: number;
|
|
46
|
+
nextDimensionCode: string;
|
|
47
|
+
}) => any;
|
|
48
|
+
"onMetric-path-jump"?: (payload: {
|
|
49
|
+
cardId: string;
|
|
50
|
+
index: number;
|
|
51
|
+
}) => any;
|
|
52
|
+
"onMetric-clear-drilldown"?: (payload: {
|
|
53
|
+
cardId: string;
|
|
54
|
+
}) => any;
|
|
55
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
56
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillDrilldownModal.vue.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { FdeSkillDataRow, FdeSkillDrilldownColumn, FdeSkillDrilldownContext } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
visible: boolean;
|
|
4
|
+
loading: boolean;
|
|
5
|
+
error: string | null;
|
|
6
|
+
context: FdeSkillDrilldownContext | null;
|
|
7
|
+
columns: FdeSkillDrilldownColumn[];
|
|
8
|
+
rows: FdeSkillDataRow[];
|
|
9
|
+
total: number;
|
|
10
|
+
pageIndex: number;
|
|
11
|
+
pageSize: number;
|
|
12
|
+
};
|
|
13
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
close: () => any;
|
|
15
|
+
"page-change": (pageIndex: number) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onClose?: () => any;
|
|
18
|
+
"onPage-change"?: (pageIndex: number) => any;
|
|
19
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillFilterBar.vue.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FdeSkillQueryCardIntent } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
import { type FdeSkillQueryValueMap } from '../runtime/fdeSkillQueryFilters';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
cards: FdeSkillQueryCardIntent[];
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
submit: (payload: {
|
|
9
|
+
values: FdeSkillQueryValueMap;
|
|
10
|
+
}) => any;
|
|
11
|
+
reset: () => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onSubmit?: (payload: {
|
|
14
|
+
values: FdeSkillQueryValueMap;
|
|
15
|
+
}) => any;
|
|
16
|
+
onReset?: () => any;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillHeaderCard.vue.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { FdeSkillHeaderCardIntent } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
card: FdeSkillHeaderCardIntent;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: 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>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { FdeSkillListCardIntent } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
card: FdeSkillListCardIntent;
|
|
4
|
+
loading?: boolean;
|
|
5
|
+
error?: string | null;
|
|
6
|
+
variant?: 'card' | 'embed';
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
"page-change": (payload: {
|
|
10
|
+
pageIndex: number;
|
|
11
|
+
pageSize: number;
|
|
12
|
+
}) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
"onPage-change"?: (payload: {
|
|
15
|
+
pageIndex: number;
|
|
16
|
+
pageSize: number;
|
|
17
|
+
}) => any;
|
|
18
|
+
}>, {
|
|
19
|
+
variant: "card" | "embed";
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { FdeMetricChartInteractionView } from '../runtime/fdeSkillMetricChartDrilldown';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
view: FdeMetricChartInteractionView | null;
|
|
4
|
+
loading?: boolean;
|
|
5
|
+
compact?: boolean;
|
|
6
|
+
showCurrent?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
"switch-dimension": (dimensionCode: string) => any;
|
|
10
|
+
"jump-path": (index: number) => any;
|
|
11
|
+
"clear-drilldown": () => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
"onSwitch-dimension"?: (dimensionCode: string) => any;
|
|
14
|
+
"onJump-path"?: (index: number) => any;
|
|
15
|
+
"onClear-drilldown"?: () => any;
|
|
16
|
+
}>, {
|
|
17
|
+
compact: boolean;
|
|
18
|
+
showCurrent: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillNumberCard.vue.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { FdeSkillDrilldownContext, FdeSkillNumberCardIntent } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
card: FdeSkillNumberCardIntent;
|
|
4
|
+
loading?: boolean;
|
|
5
|
+
error?: string | null;
|
|
6
|
+
variant?: 'card' | 'embed';
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
drilldown: (payload: {
|
|
10
|
+
card: FdeSkillNumberCardIntent;
|
|
11
|
+
context: FdeSkillDrilldownContext;
|
|
12
|
+
}) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
onDrilldown?: (payload: {
|
|
15
|
+
card: FdeSkillNumberCardIntent;
|
|
16
|
+
context: FdeSkillDrilldownContext;
|
|
17
|
+
}) => any;
|
|
18
|
+
}>, {
|
|
19
|
+
variant: "card" | "embed";
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { WorkbenchEchartClickParams } from '@fses/workbench-app/types';
|
|
2
|
+
import type { FdeSkillProtocolChartSpec } from '../runtime/fdeSkillCardTypes';
|
|
3
|
+
import type { FdeSkillChartLayoutFit, FdeSkillChartTheme } from '../runtime/fdeSkillChartTheme';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
chart: FdeSkillProtocolChartSpec;
|
|
6
|
+
title?: string;
|
|
7
|
+
chartTheme?: FdeSkillChartTheme;
|
|
8
|
+
/** card=卡片流细柱;embed=模板坑;dashboard=栅格大屏 */
|
|
9
|
+
layoutFit?: FdeSkillChartLayoutFit;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
chartClick: (payload: WorkbenchEchartClickParams) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
onChartClick?: (payload: WorkbenchEchartClickParams) => any;
|
|
15
|
+
}>, {
|
|
16
|
+
layoutFit: FdeSkillChartLayoutFit;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
export default _default;
|
package/dist/internal/personal-workbench/fde-skill-cards/components/FdeSkillQueryCard.vue.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { FdeSkillQueryCardIntent } from '../runtime/fdeSkillCardTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
card: FdeSkillQueryCardIntent;
|
|
4
|
+
loading?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
+
submit: (payload: {
|
|
8
|
+
card: FdeSkillQueryCardIntent;
|
|
9
|
+
value: [string, string];
|
|
10
|
+
}) => any;
|
|
11
|
+
reset: (payload: {
|
|
12
|
+
card: FdeSkillQueryCardIntent;
|
|
13
|
+
}) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onSubmit?: (payload: {
|
|
16
|
+
card: FdeSkillQueryCardIntent;
|
|
17
|
+
value: [string, string];
|
|
18
|
+
}) => any;
|
|
19
|
+
onReset?: (payload: {
|
|
20
|
+
card: FdeSkillQueryCardIntent;
|
|
21
|
+
}) => any;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|