@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,48 @@
|
|
|
1
|
+
export interface ServiceDeskReporterProps {
|
|
2
|
+
applicationId?: string;
|
|
3
|
+
intakeDatasourceId?: string;
|
|
4
|
+
submitDatasourceId?: string;
|
|
5
|
+
myTicketsDatasourceId?: string;
|
|
6
|
+
requesterDetailDatasourceId?: string;
|
|
7
|
+
addActivityDatasourceId?: string;
|
|
8
|
+
requesterActionDatasourceId?: string;
|
|
9
|
+
title?: string;
|
|
10
|
+
description?: string;
|
|
11
|
+
submitButtonText?: string;
|
|
12
|
+
showRecentTickets?: boolean;
|
|
13
|
+
allowAttachments?: boolean;
|
|
14
|
+
maxFiles?: number;
|
|
15
|
+
maxFileSizeMb?: number;
|
|
16
|
+
acceptedFileTypes?: string;
|
|
17
|
+
defaultCategoryId?: string;
|
|
18
|
+
defaultImpact?: 'high' | 'medium' | 'low';
|
|
19
|
+
defaultUrgency?: 'high' | 'medium' | 'low';
|
|
20
|
+
contextParams?: Array<{
|
|
21
|
+
pageParam: string;
|
|
22
|
+
contextKey: string;
|
|
23
|
+
}>;
|
|
24
|
+
/** @deprecated Use contextParams instead. Kept as fallback for existing pages. */
|
|
25
|
+
contextStoreParam?: string;
|
|
26
|
+
/** @deprecated Use contextParams instead. Kept as fallback for existing pages. */
|
|
27
|
+
contextBrandParam?: string;
|
|
28
|
+
/** @deprecated Use contextParams instead. Kept as fallback for existing pages. */
|
|
29
|
+
contextDashboardParam?: string;
|
|
30
|
+
/** @deprecated Use contextParams instead. Kept as fallback for existing pages. */
|
|
31
|
+
contextWidgetParam?: string;
|
|
32
|
+
pageParams?: Record<string, unknown>;
|
|
33
|
+
}
|
|
34
|
+
declare function rowsFromResponse(response: unknown): Record<string, unknown>[];
|
|
35
|
+
declare function accessCodes(response: unknown): string[];
|
|
36
|
+
type StatusTranslate = (key: string, fallback: string) => string;
|
|
37
|
+
declare function statusLabel(state: string, t?: StatusTranslate): string;
|
|
38
|
+
declare function relatedRecordStatusLabel(state?: string | null, fallback?: string | null, t?: StatusTranslate): string;
|
|
39
|
+
declare function parseJsonField<T>(value: unknown, fallback: T): T;
|
|
40
|
+
export default function ServiceDeskReporterRenderer(props: ServiceDeskReporterProps): import("react").JSX.Element;
|
|
41
|
+
export declare const serviceDeskReporterTestUtils: {
|
|
42
|
+
accessCodes: typeof accessCodes;
|
|
43
|
+
parseJsonField: typeof parseJsonField;
|
|
44
|
+
relatedRecordStatusLabel: typeof relatedRecordStatusLabel;
|
|
45
|
+
rowsFromResponse: typeof rowsFromResponse;
|
|
46
|
+
statusLabel: typeof statusLabel;
|
|
47
|
+
};
|
|
48
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ServiceDeskReporterRenderer } from './ServiceDeskReporterRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service-desk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import { TableEmptyState } from '../../skeleton';
|
|
3
|
+
|
|
4
|
+
type TableEmptyStateBaseProps = ComponentProps<typeof TableEmptyState>;
|
|
5
|
+
export interface TableEmptyStateWithChromeInsetsProps extends TableEmptyStateBaseProps {
|
|
6
|
+
/** When true with floatBadge, keep the badge clear of mobile sticky header / bottom nav. */
|
|
7
|
+
avoidMobileChrome?: boolean;
|
|
8
|
+
/** Re-measure chrome insets when this changes (e.g. empty state becomes visible). */
|
|
9
|
+
chromeRemeasureKey?: unknown;
|
|
10
|
+
}
|
|
11
|
+
export declare function TableEmptyStateWithChromeInsets({ avoidMobileChrome, chromeRemeasureKey, floatBadge, ...rest }: TableEmptyStateWithChromeInsetsProps): import("react").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export type ViewType = 'chart' | 'data';
|
|
4
|
+
interface ViewToggleButtonProps {
|
|
5
|
+
viewType: ViewType;
|
|
6
|
+
onToggle: () => void;
|
|
7
|
+
className?: string;
|
|
8
|
+
/** Desktop uses text labels; mobile defaults to a single icon toggle. */
|
|
9
|
+
variant?: 'text' | 'icon' | 'auto';
|
|
10
|
+
}
|
|
11
|
+
/** Chart / List shared header toggle — matches ChartRenderer & EChartsChartRenderer. */
|
|
12
|
+
export declare const ViewToggleButton: React.FC<ViewToggleButtonProps>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface MobileChromeInsets {
|
|
2
|
+
/** Viewport px occupied by sticky/fixed chrome at the TOP (sticky FilterPanel or mobile header). */
|
|
3
|
+
top: number;
|
|
4
|
+
/** Viewport px occupied by fixed chrome at the BOTTOM (the bottom tab nav). */
|
|
5
|
+
bottom: number;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Mobile-only: measure the viewport insets taken by fixed/sticky workbench chrome — the sticky
|
|
9
|
+
* FilterPanel (falling back to the mobile header) at the top and the fixed bottom tab nav at the
|
|
10
|
+
* bottom. Pass the result to a floating element (e.g. {@link TableEmptyState}'s `floatBadge`) so it
|
|
11
|
+
* stays inside the content area instead of overlapping that chrome.
|
|
12
|
+
*
|
|
13
|
+
* Both values are 0 when `enabled` is false (e.g. desktop). The chrome sits at stable viewport
|
|
14
|
+
* positions, so we only re-measure on mount, on resize, and whenever `remeasureKey` changes — pass
|
|
15
|
+
* the "is the floating element visible" flag so insets are refreshed right when they are needed
|
|
16
|
+
* (the FilterPanel may not be sticky-positioned yet at first mount).
|
|
17
|
+
*/
|
|
18
|
+
export declare function useMobileChromeInsets(enabled: boolean, remeasureKey?: unknown): MobileChromeInsets;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Page-level sticky table header for MOBILE, without losing horizontal scroll.
|
|
3
|
+
*
|
|
4
|
+
* Why a clone: a table that scrolls horizontally lives inside an `overflow-x:auto`
|
|
5
|
+
* wrapper. Per CSS, that wrapper is also the vertical scroll container, so a plain
|
|
6
|
+
* `position: sticky` <thead> can only pin inside that wrapper — never to the page.
|
|
7
|
+
* So we render a lightweight CLONE of the real <thead> OUTSIDE the horizontal
|
|
8
|
+
* scroller: `position: sticky; top: var(--wb-filter-sticky-height)` pins it to the
|
|
9
|
+
* page scrollport right below the sticky FilterPanel; we sync its horizontal offset
|
|
10
|
+
* to the body's scrollLeft and mirror column widths. (This is what antd's
|
|
11
|
+
* `Table sticky={{ offsetHeader }}` does under the hood.)
|
|
12
|
+
*
|
|
13
|
+
* The hook is markup-agnostic: give it an empty overlay <div> rendered as the first
|
|
14
|
+
* child of the table card (before the scroll container). It finds the card's <table>
|
|
15
|
+
* + <thead> + horizontal scroller itself, clones the header, and keeps it in sync.
|
|
16
|
+
* Frozen/sticky-left columns keep working for free because the clone preserves the
|
|
17
|
+
* real header cells' classes/inline styles inside its own horizontal scroll context.
|
|
18
|
+
*
|
|
19
|
+
* Desktop (enabled=false) is a complete no-op: no clone, no observers, no listeners.
|
|
20
|
+
*/
|
|
21
|
+
export interface UseStickyHeaderCloneArgs {
|
|
22
|
+
/** Enable only on mobile (e.g. useMobileViewport().isMobile && tableViewIsActive). */
|
|
23
|
+
enabled: boolean;
|
|
24
|
+
/** Empty div rendered as the FIRST child of the table card, before the scroll container. */
|
|
25
|
+
overlayRef: React.RefObject<HTMLDivElement | null>;
|
|
26
|
+
/** Change this to force a full re-clone (columns identity / language / header font / view). */
|
|
27
|
+
cloneKey?: unknown;
|
|
28
|
+
/** CSS var consumed as the pin offset. Defaults to the FilterPanel height var. */
|
|
29
|
+
offsetVar?: string;
|
|
30
|
+
}
|
|
31
|
+
export declare function useStickyHeaderClone({ enabled, overlayRef, cloneKey, offsetVar, }: UseStickyHeaderCloneArgs): void;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
3
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
4
|
+
|
|
5
|
+
interface StatisticItemProps {
|
|
6
|
+
key: string;
|
|
7
|
+
title: string;
|
|
8
|
+
value: number | string;
|
|
9
|
+
precision?: number;
|
|
10
|
+
prefix?: string;
|
|
11
|
+
suffix?: string;
|
|
12
|
+
icon?: string;
|
|
13
|
+
iconSize?: number;
|
|
14
|
+
color?: string;
|
|
15
|
+
iconColor?: string;
|
|
16
|
+
valueColor?: string;
|
|
17
|
+
loading?: boolean;
|
|
18
|
+
valueStyle?: React.CSSProperties;
|
|
19
|
+
statisticType?: 'manual' | 'count' | 'sum' | 'avg' | 'max' | 'min' | 'column';
|
|
20
|
+
statisticField?: string;
|
|
21
|
+
statisticCondition?: string;
|
|
22
|
+
datasetId?: string;
|
|
23
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
24
|
+
useCustomDataSource?: boolean;
|
|
25
|
+
error?: string;
|
|
26
|
+
format?: 'currency-compact' | 'compact-k' | 'percent' | 'number';
|
|
27
|
+
currency?: string;
|
|
28
|
+
accent?: boolean;
|
|
29
|
+
warnBelow?: number;
|
|
30
|
+
warnText?: string;
|
|
31
|
+
/** Render an em dash instead of a fake 0 when the column value is NULL / missing (e.g. WoS pending upstream data). */
|
|
32
|
+
emptyDash?: boolean;
|
|
33
|
+
valueKind?: 'trend';
|
|
34
|
+
subText?: string;
|
|
35
|
+
trend?: {
|
|
36
|
+
enabled?: boolean;
|
|
37
|
+
trendCondition?: string;
|
|
38
|
+
suffix?: string;
|
|
39
|
+
description?: string;
|
|
40
|
+
upStyle?: 'success' | 'warning' | 'error';
|
|
41
|
+
downStyle?: 'success' | 'warning' | 'error';
|
|
42
|
+
value?: number;
|
|
43
|
+
type?: 'up' | 'down';
|
|
44
|
+
status?: 'success' | 'warning' | 'error';
|
|
45
|
+
error?: string;
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
interface StatisticGroupProps {
|
|
49
|
+
items?: StatisticItemProps[];
|
|
50
|
+
loading?: boolean;
|
|
51
|
+
className?: string;
|
|
52
|
+
useMockData?: boolean;
|
|
53
|
+
mockData?: StatisticItemProps[];
|
|
54
|
+
grid?: {
|
|
55
|
+
cols?: number;
|
|
56
|
+
gutter?: number | string | [number | string, number | string];
|
|
57
|
+
};
|
|
58
|
+
itemStyle?: {
|
|
59
|
+
padding?: string;
|
|
60
|
+
height?: string | number;
|
|
61
|
+
titleStyle?: React.CSSProperties;
|
|
62
|
+
valueStyle?: React.CSSProperties;
|
|
63
|
+
};
|
|
64
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
65
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
66
|
+
componentId?: string;
|
|
67
|
+
pageId?: string;
|
|
68
|
+
tabId?: string;
|
|
69
|
+
pageParams?: Record<string, any>;
|
|
70
|
+
onParameterChange?: (key: string, value: any) => void;
|
|
71
|
+
followPageRefresh?: boolean;
|
|
72
|
+
titleFontSize?: number;
|
|
73
|
+
valueFontSize?: number;
|
|
74
|
+
labelFontSize?: number;
|
|
75
|
+
}
|
|
76
|
+
declare const StatisticGroup: React.FC<StatisticGroupProps>;
|
|
77
|
+
export default StatisticGroup;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as StatisticGroupRenderer } from './StatisticGroup';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"statistics.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TableRenderer } from './TableRenderer';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { FilterPanelGridColumnCount, FilterPanelGridColumns } from '../../types/renderers';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Merges saved props with layout defaults: base=1, md=3 (legacy TableRenderer behavior).
|
|
5
|
+
* Optional `sm` / `lg` / `xl` are only applied when set.
|
|
6
|
+
*/
|
|
7
|
+
export declare function mergeFilterPanelGridColumns(cols?: FilterPanelGridColumns): {
|
|
8
|
+
base: FilterPanelGridColumnCount;
|
|
9
|
+
sm: FilterPanelGridColumnCount;
|
|
10
|
+
md: FilterPanelGridColumnCount;
|
|
11
|
+
lg: FilterPanelGridColumnCount;
|
|
12
|
+
xl: FilterPanelGridColumnCount;
|
|
13
|
+
};
|
|
14
|
+
/** Full Tailwind class list for the filter field grid. */
|
|
15
|
+
export declare function getFilterPanelGridClassName(cols?: FilterPanelGridColumns, narrowFlow?: boolean): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ParameterRecord } from '../../types/parameters';
|
|
3
|
+
import { Grid24LayoutConfig } from '../../types/components';
|
|
4
|
+
import { VisibleWhen } from '../../utils/visibleWhen';
|
|
5
|
+
|
|
6
|
+
interface TabItem {
|
|
7
|
+
key: string;
|
|
8
|
+
label: any;
|
|
9
|
+
visibleWhen?: VisibleWhen;
|
|
10
|
+
icon?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
closable?: boolean;
|
|
13
|
+
badge?: string | number;
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
component?: any;
|
|
16
|
+
components?: any[];
|
|
17
|
+
render?: () => React.ReactNode;
|
|
18
|
+
layout?: Grid24LayoutConfig;
|
|
19
|
+
componentConfig?: {
|
|
20
|
+
type: 'single' | 'multiple';
|
|
21
|
+
data?: any;
|
|
22
|
+
props?: Record<string, any>;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
interface TabsRendererProps {
|
|
26
|
+
items: TabItem[];
|
|
27
|
+
defaultActiveKey?: string;
|
|
28
|
+
className?: string;
|
|
29
|
+
tabPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
30
|
+
type?: 'line' | 'card' | 'editable-card' | 'pill' | 'boxed' | 'vertical-line';
|
|
31
|
+
size?: 'small' | 'default' | 'large';
|
|
32
|
+
/** Vertical gap between tab bar and tab panel content. Number = px, or CSS length */
|
|
33
|
+
tabBarToContentGap?: string | number;
|
|
34
|
+
/**
|
|
35
|
+
* When true (default), the Tabs renderer wraps its content in a white
|
|
36
|
+
* rounded card with padding so the tab strip looks like a self-contained
|
|
37
|
+
* container. When false, the outer card chrome (background, padding,
|
|
38
|
+
* rounded corners) is dropped so the tab strip visually merges with the
|
|
39
|
+
* surrounding layout — useful when the parent already provides its own
|
|
40
|
+
* container chrome (e.g. a Card, or a panel that should appear
|
|
41
|
+
* flush with the tab content below).
|
|
42
|
+
*/
|
|
43
|
+
showBorder?: boolean;
|
|
44
|
+
onChange?: (activeKey: string) => void;
|
|
45
|
+
onEdit?: (action: 'add' | 'remove', targetKey?: string) => void;
|
|
46
|
+
appConfig?: Record<string, unknown>;
|
|
47
|
+
pageParams?: ParameterRecord;
|
|
48
|
+
pageId?: string;
|
|
49
|
+
tabId?: string;
|
|
50
|
+
id?: string;
|
|
51
|
+
customStyles?: any;
|
|
52
|
+
loading?: boolean;
|
|
53
|
+
/** Section title font size (px). Default 14. */
|
|
54
|
+
titleFontSize?: number;
|
|
55
|
+
/** Tab trigger label font size (px). Default 14. */
|
|
56
|
+
labelFontSize?: number;
|
|
57
|
+
/** Tab badge font size (px). Default 13. */
|
|
58
|
+
badgeFontSize?: number;
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
nestingLevel?: number;
|
|
61
|
+
}
|
|
62
|
+
declare const TabsRenderer: React.FC<TabsRendererProps>;
|
|
63
|
+
export default TabsRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TabsRenderer } from './TabsRenderer';
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tab variant definitions for the Tabs renderer.
|
|
3
|
+
*
|
|
4
|
+
* Each variant is the source of truth for both the runtime Tabs renderer
|
|
5
|
+
* (`TabsRenderer.tsx`) and the property-editor preview cards
|
|
6
|
+
* (`TabsPropertyEditor.tsx`). Every Tailwind utility referenced here is
|
|
7
|
+
* written as a complete string literal so the JIT content scanner picks
|
|
8
|
+
* them up and ships them in the final CSS bundle.
|
|
9
|
+
*
|
|
10
|
+
* Seven variants, intentionally visually distinct so they can be told apart
|
|
11
|
+
* at a glance (card/editable-card share the rail but differ in triggers;
|
|
12
|
+
* vertical-line intentionally reuses `line` for horizontal orientation):
|
|
13
|
+
* - `line`: underline-style tabs (no pill background)
|
|
14
|
+
* - `card`: segmented-pill tabs (single, immutable tab strip)
|
|
15
|
+
* - `editable-card`: segmented-pill tabs with per-tab × close button
|
|
16
|
+
* and a trailing "+ Add" button for adding tabs
|
|
17
|
+
* - `pill`: each tab is its own floating rounded pill,
|
|
18
|
+
* no shared container
|
|
19
|
+
* - `boxed`: tabs sit on top of a bordered container; the
|
|
20
|
+
* active tab "punches through" the bottom border
|
|
21
|
+
* so the tab appears connected to the panel below
|
|
22
|
+
* - `segmented`: full-width iOS-style segmented control — grey
|
|
23
|
+
* rounded rail, equal-width segments, active
|
|
24
|
+
* segment lifts to a white card with indigo text
|
|
25
|
+
* - `vertical-line`: underline-style for top/bottom tabPosition,
|
|
26
|
+
* flips to a left vertical line for left/right
|
|
27
|
+
* tabPosition so vertical tab strips no longer
|
|
28
|
+
* look like a misplaced horizontal underline
|
|
29
|
+
*/
|
|
30
|
+
export type TabVariant = 'line' | 'card' | 'editable-card' | 'pill' | 'boxed' | 'segmented' | 'vertical-line';
|
|
31
|
+
export type TabOrientation = 'horizontal' | 'vertical';
|
|
32
|
+
export declare const DEFAULT_TAB_VARIANT: TabVariant;
|
|
33
|
+
export declare const TAB_VARIANTS: ReadonlyArray<TabVariant>;
|
|
34
|
+
export interface TabVariantClasses {
|
|
35
|
+
/** Class string applied to the TabsList container. */
|
|
36
|
+
list: string;
|
|
37
|
+
/**
|
|
38
|
+
* Class string applied to each TabsTrigger. Variant-specific active-state
|
|
39
|
+
* styling is folded in via `data-[state=active]:*` selectors so consumers
|
|
40
|
+
* don't need to switch classes when active state changes.
|
|
41
|
+
*/
|
|
42
|
+
trigger: string;
|
|
43
|
+
/** Class string for the × close button rendered on editable-card tabs. */
|
|
44
|
+
closableButton: string;
|
|
45
|
+
/** Class string for the trailing "+ Add" button on editable-card tabs. */
|
|
46
|
+
addButton: string;
|
|
47
|
+
}
|
|
48
|
+
export declare function normalizeTabVariant(type?: string | null): TabVariant;
|
|
49
|
+
export declare function resolveTabVariantClasses(type?: string | null, orientation?: TabOrientation): TabVariantClasses;
|
|
50
|
+
export declare function isEditableTabVariant(type?: string | null): boolean;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { VisibleWhen } from '../../utils/visibleWhen';
|
|
3
|
+
import { Grid24LayoutConfig } from '../../types/components';
|
|
4
|
+
|
|
5
|
+
/** Tab item shape stored on Tabs component props.items */
|
|
6
|
+
export interface TabsConfigItem {
|
|
7
|
+
key: string;
|
|
8
|
+
label: unknown;
|
|
9
|
+
visibleWhen?: VisibleWhen;
|
|
10
|
+
icon?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
closable?: boolean;
|
|
13
|
+
badge?: string | number;
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
component?: unknown;
|
|
16
|
+
components?: unknown[];
|
|
17
|
+
render?: () => ReactNode;
|
|
18
|
+
componentConfig?: {
|
|
19
|
+
type: 'single' | 'multiple';
|
|
20
|
+
data?: unknown;
|
|
21
|
+
props?: Record<string, unknown>;
|
|
22
|
+
};
|
|
23
|
+
layout?: Grid24LayoutConfig;
|
|
24
|
+
}
|
|
25
|
+
/** Pass through tab item fields needed at runtime (avoid dropping visibleWhen, icon, etc.). */
|
|
26
|
+
export declare function mapTabsConfigItemsForRenderer(items: TabsConfigItem[]): TabsConfigItem[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tabs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface ExecutionHistoryModalProps {
|
|
4
|
+
taskId: string;
|
|
5
|
+
taskName: string;
|
|
6
|
+
onClose: () => void;
|
|
7
|
+
}
|
|
8
|
+
declare const ExecutionHistoryModal: React.FC<ExecutionHistoryModalProps>;
|
|
9
|
+
export default ExecutionHistoryModal;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface ExecutionStatus {
|
|
4
|
+
id: string;
|
|
5
|
+
status: 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELED' | 'RETRY' | 'TIMEOUT';
|
|
6
|
+
outputs?: Record<string, any>;
|
|
7
|
+
[key: string]: unknown;
|
|
8
|
+
}
|
|
9
|
+
interface TaskExecutionOutputsProps {
|
|
10
|
+
executionStatus: ExecutionStatus | null;
|
|
11
|
+
taskId?: string;
|
|
12
|
+
compact?: boolean;
|
|
13
|
+
}
|
|
14
|
+
declare const TaskExecutionOutputs: React.FC<TaskExecutionOutputsProps>;
|
|
15
|
+
export default TaskExecutionOutputs;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface TaskInputParam {
|
|
4
|
+
type: string;
|
|
5
|
+
required: boolean;
|
|
6
|
+
description: string;
|
|
7
|
+
default?: unknown;
|
|
8
|
+
enum?: unknown[];
|
|
9
|
+
arrayType?: string;
|
|
10
|
+
maxItems?: number;
|
|
11
|
+
maxSize?: number;
|
|
12
|
+
accept?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface TaskInputFieldDataSourceConfig {
|
|
15
|
+
datasourceId: string;
|
|
16
|
+
valueField: string;
|
|
17
|
+
labelField: string;
|
|
18
|
+
}
|
|
19
|
+
interface TaskInputFieldProps {
|
|
20
|
+
fieldId: string;
|
|
21
|
+
paramName: string;
|
|
22
|
+
labelText?: string;
|
|
23
|
+
paramSchema: TaskInputParam;
|
|
24
|
+
value: unknown;
|
|
25
|
+
isUploading?: {
|
|
26
|
+
file: File;
|
|
27
|
+
progress: number;
|
|
28
|
+
};
|
|
29
|
+
arrayPreviews: Array<{
|
|
30
|
+
id: string;
|
|
31
|
+
name: string;
|
|
32
|
+
url: string;
|
|
33
|
+
type: string;
|
|
34
|
+
size: number;
|
|
35
|
+
}>;
|
|
36
|
+
compact?: boolean;
|
|
37
|
+
dataSourceConfig?: TaskInputFieldDataSourceConfig | null;
|
|
38
|
+
dataSourceOptions?: Array<{
|
|
39
|
+
value: string;
|
|
40
|
+
label: string;
|
|
41
|
+
}>;
|
|
42
|
+
requiredOverride?: boolean;
|
|
43
|
+
suppressSchemaHints?: boolean;
|
|
44
|
+
onInputChange: (fieldId: string, value: unknown) => void;
|
|
45
|
+
onFileUpload: (fieldId: string, file: File) => void;
|
|
46
|
+
onArrayFileChange: (fieldId: string, files: FileList | null, arrayType: string, maxItems?: number, maxSize?: number) => void;
|
|
47
|
+
onRemoveArrayFile: (fieldId: string, index: number) => void;
|
|
48
|
+
onFormatJSON: (fieldId: string, value: unknown) => void;
|
|
49
|
+
onCopyToClipboard: (fieldId: string, text: string) => void;
|
|
50
|
+
isFormatting: Record<string, boolean>;
|
|
51
|
+
copiedCode: Record<string, boolean>;
|
|
52
|
+
}
|
|
53
|
+
declare const TaskInputField: React.FC<TaskInputFieldProps>;
|
|
54
|
+
export default TaskInputField;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface TaskExecutionResult {
|
|
4
|
+
success: boolean;
|
|
5
|
+
data?: unknown;
|
|
6
|
+
message?: string;
|
|
7
|
+
executionId?: string;
|
|
8
|
+
}
|
|
9
|
+
interface TaskExecutionError {
|
|
10
|
+
message: string;
|
|
11
|
+
code?: string;
|
|
12
|
+
details?: unknown;
|
|
13
|
+
}
|
|
14
|
+
interface TaskInputRendererProps {
|
|
15
|
+
taskId?: string;
|
|
16
|
+
title?: string;
|
|
17
|
+
description?: string;
|
|
18
|
+
submitButtonText?: string;
|
|
19
|
+
showTitle?: boolean;
|
|
20
|
+
showDescription?: boolean;
|
|
21
|
+
showOptionalInputs?: boolean;
|
|
22
|
+
compact?: boolean;
|
|
23
|
+
embedded?: boolean;
|
|
24
|
+
embeddedFieldLayout?: 'card' | 'plain';
|
|
25
|
+
autoSubmit?: boolean;
|
|
26
|
+
className?: string;
|
|
27
|
+
onSuccessCode?: string;
|
|
28
|
+
onErrorCode?: string;
|
|
29
|
+
onSuccess?: (result: TaskExecutionResult) => void;
|
|
30
|
+
onError?: (error: TaskExecutionError) => void;
|
|
31
|
+
onParameterChange?: (key: string, value: any) => void;
|
|
32
|
+
componentId?: string;
|
|
33
|
+
parameterConfig?: {
|
|
34
|
+
parameterMapping?: Record<string, {
|
|
35
|
+
source?: string;
|
|
36
|
+
value?: string;
|
|
37
|
+
labelText?: string;
|
|
38
|
+
requiredInTaskInput?: boolean;
|
|
39
|
+
sortOrder?: number;
|
|
40
|
+
}>;
|
|
41
|
+
};
|
|
42
|
+
useMockData?: boolean;
|
|
43
|
+
mockFileData?: {
|
|
44
|
+
enabled: boolean;
|
|
45
|
+
files: Array<{
|
|
46
|
+
name: string;
|
|
47
|
+
size: number;
|
|
48
|
+
type: string;
|
|
49
|
+
content: string;
|
|
50
|
+
url: string;
|
|
51
|
+
lastModified: string;
|
|
52
|
+
}>;
|
|
53
|
+
};
|
|
54
|
+
interactiveMode?: 'professional' | 'normal';
|
|
55
|
+
submitButtonPlacement?: 'default' | 'dialogFooter';
|
|
56
|
+
isDialogExecuting?: boolean;
|
|
57
|
+
onDialogExecutingChange?: (executing: boolean) => void;
|
|
58
|
+
initialParams?: Record<string, unknown>;
|
|
59
|
+
mappingContext?: {
|
|
60
|
+
formFieldValues?: Record<string, unknown>;
|
|
61
|
+
pageParams?: Record<string, unknown>;
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
export interface TaskInputRendererHandle {
|
|
65
|
+
submitTask: () => Promise<void>;
|
|
66
|
+
}
|
|
67
|
+
declare const TaskInputRenderer: React.ForwardRefExoticComponent<TaskInputRendererProps & React.RefAttributes<TaskInputRendererHandle>>;
|
|
68
|
+
export default TaskInputRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TaskInputRenderer } from './TaskInputRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-input.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,41 @@
|
|
|
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 TileBand {
|
|
10
|
+
key?: string;
|
|
11
|
+
max?: number;
|
|
12
|
+
color?: string;
|
|
13
|
+
heat?: boolean;
|
|
14
|
+
label?: Bi;
|
|
15
|
+
tileClass?: string;
|
|
16
|
+
valueClass?: string;
|
|
17
|
+
barClass?: string;
|
|
18
|
+
heatColor?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface TileGridRendererProps {
|
|
21
|
+
id?: string;
|
|
22
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
23
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
24
|
+
pageParams?: Record<string, unknown>;
|
|
25
|
+
rows?: Record<string, unknown>[];
|
|
26
|
+
topField?: string;
|
|
27
|
+
valueField?: string;
|
|
28
|
+
bandField?: string;
|
|
29
|
+
bands?: TileBand[];
|
|
30
|
+
cols?: number;
|
|
31
|
+
showBars?: boolean;
|
|
32
|
+
showLegend?: boolean;
|
|
33
|
+
title?: Bi;
|
|
34
|
+
bare?: boolean;
|
|
35
|
+
emptyText?: Bi;
|
|
36
|
+
titleFontSize?: number;
|
|
37
|
+
valueFontSize?: number;
|
|
38
|
+
labelFontSize?: number;
|
|
39
|
+
}
|
|
40
|
+
declare const TileGridRenderer: React.FC<TileGridRendererProps>;
|
|
41
|
+
export default TileGridRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TileGridRenderer } from './TileGridRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tile-grid.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|