@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,46 @@
|
|
|
1
|
+
import { TableAction, TableActionConfig } from '../../types';
|
|
2
|
+
import { BilingualText } from '../../utils/workbenchDisplayLocale';
|
|
3
|
+
|
|
4
|
+
export type NavTileVariant = 'default' | 'compact' | 'outline';
|
|
5
|
+
/**
|
|
6
|
+
* Inclusive range for the "columns per row" property. The minimum of 1 keeps
|
|
7
|
+
* the layout single-column; the maximum of 24 matches the parent
|
|
8
|
+
* `grid-24` container used by the workbench so a tile can never exceed
|
|
9
|
+
* the surrounding grid's track count.
|
|
10
|
+
*/
|
|
11
|
+
export declare const MIN_NAV_TILE_COLUMNS = 1;
|
|
12
|
+
export declare const MAX_NAV_TILE_COLUMNS = 24;
|
|
13
|
+
/** Default column count when none is provided or the value is invalid. */
|
|
14
|
+
export declare const DEFAULT_NAV_TILE_COLUMNS = 2;
|
|
15
|
+
/** Allowed column count for a NavTile row, expressed as a numeric range. */
|
|
16
|
+
export type NavTileColumns = number;
|
|
17
|
+
export interface NavTileItem {
|
|
18
|
+
id?: string;
|
|
19
|
+
/** Plain string OR bilingual { zh, en } — resolved via resolveBilingualText at render time. */
|
|
20
|
+
title: BilingualText;
|
|
21
|
+
subtitle?: BilingualText;
|
|
22
|
+
icon?: string;
|
|
23
|
+
badge?: string;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
targetPage?: string;
|
|
26
|
+
parameterMapping?: TableActionConfig['parameterMapping'];
|
|
27
|
+
}
|
|
28
|
+
export interface NavTileProps {
|
|
29
|
+
items?: NavTileItem[];
|
|
30
|
+
columns?: NavTileColumns;
|
|
31
|
+
gap?: number;
|
|
32
|
+
/** Uniform height (px) for each nav tile; default 110 */
|
|
33
|
+
itemHeight?: number;
|
|
34
|
+
variant?: NavTileVariant;
|
|
35
|
+
showArrow?: boolean;
|
|
36
|
+
arrowIcon?: string;
|
|
37
|
+
className?: string;
|
|
38
|
+
}
|
|
39
|
+
export declare const DEFAULT_NAV_TILE_ITEM_HEIGHT = 110;
|
|
40
|
+
export declare function normalizeNavTileItemHeight(height?: number): number;
|
|
41
|
+
export declare function normalizeNavTileColumns(columns?: number): number;
|
|
42
|
+
export declare function resolveNavTileGridClass(columns: number): string;
|
|
43
|
+
export declare function resolveNavTileVariantClass(variant?: NavTileVariant): string;
|
|
44
|
+
export declare function navTileItemToRecord(item: NavTileItem): Record<string, unknown>;
|
|
45
|
+
export declare function navTileItemToAction(item: NavTileItem, index: number): TableAction | null;
|
|
46
|
+
export declare function getVisibleNavTileItems(items?: NavTileItem[]): NavTileItem[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navigation.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
3
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
4
|
+
|
|
5
|
+
export interface ProductDetailRendererProps {
|
|
6
|
+
id?: string;
|
|
7
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
8
|
+
shareDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
9
|
+
sizeDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
10
|
+
topStoresDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
11
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
12
|
+
pageParams?: Record<string, unknown>;
|
|
13
|
+
/** Discount alert threshold (0..1; below it the discount block turns red). Must be configured explicitly — when absent the discount block stays neutral and no alert check runs (no code-level fallback). */
|
|
14
|
+
discountThreshold?: number;
|
|
15
|
+
/** Per-role font sizes (px). Empty = readable defaults. */
|
|
16
|
+
titleFontSize?: number;
|
|
17
|
+
valueFontSize?: number;
|
|
18
|
+
labelFontSize?: number;
|
|
19
|
+
cellFontSize?: number;
|
|
20
|
+
badgeFontSize?: number;
|
|
21
|
+
}
|
|
22
|
+
declare const ProductDetailRenderer: React.FC<ProductDetailRendererProps>;
|
|
23
|
+
export default ProductDetailRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ProductDetailRenderer } from './ProductDetailRenderer';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ReportColumn, ReportValueFormat, CardLayoutConfig } from '../../types/productReport';
|
|
3
|
+
|
|
4
|
+
type Row = Record<string, unknown>;
|
|
5
|
+
/** Resolve a locale-aware field: row[base_zh|base_en] → row[base]. */
|
|
6
|
+
export declare function resolveFieldByLang(row: Row, base: string, language: string): string;
|
|
7
|
+
/** Shared value formatting (summary cards + table cells). */
|
|
8
|
+
export declare function formatReportValue(raw: unknown, format: ReportValueFormat | undefined, currency?: unknown): string;
|
|
9
|
+
export declare function ProductThumb({ url, light, className, }: {
|
|
10
|
+
url?: string;
|
|
11
|
+
bg?: string;
|
|
12
|
+
light?: boolean;
|
|
13
|
+
className?: string;
|
|
14
|
+
}): React.JSX.Element;
|
|
15
|
+
/** Render a single table cell from its ReportColumn config + row. */
|
|
16
|
+
export declare function renderReportCell(col: ReportColumn, row: Row, language: string): React.ReactNode;
|
|
17
|
+
/** A configurable list-card: banner thumbnail + header rows beside it, body rows below. */
|
|
18
|
+
export declare function ReportCard({ layout, row, language, onClick, hiddenFields }: {
|
|
19
|
+
layout: CardLayoutConfig;
|
|
20
|
+
row: Row;
|
|
21
|
+
language: string;
|
|
22
|
+
onClick?: () => void;
|
|
23
|
+
hiddenFields?: Set<string>;
|
|
24
|
+
}): React.JSX.Element;
|
|
25
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-detail.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
3
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
4
|
+
import { ProductReportConfig } from '../../types/productReport';
|
|
5
|
+
|
|
6
|
+
export interface ProductReportRendererProps extends ProductReportConfig {
|
|
7
|
+
id?: string;
|
|
8
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
9
|
+
dimDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
10
|
+
summaryDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
11
|
+
totalRowDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
12
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
13
|
+
pageParams?: Record<string, unknown>;
|
|
14
|
+
titleFontSize?: number;
|
|
15
|
+
valueFontSize?: number;
|
|
16
|
+
labelFontSize?: number;
|
|
17
|
+
cellFontSize?: number;
|
|
18
|
+
badgeFontSize?: number;
|
|
19
|
+
}
|
|
20
|
+
declare const ProductReportRenderer: React.FC<ProductReportRendererProps>;
|
|
21
|
+
export default ProductReportRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ProductReportRenderer } from './ProductReportRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product-report.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
|
|
4
|
+
type Bi = string | {
|
|
5
|
+
zh?: string;
|
|
6
|
+
en?: string;
|
|
7
|
+
};
|
|
8
|
+
export interface PublishHistoryRendererProps {
|
|
9
|
+
id?: string;
|
|
10
|
+
/** Card title; defaults to the localized "Publish History". */
|
|
11
|
+
title?: Bi;
|
|
12
|
+
/** Page size for the timeline (1–50), default 10. */
|
|
13
|
+
maxItems?: number;
|
|
14
|
+
showVersion?: boolean;
|
|
15
|
+
showPublisher?: boolean;
|
|
16
|
+
/** 'relative' shows "x ago" with the absolute time as tooltip; 'absolute' shows the locale datetime. */
|
|
17
|
+
timeStyle?: 'relative' | 'absolute';
|
|
18
|
+
customStyles?: CustomStylesConfig;
|
|
19
|
+
}
|
|
20
|
+
declare const PublishHistoryRenderer: React.FC<PublishHistoryRendererProps>;
|
|
21
|
+
export default PublishHistoryRenderer;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
|
|
4
|
+
export interface PublishPreviewEntryRendererProps {
|
|
5
|
+
id?: string;
|
|
6
|
+
customStyles?: CustomStylesConfig;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* PublishPreviewEntry — self-sourced, read-only info card. It fetches the
|
|
10
|
+
* CURRENT workbench (same route-param sourcing as PublishHistoryRenderer) to
|
|
11
|
+
* read `hasUnpublishedChanges` + `permissions`, and offers a "Enter preview"
|
|
12
|
+
* button that navigates the whole current page into preview mode. All copy is
|
|
13
|
+
* fixed via i18n (no configurable text props).
|
|
14
|
+
*/
|
|
15
|
+
declare const PublishPreviewEntryRenderer: React.FC<PublishPreviewEntryRendererProps>;
|
|
16
|
+
export default PublishPreviewEntryRenderer;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pure state helpers for PublishHistoryRenderer — kept free of React/i18n/api
|
|
3
|
+
* imports so the pagination reducer can be unit-tested in isolation.
|
|
4
|
+
*
|
|
5
|
+
* The API (`GET /workbenches/:id/publish-history`) already strips the
|
|
6
|
+
* '[publish]' description prefix and returns metadata only, so no
|
|
7
|
+
* description mapping happens client-side.
|
|
8
|
+
*/
|
|
9
|
+
export interface PublishHistoryItem {
|
|
10
|
+
version: string;
|
|
11
|
+
description: string;
|
|
12
|
+
publishedByName: string;
|
|
13
|
+
createdAt: string;
|
|
14
|
+
}
|
|
15
|
+
export interface PublishHistoryState {
|
|
16
|
+
items: PublishHistoryItem[];
|
|
17
|
+
total: number;
|
|
18
|
+
/** Initial / replace fetch in flight (offset 0). */
|
|
19
|
+
loading: boolean;
|
|
20
|
+
/** "Load more" append fetch in flight (offset > 0). */
|
|
21
|
+
loadingMore: boolean;
|
|
22
|
+
error: string | null;
|
|
23
|
+
}
|
|
24
|
+
export type PublishHistoryAction = {
|
|
25
|
+
type: 'reset';
|
|
26
|
+
} | {
|
|
27
|
+
type: 'load-start';
|
|
28
|
+
append: boolean;
|
|
29
|
+
} | {
|
|
30
|
+
type: 'load-success';
|
|
31
|
+
items: PublishHistoryItem[];
|
|
32
|
+
total: number;
|
|
33
|
+
offset: number;
|
|
34
|
+
} | {
|
|
35
|
+
type: 'load-error';
|
|
36
|
+
message: string;
|
|
37
|
+
};
|
|
38
|
+
export declare const createInitialPublishHistoryState: () => PublishHistoryState;
|
|
39
|
+
export declare function publishHistoryReducer(state: PublishHistoryState, action: PublishHistoryAction): PublishHistoryState;
|
|
40
|
+
/** 'v18'-style badge text: prefix a lowercase v unless the version already has one. */
|
|
41
|
+
export declare function formatVersionBadge(version: string): string;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pure state helpers for PublishPreviewEntryRenderer — kept free of
|
|
3
|
+
* React/i18n/api imports so the status state machine can be unit-tested in
|
|
4
|
+
* isolation.
|
|
5
|
+
*
|
|
6
|
+
* The component self-sources its data from `GET /workbenches/:id` (default
|
|
7
|
+
* published view), which returns `hasUnpublishedChanges` plus a
|
|
8
|
+
* `permissions: { canView, canEdit, canManage }` block.
|
|
9
|
+
*/
|
|
10
|
+
export interface PublishPreviewPermissions {
|
|
11
|
+
canView?: boolean;
|
|
12
|
+
canEdit?: boolean;
|
|
13
|
+
canManage?: boolean;
|
|
14
|
+
}
|
|
15
|
+
/** The subset of the `GET /workbenches/:id` payload this component reads. */
|
|
16
|
+
export interface WorkbenchPublishStatus {
|
|
17
|
+
hasUnpublishedChanges?: boolean;
|
|
18
|
+
permissions?: PublishPreviewPermissions;
|
|
19
|
+
}
|
|
20
|
+
export type PublishPreviewEntryStatus = 'loading' | 'error' | 'no-changes' | 'can-preview' | 'no-permission';
|
|
21
|
+
export type PublishPreviewEntryMode = 'preview' | 'edit' | null;
|
|
22
|
+
/**
|
|
23
|
+
* Mode overrides the three-state display: while previewing (a preview token
|
|
24
|
+
* exists for this tab) or editing, the "Enter preview" button makes no sense,
|
|
25
|
+
* so the card shows a fixed mode note instead. Preview wins over edit when
|
|
26
|
+
* both flags are somehow set — being inside a preview is the more specific
|
|
27
|
+
* state, and it matches resolveConfigView's token-first order.
|
|
28
|
+
*/
|
|
29
|
+
export declare function resolveEntryMode(input: {
|
|
30
|
+
isPreviewMode: boolean;
|
|
31
|
+
isEditMode: boolean;
|
|
32
|
+
}): PublishPreviewEntryMode;
|
|
33
|
+
/** i18n key (renderers.json publish_preview_entry.*) for the fixed mode note. */
|
|
34
|
+
export declare function entryModeNoteKey(mode: PublishPreviewEntryMode): 'mode_preview' | 'mode_edit' | null;
|
|
35
|
+
/** Write access for preview-token creation: edit or manage on the workbench. */
|
|
36
|
+
export declare function canWriteWorkbench(permissions?: PublishPreviewPermissions | null): boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Resolve the card's display state. Loading and error dominate; without
|
|
39
|
+
* unpublished changes the entry is informational only; otherwise the button
|
|
40
|
+
* shows only for users who can create a preview token (write permission).
|
|
41
|
+
*/
|
|
42
|
+
export declare function resolvePublishPreviewEntryStatus(input: {
|
|
43
|
+
loading: boolean;
|
|
44
|
+
error: string | null;
|
|
45
|
+
workbench?: WorkbenchPublishStatus | null;
|
|
46
|
+
}): PublishPreviewEntryStatus;
|
|
47
|
+
/** Preview entry URL — navigating here puts the whole current page into preview mode. */
|
|
48
|
+
export declare function buildWorkbenchPreviewUrl(origin: string, workbenchId: string, token: string): string;
|
|
49
|
+
/** Pull the token out of `createWorkbenchPreviewToken`'s ApiResponse, or null. */
|
|
50
|
+
export declare function extractPreviewToken(response: unknown): string | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
4
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
5
|
+
|
|
6
|
+
export interface RadarChartRendererProps {
|
|
7
|
+
data?: Record<string, unknown>[];
|
|
8
|
+
loading?: boolean;
|
|
9
|
+
useMockData?: boolean;
|
|
10
|
+
mockData?: Record<string, unknown>[];
|
|
11
|
+
title?: string;
|
|
12
|
+
height?: number;
|
|
13
|
+
className?: string;
|
|
14
|
+
angleField?: string;
|
|
15
|
+
radiusField?: string | string[];
|
|
16
|
+
colors?: string[];
|
|
17
|
+
fillOpacity?: number;
|
|
18
|
+
strokeWidth?: number;
|
|
19
|
+
showTooltip?: boolean;
|
|
20
|
+
showLegend?: boolean;
|
|
21
|
+
showGrid?: boolean;
|
|
22
|
+
showAngleAxis?: boolean;
|
|
23
|
+
showRadiusAxis?: boolean;
|
|
24
|
+
gridLevels?: number;
|
|
25
|
+
radiusDomain?: [number, number];
|
|
26
|
+
meta?: {
|
|
27
|
+
[key: string]: {
|
|
28
|
+
alias?: string;
|
|
29
|
+
formatter?: (value: unknown) => string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
id?: string;
|
|
33
|
+
customStyles?: CustomStylesConfig;
|
|
34
|
+
showDataView?: boolean;
|
|
35
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
36
|
+
componentParameterConfig?: ComponentParameterConfig | null;
|
|
37
|
+
pageParams?: Record<string, unknown>;
|
|
38
|
+
}
|
|
39
|
+
declare const RadarChartRenderer: React.FC<RadarChartRendererProps>;
|
|
40
|
+
export default RadarChartRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as RadarChartRenderer } from './RadarChartRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"radar-chart.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ListRenderer } from './list/ListRenderers';
|
|
2
|
+
import { renderByType } from './base/BaseRenderers';
|
|
3
|
+
import { ContainerRenderer } from './container/ContainerRenderers';
|
|
4
|
+
import { default as StatisticGroup } from './statistics/StatisticGroup';
|
|
5
|
+
import { default as TableRenderer } from './table/TableRenderer';
|
|
6
|
+
import { default as EditableTableRenderer } from './editable-table/EditableTableRenderer';
|
|
7
|
+
import { default as TabsRenderer } from './tabs/TabsRenderer';
|
|
8
|
+
import { default as CardRenderer } from './card/CardRenderer';
|
|
9
|
+
import { default as DataGridCard } from './data-grid-card/DataGridCard';
|
|
10
|
+
import { default as ChartRenderer } from './chart/ChartRenderer';
|
|
11
|
+
import { default as RadarChartRenderer } from './radar-chart/RadarChartRenderer';
|
|
12
|
+
import { default as MapChartRenderer } from './map-chart/MapChartRenderer';
|
|
13
|
+
import { default as EChartsChartRenderer } from './echarts/EChartsChartRenderer';
|
|
14
|
+
import { default as FilterPanelRenderer } from './filter-panel/FilterPanelRenderer';
|
|
15
|
+
import { TypographyRenderer, TextRenderer, TitleRenderer, ParagraphRenderer } from './typography/TypographyRenderer';
|
|
16
|
+
import { default as HeroCardRenderer } from './hero-card/HeroCardRenderer';
|
|
17
|
+
import { default as MetricCarouselRenderer } from './metric-carousel/MetricCarouselRenderer';
|
|
18
|
+
import { default as CollapsePanelRenderer } from './collapse-panel/CollapsePanelRenderer';
|
|
19
|
+
import { default as AnalyticsTableRenderer } from './analytics-table/AnalyticsTableRenderer';
|
|
20
|
+
import { default as ProductReportRenderer } from './product-report/ProductReportRenderer';
|
|
21
|
+
import { default as ProductDetailRenderer } from './product-detail/ProductDetailRenderer';
|
|
22
|
+
import { default as TileGridRenderer } from './tile-grid/TileGridRenderer';
|
|
23
|
+
import { default as RingStatRenderer } from './ring-stat/RingStatRenderer';
|
|
24
|
+
import { default as PublishHistoryRenderer } from './publish/PublishHistoryRenderer';
|
|
25
|
+
import { default as PublishPreviewEntryRenderer } from './publish/PublishPreviewEntryRenderer';
|
|
26
|
+
import { default as NavTileRenderer } from './navigation/NavTileRenderer';
|
|
27
|
+
import { default as AppIdentityListRenderer } from './identity/AppIdentityListRenderer';
|
|
28
|
+
import { default as IdentityAttributeAssignRenderer } from './identity/IdentityAttributeAssignRenderer';
|
|
29
|
+
import { default as LoadingRenderer } from './base/LoadingRenderer';
|
|
30
|
+
import { default as TaskInputRenderer } from './task-input/TaskInputRenderer';
|
|
31
|
+
import { default as ServiceDeskReporterRenderer } from './service-desk/ServiceDeskReporterRenderer';
|
|
32
|
+
import { default as SimpleTreeRenderer } from './tree/SimpleTreeRenderer';
|
|
33
|
+
import { default as CustomContentRenderer } from './custom-content/CustomContentRenderer';
|
|
34
|
+
import { ListRendererProps, ContainerRendererProps, StatisticGroupProps, TableRendererProps, TabsRendererProps, CardRendererProps, DataGridCardProps, TextRendererProps, TitleRendererProps, ParagraphRendererProps, TypographyProps, TypographyContentSegment, TypographyDatabaseSegment, TypographySegmentTextType, TaskInputRendererProps, SimpleTreeRendererProps, RadarChartRendererProps, FilterPanelRendererProps, RenderersMap } from './types';
|
|
35
|
+
|
|
36
|
+
declare const renderers: RenderersMap;
|
|
37
|
+
export type { ListRendererProps, ContainerRendererProps, StatisticGroupProps, TableRendererProps, TabsRendererProps, CardRendererProps, DataGridCardProps, TextRendererProps, TitleRendererProps, ParagraphRendererProps, TypographyProps, TypographyContentSegment, TypographyDatabaseSegment, TypographySegmentTextType, TaskInputRendererProps, SimpleTreeRendererProps, RadarChartRendererProps, FilterPanelRendererProps };
|
|
38
|
+
export { ListRenderer, ContainerRenderer, renderByType, StatisticGroup, TableRenderer, EditableTableRenderer, DataGridCard, TabsRenderer, CardRenderer, ChartRenderer, RadarChartRenderer, MapChartRenderer, EChartsChartRenderer, FilterPanelRenderer, HeroCardRenderer, MetricCarouselRenderer, CollapsePanelRenderer, AnalyticsTableRenderer, ProductReportRenderer, ProductDetailRenderer, TileGridRenderer, RingStatRenderer, PublishHistoryRenderer, PublishPreviewEntryRenderer, NavTileRenderer, AppIdentityListRenderer, IdentityAttributeAssignRenderer, TypographyRenderer, TextRenderer, TitleRenderer, ParagraphRenderer, LoadingRenderer, renderers, TaskInputRenderer, ServiceDeskReporterRenderer, CustomContentRenderer, SimpleTreeRenderer };
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
3
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
4
|
+
|
|
5
|
+
type Bi = string | {
|
|
6
|
+
zh?: string;
|
|
7
|
+
en?: string;
|
|
8
|
+
};
|
|
9
|
+
interface RingSegment {
|
|
10
|
+
key?: string;
|
|
11
|
+
label?: Bi;
|
|
12
|
+
color?: string;
|
|
13
|
+
value?: number;
|
|
14
|
+
}
|
|
15
|
+
interface RingTableCol {
|
|
16
|
+
key: string;
|
|
17
|
+
label?: Bi;
|
|
18
|
+
align?: 'left' | 'right';
|
|
19
|
+
}
|
|
20
|
+
interface CenterValueCfg {
|
|
21
|
+
mode?: 'ratio' | 'field' | 'manual';
|
|
22
|
+
field?: string;
|
|
23
|
+
value?: number;
|
|
24
|
+
}
|
|
25
|
+
interface TotalValueCfg {
|
|
26
|
+
mode?: 'sum' | 'field' | 'manual';
|
|
27
|
+
field?: string;
|
|
28
|
+
value?: number;
|
|
29
|
+
}
|
|
30
|
+
export interface RingStatRendererProps {
|
|
31
|
+
id?: string;
|
|
32
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
33
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
34
|
+
pageParams?: Record<string, unknown>;
|
|
35
|
+
rows?: Record<string, unknown>[];
|
|
36
|
+
useMockData?: boolean;
|
|
37
|
+
mockData?: Record<string, unknown>[];
|
|
38
|
+
segments?: RingSegment[];
|
|
39
|
+
valueField?: string;
|
|
40
|
+
matchField?: string;
|
|
41
|
+
labelField?: string;
|
|
42
|
+
primarySegmentKey?: string;
|
|
43
|
+
ringSize?: number;
|
|
44
|
+
ringThickness?: number;
|
|
45
|
+
trackColor?: string;
|
|
46
|
+
roundCap?: boolean;
|
|
47
|
+
centerValue?: CenterValueCfg;
|
|
48
|
+
centerSuffix?: string;
|
|
49
|
+
centerPrecision?: number;
|
|
50
|
+
centerTitle?: Bi;
|
|
51
|
+
centerValueFontSize?: number;
|
|
52
|
+
centerTitleFontSize?: number;
|
|
53
|
+
showLegend?: boolean;
|
|
54
|
+
legendValueFormat?: 'plain' | 'number';
|
|
55
|
+
showTotal?: boolean;
|
|
56
|
+
totalLabel?: Bi;
|
|
57
|
+
totalValue?: TotalValueCfg;
|
|
58
|
+
showDataView?: boolean;
|
|
59
|
+
tableColumns?: RingTableCol[];
|
|
60
|
+
title?: Bi;
|
|
61
|
+
bordered?: boolean;
|
|
62
|
+
bare?: boolean;
|
|
63
|
+
defaultPalette?: string[];
|
|
64
|
+
}
|
|
65
|
+
declare const RingStatRenderer: React.FC<RingStatRendererProps>;
|
|
66
|
+
export default RingStatRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as RingStatRenderer } from './RingStatRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ring-stat.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|