mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 00:11:45 +03:00
b286adaae4
# Important Notes The command to run the gui dev environment has been changed. Invoking the old command will print a message about that. From now on, use `pnpm dev:gui2` in repository root.
26 lines
701 B
Vue
26 lines
701 B
Vue
<script setup lang="ts">
|
|
import SelectionBrush from '@/components/SelectionBrush.vue'
|
|
import SelectionBrushWrapper from './SelectionBrushWrapper.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="Selection Brush"
|
|
group="graph"
|
|
:layout="{ type: 'single', iframe: false }"
|
|
responsiveDisabled
|
|
autoPropsDisabled
|
|
>
|
|
<SelectionBrushWrapper>
|
|
<template #default="{ scaledMousePos, scaledSelectionAnchor, navigator }">
|
|
<SelectionBrush
|
|
v-if="scaledMousePos"
|
|
:position="scaledMousePos"
|
|
:anchor="scaledSelectionAnchor"
|
|
:transform="navigator.prescaledTransform"
|
|
/>
|
|
</template>
|
|
</SelectionBrushWrapper>
|
|
</Story>
|
|
</template>
|