@telus-uds/components-base 0.0.2-prerelease.6 → 0.0.2-prerelease.7

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 (155) hide show
  1. package/.ultra.cache.json +1 -1
  2. package/CHANGELOG.md +20 -0
  3. package/__fixtures__/testTheme.js +424 -37
  4. package/__tests__/Button/ButtonBase.test.jsx +2 -31
  5. package/__tests__/Checkbox/Checkbox.test.jsx +94 -0
  6. package/__tests__/InputSupports/InputSupports.test.jsx +50 -0
  7. package/__tests__/List/List.test.jsx +60 -0
  8. package/__tests__/Radio/Radio.test.jsx +87 -0
  9. package/__tests__/Select/Select.test.jsx +93 -0
  10. package/__tests__/Skeleton/Skeleton.test.jsx +61 -0
  11. package/__tests__/Tags/Tags.test.jsx +328 -0
  12. package/__tests__/TextInput/TextArea.test.jsx +34 -0
  13. package/__tests__/TextInput/{TextInput.test.jsx → TextInputBase.test.jsx} +20 -46
  14. package/jest.config.js +3 -1
  15. package/lib/Button/Button.js +10 -3
  16. package/lib/Button/ButtonBase.js +73 -59
  17. package/lib/Button/ButtonGroup.js +11 -27
  18. package/lib/Button/ButtonLink.js +5 -0
  19. package/lib/Checkbox/Checkbox.js +308 -0
  20. package/lib/Checkbox/CheckboxInput.native.js +6 -0
  21. package/lib/Checkbox/CheckboxInput.web.js +57 -0
  22. package/lib/Checkbox/index.js +2 -0
  23. package/lib/Feedback/Feedback.js +20 -3
  24. package/lib/Icon/Icon.js +8 -5
  25. package/lib/Icon/IconText.js +72 -0
  26. package/lib/Icon/index.js +2 -1
  27. package/lib/InputSupports/InputSupports.js +90 -0
  28. package/lib/InputSupports/index.js +2 -0
  29. package/lib/InputSupports/propTypes.js +55 -0
  30. package/lib/Link/ChevronLink.js +23 -20
  31. package/lib/Link/InlinePressable.native.js +78 -0
  32. package/lib/Link/InlinePressable.web.js +32 -0
  33. package/lib/Link/Link.js +11 -10
  34. package/lib/Link/LinkBase.js +62 -123
  35. package/lib/Link/TextButton.js +20 -9
  36. package/lib/Link/index.js +2 -1
  37. package/lib/List/List.js +52 -0
  38. package/lib/List/ListItem.js +207 -0
  39. package/lib/List/index.js +2 -0
  40. package/lib/Pagination/PageButton.js +2 -25
  41. package/lib/Pagination/SideButton.js +27 -37
  42. package/lib/Radio/Radio.js +291 -0
  43. package/lib/Radio/RadioInput.native.js +6 -0
  44. package/lib/Radio/RadioInput.web.js +59 -0
  45. package/lib/Radio/index.js +2 -0
  46. package/lib/Select/Group.native.js +14 -0
  47. package/lib/Select/Group.web.js +18 -0
  48. package/lib/Select/Item.native.js +9 -0
  49. package/lib/Select/Item.web.js +15 -0
  50. package/lib/Select/Picker.native.js +87 -0
  51. package/lib/Select/Picker.web.js +63 -0
  52. package/lib/Select/Select.js +272 -0
  53. package/lib/Select/index.js +6 -0
  54. package/lib/Skeleton/Skeleton.js +119 -0
  55. package/lib/Skeleton/index.js +2 -0
  56. package/lib/Tags/Tags.js +217 -0
  57. package/lib/Tags/index.js +2 -0
  58. package/lib/TextInput/TextArea.js +82 -0
  59. package/lib/TextInput/TextInput.js +23 -304
  60. package/lib/TextInput/TextInputBase.js +229 -0
  61. package/lib/TextInput/index.js +2 -1
  62. package/lib/TextInput/propTypes.js +31 -0
  63. package/lib/ThemeProvider/useThemeTokens.js +54 -3
  64. package/lib/ToggleSwitch/ToggleSwitch.js +1 -1
  65. package/lib/Typography/Typography.js +4 -19
  66. package/lib/index.js +8 -1
  67. package/lib/utils/a11y/index.js +1 -0
  68. package/lib/utils/a11y/textSize.js +33 -0
  69. package/lib/utils/index.js +3 -0
  70. package/lib/utils/info/index.js +7 -0
  71. package/lib/utils/info/platform/index.js +11 -0
  72. package/lib/utils/info/platform/platform.android.js +1 -0
  73. package/lib/utils/info/platform/platform.ios.js +1 -0
  74. package/lib/utils/info/platform/platform.native.js +4 -0
  75. package/lib/utils/info/platform/platform.web.js +1 -0
  76. package/lib/utils/info/versions.js +5 -0
  77. package/lib/utils/pressability.js +92 -0
  78. package/lib/utils/propTypes.js +78 -17
  79. package/package.json +5 -4
  80. package/release-context.json +4 -4
  81. package/src/Button/Button.jsx +6 -3
  82. package/src/Button/ButtonBase.jsx +66 -57
  83. package/src/Button/ButtonGroup.jsx +9 -22
  84. package/src/Button/ButtonLink.jsx +11 -2
  85. package/src/Checkbox/Checkbox.jsx +275 -0
  86. package/src/Checkbox/CheckboxInput.native.jsx +6 -0
  87. package/src/Checkbox/CheckboxInput.web.jsx +55 -0
  88. package/src/Checkbox/index.js +3 -0
  89. package/src/Feedback/Feedback.jsx +13 -4
  90. package/src/Icon/Icon.jsx +9 -5
  91. package/src/Icon/IconText.jsx +63 -0
  92. package/src/Icon/index.js +2 -1
  93. package/src/InputSupports/InputSupports.jsx +86 -0
  94. package/src/InputSupports/index.js +3 -0
  95. package/src/InputSupports/propTypes.js +44 -0
  96. package/src/Link/ChevronLink.jsx +20 -17
  97. package/src/Link/InlinePressable.native.jsx +73 -0
  98. package/src/Link/InlinePressable.web.jsx +37 -0
  99. package/src/Link/Link.jsx +17 -13
  100. package/src/Link/LinkBase.jsx +57 -140
  101. package/src/Link/TextButton.jsx +25 -11
  102. package/src/Link/index.js +2 -1
  103. package/src/List/List.jsx +47 -0
  104. package/src/List/ListItem.jsx +187 -0
  105. package/src/List/index.js +3 -0
  106. package/src/Pagination/PageButton.jsx +2 -16
  107. package/src/Pagination/SideButton.jsx +23 -34
  108. package/src/Radio/Radio.jsx +270 -0
  109. package/src/Radio/RadioInput.native.jsx +6 -0
  110. package/src/Radio/RadioInput.web.jsx +57 -0
  111. package/src/Radio/index.js +3 -0
  112. package/src/Select/Group.native.jsx +14 -0
  113. package/src/Select/Group.web.jsx +15 -0
  114. package/src/Select/Item.native.jsx +10 -0
  115. package/src/Select/Item.web.jsx +11 -0
  116. package/src/Select/Picker.native.jsx +95 -0
  117. package/src/Select/Picker.web.jsx +67 -0
  118. package/src/Select/Select.jsx +265 -0
  119. package/src/Select/index.js +8 -0
  120. package/src/Skeleton/Skeleton.jsx +101 -0
  121. package/src/Skeleton/index.js +3 -0
  122. package/src/Tags/Tags.jsx +206 -0
  123. package/src/Tags/index.js +3 -0
  124. package/src/TextInput/TextArea.jsx +78 -0
  125. package/src/TextInput/TextInput.jsx +17 -284
  126. package/src/TextInput/TextInputBase.jsx +220 -0
  127. package/src/TextInput/index.js +2 -1
  128. package/src/TextInput/propTypes.js +29 -0
  129. package/src/ThemeProvider/useThemeTokens.js +54 -3
  130. package/src/ToggleSwitch/ToggleSwitch.jsx +1 -1
  131. package/src/Typography/Typography.jsx +4 -15
  132. package/src/index.js +8 -1
  133. package/src/utils/a11y/index.js +1 -0
  134. package/src/utils/a11y/textSize.js +30 -0
  135. package/src/utils/index.js +3 -0
  136. package/src/utils/info/index.js +8 -0
  137. package/src/utils/info/platform/index.js +11 -0
  138. package/src/utils/info/platform/platform.android.js +1 -0
  139. package/src/utils/info/platform/platform.ios.js +1 -0
  140. package/src/utils/info/platform/platform.native.js +4 -0
  141. package/src/utils/info/platform/platform.web.js +1 -0
  142. package/src/utils/info/versions.js +6 -0
  143. package/src/utils/pressability.js +92 -0
  144. package/src/utils/propTypes.js +97 -22
  145. package/stories/Button/Button.stories.jsx +5 -0
  146. package/stories/Checkbox/Checkbox.stories.jsx +71 -0
  147. package/stories/Feedback/Feedback.stories.jsx +5 -6
  148. package/stories/Link/Link.stories.jsx +15 -1
  149. package/stories/List/List.stories.jsx +117 -0
  150. package/stories/Radio/Radio.stories.jsx +113 -0
  151. package/stories/Select/Select.stories.jsx +55 -0
  152. package/stories/Skeleton/Skeleton.stories.jsx +36 -0
  153. package/stories/Tags/Tags.stories.jsx +69 -0
  154. package/stories/TextInput/TextArea.stories.jsx +100 -0
  155. package/stories/supports.jsx +1 -1
