@draftbit/core 46.7.9-13d0dd.2 → 46.7.9-193328.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 (64) hide show
  1. package/lib/commonjs/components/DatePicker/DatePicker.js +8 -1
  2. package/lib/commonjs/components/DeckSwiper/DeckSwiper.js +74 -0
  3. package/lib/commonjs/components/DeckSwiper/DeckSwiperCard.js +34 -0
  4. package/lib/commonjs/components/DeckSwiper/index.js +20 -0
  5. package/lib/commonjs/components/Divider.js +1 -14
  6. package/lib/commonjs/components/Elevation.js +2 -14
  7. package/lib/commonjs/components/NumberInput.js +10 -10
  8. package/lib/commonjs/components/Picker/Picker.js +3 -2
  9. package/lib/commonjs/index.js +13 -0
  10. package/lib/commonjs/mappings/DatePicker.js +2 -1
  11. package/lib/commonjs/mappings/DeckSwiper.js +55 -0
  12. package/lib/commonjs/mappings/DeckSwiperCard.js +23 -0
  13. package/lib/commonjs/mappings/HtmlElements.js +177 -0
  14. package/lib/module/components/Accordion/AccordionItem.js +4 -25
  15. package/lib/module/components/DatePicker/DatePicker.js +8 -1
  16. package/lib/module/components/DeckSwiper/DeckSwiper.js +66 -0
  17. package/lib/module/components/DeckSwiper/DeckSwiperCard.js +26 -0
  18. package/lib/module/components/DeckSwiper/index.js +2 -0
  19. package/lib/module/components/NumberInput.js +10 -10
  20. package/lib/module/components/Picker/Picker.js +3 -2
  21. package/lib/module/index.js +1 -0
  22. package/lib/module/mappings/DatePicker.js +2 -1
  23. package/lib/module/mappings/DeckSwiper.js +48 -0
  24. package/lib/module/mappings/DeckSwiperCard.js +16 -0
  25. package/lib/module/mappings/HtmlElements.js +170 -0
  26. package/lib/typescript/src/components/DeckSwiper/DeckSwiper.d.ts +15 -0
  27. package/lib/typescript/src/components/DeckSwiper/DeckSwiper.d.ts.map +1 -0
  28. package/lib/typescript/src/components/DeckSwiper/DeckSwiperCard.d.ts +13 -0
  29. package/lib/typescript/src/components/DeckSwiper/DeckSwiperCard.d.ts.map +1 -0
  30. package/lib/typescript/src/components/DeckSwiper/index.d.ts +3 -0
  31. package/lib/typescript/src/components/DeckSwiper/index.d.ts.map +1 -0
  32. package/lib/typescript/src/components/Picker/Picker.d.ts.map +1 -1
  33. package/lib/typescript/src/index.d.ts +1 -0
  34. package/lib/typescript/src/index.d.ts.map +1 -1
  35. package/lib/typescript/src/mappings/DatePicker.d.ts.map +1 -1
  36. package/lib/typescript/src/mappings/DeckSwiper.d.ts +86 -0
  37. package/lib/typescript/src/mappings/DeckSwiper.d.ts.map +1 -0
  38. package/lib/typescript/src/mappings/DeckSwiperCard.d.ts +16 -0
  39. package/lib/typescript/src/mappings/DeckSwiperCard.d.ts.map +1 -0
  40. package/lib/typescript/src/mappings/HtmlElements.d.ts +77 -0
  41. package/lib/typescript/src/mappings/HtmlElements.d.ts.map +1 -0
  42. package/package.json +5 -3
  43. package/src/components/DatePicker/DatePicker.js +1 -1
  44. package/src/components/DatePicker/DatePicker.tsx +1 -1
  45. package/src/components/DeckSwiper/DeckSwiper.js +35 -0
  46. package/src/components/DeckSwiper/DeckSwiper.tsx +94 -0
  47. package/src/components/DeckSwiper/DeckSwiperCard.js +21 -0
  48. package/src/components/DeckSwiper/DeckSwiperCard.tsx +41 -0
  49. package/src/components/DeckSwiper/index.js +2 -0
  50. package/src/components/DeckSwiper/index.tsx +2 -0
  51. package/src/components/NumberInput.js +9 -9
  52. package/src/components/NumberInput.tsx +11 -11
  53. package/src/components/Picker/Picker.js +2 -1
  54. package/src/components/Picker/Picker.tsx +5 -2
  55. package/src/index.js +1 -0
  56. package/src/index.tsx +2 -0
  57. package/src/mappings/DatePicker.js +2 -1
  58. package/src/mappings/DatePicker.ts +2 -1
  59. package/src/mappings/DeckSwiper.js +48 -0
  60. package/src/mappings/DeckSwiper.ts +57 -0
  61. package/src/mappings/DeckSwiperCard.js +16 -0
  62. package/src/mappings/DeckSwiperCard.ts +20 -0
  63. package/src/mappings/HtmlElements.js +193 -0
  64. package/src/mappings/HtmlElements.ts +207 -0
