@salutejs/plasma-web 1.498.0-canary.1706.12871124885.0 → 1.498.0-canary.1706.12871746061.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/plasma-web.api.md +18 -17
- package/components/DatePicker/DatePicker.d.ts +5 -4
- package/components/Range/Range.d.ts +12 -12
- package/package.json +3 -3
- package/temp/plasma-web.api.md +18 -17
package/api/plasma-web.api.md
CHANGED
@@ -80,7 +80,6 @@ import { CellTextbox } from '@salutejs/plasma-new-hope/styled-components';
|
|
80
80
|
import { CellTextboxLabel } from '@salutejs/plasma-new-hope/styled-components';
|
81
81
|
import { CellTextboxSubtitle } from '@salutejs/plasma-new-hope/styled-components';
|
82
82
|
import { CellTextboxTitle } from '@salutejs/plasma-new-hope/styled-components';
|
83
|
-
import { ChangeEvent } from 'react';
|
84
83
|
import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
|
85
84
|
import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
|
86
85
|
import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
|
@@ -152,6 +151,7 @@ import { FC } from 'react';
|
|
152
151
|
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
153
152
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
154
153
|
import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
|
154
|
+
import { FocusEvent as FocusEvent_2 } from 'react';
|
155
155
|
import { FocusProps } from '@salutejs/plasma-core';
|
156
156
|
import { formatCurrency } from '@salutejs/plasma-core';
|
157
157
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
@@ -1814,10 +1814,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
|
|
1814
1814
|
secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1815
1815
|
firstTextfieldTextAfter?: string | undefined;
|
1816
1816
|
secondTextfieldTextAfter?: string | undefined;
|
1817
|
-
onFocusFirstTextfield?: ((event:
|
1818
|
-
onFocusSecondTextfield?: ((event:
|
1819
|
-
onBlurFirstTextfield?: ((event:
|
1820
|
-
onBlurSecondTextfield?: ((event:
|
1817
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1818
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1819
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1820
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1821
1821
|
firstTextfieldTextBefore?: string | undefined;
|
1822
1822
|
secondTextfieldTextBefore?: string | undefined;
|
1823
1823
|
dividerVariant?: "none" | "icon" | "dash" | undefined;
|
@@ -1825,6 +1825,7 @@ dividerIcon?: ReactNode;
|
|
1825
1825
|
} & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
|
1826
1826
|
placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
|
1827
1827
|
isDoubleCalendar?: boolean | undefined;
|
1828
|
+
closeAfterDateSelect?: boolean | undefined;
|
1828
1829
|
} & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
|
1829
1830
|
|
1830
1831
|
export { DatePickerRangePlacement }
|
@@ -3391,10 +3392,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3391
3392
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3392
3393
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3393
3394
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3394
|
-
onFocusFirstTextfield?: ((event:
|
3395
|
-
onFocusSecondTextfield?: ((event:
|
3396
|
-
onBlurFirstTextfield?: ((event:
|
3397
|
-
onBlurSecondTextfield?: ((event:
|
3395
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3396
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3397
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3398
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3398
3399
|
} & {
|
3399
3400
|
firstTextfieldTextBefore: string;
|
3400
3401
|
secondTextfieldTextBefore: string;
|
@@ -3430,10 +3431,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3430
3431
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3431
3432
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3432
3433
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3433
|
-
onFocusFirstTextfield?: ((event:
|
3434
|
-
onFocusSecondTextfield?: ((event:
|
3435
|
-
onBlurFirstTextfield?: ((event:
|
3436
|
-
onBlurSecondTextfield?: ((event:
|
3434
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3435
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3436
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3437
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3437
3438
|
} & {
|
3438
3439
|
dividerVariant?: "dash" | undefined;
|
3439
3440
|
dividerIcon?: undefined;
|
@@ -3469,10 +3470,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3469
3470
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3470
3471
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3471
3472
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3472
|
-
onFocusFirstTextfield?: ((event:
|
3473
|
-
onFocusSecondTextfield?: ((event:
|
3474
|
-
onBlurFirstTextfield?: ((event:
|
3475
|
-
onBlurSecondTextfield?: ((event:
|
3473
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3474
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3475
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3476
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3476
3477
|
} & {
|
3477
3478
|
dividerIcon?: ReactNode;
|
3478
3479
|
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" | "icon" | "dash" | 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/plasma-web",
|
3
|
-
"version": "1.498.0-canary.1706.
|
3
|
+
"version": "1.498.0-canary.1706.12871746061.0",
|
4
4
|
"description": "Salute Design System / React UI kit for web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -21,7 +21,7 @@
|
|
21
21
|
"dependencies": {
|
22
22
|
"@salutejs/plasma-core": "1.191.0-dev.0",
|
23
23
|
"@salutejs/plasma-hope": "1.328.1-dev.0",
|
24
|
-
"@salutejs/plasma-new-hope": "0.242.0-canary.1706.
|
24
|
+
"@salutejs/plasma-new-hope": "0.242.0-canary.1706.12871746061.0",
|
25
25
|
"@salutejs/plasma-themes": "0.28.0",
|
26
26
|
"@salutejs/plasma-tokens-b2b": "1.45.0-dev.0",
|
27
27
|
"@salutejs/plasma-tokens-b2c": "0.56.0-dev.0",
|
@@ -111,5 +111,5 @@
|
|
111
111
|
"Fanil Zubairov"
|
112
112
|
],
|
113
113
|
"sideEffects": false,
|
114
|
-
"gitHead": "
|
114
|
+
"gitHead": "530f421d25e29df4dd11a8589f4db0fb8860073e"
|
115
115
|
}
|
package/temp/plasma-web.api.md
CHANGED
@@ -80,7 +80,6 @@ import { CellTextbox } from '@salutejs/plasma-new-hope/styled-components';
|
|
80
80
|
import { CellTextboxLabel } from '@salutejs/plasma-new-hope/styled-components';
|
81
81
|
import { CellTextboxSubtitle } from '@salutejs/plasma-new-hope/styled-components';
|
82
82
|
import { CellTextboxTitle } from '@salutejs/plasma-new-hope/styled-components';
|
83
|
-
import { ChangeEvent } from 'react';
|
84
83
|
import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
|
85
84
|
import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
|
86
85
|
import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
|
@@ -152,6 +151,7 @@ import { FC } from 'react';
|
|
152
151
|
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
153
152
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
154
153
|
import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
|
154
|
+
import { FocusEvent as FocusEvent_2 } from 'react';
|
155
155
|
import { FocusProps } from '@salutejs/plasma-core';
|
156
156
|
import { formatCurrency } from '@salutejs/plasma-core';
|
157
157
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
@@ -1814,10 +1814,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
|
|
1814
1814
|
secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1815
1815
|
firstTextfieldTextAfter?: string | undefined;
|
1816
1816
|
secondTextfieldTextAfter?: string | undefined;
|
1817
|
-
onFocusFirstTextfield?: ((event:
|
1818
|
-
onFocusSecondTextfield?: ((event:
|
1819
|
-
onBlurFirstTextfield?: ((event:
|
1820
|
-
onBlurSecondTextfield?: ((event:
|
1817
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1818
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1819
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1820
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1821
1821
|
firstTextfieldTextBefore?: string | undefined;
|
1822
1822
|
secondTextfieldTextBefore?: string | undefined;
|
1823
1823
|
dividerVariant?: "none" | "icon" | "dash" | undefined;
|
@@ -1825,6 +1825,7 @@ dividerIcon?: ReactNode;
|
|
1825
1825
|
} & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
|
1826
1826
|
placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
|
1827
1827
|
isDoubleCalendar?: boolean | undefined;
|
1828
|
+
closeAfterDateSelect?: boolean | undefined;
|
1828
1829
|
} & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
|
1829
1830
|
|
1830
1831
|
export { DatePickerRangePlacement }
|
@@ -3391,10 +3392,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3391
3392
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3392
3393
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3393
3394
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3394
|
-
onFocusFirstTextfield?: ((event:
|
3395
|
-
onFocusSecondTextfield?: ((event:
|
3396
|
-
onBlurFirstTextfield?: ((event:
|
3397
|
-
onBlurSecondTextfield?: ((event:
|
3395
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3396
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3397
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3398
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3398
3399
|
} & {
|
3399
3400
|
firstTextfieldTextBefore: string;
|
3400
3401
|
secondTextfieldTextBefore: string;
|
@@ -3430,10 +3431,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3430
3431
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3431
3432
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3432
3433
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3433
|
-
onFocusFirstTextfield?: ((event:
|
3434
|
-
onFocusSecondTextfield?: ((event:
|
3435
|
-
onBlurFirstTextfield?: ((event:
|
3436
|
-
onBlurSecondTextfield?: ((event:
|
3434
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3435
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3436
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3437
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3437
3438
|
} & {
|
3438
3439
|
dividerVariant?: "dash" | undefined;
|
3439
3440
|
dividerIcon?: undefined;
|
@@ -3469,10 +3470,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3469
3470
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3470
3471
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3471
3472
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3472
|
-
onFocusFirstTextfield?: ((event:
|
3473
|
-
onFocusSecondTextfield?: ((event:
|
3474
|
-
onBlurFirstTextfield?: ((event:
|
3475
|
-
onBlurSecondTextfield?: ((event:
|
3473
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3474
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3475
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3476
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3476
3477
|
} & {
|
3477
3478
|
dividerIcon?: ReactNode;
|
3478
3479
|
dividerVariant?: "icon" | undefined;
|