windmill-components 1.309.7 → 1.339.2
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/package/assets/app.css +22 -1
- package/package/autosize.js +1 -1
- package/package/common.d.ts +8 -0
- package/package/common.js +5 -1
- package/package/components/AllFlowLogs.svelte +30 -0
- package/package/components/AllFlowLogs.svelte.d.ts +18 -0
- package/package/components/ApiConnectForm.svelte +10 -4
- package/package/components/AppConnectDrawer.svelte +74 -0
- package/package/components/AppConnectDrawer.svelte.d.ts +20 -0
- package/package/components/AppConnectInner.svelte +513 -0
- package/package/components/AppConnectInner.svelte.d.ts +28 -0
- package/package/components/ArgInfo.svelte +19 -3
- package/package/components/ArgInput.svelte +73 -16
- package/package/components/ArgInput.svelte.d.ts +4 -0
- package/package/components/ConcurrentJobsChart.svelte +212 -0
- package/package/components/ConcurrentJobsChart.svelte.d.ts +23 -0
- package/package/components/CustomOauth.svelte +2 -2
- package/package/components/DateInput.svelte +47 -0
- package/package/components/DateInput.svelte.d.ts +24 -0
- package/package/components/DateTimeInput.svelte +25 -3
- package/package/components/DefaultScripts.svelte +5 -8
- package/package/components/DefaultTags.svelte +3 -2
- package/package/components/DefaultTags.svelte.d.ts +3 -1
- package/package/components/DefaultTagsInner.svelte +1 -10
- package/package/components/DefaultTagsInner.svelte.d.ts +3 -1
- package/package/components/Dev.svelte +70 -9
- package/package/components/DiffEditor.svelte +3 -0
- package/package/components/DisplayResult.svelte +186 -123
- package/package/components/DisplayResult.svelte.d.ts +1 -0
- package/package/components/DropdownV2.svelte.d.ts +2 -2
- package/package/components/EditableSchemaForm.svelte +3 -0
- package/package/components/Editor.svelte +110 -93
- package/package/components/Editor.svelte.d.ts +4 -2
- package/package/components/EditorBar.svelte +99 -8
- package/package/components/EditorBar.svelte.d.ts +0 -1
- package/package/components/ErrorOrRecoveryHandler.svelte +0 -1
- package/package/components/FlowGraphViewer.svelte +1 -0
- package/package/components/FlowGraphViewerStep.svelte +19 -1
- package/package/components/FlowJobResult.svelte +13 -0
- package/package/components/FlowJobResult.svelte.d.ts +3 -0
- package/package/components/FlowMetadata.svelte +40 -35
- package/package/components/FlowMetadata.svelte.d.ts +3 -1
- package/package/components/FlowPreviewContent.svelte +13 -6
- package/package/components/FlowStatusViewerInner.svelte +46 -2
- package/package/components/HighlightCode.svelte +3 -0
- package/package/components/InputTransformForm.svelte +3 -0
- package/package/components/InstanceSettings.svelte +163 -16
- package/package/components/InstanceSettings.svelte.d.ts +2 -0
- package/package/components/JobLogs.svelte +12 -0
- package/package/components/JobLogs.svelte.d.ts +16 -0
- package/package/components/JobStatus.svelte +1 -1
- package/package/components/Label.svelte +1 -1
- package/package/components/Label.svelte.d.ts +1 -0
- package/package/components/LightweightArgInput.svelte +294 -268
- package/package/components/LightweightArgInput.svelte.d.ts +3 -0
- package/package/components/LightweightResourcePicker.svelte +74 -26
- package/package/components/LightweightSchemaForm.svelte +25 -24
- package/package/components/LogViewer.svelte +52 -15
- package/package/components/LogViewer.svelte.d.ts +1 -0
- package/package/components/Login.svelte +288 -0
- package/package/components/Login.svelte.d.ts +19 -0
- package/package/components/ModulePreviewForm.svelte +3 -0
- package/package/components/NoMainFuncBadge.svelte +8 -0
- package/package/components/NoMainFuncBadge.svelte.d.ts +14 -0
- package/package/components/OauthExtraParams.svelte +1 -1
- package/package/components/OauthScopes.svelte +1 -1
- package/package/components/ObjectStoreConfigSettings.svelte +12 -1
- package/package/components/ObjectStoreConfigSettings.svelte.d.ts +1 -0
- package/package/components/ParqetTableRenderer.svelte +12 -16
- package/package/components/Password.svelte +1 -0
- package/package/components/Password.svelte.d.ts +2 -0
- package/package/components/PasswordArgInput.svelte +49 -0
- package/package/components/PasswordArgInput.svelte.d.ts +17 -0
- package/package/components/PropertyRow.svelte +10 -2
- package/package/components/QueueMetricsDrawer.svelte +225 -0
- package/package/components/QueueMetricsDrawer.svelte.d.ts +18 -0
- package/package/components/ResourceEditor.svelte +1 -0
- package/package/components/ResourcePicker.svelte +3 -7
- package/package/components/ResultJobLoader.svelte +2 -2
- package/package/components/ResultJobLoader.svelte.d.ts +9 -9
- package/package/components/S3FilePicker.svelte +1 -1
- package/package/components/SavedInputs.svelte +49 -13
- package/package/components/ScheduleEditorInner.svelte +255 -228
- package/package/components/SchemaEditor.svelte +5 -3
- package/package/components/SchemaEditor.svelte.d.ts +2 -0
- package/package/components/SchemaForm.svelte +5 -0
- package/package/components/SchemaForm.svelte.d.ts +1 -0
- package/package/components/SchemaModal.svelte +101 -8
- package/package/components/SchemaModal.svelte.d.ts +2 -0
- package/package/components/ScriptBuilder.svelte +10 -6
- package/package/components/ScriptEditor.svelte +1 -2
- package/package/components/ScriptEditor.svelte.d.ts +1 -1
- package/package/components/SimpleEditor.svelte +4 -1
- package/package/components/StringTypeNarrowing.svelte +43 -24
- package/package/components/StringTypeNarrowing.svelte.d.ts +1 -0
- package/package/components/TemplateEditor.svelte +1 -0
- package/package/components/TestJobLoader.svelte +14 -5
- package/package/components/TestJobLoader.svelte.d.ts +1 -1
- package/package/components/Toggle.svelte +1 -1
- package/package/components/Tooltip.svelte +8 -2
- package/package/components/Tooltip.svelte.d.ts +1 -0
- package/package/components/WorkspaceGroup.svelte +74 -9
- package/package/components/WorkspaceGroup.svelte.d.ts +1 -0
- package/package/components/app_connect.d.ts +7 -0
- package/package/components/app_connect.js +78 -0
- package/package/components/apps/components/buttons/AppButton.svelte +0 -1
- package/package/components/apps/components/display/AppAlert.svelte +1 -1
- package/package/components/apps/components/display/AppCustomComponent.svelte +1 -1
- package/package/components/apps/components/display/AppDisplayComponent.svelte +2 -2
- package/package/components/apps/components/display/AppDownload.svelte +1 -1
- package/package/components/apps/components/display/AppIcon.svelte +1 -1
- package/package/components/apps/components/display/AppJobIdFlowStatus.svelte +2 -2
- package/package/components/apps/components/display/AppJobIdLogComponent.svelte +3 -3
- package/package/components/apps/components/display/AppMap.svelte +3 -2
- package/package/components/apps/components/display/AppMenu.svelte +1 -1
- package/package/components/apps/components/display/AppPdf.svelte +3 -11
- package/package/components/apps/components/display/AppText.svelte +7 -2
- package/package/components/apps/components/display/charts/AppAgCharts.svelte +6 -3
- package/package/components/apps/components/display/dbtable/AppDbExplorer.svelte +32 -30
- package/package/components/apps/components/display/dbtable/InsertRow.svelte +3 -6
- package/package/components/apps/components/display/dbtable/queries/delete.js +1 -1
- package/package/components/apps/components/display/dbtable/queries/insert.js +1 -12
- package/package/components/apps/components/display/dbtable/queries/select.js +1 -1
- package/package/components/apps/components/display/dbtable/queries/update.js +2 -2
- package/package/components/apps/components/display/dbtable/utils.d.ts +0 -1
- package/package/components/apps/components/display/dbtable/utils.js +0 -83
- package/package/components/apps/components/display/table/AppAggridExplorerTable.svelte +75 -44
- package/package/components/apps/components/display/table/AppAggridExplorerTable.svelte.d.ts +5 -1
- package/package/components/apps/components/display/table/AppAggridInfiniteTable.svelte +172 -0
- package/package/components/apps/components/display/table/AppAggridInfiniteTable.svelte.d.ts +27 -0
- package/package/components/apps/components/display/table/AppAggridInfiniteTableEe.svelte +38 -0
- package/package/components/apps/components/display/table/AppAggridInfiniteTableEe.svelte.d.ts +28 -0
- package/package/components/apps/components/display/table/AppAggridTable.svelte +189 -56
- package/package/components/apps/components/display/table/AppAggridTable.svelte.d.ts +1 -1
- package/package/components/apps/components/display/table/AppAggridTableActions.svelte +11 -2
- package/package/components/apps/components/display/table/AppAggridTableActions.svelte.d.ts +1 -0
- package/package/components/apps/components/display/table/AppCell.svelte +1 -3
- package/package/components/apps/components/display/table/AppTable.svelte +320 -281
- package/package/components/apps/components/display/table/AppTableFooter.svelte +42 -23
- package/package/components/apps/components/display/table/AppTableFooter.svelte.d.ts +2 -2
- package/package/components/apps/components/display/table/SyncColumnDefs.svelte +119 -0
- package/package/components/apps/components/display/table/SyncColumnDefs.svelte.d.ts +21 -0
- package/package/components/apps/components/display/table/theme/windmill-theme.css +656 -0
- package/package/components/apps/components/display/table/utils.js +22 -0
- package/package/components/apps/components/helpers/DebouncedInput.svelte +3 -2
- package/package/components/apps/components/helpers/NonRunnableComponent.svelte +35 -0
- package/package/components/apps/components/helpers/RefreshButton.svelte +30 -12
- package/package/components/apps/components/helpers/RefreshButton.svelte.d.ts +1 -3
- package/package/components/apps/components/helpers/RefreshIndicator.svelte +19 -0
- package/package/components/apps/components/helpers/RefreshIndicator.svelte.d.ts +16 -0
- package/package/components/apps/components/helpers/ResolveConfig.svelte +1 -1
- package/package/components/apps/components/helpers/RunnableComponent.svelte +86 -35
- package/package/components/apps/components/helpers/RunnableComponent.svelte.d.ts +8 -5
- package/package/components/apps/components/helpers/RunnableWrapper.svelte +7 -1
- package/package/components/apps/components/helpers/RunnableWrapper.svelte.d.ts +5 -0
- package/package/components/apps/components/inputs/AppDateInput.svelte +5 -1
- package/package/components/apps/components/inputs/AppFileInput.svelte +11 -2
- package/package/components/apps/components/inputs/AppMultiSelect.svelte +56 -50
- package/package/components/apps/components/inputs/AppMultiSelect.svelte.d.ts +1 -0
- package/package/components/apps/components/inputs/AppMultiSelectV2.svelte +178 -0
- package/package/components/apps/components/inputs/AppMultiSelectV2.svelte.d.ts +24 -0
- package/package/components/apps/components/inputs/AppNumberInput.svelte +1 -1
- package/package/components/apps/components/inputs/AppQuillEditor.svelte +26 -0
- package/package/components/apps/components/inputs/AppRangeInput.svelte +38 -37
- package/package/components/apps/components/inputs/AppSelect.svelte +21 -10
- package/package/components/apps/components/inputs/AppSliderInputs.svelte +26 -31
- package/package/components/apps/components/inputs/AppTextInput.svelte +1 -1
- package/package/components/apps/components/inputs/currency/AppCurrencyInput.svelte +1 -1
- package/package/components/apps/components/layout/AppConditionalWrapper.svelte +7 -2
- package/package/components/apps/components/layout/AppContainer.svelte +1 -1
- package/package/components/apps/components/layout/AppDecisionTree.svelte +1 -1
- package/package/components/apps/components/layout/AppDrawer.svelte +16 -3
- package/package/components/apps/components/layout/AppDrawer.svelte.d.ts +2 -0
- package/package/components/apps/components/layout/AppModal.svelte +85 -79
- package/package/components/apps/components/layout/AppModal.svelte.d.ts +2 -0
- package/package/components/apps/components/layout/AppStepper.svelte +2 -1
- package/package/components/apps/components/layout/AppTabs.svelte +1 -1
- package/package/components/apps/editor/AppEditor.svelte +3 -2
- package/package/components/apps/editor/AppEditorHeader.svelte +62 -31
- package/package/components/apps/editor/AppInputs.svelte +1 -1
- package/package/components/apps/editor/AppPreview.svelte +18 -7
- package/package/components/apps/editor/ComponentHeader.svelte +37 -1
- package/package/components/apps/editor/ComponentHeader.svelte.d.ts +2 -0
- package/package/components/apps/editor/GridEditor.svelte +15 -6
- package/package/components/apps/editor/GridEditorMenu.svelte +120 -49
- package/package/components/apps/editor/GridViewer.svelte +14 -5
- package/package/components/apps/editor/GridViewer.svelte.d.ts +5 -1
- package/package/components/apps/editor/RecomputeAllComponents.svelte +17 -3
- package/package/components/apps/editor/RunnableJobPanel.svelte +9 -5
- package/package/components/apps/editor/SettingsPanel.svelte +6 -2
- package/package/components/apps/editor/SubGridEditor.svelte +44 -27
- package/package/components/apps/editor/appUtils.d.ts +6 -1
- package/package/components/apps/editor/appUtils.js +85 -7
- package/package/components/apps/editor/component/Component.svelte +78 -2
- package/package/components/apps/editor/component/Component.svelte.d.ts +3 -0
- package/package/components/apps/editor/component/components.d.ts +274 -21
- package/package/components/apps/editor/component/components.js +176 -12
- package/package/components/apps/editor/component/default-codes.d.ts +1 -1
- package/package/components/apps/editor/component/default-codes.js +241 -9
- package/package/components/apps/editor/component/sets.d.ts +3 -0
- package/package/components/apps/editor/component/sets.js +12 -2
- package/package/components/apps/editor/componentsPanel/ComponentList.svelte +15 -2
- package/package/components/apps/editor/componentsPanel/componentControlUtils.js +4 -2
- package/package/components/apps/editor/componentsPanel/cssUtils.js +1 -1
- package/package/components/apps/editor/componentsPanel/quickStyleProperties.js +5 -0
- package/package/components/apps/editor/contextPanel/components/OutputHeader.svelte +9 -5
- package/package/components/apps/editor/contextPanel/components/TableActionsOutput.svelte +1 -1
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptEditor.svelte +46 -6
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptsPanelWithTable.svelte +1 -1
- package/package/components/apps/editor/inlineScriptsPanel/utils.js +3 -1
- package/package/components/apps/editor/settingsPanel/AlignmentEditor.svelte +1 -1
- package/package/components/apps/editor/settingsPanel/ComponentControl.svelte +1 -1
- package/package/components/apps/editor/settingsPanel/ComponentInputTypeEditor.svelte +8 -5
- package/package/components/apps/editor/settingsPanel/ComponentPanel.svelte +54 -4
- package/package/components/apps/editor/settingsPanel/ContextVariables.svelte +61 -0
- package/package/components/apps/editor/settingsPanel/ContextVariables.svelte.d.ts +16 -0
- package/package/components/apps/editor/settingsPanel/DecisionTreeGraphEditor.svelte +12 -10
- package/package/components/apps/editor/settingsPanel/DeleteComponent.svelte +29 -32
- package/package/components/apps/editor/settingsPanel/DeleteComponent.svelte.d.ts +0 -5
- package/package/components/apps/editor/settingsPanel/GridCondition.svelte +27 -25
- package/package/components/apps/editor/settingsPanel/GridTab.svelte +1 -1
- package/package/components/apps/editor/settingsPanel/GridTabDisabled.svelte +2 -1
- package/package/components/apps/editor/settingsPanel/GridTabDisabled.svelte.d.ts +1 -0
- package/package/components/apps/editor/settingsPanel/InputsSpecEditor.svelte +24 -3
- package/package/components/apps/editor/settingsPanel/InputsSpecsEditor.svelte +27 -1
- package/package/components/apps/editor/settingsPanel/InputsSpecsEditor.svelte.d.ts +1 -0
- package/package/components/apps/editor/settingsPanel/Recompute.svelte +1 -1
- package/package/components/apps/editor/settingsPanel/StylePanel.svelte +4 -3
- package/package/components/apps/editor/settingsPanel/inputEditor/ColorInput.svelte +3 -2
- package/package/components/apps/editor/settingsPanel/inputEditor/EvalV2InputEditor.svelte +1 -0
- package/package/components/apps/editor/settingsPanel/mainInput/RunnableSelector.svelte +4 -4
- package/package/components/apps/editor/settingsPanel/secondaryMenu/SecondaryMenu.svelte +6 -3
- package/package/components/apps/inputType.d.ts +4 -0
- package/package/components/apps/rx.d.ts +1 -1
- package/package/components/apps/rx.js +7 -0
- package/package/components/apps/svelte-grid/Grid.svelte +13 -4
- package/package/components/apps/svelte-grid/Grid.svelte.d.ts +2 -1
- package/package/components/apps/svelte-grid/types.d.ts +1 -0
- package/package/components/apps/svelte-grid/utils/helper.js +1 -0
- package/package/components/apps/svelte-grid/utils/overlap.d.ts +3 -0
- package/package/components/apps/svelte-grid/utils/overlap.js +21 -0
- package/package/components/apps/svelte-select/lib/Select.svelte.d.ts +2 -2
- package/package/components/apps/svelte-select/lib/tailwind.css +1 -1
- package/package/components/apps/types.d.ts +1 -0
- package/package/components/apps/utils.js +13 -3
- package/package/components/auditLogs/AuditLogsTable.svelte +5 -2
- package/package/components/build_workers.js +1 -0
- package/package/components/common/alert/Alert.svelte +17 -17
- package/package/components/common/badge/Badge.svelte +6 -3
- package/package/components/common/badge/model.d.ts +1 -1
- package/package/components/common/button/Button.svelte +22 -14
- package/package/components/common/calendarPicker/CalendarPicker.svelte +2 -0
- package/package/components/common/calendarPicker/CalendarPicker.svelte.d.ts +1 -0
- package/package/components/common/drawer/ConditionalPortal.svelte +9 -0
- package/package/components/common/drawer/ConditionalPortal.svelte.d.ts +18 -0
- package/package/components/common/drawer/Disposable.svelte +66 -0
- package/package/components/common/drawer/Disposable.svelte.d.ts +36 -0
- package/package/components/common/drawer/Drawer.svelte +29 -55
- package/package/components/common/drawer/Drawer.svelte.d.ts +1 -1
- package/package/components/common/fileInput/FileInput.svelte +3 -3
- package/package/components/common/fileInput/FileInput.svelte.d.ts +1 -0
- package/package/components/common/fileUpload/FileUpload.svelte +1 -1
- package/package/components/common/languageIcons/LanguageIcon.svelte +5 -2
- package/package/components/common/table/RowIcon.svelte +4 -4
- package/package/components/common/table/ScriptRow.svelte +12 -1
- package/package/components/common/table/ScriptRow.svelte.d.ts +1 -0
- package/package/components/common/toggleButton-v2/ToggleButtonMore.svelte +45 -0
- package/package/components/common/toggleButton-v2/ToggleButtonMore.svelte.d.ts +24 -0
- package/package/components/copilot/CronGen.svelte +2 -2
- package/package/components/copilot/FlowCopilotStatus.svelte +1 -1
- package/package/components/copilot/RegexGen.svelte +17 -39
- package/package/components/copilot/ScriptGen.svelte +14 -5
- package/package/components/copilot/StepInputGen.svelte +2 -1
- package/package/components/copilot/StepInputsGen.svelte +2 -1
- package/package/components/copilot/completion.js +60 -9
- package/package/components/copilot/lib.js +5 -3
- package/package/components/copilot/prompts/edit.yaml +24 -0
- package/package/components/copilot/prompts/editPrompt.d.ts +3 -0
- package/package/components/copilot/prompts/editPrompt.js +3 -0
- package/package/components/copilot/prompts/fix.yaml +25 -0
- package/package/components/copilot/prompts/fixPrompt.d.ts +3 -0
- package/package/components/copilot/prompts/fixPrompt.js +3 -0
- package/package/components/copilot/prompts/gen.yaml +20 -0
- package/package/components/copilot/prompts/genPrompt.d.ts +3 -0
- package/package/components/copilot/prompts/genPrompt.js +3 -0
- package/package/components/copilot/utils.d.ts +2 -1
- package/package/components/copilot/utils.js +38 -0
- package/package/components/details/createAppFromScript.d.ts +26 -0
- package/package/components/details/createAppFromScript.js +50 -24
- package/package/components/flows/CreateActionsApp.svelte +1 -0
- package/package/components/flows/CreateActionsFlow.svelte +1 -0
- package/package/components/flows/content/FlowInputs.svelte +2 -2
- package/package/components/flows/content/FlowModuleComponent.svelte +15 -6
- package/package/components/flows/content/ScriptEditorDrawer.svelte +3 -2
- package/package/components/flows/flowExplorer.js +4 -1
- package/package/components/flows/map/FlowConstantsItem.svelte +1 -1
- package/package/components/flows/map/FlowErrorHandlerItem.svelte +1 -1
- package/package/components/flows/map/FlowModuleSchemaItem.svelte +3 -0
- package/package/components/flows/map/FlowModuleSchemaItem.svelte.d.ts +1 -0
- package/package/components/flows/map/FlowSettingsItem.svelte +1 -1
- package/package/components/flows/map/MapItem.svelte +2 -0
- package/package/components/flows/map/MapItem.svelte.d.ts +1 -0
- package/package/components/graph/FlowGraph.svelte +1 -0
- package/package/components/graph/svelvet/edges/views/Edges/SimpleBezierEdge.svelte +41 -16
- package/package/components/home/ItemsList.svelte +44 -9
- package/package/components/home/TreeView.svelte +2 -0
- package/package/components/icons/AzureIcon.svelte +25 -1
- package/package/components/icons/PHPIcon.svelte +117 -0
- package/package/components/icons/PHPIcon.svelte.d.ts +17 -0
- package/package/components/instanceSettings.d.ts +1 -1
- package/package/components/instanceSettings.js +18 -2
- package/package/components/jobs/JobPreview.svelte +5 -0
- package/package/components/multiselect/MultiSelect.svelte +782 -0
- package/package/components/multiselect/MultiSelect.svelte.d.ts +97 -0
- package/package/components/multiselect/types.d.ts +56 -0
- package/package/components/multiselect/types.js +1 -0
- package/package/components/multiselect/utils.d.ts +7 -0
- package/package/components/multiselect/utils.js +54 -0
- package/package/components/propertyPicker/ObjectViewer.svelte +14 -1
- package/package/components/runs/JobLoader.svelte +135 -17
- package/package/components/runs/JobLoader.svelte.d.ts +7 -2
- package/package/components/runs/JobPreview.svelte +39 -3
- package/package/components/runs/JobPreview.svelte.d.ts +2 -0
- package/package/components/runs/RunRow.svelte +78 -31
- package/package/components/runs/RunRow.svelte.d.ts +3 -0
- package/package/components/runs/RunsFilter.svelte +125 -9
- package/package/components/runs/RunsFilter.svelte.d.ts +4 -2
- package/package/components/runs/RunsTable.svelte +53 -5
- package/package/components/runs/RunsTable.svelte.d.ts +6 -0
- package/package/components/scriptEditor/LogPanel.svelte +46 -33
- package/package/components/scriptEditor/LogPanel.svelte.d.ts +1 -0
- package/package/components/scripts/CreateActionsScript.svelte +1 -1
- package/package/components/settings/WorkspaceUserSettings.svelte +246 -226
- package/package/components/sidebar/MenuButton.svelte +1 -1
- package/package/components/sidebar/MenuLink.svelte +1 -1
- package/package/components/sidebar/changelogs.js +40 -0
- package/package/components/table/AutoDataTable.svelte +77 -102
- package/package/components/table/DataTable.svelte +13 -5
- package/package/components/table/DataTable.svelte.d.ts +1 -0
- package/package/components/vscode.js +1 -1
- package/package/components/wizards/AgGridWizard.svelte +27 -2
- package/package/components/wizards/AgGridWizard.svelte.d.ts +1 -0
- package/package/consts.js +5 -1
- package/package/defaults.d.ts +2 -2
- package/package/defaults.js +2 -2
- package/package/deno_fetch.d.ts.txt +30 -0
- package/package/editorUtils.js +2 -0
- package/package/gen/core/OpenAPI.js +5 -6
- package/package/gen/core/request.js +4 -1
- package/package/gen/index.d.ts +0 -1
- package/package/gen/index.js +0 -1
- package/package/gen/schemas.gen.d.ts +97 -428
- package/package/gen/schemas.gen.js +97 -433
- package/package/gen/services.gen.d.ts +3087 -1840
- package/package/gen/services.gen.js +3442 -2358
- package/package/gen/types.gen.d.ts +5048 -1505
- package/package/infer.d.ts +1 -1
- package/package/infer.js +6 -2
- package/package/inferArgSig.js +5 -2
- package/package/init_scripts/python_init_code.d.ts +1 -1
- package/package/init_scripts/python_init_code.js +1 -1
- package/package/process.d.ts.txt +1770 -0
- package/package/script_helpers.d.ts +3 -2
- package/package/script_helpers.js +28 -3
- package/package/scripts.d.ts +1 -1
- package/package/scripts.js +4 -0
- package/package/utils.d.ts +3 -0
- package/package/utils.js +46 -3
- package/package/windmill_fetch.d.ts.txt +16966 -0
- package/package/zIndexes.d.ts +12 -0
- package/package/zIndexes.js +12 -0
- package/package.json +5 -5
- package/package/components/AppConnect.svelte +0 -566
- package/package/components/AppConnect.svelte.d.ts +0 -23
- package/package/components/ContextMenu.svelte +0 -89
- package/package/components/ContextMenu.svelte.d.ts +0 -28
- package/package/components/apps/components/display/index.d.ts +0 -17
- package/package/components/apps/components/display/index.js +0 -17
- package/package/components/apps/components/helpers/index.d.ts +0 -10
- package/package/components/apps/components/helpers/index.js +0 -10
- package/package/components/apps/components/index.d.ts +0 -5
- package/package/components/apps/components/index.js +0 -5
|
@@ -75,6 +75,13 @@ export type AggridComponentEe = BaseComponent<'aggridcomponentee'> & {
|
|
|
75
75
|
license: string;
|
|
76
76
|
actions: TableAction[];
|
|
77
77
|
};
|
|
78
|
+
export type AggridInfiniteComponent = BaseComponent<'aggridinfinitecomponent'> & {
|
|
79
|
+
actions: TableAction[];
|
|
80
|
+
};
|
|
81
|
+
export type AggridInfiniteComponentEe = BaseComponent<'aggridinfinitecomponentee'> & {
|
|
82
|
+
actions: TableAction[];
|
|
83
|
+
license: string;
|
|
84
|
+
};
|
|
78
85
|
export type DisplayComponent = BaseComponent<'displaycomponent'>;
|
|
79
86
|
export type LogComponent = BaseComponent<'logcomponent'>;
|
|
80
87
|
export type JobIdLogComponent = BaseComponent<'jobidlogcomponent'>;
|
|
@@ -89,6 +96,7 @@ export type ResourceSelectComponent = BaseComponent<'resourceselectcomponent'> &
|
|
|
89
96
|
onSelect?: string[];
|
|
90
97
|
};
|
|
91
98
|
export type MultiSelectComponent = BaseComponent<'multiselectcomponent'>;
|
|
99
|
+
export type MultiSelectComponentV2 = BaseComponent<'multiselectcomponentv2'>;
|
|
92
100
|
export type CheckboxComponent = BaseComponent<'checkboxcomponent'> & RecomputeOthersSource & {
|
|
93
101
|
onToggle?: string[];
|
|
94
102
|
};
|
|
@@ -105,7 +113,10 @@ export type ListComponent = BaseComponent<'listcomponent'>;
|
|
|
105
113
|
export type ContainerComponent = BaseComponent<'containercomponent'> & {
|
|
106
114
|
groupFields: RichConfigurations;
|
|
107
115
|
};
|
|
108
|
-
export type DrawerComponent = BaseComponent<'drawercomponent'
|
|
116
|
+
export type DrawerComponent = BaseComponent<'drawercomponent'> & {
|
|
117
|
+
onOpenRecomputeIds: string[] | undefined;
|
|
118
|
+
onCloseRecomputeIds: string[] | undefined;
|
|
119
|
+
};
|
|
109
120
|
export type MapComponent = BaseComponent<'mapcomponent'>;
|
|
110
121
|
export type VerticalSplitPanesComponent = BaseComponent<'verticalsplitpanescomponent'> & {
|
|
111
122
|
panes: number[];
|
|
@@ -114,7 +125,10 @@ export type HorizontalSplitPanesComponent = BaseComponent<'horizontalsplitpanesc
|
|
|
114
125
|
panes: number[];
|
|
115
126
|
};
|
|
116
127
|
export type PdfComponent = BaseComponent<'pdfcomponent'>;
|
|
117
|
-
export type ModalComponent = BaseComponent<'modalcomponent'
|
|
128
|
+
export type ModalComponent = BaseComponent<'modalcomponent'> & {
|
|
129
|
+
onOpenRecomputeIds: string[] | undefined;
|
|
130
|
+
onCloseRecomputeIds: string[] | undefined;
|
|
131
|
+
};
|
|
118
132
|
export type StepperComponent = BaseComponent<'steppercomponent'> & {
|
|
119
133
|
tabs: string[];
|
|
120
134
|
};
|
|
@@ -147,7 +161,7 @@ export type DecisionTreeComponent = BaseComponent<'decisiontreecomponent'> & {
|
|
|
147
161
|
nodes: DecisionTreeNode[];
|
|
148
162
|
};
|
|
149
163
|
export type AlertComponent = BaseComponent<'alertcomponent'>;
|
|
150
|
-
export type TypedComponent = DBExplorerComponent | DisplayComponent | LogComponent | JobIdLogComponent | FlowStatusComponent | JobIdFlowStatusComponent | TextInputComponent | QuillComponent | TextareaInputComponent | PasswordInputComponent | EmailInputComponent | DateInputComponent | NumberInputComponent | CurrencyComponent | SliderComponent | RangeComponent | BarChartComponent | TimeseriesComponent | HtmlComponent | CustomComponent | MarkdownComponent | TableComponent | TextComponent | ButtonComponent | PieChartComponent | ScatterChartComponent | SelectComponent | ResourceSelectComponent | MultiSelectComponent | CheckboxComponent | FormComponent | FormButtonComponent | VegaLiteComponent | PlotlyComponent | TabsComponent | ContainerComponent | ListComponent | IconComponent | HorizontalDividerComponent | VerticalDividerComponent | FileInputComponent | ImageComponent | AggridComponent | AggridComponentEe | DrawerComponent | MapComponent | VerticalSplitPanesComponent | HorizontalSplitPanesComponent | PdfComponent | ModalComponent | StepperComponent | Schemaformcomponent | SelectTabComponent | ConditionalWrapperComponent | SelectStepComponent | DownloadComponent | ChartJsComponent | CarouselListComponent | PlotlyComponentV2 | ChartJsComponentV2 | StatisticCardComponent | MenuComponent | DecisionTreeComponent | S3FileInputComponent | AgChartsComponent | AgChartsComponentEe | AlertComponent | DateSliderComponent | TimeInputComponent | DateTimeInputComponent;
|
|
164
|
+
export type TypedComponent = DBExplorerComponent | DisplayComponent | LogComponent | JobIdLogComponent | FlowStatusComponent | JobIdFlowStatusComponent | TextInputComponent | QuillComponent | TextareaInputComponent | PasswordInputComponent | EmailInputComponent | DateInputComponent | NumberInputComponent | CurrencyComponent | SliderComponent | RangeComponent | BarChartComponent | TimeseriesComponent | HtmlComponent | CustomComponent | MarkdownComponent | TableComponent | TextComponent | ButtonComponent | PieChartComponent | ScatterChartComponent | SelectComponent | ResourceSelectComponent | MultiSelectComponent | CheckboxComponent | FormComponent | FormButtonComponent | VegaLiteComponent | PlotlyComponent | TabsComponent | ContainerComponent | ListComponent | IconComponent | HorizontalDividerComponent | VerticalDividerComponent | FileInputComponent | ImageComponent | AggridComponent | AggridComponentEe | DrawerComponent | MapComponent | VerticalSplitPanesComponent | HorizontalSplitPanesComponent | PdfComponent | ModalComponent | StepperComponent | Schemaformcomponent | SelectTabComponent | ConditionalWrapperComponent | SelectStepComponent | DownloadComponent | ChartJsComponent | CarouselListComponent | PlotlyComponentV2 | ChartJsComponentV2 | StatisticCardComponent | MenuComponent | DecisionTreeComponent | S3FileInputComponent | AgChartsComponent | AgChartsComponentEe | AlertComponent | DateSliderComponent | TimeInputComponent | DateTimeInputComponent | AggridInfiniteComponent | AggridInfiniteComponentEe | MultiSelectComponentV2;
|
|
151
165
|
export type AppComponent = BaseAppComponent & TypedComponent;
|
|
152
166
|
export type AppComponentDimensions = `${IntRange<1, typeof NARROW_GRID_COLUMNS>}:${number}-${IntRange<1, typeof WIDE_GRID_COLUMNS>}:${number}`;
|
|
153
167
|
export declare function getRecommendedDimensionsByComponent(componentType: AppComponent['type'], column: number): Size;
|
|
@@ -478,7 +492,7 @@ export declare const components: {
|
|
|
478
492
|
readonly fieldType: "select";
|
|
479
493
|
readonly type: "static";
|
|
480
494
|
readonly selectOptions: string[];
|
|
481
|
-
readonly value: "
|
|
495
|
+
readonly value: "Body" | "Title" | "Subtitle" | "Label" | "Caption";
|
|
482
496
|
};
|
|
483
497
|
readonly copyButton: {
|
|
484
498
|
readonly type: "static";
|
|
@@ -528,7 +542,7 @@ export declare const components: {
|
|
|
528
542
|
readonly type: "static";
|
|
529
543
|
readonly selectOptions: ("blue" | "red" | "dark" | "light" | "green" | "gray" | "none")[];
|
|
530
544
|
readonly value: "blue";
|
|
531
|
-
readonly tooltip: "
|
|
545
|
+
readonly tooltip: "These presets can be overwritten with custom styles.";
|
|
532
546
|
};
|
|
533
547
|
readonly size: {
|
|
534
548
|
readonly fieldType: "select";
|
|
@@ -612,7 +626,7 @@ export declare const components: {
|
|
|
612
626
|
};
|
|
613
627
|
readonly sendToast: {
|
|
614
628
|
readonly message: {
|
|
615
|
-
readonly tooltip: "The message of the toast to
|
|
629
|
+
readonly tooltip: "The message of the toast to display";
|
|
616
630
|
readonly fieldType: "text";
|
|
617
631
|
readonly type: "static";
|
|
618
632
|
readonly value: "";
|
|
@@ -714,10 +728,10 @@ export declare const components: {
|
|
|
714
728
|
};
|
|
715
729
|
readonly sendErrorToast: {
|
|
716
730
|
readonly message: {
|
|
717
|
-
readonly tooltip: "The message of the toast to
|
|
731
|
+
readonly tooltip: "The message of the toast to display";
|
|
718
732
|
readonly fieldType: "text";
|
|
719
733
|
readonly type: "static";
|
|
720
|
-
readonly value: "";
|
|
734
|
+
readonly value: "An error occured";
|
|
721
735
|
readonly placeholder: "Hello there";
|
|
722
736
|
readonly onDemandOnly: true;
|
|
723
737
|
};
|
|
@@ -943,7 +957,7 @@ export declare const components: {
|
|
|
943
957
|
};
|
|
944
958
|
readonly sendToast: {
|
|
945
959
|
readonly message: {
|
|
946
|
-
readonly tooltip: "The message of the toast to
|
|
960
|
+
readonly tooltip: "The message of the toast to display";
|
|
947
961
|
readonly fieldType: "text";
|
|
948
962
|
readonly type: "static";
|
|
949
963
|
readonly value: "";
|
|
@@ -1045,10 +1059,10 @@ export declare const components: {
|
|
|
1045
1059
|
};
|
|
1046
1060
|
readonly sendErrorToast: {
|
|
1047
1061
|
readonly message: {
|
|
1048
|
-
readonly tooltip: "The message of the toast to
|
|
1062
|
+
readonly tooltip: "The message of the toast to display";
|
|
1049
1063
|
readonly fieldType: "text";
|
|
1050
1064
|
readonly type: "static";
|
|
1051
|
-
readonly value: "";
|
|
1065
|
+
readonly value: "An error occured";
|
|
1052
1066
|
readonly placeholder: "Hello there";
|
|
1053
1067
|
readonly onDemandOnly: true;
|
|
1054
1068
|
};
|
|
@@ -1123,7 +1137,7 @@ export declare const components: {
|
|
|
1123
1137
|
readonly type: "static";
|
|
1124
1138
|
readonly value: "dark";
|
|
1125
1139
|
readonly selectOptions: ("blue" | "red" | "dark" | "light" | "green" | "gray" | "none")[];
|
|
1126
|
-
readonly tooltip: "
|
|
1140
|
+
readonly tooltip: "These presets can be overwritten with custom styles.";
|
|
1127
1141
|
};
|
|
1128
1142
|
readonly size: {
|
|
1129
1143
|
readonly fieldType: "select";
|
|
@@ -1181,7 +1195,7 @@ export declare const components: {
|
|
|
1181
1195
|
};
|
|
1182
1196
|
readonly sendToast: {
|
|
1183
1197
|
readonly message: {
|
|
1184
|
-
readonly tooltip: "The message of the toast to
|
|
1198
|
+
readonly tooltip: "The message of the toast to display";
|
|
1185
1199
|
readonly fieldType: "text";
|
|
1186
1200
|
readonly type: "static";
|
|
1187
1201
|
readonly value: "";
|
|
@@ -1283,10 +1297,10 @@ export declare const components: {
|
|
|
1283
1297
|
};
|
|
1284
1298
|
readonly sendErrorToast: {
|
|
1285
1299
|
readonly message: {
|
|
1286
|
-
readonly tooltip: "The message of the toast to
|
|
1300
|
+
readonly tooltip: "The message of the toast to display";
|
|
1287
1301
|
readonly fieldType: "text";
|
|
1288
1302
|
readonly type: "static";
|
|
1289
|
-
readonly value: "";
|
|
1303
|
+
readonly value: "An error occured";
|
|
1290
1304
|
readonly placeholder: "Hello there";
|
|
1291
1305
|
readonly onDemandOnly: true;
|
|
1292
1306
|
};
|
|
@@ -1724,7 +1738,7 @@ export declare const components: {
|
|
|
1724
1738
|
};
|
|
1725
1739
|
};
|
|
1726
1740
|
readonly tablecomponent: {
|
|
1727
|
-
readonly name: "Table";
|
|
1741
|
+
readonly name: "TanStack Table";
|
|
1728
1742
|
readonly icon: typeof Table2;
|
|
1729
1743
|
readonly documentationLink: "https://www.windmill.dev/docs/apps/app_configuration_settings/table";
|
|
1730
1744
|
readonly dims: `1:${number}-1:${number}` | `1:${number}-2:${number}` | `1:${number}-5:${number}` | `1:${number}-6:${number}` | `1:${number}-3:${number}` | `1:${number}-11:${number}` | `1:${number}-9:${number}` | `1:${number}-4:${number}` | `1:${number}-10:${number}` | `1:${number}-8:${number}` | `1:${number}-7:${number}` | `1:${number}-12:${number}` | `2:${number}-1:${number}` | `2:${number}-2:${number}` | `2:${number}-5:${number}` | `2:${number}-6:${number}` | `2:${number}-3:${number}` | `2:${number}-11:${number}` | `2:${number}-9:${number}` | `2:${number}-4:${number}` | `2:${number}-10:${number}` | `2:${number}-8:${number}` | `2:${number}-7:${number}` | `2:${number}-12:${number}` | `3:${number}-1:${number}` | `3:${number}-2:${number}` | `3:${number}-5:${number}` | `3:${number}-6:${number}` | `3:${number}-3:${number}` | `3:${number}-11:${number}` | `3:${number}-9:${number}` | `3:${number}-4:${number}` | `3:${number}-10:${number}` | `3:${number}-8:${number}` | `3:${number}-7:${number}` | `3:${number}-12:${number}`;
|
|
@@ -1875,6 +1889,12 @@ export declare const components: {
|
|
|
1875
1889
|
readonly value: false;
|
|
1876
1890
|
readonly tooltip: "When true, actions will wrap to the next line. Otherwise, the column will grow to fit the actions.";
|
|
1877
1891
|
};
|
|
1892
|
+
readonly footer: {
|
|
1893
|
+
readonly type: "static";
|
|
1894
|
+
readonly fieldType: "boolean";
|
|
1895
|
+
readonly value: true;
|
|
1896
|
+
readonly tooltip: "Allow visible footer for pagination and download";
|
|
1897
|
+
};
|
|
1878
1898
|
};
|
|
1879
1899
|
readonly componentInput: StaticAppInput;
|
|
1880
1900
|
};
|
|
@@ -1948,10 +1968,186 @@ export declare const components: {
|
|
|
1948
1968
|
readonly value: false;
|
|
1949
1969
|
readonly tooltip: "When true, actions will wrap to the next line. Otherwise, the column will grow to fit the actions.";
|
|
1950
1970
|
};
|
|
1971
|
+
readonly footer: {
|
|
1972
|
+
readonly type: "static";
|
|
1973
|
+
readonly fieldType: "boolean";
|
|
1974
|
+
readonly value: true;
|
|
1975
|
+
readonly tooltip: "Allow visible footer for pagination and download";
|
|
1976
|
+
};
|
|
1951
1977
|
};
|
|
1952
1978
|
readonly componentInput: StaticAppInput;
|
|
1953
1979
|
};
|
|
1954
1980
|
};
|
|
1981
|
+
readonly aggridinfinitecomponent: {
|
|
1982
|
+
readonly name: "AgGrid Infinite Table";
|
|
1983
|
+
readonly icon: typeof Table2;
|
|
1984
|
+
readonly documentationLink: "https://www.windmill.dev/docs/apps/app_configuration_settings/aggrid_table#aggrid-infinite-table";
|
|
1985
|
+
readonly dims: `1:${number}-1:${number}` | `1:${number}-2:${number}` | `1:${number}-5:${number}` | `1:${number}-6:${number}` | `1:${number}-3:${number}` | `1:${number}-11:${number}` | `1:${number}-9:${number}` | `1:${number}-4:${number}` | `1:${number}-10:${number}` | `1:${number}-8:${number}` | `1:${number}-7:${number}` | `1:${number}-12:${number}` | `2:${number}-1:${number}` | `2:${number}-2:${number}` | `2:${number}-5:${number}` | `2:${number}-6:${number}` | `2:${number}-3:${number}` | `2:${number}-11:${number}` | `2:${number}-9:${number}` | `2:${number}-4:${number}` | `2:${number}-10:${number}` | `2:${number}-8:${number}` | `2:${number}-7:${number}` | `2:${number}-12:${number}` | `3:${number}-1:${number}` | `3:${number}-2:${number}` | `3:${number}-5:${number}` | `3:${number}-6:${number}` | `3:${number}-3:${number}` | `3:${number}-11:${number}` | `3:${number}-9:${number}` | `3:${number}-4:${number}` | `3:${number}-10:${number}` | `3:${number}-8:${number}` | `3:${number}-7:${number}` | `3:${number}-12:${number}`;
|
|
1986
|
+
readonly customCss: {
|
|
1987
|
+
readonly container: {
|
|
1988
|
+
readonly class: "";
|
|
1989
|
+
readonly style: "";
|
|
1990
|
+
};
|
|
1991
|
+
};
|
|
1992
|
+
readonly initialData: {
|
|
1993
|
+
readonly configuration: {
|
|
1994
|
+
readonly columnDefs: StaticAppInput;
|
|
1995
|
+
readonly flex: {
|
|
1996
|
+
readonly type: "static";
|
|
1997
|
+
readonly fieldType: "boolean";
|
|
1998
|
+
readonly value: true;
|
|
1999
|
+
readonly tooltip: "default col flex is 1 (see ag-grid docs)";
|
|
2000
|
+
};
|
|
2001
|
+
readonly allEditable: {
|
|
2002
|
+
readonly type: "static";
|
|
2003
|
+
readonly fieldType: "boolean";
|
|
2004
|
+
readonly value: false;
|
|
2005
|
+
readonly hide: true;
|
|
2006
|
+
readonly tooltip: "Configure all columns as Editable by users";
|
|
2007
|
+
};
|
|
2008
|
+
readonly multipleSelectable: {
|
|
2009
|
+
readonly type: "static";
|
|
2010
|
+
readonly fieldType: "boolean";
|
|
2011
|
+
readonly value: false;
|
|
2012
|
+
readonly tooltip: "Make multiple rows selectable at once";
|
|
2013
|
+
};
|
|
2014
|
+
readonly rowMultiselectWithClick: {
|
|
2015
|
+
readonly type: "static";
|
|
2016
|
+
readonly fieldType: "boolean";
|
|
2017
|
+
readonly value: true;
|
|
2018
|
+
readonly tooltip: "If multiple selectable, allow multiselect with click";
|
|
2019
|
+
};
|
|
2020
|
+
readonly selectFirstRowByDefault: {
|
|
2021
|
+
readonly type: "static";
|
|
2022
|
+
readonly fieldType: "boolean";
|
|
2023
|
+
readonly value: boolean;
|
|
2024
|
+
readonly tooltip: "Select the first row by default on start";
|
|
2025
|
+
};
|
|
2026
|
+
readonly extraConfig: {
|
|
2027
|
+
readonly type: "static";
|
|
2028
|
+
readonly fieldType: "object";
|
|
2029
|
+
readonly value: {};
|
|
2030
|
+
readonly tooltip: "any configuration that can be passed to ag-grid top level";
|
|
2031
|
+
};
|
|
2032
|
+
readonly compactness: {
|
|
2033
|
+
readonly type: "static";
|
|
2034
|
+
readonly fieldType: "select";
|
|
2035
|
+
readonly value: "normal";
|
|
2036
|
+
readonly selectOptions: readonly ["normal", "compact", "comfortable"];
|
|
2037
|
+
readonly tooltip: "Change the row height";
|
|
2038
|
+
};
|
|
2039
|
+
readonly wrapActions: {
|
|
2040
|
+
readonly type: "static";
|
|
2041
|
+
readonly fieldType: "boolean";
|
|
2042
|
+
readonly value: false;
|
|
2043
|
+
readonly tooltip: "When true, actions will wrap to the next line. Otherwise, the column will grow to fit the actions.";
|
|
2044
|
+
};
|
|
2045
|
+
readonly searchEnabled: {
|
|
2046
|
+
readonly type: "static";
|
|
2047
|
+
readonly fieldType: "boolean";
|
|
2048
|
+
readonly value: false;
|
|
2049
|
+
readonly tooltip: "Enable search in the table";
|
|
2050
|
+
};
|
|
2051
|
+
readonly footer: {
|
|
2052
|
+
readonly type: "static";
|
|
2053
|
+
readonly fieldType: "boolean";
|
|
2054
|
+
readonly value: true;
|
|
2055
|
+
readonly tooltip: "Allow visible footer for pagination and download";
|
|
2056
|
+
};
|
|
2057
|
+
};
|
|
2058
|
+
readonly componentInput: {
|
|
2059
|
+
readonly type: "runnable";
|
|
2060
|
+
readonly fieldType: "any";
|
|
2061
|
+
readonly fields: {};
|
|
2062
|
+
readonly runnable: undefined;
|
|
2063
|
+
};
|
|
2064
|
+
};
|
|
2065
|
+
};
|
|
2066
|
+
readonly aggridinfinitecomponentee: {
|
|
2067
|
+
readonly name: "AgGrid Infinite Table EE";
|
|
2068
|
+
readonly icon: typeof Table2;
|
|
2069
|
+
readonly documentationLink: "https://www.windmill.dev/docs/apps/app_configuration_settings/aggrid_table#aggrid-infinite-table";
|
|
2070
|
+
readonly dims: `1:${number}-1:${number}` | `1:${number}-2:${number}` | `1:${number}-5:${number}` | `1:${number}-6:${number}` | `1:${number}-3:${number}` | `1:${number}-11:${number}` | `1:${number}-9:${number}` | `1:${number}-4:${number}` | `1:${number}-10:${number}` | `1:${number}-8:${number}` | `1:${number}-7:${number}` | `1:${number}-12:${number}` | `2:${number}-1:${number}` | `2:${number}-2:${number}` | `2:${number}-5:${number}` | `2:${number}-6:${number}` | `2:${number}-3:${number}` | `2:${number}-11:${number}` | `2:${number}-9:${number}` | `2:${number}-4:${number}` | `2:${number}-10:${number}` | `2:${number}-8:${number}` | `2:${number}-7:${number}` | `2:${number}-12:${number}` | `3:${number}-1:${number}` | `3:${number}-2:${number}` | `3:${number}-5:${number}` | `3:${number}-6:${number}` | `3:${number}-3:${number}` | `3:${number}-11:${number}` | `3:${number}-9:${number}` | `3:${number}-4:${number}` | `3:${number}-10:${number}` | `3:${number}-8:${number}` | `3:${number}-7:${number}` | `3:${number}-12:${number}`;
|
|
2071
|
+
readonly customCss: {
|
|
2072
|
+
readonly container: {
|
|
2073
|
+
readonly class: "";
|
|
2074
|
+
readonly style: "";
|
|
2075
|
+
};
|
|
2076
|
+
};
|
|
2077
|
+
readonly initialData: {
|
|
2078
|
+
readonly configuration: {
|
|
2079
|
+
readonly columnDefs: StaticAppInput;
|
|
2080
|
+
readonly flex: {
|
|
2081
|
+
readonly type: "static";
|
|
2082
|
+
readonly fieldType: "boolean";
|
|
2083
|
+
readonly value: true;
|
|
2084
|
+
readonly tooltip: "default col flex is 1 (see ag-grid docs)";
|
|
2085
|
+
};
|
|
2086
|
+
readonly allEditable: {
|
|
2087
|
+
readonly type: "static";
|
|
2088
|
+
readonly fieldType: "boolean";
|
|
2089
|
+
readonly value: false;
|
|
2090
|
+
readonly hide: true;
|
|
2091
|
+
readonly tooltip: "Configure all columns as Editable by users";
|
|
2092
|
+
};
|
|
2093
|
+
readonly multipleSelectable: {
|
|
2094
|
+
readonly type: "static";
|
|
2095
|
+
readonly fieldType: "boolean";
|
|
2096
|
+
readonly value: false;
|
|
2097
|
+
readonly tooltip: "Make multiple rows selectable at once";
|
|
2098
|
+
};
|
|
2099
|
+
readonly rowMultiselectWithClick: {
|
|
2100
|
+
readonly type: "static";
|
|
2101
|
+
readonly fieldType: "boolean";
|
|
2102
|
+
readonly value: true;
|
|
2103
|
+
readonly tooltip: "If multiple selectable, allow multiselect with click";
|
|
2104
|
+
};
|
|
2105
|
+
readonly selectFirstRowByDefault: {
|
|
2106
|
+
readonly type: "static";
|
|
2107
|
+
readonly fieldType: "boolean";
|
|
2108
|
+
readonly value: boolean;
|
|
2109
|
+
readonly tooltip: "Select the first row by default on start";
|
|
2110
|
+
};
|
|
2111
|
+
readonly extraConfig: {
|
|
2112
|
+
readonly type: "static";
|
|
2113
|
+
readonly fieldType: "object";
|
|
2114
|
+
readonly value: {};
|
|
2115
|
+
readonly tooltip: "any configuration that can be passed to ag-grid top level";
|
|
2116
|
+
};
|
|
2117
|
+
readonly compactness: {
|
|
2118
|
+
readonly type: "static";
|
|
2119
|
+
readonly fieldType: "select";
|
|
2120
|
+
readonly value: "normal";
|
|
2121
|
+
readonly selectOptions: readonly ["normal", "compact", "comfortable"];
|
|
2122
|
+
readonly tooltip: "Change the row height";
|
|
2123
|
+
};
|
|
2124
|
+
readonly wrapActions: {
|
|
2125
|
+
readonly type: "static";
|
|
2126
|
+
readonly fieldType: "boolean";
|
|
2127
|
+
readonly value: false;
|
|
2128
|
+
readonly tooltip: "When true, actions will wrap to the next line. Otherwise, the column will grow to fit the actions.";
|
|
2129
|
+
};
|
|
2130
|
+
readonly searchEnabled: {
|
|
2131
|
+
readonly type: "static";
|
|
2132
|
+
readonly fieldType: "boolean";
|
|
2133
|
+
readonly value: false;
|
|
2134
|
+
readonly tooltip: "Enable search in the table";
|
|
2135
|
+
};
|
|
2136
|
+
readonly footer: {
|
|
2137
|
+
readonly type: "static";
|
|
2138
|
+
readonly fieldType: "boolean";
|
|
2139
|
+
readonly value: true;
|
|
2140
|
+
readonly tooltip: "Allow visible footer for pagination and download";
|
|
2141
|
+
};
|
|
2142
|
+
};
|
|
2143
|
+
readonly componentInput: {
|
|
2144
|
+
readonly type: "runnable";
|
|
2145
|
+
readonly fieldType: "any";
|
|
2146
|
+
readonly fields: {};
|
|
2147
|
+
readonly runnable: undefined;
|
|
2148
|
+
};
|
|
2149
|
+
};
|
|
2150
|
+
};
|
|
1955
2151
|
readonly checkboxcomponent: {
|
|
1956
2152
|
readonly name: "Toggle";
|
|
1957
2153
|
readonly icon: typeof ToggleLeft;
|
|
@@ -2157,6 +2353,45 @@ export declare const components: {
|
|
|
2157
2353
|
};
|
|
2158
2354
|
readonly initialData: {
|
|
2159
2355
|
readonly componentInput: undefined;
|
|
2356
|
+
readonly verticalAlignment: "center";
|
|
2357
|
+
readonly configuration: {
|
|
2358
|
+
readonly items: StaticAppInput;
|
|
2359
|
+
readonly defaultItems: StaticAppInput;
|
|
2360
|
+
readonly placeholder: {
|
|
2361
|
+
readonly type: "static";
|
|
2362
|
+
readonly fieldType: "text";
|
|
2363
|
+
readonly value: "Select items";
|
|
2364
|
+
};
|
|
2365
|
+
readonly create: {
|
|
2366
|
+
readonly type: "static";
|
|
2367
|
+
readonly fieldType: "boolean";
|
|
2368
|
+
readonly value: false;
|
|
2369
|
+
readonly tooltip: "Allows user to manually add new value";
|
|
2370
|
+
readonly customTitle: "User creatable";
|
|
2371
|
+
};
|
|
2372
|
+
readonly allowOverflow: {
|
|
2373
|
+
readonly type: "static";
|
|
2374
|
+
readonly fieldType: "boolean";
|
|
2375
|
+
readonly value: true;
|
|
2376
|
+
readonly tooltip: "If too many items, the box overflow its container instead of having an internal scroll";
|
|
2377
|
+
};
|
|
2378
|
+
};
|
|
2379
|
+
};
|
|
2380
|
+
};
|
|
2381
|
+
readonly multiselectcomponentv2: {
|
|
2382
|
+
readonly name: "Multi Select";
|
|
2383
|
+
readonly icon: typeof List;
|
|
2384
|
+
readonly documentationLink: "https://www.windmill.dev/docs/apps/app_configuration_settings/multiselect";
|
|
2385
|
+
readonly dims: `1:${number}-1:${number}` | `1:${number}-2:${number}` | `1:${number}-5:${number}` | `1:${number}-6:${number}` | `1:${number}-3:${number}` | `1:${number}-11:${number}` | `1:${number}-9:${number}` | `1:${number}-4:${number}` | `1:${number}-10:${number}` | `1:${number}-8:${number}` | `1:${number}-7:${number}` | `1:${number}-12:${number}` | `2:${number}-1:${number}` | `2:${number}-2:${number}` | `2:${number}-5:${number}` | `2:${number}-6:${number}` | `2:${number}-3:${number}` | `2:${number}-11:${number}` | `2:${number}-9:${number}` | `2:${number}-4:${number}` | `2:${number}-10:${number}` | `2:${number}-8:${number}` | `2:${number}-7:${number}` | `2:${number}-12:${number}` | `3:${number}-1:${number}` | `3:${number}-2:${number}` | `3:${number}-5:${number}` | `3:${number}-6:${number}` | `3:${number}-3:${number}` | `3:${number}-11:${number}` | `3:${number}-9:${number}` | `3:${number}-4:${number}` | `3:${number}-10:${number}` | `3:${number}-8:${number}` | `3:${number}-7:${number}` | `3:${number}-12:${number}`;
|
|
2386
|
+
readonly customCss: {
|
|
2387
|
+
readonly multiselect: {
|
|
2388
|
+
readonly style: "";
|
|
2389
|
+
readonly tooltip: "See https://multiselect.janosh.dev/#with-css-variables for the available variables";
|
|
2390
|
+
};
|
|
2391
|
+
};
|
|
2392
|
+
readonly initialData: {
|
|
2393
|
+
readonly componentInput: undefined;
|
|
2394
|
+
readonly verticalAlignment: "center";
|
|
2160
2395
|
readonly configuration: {
|
|
2161
2396
|
readonly items: StaticAppInput;
|
|
2162
2397
|
readonly defaultItems: StaticAppInput;
|
|
@@ -2353,6 +2588,12 @@ export declare const components: {
|
|
|
2353
2588
|
readonly value: false;
|
|
2354
2589
|
readonly fieldType: "boolean";
|
|
2355
2590
|
};
|
|
2591
|
+
readonly axisStep: {
|
|
2592
|
+
readonly type: "static";
|
|
2593
|
+
readonly value: 10;
|
|
2594
|
+
readonly fieldType: "number";
|
|
2595
|
+
readonly tooltip: "Spread between each number suggestion when using the arrow keys";
|
|
2596
|
+
};
|
|
2356
2597
|
};
|
|
2357
2598
|
};
|
|
2358
2599
|
};
|
|
@@ -2481,6 +2722,12 @@ export declare const components: {
|
|
|
2481
2722
|
readonly fieldType: "boolean";
|
|
2482
2723
|
readonly tooltip: "Determine if the slider is disabled, or enabled (only disables interactions, and events)";
|
|
2483
2724
|
};
|
|
2725
|
+
readonly axisStep: {
|
|
2726
|
+
readonly type: "static";
|
|
2727
|
+
readonly value: 10;
|
|
2728
|
+
readonly fieldType: "number";
|
|
2729
|
+
readonly tooltip: "Spread between each number suggestion when using the arrow keys";
|
|
2730
|
+
};
|
|
2484
2731
|
};
|
|
2485
2732
|
};
|
|
2486
2733
|
};
|
|
@@ -2599,11 +2846,11 @@ export declare const components: {
|
|
|
2599
2846
|
};
|
|
2600
2847
|
readonly outputFormat: {
|
|
2601
2848
|
readonly type: "static";
|
|
2602
|
-
readonly value:
|
|
2849
|
+
readonly value: "yyyy-MM-dd";
|
|
2603
2850
|
readonly fieldType: "text";
|
|
2604
|
-
readonly markdownTooltip: "### Output format\t\t\t\t\nSee date-fns format for more information. By default, it is 'dd
|
|
2851
|
+
readonly markdownTooltip: "### Output format\t\t\t\t\nSee date-fns format for more information. By default, it is 'yyyy-MM-dd'\n\n| Format | Result | Description |\n| ----------- | ----------- | ----------- |\n| dd \t\t\t\t| 01, 02, ..., 31 | Day of the month |\n| d \t\t\t\t| 1, 2, ..., 31 | Day of the month |\n| MM \t\t\t\t| 01, 02, ..., 12 | Month |\n| MMM \t\t\t\t| Jan, Feb, ..., Dec | Month |\n| MMMM \t\t\t\t| January, February, ..., December | Month |\n| yyyy \t\t\t\t| 2021, 2022, ... | Year |\n";
|
|
2605
2852
|
readonly documentationLink: "https://date-fns.org/v2.30.0/docs/format";
|
|
2606
|
-
readonly placeholder: "dd
|
|
2853
|
+
readonly placeholder: "yyyy-MM-dd";
|
|
2607
2854
|
};
|
|
2608
2855
|
};
|
|
2609
2856
|
};
|
|
@@ -3211,7 +3458,7 @@ export declare const components: {
|
|
|
3211
3458
|
readonly type: "static";
|
|
3212
3459
|
readonly selectOptions: ("blue" | "red" | "dark" | "light" | "green" | "gray" | "none")[];
|
|
3213
3460
|
readonly value: "blue";
|
|
3214
|
-
readonly tooltip: "
|
|
3461
|
+
readonly tooltip: "These presets can be overwritten with custom styles.";
|
|
3215
3462
|
};
|
|
3216
3463
|
readonly buttonSize: {
|
|
3217
3464
|
readonly fieldType: "select";
|
|
@@ -3286,7 +3533,7 @@ export declare const components: {
|
|
|
3286
3533
|
readonly fieldType: "boolean";
|
|
3287
3534
|
readonly type: "static";
|
|
3288
3535
|
readonly value: false;
|
|
3289
|
-
readonly tooltip: "This will
|
|
3536
|
+
readonly tooltip: "This will display the type and/or the format on the field next to the label.";
|
|
3290
3537
|
};
|
|
3291
3538
|
readonly largeGap: {
|
|
3292
3539
|
readonly fieldType: "boolean";
|
|
@@ -3719,6 +3966,12 @@ export declare const components: {
|
|
|
3719
3966
|
readonly value: false;
|
|
3720
3967
|
readonly tooltip: "When true, actions will wrap to the next line. Otherwise, the column will grow to fit the actions.";
|
|
3721
3968
|
};
|
|
3969
|
+
readonly footer: {
|
|
3970
|
+
readonly type: "static";
|
|
3971
|
+
readonly fieldType: "boolean";
|
|
3972
|
+
readonly value: true;
|
|
3973
|
+
readonly tooltip: "Allow visible footer for pagination and download";
|
|
3974
|
+
};
|
|
3722
3975
|
};
|
|
3723
3976
|
readonly componentInput: undefined;
|
|
3724
3977
|
};
|