@vipl520/dk-ui 1.0.79 → 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.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,
|
@@ -29659,7 +29647,6 @@
|
|
29659
29647
|
const props = __props;
|
29660
29648
|
const urlInputData = vue.inject("urlInputData", []);
|
29661
29649
|
const _urlData = vue.computed(() => {
|
29662
|
-
console.log("urlData", props.urlData);
|
29663
29650
|
if (props.urlData?.length > 0) {
|
29664
29651
|
return props.urlData;
|
29665
29652
|
} else {
|
@@ -30095,10 +30082,6 @@
|
|
30095
30082
|
UniIconInput,
|
30096
30083
|
UniIcon,
|
30097
30084
|
UrlInput
|
30098
|
-
// TODO 普通上传 upload
|
30099
|
-
// TODO tag选择器 tag-input
|
30100
|
-
// TODO 链接选择器 link-input
|
30101
|
-
// TODO 应用框架
|
30102
30085
|
];
|
30103
30086
|
const install = (app, option = {}) => {
|
30104
30087
|
components.forEach((item) => {
|