@elliemae/ds-card-navigation 3.12.0-rc.2 → 3.12.0-rc.3

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.
@@ -39,55 +39,16 @@ var import_ds_icons = require("@elliemae/ds-icons");
39
39
  var import_ds_button = __toESM(require("@elliemae/ds-button"));
40
40
  var import_style = require("./style");
41
41
  var import_types = require("./components/types");
42
- const DSCardNavigation = ({ containerProps = {}, title = "", description = "", type, Icon, actions = [], ...rest }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_truncated_tooltip_text.TooltipTextProvider, {
43
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_style.StyledCardNavigationBoxWrapper, {
44
- role: "button",
45
- tabIndex: 0,
46
- ...rest,
47
- ...containerProps,
48
- children: [
49
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationIcon, {
50
- type,
51
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Icon, {
52
- size: "l"
53
- })
54
- }),
55
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_style.StyledCardNavigationCentralContent, {
56
- children: [
57
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationContent, {
58
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_style.StyledCardNavigationContentTitleWrapper, {
59
- children: [
60
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationContentTitle, {
61
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_truncated_tooltip_text.DSTruncatedTooltipText, {
62
- value: title
63
- })
64
- }),
65
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationContentDescription, {
66
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_truncated_tooltip_text.DSTruncatedTooltipText, {
67
- value: description,
68
- "data-testid": "ds-card-navigation--description"
69
- })
70
- })
71
- ]
72
- })
73
- }),
74
- actions.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationActions, {
75
- children: actions.map(({ icon = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_icons.MoreOptionsVert, {
76
- "aria-label": "More options"
77
- }), ...otherProps }, key) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationAction, {
78
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_button.default, {
79
- icon,
80
- ...otherProps,
81
- buttonType: import_ds_button.BUTTON_TYPE.TEXT,
82
- size: import_ds_button.BUTTON_SIZE.L
83
- })
84
- }, key))
85
- })
86
- ]
87
- })
88
- ]
89
- })
90
- });
42
+ const DSCardNavigation = ({ containerProps = {}, title = "", description = "", type, Icon, actions = [], ...rest }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_truncated_tooltip_text.TooltipTextProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_style.StyledCardNavigationBoxWrapper, { role: "button", tabIndex: 0, ...rest, ...containerProps, children: [
43
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationIcon, { type, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Icon, { size: "l" }) }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_style.StyledCardNavigationCentralContent, { children: [
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationContent, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_style.StyledCardNavigationContentTitleWrapper, { children: [
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationContentTitle, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_truncated_tooltip_text.DSTruncatedTooltipText, { value: title }) }),
47
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationContentDescription, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_truncated_tooltip_text.DSTruncatedTooltipText, { value: description, "data-testid": "ds-card-navigation--description" }) })
48
+ ] }) }),
49
+ actions.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationActions, { children: actions.map(({ icon = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_icons.MoreOptionsVert, { "aria-label": "More options" }), ...otherProps }, key) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_style.StyledCardNavigationAction, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ds_button.default, { icon, ...otherProps, buttonType: import_ds_button.BUTTON_TYPE.TEXT, size: import_ds_button.BUTTON_SIZE.L }) }, key)) })
50
+ ] })
51
+ ] }) });
91
52
  DSCardNavigation.defaultProps = {
92
53
  type: import_types.CardNavigationTypes.BORROWER,
93
54
  Icon: import_ds_icons.LoanProducts
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/DSCardNavigation.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
4
  "sourcesContent": ["import React from 'react';\nimport { PropTypes, describe } from '@elliemae/ds-utilities';\nimport { DSTruncatedTooltipText, TooltipTextProvider } from '@elliemae/ds-truncated-tooltip-text';\nimport { MoreOptionsVert, LoanProducts } from '@elliemae/ds-icons';\nimport DSButton, { BUTTON_SIZE, BUTTON_TYPE } from '@elliemae/ds-button';\nimport {\n StyledCardNavigationContentTitle,\n StyledCardNavigationContentDescription,\n StyledCardNavigationContentTitleWrapper,\n StyledCardNavigationContent,\n StyledCardNavigationCentralContent,\n StyledCardNavigationBoxWrapper,\n StyledCardNavigationIcon,\n StyledCardNavigationAction,\n StyledCardNavigationActions,\n} from './style';\nimport { CardNavigationTypes, CardNavigationTypesValues } from './components/types';\n\nconst DSCardNavigation = ({ containerProps = {}, title = '', description = '', type, Icon, actions = [], ...rest }) => (\n <TooltipTextProvider>\n <StyledCardNavigationBoxWrapper role=\"button\" tabIndex={0} {...rest} {...containerProps}>\n <StyledCardNavigationIcon type={type}>\n <Icon size=\"l\" />\n </StyledCardNavigationIcon>\n <StyledCardNavigationCentralContent>\n <StyledCardNavigationContent>\n <StyledCardNavigationContentTitleWrapper>\n <StyledCardNavigationContentTitle>\n <DSTruncatedTooltipText value={title} />\n </StyledCardNavigationContentTitle>\n <StyledCardNavigationContentDescription>\n <DSTruncatedTooltipText value={description} data-testid=\"ds-card-navigation--description\" />\n </StyledCardNavigationContentDescription>\n </StyledCardNavigationContentTitleWrapper>\n </StyledCardNavigationContent>\n {actions.length > 0 && (\n <StyledCardNavigationActions>\n {actions.map(({ icon = <MoreOptionsVert aria-label=\"More options\" />, ...otherProps }, key) => (\n <StyledCardNavigationAction key={key}>\n <DSButton icon={icon} {...otherProps} buttonType={BUTTON_TYPE.TEXT} size={BUTTON_SIZE.L} />\n </StyledCardNavigationAction>\n ))}\n </StyledCardNavigationActions>\n )}\n </StyledCardNavigationCentralContent>\n </StyledCardNavigationBoxWrapper>\n </TooltipTextProvider>\n);\n\nDSCardNavigation.defaultProps = {\n type: CardNavigationTypes.BORROWER,\n Icon: LoanProducts,\n};\n\nconst props = {\n /** props to inject to card navigation wrapper */\n containerProps: PropTypes.object.description('props to inject to card navigation wrapper'),\n /** card navigation title */\n title: PropTypes.string.description('card navigation title'),\n /** card navigation main icon */\n Icon: PropTypes.func.description('card navigation main icon'),\n /** card navigation description */\n description: PropTypes.string.description('card navigation description'),\n /** card navigation type */\n type: PropTypes.oneOf(CardNavigationTypesValues).description('card navigation type'),\n /** card navigation actions array */\n actions: PropTypes.arrayOf(\n PropTypes.shape({\n icon: PropTypes.element,\n onClick: PropTypes.func,\n }),\n ).description('card navigation actions array'),\n};\n\nDSCardNavigation.propTypes = props;\nDSCardNavigation.displayName = 'DSCardNavigation';\nconst DSCardNavigationWithSchema = describe(DSCardNavigation);\nDSCardNavigationWithSchema.propTypes = props;\n\nexport { CardNavigationTypes, CardNavigationTypesValues, DSCardNavigationWithSchema, DSCardNavigation };\n\nexport default DSCardNavigation;\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADsBf;AArBR,0BAAoC;AACpC,uCAA4D;AAC5D,sBAA8C;AAC9C,uBAAmD;AACnD,mBAUO;AACP,mBAA+D;AAE/D,MAAM,mBAAmB,CAAC,EAAE,iBAAiB,CAAC,GAAG,QAAQ,IAAI,cAAc,IAAI,MAAM,MAAM,UAAU,CAAC,MAAM,KAAK,MAC/G,4CAAC;AAAA,EACC,uDAAC;AAAA,IAA+B,MAAK;AAAA,IAAS,UAAU;AAAA,IAAI,GAAG;AAAA,IAAO,GAAG;AAAA,IACvE;AAAA,kDAAC;AAAA,QAAyB;AAAA,QACxB,sDAAC;AAAA,UAAK,MAAK;AAAA,SAAI;AAAA,OACjB;AAAA,MACA,6CAAC;AAAA,QACC;AAAA,sDAAC;AAAA,YACC,uDAAC;AAAA,cACC;AAAA,4DAAC;AAAA,kBACC,sDAAC;AAAA,oBAAuB,OAAO;AAAA,mBAAO;AAAA,iBACxC;AAAA,gBACA,4CAAC;AAAA,kBACC,sDAAC;AAAA,oBAAuB,OAAO;AAAA,oBAAa,eAAY;AAAA,mBAAkC;AAAA,iBAC5F;AAAA;AAAA,aACF;AAAA,WACF;AAAA,UACC,QAAQ,SAAS,KAChB,4CAAC;AAAA,YACE,kBAAQ,IAAI,CAAC,EAAE,OAAO,4CAAC;AAAA,cAAgB,cAAW;AAAA,aAAe,MAAO,WAAW,GAAG,QACrF,4CAAC;AAAA,cACC,sDAAC,iBAAAA,SAAA;AAAA,gBAAS;AAAA,gBAAa,GAAG;AAAA,gBAAY,YAAY,6BAAY;AAAA,gBAAM,MAAM,6BAAY;AAAA,eAAG;AAAA,eAD1D,GAEjC,CACD;AAAA,WACH;AAAA;AAAA,OAEJ;AAAA;AAAA,GACF;AAAA,CACF;AAGF,iBAAiB,eAAe;AAAA,EAC9B,MAAM,iCAAoB;AAAA,EAC1B,MAAM;AACR;AAEA,MAAM,QAAQ;AAAA,EAEZ,gBAAgB,8BAAU,OAAO,YAAY,4CAA4C;AAAA,EAEzF,OAAO,8BAAU,OAAO,YAAY,uBAAuB;AAAA,EAE3D,MAAM,8BAAU,KAAK,YAAY,2BAA2B;AAAA,EAE5D,aAAa,8BAAU,OAAO,YAAY,6BAA6B;AAAA,EAEvE,MAAM,8BAAU,MAAM,sCAAyB,EAAE,YAAY,sBAAsB;AAAA,EAEnF,SAAS,8BAAU;AAAA,IACjB,8BAAU,MAAM;AAAA,MACd,MAAM,8BAAU;AAAA,MAChB,SAAS,8BAAU;AAAA,IACrB,CAAC;AAAA,EACH,EAAE,YAAY,+BAA+B;AAC/C;AAEA,iBAAiB,YAAY;AAC7B,iBAAiB,cAAc;AAC/B,MAAM,iCAA6B,8BAAS,gBAAgB;AAC5D,2BAA2B,YAAY;AAIvC,IAAO,2BAAQ;",
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADsBf;AArBR,0BAAoC;AACpC,uCAA4D;AAC5D,sBAA8C;AAC9C,uBAAmD;AACnD,mBAUO;AACP,mBAA+D;AAE/D,MAAM,mBAAmB,CAAC,EAAE,iBAAiB,CAAC,GAAG,QAAQ,IAAI,cAAc,IAAI,MAAM,MAAM,UAAU,CAAC,MAAM,KAAK,MAC/G,4CAAC,wDACC,uDAAC,+CAA+B,MAAK,UAAS,UAAU,GAAI,GAAG,MAAO,GAAG,gBACvE;AAAA,8CAAC,yCAAyB,MACxB,sDAAC,QAAK,MAAK,KAAI,GACjB;AAAA,EACA,6CAAC,mDACC;AAAA,gDAAC,4CACC,uDAAC,wDACC;AAAA,kDAAC,iDACC,sDAAC,2DAAuB,OAAO,OAAO,GACxC;AAAA,MACA,4CAAC,uDACC,sDAAC,2DAAuB,OAAO,aAAa,eAAY,mCAAkC,GAC5F;AAAA,OACF,GACF;AAAA,IACC,QAAQ,SAAS,KAChB,4CAAC,4CACE,kBAAQ,IAAI,CAAC,EAAE,OAAO,4CAAC,mCAAgB,cAAW,gBAAe,MAAO,WAAW,GAAG,QACrF,4CAAC,2CACC,sDAAC,iBAAAA,SAAA,EAAS,MAAa,GAAG,YAAY,YAAY,6BAAY,MAAM,MAAM,6BAAY,GAAG,KAD1D,GAEjC,CACD,GACH;AAAA,KAEJ;AAAA,GACF,GACF;AAGF,iBAAiB,eAAe;AAAA,EAC9B,MAAM,iCAAoB;AAAA,EAC1B,MAAM;AACR;AAEA,MAAM,QAAQ;AAAA,EAEZ,gBAAgB,8BAAU,OAAO,YAAY,4CAA4C;AAAA,EAEzF,OAAO,8BAAU,OAAO,YAAY,uBAAuB;AAAA,EAE3D,MAAM,8BAAU,KAAK,YAAY,2BAA2B;AAAA,EAE5D,aAAa,8BAAU,OAAO,YAAY,6BAA6B;AAAA,EAEvE,MAAM,8BAAU,MAAM,sCAAyB,EAAE,YAAY,sBAAsB;AAAA,EAEnF,SAAS,8BAAU;AAAA,IACjB,8BAAU,MAAM;AAAA,MACd,MAAM,8BAAU;AAAA,MAChB,SAAS,8BAAU;AAAA,IACrB,CAAC;AAAA,EACH,EAAE,YAAY,+BAA+B;AAC/C;AAEA,iBAAiB,YAAY;AAC7B,iBAAiB,cAAc;AAC/B,MAAM,iCAA6B,8BAAS,gBAAgB;AAC5D,2BAA2B,YAAY;AAIvC,IAAO,2BAAQ;",
6
6
  "names": ["DSButton"]
7
7
  }
@@ -16,55 +16,16 @@ import {
16
16
  StyledCardNavigationActions
17
17
  } from "./style";
18
18
  import { CardNavigationTypes, CardNavigationTypesValues } from "./components/types";
19
- const DSCardNavigation = ({ containerProps = {}, title = "", description = "", type, Icon, actions = [], ...rest }) => /* @__PURE__ */ jsx(TooltipTextProvider, {
20
- children: /* @__PURE__ */ jsxs(StyledCardNavigationBoxWrapper, {
21
- role: "button",
22
- tabIndex: 0,
23
- ...rest,
24
- ...containerProps,
25
- children: [
26
- /* @__PURE__ */ jsx(StyledCardNavigationIcon, {
27
- type,
28
- children: /* @__PURE__ */ jsx(Icon, {
29
- size: "l"
30
- })
31
- }),
32
- /* @__PURE__ */ jsxs(StyledCardNavigationCentralContent, {
33
- children: [
34
- /* @__PURE__ */ jsx(StyledCardNavigationContent, {
35
- children: /* @__PURE__ */ jsxs(StyledCardNavigationContentTitleWrapper, {
36
- children: [
37
- /* @__PURE__ */ jsx(StyledCardNavigationContentTitle, {
38
- children: /* @__PURE__ */ jsx(DSTruncatedTooltipText, {
39
- value: title
40
- })
41
- }),
42
- /* @__PURE__ */ jsx(StyledCardNavigationContentDescription, {
43
- children: /* @__PURE__ */ jsx(DSTruncatedTooltipText, {
44
- value: description,
45
- "data-testid": "ds-card-navigation--description"
46
- })
47
- })
48
- ]
49
- })
50
- }),
51
- actions.length > 0 && /* @__PURE__ */ jsx(StyledCardNavigationActions, {
52
- children: actions.map(({ icon = /* @__PURE__ */ jsx(MoreOptionsVert, {
53
- "aria-label": "More options"
54
- }), ...otherProps }, key) => /* @__PURE__ */ jsx(StyledCardNavigationAction, {
55
- children: /* @__PURE__ */ jsx(DSButton, {
56
- icon,
57
- ...otherProps,
58
- buttonType: BUTTON_TYPE.TEXT,
59
- size: BUTTON_SIZE.L
60
- })
61
- }, key))
62
- })
63
- ]
64
- })
65
- ]
66
- })
67
- });
19
+ const DSCardNavigation = ({ containerProps = {}, title = "", description = "", type, Icon, actions = [], ...rest }) => /* @__PURE__ */ jsx(TooltipTextProvider, { children: /* @__PURE__ */ jsxs(StyledCardNavigationBoxWrapper, { role: "button", tabIndex: 0, ...rest, ...containerProps, children: [
20
+ /* @__PURE__ */ jsx(StyledCardNavigationIcon, { type, children: /* @__PURE__ */ jsx(Icon, { size: "l" }) }),
21
+ /* @__PURE__ */ jsxs(StyledCardNavigationCentralContent, { children: [
22
+ /* @__PURE__ */ jsx(StyledCardNavigationContent, { children: /* @__PURE__ */ jsxs(StyledCardNavigationContentTitleWrapper, { children: [
23
+ /* @__PURE__ */ jsx(StyledCardNavigationContentTitle, { children: /* @__PURE__ */ jsx(DSTruncatedTooltipText, { value: title }) }),
24
+ /* @__PURE__ */ jsx(StyledCardNavigationContentDescription, { children: /* @__PURE__ */ jsx(DSTruncatedTooltipText, { value: description, "data-testid": "ds-card-navigation--description" }) })
25
+ ] }) }),
26
+ actions.length > 0 && /* @__PURE__ */ jsx(StyledCardNavigationActions, { children: actions.map(({ icon = /* @__PURE__ */ jsx(MoreOptionsVert, { "aria-label": "More options" }), ...otherProps }, key) => /* @__PURE__ */ jsx(StyledCardNavigationAction, { children: /* @__PURE__ */ jsx(DSButton, { icon, ...otherProps, buttonType: BUTTON_TYPE.TEXT, size: BUTTON_SIZE.L }) }, key)) })
27
+ ] })
28
+ ] }) });
68
29
  DSCardNavigation.defaultProps = {
69
30
  type: CardNavigationTypes.BORROWER,
70
31
  Icon: LoanProducts
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/DSCardNavigation.tsx"],
4
4
  "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { PropTypes, describe } from '@elliemae/ds-utilities';\nimport { DSTruncatedTooltipText, TooltipTextProvider } from '@elliemae/ds-truncated-tooltip-text';\nimport { MoreOptionsVert, LoanProducts } from '@elliemae/ds-icons';\nimport DSButton, { BUTTON_SIZE, BUTTON_TYPE } from '@elliemae/ds-button';\nimport {\n StyledCardNavigationContentTitle,\n StyledCardNavigationContentDescription,\n StyledCardNavigationContentTitleWrapper,\n StyledCardNavigationContent,\n StyledCardNavigationCentralContent,\n StyledCardNavigationBoxWrapper,\n StyledCardNavigationIcon,\n StyledCardNavigationAction,\n StyledCardNavigationActions,\n} from './style';\nimport { CardNavigationTypes, CardNavigationTypesValues } from './components/types';\n\nconst DSCardNavigation = ({ containerProps = {}, title = '', description = '', type, Icon, actions = [], ...rest }) => (\n <TooltipTextProvider>\n <StyledCardNavigationBoxWrapper role=\"button\" tabIndex={0} {...rest} {...containerProps}>\n <StyledCardNavigationIcon type={type}>\n <Icon size=\"l\" />\n </StyledCardNavigationIcon>\n <StyledCardNavigationCentralContent>\n <StyledCardNavigationContent>\n <StyledCardNavigationContentTitleWrapper>\n <StyledCardNavigationContentTitle>\n <DSTruncatedTooltipText value={title} />\n </StyledCardNavigationContentTitle>\n <StyledCardNavigationContentDescription>\n <DSTruncatedTooltipText value={description} data-testid=\"ds-card-navigation--description\" />\n </StyledCardNavigationContentDescription>\n </StyledCardNavigationContentTitleWrapper>\n </StyledCardNavigationContent>\n {actions.length > 0 && (\n <StyledCardNavigationActions>\n {actions.map(({ icon = <MoreOptionsVert aria-label=\"More options\" />, ...otherProps }, key) => (\n <StyledCardNavigationAction key={key}>\n <DSButton icon={icon} {...otherProps} buttonType={BUTTON_TYPE.TEXT} size={BUTTON_SIZE.L} />\n </StyledCardNavigationAction>\n ))}\n </StyledCardNavigationActions>\n )}\n </StyledCardNavigationCentralContent>\n </StyledCardNavigationBoxWrapper>\n </TooltipTextProvider>\n);\n\nDSCardNavigation.defaultProps = {\n type: CardNavigationTypes.BORROWER,\n Icon: LoanProducts,\n};\n\nconst props = {\n /** props to inject to card navigation wrapper */\n containerProps: PropTypes.object.description('props to inject to card navigation wrapper'),\n /** card navigation title */\n title: PropTypes.string.description('card navigation title'),\n /** card navigation main icon */\n Icon: PropTypes.func.description('card navigation main icon'),\n /** card navigation description */\n description: PropTypes.string.description('card navigation description'),\n /** card navigation type */\n type: PropTypes.oneOf(CardNavigationTypesValues).description('card navigation type'),\n /** card navigation actions array */\n actions: PropTypes.arrayOf(\n PropTypes.shape({\n icon: PropTypes.element,\n onClick: PropTypes.func,\n }),\n ).description('card navigation actions array'),\n};\n\nDSCardNavigation.propTypes = props;\nDSCardNavigation.displayName = 'DSCardNavigation';\nconst DSCardNavigationWithSchema = describe(DSCardNavigation);\nDSCardNavigationWithSchema.propTypes = props;\n\nexport { CardNavigationTypes, CardNavigationTypesValues, DSCardNavigationWithSchema, DSCardNavigation };\n\nexport default DSCardNavigation;\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACsBf,cAIE,YAJF;AArBR,SAAS,WAAW,gBAAgB;AACpC,SAAS,wBAAwB,2BAA2B;AAC5D,SAAS,iBAAiB,oBAAoB;AAC9C,OAAO,YAAY,aAAa,mBAAmB;AACnD;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,qBAAqB,iCAAiC;AAE/D,MAAM,mBAAmB,CAAC,EAAE,iBAAiB,CAAC,GAAG,QAAQ,IAAI,cAAc,IAAI,MAAM,MAAM,UAAU,CAAC,MAAM,KAAK,MAC/G,oBAAC;AAAA,EACC,+BAAC;AAAA,IAA+B,MAAK;AAAA,IAAS,UAAU;AAAA,IAAI,GAAG;AAAA,IAAO,GAAG;AAAA,IACvE;AAAA,0BAAC;AAAA,QAAyB;AAAA,QACxB,8BAAC;AAAA,UAAK,MAAK;AAAA,SAAI;AAAA,OACjB;AAAA,MACA,qBAAC;AAAA,QACC;AAAA,8BAAC;AAAA,YACC,+BAAC;AAAA,cACC;AAAA,oCAAC;AAAA,kBACC,8BAAC;AAAA,oBAAuB,OAAO;AAAA,mBAAO;AAAA,iBACxC;AAAA,gBACA,oBAAC;AAAA,kBACC,8BAAC;AAAA,oBAAuB,OAAO;AAAA,oBAAa,eAAY;AAAA,mBAAkC;AAAA,iBAC5F;AAAA;AAAA,aACF;AAAA,WACF;AAAA,UACC,QAAQ,SAAS,KAChB,oBAAC;AAAA,YACE,kBAAQ,IAAI,CAAC,EAAE,OAAO,oBAAC;AAAA,cAAgB,cAAW;AAAA,aAAe,MAAO,WAAW,GAAG,QACrF,oBAAC;AAAA,cACC,8BAAC;AAAA,gBAAS;AAAA,gBAAa,GAAG;AAAA,gBAAY,YAAY,YAAY;AAAA,gBAAM,MAAM,YAAY;AAAA,eAAG;AAAA,eAD1D,GAEjC,CACD;AAAA,WACH;AAAA;AAAA,OAEJ;AAAA;AAAA,GACF;AAAA,CACF;AAGF,iBAAiB,eAAe;AAAA,EAC9B,MAAM,oBAAoB;AAAA,EAC1B,MAAM;AACR;AAEA,MAAM,QAAQ;AAAA,EAEZ,gBAAgB,UAAU,OAAO,YAAY,4CAA4C;AAAA,EAEzF,OAAO,UAAU,OAAO,YAAY,uBAAuB;AAAA,EAE3D,MAAM,UAAU,KAAK,YAAY,2BAA2B;AAAA,EAE5D,aAAa,UAAU,OAAO,YAAY,6BAA6B;AAAA,EAEvE,MAAM,UAAU,MAAM,yBAAyB,EAAE,YAAY,sBAAsB;AAAA,EAEnF,SAAS,UAAU;AAAA,IACjB,UAAU,MAAM;AAAA,MACd,MAAM,UAAU;AAAA,MAChB,SAAS,UAAU;AAAA,IACrB,CAAC;AAAA,EACH,EAAE,YAAY,+BAA+B;AAC/C;AAEA,iBAAiB,YAAY;AAC7B,iBAAiB,cAAc;AAC/B,MAAM,6BAA6B,SAAS,gBAAgB;AAC5D,2BAA2B,YAAY;AAIvC,IAAO,2BAAQ;",
5
+ "mappings": "AAAA,YAAY,WAAW;ACsBf,cAIE,YAJF;AArBR,SAAS,WAAW,gBAAgB;AACpC,SAAS,wBAAwB,2BAA2B;AAC5D,SAAS,iBAAiB,oBAAoB;AAC9C,OAAO,YAAY,aAAa,mBAAmB;AACnD;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,qBAAqB,iCAAiC;AAE/D,MAAM,mBAAmB,CAAC,EAAE,iBAAiB,CAAC,GAAG,QAAQ,IAAI,cAAc,IAAI,MAAM,MAAM,UAAU,CAAC,MAAM,KAAK,MAC/G,oBAAC,uBACC,+BAAC,kCAA+B,MAAK,UAAS,UAAU,GAAI,GAAG,MAAO,GAAG,gBACvE;AAAA,sBAAC,4BAAyB,MACxB,8BAAC,QAAK,MAAK,KAAI,GACjB;AAAA,EACA,qBAAC,sCACC;AAAA,wBAAC,+BACC,+BAAC,2CACC;AAAA,0BAAC,oCACC,8BAAC,0BAAuB,OAAO,OAAO,GACxC;AAAA,MACA,oBAAC,0CACC,8BAAC,0BAAuB,OAAO,aAAa,eAAY,mCAAkC,GAC5F;AAAA,OACF,GACF;AAAA,IACC,QAAQ,SAAS,KAChB,oBAAC,+BACE,kBAAQ,IAAI,CAAC,EAAE,OAAO,oBAAC,mBAAgB,cAAW,gBAAe,MAAO,WAAW,GAAG,QACrF,oBAAC,8BACC,8BAAC,YAAS,MAAa,GAAG,YAAY,YAAY,YAAY,MAAM,MAAM,YAAY,GAAG,KAD1D,GAEjC,CACD,GACH;AAAA,KAEJ;AAAA,GACF,GACF;AAGF,iBAAiB,eAAe;AAAA,EAC9B,MAAM,oBAAoB;AAAA,EAC1B,MAAM;AACR;AAEA,MAAM,QAAQ;AAAA,EAEZ,gBAAgB,UAAU,OAAO,YAAY,4CAA4C;AAAA,EAEzF,OAAO,UAAU,OAAO,YAAY,uBAAuB;AAAA,EAE3D,MAAM,UAAU,KAAK,YAAY,2BAA2B;AAAA,EAE5D,aAAa,UAAU,OAAO,YAAY,6BAA6B;AAAA,EAEvE,MAAM,UAAU,MAAM,yBAAyB,EAAE,YAAY,sBAAsB;AAAA,EAEnF,SAAS,UAAU;AAAA,IACjB,UAAU,MAAM;AAAA,MACd,MAAM,UAAU;AAAA,MAChB,SAAS,UAAU;AAAA,IACrB,CAAC;AAAA,EACH,EAAE,YAAY,+BAA+B;AAC/C;AAEA,iBAAiB,YAAY;AAC7B,iBAAiB,cAAc;AAC/B,MAAM,6BAA6B,SAAS,gBAAgB;AAC5D,2BAA2B,YAAY;AAIvC,IAAO,2BAAQ;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-card-navigation",
3
- "version": "3.12.0-rc.2",
3
+ "version": "3.12.0-rc.3",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Card Navigation",
6
6
  "files": [
@@ -47,11 +47,11 @@
47
47
  "indent": 4
48
48
  },
49
49
  "dependencies": {
50
- "@elliemae/ds-button": "3.12.0-rc.2",
51
- "@elliemae/ds-icons": "3.12.0-rc.2",
52
- "@elliemae/ds-system": "3.12.0-rc.2",
53
- "@elliemae/ds-truncated-tooltip-text": "3.12.0-rc.2",
54
- "@elliemae/ds-utilities": "3.12.0-rc.2"
50
+ "@elliemae/ds-button": "3.12.0-rc.3",
51
+ "@elliemae/ds-icons": "3.12.0-rc.3",
52
+ "@elliemae/ds-system": "3.12.0-rc.3",
53
+ "@elliemae/ds-truncated-tooltip-text": "3.12.0-rc.3",
54
+ "@elliemae/ds-utilities": "3.12.0-rc.3"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@elliemae/pui-theme": "~2.6.0",