@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
|
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
7
7
|
props: import('../../../node_modules/@vue/shared').LooseRequired<Readonly<{
|
|
8
8
|
params?: any;
|
|
9
9
|
}> & Readonly<{}> & {}>;
|
|
10
|
-
inputRef: import('vue').Ref<
|
|
10
|
+
inputRef: import('vue').Ref<any, any>;
|
|
11
11
|
clearButtonClick: (e: any) => void;
|
|
12
12
|
getValue: () => string;
|
|
13
13
|
isCancelBeforeStart: () => boolean;
|