@draftbit/core 49.6.3-4c8b90.2 → 49.6.3-5f6aeb.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/lib/commonjs/components/BottomSheet/BottomSheet.js +1 -1
- package/lib/commonjs/components/Picker/PickerInputContainer.js +1 -1
- package/lib/commonjs/components/TextField.js +1 -1
- package/lib/typescript/src/components/AccordionGroup.d.ts +1 -1
- package/lib/typescript/src/components/ActivityIndicator.d.ts +1 -1
- package/lib/typescript/src/components/BottomSheet/BottomSheet.d.ts +2 -2
- package/lib/typescript/src/components/BottomSheet/BottomSheet.js +1 -2
- package/lib/typescript/src/components/BottomSheet/BottomSheet.js.map +1 -1
- package/lib/typescript/src/components/Checkbox/CheckboxRow.d.ts +1 -1
- package/lib/typescript/src/components/DatePicker/DatePicker.d.ts +1 -1
- package/lib/typescript/src/components/DatePicker/DatePickerComponent.web.d.ts +2 -2
- package/lib/typescript/src/components/DeckSwiper/DeckSwiperCard.d.ts +1 -1
- package/lib/typescript/src/components/Divider.d.ts +1 -1
- package/lib/typescript/src/components/Elevation.d.ts +1 -1
- package/lib/typescript/src/components/IconButton.d.ts +1 -1
- package/lib/typescript/src/components/Picker/NativePicker.d.ts +1 -1
- package/lib/typescript/src/components/Picker/PickerInputContainer.js +2 -1
- package/lib/typescript/src/components/Picker/PickerInputContainer.js.map +1 -1
- package/lib/typescript/src/components/Picker/dropdown/DropDownModalPicker.d.ts +1 -1
- package/lib/typescript/src/components/Picker/dropdown/DropDownPicker.d.ts +1 -1
- package/lib/typescript/src/components/Picker/dropdown/MultiSelectPicker.d.ts +1 -1
- package/lib/typescript/src/components/Picker/index.d.ts +1 -1
- package/lib/typescript/src/components/PinInput/PinInput.d.ts +1 -1
- package/lib/typescript/src/components/PinInput/PinInputText.d.ts +1 -1
- package/lib/typescript/src/components/Progress/CircularProgress/index.d.ts +1 -1
- package/lib/typescript/src/components/Progress/LinearProgress/index.d.ts +1 -1
- package/lib/typescript/src/components/ProgressIndicator.d.ts +1 -1
- package/lib/typescript/src/components/RadioButton/RadioButtonRow.d.ts +1 -1
- package/lib/typescript/src/components/Row.d.ts +1 -1
- package/lib/typescript/src/components/ScreenContainer.d.ts +1 -1
- package/lib/typescript/src/components/SectionList/SectionHeader.d.ts +1 -1
- package/lib/typescript/src/components/Slider.d.ts +1 -1
- package/lib/typescript/src/components/StarRating.d.ts +1 -1
- package/lib/typescript/src/components/Stepper.d.ts +1 -1
- package/lib/typescript/src/components/Surface.d.ts +1 -1
- package/lib/typescript/src/components/SwipeableItem/SwipeableItem.d.ts +1 -1
- package/lib/typescript/src/components/Swiper/Swiper.d.ts +1 -1
- package/lib/typescript/src/components/Switch.d.ts +3 -3
- package/lib/typescript/src/components/TabView/TabView.d.ts +1 -1
- package/lib/typescript/src/components/Table/Table.d.ts +1 -1
- package/lib/typescript/src/components/Table/TableRow.d.ts +1 -1
- package/lib/typescript/src/components/Text.d.ts +1 -1
- package/lib/typescript/src/components/TextField.d.ts +1 -1
- package/lib/typescript/src/components/TextField.js +10 -13
- package/lib/typescript/src/components/TextField.js.map +1 -1
- package/lib/typescript/src/components/Typography.d.ts +3 -3
- package/lib/typescript/src/deprecated-components/AccordionItem.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/AvatarEdit.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/Banner.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/Card.d.ts +3 -3
- package/lib/typescript/src/deprecated-components/Container.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/DeprecatedButton.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/DeprecatedCardWrapper.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/DeprecatedFAB.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/FAB.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/FieldSearchBarFull.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/ProgressCircle.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/RadioButtonFieldGroup.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/RowBodyIcon.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/RowHeadlineImageCaption.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/RowHeadlineImageIcon.d.ts +1 -1
- package/lib/typescript/src/deprecated-components/ToggleButton.d.ts +1 -1
- package/lib/typescript/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/BottomSheet/BottomSheet.js +1 -2
- package/src/components/BottomSheet/BottomSheet.js.map +1 -1
- package/src/components/BottomSheet/BottomSheet.tsx +1 -2
- package/src/components/Picker/PickerInputContainer.js +2 -1
- package/src/components/Picker/PickerInputContainer.js.map +1 -1
- package/src/components/Picker/PickerInputContainer.tsx +2 -0
- package/src/components/TextField.js +10 -13
- package/src/components/TextField.js.map +1 -1
- package/src/components/TextField.tsx +20 -25
|
@@ -9,7 +9,7 @@ declare type Props = {
|
|
|
9
9
|
*/
|
|
10
10
|
theme: ReadTheme;
|
|
11
11
|
};
|
|
12
|
-
export declare const Title: React.
|
|
13
|
-
export declare const Subtitle: React.
|
|
14
|
-
export declare const Caption: React.
|
|
12
|
+
export declare const Title: React.ForwardRefExoticComponent<Omit<Props, "theme"> & React.RefAttributes<any>>;
|
|
13
|
+
export declare const Subtitle: React.ForwardRefExoticComponent<Omit<Props, "theme"> & React.RefAttributes<any>>;
|
|
14
|
+
export declare const Caption: React.ForwardRefExoticComponent<Omit<Props, "theme"> & React.RefAttributes<any>>;
|
|
15
15
|
export {};
|
|
@@ -9,5 +9,5 @@ declare type Props = {
|
|
|
9
9
|
style?: StyleProp<ViewStyle>;
|
|
10
10
|
theme: ReadTheme;
|
|
11
11
|
} & IconSlot;
|
|
12
|
-
declare const _default: React.
|
|
12
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<Props, "theme"> & React.RefAttributes<any>>;
|
|
13
13
|
export default _default;
|
|
@@ -9,5 +9,5 @@ declare type Props = {
|
|
|
9
9
|
style?: StyleProp<ViewStyle>;
|
|
10
10
|
theme: ReadTheme;
|
|
11
11
|
} & IconSlot;
|
|
12
|
-
declare const _default: React.
|
|
12
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
13
13
|
export default _default;
|
|
@@ -16,5 +16,5 @@ declare type Props = {
|
|
|
16
16
|
*/
|
|
17
17
|
theme: ReadTheme;
|
|
18
18
|
} & IconSlot;
|
|
19
|
-
declare const _default: React.
|
|
19
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<Omit<React.PropsWithChildren<Props>, "theme">, "ref"> & React.RefAttributes<any>>;
|
|
20
20
|
export default _default;
|
|
@@ -2,11 +2,11 @@ import React from "react";
|
|
|
2
2
|
import { ImageSourcePropType, StyleProp, ViewStyle, TextStyle } from "react-native";
|
|
3
3
|
import type { ReadTheme } from "@draftbit/theme";
|
|
4
4
|
import type { IconSlot } from "../interfaces/Icon";
|
|
5
|
-
export declare const TopRightCircleIcon: React.
|
|
5
|
+
export declare const TopRightCircleIcon: React.ForwardRefExoticComponent<Omit<{
|
|
6
6
|
icon: string;
|
|
7
7
|
theme: ReadTheme;
|
|
8
8
|
onPress?: (() => void) | undefined;
|
|
9
|
-
} & IconSlot, "theme">>;
|
|
9
|
+
} & IconSlot, "theme"> & React.RefAttributes<any>>;
|
|
10
10
|
declare type Props = {
|
|
11
11
|
image?: string | ImageSourcePropType;
|
|
12
12
|
title?: string;
|
|
@@ -26,5 +26,5 @@ declare type Props = {
|
|
|
26
26
|
onPressIcon?: () => void;
|
|
27
27
|
children?: React.ReactNode;
|
|
28
28
|
} & IconSlot;
|
|
29
|
-
declare const _default: React.
|
|
29
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
30
30
|
export default _default;
|
|
@@ -14,5 +14,5 @@ declare type Props = {
|
|
|
14
14
|
style?: StyleProp<ViewStyle>;
|
|
15
15
|
children?: React.ReactNode;
|
|
16
16
|
};
|
|
17
|
-
declare const _default: React.
|
|
17
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
18
18
|
export default _default;
|
|
@@ -47,5 +47,5 @@ declare type Props = {
|
|
|
47
47
|
style?: StyleProp<ViewStyle>;
|
|
48
48
|
theme: ReadTheme;
|
|
49
49
|
} & PressableProps & IconSlot;
|
|
50
|
-
declare const _default: React.
|
|
50
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
51
51
|
export default _default;
|
|
@@ -8,5 +8,5 @@ declare type Props = {
|
|
|
8
8
|
style?: StyleProp<ViewStyle>;
|
|
9
9
|
theme: ReadTheme;
|
|
10
10
|
};
|
|
11
|
-
declare const _default: React.
|
|
11
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
12
12
|
export default _default;
|
|
@@ -49,5 +49,5 @@ declare type Props = {
|
|
|
49
49
|
theme: ReadTheme;
|
|
50
50
|
style?: StyleProp<ViewStyle>;
|
|
51
51
|
} & PressableProps & IconSlot;
|
|
52
|
-
declare const _default: React.
|
|
52
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
53
53
|
export default _default;
|
|
@@ -13,5 +13,5 @@ declare type Props = {
|
|
|
13
13
|
theme: ReadTheme;
|
|
14
14
|
style?: StyleProp<ViewStyle>;
|
|
15
15
|
} & PressableProps & IconSlot;
|
|
16
|
-
declare const _default: React.
|
|
16
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
17
17
|
export default _default;
|
|
@@ -13,5 +13,5 @@ declare type Props = {
|
|
|
13
13
|
value?: string;
|
|
14
14
|
defaultValue?: string;
|
|
15
15
|
} & IconSlot;
|
|
16
|
-
declare const _default: React.
|
|
16
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
17
17
|
export default _default;
|
|
@@ -13,5 +13,5 @@ declare type Props = {
|
|
|
13
13
|
thickness?: number;
|
|
14
14
|
theme: ReadTheme;
|
|
15
15
|
};
|
|
16
|
-
declare const _default: React.
|
|
16
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
17
17
|
export default _default;
|
|
@@ -6,5 +6,5 @@ interface Props extends RadioButtonGroupProps {
|
|
|
6
6
|
labelStyle?: StyleProp<TextStyle>;
|
|
7
7
|
style?: StyleProp<ViewStyle>;
|
|
8
8
|
}
|
|
9
|
-
declare const _default: React.
|
|
9
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
10
10
|
export default _default;
|
|
@@ -9,5 +9,5 @@ declare type Props = {
|
|
|
9
9
|
style?: StyleProp<ViewStyle>;
|
|
10
10
|
theme: ReadTheme;
|
|
11
11
|
} & IconSlot;
|
|
12
|
-
declare const _default: React.
|
|
12
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
13
13
|
export default _default;
|
|
@@ -9,5 +9,5 @@ declare type Props = {
|
|
|
9
9
|
style?: StyleProp<ViewStyle>;
|
|
10
10
|
theme: ReadTheme;
|
|
11
11
|
};
|
|
12
|
-
declare const _default: React.
|
|
12
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
13
13
|
export default _default;
|
|
@@ -11,5 +11,5 @@ declare type Props = {
|
|
|
11
11
|
style?: StyleProp<ViewStyle>;
|
|
12
12
|
theme: ReadTheme;
|
|
13
13
|
} & IconSlot;
|
|
14
|
-
declare const _default: React.
|
|
14
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
15
15
|
export default _default;
|
|
@@ -17,5 +17,5 @@ declare type Props = {
|
|
|
17
17
|
style?: StyleProp<ViewStyle>;
|
|
18
18
|
theme: ReadTheme;
|
|
19
19
|
} & IconSlot;
|
|
20
|
-
declare const _default: React.
|
|
20
|
+
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props>, "theme"> & React.RefAttributes<any>>;
|
|
21
21
|
export default _default;
|