@salutejs/plasma-b2c 1.496.0-canary.1702.12829190112.0 → 1.496.0-canary.1709.12829247465.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -80,6 +80,7 @@ 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';
83
84
  import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
84
85
  import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
85
86
  import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
@@ -151,7 +152,6 @@ import { FC } from 'react';
151
152
  import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
152
153
  import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
153
154
  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';
@@ -214,6 +214,7 @@ import { PaginationProps } from '@salutejs/plasma-new-hope/styled-components';
214
214
  import { PanelProps } from '@salutejs/plasma-new-hope/types/components/Panel';
215
215
  import { PickOptional } from '@salutejs/plasma-core';
216
216
  import { PinProps } from '@salutejs/plasma-core';
217
+ import { Placement } from '@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types';
217
218
  import { PolymorphicClassName } from '@salutejs/plasma-new-hope/types/engines/types';
218
219
  import { PopoverPlacement } from '@salutejs/plasma-new-hope/styled-components';
219
220
  import type { PopoverPlacement as PopoverPlacement_2 } from '@salutejs/plasma-new-hope';
@@ -270,6 +271,8 @@ import { SegmentItemProps } from '@salutejs/plasma-new-hope/styled-components';
270
271
  import { SegmentProvider } from '@salutejs/plasma-new-hope/styled-components';
271
272
  import { SegmentProviderProps } from '@salutejs/plasma-new-hope/styled-components';
272
273
  import { SelectGroup } from '@salutejs/plasma-hope';
274
+ import { SelectPlacement } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
275
+ import { SelectPlacementBasic } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
273
276
  import { MergedSelectProps as SelectProps } from '@salutejs/plasma-new-hope/styled-components';
274
277
  import { SelectProps as SelectPropsHope } from '@salutejs/plasma-hope';
275
278
  import { selectText } from '@salutejs/plasma-hope';
@@ -1797,10 +1800,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
1797
1800
  secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
1798
1801
  firstTextfieldTextAfter?: string | undefined;
1799
1802
  secondTextfieldTextAfter?: string | undefined;
1800
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1801
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1802
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1803
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1803
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1804
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1805
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1806
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1804
1807
  firstTextfieldTextBefore?: string | undefined;
1805
1808
  secondTextfieldTextBefore?: string | undefined;
1806
1809
  dividerVariant?: "none" | "icon" | "dash" | undefined;
@@ -1808,7 +1811,6 @@ dividerIcon?: ReactNode;
1808
1811
  } & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
1809
1812
  placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
1810
1813
  isDoubleCalendar?: boolean | undefined;
1811
- closeAfterDateSelect?: boolean | undefined;
1812
1814
  } & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
1813
1815
 
1814
1816
  export { DatePickerRangePlacement }
@@ -3367,10 +3369,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
3367
3369
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
3368
3370
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
3369
3371
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
3370
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3371
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3372
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3373
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3372
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3373
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3374
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3375
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3374
3376
  } & {
3375
3377
  firstTextfieldTextBefore: string;
3376
3378
  secondTextfieldTextBefore: string;
@@ -3406,10 +3408,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
3406
3408
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
3407
3409
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
3408
3410
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
3409
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3410
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3411
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3412
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3411
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3412
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3413
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3414
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3413
3415
  } & {
3414
3416
  dividerVariant?: "dash" | undefined;
3415
3417
  dividerIcon?: undefined;
@@ -3445,10 +3447,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
3445
3447
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
3446
3448
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
3447
3449
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
3448
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3449
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3450
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3451
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3450
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3451
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3452
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3453
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3452
3454
  } & {
3453
3455
  dividerIcon?: ReactNode;
3454
3456
  dividerVariant?: "icon" | undefined;
@@ -28,7 +28,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
28
28
  };
