@draftbit/core 46.2.4-6d236f.2 → 46.2.4-7028ac.5

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 (48) hide show
  1. package/lib/commonjs/components/CardContainer.js +15 -5
  2. package/lib/commonjs/components/CircleImage.js +16 -2
  3. package/lib/commonjs/components/Config.js +1 -1
  4. package/lib/commonjs/components/DeprecatedButton.js +22 -4
  5. package/lib/commonjs/components/IconButton.js +22 -5
  6. package/lib/commonjs/components/Image.js +16 -3
  7. package/lib/commonjs/components/Portal/Portal.js +12 -3
  8. package/lib/commonjs/components/Portal/PortalConsumer.js +10 -8
  9. package/lib/commonjs/components/RadioButton/RadioButtonRow.js +24 -6
  10. package/lib/commonjs/components/RadioButton/context.js +1 -1
  11. package/lib/commonjs/components/SVG.js +4 -5
  12. package/lib/commonjs/components/StarRating.js +1 -0
  13. package/lib/commonjs/components/Switch.js +23 -10
  14. package/lib/commonjs/constants.js +1 -1
  15. package/lib/commonjs/mappings/MapView.js +1 -0
  16. package/lib/commonjs/mappings/SVG.js +3 -1
  17. package/lib/module/components/Banner.js +24 -4
  18. package/lib/module/components/CardBlock.js +15 -5
  19. package/lib/module/components/Checkbox/CheckboxGroup.js +17 -3
  20. package/lib/module/components/Config.js +1 -1
  21. package/lib/module/components/DeprecatedCardWrapper.js +19 -2
  22. package/lib/module/components/IconButton.js +22 -5
  23. package/lib/module/components/Picker/PickerComponent.android.js +23 -5
  24. package/lib/module/components/Picker/PickerComponent.web.js +23 -5
  25. package/lib/module/components/ProgressBar.js +23 -7
  26. package/lib/module/components/SVG.js +4 -5
  27. package/lib/module/components/StarRating.js +25 -5
  28. package/lib/module/components/Surface.js +16 -2
  29. package/lib/module/components/Text.js +33 -10
  30. package/lib/module/components/TextField.js +62 -30
  31. package/lib/module/components/Touchable.js +18 -2
  32. package/lib/module/constants.js +1 -0
  33. package/lib/module/mappings/MapView.js +1 -0
  34. package/lib/module/mappings/SVG.js +4 -2
  35. package/lib/typescript/src/components/SVG.d.ts +2 -2
  36. package/lib/typescript/src/mappings/MapView.d.ts +1 -0
  37. package/lib/typescript/src/mappings/SVG.d.ts +2 -0
  38. package/package.json +3 -3
  39. package/src/components/Config.js +1 -1
  40. package/src/components/Config.ts +1 -1
  41. package/src/components/SVG.js +4 -5
  42. package/src/components/SVG.tsx +7 -7
  43. package/src/components/StarRating.js +1 -0
  44. package/src/components/StarRating.tsx +1 -0
  45. package/src/mappings/MapView.js +1 -0
  46. package/src/mappings/MapView.ts +1 -0
  47. package/src/mappings/SVG.js +9 -2
  48. package/src/mappings/SVG.ts +13 -2
@@ -1,14 +1,16 @@
1
- import { COMPONENT_TYPES, createSvgProp } from "@draftbit/types";
1
+ import { COMPONENT_TYPES, createSVGProp, StylesPanelSections } from "@draftbit/types";
2
2
  export const SEED_DATA = {
3
3
  name: "SVG",
4
4
  tag: "SVG",
5
5
  description: "An SVG component",
6
+ packageName: "@draftbit/core",
6
7
  category: COMPONENT_TYPES.media,
7
8
  layout: {
8
9
  width: 100,
9
10
  height: 100
10
11
  },
12
+ stylesPanelSections: [StylesPanelSections.Size, StylesPanelSections.Margins, StylesPanelSections.Position, StylesPanelSections.Effects],
11
13
  props: {
12
- source: createSvgProp()
14
+ source: createSVGProp()
13
15
  }
14
16
  };
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
1
+ import * as React from "react";
2
2
  import { StyleProp, ImageStyle } from "react-native";
3
3
  declare type SVGComponentProps = {
4
4
  source: string;
5
5
  style?: StyleProp<ImageStyle>;
6
6
  };
7
- declare const SVG: ({ source, style }: SVGComponentProps) => JSX.Element;
7
+ declare const SVG: React.FC<React.PropsWithChildren<SVGComponentProps>>;
8
8
  export default SVG;
