@draftbit/core 46.10.3-6f5759.2 → 46.10.3-7476ab.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 (184) hide show
  1. package/lib/commonjs/components/AnimatedCircularProgress.js +12 -1
  2. package/lib/commonjs/components/AspectRatio.js +17 -1
  3. package/lib/commonjs/components/BottomSheet/BottomSheet.js +22 -4
  4. package/lib/commonjs/components/Button.js +33 -10
  5. package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +23 -5
  6. package/lib/commonjs/components/Checkbox/CheckboxRow.js +6 -23
  7. package/lib/commonjs/components/Checkbox/context.js +1 -1
  8. package/lib/commonjs/components/CircleImage.js +15 -1
  9. package/lib/commonjs/components/CircularProgress.js +26 -8
  10. package/lib/commonjs/components/DatePicker/DatePicker.js +26 -13
  11. package/lib/commonjs/components/Divider.js +14 -1
  12. package/lib/commonjs/components/Elevation.js +14 -2
  13. package/lib/commonjs/components/Image.js +17 -2
  14. package/lib/commonjs/components/Picker/PickerComponent.android.js +20 -3
  15. package/lib/commonjs/components/Portal/PortalHost.js +44 -15
  16. package/lib/commonjs/components/RadioButton/RadioButton.js +13 -2
  17. package/lib/commonjs/components/RadioButton/RadioButtonRow.js +23 -5
  18. package/lib/commonjs/components/RadioButton/context.js +1 -1
  19. package/lib/commonjs/components/Shadow.js +15 -2
  20. package/lib/commonjs/components/StarRating.js +23 -4
  21. package/lib/commonjs/components/Switch.js +19 -10
  22. package/lib/commonjs/components/Table/Table.js +123 -0
  23. package/lib/commonjs/components/Table/TableCell.js +49 -0
  24. package/lib/commonjs/components/Table/TableCommon.js +30 -0
  25. package/lib/commonjs/components/Table/TableRow.js +61 -0
  26. package/lib/commonjs/components/Table/index.js +27 -0
  27. package/lib/commonjs/constants.js +1 -1
  28. package/lib/commonjs/index.js +19 -7
  29. package/lib/commonjs/mappings/FieldSearchBarFull.js +3 -1
  30. package/lib/commonjs/mappings/NativeBase/Layout.js +13 -12
  31. package/lib/commonjs/mappings/StarRating.js +6 -2
  32. package/lib/commonjs/mappings/Table.js +140 -0
  33. package/lib/module/components/AspectRatio.js +18 -1
  34. package/lib/module/components/BottomSheet/BottomSheet.js +24 -4
  35. package/lib/module/components/Button.js +33 -10
  36. package/lib/module/components/Checkbox/Checkbox.js +3 -4
  37. package/lib/module/components/Checkbox/CheckboxRow.js +24 -6
  38. package/lib/module/components/Checkbox/context.js +1 -1
  39. package/lib/module/components/DatePicker/DatePicker.js +27 -13
  40. package/lib/module/components/DeckSwiper/DeckSwiper.js +1 -4
  41. package/lib/module/components/DeprecatedButton.js +21 -3
  42. package/lib/module/components/Divider.js +18 -1
  43. package/lib/module/components/FormRow.js +17 -2
  44. package/lib/module/components/NumberInput.js +11 -3
  45. package/lib/module/components/Picker/PickerComponent.android.js +21 -3
  46. package/lib/module/components/Portal/PortalHost.js +45 -15
  47. package/lib/module/components/RadioButton/RadioButtonFieldGroup.js +10 -1
  48. package/lib/module/components/Shadow.js +15 -2
  49. package/lib/module/components/StarRating.js +24 -4
  50. package/lib/module/components/StepIndicator.js +58 -18
  51. package/lib/module/components/TabView/TabView.js +17 -7
  52. package/lib/module/components/Table/Table.js +115 -0
  53. package/lib/module/components/Table/TableCell.js +41 -0
  54. package/lib/module/components/Table/TableCommon.js +21 -0
  55. package/lib/module/components/Table/TableRow.js +52 -0
  56. package/lib/module/components/Table/index.js +3 -0
  57. package/lib/module/constants.js +1 -0
  58. package/lib/module/index.js +1 -1
  59. package/lib/module/mappings/FieldSearchBarFull.js +4 -1
  60. package/lib/module/mappings/NativeBase/Layout.js +14 -13
  61. package/lib/module/mappings/StarRating.js +7 -2
  62. package/lib/module/mappings/Table.js +133 -0
  63. package/lib/module/utilities.js +1 -2
  64. package/lib/typescript/src/components/Table/Table.d.ts +19 -0
  65. package/lib/typescript/src/components/Table/Table.d.ts.map +1 -0
  66. package/lib/typescript/src/components/Table/TableCell.d.ts +9 -0
  67. package/lib/typescript/src/components/Table/TableCell.d.ts.map +1 -0
  68. package/lib/typescript/src/components/Table/TableCommon.d.ts +20 -0
  69. package/lib/typescript/src/components/Table/TableCommon.d.ts.map +1 -0
  70. package/lib/typescript/src/components/{DeprecatedCardWrapper.d.ts → Table/TableRow.d.ts} +7 -8
  71. package/lib/typescript/src/components/Table/TableRow.d.ts.map +1 -0
  72. package/lib/typescript/src/components/Table/index.d.ts +4 -0
  73. package/lib/typescript/src/components/Table/index.d.ts.map +1 -0
  74. package/lib/typescript/src/index.d.ts +1 -1
  75. package/lib/typescript/src/index.d.ts.map +1 -1
  76. package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +36 -20
  77. package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -1
  78. package/lib/typescript/src/mappings/{CardBlock.d.ts → Table.d.ts} +129 -81
  79. package/lib/typescript/src/mappings/Table.d.ts.map +1 -0
  80. package/package.json +3 -3
  81. package/src/components/Table/Table.js +93 -0
  82. package/src/components/Table/Table.tsx +176 -0
  83. package/src/components/Table/TableCell.js +31 -0
  84. package/src/components/Table/TableCell.tsx +63 -0
  85. package/src/components/Table/TableCommon.js +12 -0
  86. package/src/components/Table/TableCommon.ts +40 -0
  87. package/src/components/Table/TableRow.js +37 -0
  88. package/src/components/Table/TableRow.tsx +77 -0
  89. package/src/components/Table/index.js +3 -0
  90. package/src/components/Table/index.tsx +3 -0
  91. package/src/index.js +1 -1
  92. package/src/index.tsx +2 -1
  93. package/src/mappings/NativeBase/Layout.js +24 -12
  94. package/src/mappings/NativeBase/Layout.ts +24 -12
  95. package/src/mappings/Table.js +150 -0
  96. package/src/mappings/Table.ts +170 -0
  97. package/lib/commonjs/components/Container.js +0 -93
  98. package/lib/commonjs/components/DeprecatedCardWrapper.js +0 -40
  99. package/lib/commonjs/components/DeprecatedFAB.js +0 -157
  100. package/lib/commonjs/components/ProgressIndicator.js +0 -55
  101. package/lib/commonjs/components/ResizeMode.js +0 -5
  102. package/lib/commonjs/mappings/CardBlock.js +0 -126
  103. package/lib/commonjs/mappings/CardContainer.js +0 -108
  104. package/lib/commonjs/mappings/CardContainerRating.js +0 -130
  105. package/lib/commonjs/mappings/CardContainerShortImage.js +0 -124
  106. package/lib/commonjs/mappings/CardInline.js +0 -59
  107. package/lib/commonjs/mappings/Container.js +0 -37
  108. package/lib/commonjs/mappings/HeaderLarge.js +0 -34
  109. package/lib/commonjs/mappings/HeaderMedium.js +0 -60
  110. package/lib/commonjs/mappings/HeaderOverline.js +0 -60
  111. package/lib/commonjs/mappings/ProgressIndicator.js +0 -188
  112. package/lib/module/components/Container.js +0 -83
  113. package/lib/module/components/DeprecatedCardWrapper.js +0 -32
  114. package/lib/module/components/DeprecatedFAB.js +0 -147
  115. package/lib/module/components/ProgressIndicator.js +0 -45
  116. package/lib/module/components/ResizeMode.js +0 -1
  117. package/lib/module/mappings/CardBlock.js +0 -119
  118. package/lib/module/mappings/CardContainer.js +0 -101
  119. package/lib/module/mappings/CardContainerRating.js +0 -123
  120. package/lib/module/mappings/CardContainerShortImage.js +0 -117
  121. package/lib/module/mappings/CardInline.js +0 -52
  122. package/lib/module/mappings/Container.js +0 -30
  123. package/lib/module/mappings/HeaderLarge.js +0 -27
  124. package/lib/module/mappings/HeaderMedium.js +0 -53
  125. package/lib/module/mappings/HeaderOverline.js +0 -53
  126. package/lib/module/mappings/ProgressIndicator.js +0 -181
  127. package/lib/typescript/src/components/Container.d.ts +0 -21
  128. package/lib/typescript/src/components/Container.d.ts.map +0 -1
  129. package/lib/typescript/src/components/DeprecatedCardWrapper.d.ts.map +0 -1
  130. package/lib/typescript/src/components/DeprecatedFAB.d.ts +0 -56
  131. package/lib/typescript/src/components/DeprecatedFAB.d.ts.map +0 -1
  132. package/lib/typescript/src/components/ProgressIndicator.d.ts +0 -24
  133. package/lib/typescript/src/components/ProgressIndicator.d.ts.map +0 -1
  134. package/lib/typescript/src/components/ResizeMode.d.ts +0 -2
  135. package/lib/typescript/src/components/ResizeMode.d.ts.map +0 -1
  136. package/lib/typescript/src/mappings/CardBlock.d.ts.map +0 -1
  137. package/lib/typescript/src/mappings/CardContainer.d.ts +0 -102
  138. package/lib/typescript/src/mappings/CardContainer.d.ts.map +0 -1
  139. package/lib/typescript/src/mappings/CardContainerRating.d.ts +0 -108
  140. package/lib/typescript/src/mappings/CardContainerRating.d.ts.map +0 -1
  141. package/lib/typescript/src/mappings/CardContainerShortImage.d.ts +0 -139
  142. package/lib/typescript/src/mappings/CardContainerShortImage.d.ts.map +0 -1
  143. package/lib/typescript/src/mappings/CardInline.d.ts +0 -62
  144. package/lib/typescript/src/mappings/CardInline.d.ts.map +0 -1
  145. package/lib/typescript/src/mappings/Container.d.ts +0 -55
  146. package/lib/typescript/src/mappings/Container.d.ts.map +0 -1
  147. package/lib/typescript/src/mappings/HeaderLarge.d.ts +0 -34
  148. package/lib/typescript/src/mappings/HeaderLarge.d.ts.map +0 -1
  149. package/lib/typescript/src/mappings/HeaderMedium.d.ts +0 -53
  150. package/lib/typescript/src/mappings/HeaderMedium.d.ts.map +0 -1
  151. package/lib/typescript/src/mappings/HeaderOverline.d.ts +0 -53
  152. package/lib/typescript/src/mappings/HeaderOverline.d.ts.map +0 -1
  153. package/lib/typescript/src/mappings/ProgressIndicator.d.ts +0 -181
  154. package/lib/typescript/src/mappings/ProgressIndicator.d.ts.map +0 -1
  155. package/src/components/Container.js +0 -43
  156. package/src/components/Container.tsx +0 -116
  157. package/src/components/DeprecatedCardWrapper.js +0 -18
  158. package/src/components/DeprecatedCardWrapper.tsx +0 -46
  159. package/src/components/DeprecatedFAB.js +0 -114
  160. package/src/components/DeprecatedFAB.tsx +0 -231
  161. package/src/components/ProgressIndicator.js +0 -27
  162. package/src/components/ProgressIndicator.tsx +0 -71
  163. package/src/components/ResizeMode.js +0 -1
  164. package/src/components/ResizeMode.ts +0 -7
  165. package/src/mappings/CardBlock.js +0 -123
  166. package/src/mappings/CardBlock.ts +0 -136
  167. package/src/mappings/CardContainer.js +0 -104
  168. package/src/mappings/CardContainer.ts +0 -116
  169. package/src/mappings/CardContainerRating.js +0 -126
  170. package/src/mappings/CardContainerRating.ts +0 -137
  171. package/src/mappings/CardContainerShortImage.js +0 -120
  172. package/src/mappings/CardContainerShortImage.ts +0 -130
  173. package/src/mappings/CardInline.js +0 -52
  174. package/src/mappings/CardInline.ts +0 -61
  175. package/src/mappings/Container.js +0 -30
  176. package/src/mappings/Container.ts +0 -41
  177. package/src/mappings/HeaderLarge.js +0 -29
  178. package/src/mappings/HeaderLarge.ts +0 -38
  179. package/src/mappings/HeaderMedium.js +0 -55
  180. package/src/mappings/HeaderMedium.ts +0 -63
  181. package/src/mappings/HeaderOverline.js +0 -55
  182. package/src/mappings/HeaderOverline.ts +0 -63
  183. package/src/mappings/ProgressIndicator.js +0 -181
  184. package/src/mappings/ProgressIndicator.ts +0 -190
