@salutejs/plasma-b2c 1.493.0-canary.1699.12749937190.0 → 1.493.0-canary.1702.12749548652.0
Sign up to get free protection for your applications and to get access to all the features.
package/api/plasma-b2c.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';
|
@@ -150,6 +149,7 @@ import { FC } from 'react';
|
|
150
149
|
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
151
150
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
152
151
|
import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
|
152
|
+
import { FocusEvent as FocusEvent_2 } from 'react';
|
153
153
|
import { FocusProps } from '@salutejs/plasma-core';
|
154
154
|
import { formatCurrency } from '@salutejs/plasma-core';
|
155
155
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
@@ -1783,10 +1783,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
|
|
1783
1783
|
secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1784
1784
|
firstTextfieldTextAfter?: string | undefined;
|
1785
1785
|
secondTextfieldTextAfter?: string | undefined;
|
1786
|
-
onFocusFirstTextfield?: ((event:
|
1787
|
-
onFocusSecondTextfield?: ((event:
|
1788
|
-
onBlurFirstTextfield?: ((event:
|
1789
|
-
onBlurSecondTextfield?: ((event:
|
1786
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1787
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1788
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1789
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1790
1790
|
firstTextfieldTextBefore?: string | undefined;
|
1791
1791
|
secondTextfieldTextBefore?: string | undefined;
|
1792
1792
|
dividerVariant?: "none" | "icon" | "dash" | undefined;
|
@@ -1794,6 +1794,7 @@ dividerIcon?: ReactNode;
|
|
1794
1794
|
} & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
|
1795
1795
|
placement?: DatePickerRangePlacement | DatePickerRangePlacement[] | undefined;
|
1796
1796
|
isDoubleCalendar?: boolean | undefined;
|
1797
|
+
closeAfterDateSelect?: boolean | undefined;
|
1797
1798
|
} & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
|
1798
1799
|
|
1799
1800
|
export { DatePickerRangePlacement }
|
@@ -3079,7 +3080,6 @@ value?: number | undefined;
|
|
3079
3080
|
min?: number | undefined;
|
3080
3081
|
max?: number | undefined;
|
3081
3082
|
step?: number | undefined;
|
3082
|
-
precision?: number | undefined;
|
3083
3083
|
isLoading?: boolean | undefined;
|
3084
3084
|
loader?: ReactNode;
|
3085
3085
|
size?: string | undefined;
|
@@ -3105,7 +3105,6 @@ value?: number | undefined;
|
|
3105
3105
|
min?: number | undefined;
|
3106
3106
|
max?: number | undefined;
|
3107
3107
|
step?: number | undefined;
|
3108
|
-
precision?: number | undefined;
|
3109
3108
|
isLoading?: boolean | undefined;
|
3110
3109
|
loader?: ReactNode;
|
3111
3110
|
size?: string | undefined;
|
@@ -3352,10 +3351,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3352
3351
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3353
3352
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3354
3353
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3355
|
-
onFocusFirstTextfield?: ((event:
|
3356
|
-
onFocusSecondTextfield?: ((event:
|
3357
|
-
onBlurFirstTextfield?: ((event:
|
3358
|
-
onBlurSecondTextfield?: ((event:
|
3354
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3355
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3356
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3357
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3359
3358
|
} & {
|
3360
3359
|
firstTextfieldTextBefore: string;
|
3361
3360
|
secondTextfieldTextBefore: string;
|
@@ -3391,10 +3390,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3391
3390
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3392
3391
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3393
3392
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3394
|
-
onFocusFirstTextfield?: ((event:
|
3395
|
-
onFocusSecondTextfield?: ((event:
|
3396
|
-
onBlurFirstTextfield?: ((event:
|
3397
|
-
onBlurSecondTextfield?: ((event:
|
3393
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3394
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3395
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3396
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3398
3397
|
} & {
|
3399
3398
|
dividerVariant?: "dash" | undefined;
|
3400
3399
|
dividerIcon?: undefined;
|
@@ -3430,10 +3429,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3430
3429
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3431
3430
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3432
3431
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3433
|
-
onFocusFirstTextfield?: ((event:
|
3434
|
-
onFocusSecondTextfield?: ((event:
|
3435
|
-
onBlurFirstTextfield?: ((event:
|
3436
|
-
onBlurSecondTextfield?: ((event:
|
3432
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3433
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3434
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3435
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3437
3436
|
} & {
|
3438
3437
|
dividerIcon?: ReactNode;
|
3439
3438
|
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/styled-components").DatePickerRangePlacement[] | 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>>;
|
@@ -33,7 +33,6 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
|
|
33
33
|
min?: number | undefined;
|
34
34
|
max?: number | undefined;
|
35
35
|
step?: number | undefined;
|
36
|
-
precision?: number | undefined;
|
37
36
|
isLoading?: boolean | undefined;
|
38
37
|
loader?: import("react").ReactNode;
|
39
38
|
size?: string | undefined;
|
@@ -59,7 +58,6 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
|
|
59
58
|
min?: number | undefined;
|
60
59
|
max?: number | undefined;
|
61
60
|
step?: number | undefined;
|
62
|
-
precision?: number | undefined;
|
63
61
|
isLoading?: boolean | undefined;
|
64
62
|
loader?: import("react").ReactNode;
|
65
63
|
size?: string | undefined;
|
@@ -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-b2c",
|
3
|
-
"version": "1.493.0-canary.
|
3
|
+
"version": "1.493.0-canary.1702.12749548652.0",
|
4
4
|
"description": "Salute Design System / React UI kit for business-related web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"dependencies": {
|
45
45
|
"@salutejs/plasma-core": "1.191.0-dev.0",
|
46
46
|
"@salutejs/plasma-hope": "1.328.1-dev.0",
|
47
|
-
"@salutejs/plasma-new-hope": "0.239.0-canary.
|
47
|
+
"@salutejs/plasma-new-hope": "0.239.0-canary.1702.12749548652.0",
|
48
48
|
"@salutejs/plasma-themes": "0.28.0",
|
49
49
|
"@salutejs/plasma-tokens-b2c": "0.56.0-dev.0",
|
50
50
|
"@salutejs/plasma-tokens-web": "1.61.0-dev.0",
|
@@ -108,5 +108,5 @@
|
|
108
108
|
"react"
|
109
109
|
],
|
110
110
|
"sideEffects": false,
|
111
|
-
"gitHead": "
|
111
|
+
"gitHead": "8187d20bd9a978a6e3bad6318d4005727c10f098"
|
112
112
|
}
|
package/temp/plasma-b2c.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';
|
@@ -150,6 +149,7 @@ import { FC } from 'react';
|
|
150
149
|
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
151
150
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
152
151
|
import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
|
152
|
+
import { FocusEvent as FocusEvent_2 } from 'react';
|
153
153
|
import { FocusProps } from '@salutejs/plasma-core';
|
154
154
|
import { formatCurrency } from '@salutejs/plasma-core';
|
155
155
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
@@ -1783,10 +1783,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
|
|
1783
1783
|
secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1784
1784
|
firstTextfieldTextAfter?: string | undefined;
|
1785
1785
|
secondTextfieldTextAfter?: string | undefined;
|
1786
|
-
onFocusFirstTextfield?: ((event:
|
1787
|
-
onFocusSecondTextfield?: ((event:
|
1788
|
-
onBlurFirstTextfield?: ((event:
|
1789
|
-
onBlurSecondTextfield?: ((event:
|
1786
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1787
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1788
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1789
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
1790
1790
|
firstTextfieldTextBefore?: string | undefined;
|
1791
1791
|
secondTextfieldTextBefore?: string | undefined;
|
1792
1792
|
dividerVariant?: "none" | "icon" | "dash" | undefined;
|
@@ -1794,6 +1794,7 @@ dividerIcon?: ReactNode;
|
|
1794
1794
|
} & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
|
1795
1795
|
placement?: DatePickerRangePlacement | DatePickerRangePlacement[] | undefined;
|
1796
1796
|
isDoubleCalendar?: boolean | undefined;
|
1797
|
+
closeAfterDateSelect?: boolean | undefined;
|
1797
1798
|
} & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
|
1798
1799
|
|
1799
1800
|
export { DatePickerRangePlacement }
|
@@ -3079,7 +3080,6 @@ value?: number | undefined;
|
|
3079
3080
|
min?: number | undefined;
|
3080
3081
|
max?: number | undefined;
|
3081
3082
|
step?: number | undefined;
|
3082
|
-
precision?: number | undefined;
|
3083
3083
|
isLoading?: boolean | undefined;
|
3084
3084
|
loader?: ReactNode;
|
3085
3085
|
size?: string | undefined;
|
@@ -3105,7 +3105,6 @@ value?: number | undefined;
|
|
3105
3105
|
min?: number | undefined;
|
3106
3106
|
max?: number | undefined;
|
3107
3107
|
step?: number | undefined;
|
3108
|
-
precision?: number | undefined;
|
3109
3108
|
isLoading?: boolean | undefined;
|
3110
3109
|
loader?: ReactNode;
|
3111
3110
|
size?: string | undefined;
|
@@ -3352,10 +3351,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3352
3351
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3353
3352
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3354
3353
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3355
|
-
onFocusFirstTextfield?: ((event:
|
3356
|
-
onFocusSecondTextfield?: ((event:
|
3357
|
-
onBlurFirstTextfield?: ((event:
|
3358
|
-
onBlurSecondTextfield?: ((event:
|
3354
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3355
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3356
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3357
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3359
3358
|
} & {
|
3360
3359
|
firstTextfieldTextBefore: string;
|
3361
3360
|
secondTextfieldTextBefore: string;
|
@@ -3391,10 +3390,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3391
3390
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3392
3391
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3393
3392
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3394
|
-
onFocusFirstTextfield?: ((event:
|
3395
|
-
onFocusSecondTextfield?: ((event:
|
3396
|
-
onBlurFirstTextfield?: ((event:
|
3397
|
-
onBlurSecondTextfield?: ((event:
|
3393
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3394
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3395
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3396
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3398
3397
|
} & {
|
3399
3398
|
dividerVariant?: "dash" | undefined;
|
3400
3399
|
dividerIcon?: undefined;
|
@@ -3430,10 +3429,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
|
|
3430
3429
|
onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
|
3431
3430
|
onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
|
3432
3431
|
onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
|
3433
|
-
onFocusFirstTextfield?: ((event:
|
3434
|
-
onFocusSecondTextfield?: ((event:
|
3435
|
-
onBlurFirstTextfield?: ((event:
|
3436
|
-
onBlurSecondTextfield?: ((event:
|
3432
|
+
onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3433
|
+
onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3434
|
+
onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3435
|
+
onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
|
3437
3436
|
} & {
|
3438
3437
|
dividerIcon?: ReactNode;
|
3439
3438
|
dividerVariant?: "icon" | undefined;
|