@airpower/web 1.7.6 → 1.8.0
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/copy/Copy.vue.d.ts +2 -2
- package/dist/main.js +10 -4
- package/dist/model/RootEntity.d.ts +4 -0
- package/dist/web.css +2 -2
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
27
27
|
*/
|
|
28
28
|
wrap: {
|
|
29
29
|
type: BooleanConstructor;
|
|
30
|
-
default:
|
|
30
|
+
default: undefined;
|
|
31
31
|
};
|
|
32
32
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
33
|
/**
|
|
@@ -49,7 +49,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
49
49
|
*/
|
|
50
50
|
wrap: {
|
|
51
51
|
type: BooleanConstructor;
|
|
52
|
-
default:
|
|
52
|
+
default: undefined;
|
|
53
53
|
};
|
|
54
54
|
}>> & Readonly<{}>, {
|
|
55
55
|
wrap: boolean;
|
package/dist/main.js
CHANGED
|
@@ -2397,7 +2397,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
2397
2397
|
*/
|
|
2398
2398
|
wrap: {
|
|
2399
2399
|
type: Boolean,
|
|
2400
|
-
default:
|
|
2400
|
+
default: void 0
|
|
2401
2401
|
}
|
|
2402
2402
|
},
|
|
2403
2403
|
setup(__props) {
|
|
@@ -2434,7 +2434,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
2434
2434
|
}
|
|
2435
2435
|
return target;
|
|
2436
2436
|
};
|
|
2437
|
-
const ACopy = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-
|
|
2437
|
+
const ACopy = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-c29001d4"]]);
|
|
2438
2438
|
var cryptoJs$1 = { exports: {} };
|
|
2439
2439
|
function commonjsRequire(path) {
|
|
2440
2440
|
throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
@@ -17446,13 +17446,13 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
17446
17446
|
return (_ctx, _cache) => {
|
|
17447
17447
|
return openBlock(), createBlock(unref(ACopy), {
|
|
17448
17448
|
content: value.value,
|
|
17449
|
-
|
|
17449
|
+
wrap: _ctx.column.wrap
|
|
17450
17450
|
}, {
|
|
17451
17451
|
default: withCtx(() => [
|
|
17452
17452
|
createTextVNode(toDisplayString(value.value), 1)
|
|
17453
17453
|
]),
|
|
17454
17454
|
_: 1
|
|
17455
|
-
}, 8, ["content", "
|
|
17455
|
+
}, 8, ["content", "wrap"]);
|
|
17456
17456
|
};
|
|
17457
17457
|
}
|
|
17458
17458
|
});
|
|
@@ -19763,6 +19763,12 @@ class RootEntity extends RootModel {
|
|
|
19763
19763
|
this.isDisabled = isDisabled;
|
|
19764
19764
|
return this;
|
|
19765
19765
|
}
|
|
19766
|
+
/**
|
|
19767
|
+
* ### 只暴露ID
|
|
19768
|
+
*/
|
|
19769
|
+
exposeOnlyId() {
|
|
19770
|
+
return super.expose("id");
|
|
19771
|
+
}
|
|
19766
19772
|
}
|
|
19767
19773
|
__decorateClass([
|
|
19768
19774
|
Field({
|
package/dist/web.css
CHANGED
|
@@ -442,14 +442,14 @@ textarea {
|
|
|
442
442
|
100% {
|
|
443
443
|
transform: rotate(360deg);
|
|
444
444
|
}
|
|
445
|
-
}.a-copy[data-v-
|
|
445
|
+
}.a-copy[data-v-c29001d4] {
|
|
446
446
|
font-size: inherit;
|
|
447
447
|
color: inherit;
|
|
448
448
|
display: flex;
|
|
449
449
|
flex-direction: row;
|
|
450
450
|
align-items: center;
|
|
451
451
|
}
|
|
452
|
-
.a-copy[data-v-
|
|
452
|
+
.a-copy[data-v-c29001d4] .el-link {
|
|
453
453
|
overflow: hidden;
|
|
454
454
|
text-overflow: ellipsis;
|
|
455
455
|
}.a-friend-datetime[data-v-f4449296],
|