@draftbit/ui 46.4.4-29778d.2 → 46.4.4-2fce56.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
CHANGED
|
@@ -261,15 +261,17 @@ Object.defineProperty(exports, "withTheme", {
|
|
|
261
261
|
return _core.withTheme;
|
|
262
262
|
}
|
|
263
263
|
});
|
|
264
|
+
|
|
264
265
|
var _native = require("@draftbit/native");
|
|
266
|
+
|
|
265
267
|
var _core = require("@draftbit/core");
|
|
268
|
+
|
|
266
269
|
/**
|
|
267
270
|
* Components with Injected Dependencies
|
|
268
271
|
*
|
|
269
272
|
* Inject a native module from `@draftbit/native` into these components for use
|
|
270
273
|
* is snack / expo / react-native
|
|
271
274
|
*/
|
|
272
|
-
|
|
273
275
|
const AvatarEdit = (0, _core.injectIcon)(_core.AvatarEdit, _native.Icon);
|
|
274
276
|
exports.AvatarEdit = AvatarEdit;
|
|
275
277
|
const Banner = (0, _core.injectIcon)(_core.Banner, _native.Icon);
|
|
@@ -329,5 +331,4 @@ exports.Slider = Slider;
|
|
|
329
331
|
const AccordionGroup = (0, _core.injectIcon)(_core.AccordionGroup, _native.Icon);
|
|
330
332
|
exports.AccordionGroup = AccordionGroup;
|
|
331
333
|
const AccordionItem = (0, _core.injectIcon)(_core.AccordionItem, _native.Icon);
|
|
332
|
-
exports.AccordionItem = AccordionItem;
|
|
333
|
-
//# sourceMappingURL=index.js.map
|
|
334
|
+
exports.AccordionItem = AccordionItem;
|
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,
|
|
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 */
|
|
4
5
|
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem } from "@draftbit/core";
|
|
5
|
-
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|
|
@@ -40,5 +40,4 @@ export const TextField = injectIcon(BaseTextField, Icon);
|
|
|
40
40
|
export const ToggleButton = injectIcon(BaseToggleButton, Icon);
|
|
41
41
|
export const Slider = injectIcon(BaseSlider, Icon);
|
|
42
42
|
export const AccordionGroup = injectIcon(BaseAccordionGroup, Icon);
|
|
43
|
-
export const AccordionItem = injectIcon(BaseAccordionItem, Icon);
|
|
44
|
-
//# sourceMappingURL=index.js.map
|
|
43
|
+
export const AccordionItem = injectIcon(BaseAccordionItem, Icon);
|