@jobber/components-native 0.77.0 → 0.77.1
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.
|
@@ -62,7 +62,7 @@ interface CommonButtonProps {
|
|
|
62
62
|
/**
|
|
63
63
|
* **Use at your own risk:** Custom style for specific elements. This should only be used as a
|
|
64
64
|
* **last resort**. Using this may result in unexpected side effects.
|
|
65
|
-
* More information [
|
|
65
|
+
* More information in the [Customizing components Guide](https://atlantis.getjobber.com/guides/customizing-components).
|
|
66
66
|
*/
|
|
67
67
|
readonly UNSAFE_style?: ButtonUnsafeStyle;
|
|
68
68
|
}
|
|
@@ -63,7 +63,7 @@ export interface TextProps extends Pick<TypographyProps<"base">, "maxFontScaleSi
|
|
|
63
63
|
/**
|
|
64
64
|
* **Use at your own risk:** Custom style for specific elements. This should only be used as a
|
|
65
65
|
* **last resort**. Using this may result in unexpected side effects.
|
|
66
|
-
* More information [
|
|
66
|
+
* More information in the [Customizing components Guide](https://atlantis.getjobber.com/guides/customizing-components).
|
|
67
67
|
*/
|
|
68
68
|
readonly UNSAFE_style?: TypographyUnsafeStyle;
|
|
69
69
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.77.
|
|
3
|
+
"version": "0.77.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"react-native-safe-area-context": "^4.5.2",
|
|
81
81
|
"react-native-svg": ">=12.0.0"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "ddce093f19e0b03e0d33b7706842dc94b6c65739"
|
|
84
84
|
}
|
package/src/Button/Button.tsx
CHANGED
|
@@ -81,7 +81,7 @@ interface CommonButtonProps {
|
|
|
81
81
|
/**
|
|
82
82
|
* **Use at your own risk:** Custom style for specific elements. This should only be used as a
|
|
83
83
|
* **last resort**. Using this may result in unexpected side effects.
|
|
84
|
-
* More information [
|
|
84
|
+
* More information in the [Customizing components Guide](https://atlantis.getjobber.com/guides/customizing-components).
|
|
85
85
|
*/
|
|
86
86
|
readonly UNSAFE_style?: ButtonUnsafeStyle;
|
|
87
87
|
}
|
package/src/Text/Text.tsx
CHANGED
|
@@ -90,7 +90,7 @@ export interface TextProps
|
|
|
90
90
|
/**
|
|
91
91
|
* **Use at your own risk:** Custom style for specific elements. This should only be used as a
|
|
92
92
|
* **last resort**. Using this may result in unexpected side effects.
|
|
93
|
-
* More information [
|
|
93
|
+
* More information in the [Customizing components Guide](https://atlantis.getjobber.com/guides/customizing-components).
|
|
94
94
|
*/
|
|
95
95
|
readonly UNSAFE_style?: TypographyUnsafeStyle;
|
|
96
96
|
}
|