@windstream/react-shared-components 0.1.74 → 0.1.76
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 +7 -0
- 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 +1 -1
- package/dist/index.esm.js +5 -13
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -13
- 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/navigation/desktop-link-groups.tsx/index.tsx +17 -2
- package/src/contentful/blocks/navigation/index.tsx +239 -134
- package/src/contentful/blocks/navigation/types.ts +7 -0
|
@@ -371,6 +371,13 @@ interface Navigation$1 {
|
|
|
371
371
|
navigationBackgroundColor?: Color;
|
|
372
372
|
utilityNavBackgroundColor?: Color;
|
|
373
373
|
utilityNavLinkColor?: Color;
|
|
374
|
+
/**
|
|
375
|
+
* Tailwind class (or raw class string) applied to the main nav row's
|
|
376
|
+
* text color, e.g. `"text-white"` or `"text-secondary-navy500"`. Used
|
|
377
|
+
* by section / secondary navbars rendered on a dark background where
|
|
378
|
+
* the labels need to be inverted.
|
|
379
|
+
*/
|
|
380
|
+
navigationLinkColor?: string;
|
|
374
381
|
utilityNavActiveIndex?: number;
|
|
375
382
|
callNowCtaText?: string;
|
|
376
383
|
callNowCtaIcon?: Asset;
|