@foxford/ui 2.83.0-beta-4ae8299-20251007 → 2.84.0-beta-4d7a4d1-20251008

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.
Files changed (78) hide show
  1. package/components/Dropdown/Dropdown.js +1 -1
  2. package/components/Dropdown/Dropdown.js.map +1 -1
  3. package/components/Dropdown/Dropdown.mjs +1 -1
  4. package/components/Dropdown/Dropdown.mjs.map +1 -1
  5. package/components/Dropdown/sizes.js +1 -1
  6. package/components/Dropdown/sizes.js.map +1 -1
  7. package/components/Dropdown/sizes.mjs +1 -1
  8. package/components/Dropdown/sizes.mjs.map +1 -1
  9. package/components/FormInput/FormInput.js +1 -1
  10. package/components/FormInput/FormInput.js.map +1 -1
  11. package/components/FormInput/FormInput.mjs +1 -1
  12. package/components/FormInput/FormInput.mjs.map +1 -1
  13. package/components/FormInput/sizes.js +2 -0
  14. package/components/FormInput/sizes.js.map +1 -0
  15. package/components/FormInput/sizes.mjs +2 -0
  16. package/components/FormInput/sizes.mjs.map +1 -0
  17. package/components/FormInput/style.js +1 -1
  18. package/components/FormInput/style.js.map +1 -1
  19. package/components/FormInput/style.mjs +1 -1
  20. package/components/FormInput/style.mjs.map +1 -1
  21. package/components/FormInputLabel/FormInputLabel.js +1 -1
  22. package/components/FormInputLabel/FormInputLabel.js.map +1 -1
  23. package/components/FormInputLabel/FormInputLabel.mjs +1 -1
  24. package/components/FormInputLabel/FormInputLabel.mjs.map +1 -1
  25. package/components/FormInputLabel/sizes.js +2 -0
  26. package/components/FormInputLabel/sizes.js.map +1 -0
  27. package/components/FormInputLabel/sizes.mjs +2 -0
  28. package/components/FormInputLabel/sizes.mjs.map +1 -0
  29. package/components/FormInputLabel/style.js +1 -1
  30. package/components/FormInputLabel/style.js.map +1 -1
  31. package/components/FormInputLabel/style.mjs +1 -1
  32. package/components/FormInputLabel/style.mjs.map +1 -1
  33. package/components/Input/Input.js +1 -1
  34. package/components/Input/Input.js.map +1 -1
  35. package/components/Input/Input.mjs +1 -1
  36. package/components/Input/Input.mjs.map +1 -1
  37. package/components/Input/sizes.js +2 -0
  38. package/components/Input/sizes.js.map +1 -0
  39. package/components/Input/sizes.mjs +2 -0
  40. package/components/Input/sizes.mjs.map +1 -0
  41. package/components/InputLabel/InputLabel.js +2 -0
  42. package/components/InputLabel/InputLabel.js.map +1 -0
  43. package/components/InputLabel/InputLabel.mjs +2 -0
  44. package/components/InputLabel/InputLabel.mjs.map +1 -0
  45. package/components/InputLabel/sizes.js +2 -0
  46. package/components/InputLabel/sizes.js.map +1 -0
  47. package/components/InputLabel/sizes.mjs +2 -0
  48. package/components/InputLabel/sizes.mjs.map +1 -0
  49. package/components/InputLabel/style.js +2 -0
  50. package/components/InputLabel/style.js.map +1 -0
  51. package/components/InputLabel/style.mjs +2 -0
  52. package/components/InputLabel/style.mjs.map +1 -0
  53. package/components/Textarea/Textarea.js +1 -1
  54. package/components/Textarea/Textarea.js.map +1 -1
  55. package/components/Textarea/Textarea.mjs +1 -1
  56. package/components/Textarea/Textarea.mjs.map +1 -1
  57. package/components/Textarea/sizes.js +2 -0
  58. package/components/Textarea/sizes.js.map +1 -0
  59. package/components/Textarea/sizes.mjs +2 -0
  60. package/components/Textarea/sizes.mjs.map +1 -0
  61. package/components/Textarea/style.js +1 -1
  62. package/components/Textarea/style.js.map +1 -1
  63. package/components/Textarea/style.mjs +1 -1
  64. package/components/Textarea/style.mjs.map +1 -1
  65. package/dts/index.d.ts +434 -285
  66. package/package.json +2 -2
  67. package/components/FormInputLabel/constants.js +0 -2
  68. package/components/FormInputLabel/constants.js.map +0 -1
  69. package/components/FormInputLabel/constants.mjs +0 -2
  70. package/components/FormInputLabel/constants.mjs.map +0 -1
  71. package/components/Input/constants.js +0 -2
  72. package/components/Input/constants.js.map +0 -1
  73. package/components/Input/constants.mjs +0 -2
  74. package/components/Input/constants.mjs.map +0 -1
  75. package/components/Textarea/constants.js +0 -2
  76. package/components/Textarea/constants.js.map +0 -1
  77. package/components/Textarea/constants.mjs +0 -2
  78. package/components/Textarea/constants.mjs.map +0 -1
package/dts/index.d.ts CHANGED
@@ -883,8 +883,8 @@ type CSSColor = RGB | RGBA | HEX | CSSGlobalValue | 'currentcolor' | 'transparen
883
883
  type CSSBorderStyle = CSSGlobalValue | 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
884
884
  type CSSVerticalAlign = CSSGlobalValue | 'baseline' | 'sub' | 'super' | 'text-top' | 'text-bottom' | 'middle' | 'top' | 'bottom';
885
885
  type CSSFontWeight = CSSGlobalValue | 'normal' | 'bold' | 'lighter' | 'bolder' | number;
886
- type Size$d = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
887
- type SizeValue = Size$d | CSSGlobalValue | number;
886
+ type Size$f = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
887
+ type SizeValue = Size$f | CSSGlobalValue | number;
888
888
  type Breakpoint = 'XXS' | 'XS' | 'S' | 'M' | 'L' | 'XL';
889
889
  type Color = keyof typeof ColorNames | CSSColor;
890
890
  type ColorPaletteKey = 'color' | `color${string}` | `${string}Color` | `${string}Color${string}`;
@@ -979,21 +979,21 @@ declare const adultDarkTheme: DefaultTheme;
979
979
  /**
980
980
  * Value for breakpoint
981
981
  */
982
- type PossibleValues = number | Size$d | 'auto' | 'initial' | 'inherit' | boolean;
982
+ type PossibleValues = number | Size$f | 'auto' | 'initial' | 'inherit' | boolean;
983
983
  type PropsProperties = 'size' | 'fontSize' | 'height' | 'width' | 'top' | 'right' | 'bottom' | 'left' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'fluid';
984
984
  type CalcProperty = (_size: number | 'auto' | 'initial' | 'inherit' | boolean, _sizing?: null | string) => FlattenSimpleInterpolation | null;
985
985
  type CssProperty = string | CalcProperty;
986
986
  type ResponsiveKeys = '' | 'XXS' | 'XS' | 'S' | 'M' | 'L' | 'XL';
987
987
  type ResponsiveNamedProperty<T extends PropsProperties, V extends PossibleValues = PossibleValues> = Partial<Record<`${T}${ResponsiveKeys}`, V>>;
988
- type ResponsiveProperty<V = number | Size$d> = V | [desktop: V, tablet: V, mobile: V] | [xl: V, l: V, m: V, s: V, xs: V, xxs: V];
989
- declare const property: (value: PossibleValues, cssProperty?: CssProperty, sizing?: null | string, sizes?: Record<Size$d, number>) => () => () => FlattenSimpleInterpolation | null;
988
+ type ResponsiveProperty<V = number | Size$f> = V | [desktop: V, tablet: V, mobile: V] | [xl: V, l: V, m: V, s: V, xs: V, xxs: V];
989
+ declare const property: (value: PossibleValues, cssProperty?: CssProperty, sizing?: null | string, sizes?: Record<Size$f, number>) => () => () => FlattenSimpleInterpolation | null;
990
990
  interface ResponsiveNamedPropertyPayload<T extends PropsProperties> {
991
991
  sizes: ResponsiveNamedProperty<T>;
992
992
  cssProperty: CssProperty;
993
993
  sizing?: null | string;
994
994
  customSizeHandler?: (_value: PossibleValues) => PossibleValues;
995
995
  sort?: (_a: string, _b: string) => number;
996
- predefinedSizes?: Record<Size$d, number>;
996
+ predefinedSizes?: Record<Size$f, number>;
997
997
  }
998
998
  /**
999
999
  * Миксин для генерации media запросов
@@ -1094,7 +1094,7 @@ interface ExpandButtonProps extends React.ComponentPropsWithoutRef<'button'> {
1094
1094
  /** Кастомные цвета */
1095
1095
  palette?: Partial<Record<keyof ExpandButtonPalette, Color>>;
1096
1096
  }
1097
- interface TextProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps,
1097
+ interface TextProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps,
1098
1098
  /** @deprecated */
