@draftbit/ui 46.4.4-7d0f5d.2 → 46.4.4-804547.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 +16 -9
- package/lib/module/index.js +3 -3
- package/lib/typescript/src/index.d.ts +992 -1005
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +16 -6
- package/src/index.js +1 -1
- package/src/index.tsx +2 -1
package/lib/commonjs/index.js
CHANGED
|
@@ -34,14 +34,7 @@ Object.defineProperty(exports, "Avatar", {
|
|
|
34
34
|
return _core.Avatar;
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
|
-
exports.Banner = exports.AvatarEdit = void 0;
|
|
38
|
-
Object.defineProperty(exports, "BottomSheet", {
|
|
39
|
-
enumerable: true,
|
|
40
|
-
get: function () {
|
|
41
|
-
return _core.BottomSheet;
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
exports.Card = exports.ButtonSolid = exports.ButtonOutline = exports.Button = void 0;
|
|
37
|
+
exports.Card = exports.ButtonSolid = exports.ButtonOutline = exports.Button = exports.Banner = exports.AvatarEdit = void 0;
|
|
45
38
|
Object.defineProperty(exports, "CardBlock", {
|
|
46
39
|
enumerable: true,
|
|
47
40
|
get: function () {
|
|
@@ -236,6 +229,18 @@ Object.defineProperty(exports, "SwitchRow", {
|
|
|
236
229
|
return _core.SwitchRow;
|
|
237
230
|
}
|
|
238
231
|
});
|
|
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
|
+
});
|
|
239
244
|
exports.TextField = void 0;
|
|
240
245
|
Object.defineProperty(exports, "ThemeProvider", {
|
|
241
246
|
enumerable: true,
|
|
@@ -268,15 +273,17 @@ Object.defineProperty(exports, "withTheme", {
|
|
|
268
273
|
return _core.withTheme;
|
|
269
274
|
}
|
|
270
275
|
});
|
|
276
|
+
|
|
271
277
|
var _native = require("@draftbit/native");
|
|
278
|
+
|
|
272
279
|
var _core = require("@draftbit/core");
|
|
280
|
+
|
|
273
281
|
/**
|
|
274
282
|
* Components with Injected Dependencies
|
|
275
283
|
*
|
|
276
284
|
* Inject a native module from `@draftbit/native` into these components for use
|
|
277
285
|
* is snack / expo / react-native
|
|
278
286
|
*/
|
|
279
|
-
|
|
280
287
|
const AvatarEdit = (0, _core.injectIcon)(_core.AvatarEdit, _native.Icon);
|
|
281
288
|
exports.AvatarEdit = AvatarEdit;
|
|
282
289
|
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,
|
|
4
|
+
/* Deprecated, needs fixing */
|
|
5
|
+
CardBlock, CardInline, ProgressBar, ProgressCircle, RowHeadlineImageCaption, ActionSheet, ActionSheetItem, ActionSheetCancel, Swiper, SwiperItem, TabView, TabViewItem } from "@draftbit/core";
|
|
6
6
|
/**
|
|
7
7
|
* Components with Injected Dependencies
|
|
8
8
|
*
|