@draftbit/ui 46.4.4-682e48.2 → 46.4.4-6af1ae.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 +7 -3
- package/lib/module/index.js +3 -3
- package/lib/typescript/src/index.d.ts +989 -989
- package/package.json +4 -4
- package/src/index.js +1 -1
- package/src/index.tsx +1 -0
package/lib/commonjs/index.js
CHANGED
|
@@ -249,6 +249,12 @@ Object.defineProperty(exports, "WebView", {
|
|
|
249
249
|
return _native.WebView;
|
|
250
250
|
}
|
|
251
251
|
});
|
|
252
|
+
Object.defineProperty(exports, "Youtube", {
|
|
253
|
+
enumerable: true,
|
|
254
|
+
get: function () {
|
|
255
|
+
return _core.Youtube;
|
|
256
|
+
}
|
|
257
|
+
});
|
|
252
258
|
Object.defineProperty(exports, "useAuthState", {
|
|
253
259
|
enumerable: true,
|
|
254
260
|
get: function () {
|
|
@@ -261,17 +267,15 @@ Object.defineProperty(exports, "withTheme", {
|
|
|
261
267
|
return _core.withTheme;
|
|
262
268
|
}
|
|
263
269
|
});
|
|
264
|
-
|
|
265
270
|
var _native = require("@draftbit/native");
|
|
266
|
-
|
|
267
271
|
var _core = require("@draftbit/core");
|
|
268
|
-
|
|
269
272
|
/**
|
|
270
273
|
* Components with Injected Dependencies
|
|
271
274
|
*
|
|
272
275
|
* Inject a native module from `@draftbit/native` into these components for use
|
|
273
276
|
* is snack / expo / react-native
|
|
274
277
|
*/
|
|
278
|
+
|
|
275
279
|
const AvatarEdit = (0, _core.injectIcon)(_core.AvatarEdit, _native.Icon);
|
|
276
280
|
exports.AvatarEdit = AvatarEdit;
|
|
277
281
|
const Banner = (0, _core.injectIcon)(_core.Banner, _native.Icon);
|
package/lib/module/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Icon } from "@draftbit/native";
|
|
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,
|
|
4
|
-
|
|
5
|
-
|
|
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, Youtube } from "@draftbit/core";
|
|
5
|
+
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|