@baosight/er4j 0.0.68 → 0.0.69
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/er4j-dist/types/components/ErCheckboxGroup/ErCheckboxGroup.vue.d.ts +181 -181
- package/er4j-dist/types/components/ErDialog/DialogBase.vue.d.ts +6 -6
- package/er4j-dist/types/components/ErDialog/ErDialog.vue.d.ts +15 -15
- package/er4j-dist/types/components/ErFormToolbar/ErFormToolbar.vue.d.ts +241 -241
- package/er4j-dist/types/components/ErGrid/ErGrid.vue.d.ts +3952 -0
- package/er4j-dist/types/components/ErGridCellEditor/ButtonEditor.vue.d.ts +314 -314
- package/er4j-dist/types/components/ErGridCellEditor/ColorEditor.vue.d.ts +1 -1
- package/er4j-dist/types/components/ErGridCellEditor/DatetimeEditor.vue.d.ts +374 -374
- package/er4j-dist/types/components/ErGridCellEditor/DropdownEditor.vue.d.ts +254 -254
- package/er4j-dist/types/components/ErGridCellEditor/LargeTextEditor.vue.d.ts +185 -185
- package/er4j-dist/types/components/ErGridCellEditor/NumberEditor.vue.d.ts +322 -322
- package/er4j-dist/types/components/ErGridCellEditor/TextEditor.vue.d.ts +256 -256
- package/er4j-dist/types/components/ErGridCellRender/ButtonGroup.vue.d.ts +1889 -0
- package/er4j-dist/types/components/ErGridCellRender/CardRender.vue.d.ts +2942 -0
- package/er4j-dist/types/components/ErGridCellRender/DefaultRender.vue.d.ts +214 -214
- package/er4j-dist/types/components/ErGridCellRender/ImagePreview.vue.d.ts +241 -241
- package/er4j-dist/types/components/ErGridCellRender/SwitchRender.vue.d.ts +1563 -0
- package/er4j-dist/types/components/ErGridStatusBar/InformationPanel.vue.d.ts +58 -58
- package/er4j-dist/types/components/ErGridStatusBar/ToolbarPanel.vue.d.ts +1889 -0
- package/er4j-dist/types/components/ErLayout/ErLayout.vue.d.ts +16362 -0
- package/er4j-dist/types/components/ErLayoutDesign/ErLayoutDesign.vue.d.ts +3040 -0
- package/er4j-dist/types/components/ErMemoEditor/ErMemoEditor.vue.d.ts +385 -385
- package/er4j-dist/types/components/ErMenuDevPlat/CustomCellRenderer.vue.d.ts +1873 -0
- package/er4j-dist/types/components/ErMenuDevPlat/ErMenuDevPlat.vue.d.ts +8913 -0
- package/er4j-dist/types/components/ErPanel/ErPanel.vue.d.ts +1827 -0
- package/er4j-dist/types/components/ErPopFree/ErPopFree.vue.d.ts +43 -43
- package/er4j-dist/types/components/ErPopQuery/ErPopQuery.vue.d.ts +3186 -0
- package/er4j-dist/types/components/ErPopRichEditor/ErPopRichEditor.vue.d.ts +798 -798
- package/er4j-dist/types/components/ErPopTree/ErPopTree.vue.d.ts +2877 -0
- package/er4j-dist/types/components/ErRadioGroup/ErRadioGroup.vue.d.ts +178 -178
- package/er4j-dist/types/components/ErSelect/ErSelect.vue.d.ts +606 -606
- package/er4j-dist/types/components/ErTree/ErTree.vue.d.ts +203 -203
- package/er4j-dist/types/utils/er.d.ts +2 -2
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
};
|
|
14
14
|
parentFormRef: {
|
|
15
15
|
type: any;
|
|
16
|
-
default:
|
|
16
|
+
default: any;
|
|
17
17
|
};
|
|
18
18
|
modalZIndex: {
|
|
19
19
|
type: NumberConstructor;
|
|
@@ -82,7 +82,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
82
82
|
};
|
|
83
83
|
parentFormRef: {
|
|
84
84
|
type: any;
|
|
85
|
-
default:
|
|
85
|
+
default: any;
|
|
86
86
|
};
|
|
87
87
|
modalZIndex: {
|
|
88
88
|
type: NumberConstructor;
|
|
@@ -137,14 +137,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
137
137
|
default: string[];
|
|
138
138
|
};
|
|
139
139
|
}>> & Readonly<{
|
|
140
|
-
onOpen?: (
|
|
141
|
-
onClickClose?: (
|
|
142
|
-
onFormResize?: (
|
|
140
|
+
onOpen?: (...args: any[]) => any;
|
|
141
|
+
onClickClose?: (...args: any[]) => any;
|
|
142
|
+
onFormResize?: (...args: any[]) => any;
|
|
143
143
|
}>, {
|
|
144
144
|
title: string;
|
|
145
|
-
draggable: boolean;
|
|
146
145
|
width: string | number;
|
|
147
146
|
height: string | number;
|
|
147
|
+
draggable: boolean;
|
|
148
148
|
actions: unknown[];
|
|
149
149
|
formName: string;
|
|
150
150
|
message: Record<string, any>;
|
|
@@ -45,7 +45,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
45
|
};
|
|
46
46
|
parentFormRef: {
|
|
47
47
|
type: any;
|
|
48
|
-
default:
|
|
48
|
+
default: any;
|
|
49
49
|
};
|
|
50
50
|
resizable: {
|
|
51
51
|
type: BooleanConstructor;
|
|
@@ -227,7 +227,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
227
227
|
};
|
|
228
228
|
parentFormRef: {
|
|
229
229
|
type: any;
|
|
230
|
-
default:
|
|
230
|
+
default: any;
|
|
231
231
|
};
|
|
232
232
|
resizable: {
|
|
233
233
|
type: BooleanConstructor;
|
|
@@ -254,18 +254,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
254
254
|
default: string;
|
|
255
255
|
};
|
|
256
256
|
}>> & Readonly<{
|
|
257
|
-
onCancel?: (
|
|
258
|
-
"onUpdate:visible"?: (
|
|
259
|
-
onOpen?: (
|
|
260
|
-
onConfirm?: (
|
|
261
|
-
onClickCloseIcon?: (
|
|
262
|
-
onDialogResize?: (
|
|
257
|
+
onCancel?: (...args: any[]) => any;
|
|
258
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
259
|
+
onOpen?: (...args: any[]) => any;
|
|
260
|
+
onConfirm?: (...args: any[]) => any;
|
|
261
|
+
onClickCloseIcon?: (...args: any[]) => any;
|
|
262
|
+
onDialogResize?: (...args: any[]) => any;
|
|
263
263
|
}>, {
|
|
264
264
|
id: string;
|
|
265
265
|
title: string;
|
|
266
|
-
draggable: boolean;
|
|
267
266
|
width: string | number;
|
|
268
267
|
height: string | number;
|
|
268
|
+
draggable: boolean;
|
|
269
269
|
destroyOnClose: boolean;
|
|
270
270
|
actions: unknown[];
|
|
271
271
|
formName: string;
|
|
@@ -294,7 +294,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
294
294
|
};
|
|
295
295
|
parentFormRef: {
|
|
296
296
|
type: any;
|
|
297
|
-
default:
|
|
297
|
+
default: any;
|
|
298
298
|
};
|
|
299
299
|
modalZIndex: {
|
|
300
300
|
type: NumberConstructor;
|
|
@@ -363,7 +363,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
363
363
|
};
|
|
364
364
|
parentFormRef: {
|
|
365
365
|
type: any;
|
|
366
|
-
default:
|
|
366
|
+
default: any;
|
|
367
367
|
};
|
|
368
368
|
modalZIndex: {
|
|
369
369
|
type: NumberConstructor;
|
|
@@ -418,14 +418,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
418
418
|
default: string[];
|
|
419
419
|
};
|
|
420
420
|
}>> & Readonly<{
|
|
421
|
-
onOpen?: (
|
|
422
|
-
onClickClose?: (
|
|
423
|
-
onFormResize?: (
|
|
421
|
+
onOpen?: (...args: any[]) => any;
|
|
422
|
+
onClickClose?: (...args: any[]) => any;
|
|
423
|
+
onFormResize?: (...args: any[]) => any;
|
|
424
424
|
}>, {
|
|
425
425
|
title: string;
|
|
426
|
-
draggable: boolean;
|
|
427
426
|
width: string | number;
|
|
428
427
|
height: string | number;
|
|
428
|
+
draggable: boolean;
|
|
429
429
|
actions: unknown[];
|
|
430
430
|
formName: string;
|
|
431
431
|
message: Record<string, any>;
|