@vue-ui-kit/ant 2.3.9 → 2.4.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.
@@ -65,10 +65,12 @@ export interface PFormItemProps<F extends Recordable = Recordable> {
65
65
  };
66
66
  }
67
67
  export interface PFormProps<F extends Recordable = Recordable> extends FormProps {
68
+ name?: string;
68
69
  items: PFormItemProps<F>[];
69
70
  customReset?: () => void;
70
71
  }
71
72
  export interface PBlockProps<F extends Recordable = Recordable> {
73
+ name?: string;
72
74
  getFormSetting: (data: Partial<F>) => PFormProps<Partial<F>>;
73
75
  source: Partial<F>;
74
76
  }
@@ -97,6 +99,7 @@ export interface GroupMenuItem<F extends Recordable = Recordable> {
97
99
  }) => boolean;
98
100
  }
99
101
  export interface PFormGroupProps<F extends Recordable = Recordable> {
102
+ name?: string;
100
103
  getFormSetting: (data: Partial<F>) => PFormProps<Partial<F>>;
101
104
  title?: string;
102
105
  tabLabel?: string;