fix: try to deploy as package...

This commit is contained in:
Braks
2021-07-09 21:54:05 +02:00
parent 5eff860573
commit 99548a0dba
39 changed files with 161 additions and 120 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { computed, CSSProperties, defineComponent, PropType } from 'vue';
import { computed, CSSProperties, defineComponent, PropType } from 'vue-demi';
import EdgeText from './EdgeText';
+1 -1
View File
@@ -1,5 +1,5 @@
import { Position } from '../../types';
import { defineComponent, HTMLAttributes, PropType } from 'vue';
import { defineComponent, HTMLAttributes, PropType } from 'vue-demi';
const shiftX = (x: number, shift: number, position: Position): number => {
if (position === Position.Left) return x - shift;
+1 -1
View File
@@ -1,5 +1,5 @@
import { EdgeTextProps, Rect } from '../../types';
import { defineComponent, PropType, ref, watch } from 'vue';
import { defineComponent, PropType, ref, watch } from 'vue-demi';
const EdgeText = defineComponent({
props: {
+1 -1
View File
@@ -1,4 +1,4 @@
import { defineComponent } from 'vue';
import { defineComponent } from 'vue-demi';
import EdgeText from './EdgeText';
import { getMarkerEnd, getCenter } from './utils';
+1 -1
View File
@@ -1,4 +1,4 @@
import { defineComponent } from 'vue';
import { defineComponent } from 'vue-demi';
import { EdgeSmoothStepProps } from '../../types';
import SmoothStepEdge from './SmoothStepEdge';
+1 -1
View File
@@ -1,4 +1,4 @@
import { defineComponent } from 'vue';
import { defineComponent } from 'vue-demi';
import EdgeText from './EdgeText';
import { getMarkerEnd } from './utils';
+1 -1
View File
@@ -1,4 +1,4 @@
import { Component, computed, defineComponent, ref } from 'vue';
import { Component, computed, defineComponent, ref } from 'vue-demi';
import store from '../../store';
import { Edge, EdgeProps, Position, WrapEdgeProps } from '../../types';