@jobber/components-native 0.107.0 → 0.107.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.
package/dist/docs/Chip/Chip.md
CHANGED
|
@@ -238,8 +238,8 @@ export function ChipInvalidExample(
|
|
|
238
238
|
single-select, multi-select, and add/dismiss functionality "out of the box"
|
|
239
239
|
* [FilterPicker](/components/FilterPicker) is most commonly triggered by a Chip,
|
|
240
240
|
but is a separate component
|
|
241
|
-
* [
|
|
242
|
-
presents as a form element and should be preferred in forms
|
|
241
|
+
* [LegacySelect](/components/LegacySelect) is a simpler single-select "dropdown"
|
|
242
|
+
that presents as a form element and should be preferred in forms
|
|
243
243
|
* [RadioGroup](/components/RadioGroup) should be used to allow the user to
|
|
244
244
|
select "one-of-many" items (single-select) and the labels for the items are
|
|
245
245
|
longer than 1 or 2 words.
|
|
@@ -84,6 +84,19 @@ different.
|
|
|
84
84
|
Used by the `--shadow-focus` property to indicate that an element has received
|
|
85
85
|
focus. Avoid using `--color-focus` directly on UI elements.
|
|
86
86
|
|
|
87
|
+
### Data Visualization
|
|
88
|
+
|
|
89
|
+
Use these colors to distinguish values in charts and other data visualizations.
|
|
90
|
+
They respond to theming and should be preferred over base color tokens.
|
|
91
|
+
|
|
92
|
+
#### Categorical
|
|
93
|
+
|
|
94
|
+
Use categorical colors to distinguish unrelated groups or series. Use `subtle`
|
|
95
|
+
or `bold` when multiple treatments of the first categorical color need to sit
|
|
96
|
+
together in the same visualization.
|
|
97
|
+
|
|
98
|
+
Use additional categorical colors for supporting data series.
|
|
99
|
+
|
|
87
100
|
### Status
|
|
88
101
|
|
|
89
102
|
Use these colors in labels, icons, filters, alerts, and other elements where
|
package/dist/docs/Form/Form.md
CHANGED
|
@@ -18,11 +18,11 @@ have a `value` and `onChange` prop.
|
|
|
18
18
|
### Inputs
|
|
19
19
|
|
|
20
20
|
Form can accept various inputs and selection elements such as (but not limited
|
|
21
|
-
to) [InputText](../InputText/InputText.md),
|
|
22
|
-
[
|
|
23
|
-
[Chips](/components/Chips). They should be
|
|
24
|
-
indicate grouping when relevant, and groups
|
|
25
|
-
using ContentSection.
|
|
21
|
+
to) [InputText](../InputText/InputText.md),
|
|
22
|
+
[LegacySelect](/components/LegacySelect), [Switch](../Switch/Switch.md),
|
|
23
|
+
[Checkbox](../Checkbox/Checkbox.md), and [Chips](/components/Chips). They should be
|
|
24
|
+
placed [Cards](../Card/Card.md) to indicate grouping when relevant, and groups
|
|
25
|
+
of Cards can be spaced appropriately using ContentSection.
|
|
26
26
|
|
|
27
27
|
### Save Button label
|
|
28
28
|
|
package/dist/docs/index.md
CHANGED
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
[Radii](./Radii/Radii.md)
|
|
53
53
|
[ResponsiveBreakpoint](./ResponsiveBreakpoint/ResponsiveBreakpoint.md)
|
|
54
54
|
[scaffolding](./scaffolding/scaffolding.md)
|
|
55
|
-
[Select](./Select/Select.md)
|
|
56
55
|
[settings](./settings/settings.md)
|
|
57
56
|
[Spacing](./Spacing/Spacing.md)
|
|
58
57
|
[StatusLabel](./StatusLabel/StatusLabel.md)
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.107.
|
|
3
|
+
"version": "0.107.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@babel/runtime": "^7.29.2",
|
|
75
75
|
"@gorhom/bottom-sheet": "^5.2.8",
|
|
76
|
-
"@jobber/design": "0.
|
|
76
|
+
"@jobber/design": "0.106.1",
|
|
77
77
|
"@jobber/hooks": "2.21.0",
|
|
78
78
|
"@react-native-community/datetimepicker": "^8.4.5",
|
|
79
79
|
"@react-native/babel-preset": "^0.82.1",
|
|
@@ -124,5 +124,5 @@
|
|
|
124
124
|
"react-native-screens": ">=4.18.0",
|
|
125
125
|
"react-native-svg": ">=12.0.0"
|
|
126
126
|
},
|
|
127
|
-
"gitHead": "
|
|
127
|
+
"gitHead": "3f6678b1792101e43e544ec51cfa17d883362460"
|
|
128
128
|
}
|