@axos-web-dev/shared-components 1.0.100-dev.70 → 1.0.100-dev.70-calcDisclosure
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.
|
@@ -228,7 +228,7 @@ const AxosOneCalculator = ({
|
|
|
228
228
|
id
|
|
229
229
|
)
|
|
230
230
|
) }),
|
|
231
|
-
|
|
231
|
+
disclosure && /* @__PURE__ */ jsx("div", { className: ax1_calc_disclosure({ variant: calc_variant }), children: disclosure })
|
|
232
232
|
] }) });
|
|
233
233
|
};
|
|
234
234
|
export {
|
|
@@ -99,7 +99,7 @@ const ImageBillboard = ({
|
|
|
99
99
|
image?.imageType === "Image" ? image_based : ""
|
|
100
100
|
),
|
|
101
101
|
children: [
|
|
102
|
-
/* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: image && image.src ? /* @__PURE__ */ jsx(Fragment, { children: image?.imageType === "Image" ? /* @__PURE__ */ jsx(
|
|
102
|
+
(image || video || textImageLineOneSmall || textImageLineTwoBig || textImageLineThreeSmall) && /* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: image && image.src ? /* @__PURE__ */ jsx(Fragment, { children: image?.imageType === "Image" ? /* @__PURE__ */ jsx(
|
|
103
103
|
"div",
|
|
104
104
|
{
|
|
105
105
|
role: "presentation",
|
|
@@ -148,11 +148,17 @@ const ImageBillboard = ({
|
|
|
148
148
|
"flex_row middle center"
|
|
149
149
|
),
|
|
150
150
|
role: "presentation",
|
|
151
|
-
children: /* @__PURE__ */ jsxs(
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
151
|
+
children: /* @__PURE__ */ jsxs(
|
|
152
|
+
"div",
|
|
153
|
+
{
|
|
154
|
+
className: clsx(rate_pad, "text_center", "flex", "flex_col"),
|
|
155
|
+
children: [
|
|
156
|
+
/* @__PURE__ */ jsx("span", { className: up_to, children: textImageLineOneSmall }),
|
|
157
|
+
/* @__PURE__ */ jsx("span", { className: rate_billboard, children: textImageLineTwoBig }),
|
|
158
|
+
/* @__PURE__ */ jsx("span", { className: clsx(apy_billboard, "push_up"), children: textImageLineThreeSmall })
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
)
|
|
156
162
|
}
|
|
157
163
|
) }),
|
|
158
164
|
/* @__PURE__ */ jsxs("div", { className: body, children: [
|
package/package.json
CHANGED