@draftbit/ui 46.4.4-11985a.2 → 46.4.4-1c8d6e.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 +1 -3
- package/lib/module/index.js +2 -2
- package/lib/typescript/src/index.d.ts +988 -988
- package/package.json +4 -4
package/lib/commonjs/index.js
CHANGED
|
@@ -297,17 +297,15 @@ Object.defineProperty(exports, "withTheme", {
|
|
|
297
297
|
return _core.withTheme;
|
|
298
298
|
}
|
|
299
299
|
});
|
|
300
|
-
|
|
301
300
|
var _native = require("@draftbit/native");
|
|
302
|
-
|
|
303
301
|
var _core = require("@draftbit/core");
|
|
304
|
-
|
|
305
302
|
/**
|
|
306
303
|
* Components with Injected Dependencies
|
|
307
304
|
*
|
|
308
305
|
* Inject a native module from `@draftbit/native` into these components for use
|
|
309
306
|
* is snack / expo / react-native
|
|
310
307
|
*/
|
|
308
|
+
|
|
311
309
|
const AvatarEdit = (0, _core.injectIcon)(_core.AvatarEdit, _native.Icon);
|
|
312
310
|
exports.AvatarEdit = AvatarEdit;
|
|
313
311
|
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
|
-
/* Deprecated, needs fixing */
|
|
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 */
|
|
5
4
|
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, Table, TableHeader, TableRow, TablePaginator, TableCell, TableTitle } from "@draftbit/core";
|
|
5
|
+
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|