@coinbase/cds-web 8.34.1 → 8.35.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/CHANGELOG.md +12 -0
- package/dts/media/RemoteImageGroup.d.ts +5 -1
- package/dts/media/RemoteImageGroup.d.ts.map +1 -1
- package/dts/visualizations/DefaultProgressCircleContent.d.ts +1 -0
- package/dts/visualizations/DefaultProgressCircleContent.d.ts.map +1 -1
- package/dts/visualizations/ProgressCircle.d.ts +4 -1
- package/dts/visualizations/ProgressCircle.d.ts.map +1 -1
- package/dts/visualizations/ProgressTextLabel.d.ts +5 -1
- package/dts/visualizations/ProgressTextLabel.d.ts.map +1 -1
- package/esm/media/RemoteImageGroup.css +2 -1
- package/esm/media/RemoteImageGroup.js +15 -5
- package/esm/visualizations/DefaultProgressCircleContent.js +2 -0
- package/esm/visualizations/ProgressCircle.js +6 -2
- package/esm/visualizations/ProgressTextLabel.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,18 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
|
|
9
9
|
<!-- template-start -->
|
|
10
10
|
|
|
11
|
+
## 8.35.0 (1/5/2026 PST)
|
|
12
|
+
|
|
13
|
+
#### 🚀 Updates
|
|
14
|
+
|
|
15
|
+
- Add border props to RemoteImageGroup.
|
|
16
|
+
|
|
17
|
+
## 8.34.2 (1/2/2026 PST)
|
|
18
|
+
|
|
19
|
+
#### 🐞 Fixes
|
|
20
|
+
|
|
21
|
+
- Handle disableAnimateOnMount prop for web ProgressCircle. [[#280](https://github.com/coinbase/cds/pull/280)]
|
|
22
|
+
|
|
11
23
|
## 8.34.1 (12/23/2025 PST)
|
|
12
24
|
|
|
13
25
|
#### 🐞 Fixes
|
|
@@ -5,8 +5,10 @@ import type {
|
|
|
5
5
|
SharedAccessibilityProps,
|
|
6
6
|
SharedProps,
|
|
7
7
|
} from '@coinbase/cds-common/types';
|
|
8
|
+
import { type BoxDefaultElement, type BoxProps } from '../layout/Box';
|
|
8
9
|
export type RemoteImageGroupBaseProps = SharedProps &
|
|
9
|
-
SharedAccessibilityProps &
|
|
10
|
+
SharedAccessibilityProps &
|
|
11
|
+
Pick<BoxProps<BoxDefaultElement>, 'borderWidth' | 'borderColor'> & {
|
|
10
12
|
/**
|
|
11
13
|
* Indicates the number of remote image before it collapses
|
|
12
14
|
* @default 4
|
|
@@ -32,6 +34,8 @@ export declare const RemoteImageGroup: ({
|
|
|
32
34
|
max,
|
|
33
35
|
shape,
|
|
34
36
|
testID,
|
|
37
|
+
borderWidth,
|
|
38
|
+
borderColor,
|
|
35
39
|
...props
|
|
36
40
|
}: RemoteImageGroupProps) => import('react/jsx-runtime').JSX.Element;
|
|
37
41
|
//# sourceMappingURL=RemoteImageGroup.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RemoteImageGroup.d.ts","sourceRoot":"","sources":["../../src/media/RemoteImageGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4C,MAAM,OAAO,CAAC;AACjE,OAAO,KAAK,EACV,UAAU,EAGV,KAAK,EACL,wBAAwB,EACxB,WAAW,EACZ,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"RemoteImageGroup.d.ts","sourceRoot":"","sources":["../../src/media/RemoteImageGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4C,MAAM,OAAO,CAAC;AACjE,OAAO,KAAK,EACV,UAAU,EAGV,KAAK,EACL,wBAAwB,EACxB,WAAW,EACZ,MAAM,4BAA4B,CAAC;AAKpC,OAAO,EAAO,KAAK,iBAAiB,EAAE,KAAK,QAAQ,EAAE,MAAM,eAAe,CAAC;AAK3E,MAAM,MAAM,yBAAyB,GAAG,WAAW,GACjD,wBAAwB,GACxB,IAAI,CAAC,QAAQ,CAAC,iBAAiB,CAAC,EAAE,aAAa,GAAG,aAAa,CAAC,GAAG;IACjE;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;;OAGG;IACH,IAAI,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC;IAC3B;;;OAGG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,uBAAuB;IACvB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEJ,MAAM,MAAM,qBAAqB,GAAG,yBAAyB,CAAC;AA4B9D,eAAO,MAAM,gBAAgB,GAAI,4EAS9B,qBAAqB,4CAwFvB,CAAC"}
|
|
@@ -3,6 +3,7 @@ import type { ProgressCircleContentProps } from './ProgressCircle';
|
|
|
3
3
|
export declare const DefaultProgressCircleContent: React.MemoExoticComponent<
|
|
4
4
|
({
|
|
5
5
|
progress,
|
|
6
|
+
disableAnimateOnMount,
|
|
6
7
|
disabled,
|
|
7
8
|
color,
|
|
8
9
|
}: ProgressCircleContentProps) => import('react/jsx-runtime').JSX.Element
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DefaultProgressCircleContent.d.ts","sourceRoot":"","sources":["../../src/visualizations/DefaultProgressCircleContent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAEpC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAGnE,eAAO,MAAM,4BAA4B,
|
|
1
|
+
{"version":3,"file":"DefaultProgressCircleContent.d.ts","sourceRoot":"","sources":["../../src/visualizations/DefaultProgressCircleContent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAEpC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAGnE,eAAO,MAAM,4BAA4B,oFAMpC,0BAA0B,6CAU9B,CAAC"}
|
|
@@ -75,7 +75,10 @@ export type ProgressCircleProps = ProgressCircleBaseProps & {
|
|
|
75
75
|
progress?: string;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
-
export type ProgressCircleContentProps = Pick<
|
|
78
|
+
export type ProgressCircleContentProps = Pick<
|
|
79
|
+
ProgressCircleBaseProps,
|
|
80
|
+
'progress' | 'disableAnimateOnMount' | 'disabled'
|
|
81
|
+
> & {
|
|
79
82
|
/**
|
|
80
83
|
* Custom text color.
|
|
81
84
|
* @default fgMuted
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProgressCircle.d.ts","sourceRoot":"","sources":["../../src/visualizations/ProgressCircle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmC,MAAM,OAAO,CAAC;AACxD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAatD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAWvD,MAAM,MAAM,uBAAuB,GAAG,iBAAiB,GAAG;IACxD;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,uBAAuB,GAAG;IAC1D;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE;QACP;;WAEG;QACH,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC3B;;WAEG;QACH,GAAG,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC1B;;WAEG;QACH,MAAM,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC7B;;WAEG;QACH,QAAQ,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;KAChC,CAAC;IACF;;OAEG;IACH,UAAU,CAAC,EAAE;QACX;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,GAAG,CAAC,EAAE,MAAM,CAAC;QACb;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB;;WAEG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"ProgressCircle.d.ts","sourceRoot":"","sources":["../../src/visualizations/ProgressCircle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmC,MAAM,OAAO,CAAC;AACxD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAatD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAWvD,MAAM,MAAM,uBAAuB,GAAG,iBAAiB,GAAG;IACxD;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,uBAAuB,GAAG;IAC1D;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE;QACP;;WAEG;QACH,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC3B;;WAEG;QACH,GAAG,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC1B;;WAEG;QACH,MAAM,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC7B;;WAEG;QACH,QAAQ,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;KAChC,CAAC;IACF;;OAEG;IACH,UAAU,CAAC,EAAE;QACX;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,GAAG,CAAC,EAAE,MAAM,CAAC;QACb;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB;;WAEG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG,IAAI,CAC3C,uBAAuB,EACvB,UAAU,GAAG,uBAAuB,GAAG,UAAU,CAClD,GAAG;IACF;;;OAGG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC;CACzB,CAAC;AAkEF,eAAO,MAAM,cAAc;;;;;;;;IAtJzB;;OAEG;kBACW,OAAO;IACrB;;;OAGG;eACQ,OAAO;IAClB;;;;;OAKG;WACI,MAAM;IACb;;OAEG;kBACW,KAAK,CAAC,SAAS;;IAI7B;;OAEG;YACK,KAAK,CAAC,aAAa;IAC3B;;OAEG;gBACS,MAAM;IAClB;;OAEG;aACM;QACP;;WAEG;QACH,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC3B;;WAEG;QACH,GAAG,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC1B;;WAEG;QACH,MAAM,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC7B;;WAEG;QACH,QAAQ,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;KAChC;IACD;;OAEG;iBACU;QACX;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,GAAG,CAAC,EAAE,MAAM,CAAC;QACb;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB;;WAEG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB;yCAkMF,CAAC"}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { ThemeVars } from '@coinbase/cds-common/core/theme';
|
|
3
3
|
import type { ProgressBaseProps } from './ProgressBar';
|
|
4
|
-
export type ProgressTextLabelProps = Pick<
|
|
4
|
+
export type ProgressTextLabelProps = Pick<
|
|
5
|
+
ProgressBaseProps,
|
|
6
|
+
'disableAnimateOnMount' | 'disabled'
|
|
7
|
+
> & {
|
|
5
8
|
value: number;
|
|
6
9
|
renderLabel?: (num: number, disabled?: boolean) => React.ReactNode;
|
|
7
10
|
color?: ThemeVars.Color;
|
|
@@ -18,6 +21,7 @@ export declare const ProgressTextLabel: React.MemoExoticComponent<
|
|
|
18
21
|
({
|
|
19
22
|
value,
|
|
20
23
|
renderLabel,
|
|
24
|
+
disableAnimateOnMount,
|
|
21
25
|
disabled,
|
|
22
26
|
color,
|
|
23
27
|
style,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProgressTextLabel.d.ts","sourceRoot":"","sources":["../../src/visualizations/ProgressTextLabel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAEjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAQjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAEvD,MAAM,MAAM,sBAAsB,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"ProgressTextLabel.d.ts","sourceRoot":"","sources":["../../src/visualizations/ProgressTextLabel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAEjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAQjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAEvD,MAAM,MAAM,sBAAsB,GAAG,IAAI,CACvC,iBAAiB,EACjB,uBAAuB,GAAG,UAAU,CACrC,GAAG;IACF,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,OAAO,KAAK,KAAK,CAAC,SAAS,CAAC;IACnE,KAAK,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC;IACxB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,iBAAiB,gHASzB,sBAAsB,6CA0C1B,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const _excluded = ["children", "size", "max", "shape", "testID"];
|
|
1
|
+
const _excluded = ["children", "size", "max", "shape", "testID", "borderWidth", "borderColor"];
|
|
2
2
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
3
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
4
|
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
@@ -7,6 +7,7 @@ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e =
|
|
|
7
7
|
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
8
8
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
9
9
|
import React, { Children, isValidElement, useMemo } from 'react';
|
|
10
|
+
import { cx } from '../cx';
|
|
10
11
|
import { useTheme } from '../hooks/useTheme';
|
|
11
12
|
import { Box } from '../layout/Box';
|
|
12
13
|
import { Text } from '../typography/Text';
|
|
@@ -19,19 +20,21 @@ const borderRadiusCss = {
|
|
|
19
20
|
rectangle: "rectangle-ra2rof2"
|
|
20
21
|
};
|
|
21
22
|
const isolateCss = "isolateCss-i1shf7o1";
|
|
23
|
+
const excessContainerCss = "excessContainerCss-e1lnj2ws";
|
|
22
24
|
export const RemoteImageGroup = _ref => {
|
|
23
25
|
let {
|
|
24
26
|
children,
|
|
25
27
|
size = 'm',
|
|
26
28
|
max = 4,
|
|
27
29
|
shape = 'circle',
|
|
28
|
-
testID
|
|
30
|
+
testID,
|
|
31
|
+
borderWidth,
|
|
32
|
+
borderColor = borderWidth ? 'bg' : undefined
|
|
29
33
|
} = _ref,
|
|
30
34
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
31
35
|
const {
|
|
32
36
|
avatarSize
|
|
33
37
|
} = useTheme();
|
|
34
|
-
const borderRadius = borderRadiusCss[shape];
|
|
35
38
|
const sizeAsNumber = typeof size === 'number' ? size : avatarSize[size];
|
|
36
39
|
const overlapSpacing = sizeAsNumber <= 40 ? -1 : -2;
|
|
37
40
|
const excess = Children.count(children) - max;
|
|
@@ -54,18 +57,23 @@ export const RemoteImageGroup = _ref => {
|
|
|
54
57
|
if (! /*#__PURE__*/isValidElement(child)) {
|
|
55
58
|
return null;
|
|
56
59
|
}
|
|
60
|
+
const childShape = child.props.shape;
|
|
57
61
|
|
|
58
62
|
// dynamically apply uniform sizing and shape to all RemoteImage children elements
|
|
59
63
|
const clonedChild = /*#__PURE__*/React.cloneElement(child, _objectSpread({
|
|
60
64
|
width: sizeAsNumber,
|
|
61
65
|
height: sizeAsNumber
|
|
62
|
-
},
|
|
66
|
+
}, childShape ? undefined : {
|
|
63
67
|
shape
|
|
64
68
|
}));
|
|
65
69
|
|
|
66
70
|
// zIndex is progressively lower so that each child is stacked below the previous one
|
|
67
71
|
const zIndex = -index;
|
|
72
|
+
const childContainerCss = borderWidth ? borderRadiusCss[childShape !== null && childShape !== void 0 ? childShape : shape] : undefined;
|
|
68
73
|
return /*#__PURE__*/_jsx(Box, {
|
|
74
|
+
borderColor: borderColor,
|
|
75
|
+
borderWidth: borderWidth,
|
|
76
|
+
className: childContainerCss,
|
|
69
77
|
marginStart: index === 0 ? undefined : overlapSpacing,
|
|
70
78
|
position: "relative",
|
|
71
79
|
testID: "".concat(testID ? "".concat(testID, "-") : '', "inner-box-").concat(index),
|
|
@@ -75,7 +83,9 @@ export const RemoteImageGroup = _ref => {
|
|
|
75
83
|
}), excess > 0 && /*#__PURE__*/_jsx(Box, {
|
|
76
84
|
alignItems: "center",
|
|
77
85
|
background: "bgOverlay",
|
|
78
|
-
|
|
86
|
+
borderColor: borderColor,
|
|
87
|
+
borderWidth: borderWidth,
|
|
88
|
+
className: cx(excessContainerCss, borderRadiusCss[shape]),
|
|
79
89
|
height: sizeAsNumber,
|
|
80
90
|
justifyContent: "center",
|
|
81
91
|
marginStart: overlapSpacing,
|
|
@@ -4,11 +4,13 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
4
4
|
export const DefaultProgressCircleContent = /*#__PURE__*/memo(_ref => {
|
|
5
5
|
let {
|
|
6
6
|
progress,
|
|
7
|
+
disableAnimateOnMount,
|
|
7
8
|
disabled,
|
|
8
9
|
color = 'fgMuted'
|
|
9
10
|
} = _ref;
|
|
10
11
|
return /*#__PURE__*/_jsx(ProgressTextLabel, {
|
|
11
12
|
color: color,
|
|
13
|
+
disableAnimateOnMount: disableAnimateOnMount,
|
|
12
14
|
disabled: disabled,
|
|
13
15
|
value: Math.round(progress * 100)
|
|
14
16
|
});
|
|
@@ -26,7 +26,8 @@ const ProgressCircleInner = /*#__PURE__*/memo(_ref => {
|
|
|
26
26
|
style,
|
|
27
27
|
className,
|
|
28
28
|
onAnimationEnd,
|
|
29
|
-
onAnimationStart
|
|
29
|
+
onAnimationStart,
|
|
30
|
+
disableAnimateOnMount
|
|
30
31
|
} = _ref;
|
|
31
32
|
const strokeWidth = useProgressSize(weight);
|
|
32
33
|
const circleRef = useRef(null);
|
|
@@ -41,7 +42,7 @@ const ProgressCircleInner = /*#__PURE__*/memo(_ref => {
|
|
|
41
42
|
},
|
|
42
43
|
transition: animateProgressBaseSpec,
|
|
43
44
|
initial: {
|
|
44
|
-
strokeDashoffset: circumference
|
|
45
|
+
strokeDashoffset: disableAnimateOnMount ? progressOffset : circumference
|
|
45
46
|
}
|
|
46
47
|
});
|
|
47
48
|
return /*#__PURE__*/_jsx(motion.circle, _objectSpread(_objectSpread(_objectSpread({
|
|
@@ -65,6 +66,7 @@ export const ProgressCircle = /*#__PURE__*/memo(/*#__PURE__*/forwardRef((_ref2,
|
|
|
65
66
|
progress,
|
|
66
67
|
color = 'bgPrimary',
|
|
67
68
|
disabled = false,
|
|
69
|
+
disableAnimateOnMount = false,
|
|
68
70
|
testID,
|
|
69
71
|
hideContent,
|
|
70
72
|
hideText,
|
|
@@ -126,6 +128,7 @@ export const ProgressCircle = /*#__PURE__*/memo(/*#__PURE__*/forwardRef((_ref2,
|
|
|
126
128
|
})), /*#__PURE__*/_jsx(ProgressCircleInner, {
|
|
127
129
|
className: classNames === null || classNames === void 0 ? void 0 : classNames.progress,
|
|
128
130
|
color: color,
|
|
131
|
+
disableAnimateOnMount: disableAnimateOnMount,
|
|
129
132
|
onAnimationEnd: onAnimationEnd,
|
|
130
133
|
onAnimationStart: onAnimationStart,
|
|
131
134
|
progress: progress,
|
|
@@ -149,6 +152,7 @@ export const ProgressCircle = /*#__PURE__*/memo(/*#__PURE__*/forwardRef((_ref2,
|
|
|
149
152
|
overflow: "clip",
|
|
150
153
|
width: "100%",
|
|
151
154
|
children: contentNode !== null && contentNode !== void 0 ? contentNode : /*#__PURE__*/_jsx(DefaultProgressCircleContent, {
|
|
155
|
+
disableAnimateOnMount: disableAnimateOnMount,
|
|
152
156
|
disabled: disabled,
|
|
153
157
|
progress: progress
|
|
154
158
|
})
|
|
@@ -10,6 +10,7 @@ export const ProgressTextLabel = /*#__PURE__*/memo(_ref => {
|
|
|
10
10
|
let {
|
|
11
11
|
value,
|
|
12
12
|
renderLabel,
|
|
13
|
+
disableAnimateOnMount,
|
|
13
14
|
disabled,
|
|
14
15
|
color,
|
|
15
16
|
style,
|
|
@@ -18,7 +19,7 @@ export const ProgressTextLabel = /*#__PURE__*/memo(_ref => {
|
|
|
18
19
|
const {
|
|
19
20
|
getPreviousValue,
|
|
20
21
|
addPreviousValue
|
|
21
|
-
} = usePreviousValues([0]);
|
|
22
|
+
} = usePreviousValues([disableAnimateOnMount ? value : 0]);
|
|
22
23
|
addPreviousValue(value);
|
|
23
24
|
const renderNum = useCallback(num => {
|
|
24
25
|
const textValue = renderLabel ? renderLabel(num, disabled) : "".concat(num, "%");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinbase/cds-web",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.35.0",
|
|
4
4
|
"description": "Coinbase Design System - Web",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"react-dom": "^18.3.1"
|
|
204
204
|
},
|
|
205
205
|
"dependencies": {
|
|
206
|
-
"@coinbase/cds-common": "^8.
|
|
206
|
+
"@coinbase/cds-common": "^8.35.0",
|
|
207
207
|
"@coinbase/cds-icons": "^5.9.0",
|
|
208
208
|
"@coinbase/cds-illustrations": "^4.29.0",
|
|
209
209
|
"@coinbase/cds-lottie-files": "^3.3.4",
|