zsysview 0.1.11 → 0.1.13
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/{backup-DM0EkxUB.js → backup-BiLoey95.js} +1 -1
- package/dist/{building-maEf9WDq.js → building-BcGLhNOi.js} +1 -1
- package/dist/{change_password-aM7lGXWr.js → change_password-DfYWwVoK.js} +1 -1
- package/dist/{department-DSbFHctn.js → department-D7EwhbOO.js} +1 -1
- package/dist/{help-D0k3E82G.js → help-BnAsSKLq.js} +1 -1
- package/dist/{index-8UWgPXVt.js → index-D5KAIOPC.js} +547 -394
- package/dist/{log-CopsHHG8.js → log-CbQ47aGY.js} +24 -14
- package/dist/{login-DX7I_KIe.js → login-BSH9Xd4k.js} +1 -1
- package/dist/{main-DfYggQII.js → main-Bbc5hIiY.js} +1 -1
- package/dist/{notification-B_KAXL7n.js → notification-C_9n_N5v.js} +16 -9
- package/dist/{position-CXYkSoYC.js → position-DFskDcl3.js} +86 -79
- package/dist/{role-BOYfRJx_.js → role-CfsfhmKi.js} +117 -110
- package/dist/{self-vu4DAdbI.js → self-8xQnyP7j.js} +1 -1
- package/dist/{systemsetting-9eOga7u7.js → systemsetting-BK-7trEN.js} +1 -1
- package/dist/{user-Cn4DmoFo.js → user-cO9fyb0O.js} +178 -158
- package/dist/{version-dB2nWB0e.js → version-CnryUp9o.js} +1 -1
- package/dist/zsysview.css +1 -1
- package/dist/zsysview.es.d.ts +31 -3
- package/dist/zsysview.es.js +1 -1
- package/package.json +1 -1
package/dist/zsysview.es.d.ts
CHANGED
|
@@ -19,7 +19,13 @@ module: {
|
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
|
-
|
|
22
|
+
pre_selection: {
|
|
23
|
+
type: PropType<SelectedItem[]>;
|
|
24
|
+
default: never[];
|
|
25
|
+
};
|
|
26
|
+
}>, {
|
|
27
|
+
GetSelectedItems: () => SelectedItem[];
|
|
28
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
23
29
|
config: {
|
|
24
30
|
type: ObjectConstructor;
|
|
25
31
|
required: true;
|
|
@@ -28,9 +34,16 @@ module: {
|
|
|
28
34
|
type: StringConstructor;
|
|
29
35
|
default: string;
|
|
30
36
|
};
|
|
37
|
+
pre_selection: {
|
|
38
|
+
type: PropType<SelectedItem[]>;
|
|
39
|
+
default: never[];
|
|
40
|
+
};
|
|
31
41
|
}>> & Readonly<{}>, {
|
|
32
42
|
module: string;
|
|
33
|
-
|
|
43
|
+
pre_selection: SelectedItem[];
|
|
44
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
45
|
+
tableRef: unknown;
|
|
46
|
+
}, HTMLDivElement>;
|
|
34
47
|
|
|
35
48
|
declare function __VLS_template(): {
|
|
36
49
|
attrs: Partial<{}>;
|
|
@@ -38,7 +51,9 @@ declare function __VLS_template(): {
|
|
|
38
51
|
headermain?(_: {}): any;
|
|
39
52
|
content?(_: {}): any;
|
|
40
53
|
};
|
|
41
|
-
refs: {
|
|
54
|
+
refs: {
|
|
55
|
+
tableRef: unknown;
|
|
56
|
+
};
|
|
42
57
|
rootEl: HTMLDivElement;
|
|
43
58
|
};
|
|
44
59
|
|
|
@@ -140,6 +155,13 @@ export declare interface ListConfig {
|
|
|
140
155
|
KeywordTip?: string;
|
|
141
156
|
ExportUrl?: string;
|
|
142
157
|
ExportColumn?: ExportColumn[];
|
|
158
|
+
HasCheckbox?: boolean;
|
|
159
|
+
ReserveSelection?: boolean;
|
|
160
|
+
RowIdKey?: string | ((row: any) => string);
|
|
161
|
+
RowTitleKey?: string;
|
|
162
|
+
CanRowSelect?: boolean;
|
|
163
|
+
SelectQuantity?: number;
|
|
164
|
+
LeftPanel?: boolean;
|
|
143
165
|
}
|
|
144
166
|
|
|
145
167
|
declare interface QuickConditionsGroup {
|
|
@@ -150,6 +172,11 @@ declare interface QuickConditionsGroup {
|
|
|
150
172
|
|
|
151
173
|
export declare const router: Router;
|
|
152
174
|
|
|
175
|
+
declare interface SelectedItem {
|
|
176
|
+
Title: string;
|
|
177
|
+
ID: bigint;
|
|
178
|
+
}
|
|
179
|
+
|
|
153
180
|
declare interface SqlQueryParam {
|
|
154
181
|
label: string;
|
|
155
182
|
column: string | null;
|
|
@@ -213,6 +240,7 @@ export declare const zsyslist: __VLS_WithTemplateSlots<typeof __VLS_component, _
|
|
|
213
240
|
export declare class ZSYSMessage {
|
|
214
241
|
static show(msgType: "success" | "warning" | "info" | "error" | undefined, msg: string): void;
|
|
215
242
|
static ShowInfo(msg: string): void;
|
|
243
|
+
static ShowWarn(msg: string): void;
|
|
216
244
|
static ShowSuccess(msg: string): void;
|
|
217
245
|
static ShowError(msg: string): void;
|
|
218
246
|
install: (app: App) => App<any>;
|
package/dist/zsysview.es.js
CHANGED