Lint fix
This commit is contained in:
parent
93a65b6289
commit
a84044e6a1
|
@ -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
|
||||
|
|
|
@ -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<
|
||||
|
|
|
@ -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 }
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue