@apolitical/component-library 6.1.3 → 6.2.0
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/form/components/form/form.types.d.ts +1 -1
- package/form/types/password-form/password-form.d.ts +3 -11
- package/helpers/intl.d.ts +0 -1
- package/index.js +2 -2
- package/index.mjs +1 -7
- package/navigation/action-bar/action-bar.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/text/pill/index.d.ts +1 -0
- package/text/pill/pill.d.ts +2 -2
- package/text/status-banner/index.d.ts +1 -0
- package/text/status-banner/status-banner.d.ts +2 -2
package/index.mjs
CHANGED
|
@@ -1227,7 +1227,6 @@ Thank you for helping to protect the Apolitical community from abusive content.`
|
|
|
1227
1227
|
discussion_moreMenu_report: "Report",
|
|
1228
1228
|
discussion_comments_screenReader: "See {count, plural, =0 {0 comments} one {# comment} other {# comments}}",
|
|
1229
1229
|
discussion_comments: "{count, plural, =0 {0 comments} one {# comment} other {# comments}}",
|
|
1230
|
-
discussion_comments_loading: "... comments",
|
|
1231
1230
|
discussion_responses_answer: "Answers",
|
|
1232
1231
|
discussion_responses_comment: "Comments",
|
|
1233
1232
|
discussion_responses_title: "{action} ({count})",
|
|
@@ -7430,12 +7429,7 @@ const Gn = "discussion_", Og = ({
|
|
|
7430
7429
|
{ id: `${Gn}comments_screenReader` },
|
|
7431
7430
|
{ count: a.count }
|
|
7432
7431
|
),
|
|
7433
|
-
children: l.formatMessage(
|
|
7434
|
-
{
|
|
7435
|
-
id: `${Gn}comments${a.count === null ? "_loading" : ""}`
|
|
7436
|
-
},
|
|
7437
|
-
{ count: a.count }
|
|
7438
|
-
)
|
|
7432
|
+
children: l.formatMessage({ id: `${Gn}comments` }, { count: a.count })
|
|
7439
7433
|
}
|
|
7440
7434
|
) }) : /* @__PURE__ */ c.jsx(c.Fragment, {}),
|
|
7441
7435
|
i ? /* @__PURE__ */ c.jsx("li", { children: /* @__PURE__ */ c.jsx(
|