@newview/ui 1.1.71 → 1.1.72
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/README.md +3 -0
- package/dist/newview-ui.js +13 -4
- package/dist/newview-ui.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +71 -71
package/README.md
CHANGED
package/dist/newview-ui.js
CHANGED
|
@@ -33214,7 +33214,7 @@ let GridColumnInstance$1 = class GridColumnInstance2 extends BaseInstance {
|
|
|
33214
33214
|
}
|
|
33215
33215
|
};
|
|
33216
33216
|
const GridColumn_vue_vue_type_style_index_0_lang$1 = "";
|
|
33217
|
-
const
|
|
33217
|
+
const GridColumn_vue_vue_type_style_index_1_scoped_f60410ba_lang = "";
|
|
33218
33218
|
const _hoisted_1$h = { class: "gridColumn" };
|
|
33219
33219
|
const _hoisted_2$e = {
|
|
33220
33220
|
key: 3,
|
|
@@ -33504,7 +33504,7 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33504
33504
|
field: column.field,
|
|
33505
33505
|
"min-width": column.minWidth,
|
|
33506
33506
|
width: column.width,
|
|
33507
|
-
align:
|
|
33507
|
+
align: _ctx.getAlign(column),
|
|
33508
33508
|
fixed: "right"
|
|
33509
33509
|
}, {
|
|
33510
33510
|
header: withCtx(() => [
|
|
@@ -33532,7 +33532,7 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33532
33532
|
}, 1024)
|
|
33533
33533
|
]),
|
|
33534
33534
|
_: 2
|
|
33535
|
-
}, 1032, ["field", "min-width", "width"])) : (openBlock(), createBlock(_component_vxe_column, {
|
|
33535
|
+
}, 1032, ["field", "min-width", "width", "align"])) : (openBlock(), createBlock(_component_vxe_column, {
|
|
33536
33536
|
key: 6,
|
|
33537
33537
|
field: column.field,
|
|
33538
33538
|
"min-width": column.minWidth,
|
|
@@ -33574,7 +33574,7 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33574
33574
|
}), 256))
|
|
33575
33575
|
]);
|
|
33576
33576
|
}
|
|
33577
|
-
const GridColumn$1 = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$m], ["__scopeId", "data-v-
|
|
33577
|
+
const GridColumn$1 = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$m], ["__scopeId", "data-v-f60410ba"]]);
|
|
33578
33578
|
const _sfc_main$l = defineComponent({
|
|
33579
33579
|
name: "FilterDaterange",
|
|
33580
33580
|
props: {
|
|
@@ -218770,6 +218770,15 @@ class ModalInstance extends BaseInstance {
|
|
|
218770
218770
|
// 响应式方法 | xxx = () => {}
|
|
218771
218771
|
__publicField2(this, "visibleChange", (flag) => {
|
|
218772
218772
|
var _a;
|
|
218773
|
+
if (window.parent != window) {
|
|
218774
|
+
nextTick(() => {
|
|
218775
|
+
window.parent.postMessage({
|
|
218776
|
+
command: "modalVisibleChange",
|
|
218777
|
+
// data:$(".ivu-modal-mask:visible").length>0
|
|
218778
|
+
data: flag
|
|
218779
|
+
}, "*");
|
|
218780
|
+
});
|
|
218781
|
+
}
|
|
218773
218782
|
if (flag) {
|
|
218774
218783
|
this.getWidth();
|
|
218775
218784
|
const layoutContent = (_a = document.getElementsByClassName("ivu-layout-content")[0]) == null ? void 0 : _a.getBoundingClientRect();
|