@baosight/er4j 0.0.62 → 0.0.65
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/ErLayoutDesign-CC0yvsjD.js +509 -0
- package/er4j-dist/ErLayoutDesign-CC0yvsjD.js.map +1 -0
- package/er4j-dist/ErPopFree-C3uuZUuH.js +5 -0
- package/er4j-dist/ErPopFree-C3uuZUuH.js.map +1 -0
- package/er4j-dist/ErPopQuery-ClFrpsZp.js +5 -0
- package/er4j-dist/ErPopQuery-ClFrpsZp.js.map +1 -0
- package/er4j-dist/ErPopRichEditor-TmGNQykK.js +5 -0
- package/er4j-dist/ErPopRichEditor-TmGNQykK.js.map +1 -0
- package/er4j-dist/ErPopTree-bOqqtvvs.js +5 -0
- package/er4j-dist/ErPopTree-bOqqtvvs.js.map +1 -0
- package/er4j-dist/er4j.css +1 -1
- package/er4j-dist/er4j.es.js +19 -48372
- package/er4j-dist/er4j.es.js.map +1 -1
- package/er4j-dist/er4j.umd.js +52 -52
- package/er4j-dist/er4j.umd.js.map +1 -1
- package/er4j-dist/index-B5COEF9u.js +48903 -0
- package/er4j-dist/index-B5COEF9u.js.map +1 -0
- package/er4j-dist/types/components/ErDialog/DialogBase.vue.d.ts +1 -1
- package/er4j-dist/types/components/ErDialog/ErDialog.vue.d.ts +1 -1
- package/er4j-dist/types/components/ErGridCellEditor/DropdownEditor.vue.d.ts +1 -0
- package/er4j-dist/types/components/ErGridCellEditor/NumberEditor.vue.d.ts +3 -3
- package/er4j-dist/types/components/ErLayout/ErLayout.vue.d.ts +2283 -8
- package/er4j-dist/types/components/ErLayoutDesign/ErLayoutDesign.vue.d.ts +3040 -0
- package/er4j-dist/types/components/ErMemoEditor/ErMemoEditor.vue.d.ts +2 -2
- package/er4j-dist/types/components/ErPanel/ErPanel.vue.d.ts +1323 -24
- package/er4j-dist/types/components/ErPopFree/ErPopFree.vue.d.ts +2 -2
- package/er4j-dist/types/components/ErPopQuery/ErPopQuery.vue.d.ts +1301 -3
- package/er4j-dist/types/components/ErPopRichEditor/ErPopRichEditor.vue.d.ts +99 -6
- package/er4j-dist/types/components/ErPopTree/ErPopTree.vue.d.ts +1301 -3
- package/er4j-dist/types/utils/er.d.ts +12 -20
- package/er4j-dist/types/utils/theme.d.ts +5 -0
- package/package.json +8 -7
- package/src/views/JA/ER/JAER02.vue +10 -3
- package/er4j-dist/ErPopFree-D0387she.js +0 -5
- package/er4j-dist/ErPopFree-D0387she.js.map +0 -1
- package/er4j-dist/ErPopQuery-DWj-lb5u.js +0 -5
- package/er4j-dist/ErPopQuery-DWj-lb5u.js.map +0 -1
- package/er4j-dist/ErPopRichEditor-CdDc0Cvo.js +0 -5
- package/er4j-dist/ErPopRichEditor-CdDc0Cvo.js.map +0 -1
- package/er4j-dist/ErPopTree-2Ab-Nxgb.js +0 -5
- package/er4j-dist/ErPopTree-2Ab-Nxgb.js.map +0 -1
|
@@ -36,10 +36,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
36
36
|
require: boolean;
|
|
37
37
|
};
|
|
38
38
|
}>> & Readonly<{}>, {
|
|
39
|
+
content: string;
|
|
39
40
|
options: {
|
|
40
41
|
[key: string]: any;
|
|
41
42
|
};
|
|
42
|
-
content: string;
|
|
43
43
|
popRichEditorProps: ER.PopRichEditor;
|
|
44
44
|
}, {}, {
|
|
45
45
|
ErDialog: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -470,9 +470,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
470
470
|
draggable: boolean;
|
|
471
471
|
width: string | number;
|
|
472
472
|
height: string | number;
|
|
473
|
-
message: Record<string, any>;
|
|
474
473
|
actions: unknown[];
|
|
475
474
|
formName: string;
|
|
475
|
+
message: Record<string, any>;
|
|
476
476
|
sameAppformName: string;
|
|
477
477
|
parentFormRef: any;
|
|
478
478
|
modalZIndex: number;
|
|
@@ -845,7 +845,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
845
845
|
readonly previewPrefixCls?: string | undefined;
|
|
846
846
|
readonly previewMask?: false | (() => any) | undefined;
|
|
847
847
|
readonly fallback?: string | undefined;
|
|
848
|
-
readonly decoding?: "auto" | "async" | "sync" | undefined;
|
|
848
|
+
/** @type { [typeof __VLS_components.AInputPassword, typeof __VLS_components.aInputPassword, ] } */ readonly decoding?: "auto" | "async" | "sync" | undefined;
|
|
849
849
|
readonly sizes?: string | undefined;
|
|
850
850
|
readonly usemap?: string | undefined;
|
|
851
851
|
readonly referrerpolicy?: "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
@@ -1213,7 +1213,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1213
1213
|
default: any;
|
|
1214
1214
|
};
|
|
1215
1215
|
danger: {
|
|
1216
|
-
type: BooleanConstructor;
|
|
1216
|
+
/** @type { typeof __VLS_ctx.dialogRef } */ type: BooleanConstructor;
|
|
1217
1217
|
default: any;
|
|
1218
1218
|
};
|
|
1219
1219
|
icon: import('vue-types').VueTypeValidableDef<any>;
|
|
@@ -3344,7 +3344,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3344
3344
|
maxlength: NumberConstructor;
|
|
3345
3345
|
loading: {
|
|
3346
3346
|
type: BooleanConstructor;
|
|
3347
|
-
|
|
3347
|
+
default: any;
|
|
3348
3348
|
};
|
|
3349
3349
|
bordered: {
|
|
3350
3350
|
type: BooleanConstructor;
|
|
@@ -5158,6 +5158,99 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
5158
5158
|
autosize: any;
|
|
5159
5159
|
autoSize: any;
|
|
5160
5160
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5161
|
+
Codemirror: import('vue').DefineComponent<{
|
|
5162
|
+
modelValue: {
|
|
5163
|
+
type: StringConstructor;
|
|
5164
|
+
default: string;
|
|
5165
|
+
};
|
|
5166
|
+
autofocus: {
|
|
5167
|
+
type: BooleanConstructor;
|
|
5168
|
+
default: undefined;
|
|
5169
|
+
};
|
|
5170
|
+
disabled: {
|
|
5171
|
+
type: BooleanConstructor;
|
|
5172
|
+
default: undefined;
|
|
5173
|
+
};
|
|
5174
|
+
indentWithTab: {
|
|
5175
|
+
type: BooleanConstructor;
|
|
5176
|
+
default: undefined;
|
|
5177
|
+
};
|
|
5178
|
+
tabSize: NumberConstructor;
|
|
5179
|
+
placeholder: StringConstructor;
|
|
5180
|
+
style: import('vue').PropType<import('vue').CSSProperties>;
|
|
5181
|
+
autoDestroy: {
|
|
5182
|
+
type: BooleanConstructor;
|
|
5183
|
+
default: undefined;
|
|
5184
|
+
};
|
|
5185
|
+
phrases: import('vue').PropType<Record<string, string>>;
|
|
5186
|
+
root: import('vue').PropType<Document | ShadowRoot>;
|
|
5187
|
+
extensions: import('vue').PropType<import('@codemirror/state').Extension | undefined>;
|
|
5188
|
+
selection: import('vue').PropType<import('@codemirror/state').EditorSelection | {
|
|
5189
|
+
anchor: number;
|
|
5190
|
+
head?: number | undefined;
|
|
5191
|
+
} | undefined>;
|
|
5192
|
+
}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
5193
|
+
[key: string]: any;
|
|
5194
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5195
|
+
"update:modelValue": (value: string, viewUpdate: import('@codemirror/view').ViewUpdate) => boolean;
|
|
5196
|
+
change: (value: string, viewUpdate: import('@codemirror/view').ViewUpdate) => boolean;
|
|
5197
|
+
update: (viewUpdate: import('@codemirror/view').ViewUpdate) => boolean;
|
|
5198
|
+
focus: (viewUpdate: import('@codemirror/view').ViewUpdate) => boolean;
|
|
5199
|
+
blur: (viewUpdate: import('@codemirror/view').ViewUpdate) => boolean;
|
|
5200
|
+
ready: (payload: {
|
|
5201
|
+
view: import('@codemirror/view').EditorView;
|
|
5202
|
+
state: import('@codemirror/state').EditorState;
|
|
5203
|
+
container: HTMLDivElement;
|
|
5204
|
+
}) => boolean;
|
|
5205
|
+
}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
5206
|
+
modelValue: {
|
|
5207
|
+
type: StringConstructor;
|
|
5208
|
+
default: string;
|
|
5209
|
+
};
|
|
5210
|
+
autofocus: {
|
|
5211
|
+
type: BooleanConstructor;
|
|
5212
|
+
default: undefined;
|
|
5213
|
+
};
|
|
5214
|
+
disabled: {
|
|
5215
|
+
type: BooleanConstructor;
|
|
5216
|
+
default: undefined;
|
|
5217
|
+
};
|
|
5218
|
+
indentWithTab: {
|
|
5219
|
+
type: BooleanConstructor;
|
|
5220
|
+
default: undefined;
|
|
5221
|
+
};
|
|
5222
|
+
tabSize: NumberConstructor;
|
|
5223
|
+
placeholder: StringConstructor;
|
|
5224
|
+
style: import('vue').PropType<import('vue').CSSProperties>;
|
|
5225
|
+
autoDestroy: {
|
|
5226
|
+
type: BooleanConstructor;
|
|
5227
|
+
default: undefined;
|
|
5228
|
+
};
|
|
5229
|
+
phrases: import('vue').PropType<Record<string, string>>;
|
|
5230
|
+
root: import('vue').PropType<Document | ShadowRoot>;
|
|
5231
|
+
extensions: import('vue').PropType<import('@codemirror/state').Extension | undefined>;
|
|
5232
|
+
selection: import('vue').PropType<import('@codemirror/state').EditorSelection | {
|
|
5233
|
+
anchor: number;
|
|
5234
|
+
head?: number | undefined;
|
|
5235
|
+
} | undefined>;
|
|
5236
|
+
}>> & {
|
|
5237
|
+
onChange?: ((value: string, viewUpdate: import('@codemirror/view').ViewUpdate) => any) | undefined;
|
|
5238
|
+
onUpdate?: ((viewUpdate: import('@codemirror/view').ViewUpdate) => any) | undefined;
|
|
5239
|
+
onFocus?: ((viewUpdate: import('@codemirror/view').ViewUpdate) => any) | undefined;
|
|
5240
|
+
onBlur?: ((viewUpdate: import('@codemirror/view').ViewUpdate) => any) | undefined;
|
|
5241
|
+
onReady?: ((payload: {
|
|
5242
|
+
view: import('@codemirror/view').EditorView;
|
|
5243
|
+
state: import('@codemirror/state').EditorState;
|
|
5244
|
+
container: HTMLDivElement;
|
|
5245
|
+
}) => any) | undefined;
|
|
5246
|
+
"onUpdate:modelValue"?: ((value: string, viewUpdate: import('@codemirror/view').ViewUpdate) => any) | undefined;
|
|
5247
|
+
}, {
|
|
5248
|
+
autofocus: boolean;
|
|
5249
|
+
disabled: boolean;
|
|
5250
|
+
indentWithTab: boolean;
|
|
5251
|
+
autoDestroy: boolean;
|
|
5252
|
+
modelValue: string;
|
|
5253
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5161
5254
|
}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
5162
5255
|
dialogRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
5163
5256
|
debounce: {
|
|
@@ -5514,9 +5607,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
5514
5607
|
draggable: boolean;
|
|
5515
5608
|
width: string | number;
|
|
5516
5609
|
height: string | number;
|
|
5517
|
-
message: Record<string, any>;
|
|
5518
5610
|
actions: unknown[];
|
|
5519
5611
|
formName: string;
|
|
5612
|
+
message: Record<string, any>;
|
|
5520
5613
|
sameAppformName: string;
|
|
5521
5614
|
parentFormRef: any;
|
|
5522
5615
|
modalZIndex: number;
|