@@ -1,93 +1,9 @@
1
- import React, { useState } from 'react';
2
- import { Platform, StyleSheet, TextInput as NativeTextInput, View } from 'react-native';
3
- import PropTypes from 'prop-types';
4
- import { applyTextStyles, useThemeTokens } from '../ThemeProvider';
5
- import { getTokensPropType, useInputValue, variantProp } from '../utils';
6
- import InputLabel from '../InputLabel';
7
- import Feedback from '../Feedback';
8
- import useUniqueId from '../utils/useUniqueId';
9
- import StackView from '../StackView';
10
-
11
- const selectInputStyles = ({
12
- backgroundColor,
13
- color,
14
- borderWidth,
15
- borderColor,
16
- borderRadius,
17
- paddingTop,
18
- paddingBottom,
19
- paddingLeft,
20
- paddingRight = 0,
21
- fontName,
22
- fontSize,
23
- fontWeight,
24
- lineHeight,
25
- icon,
26
- iconSize = 0
27
- }, inactive) => {
28
- // Subtract border width from padding so overall input width/height doesn't
29
- // jump around if the border width changes (avoiding NaN and negative padding)
30
- const offsetBorder = value => typeof value === 'number' && typeof borderWidth === 'number' ? Math.max(0, value - borderWidth) : value;
31
-
32
- const textStyles = applyTextStyles({
33
- fontName,
34
- fontSize,
35
- lineHeight,
36
- fontWeight
37
- });
38
- const webStyles = Platform.select({
39
- web: {
40
- outline: 'none',
41
- cursor: inactive ? 'not-allowed' : undefined
42
- }
43
- });
44
- const paddingWithIcon = iconSize + paddingRight;
45
- return {
46
- backgroundColor,
47
- color,
48
- borderWidth,
49
- borderColor,
50
- borderRadius,
51
- paddingLeft: offsetBorder(paddingLeft),
52
- paddingRight: icon ? offsetBorder(paddingWithIcon) : offsetBorder(paddingRight),
53
- paddingTop: offsetBorder(paddingTop),
54
- paddingBottom: offsetBorder(paddingBottom),
55
- ...textStyles,
56
- ...webStyles
57
- };
58
- };
59
-
60
- const selectOuterBorderStyles = ({
61
- outerBackgroundColor,
62
- outerBorderWidth = 0,
63
- outerBorderColor,
64
- outerBorderRadius = 0
65
- }) => {
66
- // Use negative margins so that the outer border doesn't expand the input's bounding box
67
- const margin = -1 * outerBorderWidth; // Account for the border width since we style it as an outline
68
-
69
- const borderRadius = outerBorderRadius + outerBorderWidth;
70
- return {
71
- background: outerBackgroundColor,
72
- borderWidth: outerBorderWidth,
73
- borderColor: outerBorderColor,
74
- borderRadius,
75
- marginTop: margin,
76
- marginBottom: margin,
77
- marginLeft: margin,
78
- marginRight: margin
79
- };
80
- };
81
-
82
- const selectIconTokens = ({
83
- iconSize,
84
- iconColor
85
- }) => ({
86
- size: iconSize,
87
- color: iconColor
88
- });
89
-
90
- const joinDefined = array => array.filter(item => item !== undefined).join(' ');
1
+ import React from 'react';
2
+ import { getTokensPropType, variantProp } from '../utils';
3
+ import InputSupports from '../InputSupports';
4
+ import TextInputBase from './TextInputBase';
5
+ import inputSupportProps from '../InputSupports/propTypes';
6
+ import textInputPropTypes from './propTypes';
91
7
  /**
92
8
  * A basic text input component. Use in forms or individually to receive user's input.
93
9
  * Due to React Native's implementation of `TextInput` it's not possible to access the current value by passing a ref.
@@ -107,229 +23,32 @@ const joinDefined = array => array.filter(item => item !== undefined).join(' ');
107
23
  * their implementation on the web.
108
24
  */
