@jobber/components-native 0.73.3 → 0.74.0
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/package.json +2 -2
- package/dist/src/InputFieldWrapper/InputFieldWrapper.js +1 -3
- package/dist/src/InputFieldWrapper/components/Prefix/Prefix.js +1 -3
- package/dist/src/InputFieldWrapper/components/Suffix/Suffix.js +1 -3
- package/dist/src/InputText/context/InputAccessoriesProvider.js +1 -3
- package/dist/src/ProgressBar/ProgressBar.js +3 -2
- package/dist/src/ProgressBar/ProgressBar.size.style.js +6 -0
- package/dist/src/ProgressBar/ProgressBar.style.js +0 -1
- package/dist/src/Typography/Typography.js +1 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/src/ProgressBar/ProgressBar.d.ts +1 -1
- package/dist/types/src/ProgressBar/ProgressBar.size.style.d.ts +11 -0
- package/dist/types/src/ProgressBar/ProgressBar.style.d.ts +0 -1
- package/dist/types/src/ProgressBar/types.d.ts +5 -0
- package/package.json +2 -2
- package/src/InputFieldWrapper/InputFieldWrapper.test.tsx +0 -1
- package/src/InputFieldWrapper/InputFieldWrapper.tsx +0 -1
- package/src/InputFieldWrapper/components/Prefix/Prefix.tsx +0 -1
- package/src/InputFieldWrapper/components/Suffix/Suffix.tsx +0 -1
- package/src/InputText/context/InputAccessoriesProvider.tsx +0 -1
- package/src/ProgressBar/ProgressBar.size.style.ts +7 -0
- package/src/ProgressBar/ProgressBar.style.ts +0 -1
- package/src/ProgressBar/ProgressBar.tsx +3 -1
- package/src/ProgressBar/__snapshots__/ProgressBar.test.tsx.snap +22 -14
- package/src/ProgressBar/types.ts +6 -0
- package/src/Typography/Typography.tsx +0 -1
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"react-native-safe-area-context": "^4.5.2",
|
|
80
80
|
"react-native-svg": ">=12.0.0"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "f948ae04472c41f83586ec963321116721d680be"
|
|
83
83
|
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import {
|
|
3
|
-
// eslint-disable-next-line no-restricted-imports
|
|
4
|
-
Text as RNText, View, } from "react-native";
|
|
2
|
+
import { Text as RNText, View, } from "react-native";
|
|
5
3
|
import { styles } from "./InputFieldWrapper.style";
|
|
6
4
|
import { PrefixIcon, PrefixLabel } from "./components/Prefix/Prefix";
|
|
7
5
|
import { SuffixIcon, SuffixLabel } from "./components/Suffix/Suffix";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import {
|
|
3
|
-
// eslint-disable-next-line no-restricted-imports
|
|
4
|
-
Text as RNText, View, } from "react-native";
|
|
2
|
+
import { Text as RNText, View, } from "react-native";
|
|
5
3
|
import { Icon } from "../../../Icon";
|
|
6
4
|
import { Text } from "../../../Text";
|
|
7
5
|
import { tokens } from "../../../utils/design";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { Pressable,
|
|
3
|
-
// eslint-disable-next-line no-restricted-imports
|
|
4
|
-
Text as RNText, View, } from "react-native";
|
|
2
|
+
import { Pressable, Text as RNText, View, } from "react-native";
|
|
5
3
|
import { tokens } from "../../../utils/design";
|
|
6
4
|
import { Icon } from "../../../Icon";
|
|
7
5
|
import { Text } from "../../../Text";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React, { useEffect, useRef, useState } from "react";
|
|
2
|
-
import { InputAccessoryView, Keyboard, Platform,
|
|
3
|
-
// eslint-disable-next-line no-restricted-imports
|
|
4
|
-
Button as RNButton, View, useColorScheme, } from "react-native";
|
|
2
|
+
import { InputAccessoryView, Keyboard, Platform, Button as RNButton, View, useColorScheme, } from "react-native";
|
|
5
3
|
import { v4 } from "react-native-uuid";
|
|
6
4
|
import { InputAccessoriesContext } from "./InputAccessoriesContext";
|
|
7
5
|
import { styles } from "./InputAccessoriesProvider.style";
|
|
@@ -3,13 +3,14 @@ import { View } from "react-native";
|
|
|
3
3
|
import { styles } from "./ProgressBar.style";
|
|
4
4
|
import { ProgressBarInner, calculateWidth } from "./ProgressBarInner";
|
|
5
5
|
import { ProgressBarStepped } from "./ProgressBarStepped";
|
|
6
|
+
import { sizeStyles } from "./ProgressBar.size.style";
|
|
6
7
|
import { tokens } from "../utils/design";
|
|
7
8
|
import { useAtlantisI18n } from "../hooks/useAtlantisI18n";
|
|
8
|
-
export function ProgressBar({ loading, total, current, inProgress = 0, reverseTheme = false, header, variation = "progress", }) {
|
|
9
|
+
export function ProgressBar({ loading, total, current, inProgress = 0, reverseTheme = false, header, variation = "progress", size = "base", }) {
|
|
9
10
|
const { t } = useAtlantisI18n();
|
|
10
11
|
return (React.createElement(View, { accessible: true, accessibilityRole: "progressbar", accessibilityLabel: getA11yLabel() },
|
|
11
12
|
header,
|
|
12
|
-
variation === "stepped" ? (React.createElement(ProgressBarStepped, { total: total, current: current, color: reverseTheme ? undefined : tokens["color-surface--background"], loading: loading, inProgress: inProgress })) : (React.createElement(View, { style: styles.progressBarContainer },
|
|
13
|
+
variation === "stepped" ? (React.createElement(ProgressBarStepped, { total: total, current: current, color: reverseTheme ? undefined : tokens["color-surface--background"], loading: loading, inProgress: inProgress })) : (React.createElement(View, { style: [styles.progressBarContainer, sizeStyles[size]] },
|
|
13
14
|
React.createElement(ProgressBarInner, { width: 100, animationDuration: 0, color: reverseTheme ? undefined : tokens["color-surface--background"] }),
|
|
14
15
|
!loading && (React.createElement(React.Fragment, null,
|
|
15
16
|
inProgress && inProgress > 0 ? (React.createElement(ProgressBarInner, { width: calculateWidth(total, current + inProgress), color: tokens["color-informative"], animationDuration: 800 })) : (React.createElement(React.Fragment, null)),
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { I18nManager, StyleSheet,
|
|
3
|
-
// eslint-disable-next-line no-restricted-imports
|
|
4
|
-
Text, } from "react-native";
|
|
2
|
+
import { I18nManager, StyleSheet, Text, } from "react-native";
|
|
5
3
|
import { TypographyGestureDetector } from "./TypographyGestureDetector";
|
|
6
4
|
import { typographyStyles as styles } from "./Typography.style";
|
|
7
5
|
import { tokens } from "../utils/design";
|