@noah-libjs/components 0.0.7 → 0.0.9
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/dist/ArrayInput/components.d.ts +165 -5
- package/dist/ArrayInput/types.d.ts +2 -1
- package/dist/ArraySingle/DispalyInner.d.ts +4 -0
- package/dist/ArraySingle/Inner.d.ts +4 -0
- package/dist/ArraySingle/index.d.ts +4 -0
- package/dist/ArraySingle/types.d.ts +16 -0
- package/dist/LazyAntd/ColorPicker/index.d.ts +1 -1
- package/dist/LazyAntd/DatePicker/Base/DatePicker.d.ts +3 -1
- package/dist/LazyAntd/DatePicker/Base/index.d.ts +6 -2
- package/dist/LazyAntd/DatePicker/RangePicker.d.ts +3 -1
- package/dist/LazyAntd/Tree/Inner.d.ts +2 -1
- package/dist/LazyAntd/Tree/index.d.ts +3 -2
- package/dist/MyAutoComplete/types.d.ts +4 -1
- package/dist/MyButton/index.d.ts +10 -0
- package/dist/MyCheckbox/components.d.ts +184 -24
- package/dist/MyCheckbox/types.d.ts +6 -3
- package/dist/MyDatePicker/Display.d.ts +1 -1
- package/dist/MyIconSelect/MyIcon.d.ts +2 -0
- package/dist/MyIconSelect/MyIconSelect.d.ts +5 -0
- package/dist/MyIconSelect/index.d.ts +6 -0
- package/dist/MyIconSelect/types.d.ts +16 -0
- package/dist/MyIconSelect/utils.d.ts +7 -0
- package/dist/MyInput/index.d.ts +3 -3
- package/dist/MyRangeDate/Inner.d.ts +4 -5
- package/dist/MyRangeDate/index.d.ts +6 -7
- package/dist/MyRangeDate/utils.d.ts +18 -381
- package/dist/MySelect/components.d.ts +165 -5
- package/dist/MySelect/types.d.ts +3 -1
- package/dist/MySwitch/types.d.ts +5 -2
- package/dist/a_chunks/index.js +509 -116
- package/dist/a_chunks/index.module.js +1 -24
- package/dist/a_chunks/root.17.js +12 -6
- package/dist/a_chunks/root.18.js +5 -6
- package/dist/a_chunks/root.19.js +2 -2
- package/dist/a_chunks/root.20.js +2 -2
- package/dist/a_chunks/root.21.js +2 -2
- package/dist/a_chunks/root.22.js +141 -183
- package/dist/a_chunks/root.23.js +15 -109
- package/dist/a_chunks/root.24.js +66 -5
- package/dist/a_chunks/root.25.js +8 -4
- package/dist/a_chunks/root.26.js +68 -0
- package/dist/a_chunks/root.27.js +212 -0
- package/dist/a_chunks/root.28.js +117 -0
- package/dist/a_chunks/root.29.js +5 -0
- package/dist/a_chunks/root.30.js +4 -0
- package/dist/a_chunks/root.8.js +7 -5
- package/dist/a_chunks/utils.js +59 -0
- package/dist/index.js +2 -2
- package/dist/packs.d.ts +168 -1
- package/dist/util-types/fd/InputType.d.ts +1 -1
- package/dist/util-types/fd/index.d.ts +41 -11
- package/dist/utils/getInputStyle.d.ts +3 -2
- package/dist/utils/msmc.d.ts +13 -4
- package/dist/utils/new.d.ts +12 -0
- package/dist/utils/use_array_marshal.d.ts +5 -0
- package/package.json +4 -4
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export declare const componentMap: {
|
|
2
|
+
Divider: import("react").FC<import("antd").DividerProps>;
|
|
3
|
+
MyIconSelect: import("..").TCommonComponent<import("src/packs").IMyIconSelectProps, string>;
|
|
2
4
|
MI: import("..").TCommonComponent<import("src/packs").IMyInputProps, string>;
|
|
3
5
|
input: import("..").TCommonComponent<import("src/packs").IMyInputProps, string>;
|
|
4
6
|
Input: import("..").TCommonComponent<import("src/packs").IMyInputProps, string>;
|
|
@@ -12,12 +14,169 @@ export declare const componentMap: {
|
|
|
12
14
|
single_date_picker: import("src/packs").TMyDatePicker;
|
|
13
15
|
CusDatePicker: import("src/packs").TMyDatePicker;
|
|
14
16
|
date: import("src/packs").TMyDatePicker;
|
|
17
|
+
MyRangePicker: import("react").FunctionComponent<{
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
20
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
21
|
+
isDisplay?: boolean;
|
|
22
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
23
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
26
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
27
|
+
isDisplay?: boolean;
|
|
28
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
29
|
+
};
|
|
30
|
+
RangePicker: import("react").FunctionComponent<{
|
|
31
|
+
disabled?: boolean;
|
|
32
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
33
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
34
|
+
isDisplay?: boolean;
|
|
35
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
36
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
39
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
40
|
+
isDisplay?: boolean;
|
|
41
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
42
|
+
};
|
|
43
|
+
rangePicker: import("react").FunctionComponent<{
|
|
44
|
+
disabled?: boolean;
|
|
45
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
46
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
47
|
+
isDisplay?: boolean;
|
|
48
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
49
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
50
|
+
disabled?: boolean;
|
|
51
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
52
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
53
|
+
isDisplay?: boolean;
|
|
54
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
55
|
+
};
|
|
56
|
+
range_picker: import("react").FunctionComponent<{
|
|
57
|
+
disabled?: boolean;
|
|
58
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
59
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
60
|
+
isDisplay?: boolean;
|
|
61
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
62
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
63
|
+
disabled?: boolean;
|
|
64
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
65
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
66
|
+
isDisplay?: boolean;
|
|
67
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
68
|
+
};
|
|
69
|
+
MyRangeDate: import("react").FunctionComponent<{
|
|
70
|
+
disabled?: boolean;
|
|
71
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
72
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
73
|
+
isDisplay?: boolean;
|
|
74
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
75
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
76
|
+
disabled?: boolean;
|
|
77
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
78
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
79
|
+
isDisplay?: boolean;
|
|
80
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
81
|
+
};
|
|
82
|
+
RangeDate: import("react").FunctionComponent<{
|
|
83
|
+
disabled?: boolean;
|
|
84
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
85
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
86
|
+
isDisplay?: boolean;
|
|
87
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
88
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
89
|
+
disabled?: boolean;
|
|
90
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
91
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
92
|
+
isDisplay?: boolean;
|
|
93
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
94
|
+
};
|
|
95
|
+
rangeDate: import("react").FunctionComponent<{
|
|
96
|
+
disabled?: boolean;
|
|
97
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
98
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
99
|
+
isDisplay?: boolean;
|
|
100
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
101
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
102
|
+
disabled?: boolean;
|
|
103
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
104
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
105
|
+
isDisplay?: boolean;
|
|
106
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
107
|
+
};
|
|
108
|
+
range_date: import("react").FunctionComponent<{
|
|
109
|
+
disabled?: boolean;
|
|
110
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
111
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
112
|
+
isDisplay?: boolean;
|
|
113
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
114
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
115
|
+
disabled?: boolean;
|
|
116
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
117
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
118
|
+
isDisplay?: boolean;
|
|
119
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
120
|
+
};
|
|
121
|
+
MyRangeDateTime: import("react").FunctionComponent<{
|
|
122
|
+
disabled?: boolean;
|
|
123
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
124
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
125
|
+
isDisplay?: boolean;
|
|
126
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
127
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
128
|
+
disabled?: boolean;
|
|
129
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
130
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
131
|
+
isDisplay?: boolean;
|
|
132
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
133
|
+
};
|
|
134
|
+
RangeDateTime: import("react").FunctionComponent<{
|
|
135
|
+
disabled?: boolean;
|
|
136
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
137
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
138
|
+
isDisplay?: boolean;
|
|
139
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
140
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
141
|
+
disabled?: boolean;
|
|
142
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
143
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
144
|
+
isDisplay?: boolean;
|
|
145
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
146
|
+
};
|
|
147
|
+
rangeDateTime: import("react").FunctionComponent<{
|
|
148
|
+
disabled?: boolean;
|
|
149
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
150
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
151
|
+
isDisplay?: boolean;
|
|
152
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
153
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
154
|
+
disabled?: boolean;
|
|
155
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
156
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
157
|
+
isDisplay?: boolean;
|
|
158
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
159
|
+
};
|
|
160
|
+
range_date_time: import("react").FunctionComponent<{
|
|
161
|
+
disabled?: boolean;
|
|
162
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
163
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
164
|
+
isDisplay?: boolean;
|
|
165
|
+
} & import("src/packs").IMyRangePickerProps> & {
|
|
166
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
167
|
+
disabled?: boolean;
|
|
168
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
169
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
170
|
+
isDisplay?: boolean;
|
|
171
|
+
} & import("src/packs").IMyRangePickerProps> | undefined;
|
|
172
|
+
};
|
|
15
173
|
MyColor: import("..").TCommonComponent<import("../MyColor/types").IMyColorProps>;
|
|
16
174
|
MySwitch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
17
175
|
switch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
18
176
|
Switch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
177
|
+
MSW: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
19
178
|
ArrayInput: import("..").TCommonComponent<import("src/packs").IArrayInputProps, string>;
|
|
20
|
-
|
|
179
|
+
ArraySingle: import("..").TCommonComponent<import("src/packs").IArraySingleProps, string>;
|
|
21
180
|
MySelect: import("react").LazyExoticComponent<import("..").TCommonComponent<import("src/packs").IMySelectProps, string | number>> & {
|
|
22
181
|
DisplayFC: typeof import("../MySelect/Display").DisplayFC;
|
|
23
182
|
};
|
|
@@ -34,8 +193,9 @@ export declare const componentMap: {
|
|
|
34
193
|
Checkbox: import("..").TCommonComponent<import("src/packs").IMyCheckboxProps>;
|
|
35
194
|
MC: import("..").TCommonComponent<import("src/packs").IMyCheckboxProps>;
|
|
36
195
|
checkbox: import("..").TCommonComponent<import("src/packs").IMyCheckboxProps>;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
196
|
+
MyButton: typeof import("src/packs").MyButton;
|
|
197
|
+
MyAutoComplete: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
|
|
198
|
+
MA: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
|
|
199
|
+
AutoComplete: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
|
|
200
|
+
autocomplete: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
|
|
41
201
|
};
|
|
@@ -8,6 +8,7 @@ import { IMyInputProps } from 'src/MyInput';
|
|
|
8
8
|
import { IMySelectProps } from '../MySelect';
|
|
9
9
|
import { IMyCheckboxProps } from 'src/MyCheckbox';
|
|
10
10
|
import { SizeType } from 'antd/es/config-provider/SizeContext';
|
|
11
|
+
import { IMchc_FormDescriptions_InputProps } from 'src/util-types';
|
|
11
12
|
export type TOption = {
|
|
12
13
|
inputType: 'MyAutoComplete';
|
|
13
14
|
props?: MyAutoCompleteProps;
|
|
@@ -69,7 +70,7 @@ export interface IArrayInputProps {
|
|
|
69
70
|
optionKey?: string;
|
|
70
71
|
onChange?(v: string | any[]): void;
|
|
71
72
|
separator?: string;
|
|
72
|
-
marshal?:
|
|
73
|
+
marshal?: IMchc_FormDescriptions_InputProps['marshal'];
|
|
73
74
|
onBlur?: FocusEventHandler<any>;
|
|
74
75
|
options?: (TOption & ICommonOption)[];
|
|
75
76
|
sp?: (TOption & ICommonOption)[];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ButtonProps, FormInstance } from "antd";
|
|
2
|
+
import { IMchc_FormDescriptions_InputType } from "../util-types/fd/InputType";
|
|
3
|
+
import { IMchc_FormDescriptions_InputProps } from "src/util-types";
|
|
4
|
+
export interface IArraySingleProps {
|
|
5
|
+
linker?: string;
|
|
6
|
+
value?: string;
|
|
7
|
+
onChange?(v: string | any[]): void;
|
|
8
|
+
marshal?: IMchc_FormDescriptions_InputProps['marshal'];
|
|
9
|
+
form?: FormInstance;
|
|
10
|
+
tip?: string;
|
|
11
|
+
addBtnStyle?: ButtonProps;
|
|
12
|
+
inputType?: IMchc_FormDescriptions_InputType;
|
|
13
|
+
component_map?: IMchc_FormDescriptions_InputProps['component_map'];
|
|
14
|
+
genRowData?: (list: any[]) => any;
|
|
15
|
+
on_row_value_change(data: any[], index: number, changed?: any, form?: FormInstance): void;
|
|
16
|
+
}
|
|
@@ -38,5 +38,5 @@ declare const ColorPicker_L: React.ForwardRefExoticComponent<Omit<import("@rc-co
|
|
|
38
38
|
onClear?: () => void;
|
|
39
39
|
onChangeComplete?: (value: import("antd/es/color-picker").Color) => void;
|
|
40
40
|
disabledFormat?: boolean;
|
|
41
|
-
} & Pick<import("antd").PopoverProps, "getPopupContainer" | "autoAdjustOverflow" | "destroyTooltipOnHide"> & React.RefAttributes<any>>;
|
|
41
|
+
} & Pick<import("antd").PopoverProps, "getPopupContainer" | "autoAdjustOverflow" | "destroyTooltipOnHide" | "destroyOnHidden"> & React.RefAttributes<any>>;
|
|
42
42
|
export { ColorPicker_L, ColorPickerProps };
|
|
@@ -13,7 +13,7 @@ declare const DatePicker: (<ValueType = Dayjs>(props: import("antd/es/date-picke
|
|
|
13
13
|
YearPicker: (<ValueType = Dayjs>(props: import("antd/es/date-picker/generatePicker/interface").PickerPropsWithMultiple<Dayjs, Omit<import("antd/es/date-picker/generatePicker").PickerProps<Dayjs>, "picker">, ValueType>) => React.ReactElement) & {
|
|
14
14
|
displayName?: string;
|
|
15
15
|
};
|
|
16
|
-
RangePicker: import("react").ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<Dayjs>, "locale" | "generateConfig" | "hideHeader"> & {
|
|
16
|
+
RangePicker: import("react").ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
|
|
17
17
|
locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
|
|
18
18
|
size?: import("antd/es/button").ButtonSize;
|
|
19
19
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
|
@@ -24,6 +24,8 @@ declare const DatePicker: (<ValueType = Dayjs>(props: import("antd/es/date-picke
|
|
|
24
24
|
popupClassName?: string;
|
|
25
25
|
rootClassName?: string;
|
|
26
26
|
popupStyle?: React.CSSProperties;
|
|
27
|
+
styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
|
|
28
|
+
classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
|
|
27
29
|
} & import("react").RefAttributes<import("rc-picker").PickerRef>>;
|
|
28
30
|
TimePicker: (<ValueType = Dayjs>(props: import("antd/es/date-picker/generatePicker/interface").PickerPropsWithMultiple<Dayjs, Omit<import("antd/es/date-picker/generatePicker/interface").GenericTimePickerProps<Dayjs>, "picker">, ValueType>) => React.ReactElement) & {
|
|
29
31
|
displayName?: string;
|
|
@@ -13,7 +13,7 @@ export declare const DatePickerInner: import("react").LazyExoticComponent<(<Valu
|
|
|
13
13
|
YearPicker: (<ValueType = import("dayjs").Dayjs>(props: import("antd/es/date-picker/generatePicker/interface").PickerPropsWithMultiple<import("dayjs").Dayjs, Omit<import("antd/es/date-picker/generatePicker").PickerProps<import("dayjs").Dayjs>, "picker">, ValueType>) => React.ReactElement) & {
|
|
14
14
|
displayName?: string;
|
|
15
15
|
};
|
|
16
|
-
RangePicker: import("react").ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "locale" | "generateConfig" | "hideHeader"> & {
|
|
16
|
+
RangePicker: import("react").ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
|
|
17
17
|
locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
|
|
18
18
|
size?: import("antd/es/button").ButtonSize;
|
|
19
19
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
|
@@ -24,6 +24,8 @@ export declare const DatePickerInner: import("react").LazyExoticComponent<(<Valu
|
|
|
24
24
|
popupClassName?: string;
|
|
25
25
|
rootClassName?: string;
|
|
26
26
|
popupStyle?: React.CSSProperties;
|
|
27
|
+
styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
|
|
28
|
+
classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
|
|
27
29
|
} & import("react").RefAttributes<import("rc-picker").PickerRef>>;
|
|
28
30
|
TimePicker: (<ValueType = import("dayjs").Dayjs>(props: import("antd/es/date-picker/generatePicker/interface").PickerPropsWithMultiple<import("dayjs").Dayjs, Omit<import("antd/es/date-picker/generatePicker/interface").GenericTimePickerProps<import("dayjs").Dayjs>, "picker">, ValueType>) => React.ReactElement) & {
|
|
29
31
|
displayName?: string;
|
|
@@ -33,7 +35,7 @@ export declare const DatePickerInner: import("react").LazyExoticComponent<(<Valu
|
|
|
33
35
|
};
|
|
34
36
|
}>;
|
|
35
37
|
export type DatePickerProps = GetProps<typeof DatePickerInner>;
|
|
36
|
-
export declare const RangePickerInner: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "locale" | "generateConfig" | "hideHeader"> & {
|
|
38
|
+
export declare const RangePickerInner: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
|
|
37
39
|
locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
|
|
38
40
|
size?: import("antd/es/button").ButtonSize;
|
|
39
41
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
|
@@ -44,6 +46,8 @@ export declare const RangePickerInner: import("react").LazyExoticComponent<impor
|
|
|
44
46
|
popupClassName?: string;
|
|
45
47
|
rootClassName?: string;
|
|
46
48
|
popupStyle?: React.CSSProperties;
|
|
49
|
+
styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
|
|
50
|
+
classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
|
|
47
51
|
} & import("react").RefAttributes<import("rc-picker").PickerRef>>>;
|
|
48
52
|
export type RangePickerProps = GetProps<typeof RangePickerInner>;
|
|
49
53
|
export declare const MonthPickerInner: import("react").LazyExoticComponent<(<ValueType = import("dayjs").Dayjs>(props: import("antd/es/date-picker/generatePicker/interface").PickerPropsWithMultiple<import("dayjs").Dayjs, Omit<import("antd/es/date-picker/generatePicker").PickerProps<import("dayjs").Dayjs>, "picker">, ValueType>) => React.ReactElement) & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { RangePickerProps } from './Base';
|
|
3
|
-
declare const RangePicker_L: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "locale" | "generateConfig" | "hideHeader"> & {
|
|
3
|
+
declare const RangePicker_L: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
|
|
4
4
|
locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
|
|
5
5
|
size?: import("antd/es/button").ButtonSize;
|
|
6
6
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
|
@@ -11,6 +11,8 @@ declare const RangePicker_L: React.ForwardRefExoticComponent<Omit<Omit<Omit<impo
|
|
|
11
11
|
popupClassName?: string;
|
|
12
12
|
rootClassName?: string;
|
|
13
13
|
popupStyle?: React.CSSProperties;
|
|
14
|
+
styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
|
|
15
|
+
classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
|
|
14
16
|
} & React.RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
|
|
15
17
|
ref?: ((instance: import("rc-picker").PickerRef | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<import("rc-picker").PickerRef> | null | undefined;
|
|
16
18
|
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { TreeProps } from 'antd';
|
|
2
2
|
import { DirectoryTreeProps } from 'antd/lib/tree';
|
|
3
|
+
import RCTree from 'rc-tree';
|
|
3
4
|
import React, { FC } from 'react';
|
|
4
5
|
import { TreeNodeProps, DataNode } from 'rc-tree/es/interface';
|
|
5
|
-
declare
|
|
6
|
+
declare const Tree_: React.ForwardRefExoticComponent<TreeProps<import("antd").TreeDataNode> & React.RefAttributes<RCTree<import("antd").TreeDataNode>>>;
|
|
6
7
|
declare function DirectoryTree(props: DirectoryTreeProps): React.JSX.Element;
|
|
7
8
|
type TreeType = typeof Tree_ & {
|
|
8
9
|
TreeNode: FC<TreeNodeProps<DataNode>>;
|
|
9
10
|
DirectoryTree: typeof DirectoryTree;
|
|
11
|
+
RCTree: RCTree;
|
|
10
12
|
};
|
|
11
13
|
declare const Tree_L: TreeType;
|
|
12
14
|
export { Tree_L, DirectoryTreeProps, TreeProps, TreeNodeProps, DataNode };
|
|
13
|
-
export declare function aa(): React.JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AutoCompleteProps } from 'antd';
|
|
1
|
+
import { AutoCompleteProps, FormInstance } from 'antd';
|
|
2
2
|
import { TOptions } from '../util-types';
|
|
3
|
+
import { T_FETCH_OPTIONS } from '@noah-libjs/request';
|
|
3
4
|
export interface IMemoriseItem {
|
|
4
5
|
"id": 6591;
|
|
5
6
|
"key": "vitaminSignature";
|
|
@@ -9,6 +10,8 @@ export interface IMemoriseItem {
|
|
|
9
10
|
}
|
|
10
11
|
export type IMyAutoCompleteProps = Omit<AutoCompleteProps, 'options' | 'onChange'> & {
|
|
11
12
|
onChange?(str?: string): void;
|
|
13
|
+
fetch_options?: T_FETCH_OPTIONS;
|
|
14
|
+
form?: FormInstance;
|
|
12
15
|
optionKey?: string;
|
|
13
16
|
uniqueKey?: string;
|
|
14
17
|
memorieskey?: string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ButtonProps, FormInstance } from 'antd';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export interface IMyButtonProps extends Omit<ButtonProps, 'form'> {
|
|
4
|
+
btn_text?: string;
|
|
5
|
+
form?: FormInstance;
|
|
6
|
+
on_btn_click?: (e: React.MouseEvent<HTMLElement, MouseEvent>, form?: FormInstance) => any;
|
|
7
|
+
defaultIcon?: React.ReactNode;
|
|
8
|
+
primary?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare function MyButton(props: IMyButtonProps): React.JSX.Element | null;
|
|
@@ -1,41 +1,201 @@
|
|
|
1
1
|
export declare const components: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
Divider: import("react").FC<import("antd").DividerProps>;
|
|
3
|
+
MyIconSelect: import("..").TCommonComponent<import("../packs").IMyIconSelectProps, string>;
|
|
4
|
+
MI: import("..").TCommonComponent<import("../packs").IMyInputProps, string>;
|
|
5
|
+
input: import("..").TCommonComponent<import("../packs").IMyInputProps, string>;
|
|
6
|
+
Input: import("..").TCommonComponent<import("../packs").IMyInputProps, string>;
|
|
7
|
+
MyInput: import("..").TCommonComponent<import("../packs").IMyInputProps, string>;
|
|
6
8
|
MyInputNumber: import("..").TCommonComponent<import("../MyInputNumber").IMyInputNumberProps>;
|
|
7
9
|
InputNumber: import("..").TCommonComponent<import("../MyInputNumber").IMyInputNumberProps>;
|
|
8
10
|
input_number: import("..").TCommonComponent<import("../MyInputNumber").IMyInputNumberProps>;
|
|
9
|
-
MyDatePicker: import("
|
|
10
|
-
DatePicker: import("
|
|
11
|
-
DP: import("
|
|
12
|
-
single_date_picker: import("
|
|
13
|
-
CusDatePicker: import("
|
|
14
|
-
date: import("
|
|
11
|
+
MyDatePicker: import("../MyDatePicker").TMyDatePicker;
|
|
12
|
+
DatePicker: import("../MyDatePicker").TMyDatePicker;
|
|
13
|
+
DP: import("../MyDatePicker").TMyDatePicker;
|
|
14
|
+
single_date_picker: import("../MyDatePicker").TMyDatePicker;
|
|
15
|
+
CusDatePicker: import("../MyDatePicker").TMyDatePicker;
|
|
16
|
+
date: import("../MyDatePicker").TMyDatePicker;
|
|
17
|
+
MyRangePicker: import("react").FunctionComponent<{
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
20
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
21
|
+
isDisplay?: boolean;
|
|
22
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
23
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
26
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
27
|
+
isDisplay?: boolean;
|
|
28
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
29
|
+
};
|
|
30
|
+
RangePicker: import("react").FunctionComponent<{
|
|
31
|
+
disabled?: boolean;
|
|
32
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
33
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
34
|
+
isDisplay?: boolean;
|
|
35
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
36
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
39
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
40
|
+
isDisplay?: boolean;
|
|
41
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
42
|
+
};
|
|
43
|
+
rangePicker: import("react").FunctionComponent<{
|
|
44
|
+
disabled?: boolean;
|
|
45
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
46
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
47
|
+
isDisplay?: boolean;
|
|
48
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
49
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
50
|
+
disabled?: boolean;
|
|
51
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
52
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
53
|
+
isDisplay?: boolean;
|
|
54
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
55
|
+
};
|
|
56
|
+
range_picker: import("react").FunctionComponent<{
|
|
57
|
+
disabled?: boolean;
|
|
58
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
59
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
60
|
+
isDisplay?: boolean;
|
|
61
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
62
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
63
|
+
disabled?: boolean;
|
|
64
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
65
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
66
|
+
isDisplay?: boolean;
|
|
67
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
68
|
+
};
|
|
69
|
+
MyRangeDate: import("react").FunctionComponent<{
|
|
70
|
+
disabled?: boolean;
|
|
71
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
72
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
73
|
+
isDisplay?: boolean;
|
|
74
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
75
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
76
|
+
disabled?: boolean;
|
|
77
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
78
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
79
|
+
isDisplay?: boolean;
|
|
80
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
81
|
+
};
|
|
82
|
+
RangeDate: import("react").FunctionComponent<{
|
|
83
|
+
disabled?: boolean;
|
|
84
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
85
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
86
|
+
isDisplay?: boolean;
|
|
87
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
88
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
89
|
+
disabled?: boolean;
|
|
90
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
91
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
92
|
+
isDisplay?: boolean;
|
|
93
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
94
|
+
};
|
|
95
|
+
rangeDate: import("react").FunctionComponent<{
|
|
96
|
+
disabled?: boolean;
|
|
97
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
98
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
99
|
+
isDisplay?: boolean;
|
|
100
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
101
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
102
|
+
disabled?: boolean;
|
|
103
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
104
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
105
|
+
isDisplay?: boolean;
|
|
106
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
107
|
+
};
|
|
108
|
+
range_date: import("react").FunctionComponent<{
|
|
109
|
+
disabled?: boolean;
|
|
110
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
111
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
112
|
+
isDisplay?: boolean;
|
|
113
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
114
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
115
|
+
disabled?: boolean;
|
|
116
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
117
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
118
|
+
isDisplay?: boolean;
|
|
119
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
120
|
+
};
|
|
121
|
+
MyRangeDateTime: import("react").FunctionComponent<{
|
|
122
|
+
disabled?: boolean;
|
|
123
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
124
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
125
|
+
isDisplay?: boolean;
|
|
126
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
127
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
128
|
+
disabled?: boolean;
|
|
129
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
130
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
131
|
+
isDisplay?: boolean;
|
|
132
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
133
|
+
};
|
|
134
|
+
RangeDateTime: import("react").FunctionComponent<{
|
|
135
|
+
disabled?: boolean;
|
|
136
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
137
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
138
|
+
isDisplay?: boolean;
|
|
139
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
140
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
141
|
+
disabled?: boolean;
|
|
142
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
143
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
144
|
+
isDisplay?: boolean;
|
|
145
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
146
|
+
};
|
|
147
|
+
rangeDateTime: import("react").FunctionComponent<{
|
|
148
|
+
disabled?: boolean;
|
|
149
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
150
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
151
|
+
isDisplay?: boolean;
|
|
152
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
153
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
154
|
+
disabled?: boolean;
|
|
155
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
156
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
157
|
+
isDisplay?: boolean;
|
|
158
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
159
|
+
};
|
|
160
|
+
range_date_time: import("react").FunctionComponent<{
|
|
161
|
+
disabled?: boolean;
|
|
162
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
163
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
164
|
+
isDisplay?: boolean;
|
|
165
|
+
} & import("../packs").IMyRangePickerProps> & {
|
|
166
|
+
DisplayFC?: import("react").FunctionComponent<{
|
|
167
|
+
disabled?: boolean;
|
|
168
|
+
value?: import("../MyRangeDate/utils").MyValue;
|
|
169
|
+
onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
|
|
170
|
+
isDisplay?: boolean;
|
|
171
|
+
} & import("../packs").IMyRangePickerProps> | undefined;
|
|
172
|
+
};
|
|
15
173
|
MyColor: import("..").TCommonComponent<import("../MyColor/types").IMyColorProps>;
|
|
16
174
|
MySwitch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
17
175
|
switch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
18
176
|
Switch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
177
|
+
MSW: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
|
|
178
|
+
ArrayInput: import("..").TCommonComponent<import("../packs").IArrayInputProps, string>;
|
|
179
|
+
ArraySingle: import("..").TCommonComponent<import("../packs").IArraySingleProps, string>;
|
|
180
|
+
MySelect: import("react").LazyExoticComponent<import("..").TCommonComponent<import("../packs").IMySelectProps, string | number>> & {
|
|
22
181
|
DisplayFC: typeof import("../MySelect/Display").DisplayFC;
|
|
23
182
|
};
|
|
24
|
-
MS: import("react").LazyExoticComponent<import("..").TCommonComponent<import("
|
|
183
|
+
MS: import("react").LazyExoticComponent<import("..").TCommonComponent<import("../packs").IMySelectProps, string | number>> & {
|
|
25
184
|
DisplayFC: typeof import("../MySelect/Display").DisplayFC;
|
|
26
185
|
};
|
|
27
|
-
Select: import("react").LazyExoticComponent<import("..").TCommonComponent<import("
|
|
186
|
+
Select: import("react").LazyExoticComponent<import("..").TCommonComponent<import("../packs").IMySelectProps, string | number>> & {
|
|
28
187
|
DisplayFC: typeof import("../MySelect/Display").DisplayFC;
|
|
29
188
|
};
|
|
30
|
-
select: import("react").LazyExoticComponent<import("..").TCommonComponent<import("
|
|
189
|
+
select: import("react").LazyExoticComponent<import("..").TCommonComponent<import("../packs").IMySelectProps, string | number>> & {
|
|
31
190
|
DisplayFC: typeof import("../MySelect/Display").DisplayFC;
|
|
32
191
|
};
|
|
33
|
-
MyCheckbox: import("..").TCommonComponent<import("
|
|
34
|
-
Checkbox: import("..").TCommonComponent<import("
|
|
35
|
-
MC: import("..").TCommonComponent<import("
|
|
36
|
-
checkbox: import("..").TCommonComponent<import("
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
192
|
+
MyCheckbox: import("..").TCommonComponent<import("./types").IMyCheckboxProps>;
|
|
193
|
+
Checkbox: import("..").TCommonComponent<import("./types").IMyCheckboxProps>;
|
|
194
|
+
MC: import("..").TCommonComponent<import("./types").IMyCheckboxProps>;
|
|
195
|
+
checkbox: import("..").TCommonComponent<import("./types").IMyCheckboxProps>;
|
|
196
|
+
MyButton: typeof import("../MyButton").MyButton;
|
|
197
|
+
MyAutoComplete: import("..").TCommonComponent<import("../packs").MyAutoCompleteProps>;
|
|
198
|
+
MA: import("..").TCommonComponent<import("../packs").MyAutoCompleteProps>;
|
|
199
|
+
AutoComplete: import("..").TCommonComponent<import("../packs").MyAutoCompleteProps>;
|
|
200
|
+
autocomplete: import("..").TCommonComponent<import("../packs").MyAutoCompleteProps>;
|
|
41
201
|
};
|