@dockou/elementplus 1.0.37 → 1.0.38
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/index.es.js +11818 -11682
- package/index.umd.cjs +75 -75
- package/interface/index.ts +6 -0
- package/package.json +1 -1
package/interface/index.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CommissionDataItem } from './../../src/components/form/types/index';
|
|
1
2
|
import { CSSProperties, Component } from "vue";
|
|
2
3
|
import { RuleItem } from "./rule";
|
|
3
4
|
import { FormInstance, UploadUserFile } from "element-plus";
|
|
@@ -136,6 +137,11 @@ export interface EditorOptionsItem{
|
|
|
136
137
|
video?: EditorUploadItem,
|
|
137
138
|
}
|
|
138
139
|
|
|
140
|
+
export interface CommissionDataItem{
|
|
141
|
+
type: number,
|
|
142
|
+
value: number | string,
|
|
143
|
+
}
|
|
144
|
+
|
|
139
145
|
export interface EditorUploadItem{
|
|
140
146
|
service?: string,
|
|
141
147
|
fieldName?: string,
|