knt-shared 1.6.4 → 1.6.6
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/components/Description/BasicDescription.vue.d.ts.map +1 -1
- package/dist/components/Description/types.d.ts +6 -0
- package/dist/components/Description/types.d.ts.map +1 -1
- package/dist/components/Upload/types.d.ts +2 -0
- package/dist/components/Upload/types.d.ts.map +1 -1
- package/dist/index.cjs.js +13 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/style.css +7 -7
- package/dist/utils/url.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -8233,7 +8233,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
8233
8233
|
align: { default: "left" },
|
|
8234
8234
|
style: {},
|
|
8235
8235
|
class: {},
|
|
8236
|
-
extra: {}
|
|
8236
|
+
extra: {},
|
|
8237
|
+
tableLayout: {},
|
|
8238
|
+
labelStyle: {},
|
|
8239
|
+
valueStyle: {}
|
|
8237
8240
|
},
|
|
8238
8241
|
emits: ["register"],
|
|
8239
8242
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
@@ -8279,7 +8282,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
8279
8282
|
align: propsData.align,
|
|
8280
8283
|
colon: propsData.colon,
|
|
8281
8284
|
style: propsData.style,
|
|
8282
|
-
class: propsData.class
|
|
8285
|
+
class: propsData.class,
|
|
8286
|
+
tableLayout: propsData.tableLayout,
|
|
8287
|
+
labelStyle: propsData.labelStyle,
|
|
8288
|
+
valueStyle: propsData.valueStyle
|
|
8283
8289
|
};
|
|
8284
8290
|
});
|
|
8285
8291
|
const getSchema = computed(() => {
|
|
@@ -8413,7 +8419,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
8413
8419
|
};
|
|
8414
8420
|
}
|
|
8415
8421
|
});
|
|
8416
|
-
const BasicDescription = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-
|
|
8422
|
+
const BasicDescription = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-f100005c"]]);
|
|
8417
8423
|
function useDescription(props) {
|
|
8418
8424
|
const descriptionRef = ref(null);
|
|
8419
8425
|
const loadedRef = ref(false);
|
|
@@ -9078,13 +9084,15 @@ function transformBackUrl(transferUrl, config) {
|
|
|
9078
9084
|
if (isString(transferUrl)) {
|
|
9079
9085
|
resultObj = {
|
|
9080
9086
|
url: transferUrl,
|
|
9081
|
-
path: void 0
|
|
9087
|
+
path: void 0,
|
|
9088
|
+
status: "done"
|
|
9082
9089
|
};
|
|
9083
9090
|
} else if (isObject(transferUrl)) {
|
|
9084
9091
|
const fileObj = transferUrl;
|
|
9085
9092
|
resultObj = {
|
|
9086
9093
|
url: fileObj[mergedConfig.fullFilePath],
|
|
9087
|
-
path: fileObj[mergedConfig.filePath]
|
|
9094
|
+
path: fileObj[mergedConfig.filePath],
|
|
9095
|
+
status: "done"
|
|
9088
9096
|
};
|
|
9089
9097
|
} else {
|
|
9090
9098
|
return void 0;
|