@opentinyvue/vue-flowchart 3.21.0 → 3.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import { defineComponent, props, directive, setup, emitter, h, isVue3, $prefix, $props, $setup } from '@opentinyvue/vue-common';
2
2
  import { renderless, api } from '@opentinyvue/vue-renderless/flowchart/vue';
3
- import Clickoutside from '@opentinyvue/vue-renderless/common/deps/clickoutside';
3
+ import { Clickoutside } from '@opentinyvue/vue-directive';
4
4
  import { IconYes, IconClose, iconNotStartedMini, iconNotStarted, iconOnGoingMini, iconOnGoing, iconExceptionMiniO, iconExceptionO, iconDoneMini, iconDone } from '@opentinyvue/vue-icon';
5
5
  import Popover from '@opentinyvue/vue-popover';
6
6
  import { renderless as renderless$1, api as api$1 } from '@opentinyvue/vue-renderless/flowchart/node';
7
7
  import { openBlock, createElementBlock, normalizeClass, normalizeStyle, createElementVNode, createBlock, resolveDynamicComponent, Fragment, renderList, toDisplayString, createCommentVNode } from 'vue';
8
- import ResizeObserver from '@opentinyvue/vue-renderless/common/deps/ResizeObserver';
8
+ import { ResizeObserver } from '@opentinyvue/utils';
9
9
  import '@opentinyvue/vue-theme/flowchart/index.css';
10
10
 
11
11
  var _sfc_main$2 = defineComponent({
@@ -709,7 +709,7 @@ var resizeMixin = function resizeMixin2(_ref) {
709
709
  }
710
710
  };
711
711
  };
712
- var version = "3.21.0";
712
+ var version = "3.22.0";
713
713
  Flowchart.install = function(Vue) {
714
714
  Vue.component(Flowchart.name, Flowchart);
715
715
  };
@@ -1,5 +1,5 @@
1
- import { renderless, api } from "@opentinyvue/vue-renderless/flowchart/vue";
2
- import { defineComponent, props, setup as _setup, emitter, h, isVue3 } from "@opentinyvue/vue-common";
1
+ import { api, renderless } from "@opentinyvue/vue-renderless/flowchart/vue";
2
+ import { defineComponent, props, h, setup as _setup, emitter, isVue3 } from "@opentinyvue/vue-common";
3
3
  import Popover from "@opentinyvue/vue-popover";
4
4
  var getRenderLabel = function getRenderLabel2(_ref) {
5
5
  var omitText = _ref.omitText, font = _ref.font, width = _ref.width, padding = _ref.padding, popoverProps = _ref.popoverProps;
package/lib/pc.js CHANGED
@@ -1,6 +1,6 @@
1
- import { renderless, api } from "@opentinyvue/vue-renderless/flowchart/vue";
2
- import Clickoutside from "@opentinyvue/vue-renderless/common/deps/clickoutside";
3
- import { defineComponent, props, directive, setup as _setup, emitter, h } from "@opentinyvue/vue-common";
1
+ import { api, renderless } from "@opentinyvue/vue-renderless/flowchart/vue";
2
+ import { Clickoutside } from "@opentinyvue/vue-directive";
3
+ import { defineComponent, directive, props, h, setup as _setup, emitter } from "@opentinyvue/vue-common";
4
4
  import { IconYes, IconClose } from "@opentinyvue/vue-icon";
5
5
  var _sfc_main = defineComponent({
6
6
  emits: ["click-node", "click-link", "click-blank"],
package/package.json CHANGED
@@ -1,19 +1,21 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-flowchart",
3
- "version": "3.21.0",
3
+ "type": "module",
4
+ "version": "3.22.0",
4
5
  "description": "",
6
+ "license": "MIT",
7
+ "sideEffects": false,
5
8
  "main": "./lib/index.js",
6
9
  "module": "./lib/index.js",
7
- "sideEffects": false,
8
- "type": "module",
9
10
  "dependencies": {
10
- "@opentinyvue/vue-common": "~3.21.0",
11
- "@opentinyvue/vue-icon": "~3.21.0",
12
- "@opentinyvue/vue-popover": "~3.21.0",
13
- "@opentinyvue/vue-renderless": "~3.21.0",
14
- "@opentinyvue/vue-theme": "~3.21.0"
11
+ "@opentinyvue/utils": "~3.22.0",
12
+ "@opentinyvue/vue-common": "~3.22.0",
13
+ "@opentinyvue/vue-directive": "~3.22.0",
14
+ "@opentinyvue/vue-icon": "~3.22.0",
15
+ "@opentinyvue/vue-popover": "~3.22.0",
16
+ "@opentinyvue/vue-renderless": "~3.22.0",
17
+ "@opentinyvue/vue-theme": "~3.22.0"
15
18
  },
16
- "license": "MIT",
17
19
  "types": "index.d.ts",
18
20
  "scripts": {
19
21
  "build": "pnpm -w build:ui $npm_package_name",