@draftbit/ui 46.4.4-64c11a.2 → 46.4.4-65cd42.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
|
@@ -114,6 +114,12 @@ Object.defineProperty(exports, "LinearGradient", {
|
|
|
114
114
|
}
|
|
115
115
|
});
|
|
116
116
|
exports.Link = void 0;
|
|
117
|
+
Object.defineProperty(exports, "Markdown", {
|
|
118
|
+
enumerable: true,
|
|
119
|
+
get: function () {
|
|
120
|
+
return _core.Markdown;
|
|
121
|
+
}
|
|
122
|
+
});
|
|
117
123
|
Object.defineProperty(exports, "NumberInput", {
|
|
118
124
|
enumerable: true,
|
|
119
125
|
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, Markdown } from "@draftbit/core";
|
|
5
|
+
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|