@salutejs/sdds-finportal 0.147.0-canary.1504.11479867300.0 → 0.147.0-canary.1505.11483510462.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -82,6 +82,7 @@ import { DatePickerRangeProps } from '@salutejs/plasma-new-hope/styled-component
|
|
82
82
|
import { DatePickerTextFieldProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types';
|
83
83
|
import { datePickerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
84
84
|
import { DatePickerVariationProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types';
|
85
|
+
import { DefaultValueType } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
|
85
86
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
86
87
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
87
88
|
import { DoubleSliderProps } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -3259,8 +3260,8 @@ accent: PolymorphicClassName;
|
|
3259
3260
|
multiselect?: false | undefined;
|
3260
3261
|
separator?: undefined;
|
3261
3262
|
} & {
|
3262
|
-
value:
|
3263
|
-
onChange?: ((value:
|
3263
|
+
value: DefaultValueType;
|
3264
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3264
3265
|
listOverflow?: Property.Overflow | undefined;
|
3265
3266
|
listHeight?: Property.Height<string | number> | undefined;
|
3266
3267
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3297,8 +3298,8 @@ accent: PolymorphicClassName;
|
|
3297
3298
|
multiselect?: true | undefined;
|
3298
3299
|
separator?: string | undefined;
|
3299
3300
|
} & {
|
3300
|
-
value:
|
3301
|
-
onChange?: ((value:
|
3301
|
+
value: DefaultValueType;
|
3302
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3302
3303
|
listOverflow?: Property.Overflow | undefined;
|
3303
3304
|
listHeight?: Property.Height<string | number> | undefined;
|
3304
3305
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3335,8 +3336,8 @@ accent: PolymorphicClassName;
|
|
3335
3336
|
multiselect?: false | undefined;
|
3336
3337
|
separator?: undefined;
|
3337
3338
|
} & {
|
3338
|
-
value:
|
3339
|
-
onChange?: ((value:
|
3339
|
+
value: DefaultValueType;
|
3340
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3340
3341
|
listOverflow?: Property.Overflow | undefined;
|
3341
3342
|
listHeight?: Property.Height<string | number> | undefined;
|
3342
3343
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3373,8 +3374,8 @@ accent: PolymorphicClassName;
|
|
3373
3374
|
multiselect?: true | undefined;
|
3374
3375
|
separator?: string | undefined;
|
3375
3376
|
} & {
|
3376
|
-
value:
|
3377
|
-
onChange?: ((value:
|
3377
|
+
value: DefaultValueType;
|
3378
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3378
3379
|
listOverflow?: Property.Overflow | undefined;
|
3379
3380
|
listHeight?: Property.Height<string | number> | undefined;
|
3380
3381
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -35,8 +35,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
35
35
|
multiselect?: false | undefined;
|
36
36
|
separator?: undefined;
|
37
37
|
} & {
|
38
|
-
value:
|
39
|
-
onChange?: ((value:
|
38
|
+
value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType;
|
39
|
+
onChange?: ((value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType) => void) | undefined;
|
40
40
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
41
41
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
42
42
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -73,8 +73,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
73
73
|
multiselect?: true | undefined;
|
74
74
|
separator?: string | undefined;
|
75
75
|
} & {
|
76
|
-
value:
|
77
|
-
onChange?: ((value:
|
76
|
+
value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType;
|
77
|
+
onChange?: ((value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType) => void) | undefined;
|
78
78
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
79
79
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
80
80
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -111,8 +111,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
111
111
|
multiselect?: false | undefined;
|
112
112
|
separator?: undefined;
|
113
113
|
} & {
|
114
|
-
value:
|
115
|
-
onChange?: ((value:
|
114
|
+
value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType;
|
115
|
+
onChange?: ((value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType) => void) | undefined;
|
116
116
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
117
117
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
118
118
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -149,8 +149,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
149
149
|
multiselect?: true | undefined;
|
150
150
|
separator?: string | undefined;
|
151
151
|
} & {
|
152
|
-
value:
|
153
|
-
onChange?: ((value:
|
152
|
+
value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType;
|
153
|
+
onChange?: ((value: import("@salutejs/plasma-new-hope/types/components/Select/Select.types").DefaultValueType) => void) | undefined;
|
154
154
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
155
155
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
156
156
|
status?: "warning" | "success" | "error" | undefined;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-finportal",
|
3
|
-
"version": "0.147.0-canary.
|
3
|
+
"version": "0.147.0-canary.1505.11483510462.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.174.0-canary.
|
22
|
+
"@salutejs/plasma-new-hope": "0.174.0-canary.1505.11483510462.0",
|
23
23
|
"@salutejs/sdds-themes": "0.24.0-dev.0"
|
24
24
|
},
|
25
25
|
"peerDependencies": {
|
@@ -94,5 +94,5 @@
|
|
94
94
|
"Vasiliy Loginevskiy"
|
95
95
|
],
|
96
96
|
"sideEffects": false,
|
97
|
-
"gitHead": "
|
97
|
+
"gitHead": "c09ba4c2328e01c3e95781ccd0a6c80c86d84ac4"
|
98
98
|
}
|
@@ -82,6 +82,7 @@ import { DatePickerRangeProps } from '@salutejs/plasma-new-hope/styled-component
|
|
82
82
|
import { DatePickerTextFieldProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types';
|
83
83
|
import { datePickerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
84
84
|
import { DatePickerVariationProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types';
|
85
|
+
import { DefaultValueType } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
|
85
86
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
86
87
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
87
88
|
import { DoubleSliderProps } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -3259,8 +3260,8 @@ accent: PolymorphicClassName;
|
|
3259
3260
|
multiselect?: false | undefined;
|
3260
3261
|
separator?: undefined;
|
3261
3262
|
} & {
|
3262
|
-
value:
|
3263
|
-
onChange?: ((value:
|
3263
|
+
value: DefaultValueType;
|
3264
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3264
3265
|
listOverflow?: Property.Overflow | undefined;
|
3265
3266
|
listHeight?: Property.Height<string | number> | undefined;
|
3266
3267
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3297,8 +3298,8 @@ accent: PolymorphicClassName;
|
|
3297
3298
|
multiselect?: true | undefined;
|
3298
3299
|
separator?: string | undefined;
|
3299
3300
|
} & {
|
3300
|
-
value:
|
3301
|
-
onChange?: ((value:
|
3301
|
+
value: DefaultValueType;
|
3302
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3302
3303
|
listOverflow?: Property.Overflow | undefined;
|
3303
3304
|
listHeight?: Property.Height<string | number> | undefined;
|
3304
3305
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3335,8 +3336,8 @@ accent: PolymorphicClassName;
|
|
3335
3336
|
multiselect?: false | undefined;
|
3336
3337
|
separator?: undefined;
|
3337
3338
|
} & {
|
3338
|
-
value:
|
3339
|
-
onChange?: ((value:
|
3339
|
+
value: DefaultValueType;
|
3340
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3340
3341
|
listOverflow?: Property.Overflow | undefined;
|
3341
3342
|
listHeight?: Property.Height<string | number> | undefined;
|
3342
3343
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3373,8 +3374,8 @@ accent: PolymorphicClassName;
|
|
3373
3374
|
multiselect?: true | undefined;
|
3374
3375
|
separator?: string | undefined;
|
3375
3376
|
} & {
|
3376
|
-
value:
|
3377
|
-
onChange?: ((value:
|
3377
|
+
value: DefaultValueType;
|
3378
|
+
onChange?: ((value: DefaultValueType) => void) | undefined;
|
3378
3379
|
listOverflow?: Property.Overflow | undefined;
|
3379
3380
|
listHeight?: Property.Height<string | number> | undefined;
|
3380
3381
|
status?: "warning" | "success" | "error" | undefined;
|