@foxford/ui 2.78.0 → 2.79.0-beta-f5654ee-20250916
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/Button/Button.js +1 -1
- package/components/Button/Button.js.map +1 -1
- package/components/Button/Button.mjs +1 -1
- package/components/Button/Button.mjs.map +1 -1
- package/components/Button/sizes-default.js +2 -0
- package/components/Button/sizes-default.js.map +1 -0
- package/components/Button/sizes-default.mjs +2 -0
- package/components/Button/sizes-default.mjs.map +1 -0
- package/components/Button/sizes.js +2 -0
- package/components/Button/sizes.js.map +1 -0
- package/components/Button/sizes.mjs +2 -0
- package/components/Button/sizes.mjs.map +1 -0
- package/components/Button/style.js +1 -1
- package/components/Button/style.js.map +1 -1
- package/components/Button/style.mjs +1 -1
- package/components/Button/style.mjs.map +1 -1
- package/components/Chip/constants.js +1 -1
- package/components/Chip/constants.js.map +1 -1
- package/components/Chip/constants.mjs +1 -1
- package/components/Chip/constants.mjs.map +1 -1
- package/components/IconButton/IconButton.js +1 -1
- package/components/IconButton/IconButton.js.map +1 -1
- package/components/IconButton/IconButton.mjs +1 -1
- package/components/IconButton/IconButton.mjs.map +1 -1
- package/components/IconButton/sizes.js +2 -0
- package/components/IconButton/sizes.js.map +1 -0
- package/components/IconButton/sizes.mjs +2 -0
- package/components/IconButton/sizes.mjs.map +1 -0
- package/components/Input/constants.js +1 -1
- package/components/Input/constants.js.map +1 -1
- package/components/Input/constants.mjs +1 -1
- package/components/Input/constants.mjs.map +1 -1
- package/components/Notification/constants.js +1 -1
- package/components/Notification/constants.js.map +1 -1
- package/components/Notification/constants.mjs +1 -1
- package/components/Notification/constants.mjs.map +1 -1
- package/components/PopoverComponent/sizes.js +1 -1
- package/components/PopoverComponent/sizes.js.map +1 -1
- package/components/PopoverComponent/sizes.mjs +1 -1
- package/components/PopoverComponent/sizes.mjs.map +1 -1
- package/components/Scrollable/Scrollable.js.map +1 -1
- package/components/Scrollable/Scrollable.mjs.map +1 -1
- package/components/TabList/sizes.js +1 -1
- package/components/TabList/sizes.js.map +1 -1
- package/components/TabList/sizes.mjs +1 -1
- package/components/TabList/sizes.mjs.map +1 -1
- package/components/Text/Text.js +1 -1
- package/components/Text/Text.js.map +1 -1
- package/components/Text/Text.mjs +1 -1
- package/components/Text/Text.mjs.map +1 -1
- package/dts/index.d.ts +319 -108
- package/mixins/responsive-margin.js +1 -1
- package/mixins/responsive-margin.js.map +1 -1
- package/mixins/responsive-margin.mjs +1 -1
- package/mixins/responsive-margin.mjs.map +1 -1
- package/package.json +2 -2
- package/components/Button/constants.js +0 -2
- package/components/Button/constants.js.map +0 -1
- package/components/Button/constants.mjs +0 -2
- package/components/Button/constants.mjs.map +0 -1
- package/components/Button/default-constants.js +0 -2
- package/components/Button/default-constants.js.map +0 -1
- package/components/Button/default-constants.mjs +0 -2
- package/components/Button/default-constants.mjs.map +0 -1
- package/components/IconButton/constants.js +0 -2
- package/components/IconButton/constants.js.map +0 -1
- package/components/IconButton/constants.mjs +0 -2
- package/components/IconButton/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$
|
|
887
|
-
type SizeValue = Size$
|
|
886
|
+
type Size$a = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
|
|
887
|
+
type SizeValue = Size$a | 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$
|
|
982
|
+
type PossibleValues = number | Size$a | '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$
|
|
989
|
-
declare const property: (value: PossibleValues, cssProperty?: CssProperty, sizing?: null | string, sizes?: Record<Size$
|
|
988
|
+
type ResponsiveProperty<V = number | Size$a> = 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$a, 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$
|
|
996
|
+
predefinedSizes?: Record<Size$a, 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$
|
|
1097
|
+
interface TextProps extends ResponsiveSizeProps<Size$a, 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
|
/** Применение присета стилей и размеров */
|
|
@@ -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$
|
|
1174
|
+
interface IconProps extends ResponsiveSizeProps<Size$a, 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$
|
|
1278
|
+
interface AnchorProps extends ResponsiveSizeProps<Size$a, 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,23 +1334,14 @@ DisplayProperty {
|
|
|
1334
1334
|
*/
|
|
1335
1335
|
declare const Anchor: React.ForwardRefExoticComponent<AnchorProps>;
|
|
1336
1336
|
|
|
1337
|
-
type
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
backgroundColorActive: CSSColor;
|
|
1346
|
-
borderColorActive: CSSColor;
|
|
1347
|
-
colorDisabled: CSSColor;
|
|
1348
|
-
backgroundColorDisabled: CSSColor;
|
|
1349
|
-
borderColorDisabled: CSSColor;
|
|
1350
|
-
shadowColor: CSSColor;
|
|
1351
|
-
};
|
|
1352
|
-
interface ButtonProps extends ResponsiveSizeProps<Size$8, SizeValue>, ColorProperty, ColorProperty<'fontColor'>, ResponsiveNamedProperty<'margin'>, ResponsiveNamedProperty<'marginTop'>, ResponsiveNamedProperty<'marginRight'>, ResponsiveNamedProperty<'marginBottom'>, ResponsiveNamedProperty<'marginLeft'>, ResponsiveNamedProperty<'fluid', boolean>, ResponsiveNamedProperty<'width', 'auto' | 'l' | 'm' | 's' | 'xs' | number>, Omit<React.ComponentPropsWithRef<'button'>, 'color' | 'children'>,
|
|
1353
|
-
/** @deprecated Use children as function or inline prop */
|
|
1337
|
+
type Size$9 = 'xxxl' | 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | 'xxxs';
|
|
1338
|
+
type Margin$5 = number | string;
|
|
1339
|
+
interface ButtonBaseProps extends ResponsiveSizeProps<Size$9>, ResponsiveMarginProps, ResponsiveNamedProperty<'fluid', boolean>, ResponsiveNamedProperty<'width', 'auto' | 'l' | 'm' | 's' | 'xs' | number>,
|
|
1340
|
+
/** @deprecated */
|
|
1341
|
+
ColorProperty,
|
|
1342
|
+
/** @deprecated */
|
|
1343
|
+
ColorProperty<'fontColor'>,
|
|
1344
|
+
/** @deprecated */
|
|
1354
1345
|
DisplayProperty,
|
|
1355
1346
|
/** @deprecated */
|
|
1356
1347
|
ResponsiveNamedProperty<'padding'>,
|
|
@@ -1362,133 +1353,259 @@ ResponsiveNamedProperty<'paddingRight'>,
|
|
|
1362
1353
|
ResponsiveNamedProperty<'paddingBottom'>,
|
|
1363
1354
|
/** @deprecated */
|
|
1364
1355
|
ResponsiveNamedProperty<'paddingLeft'>,
|
|
1365
|
-
/** @deprecated
|
|
1356
|
+
/** @deprecated */
|
|
1366
1357
|
ResponsiveNamedProperty<'fontSize'>,
|
|
1367
|
-
/** @deprecated
|
|
1358
|
+
/** @deprecated */
|
|
1368
1359
|
ResponsiveNamedProperty<'height', 'l' | 'm' | 's' | 'xs' | number> {
|
|
1369
1360
|
/**
|
|
1370
|
-
*
|
|
1371
|
-
*
|
|
1372
|
-
|
|
1361
|
+
* Версия компонента: v3 ("brand") или v2 ("default")
|
|
1362
|
+
*
|
|
1363
|
+
* @general
|
|
1364
|
+
* @default 'default' */
|
|
1365
|
+
preset?: 'default' | 'brand';
|
|
1373
1366
|
/**
|
|
1374
|
-
*
|
|
1367
|
+
* Кастомные цвета.
|
|
1368
|
+
*
|
|
1369
|
+
* @general
|
|
1375
1370
|
* @default undefined */
|
|
1376
|
-
palette?:
|
|
1371
|
+
palette?: {
|
|
1372
|
+
color?: Color;
|
|
1373
|
+
backgroundColor?: Color;
|
|
1374
|
+
borderColor?: Color;
|
|
1375
|
+
colorHover?: Color;
|
|
1376
|
+
backgroundColorHover?: Color;
|
|
1377
|
+
borderColorHover?: Color;
|
|
1378
|
+
colorActive?: Color;
|
|
1379
|
+
backgroundColorActive?: Color;
|
|
1380
|
+
borderColorActive?: Color;
|
|
1381
|
+
colorDisabled?: Color;
|
|
1382
|
+
backgroundColorDisabled?: Color;
|
|
1383
|
+
borderColorDisabled?: Color;
|
|
1384
|
+
shadowColor?: Color;
|
|
1385
|
+
};
|
|
1377
1386
|
/**
|
|
1378
|
-
*
|
|
1387
|
+
* Основной контент.
|
|
1388
|
+
*
|
|
1389
|
+
* @general
|
|
1379
1390
|
* @default undefined */
|
|
1380
|
-
children?: React.ReactNode | ((
|
|
1381
|
-
baseTextProps: Partial<TextProps>;
|
|
1391
|
+
children?: React.ReactNode | ((rootProps: {
|
|
1382
1392
|
textProps: TextProps;
|
|
1383
|
-
|
|
1384
|
-
iconProps: ButtonProps['iconProps'];
|
|
1385
|
-
icon: ButtonProps['icon'];
|
|
1393
|
+
iconProps: IconProps;
|
|
1386
1394
|
}) => React.ReactNode);
|
|
1387
1395
|
/**
|
|
1388
|
-
*
|
|
1396
|
+
* Пропсы для компонента типографики.
|
|
1397
|
+
*
|
|
1398
|
+
* @general
|
|
1389
1399
|
* @default {} */
|
|
1390
1400
|
textProps?: TextProps;
|
|
1391
1401
|
/**
|
|
1392
|
-
*
|
|
1402
|
+
* Отображение на одно линии с другими элементами.
|
|
1403
|
+
*
|
|
1393
1404
|
* @default true */
|
|
1394
1405
|
inline?: boolean;
|
|
1395
1406
|
/**
|
|
1396
|
-
*
|
|
1407
|
+
* Иконки до и после основного контента.
|
|
1408
|
+
*
|
|
1409
|
+
* @general
|
|
1397
1410
|
* @default undefined */
|
|
1398
1411
|
icon?: JSX.Element | IconName | [Nullable<JSX.Element | IconName>, Nullable<JSX.Element | IconName>];
|
|
1399
1412
|
/**
|
|
1400
|
-
*
|
|
1413
|
+
* Пропсы для компонентов иконок.
|
|
1414
|
+
*
|
|
1415
|
+
* @general
|
|
1401
1416
|
* @default {} */
|
|
1402
1417
|
iconProps?: IconProps;
|
|
1403
1418
|
/**
|
|
1404
|
-
*
|
|
1419
|
+
* Круглая форма рутового элемента.
|
|
1420
|
+
*
|
|
1421
|
+
* @general
|
|
1405
1422
|
* @default false */
|
|
1406
1423
|
round?: boolean;
|
|
1407
1424
|
/**
|
|
1408
|
-
*
|
|
1425
|
+
* Индикация успешного завершения операции.
|
|
1426
|
+
*
|
|
1427
|
+
* @general
|
|
1409
1428
|
* @default false */
|
|
1410
1429
|
success?: boolean;
|
|
1411
1430
|
/**
|
|
1412
|
-
*
|
|
1431
|
+
* Индикация выполнения операции.
|
|
1432
|
+
*
|
|
1433
|
+
* @general
|
|
1413
1434
|
* @default false */
|
|
1414
1435
|
loading?: boolean;
|
|
1415
1436
|
/**
|
|
1416
|
-
*
|
|
1437
|
+
* Вариант цветовой схемы.
|
|
1438
|
+
*
|
|
1439
|
+
* @general
|
|
1417
1440
|
* @default false */
|
|
1418
1441
|
black?: boolean;
|
|
1419
1442
|
/**
|
|
1420
|
-
*
|
|
1443
|
+
* Вариант цветовой схемы.
|
|
1444
|
+
*
|
|
1445
|
+
* @general
|
|
1421
1446
|
* @default false */
|
|
1422
1447
|
danger?: boolean;
|
|
1423
1448
|
/**
|
|
1424
|
-
*
|
|
1449
|
+
* Вариант цветовой схемы.
|
|
1450
|
+
*
|
|
1451
|
+
* @general
|
|
1425
1452
|
* @default false */
|
|
1426
1453
|
contrast?: boolean;
|
|
1427
1454
|
/**
|
|
1428
|
-
*
|
|
1455
|
+
* Вариант внешнего вида.
|
|
1456
|
+
*
|
|
1457
|
+
* @general
|
|
1429
1458
|
* @default false */
|
|
1430
1459
|
clear?: boolean;
|
|
1431
1460
|
/**
|
|
1432
|
-
*
|
|
1461
|
+
* Вариант внешнего вида.
|
|
1462
|
+
*
|
|
1463
|
+
* @general
|
|
1433
1464
|
* @default false */
|
|
1434
1465
|
base?: boolean;
|
|
1435
1466
|
/**
|
|
1436
|
-
*
|
|
1467
|
+
* Вариант внешнего вида.
|
|
1468
|
+
*
|
|
1469
|
+
* @general
|
|
1437
1470
|
* @default false */
|
|
1438
1471
|
outline?: boolean;
|
|
1439
1472
|
/**
|
|
1440
|
-
*
|
|
1473
|
+
* Использовать компонент ссылки из контекста вместо кнопки (`theme.link`).
|
|
1474
|
+
*
|
|
1441
1475
|
* @default undefined */
|
|
1442
1476
|
to?: string | Partial<Location$1> | ((location: Location$1) => string | Partial<Location$1>);
|
|
1443
1477
|
/**
|
|
1444
|
-
*
|
|
1478
|
+
* Использовать элемент ссылки вместо кнопки (`<a>`).
|
|
1479
|
+
*
|
|
1445
1480
|
* @default undefined */
|
|
1446
1481
|
href?: string;
|
|
1447
1482
|
/**
|
|
1448
|
-
*
|
|
1483
|
+
* Атрибут `target` для ссылки.
|
|
1484
|
+
*
|
|
1449
1485
|
* @default undefined */
|
|
1450
1486
|
target?: string;
|
|
1451
1487
|
/**
|
|
1452
|
-
*
|
|
1488
|
+
* Атрибут `rel` для ссылки.
|
|
1489
|
+
*
|
|
1453
1490
|
* @default undefined */
|
|
1454
1491
|
rel?: string;
|
|
1455
1492
|
/**
|
|
1456
|
-
*
|
|
1493
|
+
* Использовать `theme.utils.relBuilder` из контекста для создания `rel` атрибута для ссылки.
|
|
1494
|
+
*
|
|
1457
1495
|
* @default false */
|
|
1458
1496
|
autoRel?: boolean;
|
|
1459
|
-
/**
|
|
1497
|
+
/**
|
|
1498
|
+
* Размер.
|
|
1499
|
+
*
|
|
1500
|
+
* Использование кортежей включает применение размеров в зависимости от ширины вьюпорта.
|
|
1501
|
+
*
|
|
1502
|
+
* @general
|
|
1503
|
+
* @default 'm' */
|
|
1504
|
+
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];
|
|
1505
|
+
/**
|
|
1506
|
+
* Размер для XXS брейкпоинта.
|
|
1507
|
+
*
|
|
1508
|
+
* @default undefined */
|
|
1509
|
+
sizeXXS?: Size$9;
|
|
1510
|
+
/**
|
|
1511
|
+
* Размер для XS брейкпоинта.
|
|
1512
|
+
*
|
|
1513
|
+
* @default undefined */
|
|
1514
|
+
sizeXS?: Size$9;
|
|
1515
|
+
/**
|
|
1516
|
+
* Размер для S брейкпоинта.
|
|
1517
|
+
*
|
|
1518
|
+
* @default undefined */
|
|
1519
|
+
sizeS?: Size$9;
|
|
1520
|
+
/**
|
|
1521
|
+
* Размер для M брейкпоинта.
|
|
1522
|
+
*
|
|
1523
|
+
* @default undefined */
|
|
1524
|
+
sizeM?: Size$9;
|
|
1525
|
+
/**
|
|
1526
|
+
* Размер для L брейкпоинта.
|
|
1527
|
+
*
|
|
1528
|
+
* @default undefined */
|
|
1529
|
+
sizeL?: Size$9;
|
|
1530
|
+
/**
|
|
1531
|
+
* Размер для XL брейкпоинта.
|
|
1532
|
+
*
|
|
1533
|
+
* @default undefined */
|
|
1534
|
+
sizeXL?: Size$9;
|
|
1535
|
+
/**
|
|
1536
|
+
* Модификация размеров.
|
|
1537
|
+
*
|
|
1538
|
+
* @general
|
|
1539
|
+
* @default undefined */
|
|
1540
|
+
sizes?: Partial<Record<Size$9, React.CSSProperties>>;
|
|
1541
|
+
/**
|
|
1542
|
+
* Внешние отступы.
|
|
1543
|
+
*
|
|
1544
|
+
* Использование кортежей включает применение отступов в зависимости от ширины вьюпорта.
|
|
1545
|
+
*
|
|
1546
|
+
* @general
|
|
1547
|
+
* @default undefined */
|
|
1548
|
+
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];
|
|
1549
|
+
/**
|
|
1550
|
+
* Отступ для XXS брейкпоинта.
|
|
1551
|
+
*
|
|
1552
|
+
* @default undefined */
|
|
1553
|
+
marginXXS?: Margin$5;
|
|
1554
|
+
/**
|
|
1555
|
+
* Отступ для XS брейкпоинта.
|
|
1556
|
+
*
|
|
1557
|
+
* @default undefined */
|
|
1558
|
+
marginXS?: Margin$5;
|
|
1559
|
+
/**
|
|
1560
|
+
* Отступ для S брейкпоинта.
|
|
1561
|
+
*
|
|
1562
|
+
* @default undefined */
|
|
1563
|
+
marginS?: Margin$5;
|
|
1564
|
+
/**
|
|
1565
|
+
* Отступ для M брейкпоинта.
|
|
1566
|
+
*
|
|
1567
|
+
* @default undefined */
|
|
1568
|
+
marginM?: Margin$5;
|
|
1569
|
+
/**
|
|
1570
|
+
* Отступ для L брейкпоинта.
|
|
1571
|
+
*
|
|
1572
|
+
* @default undefined */
|
|
1573
|
+
marginL?: Margin$5;
|
|
1574
|
+
/**
|
|
1575
|
+
* Отступ для XL брейкпоинта.
|
|
1576
|
+
*
|
|
1577
|
+
* @default undefined */
|
|
1578
|
+
marginXL?: Margin$5;
|
|
1579
|
+
/** @ignore */
|
|
1460
1580
|
primary?: boolean;
|
|
1461
|
-
/** @ignore
|
|
1581
|
+
/** @ignore */
|
|
1462
1582
|
secondary?: boolean;
|
|
1463
|
-
/** @ignore
|
|
1583
|
+
/** @ignore */
|
|
1464
1584
|
inverted?: boolean;
|
|
1465
1585
|
/** @ignore @deprecated */
|
|
1466
1586
|
onColored?: boolean;
|
|
1467
1587
|
/** @ignore @deprecated */
|
|
1468
1588
|
noSpacing?: boolean;
|
|
1469
|
-
/** @ignore @deprecated
|
|
1589
|
+
/** @ignore @deprecated */
|
|
1470
1590
|
as?: React.ElementType<any>;
|
|
1471
|
-
/** @ignore @deprecated
|
|
1591
|
+
/** @ignore @deprecated */
|
|
1472
1592
|
fontWeight?: TextProps['weight'];
|
|
1473
1593
|
/** @ignore @deprecated */
|
|
1474
1594
|
rounded?: boolean;
|
|
1475
1595
|
/** @ignore @deprecated */
|
|
1476
1596
|
basic?: boolean;
|
|
1477
|
-
/** @ignore @deprecated
|
|
1597
|
+
/** @ignore @deprecated */
|
|
1478
1598
|
content?: React.ReactNode;
|
|
1479
|
-
/** @ignore @deprecated
|
|
1599
|
+
/** @ignore @deprecated */
|
|
1480
1600
|
innerRef?: any;
|
|
1481
1601
|
}
|
|
1602
|
+
type ButtonProps = ButtonBaseProps & Omit<React.ComponentPropsWithRef<'button'>, keyof ButtonBaseProps>;
|
|
1482
1603
|
|
|
1483
1604
|
/**
|
|
1484
1605
|
*
|
|
1485
|
-
*
|
|
1486
|
-
*
|
|
1487
|
-
* Responsive "size" props are supported.
|
|
1488
|
-
*
|
|
1489
|
-
* Exposed "ref" attached to root node.
|
|
1606
|
+
* Контрол многоцелевого назначения.
|
|
1490
1607
|
*
|
|
1491
|
-
*
|
|
1608
|
+
* Поддерживается "ref" и все нативные атрибуты \<button\> элемента.
|
|
1492
1609
|
*/
|
|
1493
1610
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps>;
|
|
1494
1611
|
|
|
@@ -1564,7 +1681,7 @@ type ArrowPalette = {
|
|
|
1564
1681
|
borderColorDisabled: CSSColor;
|
|
1565
1682
|
shadowColor: CSSColor;
|
|
1566
1683
|
};
|
|
1567
|
-
interface ArrowProps extends ResponsiveSizeProps<Size$
|
|
1684
|
+
interface ArrowProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'button'>, 'children'> {
|
|
1568
1685
|
/**
|
|
1569
1686
|
* UI: v3 (brand), or v2 (default)
|
|
1570
1687
|
* @default "default" */
|
|
@@ -1854,7 +1971,7 @@ type ArrowBadgePalette = {
|
|
|
1854
1971
|
color: CSSColor;
|
|
1855
1972
|
backgroundColor: CSSColor;
|
|
1856
1973
|
};
|
|
1857
|
-
interface ArrowBadgeProps extends ResponsiveSizeProps<Size$
|
|
1974
|
+
interface ArrowBadgeProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps,
|
|
1858
1975
|
/** @deprecated Use palette */
|
|
1859
1976
|
ColorProperty<'color'>,
|
|
1860
1977
|
/** @deprecated Use palette */
|
|
@@ -1907,7 +2024,7 @@ type TabPalette = {
|
|
|
1907
2024
|
backgroundColorDisabled: CSSColor;
|
|
1908
2025
|
borderColorDisabled: CSSColor;
|
|
1909
2026
|
};
|
|
1910
|
-
interface TabProps extends ResponsiveSizeProps<Size$
|
|
2027
|
+
interface TabProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps,
|
|
1911
2028
|
/** @deprecated Use palette */
|
|
1912
2029
|
ColorProperty<'color'>,
|
|
1913
2030
|
/** @deprecated Use palette */
|
|
@@ -1965,7 +2082,7 @@ type BadgePalette = {
|
|
|
1965
2082
|
color: CSSColor;
|
|
1966
2083
|
backgroundColor: CSSColor;
|
|
1967
2084
|
};
|
|
1968
|
-
interface BadgeProps extends ResponsiveSizeProps<Size$
|
|
2085
|
+
interface BadgeProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps,
|
|
1969
2086
|
/** @deprecated Use palette */
|
|
1970
2087
|
ColorProperty,
|
|
1971
2088
|
/** @deprecated Use children as function */
|
|
@@ -2018,55 +2135,149 @@ DisplayProperty, Omit<React.ComponentPropsWithRef<'div'>, 'color' | 'children'>
|
|
|
2018
2135
|
*/
|
|
2019
2136
|
declare const Badge: React.ForwardRefExoticComponent<BadgeProps>;
|
|
2020
2137
|
|
|
2021
|
-
type
|
|
2022
|
-
type
|
|
2023
|
-
|
|
2024
|
-
backgroundColor: CSSColor;
|
|
2025
|
-
colorHover: CSSColor;
|
|
2026
|
-
backgroundColorHover: CSSColor;
|
|
2027
|
-
colorActive: CSSColor;
|
|
2028
|
-
backgroundColorActive: CSSColor;
|
|
2029
|
-
colorDisabled: CSSColor;
|
|
2030
|
-
backgroundColorDisabled: CSSColor;
|
|
2031
|
-
};
|
|
2032
|
-
interface IconButtonProps extends ResponsiveSizeProps<IconButtonSize, IconButtonSize | number>, ResponsiveMarginProps, Omit<React.ComponentPropsWithRef<'button'>, 'children'> {
|
|
2138
|
+
type Size$8 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs';
|
|
2139
|
+
type Margin$4 = number | string;
|
|
2140
|
+
interface IconButtonBaseProps extends ResponsiveSizeProps<Size$8>, ResponsiveMarginProps {
|
|
2033
2141
|
/**
|
|
2034
|
-
*
|
|
2035
|
-
*
|
|
2036
|
-
|
|
2037
|
-
|
|
2142
|
+
* Кастомные цвета.
|
|
2143
|
+
*
|
|
2144
|
+
* @general
|
|
2145
|
+
* @default {} */
|
|
2146
|
+
palette?: {
|
|
2147
|
+
color?: Color;
|
|
2148
|
+
backgroundColor?: Color;
|
|
2149
|
+
colorHover?: Color;
|
|
2150
|
+
backgroundColorHover?: Color;
|
|
2151
|
+
colorActive?: Color;
|
|
2152
|
+
backgroundColorActive?: Color;
|
|
2153
|
+
colorDisabled?: Color;
|
|
2154
|
+
backgroundColorDisabled?: Color;
|
|
2155
|
+
};
|
|
2156
|
+
/**
|
|
2157
|
+
* Иконка для рендера.
|
|
2158
|
+
*
|
|
2159
|
+
* @general */
|
|
2038
2160
|
icon: JSX.Element | IconName;
|
|
2039
2161
|
/**
|
|
2040
|
-
*
|
|
2162
|
+
* Пропсы для компонента иконки.
|
|
2163
|
+
*
|
|
2164
|
+
* @general
|
|
2041
2165
|
* @default {} */
|
|
2042
2166
|
iconProps?: IconProps;
|
|
2043
2167
|
/**
|
|
2044
|
-
*
|
|
2168
|
+
* Квадратная форма рутового элемента.
|
|
2169
|
+
*
|
|
2170
|
+
* @general
|
|
2045
2171
|
* @default false */
|
|
2046
2172
|
square?: boolean;
|
|
2047
2173
|
/**
|
|
2048
|
-
*
|
|
2174
|
+
* Вариант цветовой схемы.
|
|
2175
|
+
*
|
|
2176
|
+
* @general
|
|
2049
2177
|
* @default true */
|
|
2050
2178
|
primary?: boolean;
|
|
2051
2179
|
/**
|
|
2052
|
-
*
|
|
2180
|
+
* Вариант цветовой схемы.
|
|
2181
|
+
*
|
|
2182
|
+
* @general
|
|
2053
2183
|
* @default false */
|
|
2054
2184
|
secondary?: boolean;
|
|
2055
2185
|
/**
|
|
2056
|
-
*
|
|
2186
|
+
* Вариант цветовой схемы.
|
|
2187
|
+
*
|
|
2188
|
+
* @general
|
|
2057
2189
|
* @default false */
|
|
2058
2190
|
contrast?: boolean;
|
|
2191
|
+
/**
|
|
2192
|
+
* Размер.
|
|
2193
|
+
*
|
|
2194
|
+
* Использование кортежей включает применение размеров в зависимости от ширины вьюпорта.
|
|
2195
|
+
*
|
|
2196
|
+
* @general
|
|
2197
|
+
* @default 'm' */
|
|
2198
|
+
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];
|
|
2199
|
+
/**
|
|
2200
|
+
* Размер для XXS брейкпоинта.
|
|
2201
|
+
*
|
|
2202
|
+
* @default undefined */
|
|
2203
|
+
sizeXXS?: Size$8;
|
|
2204
|
+
/**
|
|
2205
|
+
* Размер для XS брейкпоинта.
|
|
2206
|
+
*
|
|
2207
|
+
* @default undefined */
|
|
2208
|
+
sizeXS?: Size$8;
|
|
2209
|
+
/**
|
|
2210
|
+
* Размер для S брейкпоинта.
|
|
2211
|
+
*
|
|
2212
|
+
* @default undefined */
|
|
2213
|
+
sizeS?: Size$8;
|
|
2214
|
+
/**
|
|
2215
|
+
* Размер для M брейкпоинта.
|
|
2216
|
+
*
|
|
2217
|
+
* @default undefined */
|
|
2218
|
+
sizeM?: Size$8;
|
|
2219
|
+
/**
|
|
2220
|
+
* Размер для L брейкпоинта.
|
|
2221
|
+
*
|
|
2222
|
+
* @default undefined */
|
|
2223
|
+
sizeL?: Size$8;
|
|
2224
|
+
/**
|
|
2225
|
+
* Размер для XL брейкпоинта.
|
|
2226
|
+
*
|
|
2227
|
+
* @default undefined */
|
|
2228
|
+
sizeXL?: Size$8;
|
|
2229
|
+
/**
|
|
2230
|
+
* Модификация размеров.
|
|
2231
|
+
*
|
|
2232
|
+
* @general
|
|
2233
|
+
* @default undefined */
|
|
2234
|
+
sizes?: Partial<Record<Size$8, React.CSSProperties>>;
|
|
2235
|
+
/**
|
|
2236
|
+
* Внешние отступы.
|
|
2237
|
+
*
|
|
2238
|
+
* Использование кортежей включает применение отступов в зависимости от ширины вьюпорта.
|
|
2239
|
+
*
|
|
2240
|
+
* @general
|
|
2241
|
+
* @default undefined */
|
|
2242
|
+
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];
|
|
2243
|
+
/**
|
|
2244
|
+
* Отступ для XXS брейкпоинта.
|
|
2245
|
+
*
|
|
2246
|
+
* @default undefined */
|
|
2247
|
+
marginXXS?: Margin$4;
|
|
2248
|
+
/**
|
|
2249
|
+
* Отступ для XS брейкпоинта.
|
|
2250
|
+
*
|
|
2251
|
+
* @default undefined */
|
|
2252
|
+
marginXS?: Margin$4;
|
|
2253
|
+
/**
|
|
2254
|
+
* Отступ для S брейкпоинта.
|
|
2255
|
+
*
|
|
2256
|
+
* @default undefined */
|
|
2257
|
+
marginS?: Margin$4;
|
|
2258
|
+
/**
|
|
2259
|
+
* Отступ для M брейкпоинта.
|
|
2260
|
+
*
|
|
2261
|
+
* @default undefined */
|
|
2262
|
+
marginM?: Margin$4;
|
|
2263
|
+
/**
|
|
2264
|
+
* Отступ для L брейкпоинта.
|
|
2265
|
+
*
|
|
2266
|
+
* @default undefined */
|
|
2267
|
+
marginL?: Margin$4;
|
|
2268
|
+
/**
|
|
2269
|
+
* Отступ для XL брейкпоинта.
|
|
2270
|
+
*
|
|
2271
|
+
* @default undefined */
|
|
2272
|
+
marginXL?: Margin$4;
|
|
2059
2273
|
}
|
|
2274
|
+
type IconButtonProps = IconButtonBaseProps & Omit<React.ComponentPropsWithRef<'button'>, keyof IconButtonBaseProps>;
|
|
2060
2275
|
|
|
2061
2276
|
/**
|
|
2062
2277
|
*
|
|
2063
|
-
*
|
|
2064
|
-
*
|
|
2065
|
-
* Responsive "size", "margin" props are supported.
|
|
2278
|
+
* Контрол многоцелевого назначения.
|
|
2066
2279
|
*
|
|
2067
|
-
*
|
|
2068
|
-
*
|
|
2069
|
-
* See full [IconButtonProps](https://github.com/foxford/ui/blob/master/packages/ui/src/components/IconButton/types.ts)
|
|
2280
|
+
* Поддерживается "ref" и все нативные атрибуты \<button\> элемента.
|
|
2070
2281
|
*/
|
|
2071
2282
|
declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps>;
|
|
2072
2283
|
|
|
@@ -2848,7 +3059,7 @@ type ListItemPalette = {
|
|
|
2848
3059
|
backgroundColorHover: CSSColor;
|
|
2849
3060
|
mediaPlaceholderColor: CSSColor;
|
|
2850
3061
|
};
|
|
2851
|
-
interface ListItemProps extends ResponsiveSizeProps<Size$
|
|
3062
|
+
interface ListItemProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps, Omit<React.HTMLAttributes<HTMLElement>, 'children' | 'title'>, Omit<React.ButtonHTMLAttributes<HTMLElement>, 'children' | 'title' | 'type'>, Omit<React.AnchorHTMLAttributes<HTMLElement>, 'children' | 'title' | 'type' | 'media'> {
|
|
2852
3063
|
/** Root node type */
|
|
2853
3064
|
as?: React.ElementType;
|
|
2854
3065
|
/** Main text content or render function */
|
|
@@ -2926,7 +3137,7 @@ type IndicatorPalette = {
|
|
|
2926
3137
|
backgroundColor: CSSColor;
|
|
2927
3138
|
shadowColor: CSSColor;
|
|
2928
3139
|
};
|
|
2929
|
-
interface IndicatorProps extends ResponsiveSizeProps<Size$
|
|
3140
|
+
interface IndicatorProps extends ResponsiveSizeProps<Size$a, SizeValue>, ResponsiveMarginProps, React.ComponentPropsWithRef<'span'> {
|
|
2930
3141
|
/** Custom colors */
|
|
2931
3142
|
palette?: Partial<Record<keyof IndicatorPalette, Color>>;
|
|
2932
3143
|
/** Text content */
|
|
@@ -2971,7 +3182,7 @@ type AvatarPalette = {
|
|
|
2971
3182
|
shadowColor: CSSColor;
|
|
2972
3183
|
};
|
|
2973
3184
|
type AvatarSize = SizeValue | 'sm';
|
|
2974
|
-
interface AvatarProps extends ResponsiveSizeProps<Size$
|
|
3185
|
+
interface AvatarProps extends ResponsiveSizeProps<Size$a, AvatarSize>, ResponsiveMarginProps,
|
|
2975
3186
|
/** @deprecated Use palette */
|
|
2976
3187
|
ColorProperty<'color'>, Omit<React.ComponentPropsWithRef<'span'>, 'color'> {
|
|
2977
3188
|
/** UI: brand (v3), or default (v2) */
|
|
@@ -5067,7 +5278,7 @@ declare const useScrollMonitor: ({ target, scrollThrottleMS, scrollEndDebounceMS
|
|
|
5067
5278
|
|
|
5068
5279
|
declare const vAlign: (align: "top" | "middle" | "bottom" | "text-top" | "text-bottom" | "baseline") => styled_components.FlattenSimpleInterpolation;
|
|
5069
5280
|
|
|
5070
|
-
declare function buildMediaQuery(value: number | Size$
|
|
5281
|
+
declare function buildMediaQuery(value: number | Size$a | '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$a, number>): ReturnType<typeof css>;
|
|
5071
5282
|
declare const desktopFirst: (a: string, b: string) => number;
|
|
5072
5283
|
declare const mobileFirst: (a: string, b: string) => number;
|
|
5073
5284
|
|
|
@@ -5619,7 +5830,7 @@ interface ScrollableProps extends Partial<ScrollbarsProps> {
|
|
|
5619
5830
|
/**
|
|
5620
5831
|
* Style for scrollable container
|
|
5621
5832
|
*/
|
|
5622
|
-
style?:
|
|
5833
|
+
style?: React.CSSProperties;
|
|
5623
5834
|
/**
|
|
5624
5835
|
* Classname of scrollable container
|
|
5625
5836
|
*/
|
|
@@ -5694,7 +5905,7 @@ declare class Scrollable extends PureComponent<typeof Scrollable.defaultProps &
|
|
|
5694
5905
|
* Based on https://github.com/sakhnyuk/rc-scrollbars
|
|
5695
5906
|
*/
|
|
5696
5907
|
declare const withThemeScrollable: react.ForwardRefExoticComponent<{
|
|
5697
|
-
style?:
|
|
5908
|
+
style?: React.CSSProperties
|
|
5698
5909
|
/**
|
|
5699
5910
|
* Classname of scrollable container
|
|
5700
5911
|
*/
|
|
@@ -7139,4 +7350,4 @@ type AspectRatioProps = AspectRatioBaseProps & Omit<React.ComponentPropsWithRef<
|
|
|
7139
7350
|
*/
|
|
7140
7351
|
declare const AspectRatio: React.ForwardRefExoticComponent<AspectRatioProps>;
|
|
7141
7352
|
|
|
7142
|
-
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$
|
|
7353
|
+
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$a 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 };
|