@dazhicheng/ui 1.5.7 → 1.5.9
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/tt-table/src/Table.vue.d.ts +3 -9
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +3 -9
- package/dist/components/tt-table/src/props.d.ts +2 -5
- package/dist/components/tt-table/src/toolProps.d.ts +2 -6
- package/dist/{index-CMjNBMj5.js → index-NG5FNCLD.js} +2 -3
- package/dist/index.js +502 -542
- package/package.json +2 -4
|
@@ -754,10 +754,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
754
754
|
default: () => string | undefined;
|
|
755
755
|
};
|
|
756
756
|
isHanderSubmit: any;
|
|
757
|
-
columnsKey:
|
|
758
|
-
type: import('vue').PropType<string | (() => string)>;
|
|
759
|
-
default: string;
|
|
760
|
-
};
|
|
757
|
+
columnsKey: any;
|
|
761
758
|
useHttpCache: {
|
|
762
759
|
type: BooleanConstructor;
|
|
763
760
|
default: () => boolean | undefined;
|
|
@@ -1035,10 +1032,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1035
1032
|
default: () => string | undefined;
|
|
1036
1033
|
};
|
|
1037
1034
|
isHanderSubmit: any;
|
|
1038
|
-
columnsKey:
|
|
1039
|
-
type: import('vue').PropType<string | (() => string)>;
|
|
1040
|
-
default: string;
|
|
1041
|
-
};
|
|
1035
|
+
columnsKey: any;
|
|
1042
1036
|
useHttpCache: {
|
|
1043
1037
|
type: BooleanConstructor;
|
|
1044
1038
|
default: () => boolean | undefined;
|
|
@@ -1127,7 +1121,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1127
1121
|
emptyImageStyle: any;
|
|
1128
1122
|
emptyImageStatus: "no-data" | "no-search";
|
|
1129
1123
|
isHanderSubmit: any;
|
|
1130
|
-
columnsKey:
|
|
1124
|
+
columnsKey: any;
|
|
1131
1125
|
showSetting: boolean;
|
|
1132
1126
|
showSetColumn: boolean;
|
|
1133
1127
|
leftSlotWidth: any;
|
|
@@ -761,10 +761,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
761
761
|
type: BooleanConstructor;
|
|
762
762
|
default: boolean;
|
|
763
763
|
};
|
|
764
|
-
columnsKey:
|
|
765
|
-
type: import('vue').PropType<string | (() => string)>;
|
|
766
|
-
default: string;
|
|
767
|
-
};
|
|
764
|
+
columnsKey: any;
|
|
768
765
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
769
766
|
"on-refresh": () => any;
|
|
770
767
|
"on-columns-setting": () => any;
|
|
@@ -781,15 +778,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
781
778
|
type: BooleanConstructor;
|
|
782
779
|
default: boolean;
|
|
783
780
|
};
|
|
784
|
-
columnsKey:
|
|
785
|
-
type: import('vue').PropType<string | (() => string)>;
|
|
786
|
-
default: string;
|
|
787
|
-
};
|
|
781
|
+
columnsKey: any;
|
|
788
782
|
}>> & Readonly<{
|
|
789
783
|
"onOn-refresh"?: (() => any) | undefined;
|
|
790
784
|
"onOn-columns-setting"?: (() => any) | undefined;
|
|
791
785
|
}>, {
|
|
792
|
-
columnsKey:
|
|
786
|
+
columnsKey: any;
|
|
793
787
|
showSetting: boolean;
|
|
794
788
|
showSetColumn: boolean;
|
|
795
789
|
showRefresh: boolean;
|
|
@@ -214,11 +214,8 @@ export declare const tableProps: {
|
|
|
214
214
|
};
|
|
215
215
|
/** 是否手动触发查询事件 */
|
|
216
216
|
isHanderSubmit: any;
|
|
217
|
-
/** 储存的key
|
|
218
|
-
columnsKey:
|
|
219
|
-
type: PropType<string | (() => string)>;
|
|
220
|
-
default: string;
|
|
221
|
-
};
|
|
217
|
+
/** 储存的key值 */
|
|
218
|
+
columnsKey: any;
|
|
222
219
|
/** 是否开启服务端缓存 */
|
|
223
220
|
useHttpCache: {
|
|
224
221
|
type: BooleanConstructor;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
1
|
export declare const toolProps: {
|
|
3
2
|
/** 是否显示设置 */
|
|
4
3
|
showSetting: {
|
|
@@ -15,9 +14,6 @@ export declare const toolProps: {
|
|
|
15
14
|
type: BooleanConstructor;
|
|
16
15
|
default: boolean;
|
|
17
16
|
};
|
|
18
|
-
/** 储存的key
|
|
19
|
-
columnsKey:
|
|
20
|
-
type: PropType<string | (() => string)>;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
17
|
+
/** 储存的key */
|
|
18
|
+
columnsKey: any;
|
|
23
19
|
};
|
|
@@ -229,7 +229,7 @@ class $n {
|
|
|
229
229
|
o = this._deprecatedHooks[t], t = o.to;
|
|
230
230
|
if (o && !u.allowDeprecated) {
|
|
231
231
|
let i = o.message;
|
|
232
|
-
i || (i = `${r} hook has been deprecated` + (o.to ? `, please use ${o.to}` : "")), this._deprecatedMessages || (this._deprecatedMessages = /* @__PURE__ */ new Set()), this._deprecatedMessages.has(i) ||
|
|
232
|
+
i || (i = `${r} hook has been deprecated` + (o.to ? `, please use ${o.to}` : "")), this._deprecatedMessages || (this._deprecatedMessages = /* @__PURE__ */ new Set()), this._deprecatedMessages.has(i) || this._deprecatedMessages.add(i);
|
|
233
233
|
}
|
|
234
234
|
if (!n.name)
|
|
235
235
|
try {
|
|
@@ -2359,7 +2359,6 @@ function Nu(e = {}) {
|
|
|
2359
2359
|
fetch(`${A}__open-in-editor?file=${encodeURI(r)}`).then((d) => {
|
|
2360
2360
|
if (!d.ok) {
|
|
2361
2361
|
const m = `Opening component ${p} failed`;
|
|
2362
|
-
console.log(`%c${m}`, "color:red");
|
|
2363
2362
|
}
|
|
2364
2363
|
});
|
|
2365
2364
|
} else if (T.vitePluginDetected) {
|
|
@@ -2989,7 +2988,7 @@ function R(e, t, n, u) {
|
|
|
2989
2988
|
var pn = [
|
|
2990
2989
|
R(fn, "undefined", () => null, () => {
|
|
2991
2990
|
}),
|
|
2992
|
-
R(Er, "bigint", (e) => e.toString(), (e) => typeof BigInt < "u" ? BigInt(e) :
|
|
2991
|
+
R(Er, "bigint", (e) => e.toString(), (e) => typeof BigInt < "u" ? BigInt(e) : e),
|
|
2993
2992
|
R(_r, "Date", (e) => e.toISOString(), (e) => new Date(e)),
|
|
2994
2993
|
R(fr, "Error", (e, t) => {
|
|
2995
2994
|
const n = {
|