@huntflow/ui 0.3.11 → 0.3.13
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.
|
@@ -20,4 +20,4 @@ export type UiButtonIconProps = {
|
|
|
20
20
|
bordered?: boolean;
|
|
21
21
|
};
|
|
22
22
|
export type UiButtonIconSize = 's' | 'xs' | 'm' | 'l';
|
|
23
|
-
export type UiButtonIconType = 'primary' | 'secondary' | 'accent' | 'danger';
|
|
23
|
+
export type UiButtonIconType = 'primary' | 'secondary' | 'accent' | 'danger' | 'transparent-secondary';
|
|
@@ -6,5 +6,8 @@ export type UiPlankProps = {
|
|
|
6
6
|
icon?: IconType;
|
|
7
7
|
/** Текст кнопки справа. */
|
|
8
8
|
label?: string;
|
|
9
|
+
/** Вертикальное выравнивание содержимого. При `top` содержимое прижато вверх. */
|
|
10
|
+
position?: UiPlankPosition;
|
|
9
11
|
};
|
|
10
12
|
export type UiPlankType = 'default' | 'accent' | 'danger';
|
|
13
|
+
export type UiPlankPosition = 'center' | 'top';
|