antd-vue-dbthor 1.0.4 → 1.0.5

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.
@@ -1,4 +1,4 @@
1
- import { CheckboxGroupProps, CheckboxProps, DatePickerProps, InputNumberProps, InputProps, RadioGroupProps, RadioProps, SelectProps } from 'ant-design-vue';
1
+ import { CheckboxGroupProps, CheckboxProps, DatePickerProps, InputNumberProps, InputProps, RadioGroupProps, RadioProps, SelectProps, TextAreaProps } from 'ant-design-vue';
2
2
  import { RangePickerProps } from 'ant-design-vue/es/date-picker';
3
3
 
4
4
  export declare enum ControlMapType {
@@ -10,7 +10,8 @@ export declare enum ControlMapType {
10
10
  Checkbox = "Checkbox",
11
11
  CheckboxGroup = "CheckboxGroup",
12
12
  Radio = "Radio",
13
- RadioGroup = "RadioGroup"
13
+ RadioGroup = "RadioGroup",
14
+ TextArea = "TextArea"
14
15
  }
15
16
  export interface ControlMapProps {
16
17
  Input: InputProps;
@@ -22,6 +23,7 @@ export interface ControlMapProps {
22
23
  CheckboxGroup: CheckboxGroupProps;
23
24
  Radio: RadioProps;
24
25
  RadioGroup: RadioGroupProps;
26
+ TextArea: TextAreaProps;
25
27
  }
26
28
  declare const Control: ({ type, ...props }: any) => import("vue/jsx-runtime").JSX.Element;
27
29
  export default Control;
@@ -1,5 +1,5 @@
1
1
  import { default as Table } from './table.vue';
2
2
 
3
3
  export type * from './index.type';
4
- export type * from './control';
4
+ export * from './control';
5
5
  export default Table;