service-flow-designer 1.1.0 → 1.1.1
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/dist/es/designer/desginer-index.vue.js +2 -2
- package/dist/es/index.d.ts +2 -1
- package/dist/es/index.js +4 -2
- package/dist/es/wf-editor/wf-editor.css +4 -0
- package/dist/es/wf-editor/wf-editor.vue.d.ts +2 -0
- package/dist/es/wf-editor/wf-editor.vue.js +16 -0
- package/dist/lib/designer/desginer-index.vue.js +2 -2
- package/dist/lib/index.d.ts +2 -1
- package/dist/lib/index.js +4 -1
- package/dist/lib/wf-editor/wf-editor.css +4 -0
- package/dist/lib/wf-editor/wf-editor.vue.d.ts +2 -0
- package/dist/lib/wf-editor/wf-editor.vue.js +15 -0
- package/package.json +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./desginer-index.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const desginerIndex = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9cfa34b7"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
desginerIndex as default
|
|
7
7
|
};
|
package/dist/es/index.d.ts
CHANGED
package/dist/es/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { default as default2 } from "./designer/desginer-index.vue.js";
|
|
2
|
+
import { default as default3 } from "./wf-editor/wf-editor.vue.js";
|
|
2
3
|
export {
|
|
3
|
-
|
|
4
|
+
default2 as ServiceFlowDesginer,
|
|
5
|
+
default3 as WfEditor
|
|
4
6
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, pushScopeId, popScopeId, createElementVNode } from "vue";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import _export_sfc from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const _sfc_main = {};
|
|
5
|
+
const _withScopeId = (n) => (pushScopeId("data-v-e87c59d8"), n = n(), popScopeId(), n);
|
|
6
|
+
const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("button", null, "Editoraaaaa", -1));
|
|
7
|
+
const _hoisted_2 = [
|
|
8
|
+
_hoisted_1
|
|
9
|
+
];
|
|
10
|
+
function _sfc_render(_ctx, _cache) {
|
|
11
|
+
return openBlock(), createElementBlock("div", null, _hoisted_2);
|
|
12
|
+
}
|
|
13
|
+
const wfEditor = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-e87c59d8"]]);
|
|
14
|
+
export {
|
|
15
|
+
wfEditor as default
|
|
16
|
+
};
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
const desginerIndex_vue_vue_type_script_setup_true_lang = require("./desginer-index.vue2.js");
|
|
3
3
|
;/* empty css */
|
|
4
4
|
const _pluginVue_exportHelper = require("../_virtual/_plugin-vue_export-helper.js");
|
|
5
|
-
const
|
|
6
|
-
module.exports =
|
|
5
|
+
const desginerIndex = /* @__PURE__ */ _pluginVue_exportHelper(desginerIndex_vue_vue_type_script_setup_true_lang, [["__scopeId", "data-v-9cfa34b7"]]);
|
|
6
|
+
module.exports = desginerIndex;
|
package/dist/lib/index.d.ts
CHANGED
package/dist/lib/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
3
|
const desginerIndex = ;/* empty css */
|
|
3
|
-
|
|
4
|
+
const wfEditor = require("./wf-editor/wf-editor.vue.js");
|
|
5
|
+
exports.ServiceFlowDesginer = desginerIndex;
|
|
6
|
+
exports.WfEditor = wfEditor;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const vue = require("vue");
|
|
3
|
+
;/* empty css */
|
|
4
|
+
const _pluginVue_exportHelper = require("../_virtual/_plugin-vue_export-helper.js");
|
|
5
|
+
const _sfc_main = {};
|
|
6
|
+
const _withScopeId = (n) => (vue.pushScopeId("data-v-e87c59d8"), n = n(), vue.popScopeId(), n);
|
|
7
|
+
const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("button", null, "Editoraaaaa", -1));
|
|
8
|
+
const _hoisted_2 = [
|
|
9
|
+
_hoisted_1
|
|
10
|
+
];
|
|
11
|
+
function _sfc_render(_ctx, _cache) {
|
|
12
|
+
return vue.openBlock(), vue.createElementBlock("div", null, _hoisted_2);
|
|
13
|
+
}
|
|
14
|
+
const wfEditor = /* @__PURE__ */ _pluginVue_exportHelper(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-e87c59d8"]]);
|
|
15
|
+
module.exports = wfEditor;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "service-flow-designer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "AgileBuilder Service Flow Designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/lib/index.js",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"cypress": "^13.6.6",
|
|
28
28
|
"eslint-plugin-cypress": "^2.15.1",
|
|
29
29
|
"jsdom": "^24.0.0",
|
|
30
|
+
"pinia": "^2.1.7",
|
|
30
31
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
31
32
|
"start-server-and-test": "^2.0.3",
|
|
32
33
|
"unplugin-auto-import": "^0.17.5",
|