amis 1.5.3 → 1.5.4
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/README.md +5 -0
- package/lib/components/Card.d.ts +96 -0
- package/lib/components/Card.js +85 -0
- package/lib/components/Card.js.map +13 -0
- package/lib/components/DatePicker.d.ts +85 -84
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.d.ts +84 -84
- package/lib/components/MonthRangePicker.d.ts +84 -84
- package/lib/components/Picker.d.ts +503 -0
- package/lib/components/Picker.js +65 -0
- package/lib/components/Picker.js.map +13 -0
- package/lib/components/PickerColumn.d.ts +29 -459
- package/lib/components/PickerColumn.js +35 -44
- package/lib/components/PickerColumn.js.map +2 -2
- package/lib/components/Select.d.ts +238 -238
- package/lib/components/Select.js +9 -2
- package/lib/components/Select.js.map +2 -2
- package/lib/components/Selection.js +1 -4
- package/lib/components/Selection.js.map +2 -2
- package/lib/components/Switch.d.ts +6 -6
- package/lib/components/Switch.js.map +2 -2
- package/lib/components/calendar/Calendar.js +15 -0
- package/lib/components/calendar/Calendar.js.map +2 -2
- package/lib/components/calendar/DaysView.js +4 -4
- package/lib/components/calendar/DaysView.js.map +2 -2
- package/lib/components/calendar/TimeView.d.ts +10 -0
- package/lib/components/calendar/TimeView.js +55 -2
- package/lib/components/calendar/TimeView.js.map +2 -2
- package/lib/components/calendar/YearsView.d.ts +9 -0
- package/lib/components/calendar/YearsView.js +19 -0
- package/lib/components/calendar/YearsView.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Card.d.ts +81 -13
- package/lib/renderers/Card.js +178 -81
- package/lib/renderers/Card.js.map +2 -2
- package/lib/renderers/Form/DiffEditor.d.ts +145 -37
- package/lib/renderers/Form/Editor.d.ts +144 -36
- package/lib/renderers/Form/Formula.js +5 -5
- package/lib/renderers/Form/Formula.js.map +2 -2
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/InputFile.js +2 -2
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/index.js +10 -0
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Form/wrapControl.js +3 -2
- package/lib/renderers/Form/wrapControl.js.map +2 -2
- package/lib/store/combo.d.ts +160 -40
- package/lib/store/form.d.ts +64 -16
- package/lib/store/formItem.d.ts +4 -2
- package/lib/store/formItem.js +11 -6
- package/lib/store/formItem.js.map +2 -2
- package/lib/store/table.d.ts +128 -32
- package/lib/themes/ang-ie11.css +177 -30
- package/lib/themes/ang.css +177 -30
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +177 -30
- package/lib/themes/antd.css +177 -30
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +177 -30
- package/lib/themes/cxd.css +177 -30
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +177 -30
- package/lib/themes/dark.css +177 -30
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +177 -30
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.d.ts +7 -0
- package/lib/utils/helper.js +33 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +2 -2
- package/schema.json +157 -13
- package/scss/_properties.scss +13 -2
- package/scss/components/_card.scss +155 -15
- package/scss/components/_nav.scss +1 -1
- package/scss/components/_picker-columns.scss +20 -14
- package/scss/components/form/_file.scss +2 -2
- package/scss/components/form/_selection.scss +4 -0
- package/scss/components/form/_switch.scss +6 -0
- package/sdk/ang-ie11.css +214 -40
- package/sdk/ang.css +216 -32
- package/sdk/antd-ie11.css +214 -40
- package/sdk/antd.css +216 -32
- package/sdk/charts.js +14 -14
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +206 -32
- package/sdk/cxd.css +216 -32
- package/sdk/dark-ie11.css +214 -40
- package/sdk/dark.css +216 -32
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- 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 +206 -32
- package/sdk/sdk.css +216 -32
- package/sdk/sdk.js +1190 -1186
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/components/Card.tsx +203 -0
- package/src/components/DatePicker.tsx +3 -0
- package/src/components/Picker.tsx +145 -0
- package/src/components/PickerColumn.tsx +58 -95
- package/src/components/Select.tsx +17 -12
- package/src/components/Selection.tsx +1 -4
- package/src/components/Switch.tsx +7 -7
- package/src/components/calendar/Calendar.tsx +18 -0
- package/src/components/calendar/DaysView.tsx +6 -4
- package/src/components/calendar/TimeView.tsx +80 -5
- package/src/components/calendar/YearsView.tsx +44 -1
- package/src/renderers/Card.tsx +299 -191
- package/src/renderers/Form/Formula.tsx +7 -5
- package/src/renderers/Form/InputFile.tsx +6 -2
- package/src/renderers/Form/index.tsx +12 -0
- package/src/renderers/Form/wrapControl.tsx +5 -2
- package/src/store/formItem.ts +12 -6
- package/src/utils/helper.ts +34 -0
@@ -1,32 +1,22 @@
|
|
1
1
|
/// <reference types="hoist-non-react-statics" />
|
2
2
|
/**
|
3
3
|
* @file Picker
|
4
|
-
* @description
|
4
|
+
* @description 移动端列滚动选择器
|
5
5
|
*/
|
6
|
-
import React
|
6
|
+
import React from 'react';
|
7
7
|
import { ThemeProps } from '../theme';
|
8
|
-
|
9
|
-
|
10
|
-
mobileClassName?: string;
|
11
|
-
style?: CSSProperties;
|
12
|
-
index?: number;
|
13
|
-
labelField: string;
|
8
|
+
export interface PickerColumnItem {
|
9
|
+
labelField?: string;
|
14
10
|
readonly?: boolean;
|
15
|
-
value
|
16
|
-
swipeDuration?: number
|
17
|
-
visibleItemCount?: number
|
11
|
+
value?: PickerOption;
|
12
|
+
swipeDuration?: number;
|
13
|
+
visibleItemCount?: number;
|
14
|
+
itemHeight?: number;
|
18
15
|
options?: PickerOption[];
|
19
|
-
children?: any;
|
20
16
|
optionRender?: (option: string | object | PickerOption) => React.ReactNode;
|
21
17
|
onChange?: (value?: PickerOption | string, index?: number, confirm?: boolean) => void;
|
22
|
-
onClose?: () => void;
|
23
|
-
onConfirm?: () => void;
|
24
18
|
}
|
25
|
-
export interface
|
26
|
-
values?: string[];
|
27
|
-
className?: string;
|
28
|
-
children?: Column[];
|
29
|
-
disabled?: boolean;
|
19
|
+
export interface PickerColumnProps extends PickerColumnItem, ThemeProps {
|
30
20
|
}
|
31
21
|
export declare type PickerOption = string | number | PickerObjectOption;
|
32
22
|
export declare type PickerObjectOption = {
|
@@ -35,260 +25,12 @@ export declare type PickerObjectOption = {
|
|
35
25
|
disabled?: boolean;
|
36
26
|
} & Record<string, {}>;
|
37
27
|
declare const _default: {
|
38
|
-
new (props: (Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
39
|
-
locale?: string | undefined;
|
40
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
41
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
42
|
-
locale?: string | undefined;
|
43
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
44
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
45
|
-
render(): JSX.Element;
|
46
|
-
context: any;
|
47
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
48
|
-
locale?: string | undefined;
|
49
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
50
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
51
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
52
|
-
readonly props: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
53
|
-
locale?: string | undefined;
|
54
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
55
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
|
56
|
-
children?: React.ReactNode;
|
57
|
-
}>;
|
58
|
-
state: Readonly<{}>;
|
59
|
-
refs: {
|
60
|
-
[key: string]: React.ReactInstance;
|
61
|
-
};
|
62
|
-
componentDidMount?(): void;
|
63
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
64
|
-
locale?: string | undefined;
|
65
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
66
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
67
|
-
componentWillUnmount?(): void;
|
68
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
69
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
70
|
-
locale?: string | undefined;
|
71
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
72
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
73
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
74
|
-
locale?: string | undefined;
|
75
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
76
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
77
|
-
componentWillMount?(): void;
|
78
|
-
UNSAFE_componentWillMount?(): void;
|
79
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
80
|
-
locale?: string | undefined;
|
81
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
82
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
83
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
84
|
-
locale?: string | undefined;
|
85
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
86
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
87
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
88
|
-
locale?: string | undefined;
|
89
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
90
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
91
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
92
|
-
locale?: string | undefined;
|
93
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
94
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
95
|
-
};
|
96
|
-
new (props: Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
97
|
-
locale?: string | undefined;
|
98
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
99
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
100
|
-
render(): JSX.Element;
|
101
|
-
context: any;
|
102
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
103
|
-
locale?: string | undefined;
|
104
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
105
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
106
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
107
|
-
readonly props: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
108
|
-
locale?: string | undefined;
|
109
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
110
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
|
111
|
-
children?: React.ReactNode;
|
112
|
-
}>;
|
113
|
-
state: Readonly<{}>;
|
114
|
-
refs: {
|
115
|
-
[key: string]: React.ReactInstance;
|
116
|
-
};
|
117
|
-
componentDidMount?(): void;
|
118
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
119
|
-
locale?: string | undefined;
|
120
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
121
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
122
|
-
componentWillUnmount?(): void;
|
123
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
124
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
125
|
-
locale?: string | undefined;
|
126
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
127
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
128
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
129
|
-
locale?: string | undefined;
|
130
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
131
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
132
|
-
componentWillMount?(): void;
|
133
|
-
UNSAFE_componentWillMount?(): void;
|
134
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
135
|
-
locale?: string | undefined;
|
136
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
137
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
138
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
139
|
-
locale?: string | undefined;
|
140
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
141
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
142
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
143
|
-
locale?: string | undefined;
|
144
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
145
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
146
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
147
|
-
locale?: string | undefined;
|
148
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
149
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
150
|
-
};
|
151
|
-
displayName: string;
|
152
|
-
contextType: React.Context<string>;
|
153
|
-
ComposedComponent: React.ComponentType<{
|
154
|
-
new (props: (Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
155
|
-
locale?: string | undefined;
|
156
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
157
|
-
}) | Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
158
|
-
locale?: string | undefined;
|
159
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
160
|
-
}>): {
|
161
|
-
render(): JSX.Element;
|
162
|
-
context: any;
|
163
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
164
|
-
locale?: string | undefined;
|
165
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
166
|
-
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
167
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
168
|
-
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
169
|
-
locale?: string | undefined;
|
170
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
171
|
-
}> & Readonly<{
|
172
|
-
children?: React.ReactNode;
|
173
|
-
}>;
|
174
|
-
state: Readonly<{}>;
|
175
|
-
refs: {
|
176
|
-
[key: string]: React.ReactInstance;
|
177
|
-
};
|
178
|
-
componentDidMount?(): void;
|
179
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
180
|
-
locale?: string | undefined;
|
181
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
182
|
-
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
183
|
-
componentWillUnmount?(): void;
|
184
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
185
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
186
|
-
locale?: string | undefined;
|
187
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
188
|
-
}>, prevState: Readonly<{}>): any;
|
189
|
-
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
190
|
-
locale?: string | undefined;
|
191
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
192
|
-
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
193
|
-
componentWillMount?(): void;
|
194
|
-
UNSAFE_componentWillMount?(): void;
|
195
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
196
|
-
locale?: string | undefined;
|
197
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
198
|
-
}>, nextContext: any): void;
|
199
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
200
|
-
locale?: string | undefined;
|
201
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
202
|
-
}>, nextContext: any): void;
|
203
|
-
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
204
|
-
locale?: string | undefined;
|
205
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
206
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
207
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
208
|
-
locale?: string | undefined;
|
209
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
210
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
211
|
-
};
|
212
|
-
new (props: Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
213
|
-
locale?: string | undefined;
|
214
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
215
|
-
}, context: any): {
|
216
|
-
render(): JSX.Element;
|
217
|
-
context: any;
|
218
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
219
|
-
locale?: string | undefined;
|
220
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
221
|
-
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
222
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
223
|
-
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
224
|
-
locale?: string | undefined;
|
225
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
226
|
-
}> & Readonly<{
|
227
|
-
children?: React.ReactNode;
|
228
|
-
}>;
|
229
|
-
state: Readonly<{}>;
|
230
|
-
refs: {
|
231
|
-
[key: string]: React.ReactInstance;
|
232
|
-
};
|
233
|
-
componentDidMount?(): void;
|
234
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
235
|
-
locale?: string | undefined;
|
236
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
237
|
-
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
238
|
-
componentWillUnmount?(): void;
|
239
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
240
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
241
|
-
locale?: string | undefined;
|
242
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
243
|
-
}>, prevState: Readonly<{}>): any;
|
244
|
-
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
245
|
-
locale?: string | undefined;
|
246
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
247
|
-
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
248
|
-
componentWillMount?(): void;
|
249
|
-
UNSAFE_componentWillMount?(): void;
|
250
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
251
|
-
locale?: string | undefined;
|
252
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
253
|
-
}>, nextContext: any): void;
|
254
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
255
|
-
locale?: string | undefined;
|
256
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
257
|
-
}>, nextContext: any): void;
|
258
|
-
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
259
|
-
locale?: string | undefined;
|
260
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
261
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
262
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
263
|
-
locale?: string | undefined;
|
264
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
265
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
266
|
-
};
|
267
|
-
displayName: string;
|
268
|
-
contextType: React.Context<string>;
|
269
|
-
ComposedComponent: React.ComponentType<React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>>;
|
270
|
-
} & import("hoist-non-react-statics").NonReactStatics<React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>, {}> & {
|
271
|
-
ComposedComponent: React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>;
|
272
|
-
}>;
|
273
|
-
} & import("hoist-non-react-statics").NonReactStatics<{
|
274
|
-
new (props: (Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
275
|
-
locale?: string | undefined;
|
276
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
277
|
-
}) | Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
278
|
-
locale?: string | undefined;
|
279
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
280
|
-
}>): {
|
28
|
+
new (props: (Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
281
29
|
render(): JSX.Element;
|
282
30
|
context: any;
|
283
|
-
setState<
|
284
|
-
locale?: string | undefined;
|
285
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
286
|
-
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
31
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
287
32
|
forceUpdate(callback?: (() => void) | undefined): void;
|
288
|
-
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
289
|
-
locale?: string | undefined;
|
290
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
291
|
-
}> & Readonly<{
|
33
|
+
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
|
292
34
|
children?: React.ReactNode;
|
293
35
|
}>;
|
294
36
|
state: Readonly<{}>;
|
@@ -296,54 +38,24 @@ declare const _default: {
|
|
296
38
|
[key: string]: React.ReactInstance;
|
297
39
|
};
|
298
40
|
componentDidMount?(): void;
|
299
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
300
|
-
locale?: string | undefined;
|
301
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
302
|
-
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
41
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
303
42
|
componentWillUnmount?(): void;
|
304
43
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
305
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
306
|
-
|
307
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
308
|
-
}>, prevState: Readonly<{}>): any;
|
309
|
-
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
310
|
-
locale?: string | undefined;
|
311
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
312
|
-
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
44
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
45
|
+
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
313
46
|
componentWillMount?(): void;
|
314
47
|
UNSAFE_componentWillMount?(): void;
|
315
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
316
|
-
|
317
|
-
|
318
|
-
}>, nextContext: any): void;
|
319
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
320
|
-
locale?: string | undefined;
|
321
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
322
|
-
}>, nextContext: any): void;
|
323
|
-
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
324
|
-
locale?: string | undefined;
|
325
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
326
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
327
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
328
|
-
locale?: string | undefined;
|
329
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
330
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
48
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
49
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
50
|
+
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
51
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
331
52
|
};
|
332
|
-
new (props: Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
333
|
-
locale?: string | undefined;
|
334
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
335
|
-
}, context: any): {
|
53
|
+
new (props: Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
336
54
|
render(): JSX.Element;
|
337
55
|
context: any;
|
338
|
-
setState<
|
339
|
-
locale?: string | undefined;
|
340
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
341
|
-
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
56
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
342
57
|
forceUpdate(callback?: (() => void) | undefined): void;
|
343
|
-
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
344
|
-
locale?: string | undefined;
|
345
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
346
|
-
}> & Readonly<{
|
58
|
+
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
|
347
59
|
children?: React.ReactNode;
|
348
60
|
}>;
|
349
61
|
state: Readonly<{}>;
|
@@ -351,164 +63,22 @@ declare const _default: {
|
|
351
63
|
[key: string]: React.ReactInstance;
|
352
64
|
};
|
353
65
|
componentDidMount?(): void;
|
354
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
355
|
-
locale?: string | undefined;
|
356
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
357
|
-
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
66
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
358
67
|
componentWillUnmount?(): void;
|
359
68
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
360
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
361
|
-
|
362
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
363
|
-
}>, prevState: Readonly<{}>): any;
|
364
|
-
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
365
|
-
locale?: string | undefined;
|
366
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
367
|
-
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
69
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
70
|
+
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
368
71
|
componentWillMount?(): void;
|
369
72
|
UNSAFE_componentWillMount?(): void;
|
370
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof
|
371
|
-
|
372
|
-
|
373
|
-
}>, nextContext: any): void;
|
374
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
375
|
-
locale?: string | undefined;
|
376
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
377
|
-
}>, nextContext: any): void;
|
378
|
-
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
379
|
-
locale?: string | undefined;
|
380
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
381
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
382
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
383
|
-
locale?: string | undefined;
|
384
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
385
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
73
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
74
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
75
|
+
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
76
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
386
77
|
};
|
387
78
|
displayName: string;
|
388
79
|
contextType: React.Context<string>;
|
389
80
|
ComposedComponent: React.ComponentType<React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>>;
|
390
81
|
} & import("hoist-non-react-statics").NonReactStatics<React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>, {}> & {
|
391
82
|
ComposedComponent: React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>;
|
392
|
-
}, {}> & {
|
393
|
-
ComposedComponent: {
|
394
|
-
new (props: (Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
395
|
-
locale?: string | undefined;
|
396
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
397
|
-
}) | Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
398
|
-
locale?: string | undefined;
|
399
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
400
|
-
}>): {
|
401
|
-
render(): JSX.Element;
|
402
|
-
context: any;
|
403
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
404
|
-
locale?: string | undefined;
|
405
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
406
|
-
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
407
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
408
|
-
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
409
|
-
locale?: string | undefined;
|
410
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
411
|
-
}> & Readonly<{
|
412
|
-
children?: React.ReactNode;
|
413
|
-
}>;
|
414
|
-
state: Readonly<{}>;
|
415
|
-
refs: {
|
416
|
-
[key: string]: React.ReactInstance;
|
417
|
-
};
|
418
|
-
componentDidMount?(): void;
|
419
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
420
|
-
locale?: string | undefined;
|
421
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
422
|
-
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
423
|
-
componentWillUnmount?(): void;
|
424
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
425
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
426
|
-
locale?: string | undefined;
|
427
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
428
|
-
}>, prevState: Readonly<{}>): any;
|
429
|
-
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
430
|
-
locale?: string | undefined;
|
431
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
432
|
-
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
433
|
-
componentWillMount?(): void;
|
434
|
-
UNSAFE_componentWillMount?(): void;
|
435
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
436
|
-
locale?: string | undefined;
|
437
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
438
|
-
}>, nextContext: any): void;
|
439
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
440
|
-
locale?: string | undefined;
|
441
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
442
|
-
}>, nextContext: any): void;
|
443
|
-
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
444
|
-
locale?: string | undefined;
|
445
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
446
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
447
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
448
|
-
locale?: string | undefined;
|
449
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
450
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
451
|
-
};
|
452
|
-
new (props: Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
453
|
-
locale?: string | undefined;
|
454
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
455
|
-
}, context: any): {
|
456
|
-
render(): JSX.Element;
|
457
|
-
context: any;
|
458
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
459
|
-
locale?: string | undefined;
|
460
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
461
|
-
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
462
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
463
|
-
readonly props: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
464
|
-
locale?: string | undefined;
|
465
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
466
|
-
}> & Readonly<{
|
467
|
-
children?: React.ReactNode;
|
468
|
-
}>;
|
469
|
-
state: Readonly<{}>;
|
470
|
-
refs: {
|
471
|
-
[key: string]: React.ReactInstance;
|
472
|
-
};
|
473
|
-
componentDidMount?(): void;
|
474
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
475
|
-
locale?: string | undefined;
|
476
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
477
|
-
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
478
|
-
componentWillUnmount?(): void;
|
479
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
480
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
481
|
-
locale?: string | undefined;
|
482
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
483
|
-
}>, prevState: Readonly<{}>): any;
|
484
|
-
componentDidUpdate?(prevProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
485
|
-
locale?: string | undefined;
|
486
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
487
|
-
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
488
|
-
componentWillMount?(): void;
|
489
|
-
UNSAFE_componentWillMount?(): void;
|
490
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
491
|
-
locale?: string | undefined;
|
492
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
493
|
-
}>, nextContext: any): void;
|
494
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
495
|
-
locale?: string | undefined;
|
496
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
497
|
-
}>, nextContext: any): void;
|
498
|
-
componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
499
|
-
locale?: string | undefined;
|
500
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
501
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
502
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PickerColumnProps & React.RefAttributes<{}>, keyof LocaleProps> & {
|
503
|
-
locale?: string | undefined;
|
504
|
-
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
505
|
-
}>, nextState: Readonly<{}>, nextContext: any): void;
|
506
|
-
};
|
507
|
-
displayName: string;
|
508
|
-
contextType: React.Context<string>;
|
509
|
-
ComposedComponent: React.ComponentType<React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>>;
|
510
|
-
} & import("hoist-non-react-statics").NonReactStatics<React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>, {}> & {
|
511
|
-
ComposedComponent: React.ForwardRefExoticComponent<PickerColumnProps & React.RefAttributes<{}>>;
|
512
|
-
};
|
513
83
|
};
|
514
84
|
export default _default;
|