@@ -56,6 +56,7 @@ export declare const SEED_DATA: {
56
56
  label: string;
57
57
  description: string;
58
58
  group: string;
59
+ editable: boolean;
59
60
  formType: string;
60
61
  propType: string;
61
62
  required: boolean;
@@ -2,11 +2,13 @@ export declare const SEED_DATA: {
2
2
  name: string;
3
3
  tag: string;
4
4
  description: string;
5
+ packageName: string;
5
6
  category: string;
6
7
  layout: {
7
8
  width: number;
8
9
  height: number;
9
10
  };
11
+ stylesPanelSections: string[];
10
12
  props: {
11
13
  source: {
12
14
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "46.2.4-6d236f.2+6d236f84",
3
+ "version": "46.2.4-7028ac.5+7028ac76",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -41,7 +41,7 @@
41
41
  "dependencies": {
42
42
  "@date-io/date-fns": "^1.3.13",
43
43
  "@draftbit/react-theme-provider": "^2.1.1",
44
- "@draftbit/types": "^46.2.4-6d236f.2+6d236f84",
44
+ "@draftbit/types": "^46.2.4-7028ac.5+7028ac76",
45
45
  "@material-ui/core": "^4.11.0",
46
46
  "@material-ui/pickers": "^3.2.10",
47
47
  "@react-native-community/slider": "4.2.3",
@@ -80,5 +80,5 @@
80
80
  ]
81
81
  ]
82
82
  },
83
- "gitHead": "6d236f84cb1a396d845ddd34da0fcd8fba3bc950"
83
+ "gitHead": "7028ac766b962df851f034e308568aee4df4376a"
84
84
  }
@@ -42,7 +42,7 @@ export default {
42
42
  cardIconElevation: 1,
43
43
  placeholderImageURL: "https://static.draftbit.com/images/placeholder-image" + getExtension(),
44
44
  getPlaceholderImageUrl: (size) => buildImageUrl({ width: size.width, height: size.height }, "image-placeholder_1"),
45
- placeholderSvgURL: "https://static.draftbit.com/images/placeholder-svg.svg",
45
+ placeholderSvgURL: "https://static.draftbit.com/images/placeholder-image.svg",
46
46
  squareImageUrl: buildImageUrl({ width: 100, height: 100 }, "Avatar"),
47
47
  FABSize: 40,
48
48
  FABBorderRadius: 20,
@@ -60,7 +60,7 @@ export default {
60
60
  { width: size.width, height: size.height },
61
61
  "image-placeholder_1"
62
62
  ),
63
- placeholderSvgURL: "https://static.draftbit.com/images/placeholder-svg.svg",
63
+ placeholderSvgURL: "https://static.draftbit.com/images/placeholder-image.svg",
64
64
  squareImageUrl: buildImageUrl({ width: 100, height: 100 }, "Avatar"),
65
65
  FABSize: 40,
66
66
  FABBorderRadius: 20,
@@ -2,13 +2,12 @@ import * as React from "react";
2
2
  import { View, Platform, Image } from "react-native";
3
3
  import { SvgUri } from "react-native-svg";
4
4
  import Config from "./Config";
5
- const SVG = ({ source, style }) => {
6
- let svgSource = source === null || source === undefined ? Config.placeholderSvgURL : source;
5
+ const SVG = ({ source = Config.placeholderSvgURL, style, }) => {
7
6
  return (React.createElement(React.Fragment, null,
8
7
  Platform.OS === "ios" && (React.createElement(View, { style: style },
9
- React.createElement(SvgUri, { width: "100%", height: "100%", uri: svgSource }))),
8
+ React.createElement(SvgUri, { width: "100%", height: "100%", uri: source }))),
10
9
  Platform.OS === "android" && (React.createElement(View, { style: style },
11
- React.createElement(SvgUri, { width: "100%", height: "100%", uri: svgSource }))),
12
- Platform.OS === "web" && (React.createElement(Image, { style: style, source: { uri: svgSource } }))));
10
+ React.createElement(SvgUri, { width: "100%", height: "100%", uri: source }))),
11
+ Platform.OS === "web" && (React.createElement(Image, { style: style, source: { uri: source } }))));
13
12
  };
14
13
  export default SVG;
@@ -9,24 +9,24 @@ type SVGComponentProps = {
9
9
  style?: StyleProp<ImageStyle>;
10
10
  };
11
11
 
