@salutejs/sdds-finportal 0.219.0-canary.1706.12871124885.0 → 0.219.0-canary.1706.12871746061.0
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.
@@ -50,7 +50,6 @@ import { CellTextbox } from '@salutejs/plasma-new-hope/styled-components';
|
|
50
50
|
import { CellTextboxLabel } from '@salutejs/plasma-new-hope/styled-components';
|
51
51
|
import { CellTextboxSubtitle } from '@salutejs/plasma-new-hope/styled-components';
|
52
52
|
import { CellTextboxTitle } from '@salutejs/plasma-new-hope/styled-components';
|
53
|
-
import { ChangeEvent } from 'react';
|
54
53
|
import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
|
55
54
|
import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
|
56
55
|
import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
|
@@ -112,6 +111,7 @@ import { FC } from 'react';
|
|
112
111
|
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
113
112
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
114
113
|
import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
|
114
|
+
import { FocusEvent as FocusEvent_2 } from 'react';
|
115
115
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
116
116
|
import { FormTypeString } from '@salutejs/plasma-new-hope/types/types/FormType';
|
117
117
|
import { ForwardRefExoticComponent } from 'react';
|
@@ -1526,10 +1526,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
|
|
1526
1526
|
secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1527
1527
|
firstTextfieldTextAfter?: string | undefined;
|
1528
1528
|
secondTextfieldTextAfter?: string | undefined;
|
1529
|
-
onFocusFirstTextfield?: ((event:
|
1530
|
-
onFocusSecondTextfield?: ((event:
|
1531
|
-
onBlurFirstTextfield?: ((event:
|
1532
|
-
onBlurSecondTextfield?: ((event:
|
1529
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1530
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1531
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1532
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1533
1533
|
firstTextfieldTextBefore?: string | undefined;
|
1534
1534
|
secondTextfieldTextBefore?: string | undefined;
|
1535
1535
|
dividerVariant?: "none" | "dash" | "icon" | undefined;
|
@@ -1537,6 +1537,7 @@ dividerIcon?: ReactNode;
|
|
1537
1537
|
} & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
|
1538
1538
|
placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
|
1539
1539
|
isDoubleCalendar?: boolean | undefined;
|
1540
|
+
closeAfterDateSelect?: boolean | undefined;
|
1540
1541
|
} & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
|
1541
1542
|
|
1542
1543
|
export { DatePickerRangePlacement }
|
@@ -2947,10 +2948,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
2947
2948
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
2948
2949
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
2949
2950
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
2950
|
-
onFocusFirstTextfield?: ((event:
|
2951
|
-
onFocusSecondTextfield?: ((event:
|
2952
|
-
onBlurFirstTextfield?: ((event:
|
2953
|
-
onBlurSecondTextfield?: ((event:
|
2951
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2952
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2953
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2954
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2954
2955
|
} & {
|
2955
2956
|
firstTextfieldTextBefore: string;
|
2956
2957
|
secondTextfieldTextBefore: string;
|
@@ -2986,10 +2987,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
2986
2987
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
2987
2988
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
2988
2989
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
2989
|
-
onFocusFirstTextfield?: ((event:
|
2990
|
-
onFocusSecondTextfield?: ((event:
|
2991
|
-
onBlurFirstTextfield?: ((event:
|
2992
|
-
onBlurSecondTextfield?: ((event:
|
2990
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2991
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2992
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2993
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2993
2994
|
} & {
|
2994
2995
|
dividerVariant?: "dash" | undefined;
|
2995
2996
|
dividerIcon?: undefined;
|
@@ -3025,10 +3026,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3025
3026
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3026
3027
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3027
3028
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3028
|
-
onFocusFirstTextfield?: ((event:
|
3029
|
-
onFocusSecondTextfield?: ((event:
|
3030
|
-
onBlurFirstTextfield?: ((event:
|
3031
|
-
onBlurSecondTextfield?: ((event:
|
3029
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3030
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3031
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3032
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3032
3033
|
} & {
|
3033
3034
|
dividerIcon?: ReactNode;
|
3034
3035
|
dividerVariant?: "icon" | undefined;
|
@@ -93,10 +93,10 @@ export declare const DatePickerRange: import("react").FunctionComponent<import("
|
|
93
93
|
secondTextfieldContentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
94
94
|
firstTextfieldTextAfter?: string | undefined;
|
95
95
|
secondTextfieldTextAfter?: string | undefined;
|
96
|
-
onFocusFirstTextfield?: ((event: import("react").
|
97
|
-
onFocusSecondTextfield?: ((event: import("react").
|
98
|
-
onBlurFirstTextfield?: ((event: import("react").
|
99
|
-
onBlurSecondTextfield?: ((event: import("react").
|
96
|
+
onFocusFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
97
|
+
onFocusSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
98
|
+
onBlurFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
99
|
+
onBlurSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
100
100
|
firstTextfieldTextBefore?: string | undefined;
|
101
101
|
secondTextfieldTextBefore?: string | undefined;
|
102
102
|
dividerVariant?: "none" | "dash" | "icon" | undefined;
|
@@ -104,4 +104,5 @@ export declare const DatePickerRange: import("react").FunctionComponent<import("
|
|
104
104
|
} & import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerCalendarProps & Omit<import("@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types").DatePickerPopoverProps, "placement"> & {
|
105
105
|
placement?: import("@salutejs/plasma-new-hope/styled-components").DatePickerRangePlacement | import("@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types").DatePickerRangePlacementBasic[] | undefined;
|
106
106
|
isDoubleCalendar?: boolean | undefined;
|
107
|
+
closeAfterDateSelect?: boolean | undefined;
|
107
108
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<import("@salutejs/plasma-new-hope/styled-components").RangeInputRefs>>;
|
@@ -48,10 +48,10 @@ export declare const Range: import("react").FunctionComponent<import("@salutejs/
|
|
48
48
|
onChangeSecondValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackChangeInstance | undefined;
|
49
49
|
onSearchFirstValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackKeyboardInstance | undefined;
|
50
50
|
onSearchSecondValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackKeyboardInstance | undefined;
|
51
|
-
onFocusFirstTextfield?: ((event: import("react").
|
52
|
-
onFocusSecondTextfield?: ((event: import("react").
|
53
|
-
onBlurFirstTextfield?: ((event: import("react").
|
54
|
-
onBlurSecondTextfield?: ((event: import("react").
|
51
|
+
onFocusFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
52
|
+
onFocusSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
53
|
+
onBlurFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
54
|
+
onBlurSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
55
55
|
} & {
|
56
56
|
firstTextfieldTextBefore: string;
|
57
57
|
secondTextfieldTextBefore: string;
|
@@ -87,10 +87,10 @@ export declare const Range: import("react").FunctionComponent<import("@salutejs/
|
|
87
87
|
onChangeSecondValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackChangeInstance | undefined;
|
88
88
|
onSearchFirstValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackKeyboardInstance | undefined;
|
89
89
|
onSearchSecondValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackKeyboardInstance | undefined;
|
90
|
-
onFocusFirstTextfield?: ((event: import("react").
|
91
|
-
onFocusSecondTextfield?: ((event: import("react").
|
92
|
-
onBlurFirstTextfield?: ((event: import("react").
|
93
|
-
onBlurSecondTextfield?: ((event: import("react").
|
90
|
+
onFocusFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
91
|
+
onFocusSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
92
|
+
onBlurFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
93
|
+
onBlurSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
94
94
|
} & {
|
95
95
|
dividerVariant?: "dash" | undefined;
|
96
96
|
dividerIcon?: undefined;
|
@@ -126,10 +126,10 @@ export declare const Range: import("react").FunctionComponent<import("@salutejs/
|
|
126
126
|
onChangeSecondValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackChangeInstance | undefined;
|
127
127
|
onSearchFirstValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackKeyboardInstance | undefined;
|
128
128
|
onSearchSecondValue?: import("@salutejs/plasma-new-hope/types/components/Range/Range.types").BaseCallbackKeyboardInstance | undefined;
|
129
|
-
onFocusFirstTextfield?: ((event: import("react").
|
130
|
-
onFocusSecondTextfield?: ((event: import("react").
|
131
|
-
onBlurFirstTextfield?: ((event: import("react").
|
132
|
-
onBlurSecondTextfield?: ((event: import("react").
|
129
|
+
onFocusFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
130
|
+
onFocusSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
131
|
+
onBlurFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
132
|
+
onBlurSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement, Element>) => void) | undefined;
|
133
133
|
} & {
|
134
134
|
dividerIcon?: import("react").ReactNode;
|
135
135
|
dividerVariant?: "icon" | undefined;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-finportal",
|
3
|
-
"version": "0.219.0-canary.1706.
|
3
|
+
"version": "0.219.0-canary.1706.12871746061.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"directory": "packages/sdds-finportal"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@salutejs/plasma-new-hope": "0.242.0-canary.1706.
|
22
|
+
"@salutejs/plasma-new-hope": "0.242.0-canary.1706.12871746061.0",
|
23
23
|
"@salutejs/sdds-themes": "0.31.0"
|
24
24
|
},
|
25
25
|
"peerDependencies": {
|
@@ -95,5 +95,5 @@
|
|
95
95
|
"Vasiliy Loginevskiy"
|
96
96
|
],
|
97
97
|
"sideEffects": false,
|
98
|
-
"gitHead": "
|
98
|
+
"gitHead": "530f421d25e29df4dd11a8589f4db0fb8860073e"
|
99
99
|
}
|
@@ -50,7 +50,6 @@ import { CellTextbox } from '@salutejs/plasma-new-hope/styled-components';
|
|
50
50
|
import { CellTextboxLabel } from '@salutejs/plasma-new-hope/styled-components';
|
51
51
|
import { CellTextboxSubtitle } from '@salutejs/plasma-new-hope/styled-components';
|
52
52
|
import { CellTextboxTitle } from '@salutejs/plasma-new-hope/styled-components';
|
53
|
-
import { ChangeEvent } from 'react';
|
54
53
|
import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
|
55
54
|
import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
|
56
55
|
import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
|
@@ -112,6 +111,7 @@ import { FC } from 'react';
|
|
112
111
|
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
113
112
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
114
113
|
import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
|
114
|
+
import { FocusEvent as FocusEvent_2 } from 'react';
|
115
115
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
116
116
|
import { FormTypeString } from '@salutejs/plasma-new-hope/types/types/FormType';
|
117
117
|
import { ForwardRefExoticComponent } from 'react';
|
@@ -1526,10 +1526,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
|
|
1526
1526
|
secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1527
1527
|
firstTextfieldTextAfter?: string | undefined;
|
1528
1528
|
secondTextfieldTextAfter?: string | undefined;
|
1529
|
-
onFocusFirstTextfield?: ((event:
|
1530
|
-
onFocusSecondTextfield?: ((event:
|
1531
|
-
onBlurFirstTextfield?: ((event:
|
1532
|
-
onBlurSecondTextfield?: ((event:
|
1529
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1530
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1531
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1532
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1533
1533
|
firstTextfieldTextBefore?: string | undefined;
|
1534
1534
|
secondTextfieldTextBefore?: string | undefined;
|
1535
1535
|
dividerVariant?: "none" | "dash" | "icon" | undefined;
|
@@ -1537,6 +1537,7 @@ dividerIcon?: ReactNode;
|
|
1537
1537
|
} & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
|
1538
1538
|
placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
|
1539
1539
|
isDoubleCalendar?: boolean | undefined;
|
1540
|
+
closeAfterDateSelect?: boolean | undefined;
|
1540
1541
|
} & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
|
1541
1542
|
|
1542
1543
|
export { DatePickerRangePlacement }
|
@@ -2947,10 +2948,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
2947
2948
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
2948
2949
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
2949
2950
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
2950
|
-
onFocusFirstTextfield?: ((event:
|
2951
|
-
onFocusSecondTextfield?: ((event:
|
2952
|
-
onBlurFirstTextfield?: ((event:
|
2953
|
-
onBlurSecondTextfield?: ((event:
|
2951
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2952
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2953
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2954
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2954
2955
|
} & {
|
2955
2956
|
firstTextfieldTextBefore: string;
|
2956
2957
|
secondTextfieldTextBefore: string;
|
@@ -2986,10 +2987,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
2986
2987
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
2987
2988
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
2988
2989
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
2989
|
-
onFocusFirstTextfield?: ((event:
|
2990
|
-
onFocusSecondTextfield?: ((event:
|
2991
|
-
onBlurFirstTextfield?: ((event:
|
2992
|
-
onBlurSecondTextfield?: ((event:
|
2990
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2991
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2992
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2993
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
2993
2994
|
} & {
|
2994
2995
|
dividerVariant?: "dash" | undefined;
|
2995
2996
|
dividerIcon?: undefined;
|
@@ -3025,10 +3026,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3025
3026
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3026
3027
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3027
3028
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3028
|
-
onFocusFirstTextfield?: ((event:
|
3029
|
-
onFocusSecondTextfield?: ((event:
|
3030
|
-
onBlurFirstTextfield?: ((event:
|
3031
|
-
onBlurSecondTextfield?: ((event:
|
3029
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3030
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3031
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3032
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3032
3033
|
} & {
|
3033
3034
|
dividerIcon?: ReactNode;
|
3034
3035
|
dividerVariant?: "icon" | undefined;
|