@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,13 @@
|
|
|
1
|
+
export * from './templateRegistry';
|
|
2
|
+
export * from './types';
|
|
3
|
+
export interface MockDataRegistry {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}
|
|
6
|
+
export declare const mockRegistry: MockDataRegistry;
|
|
7
|
+
export declare function getMockData(workbenchId: string): any | null;
|
|
8
|
+
export declare function isDemoWorkbench(workbenchId: string | undefined): boolean;
|
|
9
|
+
export declare function getAvailableDemos(): Array<{
|
|
10
|
+
id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
url: string;
|
|
13
|
+
}>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getAllCategories, clearTemplateCache, setDefaultTemplateLanguage, TemplateCategory } from '../shared/templates/index.ts';
|
|
2
|
+
|
|
3
|
+
export * from '../shared/templates/index.ts';
|
|
4
|
+
export declare function getAllTemplates(): import('../shared/templates/index.ts').Template[];
|
|
5
|
+
export declare function getTemplatesByCategory(category: TemplateCategory): import('../shared/templates/index.ts').Template[];
|
|
6
|
+
export declare function getTemplateById(id: string): import('../shared/templates/index.ts').Template;
|
|
7
|
+
export declare function searchTemplates(keyword: string): import('../shared/templates/index.ts').Template[];
|
|
8
|
+
export declare function createWorkbenchConfigFromTemplate(templateId: string, customName?: string): {
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
config: {
|
|
12
|
+
appConfig: any;
|
|
13
|
+
pages: Record<string, any>;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export { getAllCategories, clearTemplateCache, setDefaultTemplateLanguage };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../shared/templates/index.ts';
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
3
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
4
|
+
import { ColorRule, SwCellProps, SwCellType, SwCellFormat } from '../cells/swCells';
|
|
5
|
+
|
|
6
|
+
interface PillItem {
|
|
7
|
+
value: string;
|
|
8
|
+
label: unknown;
|
|
9
|
+
color?: string;
|
|
10
|
+
filter?: {
|
|
11
|
+
field: string;
|
|
12
|
+
eq: unknown;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export type DerivedField = {
|
|
16
|
+
as: string;
|
|
17
|
+
kind: 'shareOfTotal';
|
|
18
|
+
field: string;
|
|
19
|
+
ifMissing?: boolean;
|
|
20
|
+
} | {
|
|
21
|
+
as: string;
|
|
22
|
+
kind: 'subtract';
|
|
23
|
+
a: string;
|
|
24
|
+
b: string;
|
|
25
|
+
};
|
|
26
|
+
export interface AnalyticsColumn {
|
|
27
|
+
key: string;
|
|
28
|
+
label?: unknown;
|
|
29
|
+
align?: 'left' | 'right' | 'center';
|
|
30
|
+
sticky?: boolean;
|
|
31
|
+
sortField?: string;
|
|
32
|
+
headerColor?: string;
|
|
33
|
+
kind: 'label' | 'text' | SwCellType;
|
|
34
|
+
field?: string;
|
|
35
|
+
format?: SwCellFormat;
|
|
36
|
+
muted?: boolean;
|
|
37
|
+
/** Fixed column width — a px number or any CSS width string. Applied as width/min/max so the
|
|
38
|
+
* default `table-layout:auto` honors it (browsers treat a bare `width` as a hint and may grow it). */
|
|
39
|
+
width?: number | string;
|
|
40
|
+
cellProps?: SwCellProps;
|
|
41
|
+
rowMarker?: boolean;
|
|
42
|
+
/** Threshold -> text color for `text` cells (e.g. SMI% >= 100 -> emerald). */
|
|
43
|
+
colorRules?: ColorRule[];
|
|
44
|
+
/** Render this column only while one of these quick-filter pills is active
|
|
45
|
+
* (e.g. the live-share column exists only under the 'live' pill). Unset = always shown. */
|
|
46
|
+
showForPills?: string[];
|
|
47
|
+
}
|
|
48
|
+
export interface AnalyticsTableRendererProps {
|
|
49
|
+
id?: string;
|
|
50
|
+
dimLabel?: unknown;
|
|
51
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
52
|
+
summaryDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
53
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
54
|
+
pageParams?: Record<string, unknown>;
|
|
55
|
+
/**
|
|
56
|
+
* Row search + quick-filter pills. When `pillParam` is set, selecting a pill re-queries the
|
|
57
|
+
* datasource with `{ [pillParam]: activePill.value }` (server-side filtering) instead of filtering
|
|
58
|
+
* the already-loaded page rows; the pill's `filter` is then used only for row markers.
|
|
59
|
+
*/
|
|
60
|
+
toolbar?: {
|
|
61
|
+
search?: boolean;
|
|
62
|
+
pills?: PillItem[];
|
|
63
|
+
pillParam?: string;
|
|
64
|
+
};
|
|
65
|
+
rowMarkers?: boolean;
|
|
66
|
+
maxHeight?: number;
|
|
67
|
+
bare?: boolean;
|
|
68
|
+
mockData?: Record<string, unknown>[];
|
|
69
|
+
useMockData?: boolean;
|
|
70
|
+
columns?: AnalyticsColumn[];
|
|
71
|
+
derivedFields?: DerivedField[];
|
|
72
|
+
summaryLabel?: unknown;
|
|
73
|
+
/** Show sub-values (LY line / diff-vs-baseline) in the summary (total) row. The summary datasource
|
|
74
|
+
* usually lacks the *_ly fields, leaving a dangling "LY —" under the total — turn this off to
|
|
75
|
+
* render main values only in the summary row. Body rows are unaffected. Default true. */
|
|
76
|
+
summaryShowSub?: boolean;
|
|
77
|
+
showIndex?: boolean;
|
|
78
|
+
/** Hard width (px) of the leading `#` index column. Omit to auto-size by the largest row number's
|
|
79
|
+
* digit count (snug for a handful of rows, wider once indices reach 3+ digits). */
|
|
80
|
+
indexWidth?: number;
|
|
81
|
+
/** Horizontal padding (px) of the `#` index column cells (header/body/summary). Default 8 (px-2).
|
|
82
|
+
* Lower it to shrink the index column and pull the first data column left, reclaiming space. */
|
|
83
|
+
indexPadX?: number;
|
|
84
|
+
/** Row field displayed in the `#` index column instead of the positional row number (e.g. a
|
|
85
|
+
* datasource-computed `national_rank` — task #15 SA ranking: rank moves into the # slot and the
|
|
86
|
+
* separate sequence number is dropped). NULL/empty renders '—'; the column width auto-sizes to the
|
|
87
|
+
* field's largest digit count (a filtered view can show ranks higher than the row count). */
|
|
88
|
+
indexField?: string;
|
|
89
|
+
/** Label of the `#` index column header (localized via bi()). Default '#'. Task #15 SA ranking
|
|
90
|
+
* renames it to "Rank"; combined with indexField the header also becomes a sort toggle (asc/desc
|
|
91
|
+
* by the indexField value, same client-side sort as data columns). */
|
|
92
|
+
indexLabel?: unknown;
|
|
93
|
+
/** Override the width (px) of the first frozen label/dimension column. Lets tables on the shared
|
|
94
|
+
* default columns set just this width without redefining the whole column set. */
|
|
95
|
+
labelWidth?: number;
|
|
96
|
+
headerClassName?: string;
|
|
97
|
+
indexHeaderClass?: string;
|
|
98
|
+
headerColors?: Record<string, string>;
|
|
99
|
+
zebra?: boolean;
|
|
100
|
+
zebraClassName?: string;
|
|
101
|
+
/** Highlight the row whose `field` equals a static `value` or a live bus param `valueParam`. */
|
|
102
|
+
highlightRow?: {
|
|
103
|
+
field: string;
|
|
104
|
+
value?: string;
|
|
105
|
+
valueParam?: string;
|
|
106
|
+
badge?: unknown;
|
|
107
|
+
};
|
|
108
|
+
/** Per-role content font sizes (px). Raise these for low-vision users; empty = readable defaults. */
|
|
109
|
+
headerFontSize?: number;
|
|
110
|
+
cellFontSize?: number;
|
|
111
|
+
badgeFontSize?: number;
|
|
112
|
+
/** Mobile only: freeze the first column (sticky-left) AND pin the header below the FilterPanel
|
|
113
|
+
* on page scroll. Off by default — turn on only for wide/long tables (e.g. sales-detail by store). */
|
|
114
|
+
freezeFirstColumn?: boolean;
|
|
115
|
+
/** Row-fetch page size. These tables load the FULL result set and do search/sort/pagination
|
|
116
|
+
* client-side, so the runtime data endpoint's default Table page size (20) would silently
|
|
117
|
+
* truncate wide dims (e.g. 116 stores / 29 cities). Defaults to 1000 to load every row. */
|
|
118
|
+
fetchLimit?: number;
|
|
119
|
+
/** Wrap the first (label/dimension) column's text onto multiple lines instead of truncating with an
|
|
120
|
+
* ellipsis. Row height grows to fit; other columns stay aligned via the shared table row. Off by
|
|
121
|
+
* default (keeps the ellipsis behavior). Turn on for long store/city names (dashboard acceptance 0709 #8). */
|
|
122
|
+
wrapLabel?: boolean;
|
|
123
|
+
}
|
|
124
|
+
declare const AnalyticsTableRenderer: React.FC<AnalyticsTableRendererProps>;
|
|
125
|
+
export default AnalyticsTableRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AnalyticsTableRenderer } from './AnalyticsTableRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"analytics-table.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface LoadingRendererProps {
|
|
4
|
+
text?: string;
|
|
5
|
+
size?: 'small' | 'default' | 'large';
|
|
6
|
+
className?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
height?: number;
|
|
9
|
+
mode?: 'standalone' | 'overlay' | 'inline';
|
|
10
|
+
showCard?: boolean;
|
|
11
|
+
children?: React.ReactNode;
|
|
12
|
+
}
|
|
13
|
+
declare const LoadingRenderer: React.FC<LoadingRendererProps>;
|
|
14
|
+
export default LoadingRenderer;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
|
|
4
|
+
interface CardRendererProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
footer?: React.ReactNode;
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
className?: string;
|
|
10
|
+
bordered?: boolean;
|
|
11
|
+
hoverable?: boolean;
|
|
12
|
+
shadow?: boolean;
|
|
13
|
+
/** Vertical gap between card title (header) and content. Number = px, or CSS length e.g. 8px, 0.5rem */
|
|
14
|
+
titleToContentGap?: string | number;
|
|
15
|
+
id?: string;
|
|
16
|
+
customStyles?: CustomStylesConfig;
|
|
17
|
+
componentConfig?: any;
|
|
18
|
+
appConfig?: Record<string, unknown>;
|
|
19
|
+
pageParams?: any;
|
|
20
|
+
pageId?: string;
|
|
21
|
+
nestingLevel?: number;
|
|
22
|
+
}
|
|
23
|
+
declare const CardRenderer: React.FC<CardRendererProps>;
|
|
24
|
+
export default CardRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CardRenderer } from './CardRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export type SwCellFormat = 'currency-compact' | 'currency-k' | 'compact-k' | 'percent1' | 'number2' | 'number' | 'plain';
|
|
4
|
+
export type SwCellType = 'Stacked' | 'Delta' | 'PctBar' | 'RankBadge' | 'Currency' | 'Number' | 'Badge';
|
|
5
|
+
/** Threshold rule → a class/token; first match wins. `eq` matches by string equality. */
|
|
6
|
+
export interface ColorRule {
|
|
7
|
+
gte?: number;
|
|
8
|
+
gt?: number;
|
|
9
|
+
lte?: number;
|
|
10
|
+
lt?: number;
|
|
11
|
+
eq?: number | string;
|
|
12
|
+
/** Result token: a tailwind text class for cells, or a tone key for Badge. */
|
|
13
|
+
color: string;
|
|
14
|
+
}
|
|
15
|
+
/** First matching rule's color, else undefined. */
|
|
16
|
+
export declare function matchColorRule(value: unknown, rules?: ColorRule[]): string | undefined;
|
|
17
|
+
/** Badge tone tokens → bg+text classes. */
|
|
18
|
+
export declare const BADGE_TONE: Record<string, string>;
|
|
19
|
+
export interface SwCellProps {
|
|
20
|
+
format?: SwCellFormat;
|
|
21
|
+
mainField?: string;
|
|
22
|
+
subField?: string;
|
|
23
|
+
subFormat?: SwCellFormat;
|
|
24
|
+
subPrefix?: string;
|
|
25
|
+
subSuffix?: string;
|
|
26
|
+
subKind?: 'value' | 'diffPct' | 'diffPP' | 'signed';
|
|
27
|
+
baselineField?: string;
|
|
28
|
+
emptyDash?: boolean;
|
|
29
|
+
currency?: string;
|
|
30
|
+
topHighlight?: number;
|
|
31
|
+
highlightFrom?: string;
|
|
32
|
+
highlightTo?: string;
|
|
33
|
+
defaultFill?: string;
|
|
34
|
+
rankStyle?: 'square' | 'circle';
|
|
35
|
+
rankSize?: 'xs' | 'sm' | 'md';
|
|
36
|
+
medalTop?: number;
|
|
37
|
+
currencyField?: string;
|
|
38
|
+
compact?: boolean;
|
|
39
|
+
decimals?: number;
|
|
40
|
+
/** Text prefix (e.g. '#'). */
|
|
41
|
+
prefix?: string;
|
|
42
|
+
/** Static badge tone key (see BADGE_TONE); overridden by colorRules match. */
|
|
43
|
+
tone?: string;
|
|
44
|
+
/** Threshold rules: text color for Number, tone for Badge. */
|
|
45
|
+
colorRules?: ColorRule[];
|
|
46
|
+
}
|
|
47
|
+
export declare function formatSwValue(v: unknown, format?: SwCellFormat, currency?: string): string;
|
|
48
|
+
export declare function renderSwCell(type: SwCellType, props: SwCellProps | undefined, row: Record<string, unknown>, columnField: string): React.ReactNode;
|
|
49
|
+
export declare const SW_CELL_TYPES: readonly SwCellType[];
|
|
@@ -0,0 +1,167 @@
|
|
|
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
|
+
interface ChartRendererProps {
|
|
7
|
+
chartType: 'line' | 'column' | 'bar' | 'area' | 'pie' | 'radar' | 'heatmap' | 'composedBar' | 'overlapBar';
|
|
8
|
+
series?: Array<{
|
|
9
|
+
type: 'bar' | 'line';
|
|
10
|
+
dataKey: string;
|
|
11
|
+
yAxisId?: 'left' | 'right';
|
|
12
|
+
color?: string;
|
|
13
|
+
name?: string;
|
|
14
|
+
}>;
|
|
15
|
+
referenceLines?: Array<{
|
|
16
|
+
value: number;
|
|
17
|
+
stroke?: string;
|
|
18
|
+
strokeDasharray?: string;
|
|
19
|
+
label?: string;
|
|
20
|
+
}>;
|
|
21
|
+
composedBarLabel?: boolean;
|
|
22
|
+
overlapValueKey?: string;
|
|
23
|
+
overlapValueName?: string | {
|
|
24
|
+
zh?: string;
|
|
25
|
+
en?: string;
|
|
26
|
+
};
|
|
27
|
+
overlapTargets?: Array<{
|
|
28
|
+
dataKey: string;
|
|
29
|
+
color?: string;
|
|
30
|
+
name?: string | {
|
|
31
|
+
zh?: string;
|
|
32
|
+
en?: string;
|
|
33
|
+
};
|
|
34
|
+
hideWithLine?: boolean;
|
|
35
|
+
}>;
|
|
36
|
+
overlapTargetAchievement?: boolean;
|
|
37
|
+
overlapCompKey?: string;
|
|
38
|
+
overlapHideTargets?: boolean;
|
|
39
|
+
overlapValueLabel?: boolean;
|
|
40
|
+
overlapValueColor?: string;
|
|
41
|
+
overlapValueLabelColor?: string;
|
|
42
|
+
overlapValueLabelFontSize?: number;
|
|
43
|
+
overlapSummaryFontSize?: number;
|
|
44
|
+
overlapSummary?: Array<{
|
|
45
|
+
label?: string | {
|
|
46
|
+
zh?: string;
|
|
47
|
+
en?: string;
|
|
48
|
+
};
|
|
49
|
+
field?: string;
|
|
50
|
+
ratioNum?: string;
|
|
51
|
+
ratioDen?: string;
|
|
52
|
+
textField?: string;
|
|
53
|
+
subTextField?: string;
|
|
54
|
+
subTextFields?: string[];
|
|
55
|
+
secondaryTextField?: string;
|
|
56
|
+
flex?: number;
|
|
57
|
+
subTextSignedColor?: boolean;
|
|
58
|
+
color?: string;
|
|
59
|
+
fontSize?: number;
|
|
60
|
+
}>;
|
|
61
|
+
overlapShowSummary?: boolean;
|
|
62
|
+
seriesSameColor?: boolean;
|
|
63
|
+
seriesLegendVisible?: boolean;
|
|
64
|
+
overlapSideMargin?: number;
|
|
65
|
+
overlapBarWidth?: number;
|
|
66
|
+
overlapXTickNoWrap?: boolean;
|
|
67
|
+
overlapLineKey?: string;
|
|
68
|
+
overlapLineName?: string | {
|
|
69
|
+
zh?: string;
|
|
70
|
+
en?: string;
|
|
71
|
+
};
|
|
72
|
+
overlapLineColor?: string;
|
|
73
|
+
drillDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
74
|
+
drillParamKey?: string;
|
|
75
|
+
drillKeyField?: string;
|
|
76
|
+
drillBreadcrumbLabel?: string | {
|
|
77
|
+
zh?: string;
|
|
78
|
+
en?: string;
|
|
79
|
+
};
|
|
80
|
+
title?: string;
|
|
81
|
+
data?: any[];
|
|
82
|
+
xField: string;
|
|
83
|
+
yField: string | string[];
|
|
84
|
+
seriesField?: string;
|
|
85
|
+
height?: number;
|
|
86
|
+
chartHeight?: number;
|
|
87
|
+
loading?: boolean;
|
|
88
|
+
className?: string;
|
|
89
|
+
meta?: {
|
|
90
|
+
[key: string]: {
|
|
91
|
+
alias?: string;
|
|
92
|
+
formatter?: (value: any) => string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
label?: boolean | {
|
|
96
|
+
type?: 'inner' | 'outer' | 'spider';
|
|
97
|
+
labelHeight?: number;
|
|
98
|
+
formatter?: string;
|
|
99
|
+
style?: React.CSSProperties;
|
|
100
|
+
};
|
|
101
|
+
smooth?: boolean;
|
|
102
|
+
isGroup?: boolean;
|
|
103
|
+
isStack?: boolean;
|
|
104
|
+
colorField?: string;
|
|
105
|
+
angleField?: string;
|
|
106
|
+
radius?: number;
|
|
107
|
+
innerRadius?: number;
|
|
108
|
+
color?: string | string[];
|
|
109
|
+
colors?: string[];
|
|
110
|
+
colorScheme?: string;
|
|
111
|
+
legend?: boolean | {
|
|
112
|
+
position?: 'top' | 'right' | 'bottom' | 'left';
|
|
113
|
+
};
|
|
114
|
+
tooltip?: {
|
|
115
|
+
shared?: boolean;
|
|
116
|
+
showCrosshairs?: boolean;
|
|
117
|
+
formatter?: (value: any, name: string) => [string, string];
|
|
118
|
+
};
|
|
119
|
+
showArea?: boolean;
|
|
120
|
+
areaStyle?: any;
|
|
121
|
+
showPoint?: boolean;
|
|
122
|
+
point?: {
|
|
123
|
+
size?: number;
|
|
124
|
+
shape?: 'circle' | 'diamond' | 'square' | 'triangle';
|
|
125
|
+
};
|
|
126
|
+
columnWidthRatio?: number;
|
|
127
|
+
barSizePx?: number;
|
|
128
|
+
scrollable?: boolean;
|
|
129
|
+
scrollMinWidthPerGroup?: number;
|
|
130
|
+
grid?: boolean;
|
|
131
|
+
showValueAxisGrid?: boolean;
|
|
132
|
+
barLengthAdjustment?: boolean;
|
|
133
|
+
showBarNumber?: boolean;
|
|
134
|
+
barNumberFontSize?: number;
|
|
135
|
+
barCompField?: string;
|
|
136
|
+
showMode?: 'value' | 'percentage';
|
|
137
|
+
showLegend?: boolean;
|
|
138
|
+
showTooltip?: boolean;
|
|
139
|
+
showDataView?: boolean;
|
|
140
|
+
bordered?: boolean;
|
|
141
|
+
additionalStats?: Array<{
|
|
142
|
+
field: string;
|
|
143
|
+
label?: string;
|
|
144
|
+
unit?: string;
|
|
145
|
+
newlineAtEnd?: boolean;
|
|
146
|
+
ratio?: {
|
|
147
|
+
denominator: string;
|
|
148
|
+
unit?: '%' | '';
|
|
149
|
+
prefix?: string;
|
|
150
|
+
};
|
|
151
|
+
}>;
|
|
152
|
+
additionalStatsLabelFontSize?: number;
|
|
153
|
+
titleFontSize?: number;
|
|
154
|
+
xAxisFontSize?: number;
|
|
155
|
+
yAxisFontSize?: number;
|
|
156
|
+
useMockData?: boolean;
|
|
157
|
+
mockData?: any[];
|
|
158
|
+
id?: string;
|
|
159
|
+
customStyles?: CustomStylesConfig;
|
|
160
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
161
|
+
pageParams?: Record<string, any>;
|
|
162
|
+
componentParameterConfig?: ComponentParameterConfig | null;
|
|
163
|
+
componentId?: string;
|
|
164
|
+
followPageRefresh?: boolean;
|
|
165
|
+
}
|
|
166
|
+
declare const ChartRenderer: React.FC<ChartRendererProps>;
|
|
167
|
+
export default ChartRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ChartRenderer } from './ChartRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chart.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
3
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
4
|
+
|
|
5
|
+
interface CollapseItem {
|
|
6
|
+
title: unknown;
|
|
7
|
+
content?: unknown;
|
|
8
|
+
contentDataSource?: {
|
|
9
|
+
field: string;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export interface CollapsePanelRendererProps {
|
|
13
|
+
title?: unknown;
|
|
14
|
+
items?: CollapseItem[];
|
|
15
|
+
defaultExpanded?: boolean;
|
|
16
|
+
id?: string;
|
|
17
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig | null;
|
|
18
|
+
componentParameterConfig?: ComponentParameterConfig;
|
|
19
|
+
pageParams?: Record<string, unknown>;
|
|
20
|
+
useMockData?: boolean;
|
|
21
|
+
mockData?: Record<string, unknown>[] | Record<string, unknown>;
|
|
22
|
+
/** Panel header title font size (px). Default 14. */
|
|
23
|
+
titleFontSize?: number;
|
|
24
|
+
/** Item label + content/description font size (px). Default 13. */
|
|
25
|
+
labelFontSize?: number;
|
|
26
|
+
}
|
|
27
|
+
declare const CollapsePanelRenderer: React.FC<CollapsePanelRendererProps>;
|
|
28
|
+
export default CollapsePanelRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CollapsePanelRenderer } from './CollapsePanelRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"collapse-panel.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
|
|
4
|
+
interface ContainerRendererProps {
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
title?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
titleLevel?: 1 | 2 | 3 | 4 | 5;
|
|
9
|
+
divider?: boolean;
|
|
10
|
+
className?: string;
|
|
11
|
+
style?: React.CSSProperties;
|
|
12
|
+
direction?: 'horizontal' | 'vertical';
|
|
13
|
+
gutter?: number | [number, number];
|
|
14
|
+
justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between';
|
|
15
|
+
align?: 'top' | 'middle' | 'bottom';
|
|
16
|
+
wrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
17
|
+
layout?: 'block' | 'flex' | 'grid';
|
|
18
|
+
cols?: number[];
|
|
19
|
+
padding?: number | string;
|
|
20
|
+
margin?: number | string;
|
|
21
|
+
background?: string;
|
|
22
|
+
border?: boolean;
|
|
23
|
+
borderRadius?: number | string;
|
|
24
|
+
shadow?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
25
|
+
minHeight?: number | string;
|
|
26
|
+
maxHeight?: number | string;
|
|
27
|
+
scrollable?: boolean;
|
|
28
|
+
responsive?: {
|
|
29
|
+
mobile?: number;
|
|
30
|
+
tablet?: number;
|
|
31
|
+
desktop?: number;
|
|
32
|
+
};
|
|
33
|
+
id?: string;
|
|
34
|
+
customStyles?: CustomStylesConfig;
|
|
35
|
+
loading?: boolean;
|
|
36
|
+
componentConfig?: any;
|
|
37
|
+
appConfig?: Record<string, unknown>;
|
|
38
|
+
pageParams?: any;
|
|
39
|
+
pageId?: string;
|
|
40
|
+
/** Nesting depth for 24-column grid (page root children use 0). */
|
|
41
|
+
nestingLevel?: number;
|
|
42
|
+
}
|
|
43
|
+
export declare const ContainerRenderer: React.FC<ContainerRendererProps>;
|
|
44
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ContainerRenderer } from './ContainerRenderers';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"container.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
|
|
4
|
+
interface CustomContentRendererProps {
|
|
5
|
+
html?: string;
|
|
6
|
+
emptyText?: string;
|
|
7
|
+
ariaLabel?: string;
|
|
8
|
+
className?: string;
|
|
9
|
+
id?: string;
|
|
10
|
+
customStyles?: CustomStylesConfig;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Declarative escape hatch for content that is not covered by a built-in
|
|
14
|
+
* component. It deliberately supports HTML + scoped CSS only: scripts, inline
|
|
15
|
+
* event handlers, forms, embedded documents and inline styles are stripped.
|
|
16
|
+
* Interactivity remains the responsibility of audited platform components.
|
|
17
|
+
*/
|
|
18
|
+
export declare const sanitizeCustomContentHtml: (html: string) => string;
|
|
19
|
+
declare const CustomContentRenderer: React.FC<CustomContentRendererProps>;
|
|
20
|
+
export default CustomContentRenderer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CustomContentRenderer, sanitizeCustomContentHtml } from './CustomContentRenderer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"custom-content.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
2
|
+
import { ComponentParameterConfig } from '../../types/parameters';
|
|
3
|
+
|
|
4
|
+
export declare function useBoundRows(config: DatabaseDataSourceConfig | null | undefined, cpc: ComponentParameterConfig | undefined, pageParams: Record<string, unknown>, id: string, label: string, extraParams?: Record<string, unknown>): {
|
|
5
|
+
rows: Record<string, unknown>[];
|
|
6
|
+
loading: boolean;
|
|
7
|
+
total: number;
|
|
8
|
+
totalPages: number;
|
|
9
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CustomStylesConfig } from '../../types/components';
|
|
3
|
+
import { DatabaseDataSourceConfig } from '../../types/databaseDataSource';
|
|
4
|
+
|
|
5
|
+
interface DataGridCardProps {
|
|
6
|
+
title?: string;
|
|
7
|
+
columns: Array<{
|
|
8
|
+
key?: string;
|
|
9
|
+
dataIndex: string;
|
|
10
|
+
title: string;
|
|
11
|
+
render?: {
|
|
12
|
+
type: string;
|
|
13
|
+
props?: {
|
|
14
|
+
color?: Record<string, string>;
|
|
15
|
+
text?: Record<string, string>;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
primary?: boolean;
|
|
19
|
+
secondary?: boolean;
|
|
20
|
+
}>;
|
|
21
|
+
dataSource: any[];
|
|
22
|
+
loading?: boolean;
|
|
23
|
+
rowKey?: string;
|
|
24
|
+
className?: string;
|
|
25
|
+
showSearch?: boolean;
|
|
26
|
+
searchPlaceholder?: string;
|
|
27
|
+
showRefresh?: boolean;
|
|
28
|
+
showHeader?: boolean;
|
|
29
|
+
onItemClick?: (record: any) => void;
|
|
30
|
+
pagination?: {
|
|
31
|
+
pageSize?: number;
|
|
32
|
+
current?: number;
|
|
33
|
+
total?: number;
|
|
34
|
+
showSizeChanger?: boolean;
|
|
35
|
+
showTotal?: boolean;
|
|
36
|
+
};
|
|
37
|
+
footerContent?: React.ReactNode;
|
|
38
|
+
useMockData?: boolean;
|
|
39
|
+
mockData?: any[];
|
|
40
|
+
/** When set, loads rows via POST /datasources/:id/data (same contract as TableRenderer). */
|
|
41
|
+
databaseDataSourceConfig?: DatabaseDataSourceConfig;
|
|
42
|
+
id?: string;
|
|
43
|
+
customStyles?: CustomStylesConfig;
|
|
44
|
+
}
|
|
45
|
+
declare const DataGridCard: React.FC<DataGridCardProps>;
|
|
46
|
+
export default DataGridCard;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as DataGridCardRenderer } from './DataGridCard';
|