@ttkj/avue 2.11.12 → 2.11.14

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,42 @@
1
+ // 引入定义
2
+ import { Obj } from '../../global';
3
+
4
+ /** 坐标 */
5
+ export interface LngLat {
6
+ /** 经度 */
7
+ lng: number;
8
+ /** 纬度 */
9
+ lat: number;
10
+ }
11
+
12
+ /** 地图选择器值 */
13
+ export interface InputMapValue extends LngLat {
14
+ /** 地址 */
15
+ address?: string;
16
+ }
17
+
18
+ /** 地图选择器自定义配置 */
19
+ export interface InputMapProps {
20
+ /** 值 */
21
+ value?: InputMapValue;
22
+ /** 显示值的类型, 默认: 'point' */
23
+ labelType?: 'point' | 'address';
24
+ /** 输入框头部图标 */
25
+ prefixIcon?: String;
26
+ /** 弹窗宽度, 默认: 80% */
27
+ dialogWidth?: String;
28
+ /** 弹窗标题 */
29
+ dialogTitle?: String;
30
+ /** 弹窗是否全屏 */
31
+ fullscreen?: Boolean;
32
+ /** 初始中心点 */
33
+ centerPoint?: [Number, Number] | LngLat | String;
34
+ /** 地图边界 */
35
+ pointBounds?: Array<LngLat | [Number, Number]> | String;
36
+ /** 地图的比例尺级别, 默认: 15 */
37
+ zoom?: Number;
38
+ /** 地图的比例尺最小级别 */
39
+ minZoom?: Number;
40
+ /** 地图的比例尺最大级别 */
41
+ maxZoom?: Number;
42
+ }
@@ -10,6 +10,8 @@ import { AvueFormColumn, DicProps } from './column';
10
10
  export interface AvueFormRefs {
11
11
  /** 表单组件 */
12
12
  form: ElForm;
13
+ // 添加索引签名,使得任意字符串键都能映射到Element或Vue实例
14
+ [key: string]: Element | Vue | undefined;
13
15
  }
14
16
 
15
17
  /** 表单组件 */
@@ -52,7 +54,7 @@ export declare class AvueForm<T = Obj> extends AvueComponent {
52
54
  * 获取prop的ref对象
53
55
  * @param prop 表单项的 prop 属性
54
56
  */
55
- getPropRef(prop: keyof AvueFormRefs): ReturnType<AvueFormRefs>;
57
+ getPropRef<K extends keyof AvueFormRefs>(prop: K): AvueFormRefs[K];
56
58
  /**
57
59
  * 移除表单项的校验结果。
58
60
  * @param {string | string[]} [props] 传入待移除的表单项的 prop 属性或者 prop 组成的数组,如不传则移除整个表单的校验结果
@@ -91,7 +93,7 @@ export declare class AvueForm<T = Obj> extends AvueComponent {
91
93
  /** 将表单置于普通状态 */
92
94
  hide(): void;
93
95
  /** 组件Refs */
94
- $refs: AvueFormRefs;
96
+ readonly $refs: AvueFormRefs;
95
97
  }
96
98
 
97
99
  /** 通用表单插槽 */
@@ -108,8 +110,6 @@ export interface FormNormalScope<T = any, D = Obj, U = Obj, R = Obj> {
108
110
  readonly?: boolean;
109
111
  /** 是否禁用 */
110
112
  disabled: boolean;
111
- /** 表单数据 */
112
- row: D;
113
113
  /** 字典 */
114
114
  dic?: U[];
115
115
  /** 输入时是否触发表单的校验, 仅针对input类型 */
@@ -137,3 +137,11 @@ export interface FormNormalScope<T = any, D = Obj, U = Obj, R = Obj> {
137
137
  };
138
138
  };
139
139
  }
140
+
141
+ /** 基础类组件插槽 */
142
+ export interface FormBasicScope<D = Obj> {
143
+ /** 列配置 */
144
+ column: AvueFormColumn<D>;
145
+ /** 大小 */
146
+ size: AvueComponentSize;
147
+ }
@@ -10,7 +10,7 @@ export interface FormBaseOption {
10
10
  /** 是否详情模式, 默认: false */
11
11
  detail: boolean;
12
12
  /**
13
- * 详情模式优先级, 默认: 'column'
13
+ * 详情模式优先级, 默认: 'global'
14
14
  * @description 当detail同时存在全局配置和列配置时, global表示优先取全局detail, column表示优先取列detail
15
15
  * @since 2.11.12
16
16
  */
package/types/global.d.ts CHANGED
@@ -23,7 +23,7 @@ export type AvueComponentSize = 'medium' | 'small' | 'mini';
23
23
  export type AvueAlignment = 'left' | 'center' | 'right';
24
24
 
25
25
  /** 菜单类型 */
26
- export type AvueMenuType = 'button' | 'text' | 'icon' | 'menu';
26
+ export type AvueMenuType = 'button' | 'text' | 'icon' | 'icon-plain' | 'menu';
27
27
 
28
28
  /**
29
29
  * 对象定义
package/types/README.md DELETED
@@ -1,48 +0,0 @@
1
- # 介绍
2
-
3
- `avue.js`的定义文件
4
-
5
- # 引入方式
6
-
7
- ```typescript
8
- declare module '@smallwei/avue/lib/avue' {
9
- import Avue from 'xxx/types/avue';
10
- export default Avue;
11
- }
12
- ```
13
-
14
- 其中,`xxx`表示定义文件的相对路径
15
-
16
- ## 更新说明
17
-
18
- * 0.0.1
19
-
20
- 初始版本,仅包含框架定义和crud组件基础配置
21
- * 0.0.2
22
-
23
- - 补充了curd基础配置一些缺失的配置项
24
- - 添加了avue全局api定义
25
- * 0.0.3
26
-
27
- - 将AVue全局重命名为Avue
28
- - 添加了全局定义
29
- - crud组件 添加了部分参数
30
- - crud组件 修改了部分参数的默认值和定义
31
- * 0.0.4
32
-
33
- - crud组件 添加表单打开模式定时
34
- - crud组件 修复column为object导致无法使用对象属性方法的bug
35
-
36
- * 1.0.0
37
- 更新avue版本为2.9.12
38
-
39
- * 1.0.1
40
- - 完善了全局API中$DialogForm的定义
41
-
42
- * 1.0.2
43
- - 完善了Curd组件的定义
44
-
45
- * 1.0.3
46
- - 添加了对Crud/Form组件配置中方法row(行数据)定义的支持
47
- - 完善了Form组件的定义
48
- - 修正了Crud组件option配置中未支持Form组件部分公共定义的bug