@notificationapi/react 0.0.22 → 0.0.24
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/assets/Inbox.js
CHANGED
|
@@ -6182,7 +6182,7 @@ const hc = (e) => {
|
|
|
6182
6182
|
content: /* @__PURE__ */ et(
|
|
6183
6183
|
ic,
|
|
6184
6184
|
{
|
|
6185
|
-
maxHeight:
|
|
6185
|
+
maxHeight: i.popupHeight - 73,
|
|
6186
6186
|
pagination: i.pagination,
|
|
6187
6187
|
filter: i.filter,
|
|
6188
6188
|
imageShape: i.imageShape,
|
|
@@ -6198,7 +6198,7 @@ const hc = (e) => {
|
|
|
6198
6198
|
arrow: !1,
|
|
6199
6199
|
overlayStyle: {
|
|
6200
6200
|
padding: "0 16px",
|
|
6201
|
-
|
|
6201
|
+
width: i.popupWidth
|
|
6202
6202
|
},
|
|
6203
6203
|
zIndex: e.popupZIndex,
|
|
6204
6204
|
children: /* @__PURE__ */ et(
|
|
@@ -7323,7 +7323,15 @@ const Vp = ds.div`
|
|
|
7323
7323
|
flexGrow: 1
|
|
7324
7324
|
},
|
|
7325
7325
|
children: [
|
|
7326
|
-
/* @__PURE__ */ ve("div", { children: /* @__PURE__ */ ve(
|
|
7326
|
+
/* @__PURE__ */ ve("div", { children: /* @__PURE__ */ ve(
|
|
7327
|
+
cn.Text,
|
|
7328
|
+
{
|
|
7329
|
+
style: {
|
|
7330
|
+
whiteSpace: "pre-line"
|
|
7331
|
+
},
|
|
7332
|
+
children: /* @__PURE__ */ ve("span", { dangerouslySetInnerHTML: { __html: o } })
|
|
7333
|
+
}
|
|
7334
|
+
) }),
|
|
7327
7335
|
/* @__PURE__ */ ve("div", { children: /* @__PURE__ */ ve(cn.Text, { type: "secondary", style: { fontSize: 12 }, children: /* @__PURE__ */ ve(Bt, { date: new Date(y).getTime(), locale: "en-US" }) }) })
|
|
7328
7336
|
]
|
|
7329
7337
|
}
|
|
@@ -14,7 +14,7 @@ export type NotificationPopupProps = {
|
|
|
14
14
|
buttonWidth?: number;
|
|
15
15
|
buttonHeight?: number;
|
|
16
16
|
popupWidth?: number | string;
|
|
17
|
-
popupHeight?: number
|
|
17
|
+
popupHeight?: number;
|
|
18
18
|
imageShape?: keyof typeof ImageShape;
|
|
19
19
|
pagination?: keyof typeof Pagination;
|
|
20
20
|
pageSize?: number;
|