@@ -166,7 +166,14 @@ const DatePicker = _ref => {
166
166
  const MAXIMIZED_LABEL_FONT_SIZE = textStyles.fontSize || typography.subtitle1.fontSize;
167
167
  const MINIMIZED_LABEL_FONT_SIZE = labelSize ? labelSize : typography.caption.fontSize;
168
168
  const hasActiveOutline = focused;
169
- let inputTextColor, activeColor, underlineColor, borderColor, placeholderColor, containerStyle, backgroundColor, inputStyle;
169
+ let inputTextColor,
170
+ activeColor,
171
+ underlineColor,
172
+ borderColor = inputBorderColor,
173
+ placeholderColor,
174
+ containerStyle,
175
+ backgroundColor,
176
+ inputStyle;
170
177
  inputTextColor = colors.strong;
171
178
  if (disabled) {
172
179
  activeColor = colors.light;
@@ -0,0 +1,74 @@
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 _reactNative = require("react-native");
9
+ var _reactNativeDeckSwiper = _interopRequireDefault(require("react-native-deck-swiper"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ const DeckSwiper = _ref => {
12
+ let {
13
+ onIndexChanged,
14
+ onEndReached,
15
+ startCardIndex = 0,
16
+ infiniteSwiping = false,
17
+ verticalEnabled = true,
18
+ horizontalEnabled = true,
19
+ visibleCardCount = 1,
20
+ style,
21
+ children
22
+ } = _ref;
23
+ const childrenArray = _react.default.useMemo(() => _react.default.Children.toArray(children), [children]);
24
+
25
+ // an array of indices based on children count
26
+ const cardsFillerData = _react.default.useMemo(() => Array.from(Array(childrenArray.length).keys()), [childrenArray]);
27
+
28
+ /**
29
+ * By default react-native-deck-swiper positions everything with absolute position.
30
+ * To overcome this, it is wrapped in a View to be able to add the component in any layout structure.
31
+ *
32
+ *
33
+ * Since all children of that View are absolutley positioned, the View does not have a height and still looks and behaves weird.
34
+ * To fix/mitage this without setting a static height, the first card is rendered in invisible state to take up space.
35
+ * This effectivley makes the default height of the container be the height of the first card.
36
+ */
37
+
38
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, null, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
39
+ style: styles.containerHeightFiller
40
+ }, childrenArray.length && childrenArray[0]), /*#__PURE__*/_react.default.createElement(_reactNativeDeckSwiper.default, {
41
+ cards: cardsFillerData,
42
+ renderCard: (_, i) => /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, childrenArray[i]),
43
+ keyExtractor: card => card === null || card === void 0 ? void 0 : card.toString(),
44
+ containerStyle: _reactNative.StyleSheet.flatten([styles.cardsContainer, style]),
45
+ cardStyle: styles.card,
46
+ onSwiped: onIndexChanged,
47
+ onSwipedAll: onEndReached,
48
+ cardIndex: startCardIndex,
49
+ infinite: infiniteSwiping,
50
+ verticalSwipe: verticalEnabled,
51
+ horizontalSwipe: horizontalEnabled,
52
+ showSecondCard: visibleCardCount > 1,
53
+ stackSize: visibleCardCount,
54
+ backgroundColor: "transparent",
55
+ cardVerticalMargin: 0,
56
+ cardHorizontalMargin: 0
57
+ }));
58
+ };
59
+ const styles = _reactNative.StyleSheet.create({
60
+ cardsContainer: {
61
+ width: "100%"
62
+ },
63
+ card: {
64
+ left: 0,
65
+ right: 0,
66
+ width: "auto",
67
+ height: "auto"
68
+ },
69
+ containerHeightFiller: {
70
+ opacity: 0.0
71
+ }
72
+ });
73
+ var _default = DeckSwiper;
74
+ exports.default = _default;
@@ -0,0 +1,34 @@
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 _reactNative = require("react-native");
9
+ var _theming = require("../../theming");
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ const DeckSwiperCard = _ref => {
12
+ let {
13
+ style,
14
+ children,
15
+ theme
16
+ } = _ref;
17
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
18
+ style: [styles.card, {
19
+ backgroundColor: theme.colors.background,
20
+ borderColor: theme.colors.divider
21
+ }, style]
22
+ }, children);
23
+ };
24
+ const styles = _reactNative.StyleSheet.create({
25
+ card: {
26
+ flex: 1,
27
+ alignItems: "center",
28
+ justifyContent: "center",
29
+ padding: 20,
30
+ borderWidth: 2
31
+ }
32
+ });
33
+ var _default = (0, _theming.withTheme)(DeckSwiperCard);
34
+ exports.default = _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "DeckSwiper", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _DeckSwiper.default;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "DeckSwiperCard", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _DeckSwiperCard.default;
16
+ }
17
+ });
18
+ var _DeckSwiper = _interopRequireDefault(require("./DeckSwiper"));
19
+ var _DeckSwiperCard = _interopRequireDefault(require("./DeckSwiperCard"));
20
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -9,6 +9,7 @@ var _reactNative = require("react-native");
9
9
  var _theming = require("../theming");
