@axos-web-dev/shared-components 2.0.0-dev.14-modal-iFrame → 2.0.0-dev.14-modal-iFrame.2
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/CallToActionBar/index.js +4 -1
- package/dist/Comparison/Comparison.js +10 -1
- package/dist/ContentBanner/index.js +10 -1
- package/dist/HeroBanner/HeroBanner.js +8 -2
- package/dist/HeroBanner/LargeHeroBanner.js +4 -1
- package/dist/IconBillboard/IconBillboardSet.js +4 -1
- package/dist/ImageLink/ImageLinkSet.js +10 -1
- package/dist/StepItemSet/StepItemSet.js +10 -1
- package/package.json +1 -1
|
@@ -127,7 +127,8 @@ const CallToActionBar = ({
|
|
|
127
127
|
variant,
|
|
128
128
|
displayText,
|
|
129
129
|
targetUrl,
|
|
130
|
-
type
|
|
130
|
+
type,
|
|
131
|
+
marketingIntersitial
|
|
131
132
|
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
132
133
|
Button,
|
|
133
134
|
{
|
|
@@ -135,6 +136,7 @@ const CallToActionBar = ({
|
|
|
135
136
|
color: getVariant(variant),
|
|
136
137
|
size: "medium",
|
|
137
138
|
rounded: "medium",
|
|
139
|
+
marketingIntersitial,
|
|
138
140
|
children: displayText
|
|
139
141
|
},
|
|
140
142
|
id2
|
|
@@ -143,6 +145,7 @@ const CallToActionBar = ({
|
|
|
143
145
|
{
|
|
144
146
|
targetUrl,
|
|
145
147
|
variant: getVariant(variant),
|
|
148
|
+
marketingIntersitial,
|
|
146
149
|
children: displayText
|
|
147
150
|
},
|
|
148
151
|
id2
|
|
@@ -191,13 +191,21 @@ const Comparison = ({
|
|
|
191
191
|
table && /* @__PURE__ */ jsx(Fragment, { children: table })
|
|
192
192
|
] }) }),
|
|
193
193
|
callToActionRow && /* @__PURE__ */ jsx("div", { className: clsx(comparison_buttons, "push_up"), children: callToActionRow.map(
|
|
194
|
-
({
|
|
194
|
+
({
|
|
195
|
+
id: id2,
|
|
196
|
+
variant,
|
|
197
|
+
displayText,
|
|
198
|
+
targetUrl,
|
|
199
|
+
type,
|
|
200
|
+
marketingIntersitial
|
|
201
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
195
202
|
Button,
|
|
196
203
|
{
|
|
197
204
|
targetUrl,
|
|
198
205
|
color: getVariant(variant),
|
|
199
206
|
size: "medium",
|
|
200
207
|
rounded: "medium",
|
|
208
|
+
marketingIntersitial,
|
|
201
209
|
children: displayText
|
|
202
210
|
},
|
|
203
211
|
id2
|
|
@@ -206,6 +214,7 @@ const Comparison = ({
|
|
|
206
214
|
{
|
|
207
215
|
targetUrl,
|
|
208
216
|
variant: getVariant(variant),
|
|
217
|
+
marketingIntersitial,
|
|
209
218
|
children: displayText
|
|
210
219
|
},
|
|
211
220
|
id2
|
|
@@ -69,13 +69,21 @@ const ContentBanner = ({
|
|
|
69
69
|
bodyCopy && /* @__PURE__ */ jsx("div", { className: `${body_copy}`, children: bodyCopy })
|
|
70
70
|
] }),
|
|
71
71
|
Array.isArray(callToActionRow) && callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${call_to_action_row}`, children: callToActionRow?.map(
|
|
72
|
-
({
|
|
72
|
+
({
|
|
73
|
+
id: id2,
|
|
74
|
+
variant: variant2,
|
|
75
|
+
displayText,
|
|
76
|
+
targetUrl,
|
|
77
|
+
type,
|
|
78
|
+
marketingIntersitial
|
|
79
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
73
80
|
Button,
|
|
74
81
|
{
|
|
75
82
|
targetUrl,
|
|
76
83
|
color: getVariant(variant2),
|
|
77
84
|
size: "medium",
|
|
78
85
|
rounded: "medium",
|
|
86
|
+
marketingIntersitial,
|
|
79
87
|
children: displayText
|
|
80
88
|
},
|
|
81
89
|
id2
|
|
@@ -85,6 +93,7 @@ const ContentBanner = ({
|
|
|
85
93
|
targetUrl,
|
|
86
94
|
variant: getVariant(variant2),
|
|
87
95
|
className: `${link}`,
|
|
96
|
+
marketingIntersitial,
|
|
88
97
|
children: displayText
|
|
89
98
|
},
|
|
90
99
|
id2
|
|
@@ -118,7 +118,8 @@ const HeroBanner = ({
|
|
|
118
118
|
targetUrl,
|
|
119
119
|
type,
|
|
120
120
|
icon,
|
|
121
|
-
newTab
|
|
121
|
+
newTab,
|
|
122
|
+
marketingIntersitial
|
|
122
123
|
}) => type === "Button" ? /* @__PURE__ */ jsxs(
|
|
123
124
|
Button,
|
|
124
125
|
{
|
|
@@ -128,6 +129,7 @@ const HeroBanner = ({
|
|
|
128
129
|
rounded: "medium",
|
|
129
130
|
square: icon !== void 0,
|
|
130
131
|
newTab,
|
|
132
|
+
marketingIntersitial,
|
|
131
133
|
children: [
|
|
132
134
|
typeof icon !== "undefined" ? /* @__PURE__ */ jsx("div", { className: clsx(selection_section_icon), children: /* @__PURE__ */ jsx(
|
|
133
135
|
"span",
|
|
@@ -154,6 +156,7 @@ const HeroBanner = ({
|
|
|
154
156
|
variant: getVariant(variant2),
|
|
155
157
|
goBack: bannerType === "Logout",
|
|
156
158
|
newTab,
|
|
159
|
+
marketingIntersitial,
|
|
157
160
|
children: displayText
|
|
158
161
|
},
|
|
159
162
|
id2
|
|
@@ -201,7 +204,8 @@ const HeroBanner = ({
|
|
|
201
204
|
displayText,
|
|
202
205
|
targetUrl,
|
|
203
206
|
type,
|
|
204
|
-
newTab
|
|
207
|
+
newTab,
|
|
208
|
+
marketingIntersitial
|
|
205
209
|
}) => type === "Button" ? /* @__PURE__ */ jsxs(
|
|
206
210
|
Button,
|
|
207
211
|
{
|
|
@@ -211,6 +215,7 @@ const HeroBanner = ({
|
|
|
211
215
|
rounded: "medium",
|
|
212
216
|
square: true,
|
|
213
217
|
newTab,
|
|
218
|
+
marketingIntersitial,
|
|
214
219
|
children: [
|
|
215
220
|
typeof icon !== "undefined" ? /* @__PURE__ */ jsx("div", { className: selection_section_icon, children: /* @__PURE__ */ jsx(
|
|
216
221
|
"span",
|
|
@@ -239,6 +244,7 @@ const HeroBanner = ({
|
|
|
239
244
|
size: "large",
|
|
240
245
|
square: true,
|
|
241
246
|
newTab,
|
|
247
|
+
marketingIntersitial,
|
|
242
248
|
children: [
|
|
243
249
|
typeof icon !== "undefined" ? /* @__PURE__ */ jsx(
|
|
244
250
|
"div",
|
|
@@ -144,7 +144,8 @@ const LargeHeroBanner = ({
|
|
|
144
144
|
displayText,
|
|
145
145
|
targetUrl,
|
|
146
146
|
type,
|
|
147
|
-
newTab
|
|
147
|
+
newTab,
|
|
148
|
+
marketingIntersitial
|
|
148
149
|
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
149
150
|
Button,
|
|
150
151
|
{
|
|
@@ -153,6 +154,7 @@ const LargeHeroBanner = ({
|
|
|
153
154
|
size: "large",
|
|
154
155
|
rounded: "medium",
|
|
155
156
|
newTab,
|
|
157
|
+
marketingIntersitial,
|
|
156
158
|
children: displayText
|
|
157
159
|
},
|
|
158
160
|
id2
|
|
@@ -162,6 +164,7 @@ const LargeHeroBanner = ({
|
|
|
162
164
|
targetUrl,
|
|
163
165
|
variant: getVariant(variant2),
|
|
164
166
|
newTab,
|
|
167
|
+
marketingIntersitial,
|
|
165
168
|
children: displayText
|
|
166
169
|
},
|
|
167
170
|
id2
|
|
@@ -54,7 +54,8 @@ const IconBillboardSet = ({
|
|
|
54
54
|
displayText,
|
|
55
55
|
targetUrl,
|
|
56
56
|
type,
|
|
57
|
-
newTab
|
|
57
|
+
newTab,
|
|
58
|
+
marketingIntersitial
|
|
58
59
|
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
59
60
|
Button,
|
|
60
61
|
{
|
|
@@ -63,6 +64,7 @@ const IconBillboardSet = ({
|
|
|
63
64
|
size: "medium",
|
|
64
65
|
rounded: "medium",
|
|
65
66
|
newTab,
|
|
67
|
+
marketingIntersitial,
|
|
66
68
|
children: displayText
|
|
67
69
|
},
|
|
68
70
|
id2
|
|
@@ -72,6 +74,7 @@ const IconBillboardSet = ({
|
|
|
72
74
|
targetUrl,
|
|
73
75
|
variant: getVariant(variant2),
|
|
74
76
|
newTab,
|
|
77
|
+
marketingIntersitial,
|
|
75
78
|
children: displayText
|
|
76
79
|
},
|
|
77
80
|
id2
|
|
@@ -137,13 +137,21 @@ const ImageLinkSet = (props) => {
|
|
|
137
137
|
const additionalDetails = props?.additionalDetails || callToActionRow && callToActionRow.length > 0 ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
138
138
|
props?.additionalDetails,
|
|
139
139
|
callToActionRow && callToActionRow?.length > 0 && /* @__PURE__ */ jsx("div", { className: buttons, children: callToActionRow?.map(
|
|
140
|
-
({
|
|
140
|
+
({
|
|
141
|
+
id,
|
|
142
|
+
variant,
|
|
143
|
+
displayText,
|
|
144
|
+
targetUrl,
|
|
145
|
+
type,
|
|
146
|
+
marketingIntersitial
|
|
147
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
141
148
|
Button,
|
|
142
149
|
{
|
|
143
150
|
targetUrl,
|
|
144
151
|
color: getVariant(variant),
|
|
145
152
|
size: "medium",
|
|
146
153
|
rounded: "medium",
|
|
154
|
+
marketingIntersitial,
|
|
147
155
|
children: displayText
|
|
148
156
|
},
|
|
149
157
|
id
|
|
@@ -152,6 +160,7 @@ const ImageLinkSet = (props) => {
|
|
|
152
160
|
{
|
|
153
161
|
targetUrl,
|
|
154
162
|
variant: getVariant(variant),
|
|
163
|
+
marketingIntersitial,
|
|
155
164
|
children: displayText
|
|
156
165
|
},
|
|
157
166
|
id
|
|
@@ -98,13 +98,21 @@ const StepItemSet = ({
|
|
|
98
98
|
{
|
|
99
99
|
className: `flex middle center push_up_32 text_center ${bs_btns}`,
|
|
100
100
|
children: callToActionRow.map(
|
|
101
|
-
({
|
|
101
|
+
({
|
|
102
|
+
id: id2,
|
|
103
|
+
variant: variant2,
|
|
104
|
+
displayText,
|
|
105
|
+
targetUrl,
|
|
106
|
+
type,
|
|
107
|
+
marketingIntersitial
|
|
108
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
102
109
|
Button,
|
|
103
110
|
{
|
|
104
111
|
targetUrl,
|
|
105
112
|
color: getVariant(variant2),
|
|
106
113
|
size: "large",
|
|
107
114
|
rounded: "medium",
|
|
115
|
+
marketingIntersitial,
|
|
108
116
|
children: displayText
|
|
109
117
|
},
|
|
110
118
|
id2
|
|
@@ -113,6 +121,7 @@ const StepItemSet = ({
|
|
|
113
121
|
{
|
|
114
122
|
targetUrl,
|
|
115
123
|
variant: getVariant(variant2),
|
|
124
|
+
marketingIntersitial,
|
|
116
125
|
children: displayText
|
|
117
126
|
},
|
|
118
127
|
id2
|
package/package.json
CHANGED