29
29
  }> & (({
30
30
  items: ItemOption[];
31
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
31
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
32
32
  placeholder?: string | undefined;
33
33
  helperText?: string | undefined;
34
34
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -63,7 +63,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
63
63
  renderValue?: undefined;
64
64
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
65
65
  items: ItemOption[];
66
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
66
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
67
67
  placeholder?: string | undefined;
68
68
  helperText?: string | undefined;
69
69
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -98,7 +98,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
98
98
  renderValue?: undefined;
99
99
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
100
100
  items: ItemOption[];
101
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
101
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
102
102
  placeholder?: string | undefined;
103
103
  helperText?: string | undefined;
104
104
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -133,7 +133,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
133
133
  renderValue?: ((item: ItemOption) => string) | undefined;
134
134
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
135
135
  items: ItemOption[];
136
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
136
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
137
137
  placeholder?: string | undefined;
138
138
  helperText?: string | undefined;
139
139
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -168,7 +168,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
168
168
  renderValue?: ((item: ItemOption) => string) | undefined;
169
169
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
170
170
  items: ItemOption[];
171
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
171
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
172
172
  placeholder?: string | undefined;
173
173
  helperText?: string | undefined;
174
174
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -203,7 +203,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
203
203
  renderValue?: undefined;
204
204
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
205
205
  items: ItemOption[];
206
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
206
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
207
207
  placeholder?: string | undefined;
208
208
  helperText?: string | undefined;
209
209
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -238,7 +238,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
238
238
  renderValue?: undefined;
239
239
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
240
240
  items: ItemOption[];
241
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
241
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
242
242
  placeholder?: string | undefined;
243
243
  helperText?: string | undefined;
244
244
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -273,7 +273,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
273
273
  renderValue?: ((item: ItemOption) => string) | undefined;
274
274
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
275
275
  items: ItemOption[];
276
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
276
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
277
277
  placeholder?: string | undefined;
278
278
  helperText?: string | undefined;
279
279
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -308,7 +308,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
308
308
  renderValue?: ((item: ItemOption) => string) | undefined;
309
309
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
310
310
  items: ItemOption[];
311
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
311
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
312
312
  placeholder?: string | undefined;
313
313
  helperText?: string | undefined;
314
314
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -343,7 +343,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
343
343
  renderValue?: undefined;
344
344
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
345
345
  items: ItemOption[];
346
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
346
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
347
347
  placeholder?: string | undefined;
348
348
  helperText?: string | undefined;
349
349
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -378,7 +378,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
378
378
  renderValue?: undefined;
379
379
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
380
380
  items: ItemOption[];
381
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
381
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
382
382
  placeholder?: string | undefined;
383
383
  helperText?: string | undefined;
384
384
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
@@ -413,7 +413,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
413
413
  renderValue?: ((item: ItemOption) => string) | undefined;
414
414
  } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
415
415
  items: ItemOption[];
416
- placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
416
+ placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement | undefined;
417
417
  placeholder?: string | undefined;
418
418
  helperText?: string | undefined;
419
419
  contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | 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").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;
96
+ onFocusFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
97
+ onFocusSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
98
+ onBlurFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
99
+ onBlurSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
100
100
  firstTextfieldTextBefore?: string | undefined;
101
101
  secondTextfieldTextBefore?: string | undefined;
102
102
  dividerVariant?: "none" | "icon" | "dash" | undefined;
@@ -104,5 +104,4 @@ 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;
108
107
  } & 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").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;
51
+ onFocusFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
52
+ onFocusSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
53
+ onBlurFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
54
+ onBlurSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => 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").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;
90
+ onFocusFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
91
+ onFocusSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
92
+ onBlurFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
93
+ onBlurSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => 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").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;
129
+ onFocusFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
130
+ onFocusSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
131
+ onBlurFirstTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
132
+ onBlurSecondTextfield?: ((event: import("react").ChangeEvent<HTMLInputElement>) => void) | undefined;
133
133
  } & {
134
134
  dividerIcon?: import("react").ReactNode;
135
135
  dividerVariant?: "icon" | undefined;
@@ -54,7 +54,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
54
54
  children?: undefined;
55
55
  isTargetAmount?: boolean | undefined;
56
56
  renderTarget?: ((item: DropdownNodeSelect | DropdownNodeSelect[]) => React.ReactNode) | undefined;
57
- placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
57
+ placement?: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacement | import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacementBasic[] | undefined;
58
58
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
59
59
  variant?: "normal" | "tight" | undefined;
60
60
  zIndex?: import("csstype").Property.ZIndex | undefined;
@@ -94,7 +94,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
94
94
  children?: undefined;
95
95
  isTargetAmount?: boolean | undefined;
96
96
  renderTarget?: ((item: DropdownNodeSelect | DropdownNodeSelect[]) => React.ReactNode) | undefined;
97
- placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
97
+ placement?: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacement | import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacementBasic[] | undefined;
98
98
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
99
99
  variant?: "normal" | "tight" | undefined;
100
100
  zIndex?: import("csstype").Property.ZIndex | undefined;
@@ -134,7 +134,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
134
134
  children?: undefined;
135
135
  isTargetAmount?: boolean | undefined;
136
136
  renderTarget?: ((item: DropdownNodeSelect | DropdownNodeSelect[]) => React.ReactNode) | undefined;
137
- placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
137
+ placement?: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacement | import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacementBasic[] | undefined;
138
138
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
139
139
  variant?: "normal" | "tight" | undefined;
140
140
  zIndex?: import("csstype").Property.ZIndex | undefined;
@@ -174,7 +174,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
174
174
  children?: undefined;
175
175
  isTargetAmount?: boolean | undefined;
176
176
  renderTarget?: ((item: DropdownNodeSelect | DropdownNodeSelect[]) => React.ReactNode) | undefined;
177
- placement?: ("top" | "right" | "bottom" | "left" | "auto") | ("top" | "right" | "bottom" | "left")[] | undefined;
177
+ placement?: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacement | import("@salutejs/plasma-new-hope/types/components/Select/Select.types").SelectPlacementBasic[] | undefined;
178
178
  onScrollBottom?: ((e: React.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
179
179
  variant?: "normal" | "tight" | undefined;
180
180
  zIndex?: import("csstype").Property.ZIndex | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/plasma-b2c",
3
- "version": "1.496.0-canary.1702.12829190112.0",
3
+ "version": "1.496.0-canary.1709.12829247465.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.242.0-canary.1702.12829190112.0",
47
+ "@salutejs/plasma-new-hope": "0.242.0-canary.1709.12829247465.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": "18f89843d2170002fa4c9d0626bc7823763a009c"
111
+ "gitHead": "7a47bd25a6925569b3880334ffd8a1964c306d92"
112
112
  }
@@ -80,6 +80,7 @@ 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';
83
84
  import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
84
85
  import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
85
86
  import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
@@ -151,7 +152,6 @@ import { FC } from 'react';
151
152
  import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
152
153
  import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
153
154
  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';
@@ -214,6 +214,7 @@ import { PaginationProps } from '@salutejs/plasma-new-hope/styled-components';
214
214
  import { PanelProps } from '@salutejs/plasma-new-hope/types/components/Panel';
215
215
  import { PickOptional } from '@salutejs/plasma-core';
216
216
  import { PinProps } from '@salutejs/plasma-core';
217
+ import { Placement } from '@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types';
217
218
  import { PolymorphicClassName } from '@salutejs/plasma-new-hope/types/engines/types';
218
219
  import { PopoverPlacement } from '@salutejs/plasma-new-hope/styled-components';
219
220
  import type { PopoverPlacement as PopoverPlacement_2 } from '@salutejs/plasma-new-hope';
@@ -270,6 +271,8 @@ import { SegmentItemProps } from '@salutejs/plasma-new-hope/styled-components';
270
271
  import { SegmentProvider } from '@salutejs/plasma-new-hope/styled-components';
271
272
  import { SegmentProviderProps } from '@salutejs/plasma-new-hope/styled-components';
272
273
  import { SelectGroup } from '@salutejs/plasma-hope';
274
+ import { SelectPlacement } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
275
+ import { SelectPlacementBasic } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
273
276
  import { MergedSelectProps as SelectProps } from '@salutejs/plasma-new-hope/styled-components';
274
277
  import { SelectProps as SelectPropsHope } from '@salutejs/plasma-hope';
275
278
  import { selectText } from '@salutejs/plasma-hope';
@@ -1797,10 +1800,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
1797
1800
  secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
1798
1801
  firstTextfieldTextAfter?: string | undefined;
1799
1802
  secondTextfieldTextAfter?: string | undefined;
1800
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1801
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1802
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1803
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1803
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1804
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1805
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1806
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1804
1807
  firstTextfieldTextBefore?: string | undefined;
1805
1808
  secondTextfieldTextBefore?: string | undefined;
1806
1809
  dividerVariant?: "none" | "icon" | "dash" | undefined;
@@ -1808,7 +1811,6 @@ dividerIcon?: ReactNode;
1808
1811
  } & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
1809
1812
  placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
1810
1813
  isDoubleCalendar?: boolean | undefined;
1811
- closeAfterDateSelect?: boolean | undefined;
1812
1814
  } & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
1813
1815
 
1814
1816
  export { DatePickerRangePlacement }
@@ -3367,10 +3369,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
3367
3369
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
3368
3370
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
3369
3371
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
3370
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3371
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3372
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3373
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3372
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3373
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3374
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3375
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3374
3376
  } & {
3375
3377
  firstTextfieldTextBefore: string;
3376
3378
  secondTextfieldTextBefore: string;
@@ -3406,10 +3408,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
3406
3408
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
3407
3409
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
3408
3410
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
3409
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3410
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3411
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3412
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3411
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3412
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3413
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3414
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3413
3415
  } & {
3414
3416
  dividerVariant?: "dash" | undefined;
3415
3417
  dividerIcon?: undefined;
@@ -3445,10 +3447,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
3445
3447
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
3446
3448
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
3447
3449
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
3448
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3449
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3450
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3451
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
3450
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3451
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3452
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3453
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
3452
3454
  } & {
3453
3455
  dividerIcon?: ReactNode;
3454
3456
  dividerVariant?: "icon" | undefined;