dhre-ui-kit 0.0.302 → 0.0.303
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/lib/index.js +4 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -3
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -2164,7 +2164,7 @@ const Toast = React.forwardRef(
|
|
|
2164
2164
|
],
|
|
2165
2165
|
testID: "TOAST"
|
|
2166
2166
|
},
|
|
2167
|
-
/* @__PURE__ */ React.createElement(View,
|
|
2167
|
+
/* @__PURE__ */ React.createElement(View, { style: styles$l.toastContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$l.innerContainer }, /* @__PURE__ */ React.createElement(Pressable, { onPress: hideToast }, isSuccess ? sucessIcon : errorIcon ? errorIcon : warningIcon), /* @__PURE__ */ React.createElement(
|
|
2168
2168
|
CustomTypography,
|
|
2169
2169
|
{
|
|
2170
2170
|
variant: "L2_REGULAR",
|
|
@@ -2186,7 +2186,8 @@ const Toast = React.forwardRef(
|
|
|
2186
2186
|
style: styles$l.buttonText
|
|
2187
2187
|
}
|
|
2188
2188
|
)
|
|
2189
|
-
))),
|
|
2189
|
+
))),
|
|
2190
|
+
subjectText && /* @__PURE__ */ React.createElement(View, { style: styles$l.subContainer }, /* @__PURE__ */ React.createElement(
|
|
2190
2191
|
Pressable,
|
|
2191
2192
|
{
|
|
2192
2193
|
style: styles$l.button,
|
|
@@ -2201,7 +2202,7 @@ const Toast = React.forwardRef(
|
|
|
2201
2202
|
style: styles$l.subButtonText
|
|
2202
2203
|
}
|
|
2203
2204
|
)
|
|
2204
|
-
))
|
|
2205
|
+
)),
|
|
2205
2206
|
/* @__PURE__ */ React.createElement(
|
|
2206
2207
|
Progress.Bar,
|
|
2207
2208
|
{
|