@draftbit/core 46.9.1-7dbeee.2 → 46.9.1-b1bb0a.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.
Files changed (46) hide show
  1. package/lib/commonjs/components/Accordion/AccordionItem.js +23 -4
  2. package/lib/commonjs/components/BottomSheet/BottomSheet.js +89 -0
  3. package/lib/commonjs/components/BottomSheet/BottomSheetComponent.js +464 -0
  4. package/lib/commonjs/components/BottomSheet/index.js +13 -0
  5. package/lib/commonjs/components/CircleImage.js +15 -1
  6. package/lib/commonjs/components/Container.js +4 -15
  7. package/lib/commonjs/index.js +7 -7
  8. package/lib/commonjs/mappings/BottomSheet.js +75 -0
  9. package/lib/module/components/BottomSheet/BottomSheet.js +81 -0
  10. package/lib/module/components/BottomSheet/BottomSheetComponent.js +470 -0
  11. package/lib/module/components/BottomSheet/index.js +1 -0
  12. package/lib/module/index.js +1 -1
  13. package/lib/module/mappings/BottomSheet.js +68 -0
  14. package/lib/typescript/src/components/BottomSheet/BottomSheet.d.ts +20 -0
  15. package/lib/typescript/src/components/BottomSheet/BottomSheet.d.ts.map +1 -0
  16. package/lib/typescript/src/components/BottomSheet/BottomSheetComponent.d.ts +170 -0
  17. package/lib/typescript/src/components/BottomSheet/BottomSheetComponent.d.ts.map +1 -0
  18. package/lib/typescript/src/components/BottomSheet/index.d.ts +2 -0
  19. package/lib/typescript/src/components/BottomSheet/index.d.ts.map +1 -0
  20. package/lib/typescript/src/index.d.ts +1 -1
  21. package/lib/typescript/src/index.d.ts.map +1 -1
  22. package/lib/typescript/src/mappings/BottomSheet.d.ts +120 -0
  23. package/lib/typescript/src/mappings/BottomSheet.d.ts.map +1 -0
  24. package/package.json +6 -6
  25. package/src/components/BottomSheet/BottomSheet.js +57 -0
  26. package/src/components/BottomSheet/BottomSheet.tsx +121 -0
  27. package/src/components/BottomSheet/BottomSheetComponent.js +437 -0
  28. package/src/components/BottomSheet/BottomSheetComponent.tsx +895 -0
  29. package/src/components/BottomSheet/index.js +1 -0
  30. package/src/components/BottomSheet/index.ts +1 -0
  31. package/src/index.js +1 -1
  32. package/src/index.tsx +1 -1
  33. package/src/mappings/BottomSheet.js +64 -0
  34. package/src/mappings/BottomSheet.ts +78 -0
  35. package/lib/commonjs/components/YotubePlayer.js +0 -38
  36. package/lib/commonjs/mappings/YoutubePlayer.js +0 -44
  37. package/lib/module/components/YotubePlayer.js +0 -30
  38. package/lib/module/mappings/YoutubePlayer.js +0 -37
  39. package/lib/typescript/src/components/YotubePlayer.d.ts +0 -12
  40. package/lib/typescript/src/components/YotubePlayer.d.ts.map +0 -1
  41. package/lib/typescript/src/mappings/YoutubePlayer.d.ts +0 -37
  42. package/lib/typescript/src/mappings/YoutubePlayer.d.ts.map +0 -1
  43. package/src/components/YotubePlayer.js +0 -10
  44. package/src/components/YotubePlayer.tsx +0 -38
  45. package/src/mappings/YoutubePlayer.js +0 -37
  46. package/src/mappings/YoutubePlayer.ts +0 -43
@@ -0,0 +1 @@
1
+ export { default as BottomSheet } from "./BottomSheet";
@@ -0,0 +1 @@
1
+ export { default as BottomSheet } from "./BottomSheet";
package/src/index.js CHANGED
@@ -35,7 +35,7 @@ export { default as Shadow } from "./components/Shadow";
35
35
  export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
36
36
  export { TabView, TabViewItem } from "./components/TabView";
37
37
  export { default as Markdown } from "./components/Markdown";
38
- export { default as YoutubePlayer } from "./components/YotubePlayer";
38
+ export { BottomSheet } from "./components/BottomSheet";
39
39
  /* Deprecated: Fix or Delete! */
40
40
  export { default as DatePicker } from "./components/DatePicker/DatePicker";
41
41
  export { default as Picker } from "./components/Picker/Picker";
package/src/index.tsx CHANGED
@@ -58,7 +58,7 @@ export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
58
58
  export { TabView, TabViewItem } from "./components/TabView";