109
25
 
110
-
111
26
  function TextInput({
112
- value,
113
- initialValue,
114
- label,
115
- hint,
116
- hintPosition = 'inline',
117
- feedback,
118
- tooltip,
119
- validation,
120
- inactive,
121
- readOnly,
122
- onChange,
123
- onChangeText,
124
- onFocus,
125
- onBlur,
126
- onMouseOver,
127
- onMouseOut,
128
27
  tokens,
129
28
  variant = {},
130
29
  ...remainingProps
131
30
  }) {
132
- const inputId = useUniqueId('text-input');
133
- const hintId = useUniqueId('text-input-hint');
134
- const feedbackId = useUniqueId('text-input-feedback');
135
- const [isFocused, setIsFocused] = useState(false);
136
-
137
- const handleFocus = event => {
138
- setIsFocused(true);
139
- if (typeof onFocus === 'function') onFocus(event);
140
- };
141
-
142
- const handleBlur = event => {
143
- setIsFocused(false);
144
- if (typeof onBlur === 'function') onBlur(event);
145
- };
146
-
147
- const [isHovered, setIsHovered] = useState(false);
148
-
149
- const handleMouseOver = event => {
150
- setIsHovered(true);
151
- if (typeof onMouseOver === 'function') onMouseOver(event);
152
- };
153
-
154
- const handleMouseOut = event => {
155
- setIsHovered(false);
156
- if (typeof onMouseOut === 'function') onMouseOut(event);
157
- };
158
-
159
- const {
160
- currentValue,
161
- setValue,
162
- isControlled
163
- } = useInputValue({
164
- value,
165
- initialValue,
166
- onChange,
167
- readOnly
168
- });
169
-
170
- const handleChangeText = text => {
171
- setValue(text);
172
- if (typeof onChangeText === 'function') onChangeText(text);
173
- };
174
-
175
- const states = {
176
- focus: isFocused,
177
- hover: isHovered,
178
- inactive
179
- };
180
- const themeTokens = useThemeTokens('TextInput', tokens, { ...variant,
181
- validation
182
- }, states);
183
31
  const {
184
- icon: IconComponent,
185
- space
186
- } = themeTokens;
187
- const hasValidationError = validation === 'error';
188
- const inputProps = { ...remainingProps,
189
- editable: !inactive,
190
- onFocus: handleFocus,
191
- onBlur: handleBlur,
192
- onMouseOver: handleMouseOver,
193
- onMouseOut: handleMouseOut,
194
- onChangeText: handleChangeText,
195
- accessibilityLabel: label,
196
- accessibilityHint: joinDefined([!hasValidationError && feedback, hint]),
197
- // native only -> replaced with describedBy on web
198
- accessibilityDescribedBy: joinDefined([!hasValidationError && feedback && feedbackId, // feedback receives a11yRole=alert, so there's no need to include it here
199
- hint && hintId]),
200
- // introduced in RNW 0.15.0
201
- accessibilityInvalid: hasValidationError,
202
- // introduced in RNW 0.15.0
203
- nativeID: inputId,
204
- defaultValue: initialValue,
205
- // currentValue is being updated even if the input is not controlled, passing it down to the
206
- // Input could lead to changing its state from uncontrolled to controlled
207
- value: isControlled ? currentValue : undefined
32
+ props: supportsProps,
33
+ rest
34
+ } = inputSupportProps.select(remainingProps);
35
+ const inputProps = { ...rest,
36
+ tokens,
37
+ variant: { ...variant,
38
+ validation: supportsProps.validation
39
+ }
208
40
  };
209
- const feedbackVariant = {};
210
-
211
- if (hasValidationError) {
212
- feedbackVariant.state = 'error';
213
- } else if (validation === 'success') {
214
- feedbackVariant.state = 'success';
215
- }
216
-
217
- return /*#__PURE__*/React.createElement(StackView, {
218
- space: space
219
- }, label && /*#__PURE__*/React.createElement(InputLabel, {
220
- label: label,
221
- hint: hint,
222
- hintPosition: hintPosition,
223
- hintId: hintId,
224
- tooltip: tooltip,
225
- forId: inputId
226
- }), /*#__PURE__*/React.createElement(View, {
227
- style: selectOuterBorderStyles(themeTokens)
228
- }, /*#__PURE__*/React.createElement(NativeTextInput, Object.assign({
229
- style: selectInputStyles(themeTokens, inactive)
230
- }, inputProps)), IconComponent && /*#__PURE__*/React.createElement(View, {
231
- pointerEvents: "none" // avoid hijacking input press events
232
- ,
233
- style: [staticStyles.iconContainer, selectIconContainerStyles(themeTokens)]
234
- }, /*#__PURE__*/React.createElement(IconComponent, {
235
- tokens: selectIconTokens(themeTokens)
236
- }))), feedback && /*#__PURE__*/React.createElement(Feedback, {
237
- title: feedback,
238
- variant: feedbackVariant,
239
- accessibilityRole: hasValidationError ? 'alert' : undefined
240
- }));
41
+ return /*#__PURE__*/React.createElement(InputSupports, supportsProps, ({
42
+ a11yProps,
43
+ inputId
44
+ }) => /*#__PURE__*/React.createElement(TextInputBase, Object.assign({}, inputProps, a11yProps, {
45
+ nativeID: inputId
46
+ })));
241
47
  }
