@genispace/geniapp 0.3.0 → 0.5.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/README.md +36 -11
- package/dist/{CrossAppRecordPicker-CQVmirWD.js → CrossAppRecordPicker-BRpqAjd7.js} +189 -253
- package/dist/CrossAppRecordPicker-BRpqAjd7.js.map +1 -0
- package/dist/MultiPageRenderer-B4G9Oswj.js +535 -0
- package/dist/MultiPageRenderer-B4G9Oswj.js.map +1 -0
- package/dist/Sidebar-DdSOXqnC.js +260 -0
- package/dist/Sidebar-DdSOXqnC.js.map +1 -0
- package/dist/ai/adopt/AiSuggestionPanel.d.ts +1 -1
- package/dist/ai/components/AgentJobProgress.d.ts +1 -1
- package/dist/ai/components/BulkActionBar.d.ts +1 -1
- package/dist/ai/integrations/partner/createPartnerRecordPickerHook.d.ts +1 -1
- package/dist/case-workspace/domain.d.ts +1 -1
- package/dist/components/adapters/host.d.ts +4 -0
- package/dist/components/adapters/host.js +12 -0
- package/dist/components/adapters/host.js.map +1 -0
- package/dist/components/adapters/platform.d.ts +16 -0
- package/dist/components/app/context/DeploymentContext.d.ts +24 -0
- package/dist/components/app/context/PermissionContext.d.ts +32 -0
- package/dist/components/app/context/SubscriptionContext.d.ts +9 -0
- package/dist/components/app/context/UserContext.d.ts +22 -0
- package/dist/components/app/services/apiKey.d.ts +96 -0
- package/dist/components/app/services/auth.d.ts +1 -0
- package/dist/components/app/services/configMap.d.ts +94 -0
- package/dist/components/app/services/task.d.ts +42 -0
- package/dist/components/app/services/workbenchApi.d.ts +495 -0
- package/dist/components/app/types/agent.d.ts +100 -0
- package/dist/components/app/types/api.d.ts +9 -0
- package/dist/components/app/types/knowledge.d.ts +10 -0
- package/dist/components/app/types/model.d.ts +23 -0
- package/dist/components/app/types/task.d.ts +64 -0
- package/dist/components/app/types/taskExecution.d.ts +26 -0
- package/dist/components/assets/maps/bundledMapGeo.d.ts +4 -0
- package/dist/components/config/communicationIcons.d.ts +23 -0
- package/dist/components/config/componentTriggers.d.ts +70 -0
- package/dist/components/constants/tableActionButtonStyle.d.ts +15 -0
- package/dist/components/contexts/PageFullscreenContext.d.ts +4 -0
- package/dist/components/contexts/ParameterContext.d.ts +18 -0
- package/dist/components/contexts/TabActivityContext.d.ts +2 -0
- package/dist/components/contexts/ViewportContext.d.ts +19 -0
- package/dist/components/contexts/WorkbenchConfigLocaleContext.d.ts +23 -0
- package/dist/components/contexts/WorkbenchGlobalSpaceContext.d.ts +10 -0
- package/dist/components/contexts/WorkbenchThemeContext.d.ts +23 -0
- package/dist/components/dialogs/TaskParamsDialog.d.ts +18 -0
- package/dist/components/dialogs/TreeFormDialog.d.ts +23 -0
- package/dist/components/hooks/index.d.ts +6 -0
- package/dist/components/hooks/useComponentCommunication.d.ts +27 -0
- package/dist/components/hooks/useConditionMapper.d.ts +17 -0
- package/dist/components/hooks/useCurrentUser.d.ts +10 -0
- package/dist/components/hooks/useDatabaseDataSource.d.ts +8 -0
- package/dist/components/hooks/useDatasourceVersionBindings.d.ts +24 -0
- package/dist/components/hooks/useEnhancedDataSource.d.ts +40 -0
- package/dist/components/hooks/useMobileViewport.d.ts +18 -0
- package/dist/components/hooks/usePageAutoRefresh.d.ts +9 -0
- package/dist/components/hooks/useParameterHandler.d.ts +27 -0
- package/dist/components/hooks/useReleaseNotesPrompt.d.ts +38 -0
- package/dist/components/hooks/useSpaceSwitchHandler.d.ts +7 -0
- package/dist/components/hooks/useTaskInputDataSourceCache.d.ts +24 -0
- package/dist/components/hooks/useVisibleWhenContext.d.ts +3 -0
- package/dist/components/hooks/useWaitForParameters.d.ts +9 -0
- package/dist/components/hooks/useWorkbenchAppAccess.d.ts +16 -0
- package/dist/components/hooks/useWorkbenchHeaderNavApps.d.ts +7 -0
- package/dist/components/hooks/useWorkbenchPreview.d.ts +24 -0
- package/dist/components/index.d.ts +23 -0
- package/dist/components/inputs/ArrayInput.d.ts +14 -0
- package/dist/components/inputs/ObjectArrayInput.d.ts +15 -0
- package/dist/components/layout/Grid24Renderer.d.ts +23 -0
- package/dist/components/layout/grid24CellContext.d.ts +2 -0
- package/dist/components/layout/index.d.ts +6 -0
- package/dist/components/layout.js +43 -0
- package/dist/components/layout.js.map +1 -0
- package/dist/components/lib/api/apiClient.d.ts +22 -0
- package/dist/components/lib/api/baseApiClient.d.ts +21 -0
- package/dist/components/lib/api/hostAdapterBridge.d.ts +21 -0
- package/dist/components/lib/api.d.ts +1 -0
- package/dist/components/lib/auth/permissionManager.d.ts +67 -0
- package/dist/components/lib/config/deployment.d.ts +33 -0
- package/dist/components/lib/config.d.ts +45 -0
- package/dist/components/lib/hooks/use-mobile.d.ts +1 -0
- package/dist/components/lib/hooks/useOperator.d.ts +11 -0
- package/dist/components/lib/services/agentService.d.ts +77 -0
- package/dist/components/lib/services/applicationService.d.ts +111 -0
- package/dist/components/lib/theme/themeUtils.d.ts +13 -0
- package/dist/components/lib/theme/useWorkbenchTheme.d.ts +1 -0
- package/dist/components/lib/types/api.d.ts +113 -0
- package/dist/components/lib/utils/avatar.d.ts +7 -0
- package/dist/components/lib/utils/cn.d.ts +3 -0
- package/dist/components/lib/utils/color.d.ts +1 -0
- package/dist/components/lib/utils/debounce.d.ts +1 -0
- package/dist/components/lib/utils/formatting.d.ts +4 -0
- package/dist/components/lib/utils/icon.d.ts +1 -0
- package/dist/components/lib/utils.d.ts +7 -0
- package/dist/components/locales/i18n.d.ts +10 -0
- package/dist/components/locales/routeNamespaces.d.ts +4 -0
- package/dist/components/mobile/components/BottomTabNavigation.d.ts +11 -0
- package/dist/components/mobile/components/ComponentAdapter.d.ts +9 -0
- package/dist/components/mobile/components/MobileFloatingBackButton.d.ts +23 -0
- package/dist/components/mobile/components/adaptive/MobileCardView.d.ts +6 -0
- package/dist/components/mobile/components/adaptive/MobileChartView.d.ts +9 -0
- package/dist/components/mobile/components/adaptive/MobileDateRangeFilterField.d.ts +16 -0
- package/dist/components/mobile/components/adaptive/MobileEChartsView.d.ts +10 -0
- package/dist/components/mobile/components/adaptive/MobileFormView.d.ts +6 -0
- package/dist/components/mobile/components/adaptive/MobileListView.d.ts +6 -0
- package/dist/components/mobile/components/adaptive/MobileStatCard.d.ts +13 -0
- package/dist/components/mobile/components/adaptive/MobileTableView.d.ts +9 -0
- package/dist/components/mobile/components/adaptive/MobileTabsView.d.ts +6 -0
- package/dist/components/mobile/components/adaptive/index.d.ts +4 -0
- package/dist/components/mobile/components/adaptive/mobileFilterFieldStyles.d.ts +19 -0
- package/dist/components/mobile/hooks/useMobileNavigationCanGoBack.d.ts +1 -0
- package/dist/components/mobile/hooks/useMobileTabTransitionDirection.d.ts +1 -0
- package/dist/components/mobile/index.d.ts +4 -0
- package/dist/components/mobile/mobileFlowLayoutContext.d.ts +2 -0
- package/dist/components/mobile/runtime-index.d.ts +3 -0
- package/dist/components/mobile/utils/fetchUserCurrentSpaceId.d.ts +15 -0
- package/dist/components/mobile/utils/getMobileViewportState.d.ts +25 -0
- package/dist/components/mobile/utils/mobileBottomNav.d.ts +13 -0
- package/dist/components/mobile/utils/mobileBottomNavInset.d.ts +4 -0
- package/dist/components/mobile/utils/mobileComponentProps.d.ts +44 -0
- package/dist/components/mobile/utils/mobileFormDisplayUtils.d.ts +4 -0
- package/dist/components/mobile/utils/mobileNavigationStore.d.ts +35 -0
- package/dist/components/mobile/utils/mobileToolbarNav.d.ts +13 -0
- package/dist/components/mobile/utils/mobileUA.d.ts +1 -0
- package/dist/components/mobile/utils/mobileWorkbenchSpaceSync.d.ts +60 -0
- package/dist/components/mobile/utils/wecomDetector.d.ts +9 -0
- package/dist/components/mobile/utils/workbenchSpaceSyncGate.d.ts +7 -0
- package/dist/components/mobile.js +25 -0
- package/dist/components/mobile.js.map +1 -0
- package/dist/components/mocks/index.d.ts +13 -0
- package/dist/components/mocks/templateRegistry.d.ts +16 -0
- package/dist/components/mocks/types.d.ts +1 -0
- package/dist/components/renderers/analytics-table/AnalyticsTableRenderer.d.ts +125 -0
- package/dist/components/renderers/analytics-table/index.d.ts +1 -0
- package/dist/components/renderers/analytics-table.js +5 -0
- package/dist/components/renderers/analytics-table.js.map +1 -0
- package/dist/components/renderers/base/BaseRenderers.d.ts +7 -0
- package/dist/components/renderers/base/LoadingRenderer.d.ts +14 -0
- package/dist/components/renderers/card/CardRenderer.d.ts +24 -0
- package/dist/components/renderers/card/index.d.ts +1 -0
- package/dist/components/renderers/card.js +5 -0
- package/dist/components/renderers/card.js.map +1 -0
- package/dist/components/renderers/cells/swCells.d.ts +49 -0
- package/dist/components/renderers/chart/ChartRenderer.d.ts +167 -0
- package/dist/components/renderers/chart/index.d.ts +1 -0
- package/dist/components/renderers/chart.js +5 -0
- package/dist/components/renderers/chart.js.map +1 -0
- package/dist/components/renderers/collapse-panel/CollapsePanelRenderer.d.ts +28 -0
- package/dist/components/renderers/collapse-panel/index.d.ts +1 -0
- package/dist/components/renderers/collapse-panel.js +5 -0
- package/dist/components/renderers/collapse-panel.js.map +1 -0
- package/dist/components/renderers/container/ContainerRenderers.d.ts +44 -0
- package/dist/components/renderers/container/index.d.ts +1 -0
- package/dist/components/renderers/container.js +5 -0
- package/dist/components/renderers/container.js.map +1 -0
- package/dist/components/renderers/custom-content/CustomContentRenderer.d.ts +20 -0
- package/dist/components/renderers/custom-content/index.d.ts +1 -0
- package/dist/components/renderers/custom-content.js +6 -0
- package/dist/components/renderers/custom-content.js.map +1 -0
- package/dist/components/renderers/data/useBoundRows.d.ts +9 -0
- package/dist/components/renderers/data-grid-card/DataGridCard.d.ts +46 -0
- package/dist/components/renderers/data-grid-card/index.d.ts +1 -0
- package/dist/components/renderers/data-grid-card.js +5 -0
- package/dist/components/renderers/data-grid-card.js.map +1 -0
- package/dist/components/renderers/echarts/EChartsChartRenderer.d.ts +178 -0
- package/dist/components/renderers/echarts/index.d.ts +1 -0
- package/dist/components/renderers/echarts/shared/colors.d.ts +56 -0
- package/dist/components/renderers/echarts/shared/index.d.ts +1 -0
- package/dist/components/renderers/echarts.js +5 -0
- package/dist/components/renderers/echarts.js.map +1 -0
- package/dist/components/renderers/editable-table/EditableTable.types.d.ts +27 -0
- package/dist/components/renderers/editable-table/EditableTableController.d.ts +44 -0
- package/dist/components/renderers/editable-table/EditableTableRenderer.d.ts +38 -0
- package/dist/components/renderers/editable-table/cell-editors/ColorEditor.d.ts +11 -0
- package/dist/components/renderers/editable-table/cell-editors/DateEditor.d.ts +11 -0
- package/dist/components/renderers/editable-table/cell-editors/FileEditor.d.ts +9 -0
- package/dist/components/renderers/editable-table/cell-editors/NumberEditor.d.ts +10 -0
- package/dist/components/renderers/editable-table/cell-editors/SelectEditor.d.ts +19 -0
- package/dist/components/renderers/editable-table/cell-editors/SwitchEditor.d.ts +13 -0
- package/dist/components/renderers/editable-table/cell-editors/TextEditor.d.ts +11 -0
- package/dist/components/renderers/editable-table/cell-editors/index.d.ts +7 -0
- package/dist/components/renderers/editable-table/editableTableApiErrors.d.ts +3 -0
- package/dist/components/renderers/editable-table/editableTableDictionary.d.ts +13 -0
- package/dist/components/renderers/editable-table/editableTableFormatters.d.ts +11 -0
- package/dist/components/renderers/editable-table/editableTableWriteDatasourceId.d.ts +8 -0
- package/dist/components/renderers/editable-table/index.d.ts +4 -0
- package/dist/components/renderers/editable-table.js +6 -0
- package/dist/components/renderers/editable-table.js.map +1 -0
- package/dist/components/renderers/filter-panel/FilterPanelRenderer.d.ts +275 -0
- package/dist/components/renderers/filter-panel/filterOptionCache.d.ts +33 -0
- package/dist/components/renderers/filter-panel/filterSelectionMemory.d.ts +11 -0
- package/dist/components/renderers/filter-panel/index.d.ts +1 -0
- package/dist/components/renderers/filter-panel.js +5 -0
- package/dist/components/renderers/filter-panel.js.map +1 -0
- package/dist/components/renderers/form/FileUploadDropzone.d.ts +24 -0
- package/dist/components/renderers/form/FormRenderer.d.ts +30 -0
- package/dist/components/renderers/form/formSizing.d.ts +14 -0
- package/dist/components/renderers/form/index.d.ts +2 -0
- package/dist/components/renderers/form.js +6 -0
- package/dist/components/renderers/form.js.map +1 -0
- package/dist/components/renderers/hero-card/HeroCardRenderer.d.ts +18 -0
- package/dist/components/renderers/hero-card/heroCardRows.d.ts +30 -0
- package/dist/components/renderers/hero-card/heroCardUtils.d.ts +164 -0
- package/dist/components/renderers/hero-card/index.d.ts +1 -0
- package/dist/components/renderers/hero-card.js +5 -0
- package/dist/components/renderers/hero-card.js.map +1 -0
- package/dist/components/renderers/identity/AppIdentityListRenderer.d.ts +60 -0
- package/dist/components/renderers/identity/IdentityAttributeAssignRenderer.d.ts +44 -0
- package/dist/components/renderers/identity/index.d.ts +2 -0
- package/dist/components/renderers/identity.js +6 -0
- package/dist/components/renderers/identity.js.map +1 -0
- package/dist/components/renderers/index.d.ts +1 -0
- package/dist/components/renderers/list/ListActionButton.d.ts +11 -0
- package/dist/components/renderers/list/ListDataTable.d.ts +13 -0
- package/dist/components/renderers/list/ListProgressBar.d.ts +12 -0
- package/dist/components/renderers/list/ListRenderers.d.ts +19 -0
- package/dist/components/renderers/list/ListTaskExecuteDialog.d.ts +17 -0
- package/dist/components/renderers/list/index.d.ts +1 -0
- package/dist/components/renderers/list/listActionUtils.d.ts +18 -0
- package/dist/components/renderers/list/listCellRender.d.ts +9 -0
- package/dist/components/renderers/list/listConfig.d.ts +67 -0
- package/dist/components/renderers/list/listCsvExport.d.ts +4 -0
- package/dist/components/renderers/list/listFormatUtils.d.ts +13 -0
- package/dist/components/renderers/list/listItemTemplates.d.ts +32 -0
- package/dist/components/renderers/list/listViewToggleUtils.d.ts +5 -0
- package/dist/components/renderers/list/useListActions.d.ts +38 -0
- package/dist/components/renderers/list/useListDataSource.d.ts +58 -0
- package/dist/components/renderers/list/useListSelectionEmit.d.ts +22 -0
- package/dist/components/renderers/list.js +5 -0
- package/dist/components/renderers/list.js.map +1 -0
- package/dist/components/renderers/map-chart/MapChartRenderer.d.ts +42 -0
- package/dist/components/renderers/map-chart/index.d.ts +1 -0
- package/dist/components/renderers/map-chart.js +5 -0
- package/dist/components/renderers/map-chart.js.map +1 -0
- package/dist/components/renderers/metric-carousel/MetricCarouselRenderer.d.ts +26 -0
- package/dist/components/renderers/metric-carousel/index.d.ts +1 -0
- package/dist/components/renderers/metric-carousel.js +5 -0
- package/dist/components/renderers/metric-carousel.js.map +1 -0
- package/dist/components/renderers/navigation/NavTileRenderer.d.ts +13 -0
- package/dist/components/renderers/navigation/index.d.ts +1 -0
- package/dist/components/renderers/navigation/navTileUtils.d.ts +46 -0
- package/dist/components/renderers/navigation.js +5 -0
- package/dist/components/renderers/navigation.js.map +1 -0
- package/dist/components/renderers/product-detail/ProductDetailRenderer.d.ts +23 -0
- package/dist/components/renderers/product-detail/index.d.ts +1 -0
- package/dist/components/renderers/product-detail/productCellRender.d.ts +25 -0
- package/dist/components/renderers/product-detail.js +5 -0
- package/dist/components/renderers/product-detail.js.map +1 -0
- package/dist/components/renderers/product-report/ProductReportRenderer.d.ts +21 -0
- package/dist/components/renderers/product-report/index.d.ts +1 -0
- package/dist/components/renderers/product-report.js +5 -0
- package/dist/components/renderers/product-report.js.map +1 -0
- package/dist/components/renderers/publish/PublishHistoryRenderer.d.ts +21 -0
- package/dist/components/renderers/publish/PublishPreviewEntryRenderer.d.ts +16 -0
- package/dist/components/renderers/publish/index.d.ts +2 -0
- package/dist/components/renderers/publish/publishHistoryHelpers.d.ts +41 -0
- package/dist/components/renderers/publish/publishPreviewEntryHelpers.d.ts +50 -0
- package/dist/components/renderers/publish.js +6 -0
- package/dist/components/renderers/publish.js.map +1 -0
- package/dist/components/renderers/radar-chart/RadarChartRenderer.d.ts +40 -0
- package/dist/components/renderers/radar-chart/index.d.ts +1 -0
- package/dist/components/renderers/radar-chart.js +5 -0
- package/dist/components/renderers/radar-chart.js.map +1 -0
- package/dist/components/renderers/registry.d.ts +38 -0
- package/dist/components/renderers/ring-stat/RingStatRenderer.d.ts +66 -0
- package/dist/components/renderers/ring-stat/index.d.ts +1 -0
- package/dist/components/renderers/ring-stat.js +5 -0
- package/dist/components/renderers/ring-stat.js.map +1 -0
- package/dist/components/renderers/runtime-DX1LfmqO.js +206944 -0
- package/dist/components/renderers/runtime-DX1LfmqO.js.map +1 -0
- package/dist/components/renderers/service-desk/ServiceDeskReporterRenderer.d.ts +48 -0
- package/dist/components/renderers/service-desk/index.d.ts +1 -0
- package/dist/components/renderers/service-desk.js +5 -0
- package/dist/components/renderers/service-desk.js.map +1 -0
- package/dist/components/renderers/shared/TableEmptyStateWithChromeInsets.d.ts +12 -0
- package/dist/components/renderers/shared/ViewToggleButton.d.ts +13 -0
- package/dist/components/renderers/shared/useEscapedStickyPanel.d.ts +6 -0
- package/dist/components/renderers/shared/useMobileChromeInsets.d.ts +18 -0
- package/dist/components/renderers/shared/useStickyHeaderClone.d.ts +31 -0
- package/dist/components/renderers/statistics/StatisticGroup.d.ts +77 -0
- package/dist/components/renderers/statistics/index.d.ts +1 -0
- package/dist/components/renderers/statistics.js +5 -0
- package/dist/components/renderers/statistics.js.map +1 -0
- package/dist/components/renderers/table/TableRenderer.d.ts +5 -0
- package/dist/components/renderers/table/index.d.ts +1 -0
- package/dist/components/renderers/table/tableFilterPanelGridClass.d.ts +15 -0
- package/dist/components/renderers/table.js +5 -0
- package/dist/components/renderers/table.js.map +1 -0
- package/dist/components/renderers/tabs/TabsRenderer.d.ts +63 -0
- package/dist/components/renderers/tabs/index.d.ts +1 -0
- package/dist/components/renderers/tabs/tabVariantStyles.d.ts +50 -0
- package/dist/components/renderers/tabs/tabsItemMapping.d.ts +26 -0
- package/dist/components/renderers/tabs.js +5 -0
- package/dist/components/renderers/tabs.js.map +1 -0
- package/dist/components/renderers/task-input/ExecutionHistoryModal.d.ts +9 -0
- package/dist/components/renderers/task-input/TaskExecutionOutputs.d.ts +15 -0
- package/dist/components/renderers/task-input/TaskInputField.d.ts +54 -0
- package/dist/components/renderers/task-input/TaskInputRenderer.d.ts +68 -0
- package/dist/components/renderers/task-input/index.d.ts +1 -0
- package/dist/components/renderers/task-input.js +5 -0
- package/dist/components/renderers/task-input.js.map +1 -0
- package/dist/components/renderers/tile-grid/TileGridRenderer.d.ts +41 -0
- package/dist/components/renderers/tile-grid/index.d.ts +1 -0
- package/dist/components/renderers/tile-grid.js +5 -0
- package/dist/components/renderers/tile-grid.js.map +1 -0
- package/dist/components/renderers/tree/SimpleTreeRenderer.d.ts +47 -0
- package/dist/components/renderers/tree/index.d.ts +1 -0
- package/dist/components/renderers/tree.js +5 -0
- package/dist/components/renderers/tree.js.map +1 -0
- package/dist/components/renderers/types.d.ts +682 -0
- package/dist/components/renderers/typography/TypographyRenderer.d.ts +17 -0
- package/dist/components/renderers/typography/index.d.ts +1 -0
- package/dist/components/renderers/typography.js +8 -0
- package/dist/components/renderers/typography.js.map +1 -0
- package/dist/components/renderers/workflow/SimpleSchemaForm.d.ts +12 -0
- package/dist/components/renderers/workflow/WorkflowComponent.d.ts +5 -0
- package/dist/components/renderers/workflow/index.d.ts +1 -0
- package/dist/components/renderers/workflow/renderers/ProposalRendererFactory.d.ts +15 -0
- package/dist/components/renderers/workflow/runtime-index.d.ts +9 -0
- package/dist/components/renderers/workflow/steps/ProposalStep.d.ts +21 -0
- package/dist/components/renderers/workflow/steps/ResultStep.d.ts +13 -0
- package/dist/components/renderers/workflow/steps/UploadStep.d.ts +15 -0
- package/dist/components/renderers/workflow/types.d.ts +185 -0
- package/dist/components/renderers/workflow.js +5 -0
- package/dist/components/renderers/workflow.js.map +1 -0
- package/dist/components/renderers.js +41 -0
- package/dist/components/renderers.js.map +1 -0
- package/dist/components/runtime/ComponentRenderer.d.ts +34 -0
- package/dist/components/runtime/GeniAppComponentProvider.d.ts +24 -0
- package/dist/components/runtime/GeniAppWorkbench.d.ts +20 -0
- package/dist/components/runtime/Loading.d.ts +9 -0
- package/dist/components/runtime/MultiPageRenderer.d.ts +15 -0
- package/dist/components/runtime/PageComingSoonOverlay.d.ts +11 -0
- package/dist/components/runtime/PageRenderer.d.ts +36 -0
- package/dist/components/runtime/TabManager.d.ts +39 -0
- package/dist/components/runtime/componentTypes.d.ts +70 -0
- package/dist/components/runtime/i18n.d.ts +5 -0
- package/dist/components/runtime/runtime-mode.d.ts +40 -0
- package/dist/components/shared/TitleManager.d.ts +8 -0
- package/dist/components/shared/platform-api/auth/platformRefreshResponse.d.ts +3 -0
- package/dist/components/shared/platform-api/auth/setupAuthInterceptors.d.ts +18 -0
- package/dist/components/shared/platform-api/auth/tokenStorage.d.ts +4 -0
- package/dist/components/shared/platform-api/index.d.ts +4 -0
- package/dist/components/shared/platform-types/index.d.ts +1 -0
- package/dist/components/shared/platform-types/types/json-schema.d.ts +50 -0
- package/dist/components/shared/platform-ui/components/ai/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/ai/message.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/ai/suggestion.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/features/agent/AgentIdentity.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/features/agent/agentIdentityUtils.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/features/agent/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/features/app/AppCheckboxInput.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/features/app/AppConfirmDialog.d.ts +12 -0
- package/dist/components/shared/platform-ui/components/features/app/AppDashboardSkeleton.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/features/app/AppDatePicker.d.ts +69 -0
- package/dist/components/shared/platform-ui/components/features/app/AppModal.d.ts +27 -0
- package/dist/components/shared/platform-ui/components/features/app/AppPageStates.d.ts +17 -0
- package/dist/components/shared/platform-ui/components/features/app/AppSelectInput.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/features/app/AppTemporalInput.d.ts +19 -0
- package/dist/components/shared/platform-ui/components/features/app/Page.d.ts +14 -0
- package/dist/components/shared/platform-ui/components/features/app/QueryErrorAlert.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/features/app/Sidebar.d.ts +47 -0
- package/dist/components/shared/platform-ui/components/features/app/index.d.ts +17 -0
- package/dist/components/shared/platform-ui/components/features/auth/AuthControlButtons.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/features/auth/ForgotPassword.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/features/auth/LogoutNotificationPage.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/features/auth/Privacy.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/features/auth/RequireAuth.d.ts +31 -0
- package/dist/components/shared/platform-ui/components/features/auth/Terms.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/features/auth/VerifyEmail.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/features/auth/application/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/auth/index.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/features/avatar/AvatarPickerModal.d.ts +30 -0
- package/dist/components/shared/platform-ui/components/features/avatar/generateAvatarUrl.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/features/avatar/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/features/chat/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/data/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/feedback/FeedbackMenu.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/features/feedback/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/home/Background.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/features/home/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/features/index.d.ts +22 -0
- package/dist/components/shared/platform-ui/components/features/knowledge/EvidenceCitation.d.ts +30 -0
- package/dist/components/shared/platform-ui/components/features/knowledge/HighlightedSnippet.d.ts +14 -0
- package/dist/components/shared/platform-ui/components/features/knowledge/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/features/notification/NotificationBell.d.ts +14 -0
- package/dist/components/shared/platform-ui/components/features/notification/NotificationList.d.ts +41 -0
- package/dist/components/shared/platform-ui/components/features/notification/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/features/operator/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/rbac/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/rich-text/RichTextField.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/features/space/SpaceContext.d.ts +121 -0
- package/dist/components/shared/platform-ui/components/features/space/SpaceSwitcher.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/features/space/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/features/subscription/SubscriptionContext.d.ts +26 -0
- package/dist/components/shared/platform-ui/components/features/subscription/SubscriptionGuard.d.ts +35 -0
- package/dist/components/shared/platform-ui/components/features/subscription/constants.d.ts +126 -0
- package/dist/components/shared/platform-ui/components/features/subscription/createSubscriptionService.d.ts +34 -0
- package/dist/components/shared/platform-ui/components/features/subscription/index.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/features/subscription/types.d.ts +161 -0
- package/dist/components/shared/platform-ui/components/features/subscription/useSubscription.d.ts +20 -0
- package/dist/components/shared/platform-ui/components/features/subscription/utils.d.ts +18 -0
- package/dist/components/shared/platform-ui/components/features/task/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/features/team/index.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/features/user/UserAvatar.d.ts +17 -0
- package/dist/components/shared/platform-ui/components/features/user/UserDisplay.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/features/user/UserSelect.d.ts +14 -0
- package/dist/components/shared/platform-ui/components/features/user/useUserDirectory.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/features/user/userDirectoryTypes.d.ts +18 -0
- package/dist/components/shared/platform-ui/components/icons/alipay-pay-mark.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/icons/bank-transfer-mark.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/icons/stripe-payment-mark.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/icons/wechat-pay-mark.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/index.d.ts +3 -0
- package/dist/components/shared/platform-ui/components/patterns/entity-patterns.d.ts +3 -0
- package/dist/components/shared/platform-ui/components/patterns/form-section.d.ts +11 -0
- package/dist/components/shared/platform-ui/components/patterns/record-list-frame.d.ts +12 -0
- package/dist/components/shared/platform-ui/components/patterns/status-stepper.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/primitives/data-display/ApiErrorState.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/primitives/data-display/FilePreviewDialog.d.ts +18 -0
- package/dist/components/shared/platform-ui/components/primitives/data-display/index.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/primitives/feedback/index.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/primitives/feedback/toaster.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/primitives/feedback/use-toast.d.ts +46 -0
- package/dist/components/shared/platform-ui/components/primitives/forms/CountryCodeSelect.d.ts +16 -0
- package/dist/components/shared/platform-ui/components/primitives/forms/index.d.ts +1 -0
- package/dist/components/shared/platform-ui/components/primitives/index.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/AppHeader.d.ts +111 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/AppWatermark.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/PublicFooter.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/PublicHeader.d.ts +39 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/PublicLayout.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/ThemeToggle.d.ts +33 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/WatermarkOverlay.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/brandAssets.d.ts +11 -0
- package/dist/components/shared/platform-ui/components/primitives/layout/index.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/ChartAreaSkeleton.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/ChartEmptyState.d.ts +14 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/ComponentSkeletonShell.d.ts +16 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/ConfigEditorSkeleton.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/DetailTabsSkeleton.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/EmptyStateBadge.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/FormCardSkeleton.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/FormFieldSkeleton.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/FormPageSkeleton.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/GridCardsSkeleton.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/ListSkeleton.d.ts +26 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/PageHeaderSkeleton.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/SplitPaneSkeleton.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/StatsRowSkeleton.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/TableEmptyState.d.ts +27 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/TablePageSkeleton.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/TabsBarSkeleton.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/index.d.ts +24 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/skeletonMetrics.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/primitives/page-skeleton/useVisibleCenter.d.ts +34 -0
- package/dist/components/shared/platform-ui/components/ui/accordion.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/ui/ai-draft-banner.d.ts +21 -0
- package/dist/components/shared/platform-ui/components/ui/alert-dialog.d.ts +48 -0
- package/dist/components/shared/platform-ui/components/ui/alert.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/ui/avatar.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/ui/badge.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/ui/breadcrumb.d.ts +19 -0
- package/dist/components/shared/platform-ui/components/ui/button.d.ts +11 -0
- package/dist/components/shared/platform-ui/components/ui/calendar.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/ui/card.d.ts +8 -0
- package/dist/components/shared/platform-ui/components/ui/chart.d.ts +16 -0
- package/dist/components/shared/platform-ui/components/ui/checkbox.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/ui/collapsible.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/ui/column-config.d.ts +42 -0
- package/dist/components/shared/platform-ui/components/ui/date-picker.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/ui/date-range-filter.d.ts +32 -0
- package/dist/components/shared/platform-ui/components/ui/date-range-picker.d.ts +11 -0
- package/dist/components/shared/platform-ui/components/ui/dialog-input.d.ts +17 -0
- package/dist/components/shared/platform-ui/components/ui/dialog-safe-select.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/ui/dialog.d.ts +25 -0
- package/dist/components/shared/platform-ui/components/ui/dropdown-menu.d.ts +27 -0
- package/dist/components/shared/platform-ui/components/ui/feature-guide.d.ts +43 -0
- package/dist/components/shared/platform-ui/components/ui/form.d.ts +23 -0
- package/dist/components/shared/platform-ui/components/ui/help-tip.d.ts +29 -0
- package/dist/components/shared/platform-ui/components/ui/hint-notice.d.ts +22 -0
- package/dist/components/shared/platform-ui/components/ui/index.d.ts +6 -0
- package/dist/components/shared/platform-ui/components/ui/input.d.ts +3 -0
- package/dist/components/shared/platform-ui/components/ui/label.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/ui/modal-container.d.ts +56 -0
- package/dist/components/shared/platform-ui/components/ui/modal-templates.d.ts +46 -0
- package/dist/components/shared/platform-ui/components/ui/multi-select.d.ts +20 -0
- package/dist/components/shared/platform-ui/components/ui/pagination.d.ts +28 -0
- package/dist/components/shared/platform-ui/components/ui/popover.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/ui/progress.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/ui/radio-button-group.d.ts +18 -0
- package/dist/components/shared/platform-ui/components/ui/radio-group.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/ui/scroll-area.d.ts +5 -0
- package/dist/components/shared/platform-ui/components/ui/select.d.ts +16 -0
- package/dist/components/shared/platform-ui/components/ui/separator.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/ui/sheet.d.ts +25 -0
- package/dist/components/shared/platform-ui/components/ui/sidebar-rail.d.ts +9 -0
- package/dist/components/shared/platform-ui/components/ui/skeleton.d.ts +2 -0
- package/dist/components/shared/platform-ui/components/ui/slider.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/ui/switch.d.ts +4 -0
- package/dist/components/shared/platform-ui/components/ui/table.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/ui/tabs.d.ts +10 -0
- package/dist/components/shared/platform-ui/components/ui/textarea.d.ts +3 -0
- package/dist/components/shared/platform-ui/components/ui/toast.d.ts +21 -0
- package/dist/components/shared/platform-ui/components/ui/toggle-group.d.ts +12 -0
- package/dist/components/shared/platform-ui/components/ui/toggle.d.ts +12 -0
- package/dist/components/shared/platform-ui/components/ui/tooltip.d.ts +7 -0
- package/dist/components/shared/platform-ui/components/ui/typography.d.ts +15 -0
- package/dist/components/shared/platform-ui/components/ui/underline-tabs.d.ts +13 -0
- package/dist/components/shared/platform-ui/components/ui/view-mode-toggle.d.ts +9 -0
- package/dist/components/shared/platform-ui/context/AppHostContext.d.ts +16 -0
- package/dist/components/shared/platform-ui/contexts/UserSettingsContext.d.ts +23 -0
- package/dist/components/shared/platform-ui/hooks/builtInApps.d.ts +91 -0
- package/dist/components/shared/platform-ui/hooks/pinnedBuiltInNavApps.d.ts +13 -0
- package/dist/components/shared/platform-ui/hooks/shellNavLucideIcon.d.ts +6 -0
- package/dist/components/shared/platform-ui/hooks/useAppSettings.d.ts +21 -0
- package/dist/components/shared/platform-ui/hooks/useAuthTokenSync.d.ts +3 -0
- package/dist/components/shared/platform-ui/hooks/useBuiltInApps.d.ts +6 -0
- package/dist/components/shared/platform-ui/hooks/useChatEntryTarget.d.ts +35 -0
- package/dist/components/shared/platform-ui/hooks/useIsMobile.d.ts +16 -0
- package/dist/components/shared/platform-ui/hooks/useLanguage.d.ts +11 -0
- package/dist/components/shared/platform-ui/hooks/useLockBodyScroll.d.ts +1 -0
- package/dist/components/shared/platform-ui/hooks/usePageState/index.d.ts +4 -0
- package/dist/components/shared/platform-ui/hooks/usePageState/types.d.ts +13 -0
- package/dist/components/shared/platform-ui/hooks/useTheme.d.ts +11 -0
- package/dist/components/shared/platform-ui/hooks/useUserSettings.d.ts +39 -0
- package/dist/components/shared/platform-ui/hooks/useWorkflowCanvas.d.ts +36 -0
- package/dist/components/shared/platform-ui/hooks/userPreferencesPinnedNav.d.ts +2 -0
- package/dist/components/shared/platform-ui/index.d.ts +127 -0
- package/dist/components/shared/platform-ui/kit/ai/conversation.d.ts +16 -0
- package/dist/components/shared/platform-ui/kit/ai/index.d.ts +11 -0
- package/dist/components/shared/platform-ui/kit/ai/loader.d.ts +6 -0
- package/dist/components/shared/platform-ui/kit/ai/message.d.ts +14 -0
- package/dist/components/shared/platform-ui/kit/ai/prompt-input.d.ts +18 -0
- package/dist/components/shared/platform-ui/kit/ai/suggestion.d.ts +11 -0
- package/dist/components/shared/platform-ui/kit/ai/tool.d.ts +28 -0
- package/dist/components/shared/platform-ui/kit.d.ts +5 -0
- package/dist/components/shared/platform-ui/platform/index.d.ts +38 -0
- package/dist/components/shared/platform-ui/platform/types.d.ts +1 -0
- package/dist/components/shared/platform-ui/styles/design-tokens.d.ts +189 -0
- package/dist/components/shared/platform-ui/styles/z-index-layers.d.ts +46 -0
- package/dist/components/shared/platform-ui/utils/unknownError.d.ts +2 -0
- package/dist/components/shared/platform-utils/cookieSettings.d.ts +12 -0
- package/dist/components/shared/platform-utils/data/countryCodes.d.ts +26 -0
- package/dist/components/shared/platform-utils/index.d.ts +18 -0
- package/dist/components/shared/platform-utils/utils/appPath.d.ts +5 -0
- package/dist/components/shared/platform-utils/utils/chunkLoadRecovery.d.ts +7 -0
- package/dist/components/shared/platform-utils/utils/cn.d.ts +3 -0
- package/dist/components/shared/platform-utils/utils/crossApp.d.ts +71 -0
- package/dist/components/shared/platform-utils/utils/debounce.d.ts +1 -0
- package/dist/components/shared/platform-utils/utils/formatUserLabel.d.ts +8 -0
- package/dist/components/shared/platform-utils/utils/formatting.d.ts +18 -0
- package/dist/components/shared/platform-utils/utils/logoutNotification.d.ts +28 -0
- package/dist/components/shared/platform-utils/utils/operatorLocale.d.ts +32 -0
- package/dist/components/shared/platform-utils/utils/routeLocalePrefetch.d.ts +5 -0
- package/dist/components/shared/platform-utils/utils/shellIframeUrl.d.ts +20 -0
- package/dist/components/shared/platform-utils/utils/spaceSettings.d.ts +20 -0
- package/dist/components/shared/platform-utils/utils/sso.d.ts +42 -0
- package/dist/components/shared/platform-utils/utils/throttle.d.ts +1 -0
- package/dist/components/shared/platform-utils/utils/timezones.d.ts +14 -0
- package/dist/components/shared/platform-utils/utils/toDateInputValue.d.ts +5 -0
- package/dist/components/shared/platform-utils/utils/watermark.d.ts +1 -0
- package/dist/components/shared/templates/index.d.ts +3 -0
- package/dist/components/shared/templates/slugify.d.ts +1 -0
- package/dist/components/shared/templates/templateRegistry.d.ts +18 -0
- package/dist/components/shared/templates/types.d.ts +42 -0
- package/dist/components/skeleton/ComponentSkeleton.d.ts +9 -0
- package/dist/components/skeleton/HeroCardSkeleton.d.ts +11 -0
- package/dist/components/skeleton/TileGridSkeleton.d.ts +11 -0
- package/dist/components/skeleton/WorkbenchSkeletonTokens.d.ts +1 -0
- package/dist/components/skeleton/index.d.ts +4 -0
- package/dist/components/standalone.css +2 -0
- package/dist/components/standalone.d.ts +21 -0
- package/dist/components/standalone.js +358805 -0
- package/dist/components/styles/grid24.css +359 -0
- package/dist/components/styles/layoutSystem.css +773 -0
- package/dist/components/styles.css +3 -0
- package/dist/components/testing/index.d.ts +2 -0
- package/dist/components/testing.js +5 -0
- package/dist/components/testing.js.map +1 -0
- package/dist/components/themes/classic.d.ts +7 -0
- package/dist/components/themes/index.d.ts +15 -0
- package/dist/components/themes/inkOnyx.d.ts +3 -0
- package/dist/components/themes/types.d.ts +36 -0
- package/dist/components/types/application.d.ts +37 -0
- package/dist/components/types/communication.d.ts +94 -0
- package/dist/components/types/components.d.ts +346 -0
- package/dist/components/types/conditionMapperTypes.d.ts +60 -0
- package/dist/components/types/databaseDataSource.d.ts +120 -0
- package/dist/components/types/datasource.d.ts +117 -0
- package/dist/components/types/editor.d.ts +4 -0
- package/dist/components/types/editors.d.ts +91 -0
- package/dist/components/types/host-adapters.d.ts +35 -0
- package/dist/components/types/index.d.ts +7 -0
- package/dist/components/types/parameters.d.ts +59 -0
- package/dist/components/types/productReport.d.ts +272 -0
- package/dist/components/types/renderers.d.ts +645 -0
- package/dist/components/types.d.ts +649 -0
- package/dist/components/ui/ActionFormDialog.d.ts +19 -0
- package/dist/components/ui/ConfirmDialog.d.ts +17 -0
- package/dist/components/ui/FormFieldRenderer.d.ts +51 -0
- package/dist/components/ui/IconSelector.d.ts +10 -0
- package/dist/components/ui/RecordDetailDialog.d.ts +15 -0
- package/dist/components/ui/StructuredValueField.d.ts +16 -0
- package/dist/components/ui/date-picker.d.ts +7 -0
- package/dist/components/ui/date-range-picker.d.ts +11 -0
- package/dist/components/ui/dialog-safe-select.d.ts +13 -0
- package/dist/components/ui/dialog-tag-input.d.ts +18 -0
- package/dist/components/ui/dialog.d.ts +22 -0
- package/dist/components/ui/dropdown-menu.d.ts +27 -0
- package/dist/components/ui/pagination.d.ts +28 -0
- package/dist/components/ui/select.d.ts +13 -0
- package/dist/components/ui/sidebar-rail.d.ts +9 -0
- package/dist/components/ui/sidebar.d.ts +65 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/components/ui/tag-input.d.ts +23 -0
- package/dist/components/utils/actionFormValidation.d.ts +34 -0
- package/dist/components/utils/autoIdUtils.d.ts +2 -0
- package/dist/components/utils/chartGradientStops.d.ts +14 -0
- package/dist/components/utils/chinaProvinceMap.d.ts +8 -0
- package/dist/components/utils/colors.d.ts +84 -0
- package/dist/components/utils/componentUtils.d.ts +4 -0
- package/dist/components/utils/conditionMapperUtils.d.ts +59 -0
- package/dist/components/utils/cssParser.d.ts +7 -0
- package/dist/components/utils/currencySymbol.d.ts +10 -0
- package/dist/components/utils/dataConfigUtils.d.ts +80 -0
- package/dist/components/utils/databaseDatasourceColumnValue.d.ts +8 -0
- package/dist/components/utils/databaseDatasourceParams.d.ts +44 -0
- package/dist/components/utils/datasetOperationUtils.d.ts +48 -0
- package/dist/components/utils/datasourceVersion.d.ts +61 -0
- package/dist/components/utils/debugUtils.d.ts +34 -0
- package/dist/components/utils/errorFilter.d.ts +1 -0
- package/dist/components/utils/errorHandler.d.ts +10 -0
- package/dist/components/utils/expressionUtils.d.ts +13 -0
- package/dist/components/utils/extensionErrorHandler.d.ts +4 -0
- package/dist/components/utils/filterPanelDateRangeUtils.d.ts +34 -0
- package/dist/components/utils/filterPanelMobileDateRangeUtils.d.ts +17 -0
- package/dist/components/utils/formActionVisibility.d.ts +21 -0
- package/dist/components/utils/grid24LayoutSystem.d.ts +108 -0
- package/dist/components/utils/iconUtils.d.ts +22 -0
- package/dist/components/utils/layoutContainerNesting.d.ts +5 -0
- package/dist/components/utils/layoutSystem.d.ts +189 -0
- package/dist/components/utils/navigationUtils.d.ts +70 -0
- package/dist/components/utils/navigationVisibleWhenEditor.d.ts +37 -0
- package/dist/components/utils/parameterUtils.d.ts +52 -0
- package/dist/components/utils/redirectToAppHome.d.ts +4 -0
- package/dist/components/utils/resolveComponentMockFields.d.ts +28 -0
- package/dist/components/utils/resolveDatabaseDataSourceConfig.d.ts +9 -0
- package/dist/components/utils/safeMessaging.d.ts +16 -0
- package/dist/components/utils/statisticColors.d.ts +11 -0
- package/dist/components/utils/statisticIcons.d.ts +5 -0
- package/dist/components/utils/styleUtils.d.ts +35 -0
- package/dist/components/utils/systemParameters.d.ts +8 -0
- package/dist/components/utils/tabIsolation.d.ts +34 -0
- package/dist/components/utils/tableActionButtonRender.d.ts +12 -0
- package/dist/components/utils/taskUtils.d.ts +37 -0
- package/dist/components/utils/treeFormUtils.d.ts +41 -0
- package/dist/components/utils/visibleWhen.d.ts +31 -0
- package/dist/components/utils/visibleWhenFormat.d.ts +32 -0
- package/dist/components/utils/workbenchConfigLocale.d.ts +44 -0
- package/dist/components/utils/workbenchDisplayLocale.d.ts +33 -0
- package/dist/components/utils/workbenchPathUtils.d.ts +8 -0
- package/dist/components/utils/workflowTransformsUtils.d.ts +3 -0
- package/dist/components.js +841 -0
- package/dist/components.js.map +1 -0
- package/dist/dashboard/src/ChartTooltip.d.ts +1 -1
- package/dist/hooks/access/AppAccessNotice.d.ts +1 -1
- package/dist/hooks/picker/managedAppPicker.d.ts +1 -1
- package/dist/hooks.js +28 -27
- package/dist/hooks.js.map +1 -1
- package/dist/i18n-DojjvBZv.js +19013 -0
- package/dist/i18n-DojjvBZv.js.map +1 -0
- package/dist/index.js +61 -59
- package/dist/index.js.map +1 -1
- package/dist/kit.js +57 -56
- package/dist/kit.js.map +1 -1
- package/dist/resolveApiRoot-Dzg1R1PS.js +68 -0
- package/dist/resolveApiRoot-Dzg1R1PS.js.map +1 -0
- package/dist/shell.d.ts +1 -1
- package/dist/storage/components/CopyStorageLinkButton.d.ts +1 -1
- package/dist/storage/components/StorageImage.d.ts +1 -1
- package/dist/storage/components/StorageVideo.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/task-workspace/domain.d.ts +1 -1
- package/dist/ui/components/features/app/AppModal.d.ts +2 -2
- package/dist/ui/components/primitives/page-skeleton/index.d.ts +1 -1
- package/dist/ui/components/ui/alert.d.ts +3 -3
- package/dist/ui/components/ui/badge.d.ts +3 -3
- package/dist/ui/components/ui/button.d.ts +4 -4
- package/dist/ui/components/ui/chart.d.ts +1 -1
- package/dist/ui/components/ui/form.d.ts +3 -5
- package/dist/ui/components/ui/hint-notice.d.ts +3 -3
- package/dist/ui/components/ui/label.d.ts +1 -1
- package/dist/ui/components/ui/select.d.ts +1 -1
- package/dist/ui/components/ui/sheet.d.ts +3 -3
- package/dist/ui/components/ui/tabs.d.ts +1 -1
- package/dist/ui/components/ui/toast.d.ts +3 -3
- package/dist/ui/components/ui/toggle-group.d.ts +8 -8
- package/dist/ui/components/ui/toggle.d.ts +8 -8
- package/dist/ui/components/ui/underline-tabs.d.ts +6 -6
- package/dist/ui.js +23 -22
- package/dist/ui.js.map +1 -1
- package/dist/useUserDirectory-GU8imJ0T.js +2124 -0
- package/dist/useUserDirectory-GU8imJ0T.js.map +1 -0
- package/dist/vite.d.ts +1 -1
- package/package.json +217 -31
- package/dist/CrossAppRecordPicker-CQVmirWD.js.map +0 -1
- package/dist/useUserDirectory-CqkyCQoR.js +0 -2377
- package/dist/useUserDirectory-CqkyCQoR.js.map +0 -1
- package/dist/workbench/runtime.d.ts +0 -3
- package/dist/workbench/styles.css +0 -197
- package/dist/workbench/types.d.ts +0 -48
- package/dist/workbench.d.ts +0 -8
- package/dist/workbench.js +0 -356
- package/dist/workbench.js.map +0 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { JSONSchema } from '../../shared/platform-types/index.ts';
|
|
3
|
+
|
|
4
|
+
interface SimpleSchemaFormProps {
|
|
5
|
+
schema: JSONSchema | null;
|
|
6
|
+
values: Record<string, any>;
|
|
7
|
+
onChange: (values: Record<string, any>) => void;
|
|
8
|
+
errors?: Record<string, string | Record<number, Record<string, string>>>;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const SimpleSchemaForm: React.FC<SimpleSchemaFormProps>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as WorkflowRenderer } from './WorkflowComponent';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ProposalRendererConfig } from '../types';
|
|
3
|
+
|
|
4
|
+
interface ProposalRendererFactoryProps {
|
|
5
|
+
config: ProposalRendererConfig;
|
|
6
|
+
data: any;
|
|
7
|
+
formData?: Record<string, any>;
|
|
8
|
+
onFormDataChange?: (data: Record<string, any>) => void;
|
|
9
|
+
formErrors?: Record<string, string>;
|
|
10
|
+
customRenderers?: {
|
|
11
|
+
[rendererId: string]: React.ComponentType<any>;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare const ProposalRendererFactory: React.FC<ProposalRendererFactoryProps>;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { WorkflowComponent } from './WorkflowComponent';
|
|
2
|
+
export { default as WorkflowComponentDefault } from './WorkflowComponent';
|
|
3
|
+
export type { WorkflowStep, StepConfig, UploadStepConfig, ProposalStepConfig, ProposalRendererConfig, ResultStepConfig, ActionButton, MetadataField, AlertConfig, DataTransformConfig, WorkflowComponentProps, WorkflowState } from './types';
|
|
4
|
+
export type { JSONSchema, JSONSchemaProperty } from '../../shared/platform-types/index.ts';
|
|
5
|
+
export { UploadStep } from './steps/UploadStep';
|
|
6
|
+
export { ProposalStep } from './steps/ProposalStep';
|
|
7
|
+
export { ResultStep } from './steps/ResultStep';
|
|
8
|
+
export { ProposalRendererFactory } from './renderers/ProposalRendererFactory';
|
|
9
|
+
export { SimpleSchemaForm } from './SimpleSchemaForm';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ProposalStepConfig } from '../types';
|
|
3
|
+
|
|
4
|
+
interface ProposalStepProps {
|
|
5
|
+
config: ProposalStepConfig;
|
|
6
|
+
proposal: any | null;
|
|
7
|
+
formData: Record<string, any>;
|
|
8
|
+
onFormDataChange: (data: Record<string, any>) => void;
|
|
9
|
+
onAction: (actionId: string, data: any) => void | Promise<void>;
|
|
10
|
+
isEditing: boolean;
|
|
11
|
+
onEditModeChange: (editing: boolean) => void;
|
|
12
|
+
icon?: string;
|
|
13
|
+
title: string;
|
|
14
|
+
description: string;
|
|
15
|
+
customRenderers?: {
|
|
16
|
+
[rendererId: string]: React.ComponentType<any>;
|
|
17
|
+
};
|
|
18
|
+
actionStatus?: Record<string, 'idle' | 'loading' | 'success' | 'error'>;
|
|
19
|
+
}
|
|
20
|
+
export declare const ProposalStep: React.FC<ProposalStepProps>;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ResultStepConfig } from '../types';
|
|
3
|
+
|
|
4
|
+
interface ResultStepProps {
|
|
5
|
+
config: ResultStepConfig;
|
|
6
|
+
data: any | null;
|
|
7
|
+
status?: 'idle' | 'success' | 'error';
|
|
8
|
+
icon?: string;
|
|
9
|
+
title: string;
|
|
10
|
+
description: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const ResultStep: React.FC<ResultStepProps>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { UploadStepConfig } from '../types';
|
|
3
|
+
|
|
4
|
+
interface UploadStepProps {
|
|
5
|
+
config: UploadStepConfig;
|
|
6
|
+
onFileSelect: (file: File) => void;
|
|
7
|
+
onRemove: () => void;
|
|
8
|
+
uploadedFile: File | null;
|
|
9
|
+
isProcessing?: boolean;
|
|
10
|
+
icon?: string;
|
|
11
|
+
title: string;
|
|
12
|
+
description: string;
|
|
13
|
+
}
|
|
14
|
+
export declare const UploadStep: React.FC<UploadStepProps>;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import { JSONSchema } from '../../shared/platform-types/index.ts';
|
|
2
|
+
|
|
3
|
+
export type StepComponentType = 'upload' | 'proposal' | 'result' | 'custom';
|
|
4
|
+
export type ProposalRendererType = 'table' | 'form' | 'card' | 'custom';
|
|
5
|
+
export type ActionType = 'approve' | 'edit' | 'reject' | 'submit' | 'cancel' | 'custom';
|
|
6
|
+
export type DisplayFormat = 'json' | 'table' | 'card' | 'custom';
|
|
7
|
+
export type AlertType = 'warning' | 'info' | 'success' | 'error';
|
|
8
|
+
export interface WorkflowStep {
|
|
9
|
+
id: string;
|
|
10
|
+
title: string;
|
|
11
|
+
description: string;
|
|
12
|
+
icon?: string;
|
|
13
|
+
component: StepComponentType;
|
|
14
|
+
config: StepConfig;
|
|
15
|
+
order?: number;
|
|
16
|
+
}
|
|
17
|
+
export interface StepConfig {
|
|
18
|
+
upload?: UploadStepConfig;
|
|
19
|
+
proposal?: ProposalStepConfig;
|
|
20
|
+
result?: ResultStepConfig;
|
|
21
|
+
custom?: CustomStepConfig;
|
|
22
|
+
}
|
|
23
|
+
export interface UploadStepConfig {
|
|
24
|
+
accept?: string;
|
|
25
|
+
maxSize?: number;
|
|
26
|
+
multiple?: boolean;
|
|
27
|
+
preview?: boolean;
|
|
28
|
+
buttonText?: string;
|
|
29
|
+
placeholder?: string;
|
|
30
|
+
onUpload?: (file: File) => Promise<any>;
|
|
31
|
+
}
|
|
32
|
+
export interface ProposalStepConfig {
|
|
33
|
+
renderer: ProposalRendererType;
|
|
34
|
+
rendererConfig: ProposalRendererConfig;
|
|
35
|
+
actions: ActionButton[];
|
|
36
|
+
metadata?: MetadataField[];
|
|
37
|
+
alerts?: AlertConfig[];
|
|
38
|
+
editable?: boolean;
|
|
39
|
+
editMode?: 'inline' | 'form';
|
|
40
|
+
}
|
|
41
|
+
export interface ProposalRendererConfig {
|
|
42
|
+
type: ProposalRendererType;
|
|
43
|
+
table?: {
|
|
44
|
+
columns: TableColumn[];
|
|
45
|
+
dataPath?: string;
|
|
46
|
+
showHeader?: boolean;
|
|
47
|
+
striped?: boolean;
|
|
48
|
+
};
|
|
49
|
+
form?: {
|
|
50
|
+
schema: JSONSchema;
|
|
51
|
+
layout?: 'vertical' | 'horizontal' | 'grid';
|
|
52
|
+
showOptionalFields?: boolean;
|
|
53
|
+
};
|
|
54
|
+
card?: {
|
|
55
|
+
fields: CardField[];
|
|
56
|
+
layout?: 'grid' | 'list';
|
|
57
|
+
};
|
|
58
|
+
custom?: {
|
|
59
|
+
rendererId: string;
|
|
60
|
+
props?: Record<string, any>;
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
export interface TableColumn {
|
|
64
|
+
key: string;
|
|
65
|
+
label: string;
|
|
66
|
+
type?: 'text' | 'number' | 'currency' | 'date' | 'boolean';
|
|
67
|
+
format?: string;
|
|
68
|
+
align?: 'left' | 'center' | 'right';
|
|
69
|
+
width?: string | number;
|
|
70
|
+
render?: (value: any, record: any) => React.ReactNode;
|
|
71
|
+
}
|
|
72
|
+
export interface CardField {
|
|
73
|
+
key: string;
|
|
74
|
+
label: string;
|
|
75
|
+
type: 'text' | 'badge' | 'progress' | 'link' | 'custom';
|
|
76
|
+
valuePath?: string;
|
|
77
|
+
format?: string;
|
|
78
|
+
icon?: string;
|
|
79
|
+
color?: string;
|
|
80
|
+
}
|
|
81
|
+
export interface ActionButton {
|
|
82
|
+
id: string;
|
|
83
|
+
label: string;
|
|
84
|
+
variant: 'primary' | 'secondary' | 'destructive' | 'outline';
|
|
85
|
+
icon?: string;
|
|
86
|
+
action: ActionType;
|
|
87
|
+
handler?: string;
|
|
88
|
+
confirmMessage?: string;
|
|
89
|
+
disabled?: boolean | ((data: any) => boolean);
|
|
90
|
+
loading?: boolean;
|
|
91
|
+
}
|
|
92
|
+
export interface MetadataField {
|
|
93
|
+
key: string;
|
|
94
|
+
label: string;
|
|
95
|
+
valuePath: string;
|
|
96
|
+
icon?: string;
|
|
97
|
+
format?: 'date' | 'currency' | 'percentage' | 'text' | 'number';
|
|
98
|
+
color?: string;
|
|
99
|
+
}
|
|
100
|
+
export interface AlertConfig {
|
|
101
|
+
type: AlertType;
|
|
102
|
+
message: string;
|
|
103
|
+
icon?: string;
|
|
104
|
+
dismissible?: boolean;
|
|
105
|
+
}
|
|
106
|
+
export interface ResultStepConfig {
|
|
107
|
+
displayFormat: DisplayFormat;
|
|
108
|
+
showCopy?: boolean;
|
|
109
|
+
successMessage?: string;
|
|
110
|
+
errorMessage?: string;
|
|
111
|
+
customRenderer?: string;
|
|
112
|
+
}
|
|
113
|
+
export interface CustomStepConfig {
|
|
114
|
+
componentId: string;
|
|
115
|
+
props?: Record<string, any>;
|
|
116
|
+
}
|
|
117
|
+
export interface DataTransformConfig {
|
|
118
|
+
transformStepData?: (stepId: string, data: any, context?: any) => any;
|
|
119
|
+
prepareStepOutput?: (stepId: string, data: any, context?: any) => any;
|
|
120
|
+
validateStepData?: (stepId: string, data: any) => {
|
|
121
|
+
valid: boolean;
|
|
122
|
+
errors?: string[];
|
|
123
|
+
};
|
|
124
|
+
apiHandlers?: {
|
|
125
|
+
[stepId: string]: (data: any, config: any) => Promise<any>;
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
export interface WorkflowComponentProps {
|
|
129
|
+
agentId?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Parse task id (resolved from `parseTaskIdentifier` at install). Step 1 runs the
|
|
132
|
+
* uploaded file through this task (document-reader → agent) to produce a
|
|
133
|
+
* structured record for review — it does NOT save. Preferred over `agentId`.
|
|
134
|
+
*/
|
|
135
|
+
parseTaskId?: string;
|
|
136
|
+
/**
|
|
137
|
+
* Save task id (resolved from `saveTaskIdentifier`). Runs on confirm to write the
|
|
138
|
+
* reviewed record into the dataset (vector store). Two-phase: parse → review → save.
|
|
139
|
+
*/
|
|
140
|
+
saveTaskId?: string;
|
|
141
|
+
/**
|
|
142
|
+
* Maps the uploaded file into the parse task's workflow input ports:
|
|
143
|
+
* `{urlNode}.{urlPort}` receives `{ url, filename }` (fed to document-reader),
|
|
144
|
+
* `{metaNode}.{metaPort}` receives `{ id, name, folderId }` (source provenance).
|
|
145
|
+
*/
|
|
146
|
+
fileInput?: {
|
|
147
|
+
urlNode: string;
|
|
148
|
+
urlPort: string;
|
|
149
|
+
metaNode?: string;
|
|
150
|
+
metaPort?: string;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Maps the reviewed record into the save task's workflow input port:
|
|
154
|
+
* `{recordNode}.{recordPort}` receives the confirmed record object.
|
|
155
|
+
*/
|
|
156
|
+
saveInput?: {
|
|
157
|
+
recordNode: string;
|
|
158
|
+
recordPort: string;
|
|
159
|
+
};
|
|
160
|
+
className?: string;
|
|
161
|
+
steps: WorkflowStep[];
|
|
162
|
+
transforms?: DataTransformConfig;
|
|
163
|
+
onStepComplete?: (stepId: string, data: any) => void;
|
|
164
|
+
onWorkflowComplete?: (finalData: any) => void;
|
|
165
|
+
onError?: (error: Error, stepId?: string) => void;
|
|
166
|
+
onAction?: (actionId: string, data: any) => void | Promise<void>;
|
|
167
|
+
useMockData?: boolean;
|
|
168
|
+
mockData?: Record<string, any>;
|
|
169
|
+
customRenderers?: {
|
|
170
|
+
[rendererId: string]: React.ComponentType<any>;
|
|
171
|
+
};
|
|
172
|
+
layout?: {
|
|
173
|
+
columns?: number;
|
|
174
|
+
gap?: string;
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
export interface WorkflowState {
|
|
178
|
+
currentStep: number;
|
|
179
|
+
stepData: Record<string, any>;
|
|
180
|
+
uploadedFile: File | null;
|
|
181
|
+
isProcessing: boolean;
|
|
182
|
+
error: Error | null;
|
|
183
|
+
isEditing?: boolean;
|
|
184
|
+
actionStatus: Record<string, 'idle' | 'loading' | 'success' | 'error'>;
|
|
185
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflow.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { aA as a, aB as s, aC as n, aD as d, aE as t, aF as R, aG as i, aH as l, aI as b, aJ as o, aK as p, aL as C, aM as T, aN as h, aO as u, aP as y, aQ as P, aR as c, aS as g, aT as A, aU as S, aV as D, aW as E, aX as G, aY as I, aZ as L, a_ as m, a$ as v, b0 as H, b1 as M, b2 as k, b3 as x, b4 as B, b5 as F, b6 as N, b7 as f, b8 as w } from "./renderers/runtime-DX1LfmqO.js";
|
|
2
|
+
export {
|
|
3
|
+
a as AnalyticsTableRenderer,
|
|
4
|
+
s as AppIdentityListRenderer,
|
|
5
|
+
n as CardRenderer,
|
|
6
|
+
d as ChartRenderer,
|
|
7
|
+
t as CollapsePanelRenderer,
|
|
8
|
+
R as ContainerRenderer,
|
|
9
|
+
i as CustomContentRenderer,
|
|
10
|
+
l as DataGridCard,
|
|
11
|
+
b as EChartsChartRenderer,
|
|
12
|
+
o as EditableTableRenderer,
|
|
13
|
+
p as FilterPanelRenderer,
|
|
14
|
+
C as HeroCardRenderer,
|
|
15
|
+
T as IdentityAttributeAssignRenderer,
|
|
16
|
+
h as ListRenderer,
|
|
17
|
+
u as LoadingRenderer,
|
|
18
|
+
y as MapChartRenderer,
|
|
19
|
+
P as MetricCarouselRenderer,
|
|
20
|
+
c as NavTileRenderer,
|
|
21
|
+
g as ParagraphRenderer,
|
|
22
|
+
A as ProductDetailRenderer,
|
|
23
|
+
S as ProductReportRenderer,
|
|
24
|
+
D as PublishHistoryRenderer,
|
|
25
|
+
E as PublishPreviewEntryRenderer,
|
|
26
|
+
G as RadarChartRenderer,
|
|
27
|
+
I as RingStatRenderer,
|
|
28
|
+
L as ServiceDeskReporterRenderer,
|
|
29
|
+
m as SimpleTreeRenderer,
|
|
30
|
+
v as StatisticGroup,
|
|
31
|
+
H as TableRenderer,
|
|
32
|
+
M as TabsRenderer,
|
|
33
|
+
k as TaskInputRenderer,
|
|
34
|
+
x as TextRenderer,
|
|
35
|
+
B as TileGridRenderer,
|
|
36
|
+
F as TitleRenderer,
|
|
37
|
+
N as TypographyRenderer,
|
|
38
|
+
f as renderByType,
|
|
39
|
+
w as renderers
|
|
40
|
+
};
|
|
41
|
+
//# sourceMappingURL=renderers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"renderers.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ComponentConfig as BaseComponentConfig } from '../app/services/workbenchApi';
|
|
3
|
+
import { ParameterConfig, TableAction } from '../types';
|
|
4
|
+
import { ParameterRecord, ParameterContextValue } from '../types/parameters';
|
|
5
|
+
import { CustomStylesConfig } from '../types/components';
|
|
6
|
+
import { DatabaseDataSourceConfig } from '../types/databaseDataSource';
|
|
7
|
+
import { EnhancedDataSource } from '../types/datasource';
|
|
8
|
+
|
|
9
|
+
interface ExtendedComponentConfig extends BaseComponentConfig {
|
|
10
|
+
parameterConfig?: ParameterConfig;
|
|
11
|
+
actions?: TableAction[];
|
|
12
|
+
component?: ExtendedComponentConfig;
|
|
13
|
+
useMockData?: boolean;
|
|
14
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig;
|
|
15
|
+
enhancedDataSource?: EnhancedDataSource;
|
|
16
|
+
componentParameterConfig?: {
|
|
17
|
+
enableParameterReceiving?: boolean;
|
|
18
|
+
listenToParameters?: string[];
|
|
19
|
+
};
|
|
20
|
+
customStyles?: CustomStylesConfig;
|
|
21
|
+
}
|
|
22
|
+
interface PageComponentRendererProps {
|
|
23
|
+
component: ExtendedComponentConfig;
|
|
24
|
+
appConfig: Record<string, unknown>;
|
|
25
|
+
parentProps?: Record<string, unknown>;
|
|
26
|
+
pageParams?: ParameterRecord;
|
|
27
|
+
parameterContext?: ParameterContextValue;
|
|
28
|
+
pageId?: string;
|
|
29
|
+
tabId?: string;
|
|
30
|
+
/** Depth of layout containers (Container/Card/Tabs) wrapping this node; page roots use 0. */
|
|
31
|
+
nestingLevel?: number;
|
|
32
|
+
}
|
|
33
|
+
declare const PageComponentRenderer: React.FC<PageComponentRendererProps>;
|
|
34
|
+
export default PageComponentRenderer;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { i18n as I18nInstance } from 'i18next';
|
|
3
|
+
import { GeniAppHostAdapters } from '../types/host-adapters';
|
|
4
|
+
|
|
5
|
+
export interface GeniAppComponentProviderProps {
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
adapters?: GeniAppHostAdapters;
|
|
8
|
+
locale?: string;
|
|
9
|
+
i18n?: I18nInstance;
|
|
10
|
+
localeMetadata?: Record<string, unknown>;
|
|
11
|
+
applicationId?: string;
|
|
12
|
+
themeId?: string;
|
|
13
|
+
/** Override the detected Workbench viewport. Omit for automatic mobile/desktop behavior. */
|
|
14
|
+
mobile?: boolean;
|
|
15
|
+
fullscreen?: boolean;
|
|
16
|
+
/** Set false when the host already owns the document-level Workbench appearance. */
|
|
17
|
+
provideAppearance?: boolean;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Runtime boundary shared by Workbench view mode and standalone GeniApps.
|
|
21
|
+
* It provides the exact locale, appearance, viewport and platform adapter
|
|
22
|
+
* contexts consumed by the public renderer tree.
|
|
23
|
+
*/
|
|
24
|
+
export declare function GeniAppComponentProvider({ children, adapters, locale, i18n, localeMetadata, applicationId, themeId, mobile, fullscreen, provideAppearance, }: GeniAppComponentProviderProps): import("react").JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { WorkbenchConfig } from '../types/components';
|
|
3
|
+
|
|
4
|
+
export interface GeniAppWorkbenchConfig extends WorkbenchConfig {
|
|
5
|
+
name?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
geniappRuntime?: {
|
|
8
|
+
datasourceIdentifiers?: Record<string, string>;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export interface GeniAppWorkbenchProps {
|
|
12
|
+
identifier: string;
|
|
13
|
+
config: GeniAppWorkbenchConfig;
|
|
14
|
+
name?: string;
|
|
15
|
+
allowedShellOrigins?: string[];
|
|
16
|
+
headerIcon?: ReactNode;
|
|
17
|
+
showRuntimeControls?: boolean;
|
|
18
|
+
}
|
|
19
|
+
/** Complete routed shell for a downloaded Workbench GeniApp. */
|
|
20
|
+
export declare function GeniAppWorkbench({ identifier, config, name, allowedShellOrigins, headerIcon, showRuntimeControls, }: GeniAppWorkbenchProps): import("react").JSX.Element;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TabItem } from './TabManager';
|
|
3
|
+
|
|
4
|
+
interface MultiPageRendererProps {
|
|
5
|
+
tabs: TabItem[];
|
|
6
|
+
activeTabId: string | null;
|
|
7
|
+
appConfig: any;
|
|
8
|
+
availableParameters?: Array<{
|
|
9
|
+
label: string;
|
|
10
|
+
value: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}>;
|
|
13
|
+
}
|
|
14
|
+
export declare const MultiPageRenderer: React.FC<MultiPageRendererProps>;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Frosted-glass overlay shown above the page content when the page's
|
|
3
|
+
* `comingSoon.enabled` config is on. Dismissal is per-mount only: reopening
|
|
4
|
+
* or refreshing the page shows the overlay again. Hidden in edit mode so the
|
|
5
|
+
* page stays editable.
|
|
6
|
+
*
|
|
7
|
+
* Visual language follows the system empty-state pattern (EmptyStateBadge):
|
|
8
|
+
* soft icon badge + medium title + muted one-liner + small pill action —
|
|
9
|
+
* not a billboard headline.
|
|
10
|
+
*/
|
|
11
|
+
export declare function PageComingSoonOverlay(): import("react").JSX.Element;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Grid24LayoutConfig } from '../types/components';
|
|
3
|
+
import { LayoutPreset, GridArea } from '../utils/layoutSystem';
|
|
4
|
+
import { ParameterRecord } from '../types/parameters';
|
|
5
|
+
|
|
6
|
+
interface PageLayoutConfig {
|
|
7
|
+
type: 'default' | 'grid' | 'custom';
|
|
8
|
+
preset?: LayoutPreset | 'top1-bottom2' | 'left1-right2' | 'top1-bottom3' | 'all-vertical' | 'dashboard-layout';
|
|
9
|
+
areas?: {
|
|
10
|
+
top?: string[];
|
|
11
|
+
bottom?: string[];
|
|
12
|
+
left?: string[];
|
|
13
|
+
right?: string[];
|
|
14
|
+
};
|
|
15
|
+
gridTemplate?: {
|
|
16
|
+
rows: string;
|
|
17
|
+
columns: string;
|
|
18
|
+
areas: string;
|
|
19
|
+
};
|
|
20
|
+
componentPositions?: Record<string, {
|
|
21
|
+
area: GridArea | 'top' | 'bottom' | 'left' | 'right';
|
|
22
|
+
order: number;
|
|
23
|
+
span?: number;
|
|
24
|
+
}>;
|
|
25
|
+
}
|
|
26
|
+
type PageLayoutInput = PageLayoutConfig | Grid24LayoutConfig;
|
|
27
|
+
interface PageLayoutRendererProps {
|
|
28
|
+
components: any[];
|
|
29
|
+
appConfig: any;
|
|
30
|
+
layoutConfig?: PageLayoutInput;
|
|
31
|
+
pageParams?: ParameterRecord;
|
|
32
|
+
pageId?: string;
|
|
33
|
+
tabId?: string;
|
|
34
|
+
}
|
|
35
|
+
declare const PageLayoutRenderer: React.FC<PageLayoutRendererProps>;
|
|
36
|
+
export default PageLayoutRenderer;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ParameterRecord } from '../types/parameters';
|
|
3
|
+
|
|
4
|
+
export interface TabItem {
|
|
5
|
+
id: string;
|
|
6
|
+
pageId: string;
|
|
7
|
+
title: string;
|
|
8
|
+
icon?: string;
|
|
9
|
+
isActive: boolean;
|
|
10
|
+
pageConfig?: unknown;
|
|
11
|
+
isLoading: boolean;
|
|
12
|
+
hasError?: boolean;
|
|
13
|
+
errorMessage?: string;
|
|
14
|
+
urlParams?: ParameterRecord;
|
|
15
|
+
fullPath?: string;
|
|
16
|
+
navigationTitle?: string;
|
|
17
|
+
pageTitle?: string;
|
|
18
|
+
}
|
|
19
|
+
interface TabContextType {
|
|
20
|
+
tabs: TabItem[];
|
|
21
|
+
activeTabId: string | null;
|
|
22
|
+
openTab: (pageId: string, navigationTitle?: string, icon?: string, urlParams?: ParameterRecord, initialPageConfig?: unknown) => Promise<void>;
|
|
23
|
+
closeTab: (tabId: string) => void;
|
|
24
|
+
closeOtherTabs: (tabId: string) => void;
|
|
25
|
+
closeAllTabs: () => void;
|
|
26
|
+
switchTab: (tabId: string) => void;
|
|
27
|
+
getTabById: (tabId: string) => TabItem | undefined;
|
|
28
|
+
getActiveTab: () => TabItem | undefined;
|
|
29
|
+
}
|
|
30
|
+
export declare const workbenchHideTabBarRef: {
|
|
31
|
+
current: boolean;
|
|
32
|
+
};
|
|
33
|
+
export declare const useTabManager: () => TabContextType;
|
|
34
|
+
interface TabProviderProps {
|
|
35
|
+
children: React.ReactNode;
|
|
36
|
+
workbenchId: string;
|
|
37
|
+
}
|
|
38
|
+
export declare const TabProvider: React.FC<TabProviderProps>;
|
|
39
|
+
export {};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { Component } from '../renderers/types';
|
|
2
|
+
|
|
3
|
+
type ComponentTypeName = 'Form' | 'Table' | 'EditableTable' | 'Chart' | 'StatisticGroup' | 'DataGridCard' | 'Container' | 'Tabs' | 'Typography' | 'Card' | 'List' | 'TaskInput' | 'ServiceDeskReporter' | 'Tree' | 'FilterPanel' | 'EChartsChart' | 'MapChart' | 'RadarChart' | 'HeroCard' | 'MetricCarousel' | 'CollapsePanel' | 'AnalyticsTable' | 'ProductReport' | 'ProductDetail' | 'TileGrid' | 'RingStat' | 'PublishHistory' | 'PublishPreviewEntry' | 'NavTile' | 'AppIdentityList' | 'IdentityAttributeAssign' | 'WorkflowComponent' | 'CustomContent';
|
|
4
|
+
export interface BasePropertyConfig {
|
|
5
|
+
type: 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
6
|
+
label: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
defaultValue?: any;
|
|
10
|
+
options?: Array<{
|
|
11
|
+
label: string;
|
|
12
|
+
value: string | number;
|
|
13
|
+
}>;
|
|
14
|
+
}
|
|
15
|
+
export interface OptionPropertyConfig extends BasePropertyConfig {
|
|
16
|
+
type: 'string' | 'number';
|
|
17
|
+
options: Array<{
|
|
18
|
+
label: string;
|
|
19
|
+
value: string | number;
|
|
20
|
+
}>;
|
|
21
|
+
}
|
|
22
|
+
export interface ArrayPropertyConfig extends BasePropertyConfig {
|
|
23
|
+
type: 'array';
|
|
24
|
+
itemType: 'string' | 'number' | 'object';
|
|
25
|
+
itemConfig?: PropertyConfig;
|
|
26
|
+
}
|
|
27
|
+
export interface ObjectPropertyConfig extends BasePropertyConfig {
|
|
28
|
+
type: 'object';
|
|
29
|
+
properties: Record<string, PropertyConfig>;
|
|
30
|
+
}
|
|
31
|
+
export type PropertyConfig = BasePropertyConfig | OptionPropertyConfig | ArrayPropertyConfig | ObjectPropertyConfig;
|
|
32
|
+
interface RecursivePropertyConfig extends BasePropertyConfig {
|
|
33
|
+
itemType?: 'string' | 'number' | 'object';
|
|
34
|
+
itemConfig?: RecursivePropertyConfig;
|
|
35
|
+
properties?: Record<string, RecursivePropertyConfig>;
|
|
36
|
+
additionalProperties?: boolean | RecursivePropertyConfig;
|
|
37
|
+
enum?: string[];
|
|
38
|
+
children?: {
|
|
39
|
+
[key: string]: RecursivePropertyConfig;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
type PropType = RecursivePropertyConfig;
|
|
43
|
+
export interface ComponentType {
|
|
44
|
+
type: ComponentTypeName;
|
|
45
|
+
title: string;
|
|
46
|
+
description: string;
|
|
47
|
+
icon: string;
|
|
48
|
+
propTypes: {
|
|
49
|
+
[key: string]: PropType;
|
|
50
|
+
};
|
|
51
|
+
dataSourceTypes?: {
|
|
52
|
+
[key: string]: {
|
|
53
|
+
label: string;
|
|
54
|
+
description?: string;
|
|
55
|
+
required?: boolean;
|
|
56
|
+
children: {
|
|
57
|
+
[key: string]: PropType;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
mockData?: {
|
|
62
|
+
type: 'array' | 'object';
|
|
63
|
+
label: string;
|
|
64
|
+
description: string;
|
|
65
|
+
defaultValue: any;
|
|
66
|
+
};
|
|
67
|
+
createComponent: () => Component;
|
|
68
|
+
}
|
|
69
|
+
export declare const componentTypes: ComponentType[];
|
|
70
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { PropsWithChildren, ReactNode } from 'react';
|
|
2
|
+
|
|
3
|
+
export type ViewModePermissions = {
|
|
4
|
+
canEdit: false;
|
|
5
|
+
canManage: false;
|
|
6
|
+
canView: true;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Public GeniApps always execute the published/view branch of Workbench
|
|
10
|
+
* renderers. The Workbench editor continues to provide its own edit context.
|
|
11
|
+
*/
|
|
12
|
+
export declare const useEditMode: () => {
|
|
13
|
+
isEditMode: false;
|
|
14
|
+
permissions: ViewModePermissions;
|
|
15
|
+
permissionsLoading: boolean;
|
|
16
|
+
permissionsError: any;
|
|
17
|
+
draggedComponentType: string | null;
|
|
18
|
+
isAddingComponent: boolean;
|
|
19
|
+
previewOnly: boolean;
|
|
20
|
+
currentWorkbench: any;
|
|
21
|
+
openComponentEditor: () => any;
|
|
22
|
+
refreshComponent: () => any;
|
|
23
|
+
updatePageConfig: () => Promise<any>;
|
|
24
|
+
deletePage: () => Promise<any>;
|
|
25
|
+
};
|
|
26
|
+
export declare function EditModeProvider({ children }: PropsWithChildren): ReactNode;
|
|
27
|
+
/**
|
|
28
|
+
* GeniApps execute the immutable published/view branch of the renderer. These
|
|
29
|
+
* compatibility surfaces let the exact Workbench renderer source compile
|
|
30
|
+
* without bundling editor state, drag-and-drop, or authoring controls.
|
|
31
|
+
*/
|
|
32
|
+
export declare function ComponentEditOverlay({ children, }: PropsWithChildren<Record<string, unknown>>): ReactNode;
|
|
33
|
+
export declare function ContainerDropZoneOverlay(_props: Record<string, unknown>): null;
|
|
34
|
+
export declare function WorkbenchEditMode({ children, }: PropsWithChildren<Record<string, unknown>>): ReactNode;
|
|
35
|
+
export declare function Grid24EditableCanvas(_props: Record<string, unknown>): null;
|
|
36
|
+
export declare function MobileFlowCanvas(_props: Record<string, unknown>): null;
|
|
37
|
+
export declare const useGridCanvasGate: () => false;
|
|
38
|
+
export declare const useStudioPreview: () => {
|
|
39
|
+
previewOnly: false;
|
|
40
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface TitleManagerProps {
|
|
2
|
+
title?: string;
|
|
3
|
+
prefix?: string;
|
|
4
|
+
suffix?: string;
|
|
5
|
+
}
|
|
6
|
+
export default function TitleManager({ title, prefix, suffix }: TitleManagerProps): any;
|
|
7
|
+
export declare function usePageTitle(title?: string, prefix?: string, suffix?: string): void;
|
|
8
|
+
export {};
|