@hero-design/rn 8.131.2 → 8.131.4
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/CHANGELOG.md +15 -0
- package/es/index.js +360 -357
- package/lib/index.js +360 -357
- package/package.json +8 -8
- package/src/components/Alert/index.tsx +1 -1
- package/src/components/AppCue/index.tsx +1 -1
- package/src/components/Attachment/index.tsx +1 -1
- package/src/components/BottomNavigation/index.tsx +1 -1
- package/src/components/Carousel/index.tsx +1 -1
- package/src/components/Chip/index.tsx +1 -1
- package/src/components/ContentNavigator/index.tsx +1 -1
- package/src/components/Divider/index.tsx +1 -1
- package/src/components/Drawer/index.tsx +1 -1
- package/src/components/FloatingIsland/index.tsx +1 -1
- package/src/components/HeroDesignProvider/index.tsx +1 -1
- package/src/components/LocaleProvider/index.tsx +1 -1
- package/src/components/PinInput/index.tsx +1 -1
- package/src/components/Rate/index.tsx +1 -1
- package/src/components/RefreshControl/index.tsx +1 -1
- package/src/components/SectionHeading/index.tsx +1 -1
- package/src/components/Skeleton/index.tsx +1 -1
- package/src/components/Spinner/index.tsx +1 -1
- package/src/components/Tag/index.tsx +1 -1
- package/src/types.ts +99 -99
- package/types/components/Alert/index.d.ts +1 -1
- package/types/components/AppCue/index.d.ts +1 -1
- package/types/components/Attachment/index.d.ts +1 -1
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +1 -1
- package/types/components/BottomNavigation/index.d.ts +1 -1
- package/types/components/Carousel/index.d.ts +1 -1
- package/types/components/Chip/index.d.ts +1 -1
- package/types/components/ContentNavigator/index.d.ts +1 -1
- package/types/components/Divider/index.d.ts +1 -1
- package/types/components/Drawer/index.d.ts +1 -1
- package/types/components/FloatingIsland/index.d.ts +1 -1
- package/types/components/HeroDesignProvider/index.d.ts +1 -1
- package/types/components/LocaleProvider/index.d.ts +1 -1
- package/types/components/PinInput/index.d.ts +1 -1
- package/types/components/Rate/index.d.ts +1 -1
- package/types/components/RefreshControl/index.d.ts +1 -1
- package/types/components/SectionHeading/index.d.ts +1 -1
- package/types/components/Skeleton/index.d.ts +1 -1
- package/types/components/Spinner/index.d.ts +1 -1
- package/types/components/StatusScreens/Error/StyledError.d.ts +1 -1
- package/types/components/StatusScreens/Success/StyledSuccess.d.ts +1 -1
- package/types/components/Tag/index.d.ts +1 -1
- package/types/types.d.ts +89 -43
|
@@ -24,7 +24,7 @@ declare const StyledErrorButtonContainer: import("@emotion/native").StyledCompon
|
|
|
24
24
|
}, {}, {
|
|
25
25
|
ref?: import("react").Ref<View> | undefined;
|
|
26
26
|
}>;
|
|
27
|
-
declare const StyledErrorButtonSecondary: import("@emotion/native").StyledComponent<import("
|
|
27
|
+
declare const StyledErrorButtonSecondary: import("@emotion/native").StyledComponent<import("../../..").ButtonProps & {
|
|
28
28
|
theme?: import("@emotion/react").Theme;
|
|
29
29
|
as?: React.ElementType;
|
|
30
30
|
}, {}, {}>;
|
|
@@ -44,7 +44,7 @@ declare const StyledSuccessButtonContainer: import("@emotion/native").StyledComp
|
|
|
44
44
|
}, {}, {
|
|
45
45
|
ref?: import("react").Ref<View> | undefined;
|
|
46
46
|
}>;
|
|
47
|
-
declare const StyledSuccessButtonSecondary: import("@emotion/native").StyledComponent<import("
|
|
47
|
+
declare const StyledSuccessButtonSecondary: import("@emotion/native").StyledComponent<import("../../..").ButtonProps & {
|
|
48
48
|
theme?: import("@emotion/react").Theme;
|
|
49
49
|
as?: React.ElementType;
|
|
50
50
|
}, {}, {}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ReactElement } from 'react';
|
|
2
2
|
import type { StyleProp, ViewProps, ViewStyle } from 'react-native';
|
|
3
3
|
import type { IconName } from '../Icon';
|
|
4
|
-
interface TagProps extends ViewProps {
|
|
4
|
+
export interface TagProps extends ViewProps {
|
|
5
5
|
/**
|
|
6
6
|
* Content of the Tag.
|
|
7
7
|
*/
|
package/types/types.d.ts
CHANGED
|
@@ -1,43 +1,89 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
export type {
|
|
1
|
+
export type { BottomNavigationTabType, BottomNavigationProps, } from './components/BottomNavigation';
|
|
2
|
+
export type { IconName, IconProps } from './components/Icon';
|
|
3
|
+
export type { SingleSelectProps, MultiSelectProps } from './components/Select';
|
|
4
|
+
export type { TabType, TabsHeaderProps, TabsProps } from './components/Tabs';
|
|
5
|
+
export type { TextInputProps, TextInputHandles } from './components/TextInput';
|
|
6
|
+
export type { RichTextEditorRef, RichTextEditorProps, } from './components/RichTextEditor';
|
|
7
|
+
export type { Theme } from './theme';
|
|
8
|
+
export type { ListRenderOptionInfo, SectionListRenderOptionInfo, SelectOptionType, } from './components/Select/types';
|
|
9
|
+
export type { SwipeableProps } from './components/Swipeable';
|
|
10
|
+
export type { TextProps } from './components/Typography/Text';
|
|
11
|
+
export type { CardCarouselHandles, CardCarouselProps, } from './components/Carousel/CardCarousel';
|
|
12
|
+
export type { FABHandles, FABProps } from './components/FAB/FAB';
|
|
13
|
+
export type { ActionGroupHandles, ActionGroupProps, } from './components/FAB/ActionGroup';
|
|
14
|
+
export type { ActionItemProps } from './components/FAB/ActionGroup/ActionItem';
|
|
15
|
+
export type { SliderRangeValue } from './components/Slider/RangeSlider';
|
|
16
|
+
export type { CalendarDateRange } from './components/Calendar/CalendarRange';
|
|
17
|
+
export type { LocaleCode, LocaleValues, DateTimeFormats, } from './locales/types';
|
|
18
|
+
export type { ColumnChartProps } from './components/Chart/ColumnChart';
|
|
19
|
+
export type { LineChartProps } from './components/Chart/Line';
|
|
20
|
+
export type { Scale, SystemPalette } from './theme/global';
|
|
21
|
+
export type { BrandSystemPalette, GlobalSystemPalette, } from './theme/global/colors/types';
|
|
22
|
+
export type { ToolbarItemProps } from './components/Toolbar/ToolbarItem';
|
|
23
|
+
export type { CheckboxProps } from './components/Checkbox';
|
|
24
|
+
export type { SwitchOptionType } from './components/Switch/SelectorSwitch';
|
|
25
|
+
export type { BoxProps } from './components/Box';
|
|
26
|
+
export type { BodyProps } from './components/Typography/Body';
|
|
27
|
+
export type { ToolbarButtonName } from './components/RichTextEditor/types';
|
|
28
|
+
export type { ListItemProps } from './components/List/ListItem';
|
|
29
|
+
export type { IconButtonProps } from './components/Button/IconButton';
|
|
30
|
+
export type { BadgeProps } from './components/Badge';
|
|
31
|
+
export type { ToastProps, ToastContainerProps, ToastItemProps, } from './components/Toast/types';
|
|
32
|
+
export type { Space } from './theme/global/space';
|
|
33
|
+
export type { CaptionProps } from './components/Typography/Caption';
|
|
34
|
+
export type { Radii } from './theme/global/borders';
|
|
35
|
+
export type { TitleProps } from './components/Typography/Title';
|
|
36
|
+
export type { CarouselData, CarouselImageProps, } from './components/Carousel/types';
|
|
37
|
+
export type { PinInputHandler, PinInputProps } from './components/PinInput';
|
|
38
|
+
export type { ThemeScale } from './components/Box/types';
|
|
39
|
+
export type { TimePickerProps } from './components/TimePicker/types';
|
|
40
|
+
export type { DatePickerProps } from './components/DatePicker/types';
|
|
41
|
+
export type { SegmentedControlItemConfig } from './components/SegmentedControl/types';
|
|
42
|
+
export type { ProgressSegmentedBarProps } from './components/Progress/SegmentedBar/types';
|
|
43
|
+
export type { DragableDrawerProps } from './components/Drawer/DragableDrawer';
|
|
44
|
+
export type { DragableScrollViewProps } from './components/Drawer/DragableDrawer/DragableScrollView';
|
|
45
|
+
export type { PortalHostProps } from './components/Portal/PortalHost';
|
|
46
|
+
export type { PortalProviderProps } from './components/Portal/PortalProvider';
|
|
47
|
+
export type { ToolbarGroupProps } from './components/Toolbar/ToolbarGroup';
|
|
48
|
+
export type { InlineCheckboxProps } from './components/Checkbox/InlineCheckBox';
|
|
49
|
+
export type { EditorToolbarProps } from './components/RichTextEditor/EditorToolbar';
|
|
50
|
+
export type { RichTextEditorInputProps } from './components/RichTextEditor/RichTextEditorInput';
|
|
51
|
+
export type { AccordionProps } from './components/Accordion';
|
|
52
|
+
export type { AlertProps } from './components/Alert';
|
|
53
|
+
export type { AppCueProps } from './components/AppCue';
|
|
54
|
+
export type { AttachmentProps } from './components/Attachment';
|
|
55
|
+
export type { AvatarProps } from './components/Avatar/Avatar';
|
|
56
|
+
export type { AvatarStackProps } from './components/Avatar/AvatarStack';
|
|
57
|
+
export type { BottomSheetProps } from './components/BottomSheet';
|
|
58
|
+
export type { ButtonProps } from './components/Button/Button';
|
|
59
|
+
export type { CalendarProps } from './components/Calendar/types';
|
|
60
|
+
export type { CardProps } from './components/Card';
|
|
61
|
+
export type { CarouselProps } from './components/Carousel';
|
|
62
|
+
export type { ChipProps } from './components/Chip';
|
|
63
|
+
export type { CollapseProps } from './components/Collapse';
|
|
64
|
+
export type { ContentNavigatorProps } from './components/ContentNavigator';
|
|
65
|
+
export type { DividerProps } from './components/Divider';
|
|
66
|
+
export type { DrawerProps } from './components/Drawer';
|
|
67
|
+
export type { FilterTriggerProps } from './components/FilterTrigger';
|
|
68
|
+
export type { FloatingIslandProps } from './components/FloatingIsland';
|
|
69
|
+
export type { HeroDesignProviderProps } from './components/HeroDesignProvider';
|
|
70
|
+
export type { ImageProps } from './components/Image';
|
|
71
|
+
export type { InlineLoaderProps } from './components/InlineLoader';
|
|
72
|
+
export type { LabelProps } from './components/Typography/Label';
|
|
73
|
+
export type { LocaleProviderProps } from './components/LocaleProvider';
|
|
74
|
+
export type { MapPinProps } from './components/MapPin/types';
|
|
75
|
+
export type { ModalProps } from './components/Modal';
|
|
76
|
+
export type { PageControlProps } from './components/PageControl';
|
|
77
|
+
export type { ProgressBarProps } from './components/Progress/ProgressBar';
|
|
78
|
+
export type { ProgressCircleProps } from './components/Progress/ProgressCircle';
|
|
79
|
+
export type { ProgressStepProps } from './components/Progress/ProgressStep';
|
|
80
|
+
export type { RadioGroupProps } from './components/Radio/RadioGroup';
|
|
81
|
+
export type { RateProps } from './components/Rate';
|
|
82
|
+
export type { RefreshControlProps } from './components/RefreshControl';
|
|
83
|
+
export type { SectionHeadingProps } from './components/SectionHeading';
|
|
84
|
+
export type { SegmentedControlProps } from './components/SegmentedControl';
|
|
85
|
+
export type { SingleSliderProps } from './components/Slider/SingleSlider';
|
|
86
|
+
export type { SkeletonProps } from './components/Skeleton';
|
|
87
|
+
export type { SpinnerProps } from './components/Spinner';
|
|
88
|
+
export type { SwitchProps } from './components/Switch';
|
|
89
|
+
export type { TagProps } from './components/Tag';
|