You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.8 KiB
92 lines
3.8 KiB
import { ViewProps } from 'react-native';
|
|
import { TapRatingProps, SwipeRatingProps } from 'react-native-ratings';
|
|
import { AccessoryProps } from '../avatar/Accessory';
|
|
import { AvatarProps } from '../avatar/Avatar';
|
|
import { BadgeProps } from '../badge/Badge';
|
|
import { BottomSheetProps } from '../bottomSheet/BottomSheet';
|
|
import { ButtonProps } from '../buttons/Button';
|
|
import { ButtonGroupProps } from '../buttons/ButtonGroup';
|
|
import { CardProps } from '../card/Card';
|
|
import { CheckBoxProps } from '../checkbox/CheckBox';
|
|
import { DividerProps } from '../divider/Divider';
|
|
import { HeaderProps } from '../header/Header';
|
|
import { IconProps } from '../icons/Icon';
|
|
import { ImageProps } from '../image/Image';
|
|
import { InputProps } from '../input/Input';
|
|
import { ListItemProps } from '../list/ListItemBase';
|
|
import { OverlayProps } from '../overlay/Overlay';
|
|
import { PricingCardProps } from '../pricing/PricingCard';
|
|
import { SearchBarProps } from '../searchbar/SearchBar';
|
|
import { SliderProps } from '../slider/Slider';
|
|
import { SocialIconProps } from '../social/SocialIcon';
|
|
import { TextProps } from '../text/Text';
|
|
import { TileProps } from '../tile/Tile';
|
|
import { TooltipProps } from '../tooltip/Tooltip';
|
|
import { SwitchProps } from '../switch/switch';
|
|
import { ListItemAccordionProps } from '../list/ListItemAccordion';
|
|
import { TabItemProps, TabProps } from '../tab/Tab';
|
|
import { TabViewProps } from '../tab/TabView';
|
|
import { FABProps } from '../buttons/FAB';
|
|
import { SpeedDialProps, SpeedDialActionProps } from '../buttons/SpeedDial';
|
|
import { LinearProgressProps } from '../linearProgress';
|
|
import { Colors } from './colors';
|
|
declare const _default: {
|
|
colors: Colors;
|
|
};
|
|
export default _default;
|
|
declare type RecursivePartial<T> = {
|
|
[P in keyof T]?: RecursivePartial<T[P]>;
|
|
};
|
|
export interface FullTheme {
|
|
Avatar: Partial<AvatarProps>;
|
|
AvatarAccessory: Partial<AccessoryProps>;
|
|
Badge: Partial<BadgeProps>;
|
|
BottomSheet: Partial<BottomSheetProps>;
|
|
Button: Partial<ButtonProps>;
|
|
ButtonGroup: Partial<ButtonGroupProps>;
|
|
Card: Partial<CardProps>;
|
|
CardDivider: Partial<DividerProps>;
|
|
CardFeaturedSubtitle: Partial<TextProps>;
|
|
CardFeaturedTitle: Partial<TextProps>;
|
|
CardImage: Partial<ImageProps>;
|
|
CardTitle: Partial<TextProps>;
|
|
CheckBox: Partial<CheckBoxProps>;
|
|
Divider: Partial<DividerProps>;
|
|
Header: Partial<HeaderProps>;
|
|
Icon: Partial<IconProps>;
|
|
Image: Partial<ImageProps>;
|
|
Input: Partial<InputProps>;
|
|
ListItem: Partial<ListItemProps>;
|
|
ListItemAccordion: Partial<ListItemAccordionProps>;
|
|
ListItemButtonGroup: Partial<ButtonGroupProps>;
|
|
ListItemCheckBox: Partial<CheckBoxProps>;
|
|
ListItemContent: Partial<ViewProps>;
|
|
ListItemChevron: Partial<IconProps>;
|
|
ListItemInput: Partial<InputProps>;
|
|
ListItemSubtitle: Partial<TextProps>;
|
|
ListItemTitle: Partial<TextProps>;
|
|
Overlay: Partial<OverlayProps>;
|
|
PricingCard: Partial<PricingCardProps>;
|
|
Rating: Partial<TapRatingProps>;
|
|
AirbnbRating: Partial<SwipeRatingProps>;
|
|
SearchBar: Partial<SearchBarProps>;
|
|
Slider: Partial<SliderProps>;
|
|
SocialIcon: Partial<SocialIconProps>;
|
|
Text: Partial<TextProps>;
|
|
Tile: Partial<TileProps>;
|
|
Switch: Partial<SwitchProps>;
|
|
Tooltip: Partial<TooltipProps>;
|
|
colors: RecursivePartial<Colors>;
|
|
Tab: Partial<TabProps>;
|
|
TabItem: Partial<TabItemProps>;
|
|
TabView: Partial<TabViewProps>;
|
|
TabViewItem: Partial<ViewProps>;
|
|
FAB: Partial<FABProps>;
|
|
SpeedDial: Partial<SpeedDialProps>;
|
|
SpeedDialAction: Partial<SpeedDialActionProps>;
|
|
LinearProgress: Partial<LinearProgressProps>;
|
|
}
|
|
export declare type Theme<T = {}> = Partial<FullTheme> & T;
|
|
export declare type UpdateTheme = (updates: RecursivePartial<FullTheme>) => void;
|
|
export declare type ReplaceTheme = (updates: RecursivePartial<FullTheme>) => void;
|