@vipl520/dk-ui 1.0.80 → 1.0.81
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/attributes.json +183 -59
- package/dist/index.css +1 -1
- package/dist/index.js +1 -18
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +1 -18
- package/dist/tags.json +50 -34
- package/dist/web-types.json +383 -225
- package/es/icon-input/src/props.mjs +0 -11
- package/es/icon-input/src/props.mjs.map +1 -1
- package/es/index.mjs +0 -4
- package/es/index.mjs.map +1 -1
- package/es/index.scss +311 -67
- package/es/table/src/components/FieldRender.vue2.mjs +0 -1
- package/es/table/src/components/FieldRender.vue2.mjs.map +1 -1
- package/es/table/src/table.vue2.mjs +1 -1
- package/es/table/src/table.vue2.mjs.map +1 -1
- package/es/url-input/src/url-input-content.vue2.mjs +0 -1
- package/es/url-input/src/url-input-content.vue2.mjs.map +1 -1
- package/lib/icon-input/src/props.js +0 -11
- package/lib/icon-input/src/props.js.map +1 -1
- package/lib/index.js +0 -4
- package/lib/index.js.map +1 -1
- package/lib/index.scss +311 -67
- package/lib/table/src/components/FieldRender.vue2.js +0 -1
- package/lib/table/src/components/FieldRender.vue2.js.map +1 -1
- package/lib/table/src/table.vue2.js +1 -1
- package/lib/table/src/table.vue2.js.map +1 -1
- package/lib/url-input/src/url-input-content.vue2.js +0 -1
- package/lib/url-input/src/url-input-content.vue2.js.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -5520,17 +5520,6 @@ const iconInputProps = {
|
|
5520
5520
|
default: true,
|
5521
5521
|
type: Boolean
|
5522
5522
|
}
|
5523
|
-
// showEl: {
|
5524
|
-
// default: true,
|
5525
|
-
// type: Boolean,
|
5526
|
-
// },
|
5527
|
-
// showVant: {
|
5528
|
-
// default: true,
|
5529
|
-
// type: Boolean,
|
5530
|
-
// },
|
5531
|
-
// showCloud:{
|
5532
|
-
//
|
5533
|
-
// }
|
5534
5523
|
};
|
5535
5524
|
const iconContentProps = {
|
5536
5525
|
icon: { default: "", type: String },
|
@@ -25275,7 +25264,6 @@ var _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
25275
25264
|
const props = __props;
|
25276
25265
|
const DkTable = inject("DkTable");
|
25277
25266
|
const fieldName = ref(props.field.prop);
|
25278
|
-
console.log("fieldName.value", fieldName.value);
|
25279
25267
|
const fieldValue = ref(props.row[fieldName.value] ?? "");
|
25280
25268
|
if (fieldName.value && fieldName.value.indexOf(".") > -1) {
|
25281
25269
|
const fieldNameArr = fieldName.value.split(".");
|
@@ -26122,7 +26110,7 @@ var _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
26122
26110
|
withDirectives((openBlock(), createBlock(_component_el_table, mergeProps({
|
26123
26111
|
ref_key: "TableRef",
|
26124
26112
|
ref: TableRef,
|
26125
|
-
class: "dk-data-table
|
26113
|
+
class: "dk-data-table",
|
26126
26114
|
"header-cell-class-name": "table-header-cell",
|
26127
26115
|
"default-expand-all": unref(DkTable).table.expandAll,
|
26128
26116
|
data: unref(DkTable).table.data,
|
@@ -29647,7 +29635,6 @@ var _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
29647
29635
|
const props = __props;
|
29648
29636
|
const urlInputData = inject("urlInputData", []);
|
29649
29637
|
const _urlData = computed(() => {
|
29650
|
-
console.log("urlData", props.urlData);
|
29651
29638
|
if (props.urlData?.length > 0) {
|
29652
29639
|
return props.urlData;
|
29653
29640
|
} else {
|
@@ -30083,10 +30070,6 @@ const components = [
|
|
30083
30070
|
UniIconInput,
|
30084
30071
|
UniIcon,
|
30085
30072
|
UrlInput
|
30086
|
-
// TODO 普通上传 upload
|
30087
|
-
// TODO tag选择器 tag-input
|
30088
|
-
// TODO 链接选择器 link-input
|
30089
|
-
// TODO 应用框架
|
30090
30073
|
];
|
30091
30074
|
const install = (app, option = {}) => {
|
30092
30075
|
components.forEach((item) => {
|
package/dist/tags.json
CHANGED
@@ -1,11 +1,4 @@
|
|
1
1
|
{
|
2
|
-
"dk-animate-select": {
|
3
|
-
"attributes": [
|
4
|
-
"type",
|
5
|
-
"click"
|
6
|
-
],
|
7
|
-
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#animateselect)"
|
8
|
-
},
|
9
2
|
"dk-attachment": {
|
10
3
|
"attributes": [
|
11
4
|
"type",
|
@@ -26,15 +19,24 @@
|
|
26
19
|
},
|
27
20
|
"dk-audio-input": {
|
28
21
|
"attributes": [
|
29
|
-
"
|
30
|
-
"
|
22
|
+
"modelValue",
|
23
|
+
"placeholder",
|
24
|
+
"showInput",
|
25
|
+
"imgSize",
|
26
|
+
"accept",
|
27
|
+
"click",
|
28
|
+
"input",
|
29
|
+
"change"
|
31
30
|
],
|
32
31
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#audioinput)"
|
33
32
|
},
|
34
33
|
"dk-audio-list-input": {
|
35
34
|
"attributes": [
|
36
35
|
"type",
|
37
|
-
"
|
36
|
+
"disabled",
|
37
|
+
"limit",
|
38
|
+
"imgSize",
|
39
|
+
"accept"
|
38
40
|
],
|
39
41
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#audiolistinput)"
|
40
42
|
},
|
@@ -45,13 +47,6 @@
|
|
45
47
|
],
|
46
48
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#boxsizeinput)"
|
47
49
|
},
|
48
|
-
"dk-color-input": {
|
49
|
-
"attributes": [
|
50
|
-
"type",
|
51
|
-
"click"
|
52
|
-
],
|
53
|
-
"description": "[Docs](https://github.com/vipl520/dk-starter/components/project/#colorinput)"
|
54
|
-
},
|
55
50
|
"dk-dialog": {
|
56
51
|
"attributes": [
|
57
52
|
"fullscreen",
|
@@ -85,7 +80,6 @@
|
|
85
80
|
},
|
86
81
|
"dk-file-input": {
|
87
82
|
"attributes": [
|
88
|
-
"type",
|
89
83
|
"modelValue",
|
90
84
|
"placeholder",
|
91
85
|
"showInput",
|
@@ -97,13 +91,6 @@
|
|
97
91
|
],
|
98
92
|
"description": "附件选择器,可以快捷选择服务器中的附件资源,包含文件、图片、音频、视频等。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#fileinput)"
|
99
93
|
},
|
100
|
-
"dk-file-list-input": {
|
101
|
-
"attributes": [
|
102
|
-
"type",
|
103
|
-
"click"
|
104
|
-
],
|
105
|
-
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#filelistinput)"
|
106
|
-
},
|
107
94
|
"dk-form": {
|
108
95
|
"attributes": [
|
109
96
|
"formData",
|
@@ -153,15 +140,24 @@
|
|
153
140
|
},
|
154
141
|
"dk-image-input": {
|
155
142
|
"attributes": [
|
156
|
-
"
|
157
|
-
"
|
143
|
+
"modelValue",
|
144
|
+
"placeholder",
|
145
|
+
"showInput",
|
146
|
+
"imgSize",
|
147
|
+
"accept",
|
148
|
+
"click",
|
149
|
+
"input",
|
150
|
+
"change"
|
158
151
|
],
|
159
152
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#imageinput)"
|
160
153
|
},
|
161
154
|
"dk-image-list-input": {
|
162
155
|
"attributes": [
|
163
156
|
"type",
|
164
|
-
"
|
157
|
+
"disabled",
|
158
|
+
"limit",
|
159
|
+
"imgSize",
|
160
|
+
"accept"
|
165
161
|
],
|
166
162
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#imagelistinput)"
|
167
163
|
},
|
@@ -230,7 +226,11 @@
|
|
230
226
|
},
|
231
227
|
"dk-style-input": {
|
232
228
|
"attributes": [
|
233
|
-
"
|
229
|
+
"components",
|
230
|
+
"hideComponents",
|
231
|
+
"isDrawer",
|
232
|
+
"drawerProps",
|
233
|
+
"drawerText",
|
234
234
|
"click"
|
235
235
|
],
|
236
236
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#styleinput)"
|
@@ -284,7 +284,15 @@
|
|
284
284
|
},
|
285
285
|
"dk-tiny-editor": {
|
286
286
|
"attributes": [
|
287
|
-
"
|
287
|
+
"disabled",
|
288
|
+
"modelValue",
|
289
|
+
"height",
|
290
|
+
"document",
|
291
|
+
"buttonText",
|
292
|
+
"showDialogWidth",
|
293
|
+
"update:modelValue",
|
294
|
+
"input",
|
295
|
+
"change",
|
288
296
|
"click"
|
289
297
|
],
|
290
298
|
"description": "[Docs](https://github.com/vipl520/dk-starter/components/project/#tinyeditor)"
|
@@ -305,22 +313,30 @@
|
|
305
313
|
},
|
306
314
|
"dk-url-input": {
|
307
315
|
"attributes": [
|
308
|
-
"type",
|
309
316
|
"click"
|
310
317
|
],
|
311
318
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#urlinput)"
|
312
319
|
},
|
313
320
|
"dk-video-input": {
|
314
321
|
"attributes": [
|
315
|
-
"
|
316
|
-
"
|
322
|
+
"modelValue",
|
323
|
+
"placeholder",
|
324
|
+
"showInput",
|
325
|
+
"imgSize",
|
326
|
+
"accept",
|
327
|
+
"click",
|
328
|
+
"input",
|
329
|
+
"change"
|
317
330
|
],
|
318
331
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#videoinput)"
|
319
332
|
},
|
320
333
|
"dk-video-list-input": {
|
321
334
|
"attributes": [
|
322
335
|
"type",
|
323
|
-
"
|
336
|
+
"disabled",
|
337
|
+
"limit",
|
338
|
+
"imgSize",
|
339
|
+
"accept"
|
324
340
|
],
|
325
341
|
"description": "组件描述组件描述组件描述组件描述组件描述组件描述。\n\n[Docs](https://github.com/vipl520/dk-starter/components/project/#videolistinput)"
|
326
342
|
}
|