@retray-dev/ui-kit 7.0.1 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/COMPONENTS.md +567 -14
- package/EXAMPLES.md +21 -14
- package/README.md +14 -8
- package/dist/Accordion.js +57 -5
- package/dist/Accordion.mjs +4 -3
- package/dist/AlertBanner.js +4 -1
- package/dist/AlertBanner.mjs +3 -2
- package/dist/AppHeader.d.mts +40 -0
- package/dist/AppHeader.d.ts +40 -0
- package/dist/AppHeader.js +515 -0
- package/dist/AppHeader.mjs +10 -0
- package/dist/Avatar.js +39 -29
- package/dist/Avatar.mjs +2 -1
- package/dist/Badge.js +11 -1
- package/dist/Badge.mjs +2 -1
- package/dist/Button.d.mts +8 -3
- package/dist/Button.d.ts +8 -3
- package/dist/Button.js +126 -108
- package/dist/Button.mjs +6 -5
- package/dist/ButtonGroup.mjs +1 -0
- package/dist/Card.js +90 -70
- package/dist/Card.mjs +5 -4
- package/dist/CategoryStrip.js +79 -22
- package/dist/CategoryStrip.mjs +6 -6
- package/dist/Checkbox.js +118 -86
- package/dist/Checkbox.mjs +5 -5
- package/dist/Chip.js +113 -80
- package/dist/Chip.mjs +5 -5
- package/dist/ConfirmDialog.js +140 -110
- package/dist/ConfirmDialog.mjs +7 -6
- package/dist/CurrencyDisplay.mjs +1 -0
- package/dist/CurrencyInput.d.mts +1 -1
- package/dist/CurrencyInput.d.ts +1 -1
- package/dist/CurrencyInput.js +9 -5
- package/dist/CurrencyInput.mjs +5 -4
- package/dist/DetailRow.mjs +1 -0
- package/dist/EmptyState.js +131 -111
- package/dist/EmptyState.mjs +7 -6
- package/dist/ErrorBoundary.d.mts +42 -0
- package/dist/ErrorBoundary.d.ts +42 -0
- package/dist/ErrorBoundary.js +351 -0
- package/dist/ErrorBoundary.mjs +7 -0
- package/dist/Form.mjs +1 -0
- package/dist/HolographicCard.d.mts +55 -0
- package/dist/HolographicCard.d.ts +55 -0
- package/dist/HolographicCard.js +316 -0
- package/dist/HolographicCard.mjs +191 -0
- package/dist/IconButton.d.mts +8 -3
- package/dist/IconButton.d.ts +8 -3
- package/dist/IconButton.js +115 -98
- package/dist/IconButton.mjs +5 -4
- package/dist/ImageViewer.d.mts +23 -0
- package/dist/ImageViewer.d.ts +23 -0
- package/dist/ImageViewer.js +582 -0
- package/dist/ImageViewer.mjs +8 -0
- package/dist/Input.mjs +4 -3
- package/dist/LabelValue.mjs +1 -0
- package/dist/ListGroup.mjs +1 -0
- package/dist/ListItem.js +131 -117
- package/dist/ListItem.mjs +6 -5
- package/dist/MediaCard.js +54 -6
- package/dist/MediaCard.mjs +6 -5
- package/dist/MenuGroup.mjs +1 -0
- package/dist/MenuItem.js +91 -79
- package/dist/MenuItem.mjs +6 -5
- package/dist/MonthPicker.d.mts +10 -2
- package/dist/MonthPicker.d.ts +10 -2
- package/dist/MonthPicker.js +80 -17
- package/dist/MonthPicker.mjs +3 -2
- package/dist/PagerDots.d.mts +35 -0
- package/dist/PagerDots.d.ts +35 -0
- package/dist/PagerDots.js +392 -0
- package/dist/PagerDots.mjs +7 -0
- package/dist/Pressable.d.mts +5 -5
- package/dist/Pressable.d.ts +5 -5
- package/dist/Pressable.js +97 -86
- package/dist/Pressable.mjs +5 -4
- package/dist/PricingCard.d.mts +50 -0
- package/dist/PricingCard.d.ts +50 -0
- package/dist/PricingCard.js +636 -0
- package/dist/PricingCard.mjs +11 -0
- package/dist/Progress.mjs +3 -2
- package/dist/RadioGroup.js +81 -30
- package/dist/RadioGroup.mjs +5 -5
- package/dist/RetrayProvider.d.mts +2 -0
- package/dist/RetrayProvider.d.ts +2 -0
- package/dist/RetrayProvider.js +214 -0
- package/dist/RetrayProvider.mjs +5 -0
- package/dist/Select.js +51 -4
- package/dist/Select.mjs +5 -4
- package/dist/SelectableGrid.d.mts +44 -0
- package/dist/SelectableGrid.d.ts +44 -0
- package/dist/SelectableGrid.js +448 -0
- package/dist/SelectableGrid.mjs +9 -0
- package/dist/Separator.mjs +1 -0
- package/dist/Sheet.d.mts +13 -1
- package/dist/Sheet.d.ts +13 -1
- package/dist/Sheet.js +115 -5
- package/dist/Sheet.mjs +4 -2
- package/dist/Skeleton.d.mts +50 -0
- package/dist/Skeleton.d.ts +50 -0
- package/dist/Skeleton.js +61 -0
- package/dist/Skeleton.mjs +4 -2
- package/dist/Slider.js +51 -4
- package/dist/Slider.mjs +3 -2
- package/dist/Spinner.js +28 -7
- package/dist/Spinner.mjs +2 -1
- package/dist/Switch.js +98 -48
- package/dist/Switch.mjs +4 -3
- package/dist/TabBar.d.mts +42 -0
- package/dist/TabBar.d.ts +42 -0
- package/dist/TabBar.js +361 -0
- package/dist/TabBar.mjs +6 -0
- package/dist/Tabs.js +92 -62
- package/dist/Tabs.mjs +5 -4
- package/dist/Text.js +16 -0
- package/dist/Text.mjs +2 -1
- package/dist/Textarea.mjs +4 -3
- package/dist/Toast.d.mts +7 -7
- package/dist/Toast.d.ts +7 -7
- package/dist/Toast.mjs +1 -0
- package/dist/Toggle.d.mts +6 -3
- package/dist/Toggle.d.ts +6 -3
- package/dist/Toggle.js +135 -120
- package/dist/Toggle.mjs +5 -5
- package/dist/VirtualList.mjs +1 -0
- package/dist/{chunk-7H2OR44A.mjs → chunk-26BCI223.mjs} +1 -1
- package/dist/{chunk-CRYBX2CM.mjs → chunk-2TFTAWVJ.mjs} +44 -59
- package/dist/chunk-3DKJ2GIC.mjs +30 -0
- package/dist/{chunk-KWCPOM6W.mjs → chunk-3U4SSNWP.mjs} +32 -48
- package/dist/chunk-4I7D47FH.mjs +139 -0
- package/dist/chunk-4K625MVM.mjs +142 -0
- package/dist/{chunk-MN7OG7IY.mjs → chunk-6OAZJ577.mjs} +6 -4
- package/dist/{chunk-L7E7TVEZ.mjs → chunk-756RAKE4.mjs} +2 -2
- package/dist/{chunk-HSPSMN6U.mjs → chunk-7QHVVCB3.mjs} +2 -2
- package/dist/{chunk-URLL5JBR.mjs → chunk-A3A6KNQN.mjs} +3 -3
- package/dist/chunk-AJ7ZDNBT.mjs +120 -0
- package/dist/{chunk-FTLJOUOQ.mjs → chunk-AV4EMIRH.mjs} +25 -28
- package/dist/chunk-AZJF2BLK.mjs +115 -0
- package/dist/chunk-BNP626TY.mjs +159 -0
- package/dist/{chunk-5IKW3VNC.mjs → chunk-DVK4G2GT.mjs} +17 -1
- package/dist/{chunk-6LQYY7HC.mjs → chunk-EH745HE5.mjs} +2 -2
- package/dist/chunk-EJ7ZPXOH.mjs +163 -0
- package/dist/{chunk-RKLHUDZS.mjs → chunk-GD6KXMG5.mjs} +29 -15
- package/dist/{chunk-RR2VQLKE.mjs → chunk-GQYFLP3D.mjs} +14 -17
- package/dist/{chunk-Y6MXOREN.mjs → chunk-ID72TK46.mjs} +8 -17
- package/dist/{chunk-NQGVLMWG.mjs → chunk-JMOZEC77.mjs} +1 -1
- package/dist/{chunk-GCWOGZYL.mjs → chunk-JT7HKXRB.mjs} +39 -29
- package/dist/{chunk-LWG526VX.mjs → chunk-KIHCWCWL.mjs} +47 -62
- package/dist/chunk-LXJIIOYQ.mjs +104 -0
- package/dist/{chunk-SBZYEV4S.mjs → chunk-M6ZXVBTK.mjs} +5 -2
- package/dist/{chunk-XDMN67KV.mjs → chunk-MAC465BB.mjs} +10 -8
- package/dist/chunk-MBMXYJJV.mjs +36 -0
- package/dist/chunk-MLF3EZFW.mjs +119 -0
- package/dist/chunk-NA7PARID.mjs +147 -0
- package/dist/{chunk-QXGYKWI7.mjs → chunk-O3HA6TYM.mjs} +9 -4
- package/dist/{chunk-63357L2X.mjs → chunk-OB4JUQ3O.mjs} +1 -1
- package/dist/{chunk-AU2VDY4P.mjs → chunk-PFZTM6D5.mjs} +52 -4
- package/dist/chunk-QKH5ZOD5.mjs +97 -0
- package/dist/{chunk-KZJRQOIU.mjs → chunk-TERDKCLE.mjs} +11 -1
- package/dist/{chunk-U4N7WF4Z.mjs → chunk-UREA2GYY.mjs} +28 -23
- package/dist/{chunk-TAJ2PQ2O.mjs → chunk-VGTDN7SW.mjs} +7 -6
- package/dist/{chunk-URDE3EUU.mjs → chunk-VQ57HWPL.mjs} +27 -15
- package/dist/chunk-WBOOUHSS.mjs +62 -0
- package/dist/{chunk-GNGLDL6Z.mjs → chunk-WJLKJMKR.mjs} +18 -0
- package/dist/{chunk-YZJAFS4P.mjs → chunk-X4G6APW6.mjs} +22 -19
- package/dist/chunk-Y6FXYEAI.mjs +8 -0
- package/dist/chunk-YFZ3ELX5.mjs +16 -0
- package/dist/{chunk-QCNARS3X.mjs → chunk-YNROWHQJ.mjs} +1 -1
- package/dist/chunk-Z4BVUWW6.mjs +196 -0
- package/dist/{chunk-GPOUINK5.mjs → chunk-ZJKGQMYH.mjs} +10 -27
- package/dist/index-wt-orHUi.d.mts +85 -0
- package/dist/index-wt-orHUi.d.ts +85 -0
- package/dist/index.d.mts +59 -51
- package/dist/index.d.ts +59 -51
- package/dist/index.js +1940 -744
- package/dist/index.mjs +49 -39
- package/package.json +35 -5
- package/src/components/Accordion/Accordion.tsx +12 -1
- package/src/components/AlertBanner/AlertBanner.tsx +5 -0
- package/src/components/AppHeader/AppHeader.tsx +172 -0
- package/src/components/AppHeader/index.ts +1 -0
- package/src/components/Avatar/Avatar.tsx +10 -2
- package/src/components/Badge/Badge.tsx +8 -1
- package/src/components/Button/Button.tsx +20 -27
- package/src/components/Card/Card.tsx +12 -23
- package/src/components/CategoryStrip/CategoryStrip.tsx +17 -21
- package/src/components/Checkbox/Checkbox.tsx +26 -40
- package/src/components/Chip/Chip.tsx +24 -33
- package/src/components/CurrencyInput/CurrencyInput.tsx +10 -8
- package/src/components/EmptyState/EmptyState.tsx +2 -1
- package/src/components/ErrorBoundary/ErrorBoundary.tsx +153 -0
- package/src/components/ErrorBoundary/index.ts +1 -0
- package/src/components/HolographicCard/HolographicCard.tsx +315 -0
- package/src/components/HolographicCard/index.ts +1 -0
- package/src/components/IconButton/IconButton.tsx +19 -27
- package/src/components/ImageViewer/ImageViewer.tsx +290 -0
- package/src/components/ImageViewer/index.ts +1 -0
- package/src/components/ListItem/ListItem.tsx +70 -67
- package/src/components/MediaCard/MediaCard.tsx +8 -2
- package/src/components/MenuItem/MenuItem.tsx +10 -25
- package/src/components/MonthPicker/MonthPicker.tsx +39 -13
- package/src/components/MonthPicker/index.ts +1 -1
- package/src/components/PagerDots/PagerDots.tsx +200 -0
- package/src/components/PagerDots/index.ts +1 -0
- package/src/components/Pressable/Pressable.tsx +19 -35
- package/src/components/PricingCard/PricingCard.tsx +220 -0
- package/src/components/PricingCard/index.ts +1 -0
- package/src/components/RadioGroup/RadioGroup.tsx +14 -27
- package/src/components/RetrayProvider/RetrayProvider.tsx +59 -0
- package/src/components/RetrayProvider/index.ts +1 -0
- package/src/components/SelectableGrid/SelectableGrid.tsx +205 -0
- package/src/components/SelectableGrid/index.ts +1 -0
- package/src/components/Sheet/Sheet.tsx +65 -1
- package/src/components/Skeleton/Skeleton.tsx +142 -1
- package/src/components/Spinner/Spinner.tsx +17 -2
- package/src/components/Switch/Switch.tsx +30 -58
- package/src/components/TabBar/TabBar.tsx +169 -0
- package/src/components/TabBar/index.ts +1 -0
- package/src/components/Tabs/Tabs.tsx +23 -26
- package/src/components/Text/Text.tsx +2 -0
- package/src/components/Toggle/Toggle.tsx +35 -51
- package/src/fonts.ts +4 -1
- package/src/index.ts +23 -2
- package/src/utils/animations.ts +29 -1
- package/src/utils/fontGuard.ts +34 -0
- package/src/utils/haptics.ts +211 -9
- package/src/utils/pressable.ts +66 -0
- package/dist/chunk-76PFOSM2.mjs +0 -41
- package/dist/chunk-DITNP6PL.mjs +0 -106
- package/dist/chunk-JBLL7U3U.mjs +0 -64
- package/dist/chunk-LG4DO3DK.mjs +0 -174
- package/dist/chunk-RMMK64W5.mjs +0 -54
- package/dist/chunk-RTC3CFXF.mjs +0 -29
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { T as Theme, C as ColorScheme, a as ThemeContextValue, b as ThemeColors, R as ResolvedColors } from './index-wt-orHUi.js';
|
|
3
|
+
export { c as RetrayProvider, d as RetrayProviderProps } from './index-wt-orHUi.js';
|
|
2
4
|
export { Button, ButtonProps, ButtonSize, ButtonVariant } from './Button.js';
|
|
3
5
|
export { ButtonGroup, ButtonGroupProps } from './ButtonGroup.js';
|
|
4
6
|
export { IconButton, IconButtonProps, IconButtonSize, IconButtonVariant } from './IconButton.js';
|
|
@@ -24,7 +26,7 @@ export { Slider, SliderProps } from './Slider.js';
|
|
|
24
26
|
export { Sheet, SheetProps } from './Sheet.js';
|
|
25
27
|
export { Select, SelectOption, SelectProps } from './Select.js';
|
|
26
28
|
export { ToastProvider, useToast } from './Toast.js';
|
|
27
|
-
export { CurrencyInput,
|
|
29
|
+
export { CurrencyInput, CurrencyInputProps } from './CurrencyInput.js';
|
|
28
30
|
export { CurrencyDisplay, CurrencyDisplayProps, CurrencyDisplayVariant } from './CurrencyDisplay.js';
|
|
29
31
|
export { ListItem, ListItemProps } from './ListItem.js';
|
|
30
32
|
export { ListGroup, ListGroupFooter, ListGroupFooterProps, ListGroupHeader, ListGroupHeaderProps, ListGroupProps, ListGroupVariant } from './ListGroup.js';
|
|
@@ -33,65 +35,24 @@ export { MenuGroup, MenuGroupFooter, MenuGroupFooterProps, MenuGroupHeader, Menu
|
|
|
33
35
|
export { Chip, ChipGroup, ChipGroupProps, ChipOption, ChipProps } from './Chip.js';
|
|
34
36
|
export { ConfirmDialog, ConfirmDialogProps } from './ConfirmDialog.js';
|
|
35
37
|
export { LabelValue, LabelValueProps } from './LabelValue.js';
|
|
36
|
-
export { MonthPicker, MonthPickerProps, MonthPickerValue } from './MonthPicker.js';
|
|
38
|
+
export { MonthPicker, MonthPickerProps, MonthPickerValue, dateToMonthPickerValue, monthPickerValueToDate } from './MonthPicker.js';
|
|
37
39
|
export { MediaCard, MediaCardAspectRatio, MediaCardProps } from './MediaCard.js';
|
|
38
40
|
export { CategoryItem, CategoryStrip, CategoryStripProps } from './CategoryStrip.js';
|
|
39
41
|
export { Pressable, PressableProps } from './Pressable.js';
|
|
40
42
|
export { DetailRow, DetailRowLabelWeight, DetailRowProps, DetailRowSeparator } from './DetailRow.js';
|
|
41
43
|
export { Form, FormField, FormFieldProps, FormFooter, FormFooterProps, FormProps, FormSection, FormSectionProps } from './Form.js';
|
|
42
44
|
export { VirtualList, VirtualListItem, VirtualListProps } from './VirtualList.js';
|
|
45
|
+
export { ErrorBoundary, ErrorBoundaryProps, ErrorFallbackProps } from './ErrorBoundary.js';
|
|
46
|
+
export { PagerDots, PagerDotsProps } from './PagerDots.js';
|
|
47
|
+
export { AppHeader, AppHeaderProps } from './AppHeader.js';
|
|
48
|
+
export { SelectableGrid, SelectableGridItem, SelectableGridProps } from './SelectableGrid.js';
|
|
49
|
+
export { PricingCard, PricingCardProps, PricingFeature } from './PricingCard.js';
|
|
50
|
+
export { TabBar, TabBarItem, TabBarProps } from './TabBar.js';
|
|
51
|
+
export { ImageViewer, ImageViewerProps } from './ImageViewer.js';
|
|
43
52
|
export { BottomSheetModalProvider, BottomSheetTextInput as SheetTextInput } from '@gorhom/bottom-sheet';
|
|
44
53
|
export { toast } from 'sonner-native';
|
|
45
54
|
import 'react-native';
|
|
46
55
|
|
|
47
|
-
type ThemeColors = {
|
|
48
|
-
background: string;
|
|
49
|
-
foreground: string;
|
|
50
|
-
card: string;
|
|
51
|
-
primary: string;
|
|
52
|
-
primaryForeground: string;
|
|
53
|
-
border: string;
|
|
54
|
-
destructive: string;
|
|
55
|
-
destructiveForeground: string;
|
|
56
|
-
success: string;
|
|
57
|
-
successForeground: string;
|
|
58
|
-
warning: string;
|
|
59
|
-
warningForeground: string;
|
|
60
|
-
/** Backdrop/overlay color. Default: 'rgba(0,0,0,0.45)' */
|
|
61
|
-
overlay?: string;
|
|
62
|
-
/** Color accent (e.g. Airbnb coral). Default: same as primary */
|
|
63
|
-
accent?: string;
|
|
64
|
-
/** Text color on accent background. Default: same as primaryForeground */
|
|
65
|
-
accentForeground?: string;
|
|
66
|
-
};
|
|
67
|
-
type ResolvedColors = ThemeColors & {
|
|
68
|
-
foregroundSubtle: string;
|
|
69
|
-
foregroundMuted: string;
|
|
70
|
-
surface: string;
|
|
71
|
-
surfaceStrong: string;
|
|
72
|
-
destructiveTint: string;
|
|
73
|
-
destructiveBorder: string;
|
|
74
|
-
successTint: string;
|
|
75
|
-
successBorder: string;
|
|
76
|
-
warningTint: string;
|
|
77
|
-
warningBorder: string;
|
|
78
|
-
overlay: string;
|
|
79
|
-
accentResolved: string;
|
|
80
|
-
accentForegroundResolved: string;
|
|
81
|
-
ring: string;
|
|
82
|
-
input: string;
|
|
83
|
-
separator: string;
|
|
84
|
-
};
|
|
85
|
-
type Theme = {
|
|
86
|
-
light?: Partial<ThemeColors>;
|
|
87
|
-
dark?: Partial<ThemeColors>;
|
|
88
|
-
};
|
|
89
|
-
type ColorScheme = 'light' | 'dark' | 'system';
|
|
90
|
-
type ThemeContextValue = {
|
|
91
|
-
colors: ResolvedColors;
|
|
92
|
-
colorScheme: 'light' | 'dark';
|
|
93
|
-
};
|
|
94
|
-
|
|
95
56
|
interface ThemeProviderProps {
|
|
96
57
|
children: React.ReactNode;
|
|
97
58
|
/**
|
|
@@ -150,6 +111,53 @@ declare function getResponsiveFontSize(text: string, maxSize: number, steps?: {
|
|
|
150
111
|
subtract: number;
|
|
151
112
|
}[]): number;
|
|
152
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Light selection feedback — checkboxes, switches, toggles, pickers.
|
|
116
|
+
*/
|
|
117
|
+
declare function selectionAsync(): void;
|
|
118
|
+
/**
|
|
119
|
+
* Light impact — cards, surfaces, light interactions.
|
|
120
|
+
*/
|
|
121
|
+
declare function impactLight(): void;
|
|
122
|
+
/**
|
|
123
|
+
* Medium impact — buttons, primary actions.
|
|
124
|
+
*/
|
|
125
|
+
declare function impactMedium(): void;
|
|
126
|
+
/**
|
|
127
|
+
* Heavy impact — confirmations, important actions.
|
|
128
|
+
*/
|
|
129
|
+
declare function impactHeavy(): void;
|
|
130
|
+
/**
|
|
131
|
+
* Success notification — confirmations, completed actions.
|
|
132
|
+
*/
|
|
133
|
+
declare function notificationSuccess(): void;
|
|
134
|
+
/**
|
|
135
|
+
* Error notification — failed actions, errors.
|
|
136
|
+
*/
|
|
137
|
+
declare function notificationError(): void;
|
|
138
|
+
/**
|
|
139
|
+
* Warning notification — caution states.
|
|
140
|
+
*/
|
|
141
|
+
declare function notificationWarning(): void;
|
|
142
|
+
/**
|
|
143
|
+
* Rich haptic presets from Pulsar — enhanced feedback for special interactions.
|
|
144
|
+
* Falls back to basic expo-haptics on Expo Go or unsupported devices.
|
|
145
|
+
*/
|
|
146
|
+
declare const richHaptics: {
|
|
147
|
+
/** Hammer strike — strong confirmation feedback. */
|
|
148
|
+
hammer: () => void;
|
|
149
|
+
/** Pulse — rhythmic feedback for toggles or state changes. */
|
|
150
|
+
pulse: () => void;
|
|
151
|
+
/** Buzz — continuous vibration for attention. */
|
|
152
|
+
buzz: () => void;
|
|
153
|
+
/** Flick — crisp click feedback. */
|
|
154
|
+
flick: () => void;
|
|
155
|
+
/** Soft — gentle, subtle feedback. */
|
|
156
|
+
soft: () => void;
|
|
157
|
+
/** Rigid — firm, solid feedback. */
|
|
158
|
+
rigid: () => void;
|
|
159
|
+
};
|
|
160
|
+
|
|
153
161
|
declare const SPACING: {
|
|
154
162
|
readonly xxs: 2;
|
|
155
163
|
readonly xs: 4;
|
|
@@ -353,4 +361,4 @@ type RadiusKey = keyof Radius;
|
|
|
353
361
|
type Typography = typeof TYPOGRAPHY;
|
|
354
362
|
type TypographyKey = keyof Typography;
|
|
355
363
|
|
|
356
|
-
export { BREAKPOINTS,
|
|
364
|
+
export { BREAKPOINTS, ColorScheme, ICON_SIZES, Icon, type IconFamily, type IconProps, type IconSize, type IconSizeKey, RADIUS, type Radius, type RadiusKey, ResolvedColors, SHADOWS, SPACING, type Spacing, type SpacingKey, TYPOGRAPHY, Theme, ThemeColors, ThemeProvider, type ThemeProviderProps, type Typography, type TypographyKey, configureIconFamilies, defaultDark, defaultLight, deriveColors, getResponsiveFontSize, impactHeavy, impactLight, impactMedium, notificationError, notificationSuccess, notificationWarning, renderIcon, richHaptics, selectionAsync, useTheme };
|