@hero-design/rn 8.101.3 → 8.102.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +12 -0
- package/es/index.js +6552 -6552
- package/lib/index.js +6552 -6551
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/types.ts +5 -1
- package/stats/8.101.3/rn-stats.html +1 -3
- package/stats/8.102.0/rn-stats.html +4842 -0
- package/types/index.d.ts +2 -1
- package/types/types.d.ts +2 -2
package/types/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import styled from '@emotion/native';
|
|
1
2
|
import theme, { getTheme, ThemeProvider, useTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkSystemPalette, ThemeSwitcher, withTheme, ehWorkSystemPalette, ehJobsSystemPalette } from './theme';
|
|
2
3
|
import { scale } from './utils/scale';
|
|
3
4
|
import Accordion from './components/Accordion';
|
|
@@ -56,5 +57,5 @@ import { ScrollViewWithFAB, SectionListWithFAB, FlatListWithFAB } from './compon
|
|
|
56
57
|
import Search from './components/Search';
|
|
57
58
|
import FloatingIsland from './components/FloatingIsland';
|
|
58
59
|
import LocaleProvider from './components/LocaleProvider';
|
|
59
|
-
export { theme, getTheme, useTheme, scale, ThemeProvider, ThemeSwitcher, withTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkSystemPalette, ehWorkSystemPalette, ehJobsSystemPalette, Accordion, Alert, AppCue, Attachment, Avatar, useAvatarColors, Badge, BottomNavigation, BottomSheet, Box, Button, Calendar, Card, Chart, Carousel, Chip, Collapse, Checkbox, ContentNavigator, DatePicker, Divider, Drawer, Empty, Error, FAB, FlatListWithFAB, Icon, Image, HeroDesignProvider, MapPin, List, PinInput, Progress, Portal, PageControl, Skeleton, Slider, Spinner, Swipeable, Radio, Search, ScrollViewWithFAB, SectionHeading, SectionListWithFAB, Select, Success, Switch, Tabs, Tag, TextInput, TimePicker, Toast, Toolbar, Typography, Rate, RefreshControl, RichTextEditor, FloatingIsland, LocaleProvider, };
|
|
60
|
+
export { theme, getTheme, useTheme, scale, ThemeProvider, ThemeSwitcher, withTheme, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkSystemPalette, ehWorkSystemPalette, ehJobsSystemPalette, Accordion, Alert, AppCue, Attachment, Avatar, useAvatarColors, Badge, BottomNavigation, BottomSheet, Box, Button, Calendar, Card, Chart, Carousel, Chip, Collapse, Checkbox, ContentNavigator, DatePicker, Divider, Drawer, Empty, Error, FAB, FlatListWithFAB, Icon, Image, HeroDesignProvider, MapPin, List, PinInput, Progress, Portal, PageControl, Skeleton, Slider, Spinner, Swipeable, Radio, Search, ScrollViewWithFAB, SectionHeading, SectionListWithFAB, Select, Success, Switch, Tabs, Tag, TextInput, TimePicker, Toast, Toolbar, Typography, Rate, RefreshControl, RichTextEditor, FloatingIsland, LocaleProvider, styled, };
|
|
60
61
|
export * from './types';
|
package/types/types.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ import { SwipeableProps } from './components/Swipeable';
|
|
|
10
10
|
import { TextProps } from './components/Typography/Text';
|
|
11
11
|
import { CardCarouselHandles } from './components/Carousel/CardCarousel';
|
|
12
12
|
import { FABHandles } from './components/FAB/FAB';
|
|
13
|
-
import { ActionGroupHandles } from './components/FAB/ActionGroup';
|
|
13
|
+
import { ActionGroupHandles, ActionGroupProps } from './components/FAB/ActionGroup';
|
|
14
14
|
import type { SliderRangeValue } from './components/Slider/RangeSlider';
|
|
15
15
|
import type { CalendarDateRange } from './components/Calendar/CalendarRange';
|
|
16
16
|
import { LocaleCode, LocaleValues, DateTimeFormats } from './locales/types';
|
|
17
17
|
import type { ColumnChartProps } from './components/Chart/ColumnChart';
|
|
18
18
|
import { LineChartProps } from './components/Chart/Line';
|
|
19
19
|
import type { Scale, SystemPalette } from './theme/global';
|
|
20
|
-
export type { BottomNavigationTabType, IconName, SingleSelectProps, MultiSelectProps, ListRenderOptionInfo, SectionListRenderOptionInfo, SwipeableProps, RichTextEditorProps, RichTextEditorRef, TabType, TextInputProps, TextProps, TextInputHandles, Theme, CardCarouselHandles, FABHandles, ActionGroupHandles, SliderRangeValue, CalendarDateRange, LocaleCode, LocaleValues, DateTimeFormats, ColumnChartProps, LineChartProps, Scale, SystemPalette, };
|
|
20
|
+
export type { ActionGroupProps, BottomNavigationTabType, IconName, SingleSelectProps, MultiSelectProps, ListRenderOptionInfo, SectionListRenderOptionInfo, SwipeableProps, RichTextEditorProps, RichTextEditorRef, TabType, TextInputProps, TextProps, TextInputHandles, Theme, CardCarouselHandles, FABHandles, ActionGroupHandles, SliderRangeValue, CalendarDateRange, LocaleCode, LocaleValues, DateTimeFormats, ColumnChartProps, LineChartProps, Scale, SystemPalette, };
|