@vipl520/dk-ui 1.0.80 → 1.0.82
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 +3 -19
- 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 +3 -19
- 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/select/src/select.vue2.mjs +2 -1
- package/es/select/src/select.vue2.mjs.map +1 -1
- 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/select/src/select.vue2.js +2 -1
- package/lib/select/src/select.vue2.js.map +1 -1
- 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.js
CHANGED
@@ -5532,17 +5532,6 @@
|
|
5532
5532
|
default: true,
|
5533
5533
|
type: Boolean
|
5534
5534
|
}
|
5535
|
-
// showEl: {
|
5536
|
-
// default: true,
|
5537
|
-
// type: Boolean,
|
5538
|
-
// },
|
5539
|
-
// showVant: {
|
5540
|
-
// default: true,
|
5541
|
-
// type: Boolean,
|
5542
|
-
// },
|
5543
|
-
// showCloud:{
|
5544
|
-
//
|
5545
|
-
// }
|
5546
5535
|
};
|
5547
5536
|
const iconContentProps = {
|
5548
5537
|
icon: { default: "", type: String },
|
@@ -25287,7 +25276,6 @@
|
|
25287
25276
|
const props = __props;
|
25288
25277
|
const DkTable = vue.inject("DkTable");
|
25289
25278
|
const fieldName = vue.ref(props.field.prop);
|
25290
|
-
console.log("fieldName.value", fieldName.value);
|
25291
25279
|
const fieldValue = vue.ref(props.row[fieldName.value] ?? "");
|
25292
25280
|
if (fieldName.value && fieldName.value.indexOf(".") > -1) {
|
25293
25281
|
const fieldNameArr = fieldName.value.split(".");
|
@@ -26134,7 +26122,7 @@
|
|
26134
26122
|
vue.withDirectives((vue.openBlock(), vue.createBlock(_component_el_table, vue.mergeProps({
|
26135
26123
|
ref_key: "TableRef",
|
26136
26124
|
ref: TableRef,
|
26137
|
-
class: "dk-data-table
|
26125
|
+
class: "dk-data-table",
|
26138
26126
|
"header-cell-class-name": "table-header-cell",
|
26139
26127
|
"default-expand-all": vue.unref(DkTable).table.expandAll,
|
26140
26128
|
data: vue.unref(DkTable).table.data,
|
@@ -26658,7 +26646,8 @@
|
|
26658
26646
|
data: { query, select: 1 }
|
26659
26647
|
},
|
26660
26648
|
{
|
26661
|
-
code_success_show: false
|
26649
|
+
code_success_show: false,
|
26650
|
+
repeat_request_cancel: false
|
26662
26651
|
}
|
26663
26652
|
).then((res) => {
|
26664
26653
|
internalOptions.value = res.data;
|
@@ -29659,7 +29648,6 @@
|
|
29659
29648
|
const props = __props;
|
29660
29649
|
const urlInputData = vue.inject("urlInputData", []);
|
29661
29650
|
const _urlData = vue.computed(() => {
|
29662
|
-
console.log("urlData", props.urlData);
|
29663
29651
|
if (props.urlData?.length > 0) {
|
29664
29652
|
return props.urlData;
|
29665
29653
|
} else {
|
@@ -30095,10 +30083,6 @@
|
|
30095
30083
|
UniIconInput,
|
30096
30084
|
UniIcon,
|
30097
30085
|
UrlInput
|
30098
|
-
// TODO 普通上传 upload
|
30099
|
-
// TODO tag选择器 tag-input
|
30100
|
-
// TODO 链接选择器 link-input
|
30101
|
-
// TODO 应用框架
|
30102
30086
|
];
|
30103
30087
|
const install = (app, option = {}) => {
|
30104
30088
|
components.forEach((item) => {
|