@hero-design/rn 8.128.1 → 8.128.2
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 +6 -0
- package/es/index.js +135 -238
- package/lib/index.js +135 -238
- package/package.json +8 -1
- package/src/components/DatePicker/DatePicker.tsx +5 -24
- package/src/components/DatePicker/DatePickerAndroid.tsx +8 -17
- package/src/components/DatePicker/DatePickerCalendar.tsx +8 -17
- package/src/components/DatePicker/DatePickerIOS.tsx +8 -17
- package/src/components/DatePicker/StyledDatePicker.tsx +2 -19
- package/src/components/DatePicker/types.ts +0 -17
- package/src/components/Select/MultiSelect/index.tsx +9 -23
- package/src/components/Select/SingleSelect/index.tsx +9 -23
- package/src/components/Select/StyledSelect.tsx +2 -25
- package/src/components/Select/index.tsx +2 -8
- package/src/components/Select/types.ts +0 -4
- package/src/components/TimePicker/StyledTimePicker.tsx +2 -19
- package/src/components/TimePicker/TimePicker.tsx +2 -2
- package/src/components/TimePicker/TimePickerAndroid.tsx +6 -15
- package/src/components/TimePicker/TimePickerIOS.tsx +7 -18
- package/src/components/TimePicker/types.ts +0 -17
- package/types/components/Checkbox/StyledInlineCheckBox.d.ts +1 -1
- package/types/components/Checkbox/utils.d.ts +1 -1
- package/types/components/DatePicker/DatePicker.d.ts +2 -2
- package/types/components/DatePicker/DatePickerAndroid.d.ts +3 -3
- package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -2
- package/types/components/DatePicker/DatePickerIOS.d.ts +3 -3
- package/types/components/DatePicker/StyledDatePicker.d.ts +1 -8
- package/types/components/DatePicker/types.d.ts +0 -15
- package/types/components/Select/MultiSelect/index.d.ts +1 -6
- package/types/components/Select/SingleSelect/index.d.ts +1 -6
- package/types/components/Select/StyledSelect.d.ts +1 -8
- package/types/components/Select/index.d.ts +2 -2
- package/types/components/Select/types.d.ts +0 -4
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/TimePicker/StyledTimePicker.d.ts +1 -8
- package/types/components/TimePicker/TimePicker.d.ts +2 -2
- package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -2
- package/types/components/TimePicker/TimePickerIOS.d.ts +2 -2
- package/types/components/TimePicker/types.d.ts +0 -15
- package/src/components/DatePicker/index.internal.tsx +0 -10
- package/src/components/Select/index.internal.tsx +0 -26
- package/src/components/TimePicker/index.internal.tsx +0 -9
- package/src/index.internal.ts +0 -26
- package/src/types.internal.ts +0 -28
- package/types/components/DatePicker/index.internal.d.ts +0 -7
- package/types/components/Select/index.internal.d.ts +0 -21
- package/types/components/TimePicker/index.internal.d.ts +0 -5
- package/types/index.internal.d.ts +0 -19
- package/types/types.internal.d.ts +0 -18
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* INTERNAL API - Do not remove this file
|
|
3
|
-
*
|
|
4
|
-
* This file re-exports components with their full internal APIs (including internal props).
|
|
5
|
-
* It's used by:
|
|
6
|
-
* 1. @hero-design/rn-work-uikit package - provides access to internal props like
|
|
7
|
-
* TextInputComponent and groupStyleEnabled for component customization
|
|
8
|
-
* 2. Internal type definitions - exports InternalMultiSelectProps, InternalSingleSelectProps, etc.
|
|
9
|
-
* 3. Build tools - configured in rn-work-uikit's tsconfig, rollup, and babel configs
|
|
10
|
-
*
|
|
11
|
-
* The public API (main index.ts) omits internal props to keep the external interface clean,
|
|
12
|
-
* but this internal version is essential for extending the library with advanced features.
|
|
13
|
-
*/
|
|
14
|
-
import Select from './components/Select/index.internal';
|
|
15
|
-
import DatePicker from './components/DatePicker/index.internal';
|
|
16
|
-
import TimePicker from './components/TimePicker/index.internal';
|
|
17
|
-
export * from '.';
|
|
18
|
-
export type { MultiSelectProps, SingleSelectProps, DatePickerProps, TimePickerProps, } from './types.internal';
|
|
19
|
-
export { Select, DatePicker, TimePicker };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* INTERNAL TYPES - Do not remove this file
|
|
3
|
-
*
|
|
4
|
-
* This file re-exports internal component prop types that include all internal properties.
|
|
5
|
-
* It's used by:
|
|
6
|
-
* 1. @hero-design/rn-work-uikit package - provides access to InternalMultiSelectProps,
|
|
7
|
-
* InternalSingleSelectProps, etc. for advanced component customization
|
|
8
|
-
* 2. Internal API exports - referenced by index.internal.ts for type definitions
|
|
9
|
-
* 3. Build tools - enables proper TypeScript compilation for internal API consumers
|
|
10
|
-
*
|
|
11
|
-
* The public types (types.ts) omit internal props to keep the external interface clean,
|
|
12
|
-
* but this internal version is essential for extending the library with full type safety.
|
|
13
|
-
*/
|
|
14
|
-
import { DatePickerProps } from './components/DatePicker/index.internal';
|
|
15
|
-
import type { SingleSelectProps, MultiSelectProps } from './components/Select/index.internal';
|
|
16
|
-
import { TimePickerProps } from './components/TimePicker/index.internal';
|
|
17
|
-
export * from './types';
|
|
18
|
-
export { SingleSelectProps, MultiSelectProps, DatePickerProps, TimePickerProps, };
|