@@ -1,114 +0,0 @@
1
- import * as React from "react";
2
- import { ActivityIndicator, View, StyleSheet, Pressable, } from "react-native";
3
- import color from "color";
4
- import Config from "./Config";
5
- import Text from "./Text";
6
- import Elevation from "./Elevation";
7
- import { withTheme } from "../theming";
8
- const FAB = ({ Icon, icon, disabled = false, type = "solid", loading = false, color: colorOverride, label, onPress, elevation = 0, style, theme: { colors, disabledOpacity, roundness, typography }, ...rest }) => {
9
- let backgroundColor, borderColor, textColor, borderWidth;
10
- const buttonColor = colorOverride || colors.primary;
11
- if (type === "standard" || type === "extended" || type === "fixed") {
12
- backgroundColor = buttonColor;
13
- if (disabled) {
14
- textColor = color(colors.surface).alpha(disabledOpacity).rgb().string();
15
- }
16
- else {
17
- textColor = colors.surface;
18
- }
19
- }
20
- else {
21
- backgroundColor = "transparent";
22
- if (disabled) {
23
- textColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
24
- }
25
- else {
26
- textColor = buttonColor;
27
- }
28
- }
29
- if (type === "outline") {
30
- if (disabled) {
31
- borderColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
32
- }
33
- else {
34
- borderColor = buttonColor;
35
- }
36
- borderWidth = StyleSheet.hairlineWidth;
37
- }
38
- else {
39
- borderColor = "transparent";
40
- borderWidth = 0;
41
- }
42
- const buttonStyle = {
43
- backgroundColor,
44
- borderColor,
45
- borderWidth,
46
- borderRadius: roundness,
47
- alignItems: "center",
48
- justifyContent: "center",
49
- };
50
- const buttonStyles = [styles.button, buttonStyle];
51
- const contentStyle = [styles.content];
52
- const textStyle = {
53
- textAlign: "center",
54
- color: textColor,
55
- };
56
- const iconStyle = [
57
- styles.icon,
58
- {
59
- width: Config.buttonIconSize,
60
- },
61
- ];
62
- if (type === "standard" || type === "outline") {
63
- buttonStyle.width = Config.FABSize;
64
- buttonStyle.height = Config.FABSize;
65
- buttonStyle.borderRadius = Config.FABBorderRadius;
66
- contentStyle.push({
67
- width: Config.FABSize,
68
- height: Config.FABSize,
69
- });
70
- }
71
- if (type === "extended" || type === "fixed") {
72
- iconStyle.push({
73
- marginLeft: 16,
74
- marginRight: -8,
75
- });
76
- textStyle.margin = 16;
77
- }
78
- if (type === "fixed") {
79
- buttonStyles.push({
80
- height: Config.FABFixedHeight,
81
- alignSelf: "stretch",
82
- });
83
- }
84
- return (React.createElement(Elevation, { style: [{ elevation }, style] },
85
- React.createElement(Pressable, { ...rest, onPress: onPress, accessibilityState: { disabled }, accessibilityRole: "button", disabled: disabled || loading, style: buttonStyles },
86
- React.createElement(View, { style: styles.content },
87
- icon && loading !== true ? (React.createElement(View, { style: iconStyle },
88
- React.createElement(Icon, { name: icon, size: Config.buttonIconSize, color: textColor }))) : null,
89
- loading ? (React.createElement(ActivityIndicator, { size: "small", color: textColor, style: iconStyle })) : null,
90
- label ? (React.createElement(Text, { numberOfLines: 1, style: [textStyle, typography.button] }, label)) : null))));
91
- };
92
- const styles = StyleSheet.create({
93
- button: {
94
- borderStyle: "solid",
95
- },
96
- content: {
97
- flexDirection: "row",
98
- alignItems: "center",
99
- justifyContent: "center",
100
- },
101
- icon: {
102
- alignItems: "center",
103
- justifyContent: "center",
104
- width: Config.buttonIconSize,
105
- },
106
- fixed: {
107
- left: 0,
108
- right: 0,
109
- bottom: 0,
110
- height: 64,
111
- borderRadius: 0,
112
- },
113
- });
114
- export default withTheme(FAB);
@@ -1,231 +0,0 @@
1
- import * as React from "react";
2
- import {
3
- ActivityIndicator,
4
- View,
5
- StyleSheet,
6
- StyleProp,
7
- ViewStyle,
8
- TextStyle,
9
- Pressable,
10
- PressableProps,
11
- } from "react-native";
12
- import color from "color";
13
- import Config from "./Config";
14
- import Text from "./Text";
15
- import Elevation from "./Elevation";
16
- import { withTheme } from "../theming";
17
-
18
- import type { Theme } from "../styles/DefaultTheme";
19
- import type { IconSlot } from "../interfaces/Icon";
20
-
21
- /**
22
- * A floating action button represents the primary action in an application.
23
- *
24
- * <div class="screenshots">
25
- * <img src="screenshots/fab-1.png" />
26
- * <img src="screenshots/fab-2.png" />
27
- * </div>
28
- *
29
- * ## Usage
30
- * ```js
31
- * import * as React from 'react';
32
- * import { StyleSheet } from 'react-native';
33
- * import { FAB } from '@draftbit/ui';
34
- *
35
- * const MyComponent = () => (
36
- * <FAB
37
- * style={styles.fab}
38
- * type="outline"
39
- * icon="add"
40
- * onPress={() => console.log('Pressed')}
41
- * />
42
- * );
43
- *
44
- * const styles = StyleSheet.create({
45
- * fab: {
46
- * position: 'absolute',
47
- * margin: 16,
48
- * right: 0,
49
- * bottom: 0,
50
- * },
51
- * })
52
- *
53
- * export default MyComponent;
54
- * ```
55
- */
56
-
57
- type Props = {
58
- disabled?: boolean;
59
- type?: "solid" | "extended" | "outline" | "fixed" | "standard";
60
- loading?: boolean;
61
- icon?: string;
62
- color?: string;
63
- label?: string;
64
- onPress: () => void;
65
- elevation?: number;
66
- theme: Theme;
67
- style?: StyleProp<ViewStyle>;
68
- } & PressableProps &
69
- IconSlot;
70
-
71
- const FAB: React.FC<React.PropsWithChildren<Props>> = ({
72
- Icon,
73
- icon,
74
- disabled = false,
75
- type = "solid",
76
- loading = false,
77
- color: colorOverride,
78
- label,
79
- onPress,
80
- elevation = 0,
81
- style,
82
- theme: { colors, disabledOpacity, roundness, typography },
83
- ...rest
84
- }) => {
85
- let backgroundColor, borderColor, textColor, borderWidth;
86
- const buttonColor = colorOverride || colors.primary;
87
-
88
- if (type === "standard" || type === "extended" || type === "fixed") {
89
- backgroundColor = buttonColor;
90
-
91
- if (disabled) {
92
- textColor = color(colors.surface).alpha(disabledOpacity).rgb().string();
93
- } else {
94
- textColor = colors.surface;
95
- }
96
- } else {
97
- backgroundColor = "transparent";
98
-
99
- if (disabled) {
100
- textColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
101
- } else {
102
- textColor = buttonColor;
103
- }
104
- }
105
-
106
- if (type === "outline") {
107
- if (disabled) {
108
- borderColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
109
- } else {
110
- borderColor = buttonColor;
111
- }
112
- borderWidth = StyleSheet.hairlineWidth;
113
- } else {
114
- borderColor = "transparent";
115
- borderWidth = 0;
116
- }
117
-
118
- const buttonStyle: StyleProp<ViewStyle> = {
119
- backgroundColor,
120
- borderColor,
121
- borderWidth,
122
- borderRadius: roundness,
123
- alignItems: "center",
124
- justifyContent: "center",
125
- };
126
-
127
- const buttonStyles: StyleProp<ViewStyle>[] = [styles.button, buttonStyle];
128
-
129
- const contentStyle: StyleProp<ViewStyle>[] = [styles.content];
130
-
131
- const textStyle: StyleProp<TextStyle> = {
132
- textAlign: "center",
133
- color: textColor,
134
- };
135
-
136
- const iconStyle: StyleProp<ViewStyle>[] = [
137
- styles.icon,
138
- {
139
- width: Config.buttonIconSize,
140
- },
141
- ];
142
-
143
- if (type === "standard" || type === "outline") {
144
- buttonStyle.width = Config.FABSize;
145
- buttonStyle.height = Config.FABSize;
146
- buttonStyle.borderRadius = Config.FABBorderRadius;
147
-
148
- contentStyle.push({
149
- width: Config.FABSize,
150
- height: Config.FABSize,
151
- });
152
- }
153
-
154
- if (type === "extended" || type === "fixed") {
155
- iconStyle.push({
156
- marginLeft: 16,
157
- marginRight: -8,
158
- });
159
-
160
- textStyle.margin = 16;
161
- }
162
-
163
- if (type === "fixed") {
164
- buttonStyles.push({
165
- height: Config.FABFixedHeight,
166
- alignSelf: "stretch",
167
- });
168
- }
169
-
170
- return (
171
- <Elevation style={[{ elevation }, style]}>
172
- <Pressable
173
- {...rest}
174
- onPress={onPress}
175
- accessibilityState={{ disabled }}
176
- accessibilityRole="button"
177
- disabled={disabled || loading}
178
- style={buttonStyles}
179
- >
180
- <View style={styles.content}>
181
- {icon && loading !== true ? (
182
- <View style={iconStyle}>
183
- <Icon
184
- name={icon}
185
- size={Config.buttonIconSize}
186
- color={textColor}
187
- />
188
- </View>
189
- ) : null}
190
- {loading ? (
191
- <ActivityIndicator
192
- size="small"
193
- color={textColor}
194
- style={iconStyle}
195
- />
196
- ) : null}
197
- {label ? (
198
- <Text numberOfLines={1} style={[textStyle, typography.button]}>
199
- {label}
200
- </Text>
201
- ) : null}
202
- </View>
203
- </Pressable>
204
- </Elevation>
205
- );
206
- };
207
-
208
- const styles = StyleSheet.create({
209
- button: {
210
- borderStyle: "solid",
211
- },
212
- content: {
213
- flexDirection: "row",
214
- alignItems: "center",
215
- justifyContent: "center",
216
- },
217
- icon: {
218
- alignItems: "center",
219
- justifyContent: "center",
220
- width: Config.buttonIconSize,
221
- },
222
- fixed: {
223
- left: 0,
224
- right: 0,
225
- bottom: 0,
226
- height: 64,
227
- borderRadius: 0,
228
- },
229
- });
230
-
231
- export default withTheme(FAB);
@@ -1,27 +0,0 @@
1
- import * as React from "react";
2
- import StepIndicator from "./StepIndicator";
3
- import { withTheme } from "../theming";
4
- const ProgressIndicator = ({ numberOfSteps, currentStep, currentStepStrokeWidth = 3, stepStrokeCurrentColor = "primary", stepIndicatorSize, currentStepIndicatorSize, stepIndicatorCurrentColor, stepIndicatorLabelCurrentColor, stepIndicatorLabelFontSize = 12, stepNumberFinishedColor = "strongInverse", stepNumberUnfinishedColor = "primary", unfinishedColor = "light", finishedColor = "primary", theme, }) => {
5
- const currentPosition = currentStep - 1;
6
- return (React.createElement(StepIndicator, { stepCount: numberOfSteps, currentPosition: currentPosition, customStyles: {
7
- stepIndicatorSize,
8
- currentStepIndicatorSize: currentStepIndicatorSize
9
- ? currentStepIndicatorSize
10
- : stepIndicatorSize,
11
- stepStrokeFinishedColor: finishedColor,
12
- stepStrokeUnFinishedColor: unfinishedColor,
13
- separatorFinishedColor: finishedColor,
14
- separatorUnFinishedColor: unfinishedColor,
15
- stepIndicatorFinishedColor: finishedColor,
16
- stepIndicatorUnFinishedColor: unfinishedColor,
17
- currentStepStrokeWidth,
18
- stepStrokeCurrentColor: stepStrokeCurrentColor || stepIndicatorCurrentColor,
19
- stepIndicatorLabelUnFinishedColor: stepNumberUnfinishedColor,
20
- stepIndicatorLabelFinishedColor: stepNumberFinishedColor,
21
- stepIndicatorCurrentColor: stepIndicatorCurrentColor || unfinishedColor,
22
- stepIndicatorLabelCurrentColor: stepIndicatorLabelCurrentColor || stepNumberUnfinishedColor,
23
- stepIndicatorLabelFontSize,
24
- labelFontFamily: theme.typography.body1.fontFamily,
25
- } }));
26
- };
27
- export default withTheme(ProgressIndicator);
@@ -1,71 +0,0 @@
1
- import * as React from "react";
2
- import StepIndicator from "./StepIndicator";
3
- import { withTheme } from "../theming";
4
- import themeT from "../styles/DefaultTheme";
5
- import { colorTypes } from "@draftbit/types";
6
-
7
- type Props = {
8
- numberOfSteps: number;
9
- currentStep: number;
10
- currentStepStrokeWidth?: number;
11
- stepStrokeCurrentColor?: colorTypes;
12
- stepIndicatorSize?: number;
13
- currentStepIndicatorSize?: number;
14
- stepIndicatorCurrentColor?: colorTypes;
15
- stepIndicatorLabelCurrentColor?: colorTypes;
16
- stepIndicatorLabelFontSize?: number;
17
- stepNumberFinishedColor?: colorTypes;
18
- stepNumberUnfinishedColor?: colorTypes;
19
- unfinishedColor?: colorTypes;
20
- finishedColor?: colorTypes;
21
- theme: typeof themeT;
22
- };
23
-
24
- const ProgressIndicator: React.FC<React.PropsWithChildren<Props>> = ({
25
- numberOfSteps,
26
- currentStep,
27
- currentStepStrokeWidth = 3,
28
- stepStrokeCurrentColor = "primary",
29
- stepIndicatorSize,
30
- currentStepIndicatorSize,
31
- stepIndicatorCurrentColor,
32
- stepIndicatorLabelCurrentColor,
33
- stepIndicatorLabelFontSize = 12,
34
- stepNumberFinishedColor = "strongInverse",
35
- stepNumberUnfinishedColor = "primary",
36
- unfinishedColor = "light",
37
- finishedColor = "primary",
38
- theme,
39
- }) => {
40
- const currentPosition = currentStep - 1;
41
- return (
42
- <StepIndicator
43
- stepCount={numberOfSteps}
44
- currentPosition={currentPosition}
45
- customStyles={{
46
- stepIndicatorSize,
47
- currentStepIndicatorSize: currentStepIndicatorSize
48
- ? currentStepIndicatorSize
49
- : stepIndicatorSize,
50
- stepStrokeFinishedColor: finishedColor,
51
- stepStrokeUnFinishedColor: unfinishedColor,
52
- separatorFinishedColor: finishedColor,
53
- separatorUnFinishedColor: unfinishedColor,
54
- stepIndicatorFinishedColor: finishedColor,
55
- stepIndicatorUnFinishedColor: unfinishedColor,
56
- currentStepStrokeWidth,
57
- stepStrokeCurrentColor:
58
- stepStrokeCurrentColor || stepIndicatorCurrentColor,
59
- stepIndicatorLabelUnFinishedColor: stepNumberUnfinishedColor,
60
- stepIndicatorLabelFinishedColor: stepNumberFinishedColor,
61
- stepIndicatorCurrentColor: stepIndicatorCurrentColor || unfinishedColor,
62
- stepIndicatorLabelCurrentColor:
63
- stepIndicatorLabelCurrentColor || stepNumberUnfinishedColor,
64
- stepIndicatorLabelFontSize,
65
- labelFontFamily: theme.typography.body1.fontFamily,
66
- }}
67
- />
68
- );
69
- };
70
-
71
- export default withTheme(ProgressIndicator);
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- export type ResizeModeType =
2
- | "cover"
3
- | "contain"
4
- | "stretch"
5
- | "repeat"
6
- | "center"
7
- | undefined;
@@ -1,123 +0,0 @@
1
- import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, createElevationType, createNumColumnsType, BLOCK_STYLES_SECTIONS, } from "@draftbit/types";
2
- const SEED_DATA_PROPS = {
3
- image: {
4
- group: GROUPS.data,
5
- label: "Image",
6
- description: "Image",
7
- formType: FORM_TYPES.image,
8
- propType: PROP_TYPES.ASSET,
9
- defaultValue: null,
10
- editable: true,
11
- required: false,
12
- },
13
- title: {
14
- group: GROUPS.data,
15
- label: "Title",
16
- description: "Text to display",
17
- formType: FORM_TYPES.string,
18
- propType: PROP_TYPES.STRING,
19
- defaultValue: "Beautiful West Coast Villa",
20
- editable: true,
21
- required: false,
22
- },
23
- leftDescription: {
24
- group: GROUPS.data,
25
- label: "Left description",
26
- description: "Text to display on the left",
27
- formType: FORM_TYPES.string,
28
- propType: PROP_TYPES.STRING,
29
- defaultValue: "San Diego",
30
- editable: true,
31
- required: false,
32
- },
33
- rightDescription: {
34
- group: GROUPS.data,
35
- label: "Right description",
36
- description: "Text to display on the right",
37
- formType: FORM_TYPES.string,
38
- propType: PROP_TYPES.STRING,
39
- defaultValue: "$100",
40
- editable: true,
41
- required: false,
42
- },
43
- aspectRatio: {
44
- group: GROUPS.basic,
45
- label: "Aspect ratio",
46
- description: "Aspect ratio of the image",
47
- formType: FORM_TYPES.aspectRatio,
48
- propType: PROP_TYPES.NUMBER,
49
- defaultValue: 1.5,
50
- editable: true,
51
- required: false,
52
- },
53
- titleCentered: {
54
- group: GROUPS.basic,
55
- label: "Title centered",
56
- description: "Whether to center the title",
57
- formType: FORM_TYPES.boolean,
58
- propType: PROP_TYPES.BOOLEAN,
59
- defaultValue: false,
60
- editable: true,
61
- required: false,
62
- },
63
- elevation: createElevationType(2),
64
- };
65
- export const SEED_DATA = [
66
- {
67
- name: "Small Card",
68
- tag: "CardBlock",
69
- description: "An elevated card with a title and description, that takes up one third of its container.",
70
- category: COMPONENT_TYPES.card,
71
- props: {
72
- ...SEED_DATA_PROPS,
73
- numColumns: createNumColumnsType({
74
- defaultValue: 1,
75
- }),
76
- },
77
- },
78
- {
79
- name: "Medium Block Card",
80
- tag: "CardBlock",
81
- description: "An elevated card with a title and description, that takes up one half of its container.",
82
- category: COMPONENT_TYPES.card,
83
- props: {
84
- ...SEED_DATA_PROPS,
85
- icon: {
86
- group: GROUPS.basic,
87
- label: "Icon",
88
- description: "Icon to display on the top right",
89
- formType: FORM_TYPES.icon,
90
- propType: PROP_TYPES.STRING,
91
- defaultValue: null,
92
- editable: true,
93
- required: true,
94
- },
95
- numColumns: createNumColumnsType({
96
- defaultValue: 2,
97
- }),
98
- },
99
- },
100
- {
101
- name: "Large Block Card",
102
- tag: "CardBlock",
103
- description: "An elevated card with a title and description, that takes up the full width its container.",
104
- category: COMPONENT_TYPES.card,
105
- stylesPanelSections: BLOCK_STYLES_SECTIONS,
106
- props: {
107
- ...SEED_DATA_PROPS,
108
- icon: {
109
- group: GROUPS.basic,
110
- label: "Icon",
111
- description: "Icon to display on the top right",
112
- formType: FORM_TYPES.icon,
113
- propType: PROP_TYPES.STRING,
114
- defaultValue: null,
115
- editable: true,
116
- required: true,
117
- },
118
- numColumns: createNumColumnsType({
119
- defaultValue: 3,
120
- }),
121
- },
122
- },
123
- ];