This commit is contained in:
Adria Navarro 2025-02-20 11:18:40 +01:00
parent 93a65b6289
commit a84044e6a1
6 changed files with 11 additions and 9 deletions

View File

@ -3,7 +3,8 @@
import { convertToJS } from "@budibase/string-templates"
import { Input, Layout, Icon, Popover } from "@budibase/bbui"
import { handlebarsCompletions } from "@/constants/completions"
import { BindingMode, EnrichedBinding, Helper } from "@budibase/types"
import type { EnrichedBinding, Helper } from "@budibase/types";
import { BindingMode } from "@budibase/types"
export let addHelper: (helper: Helper, js?: boolean) => void
export let addBinding: (binding: EnrichedBinding) => void

View File

@ -2,9 +2,7 @@
import { getContext } from "svelte"
import { Pagination, ProgressCircle } from "@budibase/bbui"
import { fetchData, QueryUtils } from "@budibase/frontend-core"
import {
LogicalOperator,
EmptyFilterOption,
import type {
TableSchema,
SortOrder,
SearchFilters,
@ -12,7 +10,10 @@
DataFetchDatasource,
UserDatasource,
GroupUserDatasource,
DataFetchOptions,
DataFetchOptions} from "@budibase/types";
import {
LogicalOperator,
EmptyFilterOption
} from "@budibase/types"
type ProviderDatasource = Exclude<

View File

@ -4,7 +4,7 @@
import { Utils } from "@budibase/frontend-core"
import FormBlockWrapper from "./FormBlockWrapper.svelte"
import { get } from "svelte/store"
import { TableSchema, UIDatasource } from "@budibase/types"
import type { TableSchema, UIDatasource } from "@budibase/types"
type Field = { name: string; active: boolean }

View File

@ -1,7 +1,7 @@
<script lang="ts">
import { getContext } from "svelte"
import { Icon } from "@budibase/bbui"
import { UIComponentError } from "@budibase/types"
import type { UIComponentError } from "@budibase/types"
import ComponentErrorStateCta from "./ComponentErrorStateCTA.svelte"
export let componentErrors: UIComponentError[] | undefined

View File

@ -1,6 +1,6 @@
<script lang="ts">
import { getContext } from "svelte"
import { UIComponentError } from "@budibase/types"
import type { UIComponentError } from "@budibase/types"
export let error: UIComponentError | undefined

View File

@ -6,7 +6,7 @@
import { findComponentById } from "@/utils/components.js"
import { isGridEvent } from "@/utils/grid"
import { DNDPlaceholderID } from "@/constants"
import { Component } from "@budibase/types"
import type { Component } from "@budibase/types"
type ChildCoords = {
placeholder: boolean