amis 1.6.0 → 1.6.1-beta.2
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/lib/components/Alert.d.ts +588 -588
- package/lib/components/Alert2.d.ts +125 -20
- package/lib/components/AnchorNav.d.ts +104 -20
- package/lib/components/ArrayInput.d.ts +420 -420
- package/lib/components/AsideNav.d.ts +125 -125
- package/lib/components/AssociatedSelection.d.ts +504 -504
- package/lib/components/Avatar.d.ts +461 -20
- package/lib/components/Button.d.ts +167 -20
- package/lib/components/CalendarMobile.d.ts +420 -84
- package/lib/components/Card.d.ts +671 -20
- package/lib/components/ChainedSelection.d.ts +504 -504
- package/lib/components/Checkbox.d.ts +104 -20
- package/lib/components/Collapse.d.ts +587 -20
- package/lib/components/CollapseGroup.d.ts +230 -20
- package/lib/components/ColorPicker.d.ts +504 -504
- package/lib/components/DatePicker.d.ts +588 -588
- package/lib/components/DateRangePicker.d.ts +1008 -1008
- package/lib/components/Drawer.d.ts +125 -20
- package/lib/components/Editor.d.ts +840 -672
- package/lib/components/GroupedSelection.d.ts +504 -504
- package/lib/components/Html.d.ts +62 -62
- package/lib/components/InputBox.d.ts +83 -83
- package/lib/components/Layout.d.ts +146 -146
- package/lib/components/ListGroup.d.ts +62 -62
- package/lib/components/ListMenu.d.ts +504 -504
- package/lib/components/LocationPicker.d.ts +336 -336
- package/lib/components/Modal.d.ts +420 -420
- package/lib/components/MonthRangePicker.d.ts +924 -924
- package/lib/components/NumberInput.d.ts +104 -20
- package/lib/components/PopUp.d.ts +672 -672
- package/lib/components/Progress.d.ts +440 -20
- package/lib/components/Radios.d.ts +167 -167
- package/lib/components/Rating.d.ts +272 -314
- package/lib/components/ResultBox.d.ts +504 -84
- package/lib/components/ResultList.d.ts +336 -84
- package/lib/components/SearchBox.d.ts +336 -336
- package/lib/components/Select.d.ts +4977 -4977
- package/lib/components/Selection.d.ts +504 -504
- package/lib/components/SparkLine.d.ts +336 -336
- package/lib/components/Spinner.d.ts +146 -146
- package/lib/components/Switch.d.ts +83 -83
- package/lib/components/TableSelection.d.ts +672 -672
- package/lib/components/Tabs.d.ts +83 -20
- package/lib/components/TitleBar.d.ts +146 -125
- package/lib/components/Toast.d.ts +504 -84
- package/lib/components/TooltipWrapper.d.ts +125 -20
- package/lib/components/Transfer.d.ts +252 -84
- package/lib/components/TransferDropDown.d.ts +252 -84
- package/lib/components/Tree.d.ts +2688 -2688
- package/lib/components/TreeSelection.d.ts +588 -588
- package/lib/components/formula/Editor.d.ts +420 -84
- package/lib/index.js +1 -1
- package/lib/renderers/Dialog.d.ts +420 -420
- package/lib/renderers/Form/InputCity.d.ts +672 -672
- package/lib/renderers/Form/InputColor.d.ts +504 -504
- package/lib/renderers/Nav.d.ts +62 -62
- package/package.json +1 -1
- package/sdk/ang-ie11.css +1 -0
- package/sdk/ang.css +1 -0
- package/sdk/antd-ie11.css +1 -0
- package/sdk/antd.css +1 -0
- package/sdk/charts.js +14 -14
- package/sdk/codemirror.js +7 -7
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +1 -0
- package/sdk/cxd.css +1 -0
- package/sdk/dark-ie11.css +1 -0
- package/sdk/dark.css +1 -0
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +3 -3
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +1 -0
- package/sdk/sdk.css +1 -0
- package/sdk/sdk.js +1318 -1253
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
@@ -46,53 +46,53 @@ export declare class ArrayInput extends React.Component<ArrayInputProps> {
|
|
46
46
|
render(): JSX.Element;
|
47
47
|
}
|
48
48
|
declare const _default: {
|
49
|
-
new (props: (Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
50
|
-
placeholder
|
51
|
-
itemRender
|
49
|
+
new (props: (Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
50
|
+
placeholder?: string | undefined;
|
51
|
+
itemRender?: ((props: {
|
52
52
|
value: any;
|
53
53
|
onChange: (value: any) => void;
|
54
54
|
index: number;
|
55
55
|
disabled?: boolean | undefined;
|
56
|
-
}) => JSX.Element;
|
57
|
-
}
|
56
|
+
}) => JSX.Element) | undefined;
|
57
|
+
} & {} & {
|
58
58
|
locale?: string | undefined;
|
59
59
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
60
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
61
|
-
placeholder
|
62
|
-
itemRender
|
60
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
61
|
+
placeholder?: string | undefined;
|
62
|
+
itemRender?: ((props: {
|
63
63
|
value: any;
|
64
64
|
onChange: (value: any) => void;
|
65
65
|
index: number;
|
66
66
|
disabled?: boolean | undefined;
|
67
|
-
}) => JSX.Element;
|
68
|
-
}
|
67
|
+
}) => JSX.Element) | undefined;
|
68
|
+
} & {} & {
|
69
69
|
locale?: string | undefined;
|
70
70
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
71
71
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
72
72
|
render(): JSX.Element;
|
73
73
|
context: any;
|
74
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
75
|
-
placeholder
|
76
|
-
itemRender
|
74
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
75
|
+
placeholder?: string | undefined;
|
76
|
+
itemRender?: ((props: {
|
77
77
|
value: any;
|
78
78
|
onChange: (value: any) => void;
|
79
79
|
index: number;
|
80
80
|
disabled?: boolean | undefined;
|
81
|
-
}) => JSX.Element;
|
82
|
-
}
|
81
|
+
}) => JSX.Element) | undefined;
|
82
|
+
} & {} & {
|
83
83
|
locale?: string | undefined;
|
84
84
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
85
85
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
86
86
|
forceUpdate(callback?: (() => void) | undefined): void;
|
87
|
-
readonly props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
88
|
-
placeholder
|
89
|
-
itemRender
|
87
|
+
readonly props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
88
|
+
placeholder?: string | undefined;
|
89
|
+
itemRender?: ((props: {
|
90
90
|
value: any;
|
91
91
|
onChange: (value: any) => void;
|
92
92
|
index: number;
|
93
93
|
disabled?: boolean | undefined;
|
94
|
-
}) => JSX.Element;
|
95
|
-
}
|
94
|
+
}) => JSX.Element) | undefined;
|
95
|
+
} & {} & {
|
96
96
|
locale?: string | undefined;
|
97
97
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
98
98
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
|
@@ -103,131 +103,131 @@ declare const _default: {
|
|
103
103
|
[key: string]: React.ReactInstance;
|
104
104
|
};
|
105
105
|
componentDidMount?(): void;
|
106
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
107
|
-
placeholder
|
108
|
-
itemRender
|
106
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
107
|
+
placeholder?: string | undefined;
|
108
|
+
itemRender?: ((props: {
|
109
109
|
value: any;
|
110
110
|
onChange: (value: any) => void;
|
111
111
|
index: number;
|
112
112
|
disabled?: boolean | undefined;
|
113
|
-
}) => JSX.Element;
|
114
|
-
}
|
113
|
+
}) => JSX.Element) | undefined;
|
114
|
+
} & {} & {
|
115
115
|
locale?: string | undefined;
|
116
116
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
117
117
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
118
118
|
componentWillUnmount?(): void;
|
119
119
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
120
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
121
|
-
placeholder
|
122
|
-
itemRender
|
120
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
121
|
+
placeholder?: string | undefined;
|
122
|
+
itemRender?: ((props: {
|
123
123
|
value: any;
|
124
124
|
onChange: (value: any) => void;
|
125
125
|
index: number;
|
126
126
|
disabled?: boolean | undefined;
|
127
|
-
}) => JSX.Element;
|
128
|
-
}
|
127
|
+
}) => JSX.Element) | undefined;
|
128
|
+
} & {} & {
|
129
129
|
locale?: string | undefined;
|
130
130
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
131
131
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
132
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
133
|
-
placeholder
|
134
|
-
itemRender
|
132
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
133
|
+
placeholder?: string | undefined;
|
134
|
+
itemRender?: ((props: {
|
135
135
|
value: any;
|
136
136
|
onChange: (value: any) => void;
|
137
137
|
index: number;
|
138
138
|
disabled?: boolean | undefined;
|
139
|
-
}) => JSX.Element;
|
140
|
-
}
|
139
|
+
}) => JSX.Element) | undefined;
|
140
|
+
} & {} & {
|
141
141
|
locale?: string | undefined;
|
142
142
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
143
143
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
144
144
|
componentWillMount?(): void;
|
145
145
|
UNSAFE_componentWillMount?(): void;
|
146
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
147
|
-
placeholder
|
148
|
-
itemRender
|
146
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
147
|
+
placeholder?: string | undefined;
|
148
|
+
itemRender?: ((props: {
|
149
149
|
value: any;
|
150
150
|
onChange: (value: any) => void;
|
151
151
|
index: number;
|
152
152
|
disabled?: boolean | undefined;
|
153
|
-
}) => JSX.Element;
|
154
|
-
}
|
153
|
+
}) => JSX.Element) | undefined;
|
154
|
+
} & {} & {
|
155
155
|
locale?: string | undefined;
|
156
156
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
157
157
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
158
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
159
|
-
placeholder
|
160
|
-
itemRender
|
158
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
159
|
+
placeholder?: string | undefined;
|
160
|
+
itemRender?: ((props: {
|
161
161
|
value: any;
|
162
162
|
onChange: (value: any) => void;
|
163
163
|
index: number;
|
164
164
|
disabled?: boolean | undefined;
|
165
|
-
}) => JSX.Element;
|
166
|
-
}
|
165
|
+
}) => JSX.Element) | undefined;
|
166
|
+
} & {} & {
|
167
167
|
locale?: string | undefined;
|
168
168
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
169
169
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
170
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
171
|
-
placeholder
|
172
|
-
itemRender
|
170
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
171
|
+
placeholder?: string | undefined;
|
172
|
+
itemRender?: ((props: {
|
173
173
|
value: any;
|
174
174
|
onChange: (value: any) => void;
|
175
175
|
index: number;
|
176
176
|
disabled?: boolean | undefined;
|
177
|
-
}) => JSX.Element;
|
178
|
-
}
|
177
|
+
}) => JSX.Element) | undefined;
|
178
|
+
} & {} & {
|
179
179
|
locale?: string | undefined;
|
180
180
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
181
181
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
182
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
183
|
-
placeholder
|
184
|
-
itemRender
|
182
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
183
|
+
placeholder?: string | undefined;
|
184
|
+
itemRender?: ((props: {
|
185
185
|
value: any;
|
186
186
|
onChange: (value: any) => void;
|
187
187
|
index: number;
|
188
188
|
disabled?: boolean | undefined;
|
189
|
-
}) => JSX.Element;
|
190
|
-
}
|
189
|
+
}) => JSX.Element) | undefined;
|
190
|
+
} & {} & {
|
191
191
|
locale?: string | undefined;
|
192
192
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
193
193
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
194
194
|
};
|
195
|
-
new (props: Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
196
|
-
placeholder
|
197
|
-
itemRender
|
195
|
+
new (props: Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
196
|
+
placeholder?: string | undefined;
|
197
|
+
itemRender?: ((props: {
|
198
198
|
value: any;
|
199
199
|
onChange: (value: any) => void;
|
200
200
|
index: number;
|
201
201
|
disabled?: boolean | undefined;
|
202
|
-
}) => JSX.Element;
|
203
|
-
}
|
202
|
+
}) => JSX.Element) | undefined;
|
203
|
+
} & {} & {
|
204
204
|
locale?: string | undefined;
|
205
205
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
206
206
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
207
207
|
render(): JSX.Element;
|
208
208
|
context: any;
|
209
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
210
|
-
placeholder
|
211
|
-
itemRender
|
209
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
210
|
+
placeholder?: string | undefined;
|
211
|
+
itemRender?: ((props: {
|
212
212
|
value: any;
|
213
213
|
onChange: (value: any) => void;
|
214
214
|
index: number;
|
215
215
|
disabled?: boolean | undefined;
|
216
|
-
}) => JSX.Element;
|
217
|
-
}
|
216
|
+
}) => JSX.Element) | undefined;
|
217
|
+
} & {} & {
|
218
218
|
locale?: string | undefined;
|
219
219
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
220
220
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
221
221
|
forceUpdate(callback?: (() => void) | undefined): void;
|
222
|
-
readonly props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
223
|
-
placeholder
|
224
|
-
itemRender
|
222
|
+
readonly props: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
223
|
+
placeholder?: string | undefined;
|
224
|
+
itemRender?: ((props: {
|
225
225
|
value: any;
|
226
226
|
onChange: (value: any) => void;
|
227
227
|
index: number;
|
228
228
|
disabled?: boolean | undefined;
|
229
|
-
}) => JSX.Element;
|
230
|
-
}
|
229
|
+
}) => JSX.Element) | undefined;
|
230
|
+
} & {} & {
|
231
231
|
locale?: string | undefined;
|
232
232
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
233
233
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
|
@@ -238,91 +238,91 @@ declare const _default: {
|
|
238
238
|
[key: string]: React.ReactInstance;
|
239
239
|
};
|
240
240
|
componentDidMount?(): void;
|
241
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
242
|
-
placeholder
|
243
|
-
itemRender
|
241
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
242
|
+
placeholder?: string | undefined;
|
243
|
+
itemRender?: ((props: {
|
244
244
|
value: any;
|
245
245
|
onChange: (value: any) => void;
|
246
246
|
index: number;
|
247
247
|
disabled?: boolean | undefined;
|
248
|
-
}) => JSX.Element;
|
249
|
-
}
|
248
|
+
}) => JSX.Element) | undefined;
|
249
|
+
} & {} & {
|
250
250
|
locale?: string | undefined;
|
251
251
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
252
252
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
253
253
|
componentWillUnmount?(): void;
|
254
254
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
255
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
256
|
-
placeholder
|
257
|
-
itemRender
|
255
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
256
|
+
placeholder?: string | undefined;
|
257
|
+
itemRender?: ((props: {
|
258
258
|
value: any;
|
259
259
|
onChange: (value: any) => void;
|
260
260
|
index: number;
|
261
261
|
disabled?: boolean | undefined;
|
262
|
-
}) => JSX.Element;
|
263
|
-
}
|
262
|
+
}) => JSX.Element) | undefined;
|
263
|
+
} & {} & {
|
264
264
|
locale?: string | undefined;
|
265
265
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
266
266
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
267
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
268
|
-
placeholder
|
269
|
-
itemRender
|
267
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
268
|
+
placeholder?: string | undefined;
|
269
|
+
itemRender?: ((props: {
|
270
270
|
value: any;
|
271
271
|
onChange: (value: any) => void;
|
272
272
|
index: number;
|
273
273
|
disabled?: boolean | undefined;
|
274
|
-
}) => JSX.Element;
|
275
|
-
}
|
274
|
+
}) => JSX.Element) | undefined;
|
275
|
+
} & {} & {
|
276
276
|
locale?: string | undefined;
|
277
277
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
278
278
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
279
279
|
componentWillMount?(): void;
|
280
280
|
UNSAFE_componentWillMount?(): void;
|
281
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
282
|
-
placeholder
|
283
|
-
itemRender
|
281
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
282
|
+
placeholder?: string | undefined;
|
283
|
+
itemRender?: ((props: {
|
284
284
|
value: any;
|
285
285
|
onChange: (value: any) => void;
|
286
286
|
index: number;
|
287
287
|
disabled?: boolean | undefined;
|
288
|
-
}) => JSX.Element;
|
289
|
-
}
|
288
|
+
}) => JSX.Element) | undefined;
|
289
|
+
} & {} & {
|
290
290
|
locale?: string | undefined;
|
291
291
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
292
292
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
293
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
294
|
-
placeholder
|
295
|
-
itemRender
|
293
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
294
|
+
placeholder?: string | undefined;
|
295
|
+
itemRender?: ((props: {
|
296
296
|
value: any;
|
297
297
|
onChange: (value: any) => void;
|
298
298
|
index: number;
|
299
299
|
disabled?: boolean | undefined;
|
300
|
-
}) => JSX.Element;
|
301
|
-
}
|
300
|
+
}) => JSX.Element) | undefined;
|
301
|
+
} & {} & {
|
302
302
|
locale?: string | undefined;
|
303
303
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
304
304
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
305
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
306
|
-
placeholder
|
307
|
-
itemRender
|
305
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
306
|
+
placeholder?: string | undefined;
|
307
|
+
itemRender?: ((props: {
|
308
308
|
value: any;
|
309
309
|
onChange: (value: any) => void;
|
310
310
|
index: number;
|
311
311
|
disabled?: boolean | undefined;
|
312
|
-
}) => JSX.Element;
|
313
|
-
}
|
312
|
+
}) => JSX.Element) | undefined;
|
313
|
+
} & {} & {
|
314
314
|
locale?: string | undefined;
|
315
315
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
316
316
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
317
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
318
|
-
placeholder
|
319
|
-
itemRender
|
317
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
318
|
+
placeholder?: string | undefined;
|
319
|
+
itemRender?: ((props: {
|
320
320
|
value: any;
|
321
321
|
onChange: (value: any) => void;
|
322
322
|
index: number;
|
323
323
|
disabled?: boolean | undefined;
|
324
|
-
}) => JSX.Element;
|
325
|
-
}
|
324
|
+
}) => JSX.Element) | undefined;
|
325
|
+
} & {} & {
|
326
326
|
locale?: string | undefined;
|
327
327
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
328
328
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
@@ -330,53 +330,53 @@ declare const _default: {
|
|
330
330
|
displayName: string;
|
331
331
|
contextType: React.Context<string>;
|
332
332
|
ComposedComponent: React.ComponentType<{
|
333
|
-
new (props: (Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
334
|
-
placeholder
|
335
|
-
itemRender
|
333
|
+
new (props: (Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
334
|
+
placeholder?: string | undefined;
|
335
|
+
itemRender?: ((props: {
|
336
336
|
value: any;
|
337
337
|
onChange: (value: any) => void;
|
338
338
|
index: number;
|
339
339
|
disabled?: boolean | undefined;
|
340
|
-
}) => JSX.Element;
|
341
|
-
}
|
340
|
+
}) => JSX.Element) | undefined;
|
341
|
+
} & {} & {
|
342
342
|
locale?: string | undefined;
|
343
343
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
344
|
-
}) | Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
345
|
-
placeholder
|
346
|
-
itemRender
|
344
|
+
}) | Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
345
|
+
placeholder?: string | undefined;
|
346
|
+
itemRender?: ((props: {
|
347
347
|
value: any;
|
348
348
|
onChange: (value: any) => void;
|
349
349
|
index: number;
|
350
350
|
disabled?: boolean | undefined;
|
351
|
-
}) => JSX.Element;
|
352
|
-
}
|
351
|
+
}) => JSX.Element) | undefined;
|
352
|
+
} & {} & {
|
353
353
|
locale?: string | undefined;
|
354
354
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
355
355
|
}>): {
|
356
356
|
render(): JSX.Element;
|
357
357
|
context: any;
|
358
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
359
|
-
placeholder
|
360
|
-
itemRender
|
358
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
359
|
+
placeholder?: string | undefined;
|
360
|
+
itemRender?: ((props: {
|
361
361
|
value: any;
|
362
362
|
onChange: (value: any) => void;
|
363
363
|
index: number;
|
364
364
|
disabled?: boolean | undefined;
|
365
|
-
}) => JSX.Element;
|
366
|
-
}
|
365
|
+
}) => JSX.Element) | undefined;
|
366
|
+
} & {} & {
|
367
367
|
locale?: string | undefined;
|
368
368
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
369
369
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
370
370
|
forceUpdate(callback?: (() => void) | undefined): void;
|
371
|
-
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
372
|
-
placeholder
|
373
|
-
itemRender
|
371
|
+
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
372
|
+
placeholder?: string | undefined;
|
373
|
+
itemRender?: ((props: {
|
374
374
|
value: any;
|
375
375
|
onChange: (value: any) => void;
|
376
376
|
index: number;
|
377
377
|
disabled?: boolean | undefined;
|
378
|
-
}) => JSX.Element;
|
379
|
-
}
|
378
|
+
}) => JSX.Element) | undefined;
|
379
|
+
} & {} & {
|
380
380
|
locale?: string | undefined;
|
381
381
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
382
382
|
}> & Readonly<{
|
@@ -387,131 +387,131 @@ declare const _default: {
|
|
387
387
|
[key: string]: React.ReactInstance;
|
388
388
|
};
|
389
389
|
componentDidMount?(): void;
|
390
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
391
|
-
placeholder
|
392
|
-
itemRender
|
390
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
391
|
+
placeholder?: string | undefined;
|
392
|
+
itemRender?: ((props: {
|
393
393
|
value: any;
|
394
394
|
onChange: (value: any) => void;
|
395
395
|
index: number;
|
396
396
|
disabled?: boolean | undefined;
|
397
|
-
}) => JSX.Element;
|
398
|
-
}
|
397
|
+
}) => JSX.Element) | undefined;
|
398
|
+
} & {} & {
|
399
399
|
locale?: string | undefined;
|
400
400
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
401
401
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
402
402
|
componentWillUnmount?(): void;
|
403
403
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
404
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
405
|
-
placeholder
|
406
|
-
itemRender
|
404
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
405
|
+
placeholder?: string | undefined;
|
406
|
+
itemRender?: ((props: {
|
407
407
|
value: any;
|
408
408
|
onChange: (value: any) => void;
|
409
409
|
index: number;
|
410
410
|
disabled?: boolean | undefined;
|
411
|
-
}) => JSX.Element;
|
412
|
-
}
|
411
|
+
}) => JSX.Element) | undefined;
|
412
|
+
} & {} & {
|
413
413
|
locale?: string | undefined;
|
414
414
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
415
415
|
}>, prevState: Readonly<{}>): any;
|
416
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
417
|
-
placeholder
|
418
|
-
itemRender
|
416
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
417
|
+
placeholder?: string | undefined;
|
418
|
+
itemRender?: ((props: {
|
419
419
|
value: any;
|
420
420
|
onChange: (value: any) => void;
|
421
421
|
index: number;
|
422
422
|
disabled?: boolean | undefined;
|
423
|
-
}) => JSX.Element;
|
424
|
-
}
|
423
|
+
}) => JSX.Element) | undefined;
|
424
|
+
} & {} & {
|
425
425
|
locale?: string | undefined;
|
426
426
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
427
427
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
428
428
|
componentWillMount?(): void;
|
429
429
|
UNSAFE_componentWillMount?(): void;
|
430
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
431
|
-
placeholder
|
432
|
-
itemRender
|
430
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
431
|
+
placeholder?: string | undefined;
|
432
|
+
itemRender?: ((props: {
|
433
433
|
value: any;
|
434
434
|
onChange: (value: any) => void;
|
435
435
|
index: number;
|
436
436
|
disabled?: boolean | undefined;
|
437
|
-
}) => JSX.Element;
|
438
|
-
}
|
437
|
+
}) => JSX.Element) | undefined;
|
438
|
+
} & {} & {
|
439
439
|
locale?: string | undefined;
|
440
440
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
441
441
|
}>, nextContext: any): void;
|
442
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
443
|
-
placeholder
|
444
|
-
itemRender
|
442
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
443
|
+
placeholder?: string | undefined;
|
444
|
+
itemRender?: ((props: {
|
445
445
|
value: any;
|
446
446
|
onChange: (value: any) => void;
|
447
447
|
index: number;
|
448
448
|
disabled?: boolean | undefined;
|
449
|
-
}) => JSX.Element;
|
450
|
-
}
|
449
|
+
}) => JSX.Element) | undefined;
|
450
|
+
} & {} & {
|
451
451
|
locale?: string | undefined;
|
452
452
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
453
453
|
}>, nextContext: any): void;
|
454
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
455
|
-
placeholder
|
456
|
-
itemRender
|
454
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
455
|
+
placeholder?: string | undefined;
|
456
|
+
itemRender?: ((props: {
|
457
457
|
value: any;
|
458
458
|
onChange: (value: any) => void;
|
459
459
|
index: number;
|
460
460
|
disabled?: boolean | undefined;
|
461
|
-
}) => JSX.Element;
|
462
|
-
}
|
461
|
+
}) => JSX.Element) | undefined;
|
462
|
+
} & {} & {
|
463
463
|
locale?: string | undefined;
|
464
464
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
465
465
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
466
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
467
|
-
placeholder
|
468
|
-
itemRender
|
466
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
467
|
+
placeholder?: string | undefined;
|
468
|
+
itemRender?: ((props: {
|
469
469
|
value: any;
|
470
470
|
onChange: (value: any) => void;
|
471
471
|
index: number;
|
472
472
|
disabled?: boolean | undefined;
|
473
|
-
}) => JSX.Element;
|
474
|
-
}
|
473
|
+
}) => JSX.Element) | undefined;
|
474
|
+
} & {} & {
|
475
475
|
locale?: string | undefined;
|
476
476
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
477
477
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
478
478
|
};
|
479
|
-
new (props: Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
480
|
-
placeholder
|
481
|
-
itemRender
|
479
|
+
new (props: Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
480
|
+
placeholder?: string | undefined;
|
481
|
+
itemRender?: ((props: {
|
482
482
|
value: any;
|
483
483
|
onChange: (value: any) => void;
|
484
484
|
index: number;
|
485
485
|
disabled?: boolean | undefined;
|
486
|
-
}) => JSX.Element;
|
487
|
-
}
|
486
|
+
}) => JSX.Element) | undefined;
|
487
|
+
} & {} & {
|
488
488
|
locale?: string | undefined;
|
489
489
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
490
490
|
}, context: any): {
|
491
491
|
render(): JSX.Element;
|
492
492
|
context: any;
|
493
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
494
|
-
placeholder
|
495
|
-
itemRender
|
493
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
494
|
+
placeholder?: string | undefined;
|
495
|
+
itemRender?: ((props: {
|
496
496
|
value: any;
|
497
497
|
onChange: (value: any) => void;
|
498
498
|
index: number;
|
499
499
|
disabled?: boolean | undefined;
|
500
|
-
}) => JSX.Element;
|
501
|
-
}
|
500
|
+
}) => JSX.Element) | undefined;
|
501
|
+
} & {} & {
|
502
502
|
locale?: string | undefined;
|
503
503
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
504
504
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
505
505
|
forceUpdate(callback?: (() => void) | undefined): void;
|
506
|
-
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
507
|
-
placeholder
|
508
|
-
itemRender
|
506
|
+
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
507
|
+
placeholder?: string | undefined;
|
508
|
+
itemRender?: ((props: {
|
509
509
|
value: any;
|
510
510
|
onChange: (value: any) => void;
|
511
511
|
index: number;
|
512
512
|
disabled?: boolean | undefined;
|
513
|
-
}) => JSX.Element;
|
514
|
-
}
|
513
|
+
}) => JSX.Element) | undefined;
|
514
|
+
} & {} & {
|
515
515
|
locale?: string | undefined;
|
516
516
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
517
517
|
}> & Readonly<{
|
@@ -522,91 +522,91 @@ declare const _default: {
|
|
522
522
|
[key: string]: React.ReactInstance;
|
523
523
|
};
|
524
524
|
componentDidMount?(): void;
|
525
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
526
|
-
placeholder
|
527
|
-
itemRender
|
525
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
526
|
+
placeholder?: string | undefined;
|
527
|
+
itemRender?: ((props: {
|
528
528
|
value: any;
|
529
529
|
onChange: (value: any) => void;
|
530
530
|
index: number;
|
531
531
|
disabled?: boolean | undefined;
|
532
|
-
}) => JSX.Element;
|
533
|
-
}
|
532
|
+
}) => JSX.Element) | undefined;
|
533
|
+
} & {} & {
|
534
534
|
locale?: string | undefined;
|
535
535
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
536
536
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
537
537
|
componentWillUnmount?(): void;
|
538
538
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
539
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
540
|
-
placeholder
|
541
|
-
itemRender
|
539
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
540
|
+
placeholder?: string | undefined;
|
541
|
+
itemRender?: ((props: {
|
542
542
|
value: any;
|
543
543
|
onChange: (value: any) => void;
|
544
544
|
index: number;
|
545
545
|
disabled?: boolean | undefined;
|
546
|
-
}) => JSX.Element;
|
547
|
-
}
|
546
|
+
}) => JSX.Element) | undefined;
|
547
|
+
} & {} & {
|
548
548
|
locale?: string | undefined;
|
549
549
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
550
550
|
}>, prevState: Readonly<{}>): any;
|
551
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
552
|
-
placeholder
|
553
|
-
itemRender
|
551
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
552
|
+
placeholder?: string | undefined;
|
553
|
+
itemRender?: ((props: {
|
554
554
|
value: any;
|
555
555
|
onChange: (value: any) => void;
|
556
556
|
index: number;
|
557
557
|
disabled?: boolean | undefined;
|
558
|
-
}) => JSX.Element;
|
559
|
-
}
|
558
|
+
}) => JSX.Element) | undefined;
|
559
|
+
} & {} & {
|
560
560
|
locale?: string | undefined;
|
561
561
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
562
562
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
563
563
|
componentWillMount?(): void;
|
564
564
|
UNSAFE_componentWillMount?(): void;
|
565
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
566
|
-
placeholder
|
567
|
-
itemRender
|
565
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
566
|
+
placeholder?: string | undefined;
|
567
|
+
itemRender?: ((props: {
|
568
568
|
value: any;
|
569
569
|
onChange: (value: any) => void;
|
570
570
|
index: number;
|
571
571
|
disabled?: boolean | undefined;
|
572
|
-
}) => JSX.Element;
|
573
|
-
}
|
572
|
+
}) => JSX.Element) | undefined;
|
573
|
+
} & {} & {
|
574
574
|
locale?: string | undefined;
|
575
575
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
576
576
|
}>, nextContext: any): void;
|
577
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
578
|
-
placeholder
|
579
|
-
itemRender
|
577
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
578
|
+
placeholder?: string | undefined;
|
579
|
+
itemRender?: ((props: {
|
580
580
|
value: any;
|
581
581
|
onChange: (value: any) => void;
|
582
582
|
index: number;
|
583
583
|
disabled?: boolean | undefined;
|
584
|
-
}) => JSX.Element;
|
585
|
-
}
|
584
|
+
}) => JSX.Element) | undefined;
|
585
|
+
} & {} & {
|
586
586
|
locale?: string | undefined;
|
587
587
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
588
588
|
}>, nextContext: any): void;
|
589
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
590
|
-
placeholder
|
591
|
-
itemRender
|
589
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
590
|
+
placeholder?: string | undefined;
|
591
|
+
itemRender?: ((props: {
|
592
592
|
value: any;
|
593
593
|
onChange: (value: any) => void;
|
594
594
|
index: number;
|
595
595
|
disabled?: boolean | undefined;
|
596
|
-
}) => JSX.Element;
|
597
|
-
}
|
596
|
+
}) => JSX.Element) | undefined;
|
597
|
+
} & {} & {
|
598
598
|
locale?: string | undefined;
|
599
599
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
600
600
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
601
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
602
|
-
placeholder
|
603
|
-
itemRender
|
601
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
602
|
+
placeholder?: string | undefined;
|
603
|
+
itemRender?: ((props: {
|
604
604
|
value: any;
|
605
605
|
onChange: (value: any) => void;
|
606
606
|
index: number;
|
607
607
|
disabled?: boolean | undefined;
|
608
|
-
}) => JSX.Element;
|
609
|
-
}
|
608
|
+
}) => JSX.Element) | undefined;
|
609
|
+
} & {} & {
|
610
610
|
locale?: string | undefined;
|
611
611
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
612
612
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
@@ -618,53 +618,53 @@ declare const _default: {
|
|
618
618
|
ComposedComponent: typeof ArrayInput;
|
619
619
|
}>;
|
620
620
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
621
|
-
new (props: (Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
622
|
-
placeholder
|
623
|
-
itemRender
|
621
|
+
new (props: (Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
622
|
+
placeholder?: string | undefined;
|
623
|
+
itemRender?: ((props: {
|
624
624
|
value: any;
|
625
625
|
onChange: (value: any) => void;
|
626
626
|
index: number;
|
627
627
|
disabled?: boolean | undefined;
|
628
|
-
}) => JSX.Element;
|
629
|
-
}
|
628
|
+
}) => JSX.Element) | undefined;
|
629
|
+
} & {} & {
|
630
630
|
locale?: string | undefined;
|
631
631
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
632
|
-
}) | Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
633
|
-
placeholder
|
634
|
-
itemRender
|
632
|
+
}) | Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
633
|
+
placeholder?: string | undefined;
|
634
|
+
itemRender?: ((props: {
|
635
635
|
value: any;
|
636
636
|
onChange: (value: any) => void;
|
637
637
|
index: number;
|
638
638
|
disabled?: boolean | undefined;
|
639
|
-
}) => JSX.Element;
|
640
|
-
}
|
639
|
+
}) => JSX.Element) | undefined;
|
640
|
+
} & {} & {
|
641
641
|
locale?: string | undefined;
|
642
642
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
643
643
|
}>): {
|
644
644
|
render(): JSX.Element;
|
645
645
|
context: any;
|
646
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
647
|
-
placeholder
|
648
|
-
itemRender
|
646
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
647
|
+
placeholder?: string | undefined;
|
648
|
+
itemRender?: ((props: {
|
649
649
|
value: any;
|
650
650
|
onChange: (value: any) => void;
|
651
651
|
index: number;
|
652
652
|
disabled?: boolean | undefined;
|
653
|
-
}) => JSX.Element;
|
654
|
-
}
|
653
|
+
}) => JSX.Element) | undefined;
|
654
|
+
} & {} & {
|
655
655
|
locale?: string | undefined;
|
656
656
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
657
657
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
658
658
|
forceUpdate(callback?: (() => void) | undefined): void;
|
659
|
-
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
660
|
-
placeholder
|
661
|
-
itemRender
|
659
|
+
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
660
|
+
placeholder?: string | undefined;
|
661
|
+
itemRender?: ((props: {
|
662
662
|
value: any;
|
663
663
|
onChange: (value: any) => void;
|
664
664
|
index: number;
|
665
665
|
disabled?: boolean | undefined;
|
666
|
-
}) => JSX.Element;
|
667
|
-
}
|
666
|
+
}) => JSX.Element) | undefined;
|
667
|
+
} & {} & {
|
668
668
|
locale?: string | undefined;
|
669
669
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
670
670
|
}> & Readonly<{
|
@@ -675,131 +675,131 @@ declare const _default: {
|
|
675
675
|
[key: string]: React.ReactInstance;
|
676
676
|
};
|
677
677
|
componentDidMount?(): void;
|
678
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
679
|
-
placeholder
|
680
|
-
itemRender
|
678
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
679
|
+
placeholder?: string | undefined;
|
680
|
+
itemRender?: ((props: {
|
681
681
|
value: any;
|
682
682
|
onChange: (value: any) => void;
|
683
683
|
index: number;
|
684
684
|
disabled?: boolean | undefined;
|
685
|
-
}) => JSX.Element;
|
686
|
-
}
|
685
|
+
}) => JSX.Element) | undefined;
|
686
|
+
} & {} & {
|
687
687
|
locale?: string | undefined;
|
688
688
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
689
689
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
690
690
|
componentWillUnmount?(): void;
|
691
691
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
692
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
693
|
-
placeholder
|
694
|
-
itemRender
|
692
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
693
|
+
placeholder?: string | undefined;
|
694
|
+
itemRender?: ((props: {
|
695
695
|
value: any;
|
696
696
|
onChange: (value: any) => void;
|
697
697
|
index: number;
|
698
698
|
disabled?: boolean | undefined;
|
699
|
-
}) => JSX.Element;
|
700
|
-
}
|
699
|
+
}) => JSX.Element) | undefined;
|
700
|
+
} & {} & {
|
701
701
|
locale?: string | undefined;
|
702
702
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
703
703
|
}>, prevState: Readonly<{}>): any;
|
704
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
705
|
-
placeholder
|
706
|
-
itemRender
|
704
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
705
|
+
placeholder?: string | undefined;
|
706
|
+
itemRender?: ((props: {
|
707
707
|
value: any;
|
708
708
|
onChange: (value: any) => void;
|
709
709
|
index: number;
|
710
710
|
disabled?: boolean | undefined;
|
711
|
-
}) => JSX.Element;
|
712
|
-
}
|
711
|
+
}) => JSX.Element) | undefined;
|
712
|
+
} & {} & {
|
713
713
|
locale?: string | undefined;
|
714
714
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
715
715
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
716
716
|
componentWillMount?(): void;
|
717
717
|
UNSAFE_componentWillMount?(): void;
|
718
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
719
|
-
placeholder
|
720
|
-
itemRender
|
718
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
719
|
+
placeholder?: string | undefined;
|
720
|
+
itemRender?: ((props: {
|
721
721
|
value: any;
|
722
722
|
onChange: (value: any) => void;
|
723
723
|
index: number;
|
724
724
|
disabled?: boolean | undefined;
|
725
|
-
}) => JSX.Element;
|
726
|
-
}
|
725
|
+
}) => JSX.Element) | undefined;
|
726
|
+
} & {} & {
|
727
727
|
locale?: string | undefined;
|
728
728
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
729
729
|
}>, nextContext: any): void;
|
730
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
731
|
-
placeholder
|
732
|
-
itemRender
|
730
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
731
|
+
placeholder?: string | undefined;
|
732
|
+
itemRender?: ((props: {
|
733
733
|
value: any;
|
734
734
|
onChange: (value: any) => void;
|
735
735
|
index: number;
|
736
736
|
disabled?: boolean | undefined;
|
737
|
-
}) => JSX.Element;
|
738
|
-
}
|
737
|
+
}) => JSX.Element) | undefined;
|
738
|
+
} & {} & {
|
739
739
|
locale?: string | undefined;
|
740
740
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
741
741
|
}>, nextContext: any): void;
|
742
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
743
|
-
placeholder
|
744
|
-
itemRender
|
742
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
743
|
+
placeholder?: string | undefined;
|
744
|
+
itemRender?: ((props: {
|
745
745
|
value: any;
|
746
746
|
onChange: (value: any) => void;
|
747
747
|
index: number;
|
748
748
|
disabled?: boolean | undefined;
|
749
|
-
}) => JSX.Element;
|
750
|
-
}
|
749
|
+
}) => JSX.Element) | undefined;
|
750
|
+
} & {} & {
|
751
751
|
locale?: string | undefined;
|
752
752
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
753
753
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
754
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
755
|
-
placeholder
|
756
|
-
itemRender
|
754
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
755
|
+
placeholder?: string | undefined;
|
756
|
+
itemRender?: ((props: {
|
757
757
|
value: any;
|
758
758
|
onChange: (value: any) => void;
|
759
759
|
index: number;
|
760
760
|
disabled?: boolean | undefined;
|
761
|
-
}) => JSX.Element;
|
762
|
-
}
|
761
|
+
}) => JSX.Element) | undefined;
|
762
|
+
} & {} & {
|
763
763
|
locale?: string | undefined;
|
764
764
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
765
765
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
766
766
|
};
|
767
|
-
new (props: Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
768
|
-
placeholder
|
769
|
-
itemRender
|
767
|
+
new (props: Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
768
|
+
placeholder?: string | undefined;
|
769
|
+
itemRender?: ((props: {
|
770
770
|
value: any;
|
771
771
|
onChange: (value: any) => void;
|
772
772
|
index: number;
|
773
773
|
disabled?: boolean | undefined;
|
774
|
-
}) => JSX.Element;
|
775
|
-
}
|
774
|
+
}) => JSX.Element) | undefined;
|
775
|
+
} & {} & {
|
776
776
|
locale?: string | undefined;
|
777
777
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
778
778
|
}, context: any): {
|
779
779
|
render(): JSX.Element;
|
780
780
|
context: any;
|
781
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
782
|
-
placeholder
|
783
|
-
itemRender
|
781
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
782
|
+
placeholder?: string | undefined;
|
783
|
+
itemRender?: ((props: {
|
784
784
|
value: any;
|
785
785
|
onChange: (value: any) => void;
|
786
786
|
index: number;
|
787
787
|
disabled?: boolean | undefined;
|
788
|
-
}) => JSX.Element;
|
789
|
-
}
|
788
|
+
}) => JSX.Element) | undefined;
|
789
|
+
} & {} & {
|
790
790
|
locale?: string | undefined;
|
791
791
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
792
792
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
793
793
|
forceUpdate(callback?: (() => void) | undefined): void;
|
794
|
-
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
795
|
-
placeholder
|
796
|
-
itemRender
|
794
|
+
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
795
|
+
placeholder?: string | undefined;
|
796
|
+
itemRender?: ((props: {
|
797
797
|
value: any;
|
798
798
|
onChange: (value: any) => void;
|
799
799
|
index: number;
|
800
800
|
disabled?: boolean | undefined;
|
801
|
-
}) => JSX.Element;
|
802
|
-
}
|
801
|
+
}) => JSX.Element) | undefined;
|
802
|
+
} & {} & {
|
803
803
|
locale?: string | undefined;
|
804
804
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
805
805
|
}> & Readonly<{
|
@@ -810,91 +810,91 @@ declare const _default: {
|
|
810
810
|
[key: string]: React.ReactInstance;
|
811
811
|
};
|
812
812
|
componentDidMount?(): void;
|
813
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
814
|
-
placeholder
|
815
|
-
itemRender
|
813
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
814
|
+
placeholder?: string | undefined;
|
815
|
+
itemRender?: ((props: {
|
816
816
|
value: any;
|
817
817
|
onChange: (value: any) => void;
|
818
818
|
index: number;
|
819
819
|
disabled?: boolean | undefined;
|
820
|
-
}) => JSX.Element;
|
821
|
-
}
|
820
|
+
}) => JSX.Element) | undefined;
|
821
|
+
} & {} & {
|
822
822
|
locale?: string | undefined;
|
823
823
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
824
824
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
825
825
|
componentWillUnmount?(): void;
|
826
826
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
827
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
828
|
-
placeholder
|
829
|
-
itemRender
|
827
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
828
|
+
placeholder?: string | undefined;
|
829
|
+
itemRender?: ((props: {
|
830
830
|
value: any;
|
831
831
|
onChange: (value: any) => void;
|
832
832
|
index: number;
|
833
833
|
disabled?: boolean | undefined;
|
834
|
-
}) => JSX.Element;
|
835
|
-
}
|
834
|
+
}) => JSX.Element) | undefined;
|
835
|
+
} & {} & {
|
836
836
|
locale?: string | undefined;
|
837
837
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
838
838
|
}>, prevState: Readonly<{}>): any;
|
839
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
840
|
-
placeholder
|
841
|
-
itemRender
|
839
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
840
|
+
placeholder?: string | undefined;
|
841
|
+
itemRender?: ((props: {
|
842
842
|
value: any;
|
843
843
|
onChange: (value: any) => void;
|
844
844
|
index: number;
|
845
845
|
disabled?: boolean | undefined;
|
846
|
-
}) => JSX.Element;
|
847
|
-
}
|
846
|
+
}) => JSX.Element) | undefined;
|
847
|
+
} & {} & {
|
848
848
|
locale?: string | undefined;
|
849
849
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
850
850
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
851
851
|
componentWillMount?(): void;
|
852
852
|
UNSAFE_componentWillMount?(): void;
|
853
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
854
|
-
placeholder
|
855
|
-
itemRender
|
853
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
854
|
+
placeholder?: string | undefined;
|
855
|
+
itemRender?: ((props: {
|
856
856
|
value: any;
|
857
857
|
onChange: (value: any) => void;
|
858
858
|
index: number;
|
859
859
|
disabled?: boolean | undefined;
|
860
|
-
}) => JSX.Element;
|
861
|
-
}
|
860
|
+
}) => JSX.Element) | undefined;
|
861
|
+
} & {} & {
|
862
862
|
locale?: string | undefined;
|
863
863
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
864
864
|
}>, nextContext: any): void;
|
865
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
866
|
-
placeholder
|
867
|
-
itemRender
|
865
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
866
|
+
placeholder?: string | undefined;
|
867
|
+
itemRender?: ((props: {
|
868
868
|
value: any;
|
869
869
|
onChange: (value: any) => void;
|
870
870
|
index: number;
|
871
871
|
disabled?: boolean | undefined;
|
872
|
-
}) => JSX.Element;
|
873
|
-
}
|
872
|
+
}) => JSX.Element) | undefined;
|
873
|
+
} & {} & {
|
874
874
|
locale?: string | undefined;
|
875
875
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
876
876
|
}>, nextContext: any): void;
|
877
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
878
|
-
placeholder
|
879
|
-
itemRender
|
877
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
878
|
+
placeholder?: string | undefined;
|
879
|
+
itemRender?: ((props: {
|
880
880
|
value: any;
|
881
881
|
onChange: (value: any) => void;
|
882
882
|
index: number;
|
883
883
|
disabled?: boolean | undefined;
|
884
|
-
}) => JSX.Element;
|
885
|
-
}
|
884
|
+
}) => JSX.Element) | undefined;
|
885
|
+
} & {} & {
|
886
886
|
locale?: string | undefined;
|
887
887
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
888
888
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
889
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
890
|
-
placeholder
|
891
|
-
itemRender
|
889
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
890
|
+
placeholder?: string | undefined;
|
891
|
+
itemRender?: ((props: {
|
892
892
|
value: any;
|
893
893
|
onChange: (value: any) => void;
|
894
894
|
index: number;
|
895
895
|
disabled?: boolean | undefined;
|
896
|
-
}) => JSX.Element;
|
897
|
-
}
|
896
|
+
}) => JSX.Element) | undefined;
|
897
|
+
} & {} & {
|
898
898
|
locale?: string | undefined;
|
899
899
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
900
900
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
@@ -906,53 +906,53 @@ declare const _default: {
|
|
906
906
|
ComposedComponent: typeof ArrayInput;
|
907
907
|
}, {}> & {
|
908
908
|
ComposedComponent: {
|
909
|
-
new (props: (Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
910
|
-
placeholder
|
911
|
-
itemRender
|
909
|
+
new (props: (Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
910
|
+
placeholder?: string | undefined;
|
911
|
+
itemRender?: ((props: {
|
912
912
|
value: any;
|
913
913
|
onChange: (value: any) => void;
|
914
914
|
index: number;
|
915
915
|
disabled?: boolean | undefined;
|
916
|
-
}) => JSX.Element;
|
917
|
-
}
|
916
|
+
}) => JSX.Element) | undefined;
|
917
|
+
} & {} & {
|
918
918
|
locale?: string | undefined;
|
919
919
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
920
|
-
}) | Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
921
|
-
placeholder
|
922
|
-
itemRender
|
920
|
+
}) | Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
921
|
+
placeholder?: string | undefined;
|
922
|
+
itemRender?: ((props: {
|
923
923
|
value: any;
|
924
924
|
onChange: (value: any) => void;
|
925
925
|
index: number;
|
926
926
|
disabled?: boolean | undefined;
|
927
|
-
}) => JSX.Element;
|
928
|
-
}
|
927
|
+
}) => JSX.Element) | undefined;
|
928
|
+
} & {} & {
|
929
929
|
locale?: string | undefined;
|
930
930
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
931
931
|
}>): {
|
932
932
|
render(): JSX.Element;
|
933
933
|
context: any;
|
934
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
935
|
-
placeholder
|
936
|
-
itemRender
|
934
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
935
|
+
placeholder?: string | undefined;
|
936
|
+
itemRender?: ((props: {
|
937
937
|
value: any;
|
938
938
|
onChange: (value: any) => void;
|
939
939
|
index: number;
|
940
940
|
disabled?: boolean | undefined;
|
941
|
-
}) => JSX.Element;
|
942
|
-
}
|
941
|
+
}) => JSX.Element) | undefined;
|
942
|
+
} & {} & {
|
943
943
|
locale?: string | undefined;
|
944
944
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
945
945
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
946
946
|
forceUpdate(callback?: (() => void) | undefined): void;
|
947
|
-
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
948
|
-
placeholder
|
949
|
-
itemRender
|
947
|
+
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
948
|
+
placeholder?: string | undefined;
|
949
|
+
itemRender?: ((props: {
|
950
950
|
value: any;
|
951
951
|
onChange: (value: any) => void;
|
952
952
|
index: number;
|
953
953
|
disabled?: boolean | undefined;
|
954
|
-
}) => JSX.Element;
|
955
|
-
}
|
954
|
+
}) => JSX.Element) | undefined;
|
955
|
+
} & {} & {
|
956
956
|
locale?: string | undefined;
|
957
957
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
958
958
|
}> & Readonly<{
|
@@ -963,131 +963,131 @@ declare const _default: {
|
|
963
963
|
[key: string]: React.ReactInstance;
|
964
964
|
};
|
965
965
|
componentDidMount?(): void;
|
966
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
967
|
-
placeholder
|
968
|
-
itemRender
|
966
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
967
|
+
placeholder?: string | undefined;
|
968
|
+
itemRender?: ((props: {
|
969
969
|
value: any;
|
970
970
|
onChange: (value: any) => void;
|
971
971
|
index: number;
|
972
972
|
disabled?: boolean | undefined;
|
973
|
-
}) => JSX.Element;
|
974
|
-
}
|
973
|
+
}) => JSX.Element) | undefined;
|
974
|
+
} & {} & {
|
975
975
|
locale?: string | undefined;
|
976
976
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
977
977
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
978
978
|
componentWillUnmount?(): void;
|
979
979
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
980
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
981
|
-
placeholder
|
982
|
-
itemRender
|
980
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
981
|
+
placeholder?: string | undefined;
|
982
|
+
itemRender?: ((props: {
|
983
983
|
value: any;
|
984
984
|
onChange: (value: any) => void;
|
985
985
|
index: number;
|
986
986
|
disabled?: boolean | undefined;
|
987
|
-
}) => JSX.Element;
|
988
|
-
}
|
987
|
+
}) => JSX.Element) | undefined;
|
988
|
+
} & {} & {
|
989
989
|
locale?: string | undefined;
|
990
990
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
991
991
|
}>, prevState: Readonly<{}>): any;
|
992
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
993
|
-
placeholder
|
994
|
-
itemRender
|
992
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
993
|
+
placeholder?: string | undefined;
|
994
|
+
itemRender?: ((props: {
|
995
995
|
value: any;
|
996
996
|
onChange: (value: any) => void;
|
997
997
|
index: number;
|
998
998
|
disabled?: boolean | undefined;
|
999
|
-
}) => JSX.Element;
|
1000
|
-
}
|
999
|
+
}) => JSX.Element) | undefined;
|
1000
|
+
} & {} & {
|
1001
1001
|
locale?: string | undefined;
|
1002
1002
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1003
1003
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1004
1004
|
componentWillMount?(): void;
|
1005
1005
|
UNSAFE_componentWillMount?(): void;
|
1006
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1007
|
-
placeholder
|
1008
|
-
itemRender
|
1006
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1007
|
+
placeholder?: string | undefined;
|
1008
|
+
itemRender?: ((props: {
|
1009
1009
|
value: any;
|
1010
1010
|
onChange: (value: any) => void;
|
1011
1011
|
index: number;
|
1012
1012
|
disabled?: boolean | undefined;
|
1013
|
-
}) => JSX.Element;
|
1014
|
-
}
|
1013
|
+
}) => JSX.Element) | undefined;
|
1014
|
+
} & {} & {
|
1015
1015
|
locale?: string | undefined;
|
1016
1016
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1017
1017
|
}>, nextContext: any): void;
|
1018
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1019
|
-
placeholder
|
1020
|
-
itemRender
|
1018
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1019
|
+
placeholder?: string | undefined;
|
1020
|
+
itemRender?: ((props: {
|
1021
1021
|
value: any;
|
1022
1022
|
onChange: (value: any) => void;
|
1023
1023
|
index: number;
|
1024
1024
|
disabled?: boolean | undefined;
|
1025
|
-
}) => JSX.Element;
|
1026
|
-
}
|
1025
|
+
}) => JSX.Element) | undefined;
|
1026
|
+
} & {} & {
|
1027
1027
|
locale?: string | undefined;
|
1028
1028
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1029
1029
|
}>, nextContext: any): void;
|
1030
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1031
|
-
placeholder
|
1032
|
-
itemRender
|
1030
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1031
|
+
placeholder?: string | undefined;
|
1032
|
+
itemRender?: ((props: {
|
1033
1033
|
value: any;
|
1034
1034
|
onChange: (value: any) => void;
|
1035
1035
|
index: number;
|
1036
1036
|
disabled?: boolean | undefined;
|
1037
|
-
}) => JSX.Element;
|
1038
|
-
}
|
1037
|
+
}) => JSX.Element) | undefined;
|
1038
|
+
} & {} & {
|
1039
1039
|
locale?: string | undefined;
|
1040
1040
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1041
1041
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1042
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1043
|
-
placeholder
|
1044
|
-
itemRender
|
1042
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1043
|
+
placeholder?: string | undefined;
|
1044
|
+
itemRender?: ((props: {
|
1045
1045
|
value: any;
|
1046
1046
|
onChange: (value: any) => void;
|
1047
1047
|
index: number;
|
1048
1048
|
disabled?: boolean | undefined;
|
1049
|
-
}) => JSX.Element;
|
1050
|
-
}
|
1049
|
+
}) => JSX.Element) | undefined;
|
1050
|
+
} & {} & {
|
1051
1051
|
locale?: string | undefined;
|
1052
1052
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1053
1053
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1054
1054
|
};
|
1055
|
-
new (props: Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1056
|
-
placeholder
|
1057
|
-
itemRender
|
1055
|
+
new (props: Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1056
|
+
placeholder?: string | undefined;
|
1057
|
+
itemRender?: ((props: {
|
1058
1058
|
value: any;
|
1059
1059
|
onChange: (value: any) => void;
|
1060
1060
|
index: number;
|
1061
1061
|
disabled?: boolean | undefined;
|
1062
|
-
}) => JSX.Element;
|
1063
|
-
}
|
1062
|
+
}) => JSX.Element) | undefined;
|
1063
|
+
} & {} & {
|
1064
1064
|
locale?: string | undefined;
|
1065
1065
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1066
1066
|
}, context: any): {
|
1067
1067
|
render(): JSX.Element;
|
1068
1068
|
context: any;
|
1069
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1070
|
-
placeholder
|
1071
|
-
itemRender
|
1069
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1070
|
+
placeholder?: string | undefined;
|
1071
|
+
itemRender?: ((props: {
|
1072
1072
|
value: any;
|
1073
1073
|
onChange: (value: any) => void;
|
1074
1074
|
index: number;
|
1075
1075
|
disabled?: boolean | undefined;
|
1076
|
-
}) => JSX.Element;
|
1077
|
-
}
|
1076
|
+
}) => JSX.Element) | undefined;
|
1077
|
+
} & {} & {
|
1078
1078
|
locale?: string | undefined;
|
1079
1079
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1080
1080
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1081
1081
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1082
|
-
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1083
|
-
placeholder
|
1084
|
-
itemRender
|
1082
|
+
readonly props: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1083
|
+
placeholder?: string | undefined;
|
1084
|
+
itemRender?: ((props: {
|
1085
1085
|
value: any;
|
1086
1086
|
onChange: (value: any) => void;
|
1087
1087
|
index: number;
|
1088
1088
|
disabled?: boolean | undefined;
|
1089
|
-
}) => JSX.Element;
|
1090
|
-
}
|
1089
|
+
}) => JSX.Element) | undefined;
|
1090
|
+
} & {} & {
|
1091
1091
|
locale?: string | undefined;
|
1092
1092
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1093
1093
|
}> & Readonly<{
|
@@ -1098,91 +1098,91 @@ declare const _default: {
|
|
1098
1098
|
[key: string]: React.ReactInstance;
|
1099
1099
|
};
|
1100
1100
|
componentDidMount?(): void;
|
1101
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1102
|
-
placeholder
|
1103
|
-
itemRender
|
1101
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1102
|
+
placeholder?: string | undefined;
|
1103
|
+
itemRender?: ((props: {
|
1104
1104
|
value: any;
|
1105
1105
|
onChange: (value: any) => void;
|
1106
1106
|
index: number;
|
1107
1107
|
disabled?: boolean | undefined;
|
1108
|
-
}) => JSX.Element;
|
1109
|
-
}
|
1108
|
+
}) => JSX.Element) | undefined;
|
1109
|
+
} & {} & {
|
1110
1110
|
locale?: string | undefined;
|
1111
1111
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1112
1112
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1113
1113
|
componentWillUnmount?(): void;
|
1114
1114
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1115
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1116
|
-
placeholder
|
1117
|
-
itemRender
|
1115
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1116
|
+
placeholder?: string | undefined;
|
1117
|
+
itemRender?: ((props: {
|
1118
1118
|
value: any;
|
1119
1119
|
onChange: (value: any) => void;
|
1120
1120
|
index: number;
|
1121
1121
|
disabled?: boolean | undefined;
|
1122
|
-
}) => JSX.Element;
|
1123
|
-
}
|
1122
|
+
}) => JSX.Element) | undefined;
|
1123
|
+
} & {} & {
|
1124
1124
|
locale?: string | undefined;
|
1125
1125
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1126
1126
|
}>, prevState: Readonly<{}>): any;
|
1127
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1128
|
-
placeholder
|
1129
|
-
itemRender
|
1127
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1128
|
+
placeholder?: string | undefined;
|
1129
|
+
itemRender?: ((props: {
|
1130
1130
|
value: any;
|
1131
1131
|
onChange: (value: any) => void;
|
1132
1132
|
index: number;
|
1133
1133
|
disabled?: boolean | undefined;
|
1134
|
-
}) => JSX.Element;
|
1135
|
-
}
|
1134
|
+
}) => JSX.Element) | undefined;
|
1135
|
+
} & {} & {
|
1136
1136
|
locale?: string | undefined;
|
1137
1137
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1138
1138
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1139
1139
|
componentWillMount?(): void;
|
1140
1140
|
UNSAFE_componentWillMount?(): void;
|
1141
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1142
|
-
placeholder
|
1143
|
-
itemRender
|
1141
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1142
|
+
placeholder?: string | undefined;
|
1143
|
+
itemRender?: ((props: {
|
1144
1144
|
value: any;
|
1145
1145
|
onChange: (value: any) => void;
|
1146
1146
|
index: number;
|
1147
1147
|
disabled?: boolean | undefined;
|
1148
|
-
}) => JSX.Element;
|
1149
|
-
}
|
1148
|
+
}) => JSX.Element) | undefined;
|
1149
|
+
} & {} & {
|
1150
1150
|
locale?: string | undefined;
|
1151
1151
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1152
1152
|
}>, nextContext: any): void;
|
1153
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1154
|
-
placeholder
|
1155
|
-
itemRender
|
1153
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1154
|
+
placeholder?: string | undefined;
|
1155
|
+
itemRender?: ((props: {
|
1156
1156
|
value: any;
|
1157
1157
|
onChange: (value: any) => void;
|
1158
1158
|
index: number;
|
1159
1159
|
disabled?: boolean | undefined;
|
1160
|
-
}) => JSX.Element;
|
1161
|
-
}
|
1160
|
+
}) => JSX.Element) | undefined;
|
1161
|
+
} & {} & {
|
1162
1162
|
locale?: string | undefined;
|
1163
1163
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1164
1164
|
}>, nextContext: any): void;
|
1165
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1166
|
-
placeholder
|
1167
|
-
itemRender
|
1165
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1166
|
+
placeholder?: string | undefined;
|
1167
|
+
itemRender?: ((props: {
|
1168
1168
|
value: any;
|
1169
1169
|
onChange: (value: any) => void;
|
1170
1170
|
index: number;
|
1171
1171
|
disabled?: boolean | undefined;
|
1172
|
-
}) => JSX.Element;
|
1173
|
-
}
|
1172
|
+
}) => JSX.Element) | undefined;
|
1173
|
+
} & {} & {
|
1174
1174
|
locale?: string | undefined;
|
1175
1175
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1176
1176
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1177
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> &
|
1178
|
-
placeholder
|
1179
|
-
itemRender
|
1177
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<ArrayInputProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "disabled" | "maxLength" | "minLength" | "onChange" | "addable" | "removable" | "editable" | "sortable" | "itemInitalValue" | "sortTip"> & {
|
1178
|
+
placeholder?: string | undefined;
|
1179
|
+
itemRender?: ((props: {
|
1180
1180
|
value: any;
|
1181
1181
|
onChange: (value: any) => void;
|
1182
1182
|
index: number;
|
1183
1183
|
disabled?: boolean | undefined;
|
1184
|
-
}) => JSX.Element;
|
1185
|
-
}
|
1184
|
+
}) => JSX.Element) | undefined;
|
1185
|
+
} & {} & {
|
1186
1186
|
locale?: string | undefined;
|
1187
1187
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1188
1188
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|