@kp-ui/lowcode 1.0.79 → 1.0.80
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.
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
if (typeof window !== "undefined") {
|
|
2
2
|
let loadSvg = function() {
|
|
3
3
|
var body = document.body;
|
|
4
|
-
var svgDom = document.getElementById("
|
|
4
|
+
var svgDom = document.getElementById("__svg__icons__dom__1750217174269__");
|
|
5
5
|
if (!svgDom) {
|
|
6
6
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
7
7
|
svgDom.style.position = "absolute";
|
|
8
8
|
svgDom.style.width = "0";
|
|
9
9
|
svgDom.style.height = "0";
|
|
10
|
-
svgDom.id = "
|
|
10
|
+
svgDom.id = "__svg__icons__dom__1750217174269__";
|
|
11
11
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
12
12
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"name": "@kp-ui/lowcode",
|
|
3
|
+
"version": "1.0.80",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"module": "index.js",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@element-plus/icons-vue": "^0.2.4",
|
|
10
|
+
"@kp-ui/tool": "1.0.27",
|
|
11
|
+
"@surely-vue/table": "^5.0.3",
|
|
12
|
+
"animate.css": "^4.1.1",
|
|
13
|
+
"ant-design-vue": "3.2.20",
|
|
14
|
+
"axios": "^1.3.5",
|
|
15
|
+
"bpmn-js": "13.2.0",
|
|
16
|
+
"clipboard": "^2.0.8",
|
|
17
|
+
"core-js": "^3.6.5",
|
|
18
|
+
"dayjs": "^1.11.10",
|
|
19
|
+
"file-saver": "^2.0.5",
|
|
20
|
+
"json-bigint": "^1.0.0",
|
|
21
|
+
"lodash-es": "^4.17.21",
|
|
22
|
+
"mitt": "^3.0.0",
|
|
23
|
+
"query-string": "^9.1.1",
|
|
24
|
+
"quill": "^2.0.3",
|
|
25
|
+
"sortablejs": "1.14.0",
|
|
26
|
+
"vue": "3.5.11"
|
|
27
|
+
},
|
|
28
|
+
"main": "index.js",
|
|
29
|
+
"types": "types/install.d.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"import": "./index.js",
|
|
33
|
+
"types": "./types/index.d.ts"
|
|
6
34
|
},
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"@surely-vue/table": "^5.0.3",
|
|
12
|
-
"animate.css": "^4.1.1",
|
|
13
|
-
"ant-design-vue": "3.2.20",
|
|
14
|
-
"axios": "^1.3.5",
|
|
15
|
-
"bpmn-js": "13.2.0",
|
|
16
|
-
"clipboard": "^2.0.8",
|
|
17
|
-
"core-js": "^3.6.5",
|
|
18
|
-
"dayjs": "^1.11.10",
|
|
19
|
-
"file-saver": "^2.0.5",
|
|
20
|
-
"json-bigint": "^1.0.0",
|
|
21
|
-
"lodash-es": "^4.17.21",
|
|
22
|
-
"mitt": "^3.0.0",
|
|
23
|
-
"query-string": "^9.1.1",
|
|
24
|
-
"quill": "^2.0.3",
|
|
25
|
-
"sortablejs": "1.14.0",
|
|
26
|
-
"vue": "3.5.11"
|
|
27
|
-
},
|
|
28
|
-
"main": "index.js",
|
|
29
|
-
"types": "types/install.d.d.ts",
|
|
30
|
-
"exports": {
|
|
31
|
-
".": {
|
|
32
|
-
"import": "./index.js",
|
|
33
|
-
"types": "./types/index.d.ts"
|
|
34
|
-
},
|
|
35
|
-
"./style": "./styles/style.css",
|
|
36
|
-
"./styles/*": "./styles/*",
|
|
37
|
-
"./src/*": "./src/*"
|
|
38
|
-
}
|
|
35
|
+
"./style": "./styles/style.css",
|
|
36
|
+
"./styles/*": "./styles/*",
|
|
37
|
+
"./src/*": "./src/*"
|
|
38
|
+
}
|
|
39
39
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { basicFieldsEnums } from "./basicFieldsEnums.js";
|
|
2
|
-
import { advancedFieldsEnums } from "./advancedFieldsEnums.js";
|
|
3
|
-
import * as index from "./containers/index.js";
|
|
4
2
|
import * as index$1 from "./business/index.js";
|
|
3
|
+
import * as index from "./containers/index.js";
|
|
4
|
+
import { advancedFieldsEnums } from "./advancedFieldsEnums.js";
|
|
5
5
|
const containers = Object.values(index).map((fn) => fn());
|
|
6
6
|
const basicFields = Object.values(basicFieldsEnums).map((fn) => fn());
|
|
7
7
|
const businessFields = Object.values(index$1).map((fn) => fn());
|
|
@@ -5,7 +5,7 @@ import comps from "../../form-designer/form-widget/field-widget/index.js";
|
|
|
5
5
|
import refMixin from "../refMixin.js";
|
|
6
6
|
import containerItemMixin from "./containerItemMixin.js";
|
|
7
7
|
import useDataTableMixin from "../../../mixins/useDataTableMixin.js";
|
|
8
|
-
import { resolveComponent, withDirectives, createBlock, openBlock, normalizeStyle, withCtx,
|
|
8
|
+
import { resolveComponent, withDirectives, createBlock, openBlock, normalizeStyle, withCtx, createVNode, normalizeClass, createCommentVNode, vShow } from "vue";
|
|
9
9
|
/* empty css */
|
|
10
10
|
/* empty css */
|
|
11
11
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
@@ -116,7 +116,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
116
116
|
widget: $props.widget
|
|
117
117
|
}, {
|
|
118
118
|
default: withCtx(() => [
|
|
119
|
-
createTextVNode(toDisplayString(_ctx.selectedRowInfo) + " ", 1),
|
|
120
119
|
createVNode(_component_s_table, {
|
|
121
120
|
class: normalizeClass(["tpf-surely-table", [_ctx.customClass]]),
|
|
122
121
|
ref: "dataTable2",
|
|
@@ -154,7 +153,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
154
153
|
[vShow, !_ctx.handleHidden()]
|
|
155
154
|
]);
|
|
156
155
|
}
|
|
157
|
-
const dataTableItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-
|
|
156
|
+
const dataTableItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-c36d66f6"]]);
|
|
158
157
|
export {
|
|
159
158
|
dataTableItem as default
|
|
160
159
|
};
|