@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,682 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../types/components';
|
|
3
|
+
import { ComponentParameterConfig, ParameterRecord } from '../types/parameters';
|
|
4
|
+
import { DatabaseDataSourceConfig } from '../types/databaseDataSource';
|
|
5
|
+
import { TableRendererProps, TableDataType, TableColumnType, ColumnRenderType, ListColumn, ListColumnRenderType, ListRendererProps, ListSlotType } from '../types/renderers';
|
|
6
|
+
import { AppConfig, FormConfig, ParameterConfig } from '../types';
|
|
7
|
+
|
|
8
|
+
export type { TableRendererProps, TableDataType, TableColumnType, ColumnRenderType };
|
|
9
|
+
export interface LoadingRendererProps {
|
|
10
|
+
text?: string;
|
|
11
|
+
size?: 'small' | 'default' | 'large';
|
|
12
|
+
className?: string;
|
|
13
|
+
title?: string;
|
|
14
|
+
height?: number;
|
|
15
|
+
mode?: 'standalone' | 'overlay' | 'inline';
|
|
16
|
+
showCard?: boolean;
|
|
17
|
+
children?: React.ReactNode;
|
|
18
|
+
}
|
|
19
|
+
export interface TaskInputRendererProps {
|
|
20
|
+
taskId?: string;
|
|
21
|
+
className?: string;
|
|
22
|
+
onSuccess?: (result: any) => void;
|
|
23
|
+
onError?: (error: any) => void;
|
|
24
|
+
}
|
|
25
|
+
export type { ListColumn, ListColumnRenderType, ListRendererProps, ListSlotType };
|
|
26
|
+
export interface TextRendererProps {
|
|
27
|
+
content?: string | React.ReactNode;
|
|
28
|
+
type?: 'secondary' | 'success' | 'warning' | 'danger';
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
mark?: boolean;
|
|
31
|
+
strong?: boolean;
|
|
32
|
+
italic?: boolean;
|
|
33
|
+
underline?: boolean;
|
|
34
|
+
code?: boolean;
|
|
35
|
+
copyable?: boolean | object;
|
|
36
|
+
delete?: boolean;
|
|
37
|
+
ellipsis?: boolean | object;
|
|
38
|
+
keyboard?: boolean;
|
|
39
|
+
fontSize?: string | number;
|
|
40
|
+
color?: string;
|
|
41
|
+
align?: 'left' | 'center' | 'right';
|
|
42
|
+
className?: string;
|
|
43
|
+
textType?: 'default' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
44
|
+
}
|
|
45
|
+
export interface TitleRendererProps {
|
|
46
|
+
content?: string | React.ReactNode;
|
|
47
|
+
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
48
|
+
strong?: boolean;
|
|
49
|
+
italic?: boolean;
|
|
50
|
+
code?: boolean;
|
|
51
|
+
keyboard?: boolean;
|
|
52
|
+
copyable?: boolean | object;
|
|
53
|
+
delete?: boolean;
|
|
54
|
+
disabled?: boolean;
|
|
55
|
+
ellipsis?: boolean | object;
|
|
56
|
+
mark?: boolean;
|
|
57
|
+
underline?: boolean;
|
|
58
|
+
type?: 'secondary' | 'success' | 'warning' | 'danger';
|
|
59
|
+
fontSize?: string | number;
|
|
60
|
+
color?: string;
|
|
61
|
+
align?: 'left' | 'center' | 'right';
|
|
62
|
+
className?: string;
|
|
63
|
+
textType?: 'default' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
64
|
+
}
|
|
65
|
+
export interface ParagraphRendererProps {
|
|
66
|
+
content?: string | React.ReactNode;
|
|
67
|
+
code?: boolean;
|
|
68
|
+
keyboard?: boolean;
|
|
69
|
+
copyable?: boolean | object;
|
|
70
|
+
delete?: boolean;
|
|
71
|
+
disabled?: boolean;
|
|
72
|
+
ellipsis?: boolean | object;
|
|
73
|
+
mark?: boolean;
|
|
74
|
+
strong?: boolean;
|
|
75
|
+
italic?: boolean;
|
|
76
|
+
underline?: boolean;
|
|
77
|
+
type?: 'secondary' | 'success' | 'warning' | 'danger';
|
|
78
|
+
fontSize?: string | number;
|
|
79
|
+
color?: string;
|
|
80
|
+
align?: 'left' | 'center' | 'right';
|
|
81
|
+
className?: string;
|
|
82
|
+
textType?: 'default' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
83
|
+
}
|
|
84
|
+
export interface ContainerRendererProps {
|
|
85
|
+
children?: ReactNode;
|
|
86
|
+
title?: string;
|
|
87
|
+
titleLevel?: 1 | 2 | 3 | 4 | 5;
|
|
88
|
+
divider?: boolean;
|
|
89
|
+
className?: string;
|
|
90
|
+
style?: React.CSSProperties;
|
|
91
|
+
direction?: 'horizontal' | 'vertical';
|
|
92
|
+
gutter?: number | [number, number];
|
|
93
|
+
justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between';
|
|
94
|
+
align?: 'top' | 'middle' | 'bottom';
|
|
95
|
+
layout?: 'block' | 'flex' | 'grid';
|
|
96
|
+
cols?: number[];
|
|
97
|
+
padding?: number | string;
|
|
98
|
+
margin?: number | string;
|
|
99
|
+
background?: string;
|
|
100
|
+
border?: boolean;
|
|
101
|
+
borderRadius?: number | string;
|
|
102
|
+
shadow?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
103
|
+
}
|
|
104
|
+
export interface StatisticGroupProps {
|
|
105
|
+
data?: any[];
|
|
106
|
+
loading?: boolean;
|
|
107
|
+
cols?: number;
|
|
108
|
+
gutter?: number | [number, number];
|
|
109
|
+
className?: string;
|
|
110
|
+
style?: React.CSSProperties;
|
|
111
|
+
}
|
|
112
|
+
export interface BaseRendererProps {
|
|
113
|
+
type: string;
|
|
114
|
+
id?: string;
|
|
115
|
+
className?: string;
|
|
116
|
+
style?: React.CSSProperties;
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
}
|
|
119
|
+
export interface TabItem {
|
|
120
|
+
key: string;
|
|
121
|
+
label: string;
|
|
122
|
+
children?: React.ReactNode;
|
|
123
|
+
component?: any;
|
|
124
|
+
components?: any[];
|
|
125
|
+
render?: () => React.ReactNode;
|
|
126
|
+
componentConfig?: {
|
|
127
|
+
type: 'single' | 'multiple';
|
|
128
|
+
data?: any;
|
|
129
|
+
props?: Record<string, any>;
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
export interface TabsRendererProps {
|
|
133
|
+
items: TabItem[];
|
|
134
|
+
defaultActiveKey?: string;
|
|
135
|
+
className?: string;
|
|
136
|
+
[key: string]: any;
|
|
137
|
+
}
|
|
138
|
+
export interface CardRendererProps {
|
|
139
|
+
title?: string;
|
|
140
|
+
description?: string;
|
|
141
|
+
footer?: React.ReactNode;
|
|
142
|
+
children?: React.ReactNode;
|
|
143
|
+
className?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface DataGridCardProps {
|
|
146
|
+
title?: string;
|
|
147
|
+
columns: Array<{
|
|
148
|
+
key?: string;
|
|
149
|
+
dataIndex: string;
|
|
150
|
+
title: string;
|
|
151
|
+
primary?: boolean;
|
|
152
|
+
secondary?: boolean;
|
|
153
|
+
render?: {
|
|
154
|
+
type: string;
|
|
155
|
+
props?: {
|
|
156
|
+
color?: Record<string, string>;
|
|
157
|
+
text?: Record<string, string>;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
}>;
|
|
161
|
+
dataSource: any[];
|
|
162
|
+
loading?: boolean;
|
|
163
|
+
rowKey?: string;
|
|
164
|
+
className?: string;
|
|
165
|
+
showSearch?: boolean;
|
|
166
|
+
searchPlaceholder?: string;
|
|
167
|
+
showRefresh?: boolean;
|
|
168
|
+
showHeader?: boolean;
|
|
169
|
+
onItemClick?: (record: any) => void;
|
|
170
|
+
pagination?: {
|
|
171
|
+
pageSize?: number;
|
|
172
|
+
current?: number;
|
|
173
|
+
total?: number;
|
|
174
|
+
showSizeChanger?: boolean;
|
|
175
|
+
showTotal?: boolean;
|
|
176
|
+
};
|
|
177
|
+
footerContent?: React.ReactNode;
|
|
178
|
+
}
|
|
179
|
+
export interface RenderersMap {
|
|
180
|
+
List?: React.FC<ListRendererProps>;
|
|
181
|
+
Container?: React.FC<ContainerRendererProps>;
|
|
182
|
+
StatisticGroup?: React.FC<StatisticGroupProps>;
|
|
183
|
+
Table?: React.FC<TableRendererProps>;
|
|
184
|
+
Tabs?: React.FC<TabsRendererProps>;
|
|
185
|
+
Card?: React.FC<CardRendererProps>;
|
|
186
|
+
Text?: React.FC<TextRendererProps>;
|
|
187
|
+
Title?: React.FC<TitleRendererProps>;
|
|
188
|
+
Paragraph?: React.FC<ParagraphRendererProps>;
|
|
189
|
+
DataGridCard?: React.FC<DataGridCardProps>;
|
|
190
|
+
Tree?: React.FC<SimpleTreeRendererProps>;
|
|
191
|
+
RadarChart?: React.FC<RadarChartRendererProps>;
|
|
192
|
+
FilterPanel?: React.FC<FilterPanelRendererProps>;
|
|
193
|
+
Chart?: React.FC<any>;
|
|
194
|
+
[key: string]: React.FC<any> | undefined;
|
|
195
|
+
}
|
|
196
|
+
export type LayoutType = 'fluid' | 'fixed' | 'card';
|
|
197
|
+
export type ChartType = 'line' | 'column' | 'bar' | 'area' | 'pie' | 'radar' | 'heatmap' | 'composedBar' | 'overlapBar';
|
|
198
|
+
export type TagColor = 'blue' | 'orange' | 'green' | 'red' | 'gold' | 'default';
|
|
199
|
+
export type TagStatus = 'active' | 'inactive' | 'vip' | 'interviewing' | 'matching' | 'offered' | 'pending' | 'closed';
|
|
200
|
+
export interface DataSource {
|
|
201
|
+
type: 'dataset';
|
|
202
|
+
datasetId: string;
|
|
203
|
+
datasetName?: string;
|
|
204
|
+
params: {
|
|
205
|
+
filter?: string;
|
|
206
|
+
limit?: number;
|
|
207
|
+
offset?: number;
|
|
208
|
+
outputFields: string[];
|
|
209
|
+
};
|
|
210
|
+
}
|
|
211
|
+
export interface TableColumn {
|
|
212
|
+
title: string;
|
|
213
|
+
dataIndex: string;
|
|
214
|
+
key: string;
|
|
215
|
+
primary?: boolean;
|
|
216
|
+
secondary?: boolean;
|
|
217
|
+
searchable?: boolean;
|
|
218
|
+
filterable?: boolean;
|
|
219
|
+
filterSearch?: boolean;
|
|
220
|
+
editable?: boolean;
|
|
221
|
+
hidden?: boolean;
|
|
222
|
+
sorter?: boolean;
|
|
223
|
+
filterOptions?: {
|
|
224
|
+
text: string;
|
|
225
|
+
value: string;
|
|
226
|
+
}[];
|
|
227
|
+
render?: {
|
|
228
|
+
type: 'Tag' | 'Progress' | 'Image';
|
|
229
|
+
props?: {
|
|
230
|
+
color?: Record<string, TagColor>;
|
|
231
|
+
text?: Record<string, string>;
|
|
232
|
+
status?: string;
|
|
233
|
+
showInfo?: boolean;
|
|
234
|
+
size?: 'small' | 'default' | 'large';
|
|
235
|
+
width?: number;
|
|
236
|
+
height?: number;
|
|
237
|
+
preview?: boolean;
|
|
238
|
+
fallback?: string;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
}
|
|
242
|
+
export interface TableProps {
|
|
243
|
+
title: string;
|
|
244
|
+
pagination?: boolean | {
|
|
245
|
+
pageSize: number;
|
|
246
|
+
};
|
|
247
|
+
rowKey: string;
|
|
248
|
+
showSearch?: boolean;
|
|
249
|
+
showRefresh?: boolean;
|
|
250
|
+
showSettings?: boolean;
|
|
251
|
+
searchPlaceholder?: string;
|
|
252
|
+
searchValue?: string;
|
|
253
|
+
showToolbar?: boolean;
|
|
254
|
+
searchable?: boolean;
|
|
255
|
+
filterable?: boolean;
|
|
256
|
+
sortable?: boolean;
|
|
257
|
+
addable?: boolean;
|
|
258
|
+
editable?: boolean;
|
|
259
|
+
deletable?: boolean;
|
|
260
|
+
enableExport?: boolean;
|
|
261
|
+
columns: TableColumn[];
|
|
262
|
+
}
|
|
263
|
+
export interface ChartProps {
|
|
264
|
+
chartType: ChartType;
|
|
265
|
+
title: string;
|
|
266
|
+
height: number;
|
|
267
|
+
chartHeight?: number;
|
|
268
|
+
xField: string;
|
|
269
|
+
yField: string | string[];
|
|
270
|
+
seriesField?: string;
|
|
271
|
+
meta?: Record<string, {
|
|
272
|
+
alias: string;
|
|
273
|
+
}>;
|
|
274
|
+
label?: {
|
|
275
|
+
text?: string;
|
|
276
|
+
position?: string;
|
|
277
|
+
style?: Record<string, any>;
|
|
278
|
+
type?: string;
|
|
279
|
+
content?: string;
|
|
280
|
+
};
|
|
281
|
+
legend?: {
|
|
282
|
+
position?: string;
|
|
283
|
+
layout?: string;
|
|
284
|
+
};
|
|
285
|
+
smooth?: boolean;
|
|
286
|
+
isGroup?: boolean;
|
|
287
|
+
isStack?: boolean;
|
|
288
|
+
radius?: number;
|
|
289
|
+
tooltip?: {
|
|
290
|
+
formatter?: string;
|
|
291
|
+
};
|
|
292
|
+
}
|
|
293
|
+
export interface StatisticGroupProps {
|
|
294
|
+
grid: {
|
|
295
|
+
cols: number;
|
|
296
|
+
};
|
|
297
|
+
items: Array<{
|
|
298
|
+
key: string;
|
|
299
|
+
title: string;
|
|
300
|
+
value: number;
|
|
301
|
+
icon: string;
|
|
302
|
+
trend?: {
|
|
303
|
+
value: number;
|
|
304
|
+
type: 'up' | 'down';
|
|
305
|
+
suffix: string;
|
|
306
|
+
status: 'success' | 'error' | 'warning' | 'default';
|
|
307
|
+
description: string;
|
|
308
|
+
};
|
|
309
|
+
}>;
|
|
310
|
+
}
|
|
311
|
+
export interface ContainerProps {
|
|
312
|
+
layout: 'grid' | 'flex';
|
|
313
|
+
cols: number[];
|
|
314
|
+
gutter: number;
|
|
315
|
+
children: Component[];
|
|
316
|
+
}
|
|
317
|
+
export interface TabsProps {
|
|
318
|
+
defaultActiveKey: string;
|
|
319
|
+
type: 'card' | 'line';
|
|
320
|
+
size?: 'large' | 'default' | 'small';
|
|
321
|
+
children: Array<{
|
|
322
|
+
type: 'TabPane';
|
|
323
|
+
props: {
|
|
324
|
+
key: string;
|
|
325
|
+
label: string;
|
|
326
|
+
};
|
|
327
|
+
component: Component;
|
|
328
|
+
}>;
|
|
329
|
+
}
|
|
330
|
+
export type TypographySegmentTextType = 'default' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
331
|
+
export interface TypographySegmentCommonStyle {
|
|
332
|
+
color?: string;
|
|
333
|
+
textType?: TypographySegmentTextType;
|
|
334
|
+
marginBefore?: string;
|
|
335
|
+
marginAfter?: string;
|
|
336
|
+
}
|
|
337
|
+
export interface TypographyTextSegment extends TypographySegmentCommonStyle {
|
|
338
|
+
kind: 'text';
|
|
339
|
+
value: string;
|
|
340
|
+
}
|
|
341
|
+
export interface TypographyParameterSegment extends TypographySegmentCommonStyle {
|
|
342
|
+
kind: 'parameter';
|
|
343
|
+
source: string;
|
|
344
|
+
fallback?: string;
|
|
345
|
+
}
|
|
346
|
+
export interface TypographyDatabaseSegment extends TypographySegmentCommonStyle {
|
|
347
|
+
kind: 'database';
|
|
348
|
+
field: string;
|
|
349
|
+
statisticCondition?: string;
|
|
350
|
+
useCustomDataSource?: boolean;
|
|
351
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
352
|
+
fallback?: string;
|
|
353
|
+
}
|
|
354
|
+
export type TypographyContentSegment = TypographyTextSegment | TypographyParameterSegment | TypographyDatabaseSegment;
|
|
355
|
+
export interface TypographyProps {
|
|
356
|
+
type: 'title' | 'paragraph' | 'text' | 'blockquote';
|
|
357
|
+
content: string;
|
|
358
|
+
contentSegments?: TypographyContentSegment[];
|
|
359
|
+
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
360
|
+
fontSize?: string | number;
|
|
361
|
+
color?: string;
|
|
362
|
+
align?: 'left' | 'center' | 'right';
|
|
363
|
+
textType?: 'default' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
364
|
+
strong?: boolean;
|
|
365
|
+
italic?: boolean;
|
|
366
|
+
underline?: boolean;
|
|
367
|
+
delete?: boolean;
|
|
368
|
+
mark?: boolean;
|
|
369
|
+
code?: boolean;
|
|
370
|
+
keyboard?: boolean;
|
|
371
|
+
copyable?: boolean;
|
|
372
|
+
ellipsis?: boolean;
|
|
373
|
+
disabled?: boolean;
|
|
374
|
+
className?: string;
|
|
375
|
+
id?: string;
|
|
376
|
+
customStyles?: CustomStylesConfig;
|
|
377
|
+
loading?: boolean;
|
|
378
|
+
useMockData?: boolean;
|
|
379
|
+
mockData?: unknown;
|
|
380
|
+
pageParams?: ParameterRecord;
|
|
381
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
382
|
+
componentId?: string;
|
|
383
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
384
|
+
followPageRefresh?: boolean;
|
|
385
|
+
}
|
|
386
|
+
export interface CardProps {
|
|
387
|
+
title: string;
|
|
388
|
+
content: string;
|
|
389
|
+
}
|
|
390
|
+
export interface ListProps {
|
|
391
|
+
title: string;
|
|
392
|
+
items: any[];
|
|
393
|
+
}
|
|
394
|
+
export interface TaskInputProps {
|
|
395
|
+
taskId: string;
|
|
396
|
+
title?: string;
|
|
397
|
+
description?: string;
|
|
398
|
+
showTitle?: boolean;
|
|
399
|
+
showDescription?: boolean;
|
|
400
|
+
autoSubmit?: boolean;
|
|
401
|
+
submitButtonText?: string;
|
|
402
|
+
showOptionalInputs?: boolean;
|
|
403
|
+
compact?: boolean;
|
|
404
|
+
}
|
|
405
|
+
export interface ServiceDeskReporterProps {
|
|
406
|
+
applicationId?: string;
|
|
407
|
+
intakeDatasourceId?: string;
|
|
408
|
+
submitDatasourceId?: string;
|
|
409
|
+
myTicketsDatasourceId?: string;
|
|
410
|
+
requesterDetailDatasourceId?: string;
|
|
411
|
+
addActivityDatasourceId?: string;
|
|
412
|
+
requesterActionDatasourceId?: string;
|
|
413
|
+
title?: string;
|
|
414
|
+
description?: string;
|
|
415
|
+
submitButtonText?: string;
|
|
416
|
+
showRecentTickets?: boolean;
|
|
417
|
+
allowAttachments?: boolean;
|
|
418
|
+
maxFiles?: number;
|
|
419
|
+
maxFileSizeMb?: number;
|
|
420
|
+
acceptedFileTypes?: string;
|
|
421
|
+
defaultCategoryId?: string;
|
|
422
|
+
defaultImpact?: 'high' | 'medium' | 'low';
|
|
423
|
+
defaultUrgency?: 'high' | 'medium' | 'low';
|
|
424
|
+
contextStoreParam?: string;
|
|
425
|
+
contextBrandParam?: string;
|
|
426
|
+
contextDashboardParam?: string;
|
|
427
|
+
contextWidgetParam?: string;
|
|
428
|
+
pageParams?: Record<string, unknown>;
|
|
429
|
+
}
|
|
430
|
+
export interface FilterPanelRendererProps {
|
|
431
|
+
filters: Array<{
|
|
432
|
+
key: string;
|
|
433
|
+
type: 'select' | 'radio' | 'dateRange' | 'date' | 'text' | 'number' | 'tagInput';
|
|
434
|
+
label: string;
|
|
435
|
+
options?: Array<{
|
|
436
|
+
label: string;
|
|
437
|
+
value: string;
|
|
438
|
+
}>;
|
|
439
|
+
multiple?: boolean;
|
|
440
|
+
defaultValue?: any;
|
|
441
|
+
placeholder?: string;
|
|
442
|
+
inline?: boolean;
|
|
443
|
+
style?: React.CSSProperties;
|
|
444
|
+
quickSelect?: boolean;
|
|
445
|
+
quickSelectItems?: Partial<Record<'today' | 'yesterday' | 'yesterdayToToday' | 'last7days' | 'last30days', boolean>>;
|
|
446
|
+
useSpecifiedTime?: boolean;
|
|
447
|
+
showTimePicker?: boolean;
|
|
448
|
+
specifiedStartTime?: string;
|
|
449
|
+
specifiedEndTime?: string;
|
|
450
|
+
displayWidth?: string;
|
|
451
|
+
dropdownWidth?: string;
|
|
452
|
+
}>;
|
|
453
|
+
presets?: Array<{
|
|
454
|
+
label: string;
|
|
455
|
+
value: Record<string, any>;
|
|
456
|
+
}>;
|
|
457
|
+
onFilterChange?: (filters: Record<string, any>) => void;
|
|
458
|
+
className?: string;
|
|
459
|
+
title?: string;
|
|
460
|
+
useMockData?: boolean;
|
|
461
|
+
}
|
|
462
|
+
export interface RadarChartRendererProps {
|
|
463
|
+
data?: any[];
|
|
464
|
+
loading?: boolean;
|
|
465
|
+
useMockData?: boolean;
|
|
466
|
+
mockData?: any[];
|
|
467
|
+
title?: string;
|
|
468
|
+
height?: number;
|
|
469
|
+
className?: string;
|
|
470
|
+
angleField?: string;
|
|
471
|
+
radiusField?: string | string[];
|
|
472
|
+
colors?: string[];
|
|
473
|
+
fillOpacity?: number;
|
|
474
|
+
strokeWidth?: number;
|
|
475
|
+
showTooltip?: boolean;
|
|
476
|
+
showLegend?: boolean;
|
|
477
|
+
showGrid?: boolean;
|
|
478
|
+
showAngleAxis?: boolean;
|
|
479
|
+
showRadiusAxis?: boolean;
|
|
480
|
+
meta?: {
|
|
481
|
+
[key: string]: {
|
|
482
|
+
alias?: string;
|
|
483
|
+
formatter?: (value: any) => string;
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
id?: string;
|
|
487
|
+
customStyles?: CustomStylesConfig;
|
|
488
|
+
showDataView?: boolean;
|
|
489
|
+
}
|
|
490
|
+
export interface SimpleTreeRendererProps {
|
|
491
|
+
parentKey?: string;
|
|
492
|
+
keyField?: string;
|
|
493
|
+
label?: string;
|
|
494
|
+
sortKey?: string;
|
|
495
|
+
dataSource?: any[];
|
|
496
|
+
loading?: boolean;
|
|
497
|
+
useMockData?: boolean;
|
|
498
|
+
mockData?: any[];
|
|
499
|
+
title?: string;
|
|
500
|
+
searchable?: boolean;
|
|
501
|
+
showIcon?: boolean;
|
|
502
|
+
showCount?: boolean;
|
|
503
|
+
defaultExpandLevel?: number;
|
|
504
|
+
addable?: boolean;
|
|
505
|
+
editable?: boolean;
|
|
506
|
+
deletable?: boolean;
|
|
507
|
+
className?: string;
|
|
508
|
+
height?: number;
|
|
509
|
+
datasetConfig?: {
|
|
510
|
+
datasetId: string;
|
|
511
|
+
params?: Record<string, any>;
|
|
512
|
+
useAutoId?: boolean;
|
|
513
|
+
};
|
|
514
|
+
insertDatasetConfig?: {
|
|
515
|
+
targetDatasetId: string | {
|
|
516
|
+
source: 'parameter' | 'static';
|
|
517
|
+
paramName?: string;
|
|
518
|
+
value?: string;
|
|
519
|
+
};
|
|
520
|
+
insertFields: {
|
|
521
|
+
[fieldName: string]: {
|
|
522
|
+
source: 'column' | 'static' | 'parameter' | 'computed' | 'field';
|
|
523
|
+
value: string;
|
|
524
|
+
required?: boolean;
|
|
525
|
+
fieldType?: 'VARCHAR' | 'INT32' | 'FLOAT' | 'BOOL' | 'JSON' | 'ARRAY';
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
updateDatasetConfig?: {
|
|
530
|
+
targetDatasetId: string | {
|
|
531
|
+
source: 'parameter' | 'static';
|
|
532
|
+
paramName?: string;
|
|
533
|
+
value?: string;
|
|
534
|
+
};
|
|
535
|
+
updateFields: {
|
|
536
|
+
[fieldName: string]: {
|
|
537
|
+
source: 'column' | 'static' | 'parameter' | 'computed' | 'field';
|
|
538
|
+
value: string;
|
|
539
|
+
required?: boolean;
|
|
540
|
+
fieldType?: 'VARCHAR' | 'INT32' | 'FLOAT' | 'BOOL' | 'JSON' | 'ARRAY';
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
updateConditions: {
|
|
544
|
+
[fieldName: string]: {
|
|
545
|
+
source: 'column' | 'static' | 'parameter' | 'field';
|
|
546
|
+
value: string;
|
|
547
|
+
operator?: 'equals' | 'in';
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
};
|
|
551
|
+
onSelect?: (node: any) => void;
|
|
552
|
+
onAdd?: (parentNode: any) => void;
|
|
553
|
+
onEdit?: (node: any) => void;
|
|
554
|
+
onDelete?: (node: any) => void;
|
|
555
|
+
onMoveUp?: (node: any) => void;
|
|
556
|
+
onMoveDown?: (node: any) => void;
|
|
557
|
+
onRefresh?: () => void;
|
|
558
|
+
}
|
|
559
|
+
export interface TreeProps {
|
|
560
|
+
title: string;
|
|
561
|
+
parentKey: string;
|
|
562
|
+
key: string;
|
|
563
|
+
label: string;
|
|
564
|
+
sortKey: string;
|
|
565
|
+
height: number;
|
|
566
|
+
searchable: boolean;
|
|
567
|
+
showIcon: boolean;
|
|
568
|
+
showCount: boolean;
|
|
569
|
+
defaultExpandLevel: number;
|
|
570
|
+
addable: boolean;
|
|
571
|
+
editable: boolean;
|
|
572
|
+
deletable: boolean;
|
|
573
|
+
}
|
|
574
|
+
export interface BaseComponent {
|
|
575
|
+
type: string;
|
|
576
|
+
id: string;
|
|
577
|
+
props: Record<string, any>;
|
|
578
|
+
dataSource?: DataSource;
|
|
579
|
+
mockData?: any[];
|
|
580
|
+
}
|
|
581
|
+
export type Component = {
|
|
582
|
+
type: 'Table';
|
|
583
|
+
id: string;
|
|
584
|
+
props: TableProps;
|
|
585
|
+
dataSource?: DataSource;
|
|
586
|
+
mockData?: any[];
|
|
587
|
+
} | {
|
|
588
|
+
type: 'Chart';
|
|
589
|
+
id: string;
|
|
590
|
+
props: ChartProps;
|
|
591
|
+
dataSource?: DataSource;
|
|
592
|
+
mockData?: any[];
|
|
593
|
+
} | {
|
|
594
|
+
type: 'StatisticGroup';
|
|
595
|
+
id: string;
|
|
596
|
+
props: StatisticGroupProps;
|
|
597
|
+
dataSource?: DataSource;
|
|
598
|
+
mockData?: any[];
|
|
599
|
+
} | {
|
|
600
|
+
type: 'DataGridCard';
|
|
601
|
+
id: string;
|
|
602
|
+
props: DataGridCardProps;
|
|
603
|
+
dataSource?: DataSource;
|
|
604
|
+
mockData?: any[];
|
|
605
|
+
} | {
|
|
606
|
+
type: 'Container';
|
|
607
|
+
id: string;
|
|
608
|
+
props: ContainerProps;
|
|
609
|
+
children: Component[];
|
|
610
|
+
} | {
|
|
611
|
+
type: 'Tabs';
|
|
612
|
+
id: string;
|
|
613
|
+
props: TabsProps;
|
|
614
|
+
} | {
|
|
615
|
+
type: 'Typography';
|
|
616
|
+
id: string;
|
|
617
|
+
props: TypographyProps;
|
|
618
|
+
} | {
|
|
619
|
+
type: 'Card';
|
|
620
|
+
id: string;
|
|
621
|
+
props: CardProps;
|
|
622
|
+
} | {
|
|
623
|
+
type: 'List';
|
|
624
|
+
id: string;
|
|
625
|
+
props: ListProps;
|
|
626
|
+
dataSource?: DataSource;
|
|
627
|
+
mockData?: any[];
|
|
628
|
+
} | {
|
|
629
|
+
type: 'TaskInput';
|
|
630
|
+
id: string;
|
|
631
|
+
props: TaskInputProps;
|
|
632
|
+
} | {
|
|
633
|
+
type: 'ServiceDeskReporter';
|
|
634
|
+
id: string;
|
|
635
|
+
props: ServiceDeskReporterProps;
|
|
636
|
+
} | {
|
|
637
|
+
type: 'Tree';
|
|
638
|
+
id: string;
|
|
639
|
+
props: TreeProps;
|
|
640
|
+
dataSource?: DataSource;
|
|
641
|
+
mockData?: any[];
|
|
642
|
+
};
|
|
643
|
+
export interface PageConfig {
|
|
644
|
+
title: string;
|
|
645
|
+
layout: LayoutType;
|
|
646
|
+
components: Component[];
|
|
647
|
+
}
|
|
648
|
+
export interface NavigationItem {
|
|
649
|
+
key: string;
|
|
650
|
+
path: string;
|
|
651
|
+
title: string;
|
|
652
|
+
icon: string;
|
|
653
|
+
}
|
|
654
|
+
export interface WorkbenchConfig {
|
|
655
|
+
appConfig: AppConfig;
|
|
656
|
+
pages: Record<string, PageConfig>;
|
|
657
|
+
}
|
|
658
|
+
export interface BaseFormRendererProps {
|
|
659
|
+
config: FormConfig;
|
|
660
|
+
parameterConfig?: ParameterConfig;
|
|
661
|
+
dataSource?: {
|
|
662
|
+
type: string;
|
|
663
|
+
datasetId: string;
|
|
664
|
+
params?: Record<string, unknown>;
|
|
665
|
+
};
|
|
666
|
+
pageParams?: Record<string, unknown>;
|
|
667
|
+
className?: string;
|
|
668
|
+
useMockData?: boolean;
|
|
669
|
+
mockData?: Record<string, unknown>;
|
|
670
|
+
loading?: boolean;
|
|
671
|
+
onSubmitSuccess?: (data: unknown) => void;
|
|
672
|
+
onSubmitError?: (error: Error | string) => void;
|
|
673
|
+
id?: string;
|
|
674
|
+
customStyles?: CustomStylesConfig;
|
|
675
|
+
}
|
|
676
|
+
export interface FormFieldRenderProps {
|
|
677
|
+
field: Record<string, unknown>;
|
|
678
|
+
value: unknown;
|
|
679
|
+
errors: Record<string, string>;
|
|
680
|
+
submitting: boolean;
|
|
681
|
+
onChange: (fieldName: string, value: unknown) => void;
|
|
682
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ParameterValue } from '../../types/parameters';
|
|
3
|
+
import { ParagraphRendererProps, TextRendererProps, TitleRendererProps, TypographyProps } from '../types';
|
|
4
|
+
|
|
5
|
+
export declare function normalizeFontSizeInput(fontSize?: string | number | null): string | undefined;
|
|
6
|
+
export declare function normalizeTypographyColor(color?: string | null): string | undefined;
|
|
7
|
+
export declare function formatParameterValueForDisplay(value: ParameterValue | undefined): string;
|
|
8
|
+
export declare const TextRenderer: React.FC<TextRendererProps>;
|
|
9
|
+
export declare const TitleRenderer: React.FC<TitleRendererProps>;
|
|
10
|
+
export declare const ParagraphRenderer: React.FC<ParagraphRendererProps>;
|
|
11
|
+
export declare const TypographyRenderer: React.FC<TypographyProps>;
|
|
12
|
+
declare const _default: {
|
|
13
|
+
Text: React.FC<TextRendererProps>;
|
|
14
|
+
Title: React.FC<TitleRendererProps>;
|
|
15
|
+
Paragraph: React.FC<ParagraphRendererProps>;
|
|
16
|
+
};
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TypographyRenderer, TextRenderer, TitleRenderer, ParagraphRenderer, } from './TypographyRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typography.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|