mirror of https://github.com/Budibase/budibase.git
8 changed files with 34 additions and 22 deletions
@ -1,7 +1,7 @@ |
|||
<script> |
|||
import { onMount, onDestroy } from "svelte" |
|||
import IndicatorSet from "./IndicatorSet.svelte" |
|||
import { builderStore } from "../store" |
|||
import { builderStore } from "../../store" |
|||
|
|||
let componentId |
|||
$: zIndex = componentId === $builderStore.selectedComponentId ? 900 : 920 |
|||
@ -1,7 +1,7 @@ |
|||
<script> |
|||
import { onMount, onDestroy } from "svelte" |
|||
import Indicator from "./Indicator.svelte" |
|||
import { domDebounce } from "../utils/domDebounce" |
|||
import { domDebounce } from "../../utils/domDebounce" |
|||
|
|||
export let componentId |
|||
export let color |
|||
@ -1,5 +1,5 @@ |
|||
<script> |
|||
import { builderStore } from "../store" |
|||
import { builderStore } from "../../store" |
|||
import IndicatorSet from "./IndicatorSet.svelte" |
|||
</script> |
|||
|
|||
@ -1,6 +1,6 @@ |
|||
<script> |
|||
import { Icon } from "@budibase/bbui" |
|||
import { builderStore } from "../store" |
|||
import { builderStore } from "../../store" |
|||
|
|||
export let prop |
|||
export let value |
|||
Loading…
Reference in new issue