12
- const SVG = ({ source, style }: SVGComponentProps) => {
13
- let svgSource =
14
- source === null || source === undefined ? Config.placeholderSvgURL : source;
15
-
12
+ const SVG: React.FC<React.PropsWithChildren<SVGComponentProps>> = ({
13
+ source = Config.placeholderSvgURL,
14
+ style,
15
+ }) => {
16
16
  return (
17
17
  <>
18
18
  {Platform.OS === "ios" && (
19
19
  <View style={style}>
20
- <SvgUri width="100%" height="100%" uri={svgSource} />
20
+ <SvgUri width="100%" height="100%" uri={source} />
21
21
  </View>
22
22
  )}
23
23
  {Platform.OS === "android" && (
24
24
  <View style={style}>
25
- <SvgUri width="100%" height="100%" uri={svgSource} />
25
+ <SvgUri width="100%" height="100%" uri={source} />
26
26
  </View>
27
27
  )}
28
28
  {Platform.OS === "web" && (
29
- <Image style={style} source={{ uri: svgSource }} />
29
+ <Image style={style} source={{ uri: source }} />
30
30
  )}
31
31
  </>
32
32
  );
@@ -27,6 +27,7 @@ const StarRating = ({ Icon, starSize = 16, maxStars = 5, rating = 0, defaultValu
27
27
  React.createElement(Pressable, { style: styles.pressable, onPress: () => ratingHandler(i + 1) }))))))));
28
28
  };
29
29
  const styles = StyleSheet.create({
30
+ //comment!
30
31
  container: {
31
32
  flexDirection: "row",
32
33
  alignItems: "center",
@@ -94,6 +94,7 @@ const StarRating: React.FC<React.PropsWithChildren<Props>> = ({
94
94
  };
95
95
 
96
96
  const styles = StyleSheet.create({
97
+ //comment!
97
98
  container: {
98
99
  flexDirection: "row",
99
100
  alignItems: "center",
@@ -53,6 +53,7 @@ export const SEED_DATA = {
53
53
  label: "Map Type",
54
54
  description: "The type of map to show",
55
55
  group: GROUPS.basic,
56
+ editable: true,
56
57
  formType: FORM_TYPES.flatArray,
57
58
  propType: PROP_TYPES.STRING,
58
59
  required: false,
@@ -63,6 +63,7 @@ export const SEED_DATA = {
63
63
  label: "Map Type",
64
64
  description: "The type of map to show",
65
65
  group: GROUPS.basic,
66
+ editable: true,
66
67
  formType: FORM_TYPES.flatArray,
67
68
  propType: PROP_TYPES.STRING,
68
69
  required: false,
@@ -1,14 +1,21 @@
1
- import { COMPONENT_TYPES, createSvgProp } from "@draftbit/types";
1
+ import { COMPONENT_TYPES, createSVGProp, StylesPanelSections, } from "@draftbit/types";
2
2
  export const SEED_DATA = {
3
3
  name: "SVG",
4
4
  tag: "SVG",
5
5
  description: "An SVG component",
6
+ packageName: "@draftbit/core",
6
7
  category: COMPONENT_TYPES.media,
7
8
  layout: {
8
9
  width: 100,
9
10
  height: 100,
10
11
  },
12
+ stylesPanelSections: [
13
+ StylesPanelSections.Size,
14
+ StylesPanelSections.Margins,
15
+ StylesPanelSections.Position,
16
+ StylesPanelSections.Effects,
17
+ ],
11
18
  props: {
12
- source: createSvgProp(),
19
+ source: createSVGProp(),
13
20
  },
14
21
  };
@@ -1,15 +1,26 @@
1
- import { COMPONENT_TYPES, createSvgProp } from "@draftbit/types";
1
+ import {
2
+ COMPONENT_TYPES,
3
+ createSVGProp,
4
+ StylesPanelSections,
5
+ } from "@draftbit/types";
2
6
 
3
7
  export const SEED_DATA = {
4
8
  name: "SVG",
5
9
  tag: "SVG",
6
10
  description: "An SVG component",
11
+ packageName: "@draftbit/core",
7
12
  category: COMPONENT_TYPES.media,
8
13
  layout: {
9
14
  width: 100,
10
15
  height: 100,
11
16
  },
17
+ stylesPanelSections: [
18
+ StylesPanelSections.Size,
19
+ StylesPanelSections.Margins,
20
+ StylesPanelSections.Position,
21
+ StylesPanelSections.Effects,
22
+ ],
12
23
  props: {
13
- source: createSvgProp(),
24
+ source: createSVGProp(),
14
25
  },
15
26
  };