@gindow/element-go 1.0.4 → 1.0.6

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.
@@ -2,15 +2,27 @@ import { FormRules } from 'element-plus';
2
2
  import { IModel } from '../types';
3
3
  declare function __VLS_template(): {
4
4
  attrs: Partial<{}>;
5
- slots: {
6
- cell?(_: {
7
- row: import('element-plus/es/components/table/src/table/defaults.mjs').DefaultRow;
5
+ slots: Readonly<{
6
+ default(): any;
7
+ batch(): any;
8
+ cell(props: {
9
+ row: IModel;
8
10
  col: IModel;
9
11
  }): any;
10
- default?(_: {}): any;
11
- batch?(_: {}): any;
12
- formItem?(_: {}): any;
13
- formField?(_: {
12
+ formItem(): any;
13
+ formField(props: {
14
+ field: any;
15
+ model: IModel;
16
+ }): any;
17
+ }> & {
18
+ default(): any;
19
+ batch(): any;
20
+ cell(props: {
21
+ row: IModel;
22
+ col: IModel;
23
+ }): any;
24
+ formItem(): any;
25
+ formField(props: {
14
26
  field: any;
15
27
  model: IModel;
16
28
  }): any;
@@ -16,7 +16,6 @@ import { default as ExPage } from './components/ExPage.vue';
16
16
  import { default as ExPageHeader } from './components/ExPageHeader.vue';
17
17
  import { default as ExPagination } from './components/ExPagination.vue';
18
18
  import { default as ExSelect } from './components/ExSelect.vue';
19
- import { default as ExSelectDictionary } from './components/ExSelectDictionary.vue';
20
19
  import { default as ExTable } from './components/ExTable.vue';
21
20
  import { default as ExTableColumn } from './components/ExTableColumn.vue';
22
21
  import { default as ExUpload } from './components/ExUpload.vue';
@@ -27,4 +26,4 @@ export { useNanoid } from './hooks/useNanoid';
27
26
  export { useIcon } from './hooks/useIcon';
28
27
  declare const ElementGo: Plugin;
29
28
  export default ElementGo;
30
- export { ExAssetPreview, ExButton, ExEmpty, ExForm, ExFormField, ExFormSearch, ExFormViewer, ExIcon, ExInputPercentage, ExLayout, ExLoading, ExMenu, ExPage, ExPageHeader, ExPagination, ExSelect, ExSelectDictionary, ExTable, ExTableColumn, ExUpload, ExUploadAsset, provider, setLocale, getLocale, useLocale, };
29
+ export { ExAssetPreview, ExButton, ExEmpty, ExForm, ExFormField, ExFormSearch, ExFormViewer, ExIcon, ExInputPercentage, ExLayout, ExLoading, ExMenu, ExPage, ExPageHeader, ExPagination, ExSelect, ExTable, ExTableColumn, ExUpload, ExUploadAsset, provider, setLocale, getLocale, useLocale, };