@lx-frontend/wrap-element-ui 1.0.4 → 1.0.5-beta.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "1.0.4",
3
+ "version": "1.0.5-beta.1",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -7,7 +7,8 @@ type BaseOption = {
7
7
  changeCb?: (value: any) => any
8
8
  }
9
9
 
10
- type SlotOption = BaseOption & {
10
+ type SlotOption = Omit<BaseOption, 'prop'> & {
11
+ prop?: string
11
12
  type: 'slot'
12
13
  slotName: string
13
14
  }
@@ -49,6 +50,7 @@ type DoubleInputOption = BaseDoubleOption & {
49
50
 
50
51
  type DoubleDatePickerOption = BaseDoubleOption & {
51
52
  type: 'doubleDatePicker'
53
+ isEmpty?: boolean
52
54
  }
53
55
 
54
56
  export type SearchFormConfigOption =