@hero-design/rn 8.101.3 → 8.102.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.101.3",
3
+ "version": "8.102.0-alpha.0",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -142,7 +142,7 @@ const SingleSelect = <V, T extends OptionType<V>>({
142
142
  renderOption={renderOption}
143
143
  value={value}
144
144
  onPress={(selectedValue) => {
145
- setOpen(false);
145
+ // setOpen(false);
146
146
  onConfirm(selectedValue);
147
147
  }}
148
148
  sectionListRef={sectionListRef}
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import styled from '@emotion/native';
1
2
  import theme, {
2
3
  getTheme,
3
4
  ThemeProvider,
@@ -157,6 +158,7 @@ export {
157
158
  RichTextEditor,
158
159
  FloatingIsland,
159
160
  LocaleProvider,
161
+ styled,
160
162
  };
161
163
 
162
164
  export * from './types';
package/src/types.ts CHANGED
@@ -16,7 +16,10 @@ import { SwipeableProps } from './components/Swipeable';
16
16
  import { TextProps } from './components/Typography/Text';
17
17
  import { CardCarouselHandles } from './components/Carousel/CardCarousel';
18
18
  import { FABHandles } from './components/FAB/FAB';
19
- import { ActionGroupHandles } from './components/FAB/ActionGroup';
19
+ import {
20
+ ActionGroupHandles,
21
+ ActionGroupProps,
22
+ } from './components/FAB/ActionGroup';
20
23
  import type { SliderRangeValue } from './components/Slider/RangeSlider';
21
24
  import type { CalendarDateRange } from './components/Calendar/CalendarRange';
22
25
  import { LocaleCode, LocaleValues, DateTimeFormats } from './locales/types';
@@ -25,6 +28,7 @@ import { LineChartProps } from './components/Chart/Line';
25
28
  import type { Scale, SystemPalette } from './theme/global';
26
29
 
27
30
  export type {
31
+ ActionGroupProps,
28
32
  BottomNavigationTabType,
29
33
  IconName,
30
34
  SingleSelectProps,