1099
1099
  DisplayProperty, ColorProperty, Omit<React.HTMLAttributes<HTMLElement>, 'color'>, Omit<React.BlockquoteHTMLAttributes<HTMLElement>, 'color'>, Omit<React.LabelHTMLAttributes<HTMLElement>, 'color'> {
1100
1100
  /** Применение присета стилей и размеров */
@@ -1127,7 +1127,7 @@ DisplayProperty, ColorProperty, Omit<React.HTMLAttributes<HTMLElement>, 'color'>
1127
1127
  /** Значение для `font-style` */
1128
1128
  fontStyle?: 'normal' | 'italic';
1129
1129
  /** Значение для `line-height` */
1130
- lineHeight?: 'l' | 'm' | 's' | 'xs' | number;
1130
+ lineHeight?: 'l' | 'm' | 's' | 'xs' | number | CSSGlobalValue;
1131
1131
  /**
1132
1132
  * Колбек, который будет вызван при изменении состояния сокращенной части контента.
1133
1133
  * Используется в комбинации с пропом `ellipsis`
@@ -1171,7 +1171,7 @@ declare const Text: React.ForwardRefExoticComponent<TextProps> & {
1171
1171
  type IconPackIconName = Uncapitalize<keyof typeof IconPack>;
1172
1172
  type IconNameDefault = 'book' | 'blackBoard' | 'burger' | 'eye' | 'email' | 'sort' | 'unsort' | 'person' | 'diamond' | 'diamondFilled' | 'infoInverse' | 'list' | 'login' | 'logout' | 'fire' | 'camps' | 'cart' | 'clock' | 'clockFilled' | 'courses' | 'discount' | 'externat' | 'headphones' | 'page' | 'priceTag' | 'phone' | 'prof' | 'star' | 'settings' | 'student' | 'target' | 'textbook' | 'trophy' | 'message' | 'wallet' | 'edit' | 'copy' | 'print' | 'objective' | 'present' | 'coins' | 'calendar' | 'calendar_simple' | 'chevronDown' | 'chevronUp' | 'chevronRight' | 'chevronLeft' | 'cross' | 'dialog' | 'dropDownArrow' | 'externalLink' | 'file' | 'fileBordered' | 'lessons' | 'pencil' | 'phoneNoFill' | 'radioChecked' | 'radioNotChecked' | 'search' | 'tasks' | 'tinyCross' | 'sharpCross' | 'plus' | 'plusThin' | 'play' | 'reload' | 'checkCircle' | 'info' | 'check' | 'home' | 'questionFilled' | 'document' | 'cancel' | 'playPause' | 'video';
1173
1173
  type IconName = IconPackIconName | IconNameDefault;
1174
- interface IconProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'span'>, 'children'> {
1174
+ interface IconProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'span'>, 'children'> {
1175
1175
  /** UI: brand (v3), or default (v2) */
1176
1176
  preset?: ThemePreset;
1177
1177
  /** Icon color */
@@ -1275,7 +1275,7 @@ type AnchorPalette = {
1275
1275
  colorHover: CSSColor;
1276
1276
  colorDisabled: CSSColor;
1277
1277
  };
1278
- interface AnchorProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'a'>, 'color' | 'children'>,
1278
+ interface AnchorProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'a'>, 'color' | 'children'>,
1279
1279
  /** @deprecated Use palette */
1280
1280
  ColorProperty<'color'>,
1281
1281
  /** @deprecated Use children as function */
@@ -1334,9 +1334,9 @@ DisplayProperty {
1334
1334
  */
1335
1335
  declare const Anchor: React.ForwardRefExoticComponent<AnchorProps>;
1336
1336
 
1337
- type Size$c = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
1338
- type Margin$8 = number | string;
1339
- interface ButtonBaseProps extends ResponsiveSizeProps<Size$c>, ResponsiveMarginProps, ResponsiveNamedProperty<'fluid', boolean>, ResponsiveNamedProperty<'width', 'auto' | 'l' | 'm' | 's' | 'xs' | number>,
1337
+ type Size$e = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
1338
+ type Margin$9 = number | string;
1339
+ interface ButtonBaseProps extends ResponsiveSizeProps<Size$e>, ResponsiveMarginProps, ResponsiveNamedProperty<'fluid', boolean>, ResponsiveNamedProperty<'width', 'auto' | 'l' | 'm' | 's' | 'xs' | number>,
1340
1340
  /** @deprecated */
1341
1341
  ColorProperty,
1342
1342
  /** @deprecated */
@@ -1501,43 +1501,43 @@ ResponsiveNamedProperty<'height', 'l' | 'm' | 's' | 'xs' | number> {
1501
1501
  *
1502
1502
  * @general
1503
1503
  * @default 'm' */
1504
- size?: Size$c | [DESKTOP: Size$c, TABLET: Size$c, MOBILE: Size$c] | [XL: Size$c, L: Size$c, M: Size$c, S: Size$c, XS: Size$c, XXS: Size$c];
1504
+ size?: Size$e | [DESKTOP: Size$e, TABLET: Size$e, MOBILE: Size$e] | [XL: Size$e, L: Size$e, M: Size$e, S: Size$e, XS: Size$e, XXS: Size$e];
1505
1505
  /**
1506
1506
  * Размер для XXS брейкпоинта.
1507
1507
  *
1508
1508
  * @default undefined */
1509
- sizeXXS?: Size$c;
1509
+ sizeXXS?: Size$e;
1510
1510
  /**
1511
1511
  * Размер для XS брейкпоинта.
1512
1512
  *
1513
1513
  * @default undefined */
1514
- sizeXS?: Size$c;
1514
+ sizeXS?: Size$e;
1515
1515
  /**
1516
1516
  * Размер для S брейкпоинта.
1517
1517
  *
1518
1518
  * @default undefined */
1519
- sizeS?: Size$c;
1519
+ sizeS?: Size$e;
1520
1520
  /**
1521
1521
  * Размер для M брейкпоинта.
1522
1522
  *
1523
1523
  * @default undefined */
1524
- sizeM?: Size$c;
1524
+ sizeM?: Size$e;
1525
1525
  /**
1526
1526
  * Размер для L брейкпоинта.
1527
1527
  *
1528
1528
  * @default undefined */
1529
- sizeL?: Size$c;
1529
+ sizeL?: Size$e;
1530
1530
  /**
1531
1531
  * Размер для XL брейкпоинта.
1532
1532
  *
1533
1533
  * @default undefined */
1534
- sizeXL?: Size$c;
1534
+ sizeXL?: Size$e;
1535
1535
  /**
1536
1536
  * Модификация размеров.
1537
1537
  *
1538
1538
  * @general
1539
1539
  * @default undefined */
1540
- sizes?: Partial<Record<Size$c, React.CSSProperties>>;
1540
+ sizes?: Partial<Record<Size$e, React.CSSProperties>>;
1541
1541
  /**
1542
1542
  * Внешние отступы.
1543
1543
  *
@@ -1545,37 +1545,37 @@ ResponsiveNamedProperty<'height', 'l' | 'm' | 's' | 'xs' | number> {
1545
1545
  *
1546
1546
  * @general
1547
1547
  * @default undefined */
1548
- margin?: Margin$8 | [DESKTOP: Margin$8, TABLET: Margin$8, MOBILE: Margin$8] | [XL: Margin$8, L: Margin$8, M: Margin$8, S: Margin$8, XS: Margin$8, XXS: Margin$8];
1548
+ margin?: Margin$9 | [DESKTOP: Margin$9, TABLET: Margin$9, MOBILE: Margin$9] | [XL: Margin$9, L: Margin$9, M: Margin$9, S: Margin$9, XS: Margin$9, XXS: Margin$9];
1549
1549
  /**
1550
1550
  * Отступ для XXS брейкпоинта.
1551
1551
  *
1552
1552
  * @default undefined */
1553
- marginXXS?: Margin$8;
1553
+ marginXXS?: Margin$9;
1554
1554
  /**
1555
1555
  * Отступ для XS брейкпоинта.
1556
1556
  *
1557
1557
  * @default undefined */
1558
- marginXS?: Margin$8;
1558
+ marginXS?: Margin$9;
1559
1559
  /**
1560
1560
  * Отступ для S брейкпоинта.
1561
1561
  *
1562
1562
  * @default undefined */
1563
- marginS?: Margin$8;
1563
+ marginS?: Margin$9;
1564
1564
  /**
1565
1565
  * Отступ для M брейкпоинта.
1566
1566
  *
1567
1567
  * @default undefined */
1568
- marginM?: Margin$8;
1568
+ marginM?: Margin$9;
1569
1569
  /**
1570
1570
  * Отступ для L брейкпоинта.
1571
1571
  *
1572
1572
  * @default undefined */
1573
- marginL?: Margin$8;
1573
+ marginL?: Margin$9;
1574
1574
  /**
1575
1575
  * Отступ для XL брейкпоинта.
1576
1576
  *
1577
1577
  * @default undefined */
1578
- marginXL?: Margin$8;
1578
+ marginXL?: Margin$9;
1579
1579
  /** @ignore */
1580
1580
  primary?: boolean;
1581
1581
  /** @ignore */
@@ -1666,9 +1666,9 @@ interface AlertProps extends BaseProps {
1666
1666
 
1667
1667
  declare const Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;
1668
1668
 
1669
- type Size$b = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
1670
- type Margin$7 = number | string;
1671
- interface ArrowProps extends ResponsiveSizeProps<Size$b, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'button'>, 'children'> {
1669
+ type Size$d = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
1670
+ type Margin$8 = number | string;
1671
+ interface ArrowProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'button'>, 'children'> {
1672
1672
  /**
1673
1673
  * Версия компонента: v3 ("brand") или v2 ("default").
1674
1674
  *
@@ -1750,43 +1750,43 @@ interface ArrowProps extends ResponsiveSizeProps<Size$b, SizeValue>, ResponsiveM
1750
1750
  *
1751
1751
  * @general
1752
1752
  * @default 'l' */
1753
- size?: Size$b | [DESKTOP: Size$b, TABLET: Size$b, MOBILE: Size$b] | [XL: Size$b, L: Size$b, M: Size$b, S: Size$b, XS: Size$b, XXS: Size$b];
1753
+ size?: Size$d | [DESKTOP: Size$d, TABLET: Size$d, MOBILE: Size$d] | [XL: Size$d, L: Size$d, M: Size$d, S: Size$d, XS: Size$d, XXS: Size$d];
1754
1754
  /**
1755
1755
  * Размер для XXS брейкпоинта.
1756
1756
  *
1757
1757
  * @default undefined */
1758
- sizeXXS?: Size$b;
1758
+ sizeXXS?: Size$d;
1759
1759
  /**
1760
1760
  * Размер для XS брейкпоинта.
1761
1761
  *
1762
1762
  * @default undefined */
1763
- sizeXS?: Size$b;
1763
+ sizeXS?: Size$d;
1764
1764
  /**
1765
1765
  * Размер для S брейкпоинта.
1766
1766
  *
1767
1767
  * @default undefined */
1768
- sizeS?: Size$b;
1768
+ sizeS?: Size$d;
1769
1769
  /**
1770
1770
  * Размер для M брейкпоинта.
1771
1771
  *
1772
1772
  * @default undefined */
1773
- sizeM?: Size$b;
1773
+ sizeM?: Size$d;
1774
1774
  /**
1775
1775
  * Размер для L брейкпоинта.
1776
1776
  *
1777
1777
  * @default undefined */
1778
- sizeL?: Size$b;
1778
+ sizeL?: Size$d;
1779
1779
  /**
1780
1780
  * Размер для XL брейкпоинта.
1781
1781
  *
1782
1782
  * @default undefined */
1783
- sizeXL?: Size$b;
1783
+ sizeXL?: Size$d;
1784
1784
  /**
1785
1785
  * Модификация размеров.
1786
1786
  *
1787
1787
  * @general
1788
1788
  * @default undefined */
1789
- sizes?: Partial<Record<Size$b, React.CSSProperties>>;
1789
+ sizes?: Partial<Record<Size$d, React.CSSProperties>>;
1790
1790
  /**
1791
1791
  * Внешние отступы.
1792
1792
  *
@@ -1794,37 +1794,37 @@ interface ArrowProps extends ResponsiveSizeProps<Size$b, SizeValue>, ResponsiveM
1794
1794
  *
1795
1795
  * @general
1796
1796
  * @default undefined */
1797
- margin?: Margin$7 | [DESKTOP: Margin$7, TABLET: Margin$7, MOBILE: Margin$7] | [XL: Margin$7, L: Margin$7, M: Margin$7, S: Margin$7, XS: Margin$7, XXS: Margin$7];
1797
+ margin?: Margin$8 | [DESKTOP: Margin$8, TABLET: Margin$8, MOBILE: Margin$8] | [XL: Margin$8, L: Margin$8, M: Margin$8, S: Margin$8, XS: Margin$8, XXS: Margin$8];
1798
1798
  /**
1799
1799
  * Отступ для XXS брейкпоинта.
1800
1800
  *
1801
1801
  * @default undefined */
1802
- marginXXS?: Margin$7;
1802
+ marginXXS?: Margin$8;
1803
1803
  /**
1804
1804
  * Отступ для XS брейкпоинта.
1805
1805
  *
1806
1806
  * @default undefined */
1807
- marginXS?: Margin$7;
1807
+ marginXS?: Margin$8;
1808
1808
  /**
1809
1809
  * Отступ для S брейкпоинта.
1810
1810
  *
1811
1811
  * @default undefined */
1812
- marginS?: Margin$7;
1812
+ marginS?: Margin$8;
1813
1813
  /**
1814
1814
  * Отступ для M брейкпоинта.
1815
1815
  *
1816
1816
  * @default undefined */
1817
- marginM?: Margin$7;
1817
+ marginM?: Margin$8;
1818
1818
  /**
1819
1819
  * Отступ для L брейкпоинта.
1820
1820
  *
1821
1821
  * @default undefined */
1822
- marginL?: Margin$7;
1822
+ marginL?: Margin$8;
1823
1823
  /**
1824
1824
  * Отступ для XL брейкпоинта.
1825
1825
  *
1826
1826
  * @default undefined */
1827
- marginXL?: Margin$7;
1827
+ marginXL?: Margin$8;
1828
1828
  /** @ignore */
1829
1829
  inverse?: boolean;
1830
1830
  /** @ignore @deprecated */
@@ -1942,85 +1942,116 @@ declare enum SizeInput {
1942
1942
  xs = 140
1943
1943
  }
1944
1944
 
1945
- type TextareaSize = 'l' | 'm' | 's';
1946
- type TextareaPalette = {
1947
- color: CSSColor;
1948
- colorDisabled: CSSColor;
1949
- placeholderColor: CSSColor;
1950
- placeholderColorDisabled: CSSColor;
1951
- backgroundColor: CSSColor;
1952
- backgroundColorHover: CSSColor;
1953
- backgroundColorDisabled: CSSColor;
1954
- borderColor: CSSColor;
1955
- borderColorDisabled: CSSColor;
1956
- };
1957
- interface TextareaProps extends ResponsiveSizeProps<TextareaSize>, ResponsiveMarginProps, ColorProperty, ColorProperty<'placeholderColor'>, ResponsiveNamedProperty<'width', 'auto' | keyof typeof SizeInput | number>, Omit<React.ComponentPropsWithRef<'textarea'>, 'children' | 'color' | 'cols' | 'defaultValue'> {
1945
+ type Size$c = 'l' | 'm' | 's' | 'xs';
1946
+ interface TextareaBaseProps extends ResponsiveSizeProps<Size$c>, ResponsiveMarginProps, ColorProperty, ColorProperty<'placeholderColor'>, ResponsiveNamedProperty<'width', 'auto' | keyof typeof SizeInput | number> {
1958
1947
  /**
1959
- * Автоматически адаптировать число строк под контент
1948
+ * Автоматически адаптировать число строк под контент.
1949
+ *
1950
+ * @general
1960
1951
  * @default false */
1961
1952
  autoRows?: boolean;
1962
1953
  /**
1963
- * Адаптировать цветовую схему для контрастного фона
1954
+ * Адаптировать цветовую схему для контрастного фона.
1955
+ *
1956
+ * @general
1964
1957
  * @default false */
1965
1958
  contrast?: boolean;
1966
1959
  /**
1967
- * Начальное значение контрола
1960
+ * Начальное значение контрола.
1961
+ *
1962
+ * @general
1968
1963
  * @default undefined */
1969
1964
  defaultValue?: string;
1970
1965
  /**
1971
- * Вариант цветовой схемы
1966
+ * Вариант цветовой схемы.
1967
+ *
1972
1968
  * @default false */
1973
1969
  error?: boolean;
1974
1970
  /**
1975
- * Отображать компонент на одной линии с другими
1971
+ * Отображать компонент на одной линии с другими.
1972
+ *
1976
1973
  * @default false */
1977
1974
  inline?: boolean;
1978
1975
  /**
1979
- * Текст лейбла
1976
+ * Текст лейбла.
1977
+ *
1978
+ * @general
1980
1979
  * @default undefined */
1981
1980
  label?: React.ReactNode;
1982
1981
  /**
1983
- * Положение текста лейбла
1984
- * @default "dynamic" */
1985
- labelPosition?: 'dynamic' | 'top';
1982
+ * Положение текста лейбла.
1983
+ *
1984
+ * @general
1985
+ * @default 'dynamic' */
1986
+ labelPosition?: 'dynamic' | 'top' | 'center';
1986
1987
  /**
1987
- * Максимальное число видимых строк контента
1988
+ * Максимальное число видимых строк контента.
1989
+ *
1990
+ * @general
1988
1991
  * @default 30 */
1989
1992
  maxRows?: number;
1990
1993
  /**
1991
- * Колбек, который будет вызван при изменении значения контрола
1994
+ * Колбек, который будет вызван при изменении значения контрола.
1995
+ *
1996
+ * @general
1992
1997
  * @default undefined */
1993
1998
  onChange?: React.ChangeEventHandler<HTMLTextAreaElement>;
1994
1999
  /**
1995
- * Кастомные цвета
1996
- * @default undefined */
1997
- palette?: Partial<Record<keyof TextareaPalette, Color>>;
2000
+ * Кастомные цвета.
2001
+ *
2002
+ * @general
2003
+ * @default {} */
2004
+ palette?: {
2005
+ color?: Color;
2006
+ colorDisabled?: Color;
2007
+ placeholderColor?: Color;
2008
+ placeholderColorDisabled?: Color;
2009
+ backgroundColor?: Color;
2010
+ backgroundColorHover?: Color;
2011
+ backgroundColorDisabled?: Color;
2012
+ borderColor?: Color;
2013
+ borderColorDisabled?: Color;
2014
+ };
1998
2015
  /**
1999
- * Версия компонента: v3 ("brand") или v2 ("default")
2000
- * @default "default" */
2001
- preset?: ThemePreset;
2016
+ * Версия компонента: v3 ("brand") или v2 ("default").
2017
+ *
2018
+ * @general
2019
+ * @default 'default' */
2020
+ preset?: 'default' | 'brand';
2002
2021
  /**
2003
- * Вариант цветовой схемы
2022
+ * Вариант цветовой схемы.
2023
+ *
2024
+ * @general
2004
2025
  * @default true */
2005
2026
  primary?: boolean;
2006
2027
  /**
2007
- * Число видимых строк контента
2028
+ * Число видимых строк контента.
2029
+ *
2030
+ * @general
2008
2031
  * @default 2 */
2009
2032
  rows?: number;
2010
2033
  /**
2011
- * Возможность изменения высоты и ширины контрола вручную
2034
+ * Возможность изменения высоты и ширины контрола вручную.
2035
+ *
2012
2036
  * @default undefined */
2013
2037
  resize?: 'both' | 'vertical' | 'horizontal';
2014
2038
  /**
2015
- * Вариант цветовой схемы
2039
+ * Вариант цветовой схемы.
2040
+ *
2041
+ * @general
2016
2042
  * @default false */
2017
2043
  secondary?: boolean;
2018
2044
  /**
2019
- * Вариант цветовой схемы
2045
+ * Вариант цветовой схемы.
2046
+ *
2020
2047
  * @default false */
2021
2048
  success?: boolean;
2022
2049
  /**
2023
- * Текущее значение контрола (использование включает контролируемый режим)
2050
+ * Текущее значение контрола.
2051
+ *
2052
+ * Использование пропа включает контролируемый режим.
2053
+ *
2054
+ * @general
2024
2055
  * @default undefined */
2025
2056
  value?: string;
2026
2057
  /** @ignore */
@@ -2030,16 +2061,13 @@ interface TextareaProps extends ResponsiveSizeProps<TextareaSize>, ResponsiveMar
2030
2061
  /** @ignore */
2031
2062
  rounded?: boolean;
2032
2063
  }
2064
+ type TextareaProps = TextareaBaseProps & Omit<React.ComponentPropsWithRef<'textarea'>, keyof TextareaBaseProps | 'children' | 'cols'>;
2033
2065
 
2034
2066
  /**
2035
2067
  *
2036
- * Компонент поддерживает все атрибуты \<textarea\> элемента.
2037
- *
2038
- * Поддерживаются пропсы определения размеров и внешних отступов в зависимости от ширины вьюпорта.
2039
- *
2040
- * Можно передать "ref", который будет ассоциирован с \<textarea\>.
2068
+ * Компонент для приема многострочного ввода.
2041
2069
  *
2042
- * Полный интерфейс можно посмотреть [тут](https://github.com/foxford/ui/blob/master/packages/ui/src/components/Textarea/types.ts).
2070
+ * Поддерживается "ref" и все нативные атрибуты \<textarea\> элемента.
2043
2071
  */
2044
2072
  declare const Textarea: React.ForwardRefExoticComponent<TextareaProps>;
2045
2073
 
@@ -2070,7 +2098,7 @@ type ArrowBadgePalette = {
2070
2098
  color: CSSColor;
2071
2099
  backgroundColor: CSSColor;
2072
2100
  };
2073
- interface ArrowBadgeProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps,
2101
+ interface ArrowBadgeProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps,
2074
2102
  /** @deprecated Use palette */
2075
2103
  ColorProperty<'color'>,
2076
2104
  /** @deprecated Use palette */
@@ -2112,9 +2140,9 @@ ColorProperty<'backgroundColor'>, Omit<React.ComponentPropsWithRef<'div'>, 'colo
2112
2140
  */
2113
2141
  declare const ArrowBadge: React.ForwardRefExoticComponent<ArrowBadgeProps>;
2114
2142
 
2115
- type Size$a = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
2116
- type Margin$6 = number | string;
2117
- interface TabProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps,
2143
+ type Size$b = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
2144
+ type Margin$7 = number | string;
2145
+ interface TabProps extends ResponsiveSizeProps<Size$b, SizeValue>, ResponsiveMarginProps,
2118
2146
  /** @deprecated Use palette */
2119
2147
  ColorProperty<'color'>,
2120
2148
  /** @deprecated Use palette */
@@ -2205,43 +2233,43 @@ ColorProperty<'borderColor'>, Omit<React.ComponentPropsWithRef<'button'>, 'color
2205
2233
  *
2206
2234
  * @general
2207
2235
  * @default 'm' */
2208
- size?: Size$a | [DESKTOP: Size$a, TABLET: Size$a, MOBILE: Size$a] | [XL: Size$a, L: Size$a, M: Size$a, S: Size$a, XS: Size$a, XXS: Size$a];
2236
+ size?: Size$b | [DESKTOP: Size$b, TABLET: Size$b, MOBILE: Size$b] | [XL: Size$b, L: Size$b, M: Size$b, S: Size$b, XS: Size$b, XXS: Size$b];
2209
2237
  /**
2210
2238
  * Размер для XXS брейкпоинта.
2211
2239
  *
2212
2240
  * @default undefined */
2213
- sizeXXS?: Size$a;
2241
+ sizeXXS?: Size$b;
2214
2242
  /**
2215
2243
  * Размер для XS брейкпоинта.
2216
2244
  *
2217
2245
  * @default undefined */
2218
- sizeXS?: Size$a;
2246
+ sizeXS?: Size$b;
2219
2247
  /**
2220
2248
  * Размер для S брейкпоинта.
2221
2249
  *
2222
2250
  * @default undefined */
2223
- sizeS?: Size$a;
2251
+ sizeS?: Size$b;
2224
2252
  /**
2225
2253
  * Размер для M брейкпоинта.
2226
2254
  *
2227
2255
  * @default undefined */
2228
- sizeM?: Size$a;
2256
+ sizeM?: Size$b;
2229
2257
  /**
2230
2258
  * Размер для L брейкпоинта.
2231
2259
  *
2232
2260
  * @default undefined */
2233
- sizeL?: Size$a;
2261
+ sizeL?: Size$b;
2234
2262
  /**
2235
2263
  * Размер для XL брейкпоинта.
2236
2264
  *
2237
2265
  * @default undefined */
2238
- sizeXL?: Size$a;
2266
+ sizeXL?: Size$b;
2239
2267
  /**
2240
2268
  * Модификация размеров.
2241
2269
  *
2242
2270
  * @general
2243
2271
  * @default undefined */
2244
- sizes?: Partial<Record<Size$a, React.CSSProperties>>;
2272
+ sizes?: Partial<Record<Size$b, React.CSSProperties>>;
2245
2273
  /**
2246
2274
  * Внешние отступы.
2247
2275
  *
@@ -2249,37 +2277,37 @@ ColorProperty<'borderColor'>, Omit<React.ComponentPropsWithRef<'button'>, 'color
2249
2277
  *
2250
2278
  * @general
2251
2279
  * @default undefined */
2252
- margin?: Margin$6 | [DESKTOP: Margin$6, TABLET: Margin$6, MOBILE: Margin$6] | [XL: Margin$6, L: Margin$6, M: Margin$6, S: Margin$6, XS: Margin$6, XXS: Margin$6];
2280
+ margin?: Margin$7 | [DESKTOP: Margin$7, TABLET: Margin$7, MOBILE: Margin$7] | [XL: Margin$7, L: Margin$7, M: Margin$7, S: Margin$7, XS: Margin$7, XXS: Margin$7];
2253
2281
  /**
2254
2282
  * Отступ для XXS брейкпоинта.
2255
2283
  *
2256
2284
  * @default undefined */
2257
- marginXXS?: Margin$6;
2285
+ marginXXS?: Margin$7;
2258
2286
  /**
2259
2287
  * Отступ для XS брейкпоинта.
2260
2288
  *
2261
2289
  * @default undefined */
2262
- marginXS?: Margin$6;
2290
+ marginXS?: Margin$7;
2263
2291
  /**
2264
2292
  * Отступ для S брейкпоинта.
2265
2293
  *
2266
2294
  * @default undefined */
2267
- marginS?: Margin$6;
2295
+ marginS?: Margin$7;
2268
2296
  /**
2269
2297
  * Отступ для M брейкпоинта.
2270
2298
  *
2271
2299
  * @default undefined */
2272
- marginM?: Margin$6;
2300
+ marginM?: Margin$7;
2273
2301
  /**
2274
2302
  * Отступ для L брейкпоинта.
2275
2303
  *
2276
2304
  * @default undefined */
2277
- marginL?: Margin$6;
2305
+ marginL?: Margin$7;
2278
2306
  /**
2279
2307
  * Отступ для XL брейкпоинта.
2280
2308
  *
2281
2309
  * @default undefined */
2282
- marginXL?: Margin$6;
2310
+ marginXL?: Margin$7;
2283
2311
  /** @ignore */
2284
2312
  compact?: boolean;
2285
2313
  /** @ignore */
@@ -2304,7 +2332,7 @@ type BadgePalette = {
2304
2332
  color: CSSColor;
2305
2333
  backgroundColor: CSSColor;
2306
2334
  };
2307
- interface BadgeProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps,
2335
+ interface BadgeProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps,
2308
2336
  /** @deprecated Use palette */
2309
2337
  ColorProperty,
2310
2338
  /** @deprecated Use children as function */
@@ -2357,9 +2385,9 @@ DisplayProperty, Omit<React.ComponentPropsWithRef<'div'>, 'color' | 'children'>
2357
2385
  */
2358
2386
  declare const Badge: React.ForwardRefExoticComponent<BadgeProps>;
2359
2387
 
2360
- type Size$9 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs';
2361
- type Margin$5 = number | string;
2362
- interface IconButtonBaseProps extends ResponsiveSizeProps<Size$9>, ResponsiveMarginProps {
2388
+ type Size$a = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs';
2389
+ type Margin$6 = number | string;
2390
+ interface IconButtonBaseProps extends ResponsiveSizeProps<Size$a>, ResponsiveMarginProps {
2363
2391
  /**
2364
2392
  * Кастомные цвета.
2365
2393
  *
@@ -2417,43 +2445,43 @@ interface IconButtonBaseProps extends ResponsiveSizeProps<Size$9>, ResponsiveMar
2417
2445
  *
2418
2446
  * @general
2419
2447
  * @default 'm' */
2420
- size?: Size$9 | [DESKTOP: Size$9, TABLET: Size$9, MOBILE: Size$9] | [XL: Size$9, L: Size$9, M: Size$9, S: Size$9, XS: Size$9, XXS: Size$9];
2448
+ size?: Size$a | [DESKTOP: Size$a, TABLET: Size$a, MOBILE: Size$a] | [XL: Size$a, L: Size$a, M: Size$a, S: Size$a, XS: Size$a, XXS: Size$a];
2421
2449
  /**
2422
2450
  * Размер для XXS брейкпоинта.
2423
2451
  *
2424
2452
  * @default undefined */
2425
- sizeXXS?: Size$9;
2453
+ sizeXXS?: Size$a;
2426
2454
  /**
2427
2455
  * Размер для XS брейкпоинта.
2428
2456
  *
2429
2457
  * @default undefined */
2430
- sizeXS?: Size$9;
2458
+ sizeXS?: Size$a;
2431
2459
  /**
2432
2460
  * Размер для S брейкпоинта.
2433
2461
  *
2434
2462
  * @default undefined */
2435
- sizeS?: Size$9;
2463
+ sizeS?: Size$a;
2436
2464
  /**
2437
2465
  * Размер для M брейкпоинта.
2438
2466
  *
2439
2467
  * @default undefined */
2440
- sizeM?: Size$9;
2468
+ sizeM?: Size$a;
2441
2469
  /**
2442
2470
  * Размер для L брейкпоинта.
2443
2471
  *
2444
2472
  * @default undefined */
2445
- sizeL?: Size$9;
2473
+ sizeL?: Size$a;
2446
2474
  /**
2447
2475
  * Размер для XL брейкпоинта.
2448
2476
  *
2449
2477
  * @default undefined */
2450
- sizeXL?: Size$9;
2478
+ sizeXL?: Size$a;
2451
2479
  /**
2452
2480
  * Модификация размеров.
2453
2481
  *
2454
2482
  * @general
2455
2483
  * @default undefined */
2456
- sizes?: Partial<Record<Size$9, React.CSSProperties>>;
2484
+ sizes?: Partial<Record<Size$a, React.CSSProperties>>;
2457
2485
  /**
2458
2486
  * Внешние отступы.
2459
2487
  *
@@ -2461,37 +2489,37 @@ interface IconButtonBaseProps extends ResponsiveSizeProps<Size$9>, ResponsiveMar
2461
2489
  *
2462
2490
  * @general
2463
2491
  * @default undefined */
2464
- margin?: Margin$5 | [DESKTOP: Margin$5, TABLET: Margin$5, MOBILE: Margin$5] | [XL: Margin$5, L: Margin$5, M: Margin$5, S: Margin$5, XS: Margin$5, XXS: Margin$5];
2492
+ margin?: Margin$6 | [DESKTOP: Margin$6, TABLET: Margin$6, MOBILE: Margin$6] | [XL: Margin$6, L: Margin$6, M: Margin$6, S: Margin$6, XS: Margin$6, XXS: Margin$6];
2465
2493
  /**
2466
2494
  * Отступ для XXS брейкпоинта.
2467
2495
  *
2468
2496
  * @default undefined */
2469
- marginXXS?: Margin$5;
2497
+ marginXXS?: Margin$6;
2470
2498
  /**
2471
2499
  * Отступ для XS брейкпоинта.
2472
2500
  *
2473
2501
  * @default undefined */
2474
- marginXS?: Margin$5;
2502
+ marginXS?: Margin$6;
2475
2503
  /**
2476
2504
  * Отступ для S брейкпоинта.
2477
2505
  *
2478
2506
  * @default undefined */
2479
- marginS?: Margin$5;
2507
+ marginS?: Margin$6;
2480
2508
  /**
2481
2509
  * Отступ для M брейкпоинта.
2482
2510
  *
2483
2511
  * @default undefined */
2484
- marginM?: Margin$5;
2512
+ marginM?: Margin$6;
2485
2513
  /**
2486
2514
  * Отступ для L брейкпоинта.
2487
2515
  *
2488
2516
  * @default undefined */
2489
- marginL?: Margin$5;
2517
+ marginL?: Margin$6;
2490
2518
  /**
2491
2519
  * Отступ для XL брейкпоинта.
2492
2520
  *
2493
2521
  * @default undefined */
2494
- marginXL?: Margin$5;
2522
+ marginXL?: Margin$6;
2495
2523
  }
2496
2524
  type IconButtonProps = IconButtonBaseProps & Omit<React.ComponentPropsWithRef<'button'>, keyof IconButtonBaseProps>;
2497
2525
 
@@ -2734,14 +2762,14 @@ declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps> & {
2734
2762
  Component: typeof TooltipComponent;
2735
2763
  };
2736
2764
 
2737
- type Size$8 = 'xl' | 'l' | 'm' | 's' | 'xs';
2765
+ type Size$9 = 'xl' | 'l' | 'm' | 's' | 'xs';
2738
2766
  type Layout$4 = 'vertical' | 'horizontal';
2739
2767
  type PopoverComponentPalette = {
2740
2768
  color: CSSColor;
2741
2769
  backgroundColor: CSSColor;
2742
2770
  shadowColor: CSSColor;
2743
2771
  };
2744
- interface PopoverComponentBaseProps extends ResponsiveSizeProps<Size$8>, ResponsiveLayoutProps<Layout$4> {
2772
+ interface PopoverComponentBaseProps extends ResponsiveSizeProps<Size$9>, ResponsiveLayoutProps<Layout$4> {
2745
2773
  /**
2746
2774
  * Кастомные цвета.
2747
2775
  *
@@ -2852,9 +2880,9 @@ type PopoverComponentProps = PopoverComponentBaseProps & Omit<React.ComponentPro
2852
2880
 
2853
2881
  declare const PopoverComponent: React.ForwardRefExoticComponent<PopoverComponentProps>;
2854
2882
 
2855
- type Size$7 = 's' | 'xl' | 'l' | 'm' | 'xs';
2883
+ type Size$8 = 's' | 'xl' | 'l' | 'm' | 'xs';
2856
2884
  type Layout$3 = 'vertical' | 'horizontal';
2857
- interface PopoverBaseProps extends ResponsiveSizeProps<Size$7>, ResponsiveLayoutProps<Layout$3> {
2885
+ interface PopoverBaseProps extends ResponsiveSizeProps<Size$8>, ResponsiveLayoutProps<Layout$3> {
2858
2886
  /**
2859
2887
  * Кастомные цвета.
2860
2888
  *
@@ -3070,43 +3098,43 @@ interface PopoverBaseProps extends ResponsiveSizeProps<Size$7>, ResponsiveLayout
3070
3098
  *
3071
3099
  * @general
3072
3100
  * @default 's' */
3073
- size?: Size$7 | [DESKTOP: Size$7, TABLET: Size$7, MOBILE: Size$7] | [XL: Size$7, L: Size$7, M: Size$7, S: Size$7, XS: Size$7, XXS: Size$7];
3101
+ size?: Size$8 | [DESKTOP: Size$8, TABLET: Size$8, MOBILE: Size$8] | [XL: Size$8, L: Size$8, M: Size$8, S: Size$8, XS: Size$8, XXS: Size$8];
3074
3102
  /**
3075
3103
  * Размер для XXS брейкпоинта.
3076
3104
  *
3077
3105
  * @default undefined */
3078
- sizeXXS?: Size$7;
3106
+ sizeXXS?: Size$8;
3079
3107
  /**
3080
3108
  * Размер для XS брейкпоинта.
3081
3109
  *
3082
3110
  * @default undefined */
3083
- sizeXS?: Size$7;
3111
+ sizeXS?: Size$8;
3084
3112
  /**
3085
3113
  * Размер для S брейкпоинта.
3086
3114
  *
3087
3115
  * @default undefined */
3088
- sizeS?: Size$7;
3116
+ sizeS?: Size$8;
3089
3117
  /**
3090
3118
  * Размер для M брейкпоинта.
3091
3119
  *
3092
3120
  * @default undefined */
3093
- sizeM?: Size$7;
3121
+ sizeM?: Size$8;
3094
3122
  /**
3095
3123
  * Размер для L брейкпоинта.
3096
3124
  *
3097
3125
  * @default undefined */
3098
- sizeL?: Size$7;
3126
+ sizeL?: Size$8;
3099
3127
  /**
3100
3128
  * Размер для XL брейкпоинта.
3101
3129
  *
3102
3130
  * @default undefined */
3103
- sizeXL?: Size$7;
3131
+ sizeXL?: Size$8;
3104
3132
  /**
3105
3133
  * Модификация размеров.
3106
3134
  *
3107
3135
  * @general
3108
3136
  * @default undefined */
3109
- sizes?: Partial<Record<Size$7, React.CSSProperties>>;
3137
+ sizes?: Partial<Record<Size$8, React.CSSProperties>>;
3110
3138
  /**
3111
3139
  * Вариант шаблона лейаута.
3112
3140
  *
@@ -3281,7 +3309,7 @@ type ListItemPalette = {
3281
3309
  backgroundColorHover: CSSColor;
3282
3310
  mediaPlaceholderColor: CSSColor;
3283
3311
  };
3284
- interface ListItemProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps, Omit<React.HTMLAttributes<HTMLElement>, 'children' | 'title'>, Omit<React.ButtonHTMLAttributes<HTMLElement>, 'children' | 'title' | 'type'>, Omit<React.AnchorHTMLAttributes<HTMLElement>, 'children' | 'title' | 'type' | 'media'> {
3312
+ interface ListItemProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps, Omit<React.HTMLAttributes<HTMLElement>, 'children' | 'title'>, Omit<React.ButtonHTMLAttributes<HTMLElement>, 'children' | 'title' | 'type'>, Omit<React.AnchorHTMLAttributes<HTMLElement>, 'children' | 'title' | 'type' | 'media'> {
3285
3313
  /** Root node type */
3286
3314
  as?: React.ElementType;
3287
3315
  /** Main text content or render function */
@@ -3359,7 +3387,7 @@ type IndicatorPalette = {
3359
3387
  backgroundColor: CSSColor;
3360
3388
  shadowColor: CSSColor;
3361
3389
  };
3362
- interface IndicatorProps extends ResponsiveSizeProps<Size$d, SizeValue>, ResponsiveMarginProps, React.ComponentPropsWithRef<'span'> {
3390
+ interface IndicatorProps extends ResponsiveSizeProps<Size$f, SizeValue>, ResponsiveMarginProps, React.ComponentPropsWithRef<'span'> {
3363
3391
  /** Custom colors */
3364
3392
  palette?: Partial<Record<keyof IndicatorPalette, Color>>;
3365
3393
  /** Text content */
@@ -3404,7 +3432,7 @@ type AvatarPalette = {
3404
3432
  shadowColor: CSSColor;
3405
3433
  };
3406
3434
  type AvatarSize = SizeValue | 'sm';
3407
- interface AvatarProps extends ResponsiveSizeProps<Size$d, AvatarSize>, ResponsiveMarginProps,
3435
+ interface AvatarProps extends ResponsiveSizeProps<Size$f, AvatarSize>, ResponsiveMarginProps,
3408
3436
  /** @deprecated Use palette */
3409
3437
  ColorProperty<'color'>, Omit<React.ComponentPropsWithRef<'span'>, 'color'> {
3410
3438
  /** UI: brand (v3), or default (v2) */
@@ -3715,14 +3743,14 @@ declare const Menu: React.ForwardRefExoticComponent<MenuProps> & {
3715
3743
  Divider: typeof MenuDivider;
3716
3744
  };
3717
3745
 
3718
- type Size$6 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs';
3746
+ type Size$7 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs';
3719
3747
  type Layout$2 = 'vertical' | 'horizontal' | 'vertical-reverse' | 'horizontal-reverse';
3720
3748
  type DialogComponentPalette = {
3721
3749
  color: CSSColor;
3722
3750
  backgroundColor: CSSColor;
3723
3751
  shadowColor: CSSColor;
3724
3752
  };
3725
- interface DialogComponentBaseProps extends ResponsiveSizeProps<Size$6>, ResponsiveLayoutProps<Layout$2> {
3753
+ interface DialogComponentBaseProps extends ResponsiveSizeProps<Size$7>, ResponsiveLayoutProps<Layout$2> {
3726
3754
  /**
3727
3755
  * Кнопка закрытия.
3728
3756
  *
@@ -3876,10 +3904,10 @@ type DialogComponentProps = DialogComponentBaseProps & Omit<React.ComponentProps
3876
3904
 
3877
3905
  declare const DialogComponent: React.ForwardRefExoticComponent<DialogComponentProps>;
3878
3906
 
3879
- type Size$5 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs';
3907
+ type Size$6 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs';
3880
3908
  type Layout$1 = 'vertical' | 'horizontal' | 'vertical-reverse' | 'horizontal-reverse';
3881
3909
  type Position = 'center' | 'top-center' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'bottom-center' | 'left' | 'right';
3882
- interface DialogBaseProps extends ResponsiveSizeProps<Size$5>, ResponsiveLayoutProps<Layout$1>, ResponsivePositionProps<Position> {
3910
+ interface DialogBaseProps extends ResponsiveSizeProps<Size$6>, ResponsiveLayoutProps<Layout$1>, ResponsivePositionProps<Position> {
3883
3911
  /**
3884
3912
  * Открыто диалоговое окно.
3885
3913
  *
@@ -4161,43 +4189,43 @@ interface DialogBaseProps extends ResponsiveSizeProps<Size$5>, ResponsiveLayoutP
4161
4189
  *
4162
4190
  * @general
4163
4191
  * @default 's' */
4164
- size?: Size$5 | [DESKTOP: Size$5, TABLET: Size$5, MOBILE: Size$5] | [XL: Size$5, L: Size$5, M: Size$5, S: Size$5, XS: Size$5, XXS: Size$5];
4192
+ size?: Size$6 | [DESKTOP: Size$6, TABLET: Size$6, MOBILE: Size$6] | [XL: Size$6, L: Size$6, M: Size$6, S: Size$6, XS: Size$6, XXS: Size$6];
4165
4193
  /**
4166
4194
  * Размер для XXS брейкпоинта.
4167
4195
  *
4168
4196
  * @default undefined */
4169
- sizeXXS?: Size$5;
4197
+ sizeXXS?: Size$6;
4170
4198
  /**
4171
4199
  * Размер для XS брейкпоинта.
4172
4200
  *
4173
4201
  * @default undefined */
4174
- sizeXS?: Size$5;
4202
+ sizeXS?: Size$6;
4175
4203
  /**
4176
4204
  * Размер для S брейкпоинта.
4177
4205
  *
4178
4206
  * @default undefined */
4179
- sizeS?: Size$5;
4207
+ sizeS?: Size$6;
4180
4208
  /**
4181
4209
  * Размер для M брейкпоинта.
4182
4210
  *
4183
4211
  * @default undefined */
4184
- sizeM?: Size$5;
4212
+ sizeM?: Size$6;
4185
4213
  /**
4186
4214
  * Размер для L брейкпоинта.
4187
4215
  *
4188
4216
  * @default undefined */
4189
- sizeL?: Size$5;
4217
+ sizeL?: Size$6;
4190
4218
  /**
4191
4219
  * Размер для XL брейкпоинта.
4192
4220
  *
4193
4221
  * @default undefined */
4194
- sizeXL?: Size$5;
4222
+ sizeXL?: Size$6;
4195
4223
  /**
4196
4224
  * Модификация размеров.
4197
4225
  *
4198
4226
  * @general
4199
4227
  * @default undefined */
4200
- sizes?: Partial<Record<Size$5, React.CSSProperties>>;
4228
+ sizes?: Partial<Record<Size$6, React.CSSProperties>>;
4201
4229
  /**
4202
4230
  * Вариант шаблона лейаута.
4203
4231
  *
@@ -4348,9 +4376,9 @@ interface NotificationProps extends ResponsiveSizeProps<NotificationSize>, Respo
4348
4376
  */
4349
4377
  declare const Notification: React.ForwardRefExoticComponent<NotificationProps>;
4350
4378
 
4351
- type Size$4 = 'l' | 'm' | 's' | 'xs';
4352
- type Margin$4 = number | string;
4353
- interface AccordionItemBaseProps extends ResponsiveSizeProps<Size$4>, ResponsiveMarginProps {
4379
+ type Size$5 = 'l' | 'm' | 's' | 'xs';
4380
+ type Margin$5 = number | string;
4381
+ interface AccordionItemBaseProps extends ResponsiveSizeProps<Size$5>, ResponsiveMarginProps {
4354
4382
  /**
4355
4383
  * Кастомный блок хедера.
4356
4384
  *
@@ -4505,43 +4533,43 @@ interface AccordionItemBaseProps extends ResponsiveSizeProps<Size$4>, Responsive
4505
4533
  *
4506
4534
  * @general
4507
4535
  * @default 'm' */
4508
- size?: Size$4 | [DESKTOP: Size$4, TABLET: Size$4, MOBILE: Size$4] | [XL: Size$4, L: Size$4, M: Size$4, S: Size$4, XS: Size$4, XXS: Size$4];
4536
+ size?: Size$5 | [DESKTOP: Size$5, TABLET: Size$5, MOBILE: Size$5] | [XL: Size$5, L: Size$5, M: Size$5, S: Size$5, XS: Size$5, XXS: Size$5];
4509
4537
  /**
4510
4538
  * Размер для XXS брейкпоинта.
4511
4539
  *
4512
4540
  * @default undefined */
4513
- sizeXXS?: Size$4;
4541
+ sizeXXS?: Size$5;
4514
4542
  /**
4515
4543
  * Размер для XS брейкпоинта.
4516
4544
  *
4517
4545
  * @default undefined */
4518
- sizeXS?: Size$4;
4546
+ sizeXS?: Size$5;
4519
4547
  /**
4520
4548
  * Размер для S брейкпоинта.
4521
4549
  *
4522
4550
  * @default undefined */
4523
- sizeS?: Size$4;
4551
+ sizeS?: Size$5;
4524
4552
  /**
4525
4553
  * Размер для M брейкпоинта.
4526
4554
  *
4527
4555
  * @default undefined */
4528
- sizeM?: Size$4;
4556
+ sizeM?: Size$5;
4529
4557
  /**
4530
4558
  * Размер для L брейкпоинта.
4531
4559
  *
4532
4560
  * @default undefined */
4533
- sizeL?: Size$4;
4561
+ sizeL?: Size$5;
4534
4562
  /**
4535
4563
  * Размер для XL брейкпоинта.
4536
4564
  *
4537
4565
  * @default undefined */
4538
- sizeXL?: Size$4;
4566
+ sizeXL?: Size$5;
4539
4567
  /**
4540
4568
  * Модификация размеров.
4541
4569
  *
4542
4570
  * @general
4543
4571
  * @default undefined */
4544
- sizes?: Partial<Record<Size$4, React.CSSProperties>>;
4572
+ sizes?: Partial<Record<Size$5, React.CSSProperties>>;
4545
4573
  /**
4546
4574
  * Внешние отступы.
4547
4575
  *
@@ -4549,37 +4577,37 @@ interface AccordionItemBaseProps extends ResponsiveSizeProps<Size$4>, Responsive
4549
4577
  *
4550
4578
  * @general
4551
4579
  * @default undefined */
4552
- margin?: Margin$4 | [DESKTOP: Margin$4, TABLET: Margin$4, MOBILE: Margin$4] | [XL: Margin$4, L: Margin$4, M: Margin$4, S: Margin$4, XS: Margin$4, XXS: Margin$4];
4580
+ margin?: Margin$5 | [DESKTOP: Margin$5, TABLET: Margin$5, MOBILE: Margin$5] | [XL: Margin$5, L: Margin$5, M: Margin$5, S: Margin$5, XS: Margin$5, XXS: Margin$5];
4553
4581
  /**
4554
4582
  * Отступ для XXS брейкпоинта.
4555
4583
  *
4556
4584
  * @default undefined */
4557
- marginXXS?: Margin$4;
4585
+ marginXXS?: Margin$5;
4558
4586
  /**
4559
4587
  * Отступ для XS брейкпоинта.
4560
4588
  *
4561
4589
  * @default undefined */
4562
- marginXS?: Margin$4;
4590
+ marginXS?: Margin$5;
4563
4591
  /**
4564
4592
  * Отступ для S брейкпоинта.
4565
4593
  *
4566
4594
  * @default undefined */
4567
- marginS?: Margin$4;
4595
+ marginS?: Margin$5;
4568
4596
  /**
4569
4597
  * Отступ для M брейкпоинта.
4570
4598
  *
4571
4599
  * @default undefined */
4572
- marginM?: Margin$4;
4600
+ marginM?: Margin$5;
4573
4601
  /**
4574
4602
  * Отступ для L брейкпоинта.
4575
4603
  *
4576
4604
  * @default undefined */
4577
- marginL?: Margin$4;
4605
+ marginL?: Margin$5;
4578
4606
  /**
4579
4607
  * Отступ для XL брейкпоинта.
4580
4608
  *
4581
4609
  * @default undefined */
4582
- marginXL?: Margin$4;
4610
+ marginXL?: Margin$5;
4583
4611
  }
4584
4612
  type AccordionItemProps = AccordionItemBaseProps & Omit<React.ComponentPropsWithRef<'section'>, keyof AccordionItemBaseProps>;
4585
4613
 
@@ -4607,9 +4635,9 @@ type DividerProps = DividerBaseProps & Omit<React.ComponentPropsWithRef<'div'>,
4607
4635
  */
4608
4636
  declare const Divider: React.ForwardRefExoticComponent<DividerProps>;
4609
4637
 
4610
- type Size$3 = 'l' | 'm' | 's' | 'xs';
4611
- type Margin$3 = number | string;
4612
- interface AccordionBaseProps extends ResponsiveSizeProps<Size$3>, ResponsiveMarginProps {
4638
+ type Size$4 = 'l' | 'm' | 's' | 'xs';
4639
+ type Margin$4 = number | string;
4640
+ interface AccordionBaseProps extends ResponsiveSizeProps<Size$4>, ResponsiveMarginProps {
4613
4641
  /**
4614
4642
  * Одновременно раскрыты могут быть несколько динамических панелей.
4615
4643
  *
@@ -4711,43 +4739,43 @@ interface AccordionBaseProps extends ResponsiveSizeProps<Size$3>, ResponsiveMarg
4711
4739
  *
4712
4740
  * @general
4713
4741
  * @default 'm' */
4714
- size?: Size$3 | [DESKTOP: Size$3, TABLET: Size$3, MOBILE: Size$3] | [XL: Size$3, L: Size$3, M: Size$3, S: Size$3, XS: Size$3, XXS: Size$3];
4742
+ size?: Size$4 | [DESKTOP: Size$4, TABLET: Size$4, MOBILE: Size$4] | [XL: Size$4, L: Size$4, M: Size$4, S: Size$4, XS: Size$4, XXS: Size$4];
4715
4743
  /**
4716
4744
  * Размер для XXS брейкпоинта.
4717
4745
  *
4718
4746
  * @default undefined */
4719
- sizeXXS?: Size$3;
4747
+ sizeXXS?: Size$4;
4720
4748
  /**
4721
4749
  * Размер для XS брейкпоинта.
4722
4750
  *
4723
4751
  * @default undefined */
4724
- sizeXS?: Size$3;
4752
+ sizeXS?: Size$4;
4725
4753
  /**
4726
4754
  * Размер для S брейкпоинта.
4727
4755
  *
4728
4756
  * @default undefined */
4729
- sizeS?: Size$3;
4757
+ sizeS?: Size$4;
4730
4758
  /**
4731
4759
  * Размер для M брейкпоинта.
4732
4760
  *
4733
4761
  * @default undefined */
4734
- sizeM?: Size$3;
4762
+ sizeM?: Size$4;
4735
4763
  /**
4736
4764
  * Размер для L брейкпоинта.
4737
4765
  *
4738
4766
  * @default undefined */
4739
- sizeL?: Size$3;
4767
+ sizeL?: Size$4;
4740
4768
  /**
4741
4769
  * Размер для XL брейкпоинта.
4742
4770
  *
4743
4771
  * @default undefined */
4744
- sizeXL?: Size$3;
4772
+ sizeXL?: Size$4;
4745
4773
  /**
4746
4774
  * Модификация размеров.
4747
4775
  *
4748
4776
  * @general
4749
4777
  * @default undefined */
4750
- sizes?: Partial<Record<Size$3, React.CSSProperties>>;
4778
+ sizes?: Partial<Record<Size$4, React.CSSProperties>>;
4751
4779
  /**
4752
4780
  * Внешние отступы.
4753
4781
  *
@@ -4755,37 +4783,37 @@ interface AccordionBaseProps extends ResponsiveSizeProps<Size$3>, ResponsiveMarg
4755
4783
  *
4756
4784
  * @general
4757
4785
  * @default undefined */
4758
- margin?: Margin$3 | [DESKTOP: Margin$3, TABLET: Margin$3, MOBILE: Margin$3] | [XL: Margin$3, L: Margin$3, M: Margin$3, S: Margin$3, XS: Margin$3, XXS: Margin$3];
4786
+ margin?: Margin$4 | [DESKTOP: Margin$4, TABLET: Margin$4, MOBILE: Margin$4] | [XL: Margin$4, L: Margin$4, M: Margin$4, S: Margin$4, XS: Margin$4, XXS: Margin$4];
4759
4787
  /**
4760
4788
  * Отступ для XXS брейкпоинта.
4761
4789
  *
4762
4790
  * @default undefined */
4763
- marginXXS?: Margin$3;
4791
+ marginXXS?: Margin$4;
4764
4792
  /**
4765
4793
  * Отступ для XS брейкпоинта.
4766
4794
  *
4767
4795
  * @default undefined */
4768
- marginXS?: Margin$3;
4796
+ marginXS?: Margin$4;
4769
4797
  /**
4770
4798
  * Отступ для S брейкпоинта.
4771
4799
  *
4772
4800
  * @default undefined */
4773
- marginS?: Margin$3;
4801
+ marginS?: Margin$4;
4774
4802
  /**
4775
4803
  * Отступ для M брейкпоинта.
4776
4804
  *
4777
4805
  * @default undefined */
4778
- marginM?: Margin$3;
4806
+ marginM?: Margin$4;
4779
4807
  /**
4780
4808
  * Отступ для L брейкпоинта.
4781
4809
  *
4782
4810
  * @default undefined */
4783
- marginL?: Margin$3;
4811
+ marginL?: Margin$4;
4784
4812
  /**
4785
4813
  * Отступ для XL брейкпоинта.
4786
4814
  *
4787
4815
  * @default undefined */
4788
- marginXL?: Margin$3;
4816
+ marginXL?: Margin$4;
4789
4817
  }
4790
4818
  type AccordionProps = AccordionBaseProps & Omit<React.ComponentPropsWithRef<'div'>, keyof AccordionBaseProps>;
4791
4819
 
@@ -4854,9 +4882,9 @@ interface SwitchProps extends ResponsiveSizeProps<SwitchSize>, Omit<React.Compon
4854
4882
  */
4855
4883
  declare const Switch: React.ForwardRefExoticComponent<SwitchProps>;
4856
4884
 
4857
- type Size$2 = 'l' | 'm' | 's';
4858
- type Margin$2 = number | string;
4859
- interface TabListTabBaseProps extends ResponsiveSizeProps<Size$2>, ResponsiveMarginProps {
4885
+ type Size$3 = 'l' | 'm' | 's';
4886
+ type Margin$3 = number | string;
4887
+ interface TabListTabBaseProps extends ResponsiveSizeProps<Size$3>, ResponsiveMarginProps {
4860
4888
  /**
4861
4889
  * Идентификатор.
4862
4890
  *
@@ -4951,43 +4979,43 @@ interface TabListTabBaseProps extends ResponsiveSizeProps<Size$2>, ResponsiveMar
4951
4979
  *
4952
4980
  * @general
4953
4981
  * @default 's' */
4954
- size?: Size$2 | [DESKTOP: Size$2, TABLET: Size$2, MOBILE: Size$2] | [XL: Size$2, L: Size$2, M: Size$2, S: Size$2, XS: Size$2, XXS: Size$2];
4982
+ size?: Size$3 | [DESKTOP: Size$3, TABLET: Size$3, MOBILE: Size$3] | [XL: Size$3, L: Size$3, M: Size$3, S: Size$3, XS: Size$3, XXS: Size$3];
4955
4983
  /**
4956
4984
  * Размер для XXS брейкпоинта.
4957
4985
  *
4958
4986
  * @default undefined */
4959
- sizeXXS?: Size$2;
4987
+ sizeXXS?: Size$3;
4960
4988
  /**
4961
4989
  * Размер для XS брейкпоинта.
4962
4990
  *
4963
4991
  * @default undefined */
4964
- sizeXS?: Size$2;
4992
+ sizeXS?: Size$3;
4965
4993
  /**
4966
4994
  * Размер для S брейкпоинта.
4967
4995
  *
4968
4996
  * @default undefined */
4969
- sizeS?: Size$2;
4997
+ sizeS?: Size$3;
4970
4998
  /**
4971
4999
  * Размер для M брейкпоинта.
4972
5000
  *
4973
5001
  * @default undefined */
4974
- sizeM?: Size$2;
5002
+ sizeM?: Size$3;
4975
5003
  /**
4976
5004
  * Размер для L брейкпоинта.
4977
5005
  *
4978
5006
  * @default undefined */
4979
- sizeL?: Size$2;
5007
+ sizeL?: Size$3;
4980
5008
  /**
4981
5009
  * Размер для XL брейкпоинта.
4982
5010
  *
4983
5011
  * @default undefined */
4984
- sizeXL?: Size$2;
5012
+ sizeXL?: Size$3;
4985
5013
  /**
4986
5014
  * Модификация размеров.
4987
5015
  *
4988
5016
  * @general
4989
5017
  * @default undefined */
4990
- sizes?: Partial<Record<Size$2, React.CSSProperties>>;
5018
+ sizes?: Partial<Record<Size$3, React.CSSProperties>>;
4991
5019
  /**
4992
5020
  * Внешние отступы.
4993
5021
  *
@@ -4995,37 +5023,37 @@ interface TabListTabBaseProps extends ResponsiveSizeProps<Size$2>, ResponsiveMar
4995
5023
  *
4996
5024
  * @general
4997
5025
  * @default undefined */
4998
- margin?: Margin$2 | [DESKTOP: Margin$2, TABLET: Margin$2, MOBILE: Margin$2] | [XL: Margin$2, L: Margin$2, M: Margin$2, S: Margin$2, XS: Margin$2, XXS: Margin$2];
5026
+ margin?: Margin$3 | [DESKTOP: Margin$3, TABLET: Margin$3, MOBILE: Margin$3] | [XL: Margin$3, L: Margin$3, M: Margin$3, S: Margin$3, XS: Margin$3, XXS: Margin$3];
4999
5027
  /**
5000
5028
  * Отступ для XXS брейкпоинта.
5001
5029
  *
5002
5030
  * @default undefined */
5003
- marginXXS?: Margin$2;
5031
+ marginXXS?: Margin$3;
5004
5032
  /**
5005
5033
  * Отступ для XS брейкпоинта.
5006
5034
  *
5007
5035
  * @default undefined */
5008
- marginXS?: Margin$2;
5036
+ marginXS?: Margin$3;
5009
5037
  /**
5010
5038
  * Отступ для S брейкпоинта.
5011
5039
  *
5012
5040
  * @default undefined */
5013
- marginS?: Margin$2;
5041
+ marginS?: Margin$3;
5014
5042
  /**
5015
5043
  * Отступ для M брейкпоинта.
5016
5044
  *
5017
5045
  * @default undefined */
5018
- marginM?: Margin$2;
5046
+ marginM?: Margin$3;
5019
5047
  /**
5020
5048
  * Отступ для L брейкпоинта.
5021
5049
  *
5022
5050
  * @default undefined */
5023
- marginL?: Margin$2;
5051
+ marginL?: Margin$3;
5024
5052
  /**
5025
5053
  * Отступ для XL брейкпоинта.
5026
5054
  *
5027
5055
  * @default undefined */
5028
- marginXL?: Margin$2;
5056
+ marginXL?: Margin$3;
5029
5057
  }
5030
5058
  type TabListTabProps = TabListTabBaseProps & Omit<React.ComponentPropsWithRef<'button'>, keyof TabListTabBaseProps>;
5031
5059
 
@@ -5041,11 +5069,11 @@ type TabListTabProps = TabListTabBaseProps & Omit<React.ComponentPropsWithRef<'b
5041
5069
  */
5042
5070
  declare const TabListTab: React.ForwardRefExoticComponent<TabListTabProps>;
5043
5071
 
5044
- type Size$1 = 'l' | 'm' | 's';
5072
+ type Size$2 = 'l' | 'm' | 's';
5045
5073
  type Variant = 'underlined' | 'filled' | 'clear';
5046
5074
  type Layout = 'vertical' | 'horizontal';
5047
- type Margin$1 = number | string;
5048
- interface TabListBaseProps extends ResponsiveSizeProps<Size$1>, ResponsiveLayoutProps<Layout>, ResponsiveMarginProps {
5075
+ type Margin$2 = number | string;
5076
+ interface TabListBaseProps extends ResponsiveSizeProps<Size$2>, ResponsiveLayoutProps<Layout>, ResponsiveMarginProps {
5049
5077
  /**
5050
5078
  * Идентификатор активного таба в начальном состоянии.
5051
5079
  *
@@ -5186,43 +5214,43 @@ interface TabListBaseProps extends ResponsiveSizeProps<Size$1>, ResponsiveLayout
5186
5214
  *
5187
5215
  * @general
5188
5216
  * @default 's' */
5189
- size?: Size$1 | [DESKTOP: Size$1, TABLET: Size$1, MOBILE: Size$1] | [XL: Size$1, L: Size$1, M: Size$1, S: Size$1, XS: Size$1, XXS: Size$1];
5217
+ size?: Size$2 | [DESKTOP: Size$2, TABLET: Size$2, MOBILE: Size$2] | [XL: Size$2, L: Size$2, M: Size$2, S: Size$2, XS: Size$2, XXS: Size$2];
5190
5218
  /**
5191
5219
  * Размер для XXS брейкпоинта.
5192
5220
  *
5193
5221
  * @default undefined */
5194
- sizeXXS?: Size$1;
5222
+ sizeXXS?: Size$2;
5195
5223
  /**
5196
5224
  * Размер для XS брейкпоинта.
5197
5225
  *
5198
5226
  * @default undefined */
5199
- sizeXS?: Size$1;
5227
+ sizeXS?: Size$2;
5200
5228
  /**
5201
5229
  * Размер для S брейкпоинта.
5202
5230
  *
5203
5231
  * @default undefined */
5204
- sizeS?: Size$1;
5232
+ sizeS?: Size$2;
5205
5233
  /**
5206
5234
  * Размер для M брейкпоинта.
5207
5235
  *
5208
5236
  * @default undefined */
5209
- sizeM?: Size$1;
5237
+ sizeM?: Size$2;
5210
5238
  /**
5211
5239
  * Размер для L брейкпоинта.
5212
5240
  *
5213
5241
  * @default undefined */
5214
- sizeL?: Size$1;
5242
+ sizeL?: Size$2;
5215
5243
  /**
5216
5244
  * Размер для XL брейкпоинта.
5217
5245
  *
5218
5246
  * @default undefined */
5219
- sizeXL?: Size$1;
5247
+ sizeXL?: Size$2;
5220
5248
  /**
5221
5249
  * Модификация размеров.
5222
5250
  *
5223
5251
  * @general
5224
5252
  * @default undefined */
5225
- sizes?: Partial<Record<Size$1, React.CSSProperties>>;
5253
+ sizes?: Partial<Record<Size$2, React.CSSProperties>>;
5226
5254
  /**
5227
5255
  * Вариант шаблона лейаута.
5228
5256
  *
@@ -5268,40 +5296,40 @@ interface TabListBaseProps extends ResponsiveSizeProps<Size$1>, ResponsiveLayout
5268
5296
  *
5269
5297
  * @general
5270
5298
  * @default undefined */
5271
- margin?: Margin$1 | [DESKTOP: Margin$1, TABLET: Margin$1, MOBILE: Margin$1] | [XL: Margin$1, L: Margin$1, M: Margin$1, S: Margin$1, XS: Margin$1, XXS: Margin$1];
5299
+ margin?: Margin$2 | [DESKTOP: Margin$2, TABLET: Margin$2, MOBILE: Margin$2] | [XL: Margin$2, L: Margin$2, M: Margin$2, S: Margin$2, XS: Margin$2, XXS: Margin$2];
5272
5300
  /**
5273
5301
  * Отступ для XXS брейкпоинта.
5274
5302
  *
5275
5303
  * @default undefined */
5276
- marginXXS?: Margin$1;
5304
+ marginXXS?: Margin$2;
5277
5305
  /**
5278
5306
  * Отступ для XS брейкпоинта.
5279
5307
  *
5280
5308
  * @default undefined */
5281
- marginXS?: Margin$1;
5309
+ marginXS?: Margin$2;
5282
5310
  /**
5283
5311
  * Отступ для S брейкпоинта.
5284
5312
  *
5285
5313
  * @default undefined */
5286
- marginS?: Margin$1;
5314
+ marginS?: Margin$2;
5287
5315
  /**
5288
5316
  * Отступ для M брейкпоинта.
5289
5317
  *
5290
5318
  * @default undefined */
5291
- marginM?: Margin$1;
5319
+ marginM?: Margin$2;
5292
5320
  /**
5293
5321
  * Отступ для L брейкпоинта.
5294
5322
  *
5295
5323
  * @default undefined */
5296
- marginL?: Margin$1;
5324
+ marginL?: Margin$2;
5297
5325
  /**
5298
5326
  * Отступ для XL брейкпоинта.
5299
5327
  *
5300
5328
  * @default undefined */
5301
- marginXL?: Margin$1;
5329
+ marginXL?: Margin$2;
5302
5330
  }
5303
5331
  type TabListProps = TabListBaseProps & Omit<React.ComponentPropsWithRef<'div'>, keyof TabListBaseProps>;
5304
- interface TabListPanelBaseProps extends ResponsiveSizeProps<Size$1>, ResponsiveMarginProps {
5332
+ interface TabListPanelBaseProps extends ResponsiveSizeProps<Size$2>, ResponsiveMarginProps {
5305
5333
  /**
5306
5334
  * Идентификатор ассоциированного таба.
5307
5335
  *
@@ -5500,7 +5528,7 @@ declare const useScrollMonitor: ({ target, scrollThrottleMS, scrollEndDebounceMS
5500
5528
 
5501
5529
  declare const vAlign: (align: "top" | "middle" | "bottom" | "text-top" | "text-bottom" | "baseline") => styled_components.FlattenSimpleInterpolation;
5502
5530
 
5503
- declare function buildMediaQuery(value: number | Size$d | 'auto' | 'initial' | 'inherit' | boolean, property: string | ((_size: number | 'auto' | 'initial' | 'inherit' | boolean, _sizing?: null | string) => FlattenSimpleInterpolation | null), screenQueryFunction: typeof screenXs, sizing: null | string, sizes?: Record<Size$d, number>): ReturnType<typeof css>;
5531
+ declare function buildMediaQuery(value: number | Size$f | 'auto' | 'initial' | 'inherit' | boolean, property: string | ((_size: number | 'auto' | 'initial' | 'inherit' | boolean, _sizing?: null | string) => FlattenSimpleInterpolation | null), screenQueryFunction: typeof screenXs, sizing: null | string, sizes?: Record<Size$f, number>): ReturnType<typeof css>;
5504
5532
  declare const desktopFirst: (a: string, b: string) => number;
5505
5533
  declare const mobileFirst: (a: string, b: string) => number;
5506
5534
 
@@ -6661,132 +6689,256 @@ declare class InputPhone extends PureComponent<typeof InputPhone.defaultProps &
6661
6689
  render(): JSX.Element;
6662
6690
  }
6663
6691
 
6664
- type InputSize = 'l' | 'm' | 's';
6665
- type InputPalette = {
6666
- color: CSSColor;
6667
- colorDisabled: CSSColor;
6668
- backgroundColor: CSSColor;
6669
- backgroundColorHover: CSSColor;
6670
- backgroundColorDisabled: CSSColor;
6671
- borderColor: CSSColor;
6672
- borderColorDisabled: CSSColor;
6673
- inputColor: CSSColor;
6674
- inputColorDisabled: CSSColor;
6675
- inputPlaceholderColor: CSSColor;
6676
- inputPlaceholderColorDisabled: CSSColor;
6677
- controlsColor: CSSColor;
6678
- controlsColorHover: CSSColor;
6679
- controlsColorActive: CSSColor;
6680
- controlsColorDisabled: CSSColor;
6681
- controlsBackgroundColor: CSSColor;
6682
- controlsBackgroundColorHover: CSSColor;
6683
- controlsBackgroundColorActive: CSSColor;
6684
- controlsBackgroundColorDisabled: CSSColor;
6685
- };
6686
- interface InputProps extends ResponsiveSizeProps<InputSize>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'input'>, 'children' | 'size' | 'type' | 'inputMode' | 'value' | 'defaultValue' | 'color' | 'width' | 'onChange'>,
6692
+ type Size$1 = 'l' | 'm' | 's' | 'xs';
6693
+ type Margin$1 = number | string;
6694
+ interface InputBaseProps extends ResponsiveSizeProps<Size$1>, ResponsiveMarginProps,
6687
6695
  /** @deprecated */
6688
6696
  ColorProperty,
6689
6697
  /** @deprecated */
6690
- ColorProperty<'placeholderColor'>, ResponsiveNamedProperty<'width', 'auto' | keyof typeof SizeInput | number> {
6698
+ ColorProperty<'placeholderColor'>,
6699
+ /** @deprecated */
6700
+ ResponsiveNamedProperty<'width', 'auto' | keyof typeof SizeInput | number> {
6691
6701
  /**
6692
6702
  * Пропсы для дополнительной кнопки с правого края.
6703
+ *
6693
6704
  * Для рендера контрола нужно передать addonButtonProps.icon и addonButtonProps.onClick
6705
+ *
6694
6706
  * @default {} */
6695
6707
  addonButtonProps?: Partial<IconButtonProps>;
6696
6708
  /**
6697
- * Отображение маски при пустом инпуте, который не имеет фокуса
6709
+ * Отображение маски при пустом инпуте, который не имеет фокуса.
6710
+ *
6711
+ * @mask
6698
6712
  * @default false */
6699
6713
  alwaysShowMask?: boolean;
6700
6714
  /**
6701
- * Колбек, который будет вызван до передачи значения маски в инпут
6715
+ * Колбек, который будет вызван до передачи значения маски в инпут.
6716
+ *
6717
+ * @mask
6702
6718
  * @default undefined */
6703
6719
  beforeMaskedValueChange?: (newState: InputMaskState, oldState: InputMaskState, userInput: string, maskOptions: InputMaskOptions) => InputMaskState;
6704
6720
  /**
6705
- * Адаптировать цветовую схему для контрастного фона
6721
+ * Адаптировать цветовую схему для контрастного фона.
6722
+ *
6706
6723
  * @default false */
6707
6724
  contrast?: boolean;
6708
6725
  /**
6709
- * Дефолтное значение инпута
6726
+ * Дефолтное значение инпута.
6727
+ *
6728
+ * @general
6710
6729
  * @default undefined */
6711
6730
  defaultValue?: string;
6712
6731
  /**
6713
- * Вариант цветовой схемы
6732
+ * Вариант цветовой схемы.
6733
+ *
6714
6734
  * @default false */
6715
6735
  error?: boolean;
6716
6736
  /**
6717
- * Конфиг валидации текстового ввода с учетом используемой маски
6737
+ * Конфиг валидации текстового ввода с учетом используемой маски.
6738
+ *
6739
+ * @mask
6718
6740
  * @default undefined */
6719
6741
  formatChars?: Record<string, string>;
6720
6742
  /**
6721
- * Иконки для отображения с левого и правого края
6743
+ * Иконки для отображения с левого и правого края.
6744
+ *
6722
6745
  * @default undefined */
6723
6746
  icon?: JSX.Element | IconName | [Nullable<JSX.Element | IconName>, Nullable<JSX.Element | IconName>];
6724
6747
  /**
6725
- * Пропсы для компонентов иконок
6748
+ * Пропсы для компонентов иконок.
6749
+ *
6726
6750
  * @default {} */
6727
6751
  iconProps?: IconProps;
6728
6752
  /**
6729
- * Отображать компонент на одной линии с другими
6753
+ * Отображать компонент на одной линии с другими.
6754
+ *
6730
6755
  * @default false */
6731
6756
  inline?: boolean;
6732
6757
  /**
6733
- * Тип браузерной виртуальной клавиатуры
6758
+ * Тип браузерной виртуальной клавиатуры.
6759
+ *
6734
6760
  * @default undefined */
6735
6761
  inputMode?: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
6736
6762
  /**
6737
- * Текст лейбла
6763
+ * Текст лейбла.
6764
+ *
6765
+ * @general
6738
6766
  * @default undefined */
6739
6767
  label?: React.ReactNode;
6740
6768
  /**
6741
- * Положение текста лейбла
6769
+ * Положение текста лейбла.
6770
+ *
6771
+ * @general
6742
6772
  * @default "dynamic" */
6743
6773
  labelPosition?: 'dynamic' | 'top' | 'center';
6744
6774
  /**
6745
- * Маска инпута
6775
+ * Маска инпута.
6776
+ *
6777
+ * @mask
6746
6778
  * @default undefined */
6747
6779
  mask?: string;
6748
6780
  /**
6749
- * Символ-плейсхолдер для незаполненных сегментов маски
6781
+ * Символ-плейсхолдер для незаполненных сегментов маски.
6782
+ *
6783
+ * @mask
6750
6784
  * @default undefined */
6751
6785
  maskChar?: string | null;
6752
6786
  /**
6753
6787
  * Колбек, который будет вызван после изменения значения инпута.
6754
- * Передача обязательна, если компонент используется в контролируемом режиме
6788
+ *
6789
+ * @general
6755
6790
  * @default undefined */
6756
6791
  onChange?: React.ChangeEventHandler<HTMLInputElement>;
6757
6792
  /**
6758
- * Кастомные цвета
6759
- * @default undefined */
6760
- palette?: Partial<Record<keyof InputPalette, Color>>;
6793
+ * Кастомные цвета.
6794
+ *
6795
+ * @general
6796
+ * @default {} */
6797
+ palette?: {
6798
+ color?: Color;
6799
+ colorDisabled?: Color;
6800
+ backgroundColor?: Color;
6801
+ backgroundColorHover?: Color;
6802
+ backgroundColorDisabled?: Color;
6803
+ borderColor?: Color;
6804
+ borderColorDisabled?: Color;
6805
+ inputColor?: Color;
6806
+ inputColorDisabled?: Color;
6807
+ inputPlaceholderColor?: Color;
6808
+ inputPlaceholderColorDisabled?: Color;
6809
+ controlsColor?: Color;
6810
+ controlsColorHover?: Color;
6811
+ controlsColorActive?: Color;
6812
+ controlsColorDisabled?: Color;
6813
+ controlsBackgroundColor?: Color;
6814
+ controlsBackgroundColorHover?: Color;
6815
+ controlsBackgroundColorActive?: Color;
6816
+ controlsBackgroundColorDisabled?: Color;
6817
+ };
6761
6818
  /**
6762
- * Версия компонента: brand (v3) или default (v2)
6763
- * @default "default" */
6819
+ * Версия компонента: v3 ("brand") или v2 ("default").
6820
+ *
6821
+ * @general
6822
+ * @default 'default' */
6764
6823
  preset?: ThemePreset;
6765
6824
  /**
6766
- * Вариант цветовой схемы
6825
+ * Вариант цветовой схемы.
6826
+ *
6827
+ * @general
6767
6828
  * @default true */
6768
6829
  primary?: boolean;
6769
6830
  /**
6770
- * Вариант цветовой схемы
6831
+ * Вариант цветовой схемы.
6832
+ *
6833
+ * @general
6771
6834
  * @default false */
6772
6835
  secondary?: boolean;
6773
6836
  /**
6774
- * Вариант цветовой схемы
6837
+ * Вариант цветовой схемы.
6838
+ *
6775
6839
  * @default false */
6776
6840
  success?: boolean;
6777
6841
  /**
6778
- * Дополнительный текст с правого края
6842
+ * Дополнительный текст с правого края.
6843
+ *
6779
6844
  * @default undefined */
6780
6845
  text?: React.ReactNode;
6781
6846
  /**
6782
- * Тип инпута
6847
+ * Тип инпута.
6848
+ *
6849
+ * @general
6783
6850
  * @default "text" */
6784
6851
  type?: 'email' | 'number' | 'password' | 'tel' | 'text' | 'url';
6785
6852
  /**
6786
6853
  * Текущее значение инпута.
6787
- * Значение отличное от undefined включает контролируемый режим
6854
+ *
6855
+ * Значение отличное от undefined включает контролируемый режим.
6856
+ *
6857
+ * @general
6788
6858
  * @default undefined */
6789
6859
  value?: string;
6860
+ /**
6861
+ * Размер.
6862
+ *
6863
+ * Использование кортежей включает применение размеров в зависимости от ширины вьюпорта.
6864
+ *
6865
+ * @general
6866
+ * @default 'm' */
6867
+ size?: Size$1 | [DESKTOP: Size$1, TABLET: Size$1, MOBILE: Size$1] | [XL: Size$1, L: Size$1, M: Size$1, S: Size$1, XS: Size$1, XXS: Size$1];
6868
+ /**
6869
+ * Размер для XXS брейкпоинта.
6870
+ *
6871
+ * @default undefined */
6872
+ sizeXXS?: Size$1;
6873
+ /**
6874
+ * Размер для XS брейкпоинта.
6875
+ *
6876
+ * @default undefined */
6877
+ sizeXS?: Size$1;
6878
+ /**
6879
+ * Размер для S брейкпоинта.
6880
+ *
6881
+ * @default undefined */
6882
+ sizeS?: Size$1;
6883
+ /**
6884
+ * Размер для M брейкпоинта.
6885
+ *
6886
+ * @default undefined */
6887
+ sizeM?: Size$1;
6888
+ /**
6889
+ * Размер для L брейкпоинта.
6890
+ *
6891
+ * @default undefined */
6892
+ sizeL?: Size$1;
6893
+ /**
6894
+ * Размер для XL брейкпоинта.
6895
+ *
6896
+ * @default undefined */
6897
+ sizeXL?: Size$1;
6898
+ /**
6899
+ * Модификация размеров.
6900
+ *
6901
+ * @general
6902
+ * @default undefined */
6903
+ sizes?: Partial<Record<Size$1, React.CSSProperties>>;
6904
+ /**
6905
+ * Внешние отступы.
6906
+ *
6907
+ * Использование кортежей включает применение отступов в зависимости от ширины вьюпорта.
6908
+ *
6909
+ * @general
6910
+ * @default undefined */
6911
+ margin?: Margin$1 | [DESKTOP: Margin$1, TABLET: Margin$1, MOBILE: Margin$1] | [XL: Margin$1, L: Margin$1, M: Margin$1, S: Margin$1, XS: Margin$1, XXS: Margin$1];
6912
+ /**
6913
+ * Отступ для XXS брейкпоинта.
6914
+ *
6915
+ * @default undefined */
6916
+ marginXXS?: Margin$1;
6917
+ /**
6918
+ * Отступ для XS брейкпоинта.
6919
+ *
6920
+ * @default undefined */
6921
+ marginXS?: Margin$1;
6922
+ /**
6923
+ * Отступ для S брейкпоинта.
6924
+ *
6925
+ * @default undefined */
6926
+ marginS?: Margin$1;
6927
+ /**
6928
+ * Отступ для M брейкпоинта.
6929
+ *
6930
+ * @default undefined */
6931
+ marginM?: Margin$1;
6932
+ /**
6933
+ * Отступ для L брейкпоинта.
6934
+ *
6935
+ * @default undefined */
6936
+ marginL?: Margin$1;
6937
+ /**
6938
+ * Отступ для XL брейкпоинта.
6939
+ *
6940
+ * @default undefined */
6941
+ marginXL?: Margin$1;
6790
6942
  /** @ignore */
6791
6943
  fluid?: boolean;
6792
6944
  /** @ignore */
@@ -6809,17 +6961,14 @@ ColorProperty<'placeholderColor'>, ResponsiveNamedProperty<'width', 'auto' | key
6809
6961
  /** @ignore @deprecated */
6810
6962
  inputRef?: React.Ref<HTMLInputElement>;
6811
6963
  }
6964
+ type InputProps = InputBaseProps & Omit<React.ComponentPropsWithRef<'input'>, keyof InputBaseProps>;
6812
6965
  type StyledBaseInputProps = React.ComponentPropsWithoutRef<'input'> & Pick<InputProps, 'color' | 'placeholderColor' | 'width' | 'widthXXS' | 'widthXS' | 'widthS' | 'widthM' | 'widthL' | 'widthXL' | 'mask' | 'maskChar' | 'formatChars' | 'alwaysShowMask' | 'beforeMaskedValueChange' | 'error' | 'fluid' | 'rounded' | 'inputRef'>;
6813
6966
 
6814
6967
  /**
6815
6968
  *
6816
- * Компонент поддерживает все атрибуты \<input\> элемента.
6817
- *
6818
- * Поддерживаются пропсы определения размеров и внешних отступов в зависимости от ширины вьюпорта.
6819
- *
6820
- * Можно передать "ref", который будет ассоциирован с \<input\>.
6969
+ * Компонент для приема однострочного ввода.
6821
6970
  *
6822
- * Полный интерфейс можно посмотреть [тут](https://github.com/foxford/ui/blob/master/packages/ui/src/components/Input/types.ts).
6971
+ * Поддерживается "ref" и все нативные атрибуты \<input\> элемента.
6823
6972
  */
6824
6973
  declare const Input: React.ForwardRefExoticComponent<InputProps> & {
6825
6974
  Phone: typeof InputPhone;
@@ -7287,7 +7436,7 @@ declare const FuseSearchKeys: {
7287
7436
  readonly tags: "tags";
7288
7437
  };
7289
7438
 
7290
- type Size = 'l' | 'm' | 's';
7439
+ type Size = 'l' | 'm' | 's' | 'xs';
7291
7440
  type MenuSize = 'l' | 'm' | 's' | 'fluid';
7292
7441
  type Margin = number | string;
7293
7442
  type DropdownOption = {
@@ -7783,4 +7932,4 @@ type AspectRatioProps = AspectRatioBaseProps & Omit<React.ComponentPropsWithRef<
7783
7932
  */
7784
7933
  declare const AspectRatio: React.ForwardRefExoticComponent<AspectRatioProps>;
7785
7934
 
7786
- export { Accordion, type AccordionItemProps, type AccordionProps, ActionBtn, type ActionBtnProps, Alert, type AlertProps, Amount, type AmountProps, Anchor, Arrow, ArrowBadge, type ArrowBadgeProps, type ArrowProps, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, Badge, type BadgeProps, type BaseProps, type Breakpoint, Button, type ButtonProps, COUNTRY_DATA, type CSSBorderStyle, type CSSColor, type CSSFontWeight, type CSSGlobalValue, type CSSUnit, type CSSVerticalAlign, CURRENCY_MAP, Checkbox, type CheckboxProps, Chip, type ChipProps, type Color, ColorNames, type ColorPaletteKey, Container, type ContainerProps, ContextMenu, type ContextMenuMultiLevelProps, type ContextMenuProps, CurrencyCodes, DEFAULT_MASK, Dialog, type DialogComponentProps, type DialogProps, type DividerProps, type DomTarget, Dropdown, type DropdownProps, FormLabel, type FormLabelProps, type HEX, INITIAL_MASK, Icon, IconButton, type IconButtonProps, type IconName, type IconProps, Indicator, type IndicatorProps, Input, type InputCheckboxProps, type InputMaskOptions, type InputMaskState, type InputPhoneProps, type InputProps, type InputRadioProps, type KeysOfUnion, ListItem, type ListItemProps, Menu, type MenuComponentProps, type MenuContainerProps, type MenuDividerProps, type MenuListProps, type MenuProps, Modal, type ModalProps, Notification, type NotificationProps, type Nullable, Paper, type PaperProps, type PlaygroundToolbar, Popover, type PopoverComponentProps, type PopoverProps, Progress, ProgressCircle$1 as ProgressCircle, type ProgressCircleProps$1 as ProgressCircleProps, ProgressLine, type ProgressLineProps, type ProgressProps, type ProgressSegmentedProps, type RGB, type RGBA, Radio, type RadioProps, type ResponsiveLayoutInterpolationProps, type ResponsiveLayoutProps, type ResponsivePositionProps, type ResponsivePropKey, type ResponsiveProps, type ResponsiveSizeInterpolationProps, type ResponsiveSizeProps, withThemeScrollable as Scrollable, type ScrollableProps, Section, type SectionProps, Select, type SelectProps, Separator, type SeparatorProps, type Size$d as Size, type SizeValue, Skeleton, type SkeletonProps, Spacer, type SpacerProps, Spinner, type SpinnerProps, Switch, type SwitchProps, Switcher, type SwitcherProps, Tab, TabList, type TabListPanelProps, type TabListProps, type TabListTabProps, type TabProps, Tabs, type TabsProps, Tag, type TagProps, Text, type TextEllipseProps, type TextHeadingProps, type TextProps, Textarea, type TextareaProps, type Theme, type ThemeMode, type ThemeName, type ThemePreset, ThemeProvider, type ToolbarControl, Tooltip, type TooltipComponentProps, type TooltipProps, type WithThemePreset, adultDarkTheme, adultLightTheme, babyDarkTheme, babyLightTheme, baseInputStyle, buildMediaQuery, color, desktopFirst, hexToRgbA, isHex, mobileFirst, motherDarkTheme, motherLightTheme, property, responsiveNamedProperty, responsiveProperty, screenL, screenM, screenMaxL, screenMaxM, screenMaxS, screenMaxXl, screenMaxXs, screenMaxXxs, screenMinL, screenMinM, screenMinS, screenMinXl, screenMinXs, screenRetina, screenS, screenXl, screenXs, teenDarkTheme, teenLightTheme, defaultTheme as theme, useClickOutside, useScrollMonitor, vAlign };
7935
+ export { Accordion, type AccordionItemProps, type AccordionProps, ActionBtn, type ActionBtnProps, Alert, type AlertProps, Amount, type AmountProps, Anchor, Arrow, ArrowBadge, type ArrowBadgeProps, type ArrowProps, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, Badge, type BadgeProps, type BaseProps, type Breakpoint, Button, type ButtonProps, COUNTRY_DATA, type CSSBorderStyle, type CSSColor, type CSSFontWeight, type CSSGlobalValue, type CSSUnit, type CSSVerticalAlign, CURRENCY_MAP, Checkbox, type CheckboxProps, Chip, type ChipProps, type Color, ColorNames, type ColorPaletteKey, Container, type ContainerProps, ContextMenu, type ContextMenuMultiLevelProps, type ContextMenuProps, CurrencyCodes, DEFAULT_MASK, Dialog, type DialogComponentProps, type DialogProps, type DividerProps, type DomTarget, Dropdown, type DropdownProps, FormLabel, type FormLabelProps, type HEX, INITIAL_MASK, Icon, IconButton, type IconButtonProps, type IconName, type IconProps, Indicator, type IndicatorProps, Input, type InputCheckboxProps, type InputMaskOptions, type InputMaskState, type InputPhoneProps, type InputProps, type InputRadioProps, type KeysOfUnion, ListItem, type ListItemProps, Menu, type MenuComponentProps, type MenuContainerProps, type MenuDividerProps, type MenuListProps, type MenuProps, Modal, type ModalProps, Notification, type NotificationProps, type Nullable, Paper, type PaperProps, type PlaygroundToolbar, Popover, type PopoverComponentProps, type PopoverProps, Progress, ProgressCircle$1 as ProgressCircle, type ProgressCircleProps$1 as ProgressCircleProps, ProgressLine, type ProgressLineProps, type ProgressProps, type ProgressSegmentedProps, type RGB, type RGBA, Radio, type RadioProps, type ResponsiveLayoutInterpolationProps, type ResponsiveLayoutProps, type ResponsivePositionProps, type ResponsivePropKey, type ResponsiveProps, type ResponsiveSizeInterpolationProps, type ResponsiveSizeProps, withThemeScrollable as Scrollable, type ScrollableProps, Section, type SectionProps, Select, type SelectProps, Separator, type SeparatorProps, type Size$f as Size, type SizeValue, Skeleton, type SkeletonProps, Spacer, type SpacerProps, Spinner, type SpinnerProps, Switch, type SwitchProps, Switcher, type SwitcherProps, Tab, TabList, type TabListPanelProps, type TabListProps, type TabListTabProps, type TabProps, Tabs, type TabsProps, Tag, type TagProps, Text, type TextEllipseProps, type TextHeadingProps, type TextProps, Textarea, type TextareaProps, type Theme, type ThemeMode, type ThemeName, type ThemePreset, ThemeProvider, type ToolbarControl, Tooltip, type TooltipComponentProps, type TooltipProps, type WithThemePreset, adultDarkTheme, adultLightTheme, babyDarkTheme, babyLightTheme, baseInputStyle, buildMediaQuery, color, desktopFirst, hexToRgbA, isHex, mobileFirst, motherDarkTheme, motherLightTheme, property, responsiveNamedProperty, responsiveProperty, screenL, screenM, screenMaxL, screenMaxM, screenMaxS, screenMaxXl, screenMaxXs, screenMaxXxs, screenMinL, screenMinM, screenMinS, screenMinXl, screenMinXs, screenRetina, screenS, screenXl, screenXs, teenDarkTheme, teenLightTheme, defaultTheme as theme, useClickOutside, useScrollMonitor, vAlign };