10
10
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
11
11
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
12
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
12
13
  const Divider = _ref => {
13
14
  let {
14
15
  style,
@@ -18,20 +19,6 @@ const Divider = _ref => {
18
19
  },
19
20
  ...rest
20
21
  } = _ref;
21
- return /*#__PURE__*/React.createElement(_reactNative.View, {
22
- style: [{
23
- backgroundColor: color || colors.divider,
24
- height: _reactNative.StyleSheet.hairlineWidth
25
- }, style],
26
- ...rest
27
- });
28
- };
29
- var _default = (0, _theming.withTheme)(Divider);
30
- exports.default = _default;eme: {
31
- colors
32
- },
33
- ...rest
34
- } = _ref;
35
22
  return /*#__PURE__*/React.createElement(_reactNative.View, _extends({
36
23
  style: [{
37
24
  backgroundColor: color || colors.divider,
@@ -11,6 +11,7 @@ var _theming = require("../theming");
11
11
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
12
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
13
13
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
14
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
14
15
  /* directly copied from https://github.com/callstack/react-native-paper/blob/main/src/components/Surface.tsx#L62 */
15
16
  const Elevation = _ref => {
16
17
  let {
@@ -27,24 +28,11 @@ const Elevation = _ref => {
27
28
  colors
28
29
  } = theme;
29
30
  const borderRadius = radius;
30
- return /*#__PURE__*/React.createElement(_reactNative.Animated.View, {
31
- ...rest,
31
+ return /*#__PURE__*/React.createElement(_reactNative.Animated.View, _extends({}, rest, {
32
32
  style: [{
33
33
  borderRadius,
34
34
  backgroundColor: colors.surface
35
35
  }, elevation ? (0, _shadow.default)(elevation) : null, style]
36
- }, /*#__PURE__*/React.createElement(_reactNative.View, {
37
- style: {
38
- overflow: "hidden",
39
- borderRadius
40
- }
41
- }, children));
42
- };
43
- var _default = (0, _theming.withTheme)(Elevation);
44
- exports.default = _default;
45
- borderRadius,
46
- backgroundColor: colors.surface
47
- }, elevation ? (0, _shadow.default)(elevation) : null, style]
48
36
  }), /*#__PURE__*/React.createElement(_reactNative.View, {
49
37
  style: {
50
38
  overflow: "hidden",
@@ -32,17 +32,8 @@ const NumberInput = _ref => {
32
32
  return valueToFormat.toString();
33
33
  }
34
34
  }
35
- return "0";
35
+ return "";
36
36
  };
37
-
38
- // set currentStringNumberValue as defaultValue prop if there is a differnce on first render only
39
- (0, _react.useEffect)(() => {
40
- const defaultStringNumberValue = formatValueToStringNumber(defaultValue);
41
- if (currentStringNumberValue !== defaultStringNumberValue) {
42
- setCurrentStringNumberValue(defaultStringNumberValue);
43
- }
44
- // eslint-disable-next-line react-hooks/exhaustive-deps
45
- }, []);
46
37
  const handleChangeText = newValue => {
47
38
  const newStringNumberValue = formatValueToStringNumber(newValue);
48
39
  const number = parseFloat(newStringNumberValue);
@@ -58,6 +49,15 @@ const NumberInput = _ref => {
58
49
  }
59
50
  // eslint-disable-next-line react-hooks/exhaustive-deps
60
51
  }, [value]);
52
+
53
+ // set currentStringNumberValue as defaultValue prop if there is a differnce on first render only
54
+ (0, _react.useEffect)(() => {
55
+ const defaultStringNumberValue = formatValueToStringNumber(defaultValue);
56
+ if (currentStringNumberValue !== defaultStringNumberValue) {
57
+ setCurrentStringNumberValue(defaultStringNumberValue);
58
+ }
59
+ // eslint-disable-next-line react-hooks/exhaustive-deps
60
+ }, []);
61
61
  return /*#__PURE__*/_react.default.createElement(_reactNative.TextInput, _extends({
62
62
  keyboardType: "numeric",
63
63
  value: currentStringNumberValue,
@@ -42,6 +42,7 @@ const {
42
42
  height: deviceHeight
43
43
  } = _reactNative.Dimensions.get("screen");
44
44
  const isIos = _reactNative.Platform.OS === "ios";
45
+ const isWeb = _reactNative.Platform.OS === "web";
45
46
  const unstyledColor = "rgba(165, 173, 183, 1)";
46
47
  const disabledColor = "rgb(240, 240, 240)";
47
48
  const errorColor = "rgba(255, 69, 100, 1)";
@@ -239,8 +240,8 @@ const Picker = _ref => {
239
240
  label: option.label,
240
241
  value: option.value,
241
242
  key: option.value
242
- })))))) : null, !isIos && pickerVisible ? /*#__PURE__*/React.createElement(_picker.Picker, {
243
- enabled: pickerVisible,
243
+ })))))) : null, !isIos && (pickerVisible || isWeb) ? /*#__PURE__*/React.createElement(_picker.Picker, {
244
+ enabled: !disabled,
244
245
  selectedValue: internalValue,
245
246
  onValueChange: handleValueChange,
246
247
  style: styles.nonIosPicker,
@@ -123,6 +123,18 @@ Object.defineProperty(exports, "DatePicker", {
123
123
  return _DatePicker.default;
124
124
  }
125
125
  });
126
+ Object.defineProperty(exports, "DeckSwiper", {
127
+ enumerable: true,
128
+ get: function () {
129
+ return _DeckSwiper.DeckSwiper;
130
+ }
131
+ });
132
+ Object.defineProperty(exports, "DeckSwiperCard", {
133
+ enumerable: true,
134
+ get: function () {
135
+ return _DeckSwiper.DeckSwiperCard;
136
+ }
137
+ });
126
138
  Object.defineProperty(exports, "DefaultTheme", {
127
139
  enumerable: true,
128
140
  get: function () {
@@ -401,6 +413,7 @@ var _ActionSheet = require("./components/ActionSheet");
401
413
  var _Swiper = require("./components/Swiper");
402
414
  var _Layout = require("./components/Layout");
403
415
  var _index = require("./components/RadioButton/index");
416
+ var _DeckSwiper = require("./components/DeckSwiper");
404
417
  var _DatePicker = _interopRequireDefault(require("./components/DatePicker/DatePicker"));
405
418
  var _Picker = _interopRequireDefault(require("./components/Picker/Picker"));
406
419
  var _ProgressBar = _interopRequireDefault(require("./components/ProgressBar"));
@@ -37,7 +37,8 @@ const SEED_DATA_PROPS = {
37
37
  label: "Border Color"
38
38
  }),
39
39
  borderColorActive: (0, _types.createColorProp)({
40
- label: "Border Color"
40
+ label: "Active Border Color",
41
+ description: "Color of border when date picker is active"
41
42
  }),
42
43
  format: {
43
44
  label: "Format",
@@ -0,0 +1,55 @@
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: "Deck Swiper",
10
+ tag: "DeckSwiper",
11
+ description: "Deck swiper container",
12
+ category: _types.COMPONENT_TYPES.swiper,
13
+ stylesPanelSections: _types.BLOCK_STYLES_SECTIONS,
14
+ layout: {
15
+ width: "100%"
16
+ },
17
+ triggers: [_types.Triggers.OnIndexChanged, _types.Triggers.OnEndReached],
18
+ props: {
19
+ onIndexChanged: (0, _types.createActionProp)({
20
+ label: "On index changed",
21
+ description: "Action to execute when swipe to new index"
22
+ }),
23
+ onEndReached: (0, _types.createActionProp)({
24
+ label: "On end reached",
25
+ description: "Action to execute when end of swiping reached"
26
+ }),
27
+ startCardIndex: (0, _types.createStaticNumberProp)({
28
+ label: "Start card index",
29
+ description: "Index of card to start swiping from",
30
+ defaultValue: 0
31
+ }),
32
+ infiniteSwiping: (0, _types.createStaticBoolProp)({
33
+ label: "Infinite swiping",
34
+ description: "Whether to infinitley loop through cards or not"
35
+ }),
36
+ verticalEnabled: (0, _types.createStaticBoolProp)({
37
+ label: "Vertical swipe enabled",
38
+ description: "Whether cards should be swipeable vertically or not",
39
+ defaultValue: true
40
+ }),
41
+ horizontalEnabled: (0, _types.createStaticBoolProp)({
42
+ label: "Horizontal swipe enabled",
43
+ description: "Whether cards should be swipeable horizontally or not",
44
+ defaultValue: true
45
+ }),
46
+ visibleCardCount: (0, _types.createStaticNumberProp)({
47
+ label: "Visible card count",
48
+ description: "Number of cards visible behind (and including) the current card",
49
+ defaultValue: 1,
50
+ min: 1,
51
+ step: 1
52
+ })
53
+ }
54
+ };
55
+ exports.SEED_DATA = SEED_DATA;
@@ -0,0 +1,23 @@
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: "Deck Swiper Card",
10
+ tag: "DeckSwiperCard",
11
+ description: "Single Deck Swiper Card item to be used in DeckSwiper",
12
+ category: _types.COMPONENT_TYPES.swiper,
13
+ stylesPanelSections: _types.CONTAINER_COMPONENT_STYLES_SECTIONS,
14
+ layout: {
15
+ flex: 1,
16
+ alignItems: "center",
17
+ justifyContent: "center",
18
+ padding: 20,
19
+ borderWidth: 2
20
+ },
21
+ props: {}
22
+ };
23
+ exports.SEED_DATA = SEED_DATA;
@@ -0,0 +1,177 @@
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_TRIGGERS = [_types.Triggers.OnValueChange];
9
+ const ELEMENT_SEED_DATA = {
10
+ doc_link: "https://www.npmjs.com/package/@expo/html-elements",
11
+ code_link: "https://github.com/expo/expo/tree/master/packages/html-elements",
12
+ packageName: "@expo/html-elements",
13
+ stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.LayoutSelectedItem, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Effects],
14
+ layout: {
15
+ margin: 0
16
+ },
17
+ triggers: SEED_DATA_TRIGGERS,
18
+ category: _types.COMPONENT_TYPES.webelement
19
+ };
20
+ const HEADING_SEED_DATA = {
21
+ ...ELEMENT_SEED_DATA,
22
+ category: _types.COMPONENT_TYPES.text,
23
+ props: {
24
+ accessibilityLabel: {
25
+ group: _types.GROUPS.accessibility,
26
+ name: "accessibilityLabel",
27
+ label: "accessibilityLabel",
28
+ description: "Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text nodes separated by space.",
29
+ editable: true,
30
+ required: false,
31
+ formType: _types.FORM_TYPES.string,
32
+ propType: _types.PROP_TYPES.STRING,
33
+ defaultValue: null
34
+ },
35
+ selectable: {
36
+ group: _types.GROUPS.advanced,
37
+ name: "selectable",
38
+ label: "selectable",
39
+ description: "Lets the user select text, to use the native copy and paste functionality.",
40
+ editable: true,
41
+ required: false,
42
+ formType: _types.FORM_TYPES.boolean,
43
+ propType: _types.PROP_TYPES.BOOLEAN,
44
+ defaultValue: null
45
+ },
46
+ children: {
47
+ group: _types.GROUPS.data,
48
+ label: "Text",
49
+ description: "Text",
50
+ editable: true,
51
+ required: true,
52
+ formType: _types.FORM_TYPES.string,
53
+ propType: _types.PROP_TYPES.STRING,
54
+ defaultValue: "Your Headline Here"
55
+ }
56
+ }
57
+ };
58
+ const TEXT_SEED_DATA = {
59
+ ...ELEMENT_SEED_DATA,
60
+ category: _types.COMPONENT_TYPES.text,
61
+ props: {
62
+ children: {
63
+ group: _types.GROUPS.data,
64
+ label: "Text",
65
+ description: "Text",
66
+ defaultValue: "Your Text Here",
67
+ editable: true,
68
+ required: true,
69
+ formType: _types.FORM_TYPES.string,
70
+ propType: _types.PROP_TYPES.STRING
71
+ }
72
+ }
73
+ };
74
+ const SEED_DATA = [{
75
+ name: "H1",
76
+ tag: "H1",
77
+ ...HEADING_SEED_DATA
78
+ }, {
79
+ name: "H2",
80
+ tag: "H2",
81
+ ...HEADING_SEED_DATA
82
+ }, {
83
+ name: "H3",
84
+ tag: "H3",
85
+ ...HEADING_SEED_DATA
86
+ }, {
87
+ name: "H4",
88
+ tag: "H4",
89
+ ...HEADING_SEED_DATA
90
+ }, {
91
+ name: "H5",
92
+ tag: "H5",
93
+ ...HEADING_SEED_DATA
94
+ }, {
95
+ name: "H6",
96
+ tag: "H6",
97
+ ...HEADING_SEED_DATA
98
+ }, {
99
+ name: "Anchor",
100
+ tag: "A",
101
+ ...TEXT_SEED_DATA,
102
+ props: {
103
+ href: (0, _types.createTextProp)({
104
+ label: "href",
105
+ description: "Specify the URL",
106
+ defaultValue: ""
107
+ }),
108
+ target: {
109
+ group: _types.GROUPS.basic,
110
+ label: "target",
111
+ description: "decide where link should open",
112
+ formType: _types.FORM_TYPES.flatArray,
113
+ defaultValue: "_blank",
114
+ options: ["_blank", "_self", "_parent", "_top"]
115
+ }
116
+ }
117
+ }, {
118
+ name: "Paragraph",
119
+ tag: "P",
120
+ ...TEXT_SEED_DATA,
121
+ props: {
122
+ // NOTE - Keeping the props commented until we figure out a way to use this props from draftbit side.
123
+ // strong: createBoolProp({
124
+ // label: "Strong",
125
+ // description: "Strong",
126
+ // }),
127
+ // strike: createBoolProp({
128
+ // label: "Strike",
129
+ // description: "Strike through",
130
+ // }),
131
+ // italic: createBoolProp({
132
+ // label: "Italic",
133
+ // description: "Italic Fonts",
134
+ // }),
135
+ // bold: createBoolProp({
136
+ // label: "Bold",
137
+ // description: "Bold",
138
+ // }),
139
+ }
140
+ }, {
141
+ name: "Code",
142
+ tag: "Code",
143
+ ...TEXT_SEED_DATA
144
+ }, {
145
+ name: "Pre",
146
+ tag: "Pre",
147
+ ...TEXT_SEED_DATA
148
+ }, {
149
+ name: "Mark",
150
+ tag: "Mark",
151
+ ...TEXT_SEED_DATA
152
+ }, {
153
+ name: "BR",
154
+ tag: "BR",
155
+ ...TEXT_SEED_DATA
156
+ }, {
157
+ name: "BlockQuote",
158
+ tag: "BlockQuote",
159
+ ...TEXT_SEED_DATA
160
+ }, {
161
+ name: "HR",
162
+ tag: "HR",
163
+ ...TEXT_SEED_DATA
164
+ }, {
165
+ name: "Time",
166
+ tag: "Time",
167
+ ...ELEMENT_SEED_DATA
168
+ }, {
169
+ name: "UL",
170
+ tag: "UL",
171
+ ...ELEMENT_SEED_DATA
172
+ }, {
173
+ name: "LI",
174
+ tag: "LI",
175
+ ...ELEMENT_SEED_DATA
176
+ }];
177
+ exports.SEED_DATA = SEED_DATA;
@@ -1,3 +1,4 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
1
2
  import * as React from "react";
2
3
  import { Pressable, StyleSheet, View } from "react-native";
3
4
  import Text from "../Text";
@@ -17,10 +18,9 @@ const AccordionItem = _ref => {
17
18
  textStyles,
18
19
  viewStyles
19
20
  } = extractStyles(style);
20
- return /*#__PURE__*/React.createElement(Pressable, {
21
- style: [styles.container, viewStyles],
22
- ...rest
23
- }, /*#__PURE__*/React.createElement(View, {
21
+ return /*#__PURE__*/React.createElement(Pressable, _extends({
22
+ style: [styles.container, viewStyles]
23
+ }, rest), /*#__PURE__*/React.createElement(View, {
24
24
  style: styles.row
25
25
  }, icon ? /*#__PURE__*/React.createElement(Icon, {
26
26
  name: icon,
@@ -51,25 +51,4 @@ const styles = StyleSheet.create({
51
51
  justifyContent: "center"
52
52
  }
53
53
  });
54
- export default withTheme(AccordionItem);xtStyles
55
- }, label))));
56
- };
57
- const styles = StyleSheet.create({
58
- container: {
59
- padding: 8
60
- },
61
- row: {
62
- flexDirection: "row",
63
- alignItems: "center",
64
- paddingLeft: 8
65
- },
66
- item: {
67
- marginVertical: 6,
68
- paddingLeft: 8
69
- },
70
- content: {
71
- flex: 1,
72
- justifyContent: "center"
73
- }
74
- });
75
54
  export default withTheme(AccordionItem);
@@ -157,7 +157,14 @@ const DatePicker = _ref => {
157
157
  const MAXIMIZED_LABEL_FONT_SIZE = textStyles.fontSize || typography.subtitle1.fontSize;
158
158
  const MINIMIZED_LABEL_FONT_SIZE = labelSize ? labelSize : typography.caption.fontSize;
159
159
  const hasActiveOutline = focused;
160
- let inputTextColor, activeColor, underlineColor, borderColor, placeholderColor, containerStyle, backgroundColor, inputStyle;
160
+ let inputTextColor,
161
+ activeColor,
162
+ underlineColor,
163
+ borderColor = inputBorderColor,
164
+ placeholderColor,
165
+ containerStyle,
166
+ backgroundColor,
167
+ inputStyle;
161
168
  inputTextColor = colors.strong;
162
169
  if (disabled) {
163
170
  activeColor = colors.light;