@windstream/react-shared-components 0.1.62 → 0.1.63
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/contentful/index.d.ts +2 -1
- package/dist/contentful/index.esm.js +1 -1
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +1 -1
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/blogs-grid-base/index.tsx +2 -1
- package/src/contentful/blocks/blogs-grid-base/types.ts +1 -0
package/dist/core.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
|
|
|
63
63
|
size?: "slim" | "medium" | "large" | undefined;
|
|
64
64
|
label?: string | undefined;
|
|
65
65
|
errorText?: string | undefined;
|
|
66
|
-
prefixIconName?: "
|
|
66
|
+
prefixIconName?: "search" | "location_on" | undefined;
|
|
67
67
|
prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
|
|
68
68
|
prefixIconFill?: boolean | undefined;
|
|
69
69
|
suffixIconFill?: boolean | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -346,7 +346,7 @@ type ButtonAsAnchor = ButtonCustomProps & Omit<AnchorHTMLAttributes<HTMLAnchorEl
|
|
|
346
346
|
};
|
|
347
347
|
type ButtonProps = ButtonAsButton | ButtonAsAnchor;
|
|
348
348
|
|
|
349
|
-
declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<
|
|
349
|
+
declare const BrandButton: React__default.ForwardRefExoticComponent<ButtonProps$2 & React__default.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
350
350
|
|
|
351
351
|
declare const Checklist: React__default.FC<ChecklistProps>;
|
|
352
352
|
|
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@ import { Text } from "@shared/components/text";
|
|
|
6
6
|
import { BlogCard } from "@shared/contentful/blocks/cards/blog-card";
|
|
7
7
|
|
|
8
8
|
export function BlogGridBase({
|
|
9
|
+
title = "recent articles",
|
|
9
10
|
paginatedArticles,
|
|
10
11
|
totalArticles,
|
|
11
12
|
currentPage,
|
|
@@ -35,7 +36,7 @@ export function BlogGridBase({
|
|
|
35
36
|
{/* Controls bar */}
|
|
36
37
|
<div className="mx-auto flex max-w-[1200px] flex-wrap items-center justify-between gap-3 px-6 pb-6">
|
|
37
38
|
<Text className="w-full text-center text-heading5 font-black lowercase text-text-secondary md:w-auto md:text-left">
|
|
38
|
-
|
|
39
|
+
{title}
|
|
39
40
|
</Text>
|
|
40
41
|
|
|
41
42
|
{categoryOptions.length > 0 && (
|