@windstream/react-shared-components 0.1.78 → 0.1.80
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 +3 -1
- package/dist/contentful/index.esm.js +3 -3
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +3 -3
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/index.esm.js +13 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +13 -5
- package/dist/index.js.map +1 -1
- package/dist/next/index.esm.js +2 -2
- package/dist/next/index.esm.js.map +1 -1
- package/dist/next/index.js +2 -2
- package/dist/next/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.esm.js.map +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/blogs-grid/BlogGrid.stories.mocks.tsx +144 -0
- package/src/contentful/blocks/blogs-grid/BlogGrid.stories.tsx +156 -0
- package/src/contentful/blocks/breadcrumbs/BreadcrumbNavigation.stories.tsx +147 -0
- package/src/contentful/blocks/breadcrumbs/index.tsx +30 -16
- package/src/contentful/blocks/breadcrumbs/types.ts +3 -1
- package/src/contentful/blocks/cards/simple-card/index.tsx +1 -1
|
@@ -684,8 +684,10 @@ declare function BlogGridBase({ title, paginatedArticles, totalArticles, current
|
|
|
684
684
|
type BreadcrumbNavigationProps = {
|
|
685
685
|
links?: Array<any>;
|
|
686
686
|
textColor?: "dark" | "light";
|
|
687
|
+
mobileTextColor?: "dark" | "light";
|
|
688
|
+
desktopTextColor?: "dark" | "light";
|
|
687
689
|
maxWidth?: boolean;
|
|
688
|
-
|
|
690
|
+
float?: "none" | "mobile" | "desktop" | "always";
|
|
689
691
|
};
|
|
690
692
|
|
|
691
693
|
declare const BreadcrumbNavigation: React__default.FC<BreadcrumbNavigationProps>;
|