@salutejs/sdds-cs 0.317.0-canary.1991.15256515100.0 → 0.317.0-canary.1993.15271190997.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.
- package/components/Accordion/Accordion.d.ts +10 -9
- package/components/Attach/Attach.d.ts +159 -158
- package/components/Autocomplete/Autocomplete.d.ts +353 -352
- package/components/Avatar/Avatar.d.ts +47 -46
- package/components/AvatarGroup/AvatarGroup.d.ts +2 -1
- package/components/Badge/Badge.d.ts +41 -40
- package/components/Breadcrumbs/Breadcrumbs.d.ts +4 -3
- package/components/Button/Button.d.ts +71 -71
- package/components/ButtonGroup/ButtonGroup.d.ts +1 -0
- package/components/Calendar/CalendarBase.config.js +1 -1
- package/components/Calendar/CalendarDouble.config.js +1 -1
- package/components/Card/Card.d.ts +6 -5
- package/components/Cell/Cell.d.ts +20 -19
- package/components/Checkbox/Checkbox.d.ts +1 -1
- package/components/Chip/Chip.d.ts +1 -0
- package/components/ChipGroup/ChipGroup.d.ts +1 -0
- package/components/Combobox/Combobox.d.ts +951 -951
- package/components/Counter/Counter.d.ts +1 -0
- package/components/DatePicker/DatePicker.config.js +1 -1
- package/components/DatePicker/DatePicker.d.ts +54 -53
- package/components/Divider/Divider.d.ts +1 -0
- package/components/Drawer/Drawer.d.ts +19 -18
- package/components/Dropdown/Dropdown.d.ts +52 -52
- package/components/Dropzone/Dropzone.d.ts +16 -15
- package/components/EmptyState/EmptyState.d.ts +1 -0
- package/components/Flow/Flow.d.ts +2 -1
- package/components/Grid/Grid.d.ts +1 -0
- package/components/IconButton/IconButton.d.ts +36 -35
- package/components/Image/Image.d.ts +4 -3
- package/components/Indicator/Indicator.d.ts +1 -0
- package/components/Link/Link.d.ts +2 -1
- package/components/Mask/Mask.d.ts +225 -224
- package/components/NumberFormat/NumberFormat.d.ts +1 -1
- package/components/NumberInput/NumberInput.d.ts +39 -38
- package/components/Pagination/Pagination.d.ts +1 -0
- package/components/Popover/Popover.d.ts +1 -0
- package/components/Price/Price.d.ts +1 -0
- package/components/Progress/Progress.d.ts +1 -0
- package/components/Radiobox/Radiobox.d.ts +1 -1
- package/components/Range/Range.d.ts +106 -105
- package/components/Rating/Rating.d.ts +14 -13
- package/components/Segment/Segment.d.ts +9 -8
- package/components/Select/Select.config.js +3 -3
- package/components/Select/Select.d.ts +244 -244
- package/components/Sheet/Sheet.d.ts +1 -0
- package/components/Skeleton/Skeleton.d.ts +5 -4
- package/components/Slider/Slider.d.ts +105 -96
- package/components/Spinner/Spinner.d.ts +14 -9
- package/components/Steps/Steps.d.ts +1 -0
- package/components/Switch/Switch.d.ts +1 -1
- package/components/Table/Table.d.ts +1 -0
- package/components/Tabs/TabItem.d.ts +23 -23
- package/components/Tabs/Tabs.d.ts +1 -1
- package/components/TextArea/TextArea.d.ts +206 -205
- package/components/TextField/TextField.d.ts +225 -224
- package/components/Toast/Toast.d.ts +1 -0
- package/components/ToastNew/ToastNew.d.ts +1 -1
- package/components/Tokens/Colors/Colors.styles.d.ts +26 -25
- package/components/Tokens/Typography/Typography.styles.d.ts +24 -23
- package/components/Toolbar/Toolbar.d.ts +6 -5
- package/components/Tree/Tree.d.ts +1 -0
- package/components/Typography/Typography.d.ts +205 -204
- package/components/ViewContainer/ViewContainer.d.ts +1 -0
- package/emotion/cjs/components/Calendar/Calendar.stories.tsx +40 -32
- package/emotion/cjs/components/Calendar/CalendarBase.config.js +1 -1
- package/emotion/cjs/components/Calendar/CalendarDouble.config.js +1 -1
- package/emotion/cjs/components/DatePicker/DatePicker.config.js +1 -1
- package/emotion/cjs/components/DatePicker/DatePicker.stories.tsx +6 -0
- package/emotion/cjs/components/Select/Select.config.js +3 -3
- package/emotion/es/components/Calendar/Calendar.stories.tsx +40 -32
- package/emotion/es/components/Calendar/CalendarBase.config.js +1 -1
- package/emotion/es/components/Calendar/CalendarDouble.config.js +1 -1
- package/emotion/es/components/DatePicker/DatePicker.config.js +1 -1
- package/emotion/es/components/DatePicker/DatePicker.stories.tsx +6 -0
- package/emotion/es/components/Select/Select.config.js +3 -3
- package/es/components/Calendar/CalendarBase.config.js +1 -1
- package/es/components/Calendar/CalendarDouble.config.js +1 -1
- package/es/components/DatePicker/DatePicker.config.js +1 -1
- package/es/components/Select/Select.config.js +3 -3
- package/mixins/index.d.ts +2 -1
- package/package.json +8 -8
@@ -1,3 +1,4 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
/**
|
2
3
|
* Кнопка.
|
3
4
|
*/
|
@@ -10,33 +11,33 @@ export declare const Cell: import("react").FunctionComponent<import("@salutejs/p
|
|
10
11
|
xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
11
12
|
};
|
12
13
|
}> & (({
|
13
|
-
size?: string;
|
14
|
-
view?: string;
|
14
|
+
size?: string | undefined;
|
15
|
+
view?: string | undefined;
|
15
16
|
contentLeft?: import("react").ReactNode;
|
16
17
|
contentRight?: import("react").ReactNode;
|
17
|
-
alignContentLeft?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp;
|
18
|
-
alignContentRight?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp;
|
19
|
-
stretching?: "fixed" | "
|
18
|
+
alignContentLeft?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
|
19
|
+
alignContentRight?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
|
20
|
+
stretching?: "fixed" | "auto" | "filled" | undefined;
|
20
21
|
content?: import("react").ReactNode;
|
21
|
-
description?: string;
|
22
|
+
description?: string | undefined;
|
22
23
|
} & {
|
23
|
-
title?: string;
|
24
|
-
subtitle?: string;
|
25
|
-
label?: string;
|
26
|
-
children?:
|
24
|
+
title?: string | undefined;
|
25
|
+
subtitle?: string | undefined;
|
26
|
+
label?: string | undefined;
|
27
|
+
children?: undefined;
|
27
28
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
28
|
-
size?: string;
|
29
|
-
view?: string;
|
29
|
+
size?: string | undefined;
|
30
|
+
view?: string | undefined;
|
30
31
|
contentLeft?: import("react").ReactNode;
|
31
32
|
contentRight?: import("react").ReactNode;
|
32
|
-
alignContentLeft?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp;
|
33
|
-
alignContentRight?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp;
|
34
|
-
stretching?: "fixed" | "
|
33
|
+
alignContentLeft?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
|
34
|
+
alignContentRight?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
|
35
|
+
stretching?: "fixed" | "auto" | "filled" | undefined;
|
35
36
|
content?: import("react").ReactNode;
|
36
|
-
description?: string;
|
37
|
+
description?: string | undefined;
|
37
38
|
} & {
|
38
|
-
title?:
|
39
|
-
subtitle?:
|
40
|
-
label?:
|
39
|
+
title?: undefined;
|
40
|
+
subtitle?: undefined;
|
41
|
+
label?: undefined;
|
41
42
|
children?: import("react").ReactNode;
|
42
43
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
@@ -13,7 +13,7 @@ declare const CheckboxComponent: import("react").FunctionComponent<import("@salu
|
|
13
13
|
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
14
14
|
};
|
15
15
|
}> & import("@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types").CheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
|
16
|
-
export type CheckboxProps = ComponentProps<typeof CheckboxComponent>;
|
16
|
+
export declare type CheckboxProps = ComponentProps<typeof CheckboxComponent>;
|
17
17
|
/**
|
18
18
|
* Флажок или чекбокс. Позволяет пользователю управлять параметром с двумя состояниями — ☑ включено и ☐ отключено.
|
19
19
|
*/
|