242
48
 
243
- const selectIconContainerStyles = ({
244
- paddingRight
245
- }) => ({
246
- paddingRight
247
- });
248
-
249
- TextInput.propTypes = {
250
- /**
251
- * The input label.
252
- */
253
- label: PropTypes.string,
254
-
255
- /**
256
- * If the `TextInput's` state is to be controlled by a parent component, use this prop
257
- * together with the `onChange` to pass down and update the lifted state.
258
- */
259
- value: PropTypes.string,
260
-
261
- /**
262
- * Use this to set the initial value of an uncontrolled `TextInput`.
263
- * Updating `initialValue` will **not** update the actual value.
264
- */
265
- initialValue: PropTypes.string,
266
-
267
- /**
268
- * A short description of the expected input.
269
- */
270
- hint: PropTypes.string,
271
-
272
- /**
273
- * Position of the hint relative to label.
274
- */
275
- hintPosition: PropTypes.oneOf(['inline', 'below']),
276
-
277
- /**
278
- * A detailed description of validation error/success or additional instructions.
279
- * Visual variant is determined based on the `validation` prop.
280
- */
281
- feedback: PropTypes.string,
282
-
283
- /**
284
- * Content of an optional `Tooltip`. If set, a tooltip button will be shown next to the label.
285
- */
286
- tooltip: PropTypes.string,
287
-
288
- /**
289
- * Use to visually mark an input as valid or invalid.
290
- */
291
- validation: PropTypes.oneOf(['error', 'success']),
292
-
293
- /**
294
- * Disables all user interactions with the input.
295
- */
296
- inactive: PropTypes.bool,
297
-
298
- /**
299
- * Makes it impossible to change the input's value.
300
- */
301
- readOnly: PropTypes.bool,
302
-
303
- /**
304
- * Use to react upon input's value changes. Required when the `value` prop is set.
305
- * Will receive the input's value as an argument.
306
- */
307
- onChange: PropTypes.func,
308
-
309
- /** @ignore */
310
- onChangeText: PropTypes.func,
311
-
312
- /** @ignore */
313
- onFocus: PropTypes.func,
314
-
315
- /** @ignore */
316
- onBlur: PropTypes.func,
317
-
318
- /** @ignore */
319
- onMouseOver: PropTypes.func,
320
-
321
- /** @ignore */
322
- onMouseOut: PropTypes.func,
49
+ TextInput.propTypes = { ...inputSupportProps.types,
50
+ ...textInputPropTypes,
323
51
  tokens: getTokensPropType('TextInput'),
324
52
  variant: variantProp.propType
325
53
  };
326
- export default TextInput;
327
- const staticStyles = StyleSheet.create({
328
- iconContainer: {
329
- position: 'absolute',
330
- right: 0,
331
- top: 0,
332
- bottom: 0,
333
- justifyContent: 'center'
334
- }
335
- });
54
+ export default TextInput;
@@ -0,0 +1,229 @@
1
+ import React, { useState } from 'react';
2
+ import { Platform, StyleSheet, TextInput as NativeTextInput, View } from 'react-native';
3
+ import PropTypes from 'prop-types';
4
+ import { applyTextStyles, useThemeTokens } from '../ThemeProvider';
5
+ import { getTokensPropType, useInputValue, variantProp } from '../utils';
6
+
7
+ const selectInputStyles = ({
8
+ backgroundColor,
9
+ color,
10
+ borderWidth = 0,
11
+ borderColor,
12
+ borderRadius,
13
+ paddingTop = 0,
14
+ paddingBottom = 0,
15
+ paddingLeft,
16
+ paddingRight = 0,
17
+ fontName,
18
+ fontSize,
19
+ fontWeight,
20
+ lineHeight,
21
+ icon,
22
+ iconSize = 0,
23
+ minLines,
24
+ maxLines,
25
+ width,
26
+ height
27
+ }, inactive) => {
28
+ // Subtract border width from padding so overall input width/height doesn't
29
+ // jump around if the border width changes (avoiding NaN and negative padding)
30
+ const offsetBorder = value => typeof value === 'number' ? Math.max(0, value - borderWidth) : value;
31
+
32
+ const textStyles = applyTextStyles({
33
+ fontName,
34
+ fontSize,
35
+ lineHeight,
36
+ fontWeight
37
+ });
38
+
39
+ function linesToHeight(lines) {
40
+ const {
41
+ lineHeight: absoluteLineHeight
42
+ } = textStyles;
43
+ return lines !== undefined ? lines * absoluteLineHeight + paddingTop + paddingBottom : undefined;
44
+ }
45
+
46
+ const minHeight = linesToHeight(minLines);
47
+ const maxHeight = linesToHeight(maxLines);
48
+ const webStyles = Platform.select({
49
+ web: {
50
+ outline: 'none',
51
+ cursor: inactive ? 'not-allowed' : undefined,
52
+ resize: minHeight !== maxHeight ? 'vertical' : 'none' // does nothing for an input, only needed for textarea
53
+
54
+ }
55
+ });
56
+ const paddingWithIcon = iconSize + paddingRight;
57
+ return {
58
+ backgroundColor,
59
+ color,
60
+ borderWidth,
61
+ borderColor,
62
+ borderRadius,
63
+ paddingLeft: offsetBorder(paddingLeft),
64
+ paddingRight: icon ? offsetBorder(paddingWithIcon) : offsetBorder(paddingRight),
65
+ paddingTop: offsetBorder(paddingTop),
66
+ paddingBottom: offsetBorder(paddingBottom),
67
+ minHeight,
68
+ maxHeight,
69
+ width,
70
+ height,
71
+ ...textStyles,
72
+ ...webStyles
73
+ };
74
+ };
75
+
76
+ const selectOuterBorderStyles = ({
77
+ outerBackgroundColor,
78
+ outerBorderWidth = 0,
79
+ outerBorderColor,
80
+ outerBorderRadius = 0
81
+ }) => {
82
+ // Use negative margins so that the outer border doesn't expand the input's bounding box
83
+ const margin = -1 * outerBorderWidth; // Account for the border width since we style it as an outline
84
+
85
+ const borderRadius = outerBorderRadius + outerBorderWidth;
86
+ return {
87
+ background: outerBackgroundColor,
88
+ borderWidth: outerBorderWidth,
89
+ borderColor: outerBorderColor,
90
+ borderRadius,
91
+ marginTop: margin,
92
+ marginBottom: margin,
93
+ marginLeft: margin,
94
+ marginRight: margin
95
+ };
96
+ };
97
+
98
+ const selectIconTokens = ({
99
+ iconSize,
100
+ iconColor
101
+ }) => ({
102
+ size: iconSize,
103
+ color: iconColor
104
+ });
105
+
106
+ const selectIconContainerStyles = ({
107
+ paddingRight,
108
+ paddingBottom
109
+ }) => ({
110
+ paddingRight,
111
+ paddingBottom
112
+ });
113
+
114
+ function TextInputBase({
115
+ value,
116
+ height,
117
+ initialValue,
118
+ inactive,
119
+ readOnly,
120
+ onChange,
121
+ onChangeText,
122
+ onFocus,
123
+ onBlur,
124
+ onMouseOver,
125
+ onMouseOut,
126
+ tokens,
127
+ variant = {},
128
+ ...remainingProps
129
+ }) {
130
+ const [isFocused, setIsFocused] = useState(false);
131
+
132
+ const handleFocus = event => {
133
+ setIsFocused(true);
134
+ if (typeof onFocus === 'function') onFocus(event);
135
+ };
136
+
137
+ const handleBlur = event => {
138
+ setIsFocused(false);
139
+ if (typeof onBlur === 'function') onBlur(event);
140
+ };
141
+
142
+ const [isHovered, setIsHovered] = useState(false);
143
+
144
+ const handleMouseOver = event => {
145
+ setIsHovered(true);
146
+ if (typeof onMouseOver === 'function') onMouseOver(event);
147
+ };
148
+
149
+ const handleMouseOut = event => {
150
+ setIsHovered(false);
151
+ if (typeof onMouseOut === 'function') onMouseOut(event);
152
+ };
153
+
154
+ const {
155
+ currentValue,
156
+ setValue,
157
+ isControlled
158
+ } = useInputValue({
159
+ value,
160
+ initialValue,
161
+ onChange,
162
+ readOnly
163
+ });
164
+
165
+ const handleChangeText = text => {
166
+ setValue(text);
167
+ if (typeof onChangeText === 'function') onChangeText(text);
168
+ };
169
+
170
+ const states = {
171
+ focus: isFocused,
172
+ hover: isHovered,
173
+ inactive
174
+ };
175
+ const themeTokens = useThemeTokens('TextInput', tokens, variant, states);
176
+ const {
177
+ icon: IconComponent
178
+ } = themeTokens;
179
+ const inputProps = { ...remainingProps,
180
+ editable: !inactive,
181
+ onFocus: handleFocus,
182
+ onBlur: handleBlur,
183
+ onMouseOver: handleMouseOver,
184
+ onMouseOut: handleMouseOut,
185
+ onChangeText: handleChangeText,
186
+ defaultValue: initialValue,
187
+ // currentValue is being updated even if the input is not controlled, passing it down to the
188
+ // Input could lead to changing its state from uncontrolled to controlled
189
+ value: isControlled ? currentValue : undefined
190
+ };
191
+ const nativeInputStyle = selectInputStyles({ ...themeTokens,
192
+ height
193
+ }, inactive);
194
+ return /*#__PURE__*/React.createElement(View, {
195
+ style: selectOuterBorderStyles(themeTokens)
196
+ }, /*#__PURE__*/React.createElement(NativeTextInput, Object.assign({
197
+ style: nativeInputStyle
198
+ }, inputProps)), IconComponent && /*#__PURE__*/React.createElement(View, {
199
+ pointerEvents: "none" // avoid hijacking input press events
200
+ ,
201
+ style: [staticStyles.iconContainer, selectIconContainerStyles(themeTokens)]
202
+ }, /*#__PURE__*/React.createElement(IconComponent, {
203
+ tokens: selectIconTokens(themeTokens)
204
+ })));
205
+ }
206
+
207
+ TextInputBase.propTypes = {
208
+ value: PropTypes.string,
209
+ height: PropTypes.number,
210
+ initialValue: PropTypes.string,
211
+ inactive: PropTypes.bool,
212
+ readOnly: PropTypes.bool,
213
+ onChange: PropTypes.func,
214
+ onChangeText: PropTypes.func,
215
+ onFocus: PropTypes.func,
216
+ onBlur: PropTypes.func,
217
+ onMouseOver: PropTypes.func,
218
+ onMouseOut: PropTypes.func,
219
+ tokens: getTokensPropType('TextInput', 'TextArea'),
220
+ variant: variantProp.propType
221
+ };
222
+ export default TextInputBase;
223
+ const staticStyles = StyleSheet.create({
224
+ iconContainer: {
225
+ position: 'absolute',
226
+ right: 0,
227
+ bottom: 0
228
+ }
229
+ });
@@ -1,2 +1,3 @@
1
1
  import TextInput from './TextInput';
2
- export default TextInput;
2
+ import TextArea from './TextArea';
3
+ export { TextInput, TextArea };
@@ -0,0 +1,31 @@
1
+ import PropTypes from 'prop-types';
2
+ const textInputPropTypes = {
3
+ /**
4
+ * If the input's state is to be controlled by a parent component, use this prop
5
+ * together with the `onChange` to pass down and update the lifted state.
6
+ */
7
+ value: PropTypes.string,
8
+
9
+ /**
10
+ * Use this to set the initial value of an uncontrolled input.
11
+ * Updating `initialValue` will **not** update the actual value.
12
+ */
13
+ initialValue: PropTypes.string,
14
+
15
+ /**
16
+ * Disables all user interactions with the input.
17
+ */
18
+ inactive: PropTypes.bool,
19
+
20
+ /**
21
+ * Makes it impossible to change the input's value.
22
+ */
23
+ readOnly: PropTypes.bool,
24
+
25
+ /**
26
+ * Use to react upon input's value changes. Required when the `value` prop is set.
27
+ * Will receive the input's value as an argument.
28
+ */
29
+ onChange: PropTypes.func
30
+ };
31
+ export default textInputPropTypes;
@@ -11,6 +11,22 @@ import { getComponentTheme, getThemeTokens, resolveTokens, mergeAppearances } fr
11
11
  * Returns a complete set of theme tokens for a component based on which of the
12
12
  * component's theme rules apply to the current set of theme appearances.
13
13
  *
14
+ * When applying theme tokens as styles to a component, don't spread the theme tokens
15
+ * object, explicitly select each property. This way, if new theme tokens are added to the
16
+ * component's theme in a minor or patch release of the theme package, the appearance
17
+ * of the component in sites and apps will only change when the component itself is updated.
18
+ *
19
+ * @example
20
+ * const seletContainerTokens = ({ color, width, height }) => ({
21
+ * backgroundColor: color, width, height
22
+ * })
23
+ * const MyComponent = ({ tokens, variant, children }) => {
24
+ * const viewport = useViewport()
25
+ * const themeTokens = useThemeTokens('MyComponent', tokens, variant, { viewport })
26
+ * const style = seletContainerTokens(themeTokens)
27
+ * return <View style={style}>{children}</View>
28
+ * }
29
+ *
14
30
  * @param {string} componentName - the name as defined in the theme schema of the component whose theme is to be used
15
31
  * @param {TokensProp} [tokens] - every themed component should accept an optional `tokens` prop allowing theme tokens to be overridden
16
32
  * @param {AppearanceSet} [variants] - every themed component should accept an optional `variants` prop specifying theme variants
@@ -26,13 +42,48 @@ export const useThemeTokens = (componentName, tokens = {}, variants = {}, states
26
42
  };
27
43
  /**
28
44
  * Returns a memoised tokens getter function that gets tokens similar to calling useThemeTokens.
29
- * Scenarios where useThemeTokensCallback should be used instead of useThemeTokens include:
45
+ * Scenarios where `useThemeTokensCallback` should be used instead of `useThemeTokens` include:
30
46
  *
31
- * - Where tokens to be obtained from state accessible only in scopes like callbacks and render functions,
32
- * where calling useThemeTokens directly would be disallowed by React's hook rules.
47
+ * - Where tokens are to be obtained from state that is accessible only in scopes like callbacks
48
+ * and render functions, where calling useThemeTokens directly would be disallowed by React's hook rules.
33
49
  * - Passing a tokens getter down via a child component's `tokens` prop, applying rules using the
34
50
  * child component's current state. Consider wrapping the returned tokens in `selectTokens()`.
35
51
  *
52
+ * The function returned by `useThemeTokens` may be called with an object of state appearances to get an object
53
+ * of tokens, or may be passed as a `tokens` prop to other themed components or `useThemeTokens`/`useThemeTokensCallback`
54
+ * hooks.
55
+ *
56
+ * @example
57
+ * // Resolving tokens inside Pressable's style function, based on Pressable state
58
+ * const PressMe = ({ tokens, variant, children }) => {
59
+ * const getTokens = useThemeTokensCallback('PressMe', tokens, variant)
60
+ * const getPressableStyle = ({ pressed }) => {
61
+ * const { color, width, height } = getTokens({ pressed })
62
+ * return { backgroundColor: color, width, height }
63
+ * }
64
+ * return <Pressable style={getPressableStyle}>{children}</Pressable>
65
+ * }
66
+ *
67
+ * @example
68
+ * // Setting the theme in a parent and resolving it in a child based on child's state
69
+ * const MenuButton = ({ tokens, variant, ...buttonProps }) => {
70
+ * // Define what theme, variant etc we want in this component...
71
+ * const getTokens = useThemeTokensCallback('Button', tokens, variant)
72
+ * // ...resolve them in another component based on its state (e.g. press, hover...)
73
+ * return <ButtonBase tokens={getTokens} accessibilityRole="menuitem" {...buttonProps} />
74
+ * }
75
+ *
76
+ * @example
77
+ * // Chaining multiple themes together, sharing the same variants and state
78
+ * const GlowingLink = ({ tokens, variant, children }) => {
79
+ * // applies a small theme for a glowing effect, using same variants and states as "link"
80
+ * const getGlowTokens = useThemeCallback('GlowingLink', tokens, variant)
81
+ * // applies link state to get "Link" theme tokens and merge "GlowingLink" tokens on top
82
+ * const getTokens = useThemeCallback('Link', getGlowTokens, variant)
83
+ * // renders a link with both themes applied, both based on current link state
84
+ * return <LinkBase tokens={getTokens}>{children}</LinkBase>
85
+ * }
86
+ *
36
87
  * @param {string} componentName - the name as defined in the theme schema of the component whose theme is to be used
37
88
  * @param {TokensProp} [tokens] - every themed component should accept a `tokens` prop allowing theme tokens to be overridden
38
89
  * @param {AppearanceSet} [variants] - variants passed in as props that don't change dynamically
@@ -147,7 +147,7 @@ ToggleSwitch.propTypes = { ...a11yProps.propTypes,
147
147
  };
148
148
  const staticStyles = StyleSheet.create({
149
149
  track: {
150
- flex: 1,
150
+ flexGrow: 1,
151
151
  alignSelf: 'stretch',
152
152
  flexDirection: 'row'
153
153
  },