@draftbit/ui 46.4.4-7f27fb.2 → 46.4.4-86483e.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 -15
- 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 -2
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 () {
|
|
@@ -229,18 +235,6 @@ Object.defineProperty(exports, "SwitchRow", {
|
|
|
229
235
|
return _core.SwitchRow;
|
|
230
236
|
}
|
|
231
237
|
});
|
|
232
|
-
Object.defineProperty(exports, "TabView", {
|
|
233
|
-
enumerable: true,
|
|
234
|
-
get: function () {
|
|
235
|
-
return _core.TabView;
|
|
236
|
-
}
|
|
237
|
-
});
|
|
238
|
-
Object.defineProperty(exports, "TabViewItem", {
|
|
239
|
-
enumerable: true,
|
|
240
|
-
get: function () {
|
|
241
|
-
return _core.TabViewItem;
|
|
242
|
-
}
|
|
243
|
-
});
|
|
244
238
|
exports.TextField = void 0;
|
|
245
239
|
Object.defineProperty(exports, "ThemeProvider", {
|
|
246
240
|
enumerable: true,
|
|
@@ -273,17 +267,15 @@ Object.defineProperty(exports, "withTheme", {
|
|
|
273
267
|
return _core.withTheme;
|
|
274
268
|
}
|
|
275
269
|
});
|
|
276
|
-
|
|
277
270
|
var _native = require("@draftbit/native");
|
|
278
|
-
|
|
279
271
|
var _core = require("@draftbit/core");
|
|
280
|
-
|
|
281
272
|
/**
|
|
282
273
|
* Components with Injected Dependencies
|
|
283
274
|
*
|
|
284
275
|
* Inject a native module from `@draftbit/native` into these components for use
|
|
285
276
|
* is snack / expo / react-native
|
|
286
277
|
*/
|
|
278
|
+
|
|
287
279
|
const AvatarEdit = (0, _core.injectIcon)(_core.AvatarEdit, _native.Icon);
|
|
288
280
|
exports.AvatarEdit = AvatarEdit;
|
|
289
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
|
*
|