star-horse-lowcode 2.7.68 → 2.7.70
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/assets/index.css +1 -1
- package/dist/index.es.js +5 -3
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -70502,7 +70502,7 @@ const _sfc_main$1K = /* @__PURE__ */ defineComponent({
|
|
|
70502
70502
|
);
|
|
70503
70503
|
let isFullScreen = ref(props.fullScreen);
|
|
70504
70504
|
const dialogStyle = computed(() => {
|
|
70505
|
-
return { "
|
|
70505
|
+
return { "height": isFullScreen.value ? "100%" : props.boxHeight };
|
|
70506
70506
|
});
|
|
70507
70507
|
const beforeClose = () => {
|
|
70508
70508
|
emits("closeAction");
|
|
@@ -70761,7 +70761,7 @@ const _sfc_main$1K = /* @__PURE__ */ defineComponent({
|
|
|
70761
70761
|
|
|
70762
70762
|
/* unplugin-vue-components disabled */
|
|
70763
70763
|
|
|
70764
|
-
const __unplugin_components_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$1K, [["__scopeId", "data-v-
|
|
70764
|
+
const __unplugin_components_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$1K, [["__scopeId", "data-v-82fe5996"]]);
|
|
70765
70765
|
|
|
70766
70766
|
const StarHorseDialog = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
70767
70767
|
__proto__: null,
|
|
@@ -70894,6 +70894,7 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
|
|
|
70894
70894
|
dataList: []
|
|
70895
70895
|
});
|
|
70896
70896
|
const loadData = () => {
|
|
70897
|
+
if (!props.dataUrl) return;
|
|
70897
70898
|
let params = {
|
|
70898
70899
|
currentPage: pageInfo.currentPage,
|
|
70899
70900
|
pageSize: props.pageSize || 0,
|
|
@@ -70919,6 +70920,7 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
|
|
|
70919
70920
|
dialogVisible.value = true;
|
|
70920
70921
|
};
|
|
70921
70922
|
const onOpen = () => {
|
|
70923
|
+
dataOrgOptions.value = [];
|
|
70922
70924
|
if (props.datas?.length > 0) {
|
|
70923
70925
|
dataOrgOptions.value = props.datas;
|
|
70924
70926
|
} else {
|
|
@@ -71157,7 +71159,7 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
|
|
|
71157
71159
|
|
|
71158
71160
|
/* unplugin-vue-components disabled */
|
|
71159
71161
|
|
|
71160
|
-
const DataPicker = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["__scopeId", "data-v-
|
|
71162
|
+
const DataPicker = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["__scopeId", "data-v-457ef2fd"]]);
|
|
71161
71163
|
|
|
71162
71164
|
const _hoisted_1$V = { class: "data-wrapper" };
|
|
71163
71165
|
const _hoisted_2$I = { class: "tooltip-content" };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7085,10 +7085,10 @@ default: string;
|
|
|
7085
7085
|
data: any;
|
|
7086
7086
|
title: string;
|
|
7087
7087
|
size: string;
|
|
7088
|
+
height: number;
|
|
7088
7089
|
width: number;
|
|
7089
7090
|
color: string;
|
|
7090
7091
|
cursor: string;
|
|
7091
|
-
height: number;
|
|
7092
7092
|
backgroundColor: string;
|
|
7093
7093
|
borderOffset: number;
|
|
7094
7094
|
borderColor: string;
|
|
@@ -7727,8 +7727,8 @@ onRemoveData?: (...args: any[]) => any;
|
|
|
7727
7727
|
onChangeCollapse?: (...args: any[]) => any;
|
|
7728
7728
|
"onUpdate:treeDatas"?: (value: any) => any;
|
|
7729
7729
|
}>, {
|
|
7730
|
-
checkStrictly: boolean;
|
|
7731
7730
|
height: number;
|
|
7731
|
+
checkStrictly: boolean;
|
|
7732
7732
|
preps: any;
|
|
7733
7733
|
showCheckBox: boolean;
|
|
7734
7734
|
expand: boolean;
|