@useblu/ocean-react 1.31.0 → 1.32.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 +14 -0
- package/CrossSellCard/CrossSellCard.d.ts +17 -0
- package/CrossSellCard/CrossSellCard.d.ts.map +1 -0
- package/CrossSellCard/__tests__/CrossSellCard.d.ts +2 -0
- package/CrossSellCard/__tests__/CrossSellCard.d.ts.map +1 -0
- package/CrossSellCard/index.d.ts +2 -0
- package/CrossSellCard/index.d.ts.map +1 -0
- package/Steps/Steps.d.ts +2 -2
- package/Steps/Steps.d.ts.map +1 -1
- package/index.d.ts +2 -0
- package/index.d.ts.map +1 -1
- package/index.es.js +41 -72
- package/index.es.js.map +1 -1
- package/index.js +41 -71
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.32.0](https://github.com/ocean-ds/ocean-web/compare/v1.31.4...v1.32.0) (2022-06-30)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add cross sell card component ([#980](https://github.com/ocean-ds/ocean-web/issues/980)) ([6177870](https://github.com/ocean-ds/ocean-web/commit/61778709e2ac7d6f0f9daafce2f2888f09d84ccf))
|
|
11
|
+
|
|
12
|
+
## [1.31.4](https://github.com/ocean-ds/ocean-web/compare/v1.31.3...v1.31.4) (2022-06-28)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @useblu/ocean-react
|
|
15
|
+
|
|
16
|
+
## [1.31.1](https://github.com/ocean-ds/ocean-web/compare/v1.31.0...v1.31.1) (2022-05-17)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @useblu/ocean-react
|
|
19
|
+
|
|
6
20
|
# [1.31.0](https://github.com/ocean-ds/ocean-web/compare/v1.30.4...v1.31.0) (2022-04-06)
|
|
7
21
|
|
|
8
22
|
### Features
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare type CrossSellCardProps = {
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
imageSrc?: string;
|
|
6
|
+
ctaText: string;
|
|
7
|
+
ctaAction: () => void;
|
|
8
|
+
} & React.ComponentPropsWithoutRef<'div'>;
|
|
9
|
+
declare const CrossSellCard: React.ForwardRefExoticComponent<{
|
|
10
|
+
title: string;
|
|
11
|
+
description: string;
|
|
12
|
+
imageSrc?: string | undefined;
|
|
13
|
+
ctaText: string;
|
|
14
|
+
ctaAction: () => void;
|
|
15
|
+
} & Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
export default CrossSellCard;
|
|
17
|
+
//# sourceMappingURL=CrossSellCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CrossSellCard.d.ts","sourceRoot":"","sources":["../../src/CrossSellCard/CrossSellCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,oBAAY,kBAAkB,GAAG;IAI/B,KAAK,EAAE,MAAM,CAAC;IAId,WAAW,EAAE,MAAM,CAAC;IAIpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAIlB,OAAO,EAAE,MAAM,CAAC;IAIhB,SAAS,EAAE,MAAM,IAAI,CAAC;CACvB,GAAG,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,CAAC;AAE1C,QAAA,MAAM,aAAa;WAnBV,MAAM;iBAIA,MAAM;;aAQV,MAAM;eAIJ,MAAM,IAAI;kLAsCtB,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CrossSellCard.d.ts","sourceRoot":"","sources":["../../../src/CrossSellCard/__tests__/CrossSellCard.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/CrossSellCard/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
|
package/Steps/Steps.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
2
|
export interface StepsProps {
|
|
3
|
-
currentStep: 1 | 2 | 3 | 4;
|
|
4
|
-
steps: 2 | 3 | 4;
|
|
3
|
+
currentStep: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
4
|
+
steps: 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
5
5
|
}
|
|
6
6
|
declare const defaultProps: {
|
|
7
7
|
currentStep: number;
|
package/Steps/Steps.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Steps.d.ts","sourceRoot":"","sources":["../../src/Steps/Steps.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE5C,MAAM,WAAW,UAAU;IAKzB,WAAW,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"Steps.d.ts","sourceRoot":"","sources":["../../src/Steps/Steps.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE5C,MAAM,WAAW,UAAU;IAKzB,WAAW,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;IAMpD,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;CAC3C;AACD,QAAA,MAAM,YAAY;;;CAGjB,CAAC;AAEF,QAAA,MAAM,KAAK,4BAGR,UAAU,GAAG,mBAAmB,KAAG,YA2GrC,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -48,4 +48,6 @@ export { default as Steps } from './Steps';
|
|
|
48
48
|
export * from './Steps';
|
|
49
49
|
export { default as Badge } from './Badge';
|
|
50
50
|
export * from './Badge';
|
|
51
|
+
export { default as CrossSellCard } from './CrossSellCard';
|
|
52
|
+
export * from './CrossSellCard';
|
|
51
53
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,OAAO,CAAC;AACvC,cAAc,OAAO,CAAC;AAEtB,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,cAAc,aAAa,CAAC;AAE5B,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACvE,cAAc,uBAAuB,CAAC;AAEtC,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,WAAW,CAAC;AAE1B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,WAAW,CAAC;AAE1B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,OAAO,CAAC;AACvC,cAAc,OAAO,CAAC;AAEtB,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,cAAc,aAAa,CAAC;AAE5B,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACvE,cAAc,uBAAuB,CAAC;AAEtC,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,QAAQ,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,WAAW,CAAC;AAE1B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,UAAU,CAAC;AAEzB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,WAAW,CAAC;AAE1B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,iBAAiB,CAAC"}
|
package/index.es.js
CHANGED
|
@@ -4966,7 +4966,7 @@ var Checkbox = e$1.forwardRef(function Checkbox(_a, ref) {
|
|
|
4966
4966
|
return (e$1.createElement("label", { className: "ods-checkbox__root", htmlFor: id },
|
|
4967
4967
|
e$1.createElement("input", __assign({ ref: ref, id: id, className: classNames('ods-checkbox', className) }, rest, { type: "checkbox", "data-indeterminate": indeterminate })),
|
|
4968
4968
|
e$1.createElement("span", { className: classNames('ods-checkbox__checkmark', indeterminate && 'ods-checkbox__checkmark--indeterminate') }),
|
|
4969
|
-
label && (e$1.createElement("span", { className: "ods-typography ods-
|
|
4969
|
+
label && (e$1.createElement("span", { className: "ods-typography ods-typography__description ods-checkbox__label" }, label))));
|
|
4970
4970
|
});
|
|
4971
4971
|
|
|
4972
4972
|
var Radio = e$1.forwardRef(function Radio(_a, ref) {
|
|
@@ -4974,7 +4974,7 @@ var Radio = e$1.forwardRef(function Radio(_a, ref) {
|
|
|
4974
4974
|
return (e$1.createElement("label", { className: "ods-radio__root", htmlFor: id },
|
|
4975
4975
|
e$1.createElement("input", __assign({ ref: ref, id: id, className: classNames('ods-radio', className) }, rest, { type: "radio" })),
|
|
4976
4976
|
e$1.createElement("span", { className: "ods-radio__checkmark" }),
|
|
4977
|
-
label && (e$1.createElement("span", { className: "ods-typography ods-
|
|
4977
|
+
label && (e$1.createElement("span", { className: "ods-typography ods-typography__description ods-radio__label" }, label))));
|
|
4978
4978
|
});
|
|
4979
4979
|
|
|
4980
4980
|
function LinkBase(_a, ref) {
|
|
@@ -25413,77 +25413,32 @@ var Stepper = e$1.forwardRef(function Stepper(_a, ref) {
|
|
|
25413
25413
|
e$1.createElement(To, { size: 24 })))))));
|
|
25414
25414
|
});
|
|
25415
25415
|
|
|
25416
|
-
var FinalSteps = function () {
|
|
25417
|
-
return (e$1.createElement(e$1.Fragment, null,
|
|
25418
|
-
e$1.createElement("path", { d: "M52 10H64", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25419
|
-
e$1.createElement("path", { d: "M64 10L69 10", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25420
|
-
e$1.createElement("circle", { cx: "74", cy: "10", r: "5", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25421
|
-
e$1.createElement("path", { d: "M79 10H84", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25422
|
-
e$1.createElement("path", { d: "M84 10H96", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25423
|
-
e$1.createElement("circle", { r: "5", transform: "matrix(-1 0 0 1 106 10)", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25424
|
-
e$1.createElement("path", { d: "M101 10H96", stroke: "#EBECF5", strokeWidth: "2" })));
|
|
25425
|
-
};
|
|
25426
25416
|
var Steps = function (_a) {
|
|
25427
25417
|
var currentStep = _a.currentStep, steps = _a.steps;
|
|
25428
|
-
|
|
25429
|
-
|
|
25430
|
-
|
|
25431
|
-
e$1.createElement(
|
|
25432
|
-
|
|
25433
|
-
e$1.createElement(
|
|
25434
|
-
|
|
25435
|
-
|
|
25436
|
-
|
|
25437
|
-
|
|
25438
|
-
|
|
25439
|
-
e$1.createElement("circle", { cx:
|
|
25440
|
-
e$1.createElement("path", { d:
|
|
25441
|
-
|
|
25442
|
-
|
|
25443
|
-
e$1.createElement(
|
|
25444
|
-
|
|
25445
|
-
|
|
25446
|
-
|
|
25447
|
-
|
|
25448
|
-
|
|
25449
|
-
|
|
25450
|
-
}
|
|
25451
|
-
|
|
25452
|
-
return (e$1.createElement("svg", { width: "116", height: "20", viewBox: "0 0 116 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", "data-testid": "step-2" },
|
|
25453
|
-
e$1.createElement("circle", { cx: "10", cy: "10", r: "9", fill: "#13BDBD", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25454
|
-
e$1.createElement("path", { d: "M7 10L9 12L13 8", stroke: "white", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
25455
|
-
e$1.createElement("path", { d: "M20 10H32", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25456
|
-
e$1.createElement("path", { d: "M32 10L37 10", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25457
|
-
e$1.createElement("circle", { cx: "42", cy: "10", r: "5", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25458
|
-
steps > 2 && (e$1.createElement(e$1.Fragment, null,
|
|
25459
|
-
e$1.createElement("path", { d: "M47 10H52", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25460
|
-
e$1.createElement("path", { d: "M52 10H64", stroke: "#EBECF5", strokeWidth: "2" }))),
|
|
25461
|
-
steps === 3 && (e$1.createElement(e$1.Fragment, null,
|
|
25462
|
-
e$1.createElement("path", { d: "M52 10H64", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25463
|
-
e$1.createElement("path", { d: "M64 10L69 10", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25464
|
-
e$1.createElement("circle", { cx: "74", cy: "10", r: "5", stroke: "#EBECF5", strokeWidth: "2" }))),
|
|
25465
|
-
steps === 4 && e$1.createElement(FinalSteps, null)));
|
|
25466
|
-
}
|
|
25467
|
-
return (e$1.createElement("svg", { width: "116", height: "20", viewBox: "0 0 116 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", "data-testid": "step-3" },
|
|
25468
|
-
e$1.createElement("circle", { cx: "10", cy: "10", r: "9", fill: "#13BDBD", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25469
|
-
e$1.createElement("path", { d: "M7 10L9 12L13 8", stroke: "white", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
25470
|
-
e$1.createElement("path", { d: "M20 10H32", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25471
|
-
e$1.createElement("circle", { cx: "42", cy: "10", r: "9", fill: "#13BDBD", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25472
|
-
e$1.createElement("path", { d: "M39 10L41 12L45 8", stroke: "white", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
25473
|
-
e$1.createElement("path", { d: "M52 10H64", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25474
|
-
currentStep === 3 ? (e$1.createElement(e$1.Fragment, null,
|
|
25475
|
-
e$1.createElement("path", { d: "M64 10L69 10", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25476
|
-
e$1.createElement("circle", { cx: "74", cy: "10", r: "5", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25477
|
-
steps > 3 && (e$1.createElement(e$1.Fragment, null,
|
|
25478
|
-
e$1.createElement("path", { d: "M79 10H84", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25479
|
-
e$1.createElement("path", { d: "M84 10H96", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25480
|
-
e$1.createElement("path", { d: "M101 10H96", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25481
|
-
e$1.createElement("circle", { r: "5", transform: "matrix(-1 0 0 1 106 10)", stroke: "#EBECF5", strokeWidth: "2" }))))) : (e$1.createElement(e$1.Fragment, null,
|
|
25482
|
-
e$1.createElement("circle", { cx: "74", cy: "10", r: "9", fill: "#13BDBD", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25483
|
-
e$1.createElement("path", { d: "M71 10L73 12L77 8", stroke: "white", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
25484
|
-
e$1.createElement("path", { d: "M84 10H96", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25485
|
-
e$1.createElement("path", { d: "M101 10H96", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25486
|
-
e$1.createElement("circle", { r: "5", transform: "matrix(-1 0 0 1 106 10)", stroke: "#13BDBD", strokeWidth: "2" })))));
|
|
25418
|
+
var getCurrentStep = function (step) {
|
|
25419
|
+
var left = 30 * (step - 1);
|
|
25420
|
+
if (step === currentStep) {
|
|
25421
|
+
return (e$1.createElement(e$1.Fragment, null,
|
|
25422
|
+
e$1.createElement("circle", { cx: step === 1 ? 9.5 : left + 12, cy: "10", r: "5", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25423
|
+
steps > step && (e$1.createElement(e$1.Fragment, null,
|
|
25424
|
+
e$1.createElement("path", { d: step === 1 ? 'M15 10H20' : "M".concat(left + 17, " 10H").concat(left + 22), stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25425
|
+
e$1.createElement("path", { d: step === 1 ? 'M20 10H37' : "M".concat(left + 22, " 10H").concat(left + 38), stroke: "#EBECF5", strokeWidth: "2" })))));
|
|
25426
|
+
}
|
|
25427
|
+
if (currentStep > step) {
|
|
25428
|
+
return (e$1.createElement(e$1.Fragment, null,
|
|
25429
|
+
e$1.createElement("circle", { cx: step === 1 ? 10 : left + 12, cy: "10", r: "9", fill: "#13BDBD", stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25430
|
+
e$1.createElement("path", { d: step === 1
|
|
25431
|
+
? 'M7 10 L 9 12 L 13 8'
|
|
25432
|
+
: "M".concat(left + 9, " 10 L ").concat(left + 11, " 12 L ").concat(left + 16, " 8"), stroke: "white", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
25433
|
+
steps > step && (e$1.createElement(e$1.Fragment, null,
|
|
25434
|
+
e$1.createElement("path", { d: "M".concat(step === 1 ? 20 : left + 22, " 10H").concat(step * 30 + 2), stroke: "#13BDBD", strokeWidth: "2" }),
|
|
25435
|
+
e$1.createElement("path", { d: "M".concat(step * 30 + 2, " 10L").concat(step * 30 + 7, " 10"), stroke: "#13BDBD", strokeWidth: "2" })))));
|
|
25436
|
+
}
|
|
25437
|
+
return (e$1.createElement(e$1.Fragment, null,
|
|
25438
|
+
e$1.createElement("circle", { cx: step === 1 ? 9.5 : left + 12, cy: "10", r: "5", stroke: "#EBECF5", strokeWidth: "2" }),
|
|
25439
|
+
steps > step && (e$1.createElement("path", { d: step === 1 ? 'M15 10H37' : "M".concat(left + 17, " 10H").concat(left + 38), stroke: "#EBECF5", strokeWidth: "2" }))));
|
|
25440
|
+
};
|
|
25441
|
+
return (e$1.createElement("svg", { height: "20", width: 30 * (steps - 1) + 22, viewBox: "0 0 ".concat(30 * (steps - 1) + 22, " 20"), fill: "none", xmlns: "http://www.w3.org/2000/svg", "data-testid": "step-".concat(currentStep) }, Array.from(Array(steps).keys()).map(function (step) { return (e$1.createElement("g", { key: step }, getCurrentStep(step + 1))); })));
|
|
25487
25442
|
};
|
|
25488
25443
|
|
|
25489
25444
|
var Badge = e$1.forwardRef(function Badge(_a, ref) {
|
|
@@ -25497,5 +25452,19 @@ var Badge = e$1.forwardRef(function Badge(_a, ref) {
|
|
|
25497
25452
|
variation === 'tiny' && e$1.createElement("div", { className: "ods-badge__content" })));
|
|
25498
25453
|
});
|
|
25499
25454
|
|
|
25500
|
-
|
|
25455
|
+
var CrossSellCard = e$1.forwardRef(function CrossSellCard(_a, ref) {
|
|
25456
|
+
var title = _a.title, className = _a.className, description = _a.description, imageSrc = _a.imageSrc, ctaText = _a.ctaText, ctaAction = _a.ctaAction, rest = __rest(_a, ["title", "className", "description", "imageSrc", "ctaText", "ctaAction"]);
|
|
25457
|
+
return (e$1.createElement("div", __assign({ ref: ref }, rest, { className: classNames('ods-cross-sell-card', className) }),
|
|
25458
|
+
e$1.createElement("div", { className: "ods-cross-sell-card__content" },
|
|
25459
|
+
e$1.createElement("div", { className: "ods-cross-sell-card__information" },
|
|
25460
|
+
e$1.createElement("div", { className: "ods-typography--inverse ods-typography__heading3" }, title),
|
|
25461
|
+
e$1.createElement("div", { className: "ods-typography--inverse ods-typography__description ods-cross-sell-card__description " }, description)),
|
|
25462
|
+
imageSrc && (e$1.createElement("img", { className: "ods-cross-sell-card__image", src: imageSrc }))),
|
|
25463
|
+
e$1.createElement("button", { className: "ods-cross-sell-card__cta", onClick: ctaAction, "data-testid": "cta-test" },
|
|
25464
|
+
ctaText,
|
|
25465
|
+
" ",
|
|
25466
|
+
e$1.createElement(ee, { className: "ods-cross-sell-card__cta-icon" }))));
|
|
25467
|
+
});
|
|
25468
|
+
|
|
25469
|
+
export { Alert, Badge, Button, Carousel, Checkbox, Col, Container, CrossSellCard, Divider, index$1 as Grid, IconButton, Input, Link, List, Modal, Progress, Radio, Row, Search, Select, Stepper, Steps, SubHeader, Switch, Tag, TextArea, TopBar, TransactionListItem, Typography };
|
|
25501
25470
|
//# sourceMappingURL=index.es.js.map
|