59
59
  export { default as Markdown } from "./components/Markdown";
60
60
 
61
- export { default as YoutubePlayer } from "./components/YotubePlayer";
61
+ export { BottomSheet } from "./components/BottomSheet";
62
62
 
63
63
  /* Deprecated: Fix or Delete! */
64
64
  export { default as DatePicker } from "./components/DatePicker/DatePicker";
@@ -0,0 +1,64 @@
1
+ import { COMPONENT_TYPES, createStaticBoolProp, CONTAINER_COMPONENT_STYLES_SECTIONS, Triggers, createActionProp, createColorProp, createStaticArrayProp, createStaticNumberProp, } from "@draftbit/types";
2
+ export const SEED_DATA = {
3
+ name: "Bottom Sheet",
4
+ tag: "BottomSheet",
5
+ description: "A draggable Bottom sheet that snaps to specific points. Renders children in ScrollView",
6
+ category: COMPONENT_TYPES.bottomsheet,
7
+ stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
8
+ layout: { paddingHorizontal: 16, paddingVertical: 10, flex: 1 },
9
+ triggers: [Triggers.OnSettle],
10
+ props: {
11
+ onSettle: createActionProp({
12
+ label: "On settle",
13
+ description: "Action to execute when sheet settles on a snap point",
14
+ }),
15
+ snapPoints: createStaticArrayProp({
16
+ label: "Snap points",
17
+ description: "An array of numerical values (that represent distance from the top) where bottom sheet can snap to place. Accepts numbers and percentages (minimum 2 snap points)",
18
+ defaultValue: ["10%", "50%", "80%"],
19
+ }),
20
+ initialSnapIndex: createStaticNumberProp({
21
+ label: "Initial snap index",
22
+ description: "Index of the snap point to be used as the initial point",
23
+ defaultValue: 0,
24
+ required: false,
25
+ }),
26
+ showHandle: createStaticBoolProp({
27
+ label: "Show handle",
28
+ description: "Whether to show the top handle or not",
29
+ defaultValue: true,
30
+ }),
31
+ handleColor: createColorProp({
32
+ label: "Handle color",
33
+ description: "Color of the top handle",
34
+ defaultValue: "divider",
35
+ }),
36
+ topBorderRadius: createStaticNumberProp({
37
+ label: "Top border radius",
38
+ description: "Border radius of top corners",
39
+ defaultValue: 20,
40
+ required: false,
41
+ }),
42
+ borderWidth: createStaticNumberProp({
43
+ label: "Border width",
44
+ description: "Width of bottom sheet borders",
45
+ defaultValue: 1,
46
+ required: false,
47
+ }),
48
+ borderColor: createColorProp({
49
+ label: "Border color",
50
+ description: "Color of bottom sheet borders",
51
+ defaultValue: "divider",
52
+ }),
53
+ showsVerticalScrollIndicator: createStaticBoolProp({
54
+ label: "Show Vertical Scroll Indicator",
55
+ description: "When true, shows a vertical scroll indicator. The default value is true.",
56
+ defaultValue: true,
57
+ }),
58
+ bounces: createStaticBoolProp({
59
+ label: "Bounce",
60
+ description: "When true, the scroll view bounces when it reaches the end of the content if the content is larger then the scroll view along the axis of the scroll direction.",
61
+ defaultValue: true,
62
+ }),
63
+ },
64
+ };
@@ -0,0 +1,78 @@
1
+ import {
2
+ COMPONENT_TYPES,
3
+ createStaticBoolProp,
4
+ CONTAINER_COMPONENT_STYLES_SECTIONS,
5
+ Triggers,
6
+ createActionProp,
7
+ createColorProp,
8
+ createStaticArrayProp,
9
+ createStaticNumberProp,
10
+ } from "@draftbit/types";
11
+
12
+ export const SEED_DATA = {
13
+ name: "Bottom Sheet",
14
+ tag: "BottomSheet",
15
+ description:
16
+ "A draggable Bottom sheet that snaps to specific points. Renders children in ScrollView",
17
+ category: COMPONENT_TYPES.bottomsheet,
18
+ stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
19
+ layout: { paddingHorizontal: 16, paddingVertical: 10, flex: 1 },
20
+ triggers: [Triggers.OnSettle],
21
+ props: {
22
+ onSettle: createActionProp({
23
+ label: "On settle",
24
+ description: "Action to execute when sheet settles on a snap point",
25
+ }),
26
+ snapPoints: createStaticArrayProp({
27
+ label: "Snap points",
28
+ description:
29
+ "An array of numerical values (that represent distance from the top) where bottom sheet can snap to place. Accepts numbers and percentages (minimum 2 snap points)",
30
+ defaultValue: ["10%", "50%", "80%"],
31
+ }),
32
+ initialSnapIndex: createStaticNumberProp({
33
+ label: "Initial snap index",
34
+ description: "Index of the snap point to be used as the initial point",
35
+ defaultValue: 0,
36
+ required: false,
37
+ }),
38
+ showHandle: createStaticBoolProp({
39
+ label: "Show handle",
40
+ description: "Whether to show the top handle or not",
41
+ defaultValue: true,
42
+ }),
43
+ handleColor: createColorProp({
44
+ label: "Handle color",
45
+ description: "Color of the top handle",
46
+ defaultValue: "divider",
47
+ }),
48
+ topBorderRadius: createStaticNumberProp({
49
+ label: "Top border radius",
50
+ description: "Border radius of top corners",
51
+ defaultValue: 20,
52
+ required: false,
53
+ }),
54
+ borderWidth: createStaticNumberProp({
55
+ label: "Border width",
56
+ description: "Width of bottom sheet borders",
57
+ defaultValue: 1,
58
+ required: false,
59
+ }),
60
+ borderColor: createColorProp({
61
+ label: "Border color",
62
+ description: "Color of bottom sheet borders",
63
+ defaultValue: "divider",
64
+ }),
65
+ showsVerticalScrollIndicator: createStaticBoolProp({
66
+ label: "Show Vertical Scroll Indicator",
67
+ description:
68
+ "When true, shows a vertical scroll indicator. The default value is true.",
69
+ defaultValue: true,
70
+ }),
71
+ bounces: createStaticBoolProp({
72
+ label: "Bounce",
73
+ description:
74
+ "When true, the scroll view bounces when it reaches the end of the content if the content is larger then the scroll view along the axis of the scroll direction.",
75
+ defaultValue: true,
76
+ }),
77
+ },
78
+ };
@@ -1,38 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNativeYoutubeIframe = _interopRequireDefault(require("react-native-youtube-iframe"));
9
- var _utilities = require("../utilities");
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- const YoutubePlayer = _ref => {
12
- let {
13
- videoId,
14
- playlist,
15
- mute = false,
16
- autoplay = false,
17
- style
18
- } = _ref;
19
- const {
20
- viewStyles
21
- } = (0, _utilities.extractStyles)(style);
22
- const {
23
- height,
24
- width
25
- } = viewStyles;
26
- const defaultVideoId = "nwMUpDESXrI";
27
- return /*#__PURE__*/_react.default.createElement(_reactNativeYoutubeIframe.default, {
28
- height: height,
29
- width: width,
30
- play: autoplay,
31
- videoId: !videoId && !playlist ? defaultVideoId : videoId,
32
- playList: playlist,
33
- mute: mute,
34
- webViewStyle: style
35
- });
36
- };
37
- var _default = YoutubePlayer;
38
- exports.default = _default;
@@ -1,44 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.SEED_DATA = void 0;
7
- var _types = require("@draftbit/types");
8
- const SEED_DATA = {
9
- name: "Youtube Player",
10
- tag: "YoutubePlayer",
11
- description: "Plays a youtube video form a Youtube video or playlist id",
12
- doc_link: "https://lonelycpp.github.io/react-native-youtube-iframe",
13
- code_link: "https://github.com/LonelyCpp/react-native-youtube-iframe",
14
- category: _types.COMPONENT_TYPES.media,
15
- stylesPanelSections: _types.BLOCK_STYLES_SECTIONS,
16
- layout: {
17
- height: 250
18
- },
19
- props: {
20
- videoId: (0, _types.createTextProp)({
21
- label: "Video ID",
22
- description: "VideoId of the Youtube video.",
23
- defaultValue: null
24
- }),
25
- playlist: (0, _types.createTextProp)({
26
- label: "Playlist",
27
- description: "Playlist of the Youtube videos.",
28
- defaultValue: null
29
- }),
30
- mute: (0, _types.createStaticBoolProp)({
31
- label: "Mute Audio",
32
- description: "Mute the audio of the video.",
33
- defaultValue: false,
34
- required: false
35
- }),
36
- autoplay: (0, _types.createStaticBoolProp)({
37
- label: "Auto Play",
38
- description: "Autoplay the video on load.",
39
- defaultValue: false,
40
- required: false
41
- })
42
- }
43
- };
44
- exports.SEED_DATA = SEED_DATA;
@@ -1,30 +0,0 @@
1
- import React from "react";
2
- import YoutubePlayerComponent from "react-native-youtube-iframe";
3
- import { extractStyles } from "../utilities";
4
- const YoutubePlayer = _ref => {
5
- let {
6
- videoId,
7
- playlist,
8
- mute = false,
9
- autoplay = false,
10
- style
11
- } = _ref;
12
- const {
13
- viewStyles
14
- } = extractStyles(style);
15
- const {
16
- height,
17
- width
18
- } = viewStyles;
19
- const defaultVideoId = "nwMUpDESXrI";
20
- return /*#__PURE__*/React.createElement(YoutubePlayerComponent, {
21
- height: height,
22
- width: width,
23
- play: autoplay,
24
- videoId: !videoId && !playlist ? defaultVideoId : videoId,
25
- playList: playlist,
26
- mute: mute,
27
- webViewStyle: style
28
- });
29
- };
30
- export default YoutubePlayer;
@@ -1,37 +0,0 @@
1
- import { BLOCK_STYLES_SECTIONS, COMPONENT_TYPES, createStaticBoolProp, createTextProp } from "@draftbit/types";
2
- export const SEED_DATA = {
3
- name: "Youtube Player",
4
- tag: "YoutubePlayer",
5
- description: "Plays a youtube video form a Youtube video or playlist id",
6
- doc_link: "https://lonelycpp.github.io/react-native-youtube-iframe",
7
- code_link: "https://github.com/LonelyCpp/react-native-youtube-iframe",
8
- category: COMPONENT_TYPES.media,
9
- stylesPanelSections: BLOCK_STYLES_SECTIONS,
10
- layout: {
11
- height: 250
12
- },
13
- props: {
14
- videoId: createTextProp({
15
- label: "Video ID",
16
- description: "VideoId of the Youtube video.",
17
- defaultValue: null
18
- }),
19
- playlist: createTextProp({
20
- label: "Playlist",
21
- description: "Playlist of the Youtube videos.",
22
- defaultValue: null
23
- }),
24
- mute: createStaticBoolProp({
25
- label: "Mute Audio",
26
- description: "Mute the audio of the video.",
27
- defaultValue: false,
28
- required: false
29
- }),
30
- autoplay: createStaticBoolProp({
31
- label: "Auto Play",
32
- description: "Autoplay the video on load.",
33
- defaultValue: false,
34
- required: false
35
- })
36
- }
37
- };
@@ -1,12 +0,0 @@
1
- import React from "react";
2
- import { StyleProp, ViewStyle } from "react-native";
3
- interface YoutubePlayerProps {
4
- videoId?: string;
5
- playlist?: string;
6
- mute?: boolean;
7
- autoplay?: boolean;
8
- style?: StyleProp<ViewStyle>;
9
- }
10
- declare const YoutubePlayer: React.FC<YoutubePlayerProps>;
11
- export default YoutubePlayer;
12
- //# sourceMappingURL=YotubePlayer.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"YotubePlayer.d.ts","sourceRoot":"","sources":["../../../../src/components/YotubePlayer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAIpD,UAAU,kBAAkB;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAsB/C,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -1,37 +0,0 @@
1
- export declare const SEED_DATA: {
2
- name: string;
3
- tag: string;
4
- description: string;
5
- doc_link: string;
6
- code_link: string;
7
- category: string;
8
- stylesPanelSections: string[];
9
- layout: {
10
- height: number;
11
- };
12
- props: {
13
- videoId: any;
14
- playlist: any;
15
- mute: {
16
- label: string;
17
- description: string;
18
- formType: string;
19
- propType: string;
20
- defaultValue: boolean;
21
- editable: boolean;
22
- required: boolean;
23
- group: string;
24
- };
25
- autoplay: {
26
- label: string;
27
- description: string;
28
- formType: string;
29
- propType: string;
30
- defaultValue: boolean;
31
- editable: boolean;
32
- required: boolean;
33
- group: string;
34
- };
35
- };
36
- };
37
- //# sourceMappingURL=YoutubePlayer.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"YoutubePlayer.d.ts","sourceRoot":"","sources":["../../../../src/mappings/YoutubePlayer.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCrB,CAAC"}
@@ -1,10 +0,0 @@
1
- import React from "react";
2
- import YoutubePlayerComponent from "react-native-youtube-iframe";
3
- import { extractStyles } from "../utilities";
4
- const YoutubePlayer = ({ videoId, playlist, mute = false, autoplay = false, style, }) => {
5
- const { viewStyles } = extractStyles(style);
6
- const { height, width } = viewStyles;
7
- const defaultVideoId = "nwMUpDESXrI";
8
- return (React.createElement(YoutubePlayerComponent, { height: height, width: width, play: autoplay, videoId: !videoId && !playlist ? defaultVideoId : videoId, playList: playlist, mute: mute, webViewStyle: style }));
9
- };
10
- export default YoutubePlayer;
@@ -1,38 +0,0 @@
1
- import React from "react";
2
- import { StyleProp, ViewStyle } from "react-native";
3
- import YoutubePlayerComponent from "react-native-youtube-iframe";
4
- import { extractStyles } from "../utilities";
5
-
6
- interface YoutubePlayerProps {
7
- videoId?: string;
8
- playlist?: string;
9
- mute?: boolean;
10
- autoplay?: boolean;
11
- style?: StyleProp<ViewStyle>;
12
- }
13
-
14
- const YoutubePlayer: React.FC<YoutubePlayerProps> = ({
15
- videoId,
16
- playlist,
17
- mute = false,
18
- autoplay = false,
19
- style,
20
- }) => {
21
- const { viewStyles } = extractStyles(style);
22
- const { height, width } = viewStyles;
23
- const defaultVideoId = "nwMUpDESXrI";
24
-
25
- return (
26
- <YoutubePlayerComponent
27
- height={height}
28
- width={width}
29
- play={autoplay}
30
- videoId={!videoId && !playlist ? defaultVideoId : videoId}
31
- playList={playlist}
32
- mute={mute}
33
- webViewStyle={style}
34
- />
35
- );
36
- };
37
-
38
- export default YoutubePlayer;
@@ -1,37 +0,0 @@
1
- import { BLOCK_STYLES_SECTIONS, COMPONENT_TYPES, createStaticBoolProp, createTextProp, } from "@draftbit/types";
2
- export const SEED_DATA = {
3
- name: "Youtube Player",
4
- tag: "YoutubePlayer",
5
- description: "Plays a youtube video form a Youtube video or playlist id",
6
- doc_link: "https://lonelycpp.github.io/react-native-youtube-iframe",
7
- code_link: "https://github.com/LonelyCpp/react-native-youtube-iframe",
8
- category: COMPONENT_TYPES.media,
9
- stylesPanelSections: BLOCK_STYLES_SECTIONS,
10
- layout: {
11
- height: 250,
12
- },
13
- props: {
14
- videoId: createTextProp({
15
- label: "Video ID",
16
- description: "VideoId of the Youtube video.",
17
- defaultValue: null,
18
- }),
19
- playlist: createTextProp({
20
- label: "Playlist",
21
- description: "Playlist of the Youtube videos.",
22
- defaultValue: null,
23
- }),
24
- mute: createStaticBoolProp({
25
- label: "Mute Audio",
26
- description: "Mute the audio of the video.",
27
- defaultValue: false,
28
- required: false,
29
- }),
30
- autoplay: createStaticBoolProp({
31
- label: "Auto Play",
32
- description: "Autoplay the video on load.",
33
- defaultValue: false,
34
- required: false,
35
- }),
36
- },
37
- };
@@ -1,43 +0,0 @@
1
- import {
2
- BLOCK_STYLES_SECTIONS,
3
- COMPONENT_TYPES,
4
- createStaticBoolProp,
5
- createTextProp,
6
- } from "@draftbit/types";
7
-
8
- export const SEED_DATA = {
9
- name: "Youtube Player",
10
- tag: "YoutubePlayer",
11
- description: "Plays a youtube video form a Youtube video or playlist id",
12
- doc_link: "https://lonelycpp.github.io/react-native-youtube-iframe",
13
- code_link: "https://github.com/LonelyCpp/react-native-youtube-iframe",
14
- category: COMPONENT_TYPES.media,
15
- stylesPanelSections: BLOCK_STYLES_SECTIONS,
16
- layout: {
17
- height: 250,
18
- },
19
- props: {
20
- videoId: createTextProp({
21
- label: "Video ID",
22
- description: "VideoId of the Youtube video.",
23
- defaultValue: null,
24
- }),
25
- playlist: createTextProp({
26
- label: "Playlist",
27
- description: "Playlist of the Youtube videos.",
28
- defaultValue: null,
29
- }),
30
- mute: createStaticBoolProp({
31
- label: "Mute Audio",
32
- description: "Mute the audio of the video.",
33
- defaultValue: false,
34
- required: false,
35
- }),
36
- autoplay: createStaticBoolProp({
37
- label: "Auto Play",
38
- description: "Autoplay the video on load.",
39
- defaultValue: false,
40
- required: false,
41
- }),
42
- },
43
- };