@draftbit/ui 46.4.4-79fcb6.2 → 46.4.4-7d0f5d.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/index.js +8 -1
- package/lib/module/index.js +1 -1
- package/lib/typescript/src/index.d.ts +13 -1
- package/package.json +4 -4
- package/src/index.js +1 -1
- package/src/index.tsx +1 -0
package/lib/commonjs/index.js
CHANGED
|
@@ -34,7 +34,14 @@ Object.defineProperty(exports, "Avatar", {
|
|
|
34
34
|
return _core.Avatar;
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
|
-
exports.
|
|
37
|
+
exports.Banner = exports.AvatarEdit = void 0;
|
|
38
|
+
Object.defineProperty(exports, "BottomSheet", {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () {
|
|
41
|
+
return _core.BottomSheet;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
exports.Card = exports.ButtonSolid = exports.ButtonOutline = exports.Button = void 0;
|
|
38
45
|
Object.defineProperty(exports, "CardBlock", {
|
|
39
46
|
enumerable: true,
|
|
40
47
|
get: function () {
|
package/lib/module/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Icon } from "@draftbit/native";
|
|
2
2
|
export { AudioPlayer, Icon, LinearGradient, WebView } from "@draftbit/native";
|
|
3
3
|
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState, /* Deprecated, needs fixing */
|
|
4
|
-
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem } from "@draftbit/core";
|
|
4
|
+
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, BottomSheet } from "@draftbit/core";
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export { AudioPlayer, Icon, LinearGradient, WebView } from "@draftbit/native";
|
|
3
|
-
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState, CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, } from "@draftbit/core";
|
|
3
|
+
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState, CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, BottomSheet, } from "@draftbit/core";
|
|
4
4
|
export declare const AvatarEdit: (props: import("utility-types").Subtract<import("@draftbit/react-theme-provider").$Without<import("react").PropsWithChildren<{
|
|
5
5
|
image: string | import("react-native").ImageSourcePropType;
|
|
6
6
|
size?: number | undefined;
|
|
@@ -22698,6 +22698,12 @@ export declare const FieldSearchBarFull: (props: import("utility-types").Subtrac
|
|
|
22698
22698
|
value?: string | undefined;
|
|
22699
22699
|
defaultValue?: string | undefined;
|
|
22700
22700
|
} & import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot>, "theme"> & {
|
|
22701
|
+
/**
|
|
22702
|
+
* Components with Injected Dependencies
|
|
22703
|
+
*
|
|
22704
|
+
* Inject a native module from `@draftbit/native` into these components for use
|
|
22705
|
+
* is snack / expo / react-native
|
|
22706
|
+
*/
|
|
22701
22707
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
22702
22708
|
}, import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot>) => import("react").ReactElement<import("@draftbit/react-theme-provider").$Without<import("react").PropsWithChildren<{
|
|
22703
22709
|
showIcon: boolean;
|
|
@@ -24208,6 +24214,12 @@ export declare const FieldSearchBarFull: (props: import("utility-types").Subtrac
|
|
|
24208
24214
|
value?: string | undefined;
|
|
24209
24215
|
defaultValue?: string | undefined;
|
|
24210
24216
|
} & import("packages/core/lib/typescript/src/interfaces/Icon").IconSlot>, "theme"> & {
|
|
24217
|
+
/**
|
|
24218
|
+
* Components with Injected Dependencies
|
|
24219
|
+
*
|
|
24220
|
+
* Inject a native module from `@draftbit/native` into these components for use
|
|
24221
|
+
* is snack / expo / react-native
|
|
24222
|
+
*/
|
|
24211
24223
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
24212
24224
|
}, string | import("react").JSXElementConstructor<any>>;
|
|
24213
24225
|
export declare const HeaderLarge: (props: import("utility-types").Subtract<import("@draftbit/react-theme-provider").$Without<import("react").PropsWithChildren<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/ui",
|
|
3
|
-
"version": "46.4.4-
|
|
3
|
+
"version": "46.4.4-7d0f5d.2+7d0f5dc",
|
|
4
4
|
"description": "Draftbit UI Library",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/draftbit/react-native-jigsaw#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@draftbit/core": "^46.4.4-
|
|
47
|
-
"@draftbit/native": "^46.4.4-
|
|
46
|
+
"@draftbit/core": "^46.4.4-7d0f5d.2+7d0f5dc",
|
|
47
|
+
"@draftbit/native": "^46.4.4-7d0f5d.2+7d0f5dc"
|
|
48
48
|
},
|
|
49
49
|
"react-native-builder-bob": {
|
|
50
50
|
"declarationMap": false,
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
]
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "7d0f5dcc05ed486e5926c7e5a1a57299ae1a102a"
|
|
66
66
|
}
|
package/src/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { Icon } from "@draftbit/native";
|
|
|
2
2
|
export { AudioPlayer, Icon, LinearGradient, WebView } from "@draftbit/native";
|
|
3
3
|
export { Avatar, Carousel, Center, Circle, CircleImage, Container, CheckboxGroup, DefaultTheme, Divider, Provider, RadioButtonFieldGroup, RadioButtonGroup, Row, ScreenContainer, Spacer, Square, Stack, Surface, SVG, Switch, SwitchRow, NumberInput, ThemeProvider, Touchable, withTheme, useAuthState,
|
|
4
4
|
/* Deprecated, needs fixing */
|
|
5
|
-
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, } from "@draftbit/core";
|
|
5
|
+
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, BottomSheet, } from "@draftbit/core";
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|