@windstream/react-shared-components 0.1.97 → 0.1.99

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.
Files changed (36) hide show
  1. package/dist/contentful/index.d.ts +5 -0
  2. package/dist/contentful/index.esm.js +3 -3
  3. package/dist/contentful/index.esm.js.map +1 -1
  4. package/dist/contentful/index.js +3 -3
  5. package/dist/contentful/index.js.map +1 -1
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.esm.js +13 -5
  8. package/dist/index.esm.js.map +1 -1
  9. package/dist/index.js +13 -5
  10. package/dist/index.js.map +1 -1
  11. package/dist/next/index.esm.js +2 -2
  12. package/dist/next/index.esm.js.map +1 -1
  13. package/dist/next/index.js +2 -2
  14. package/dist/next/index.js.map +1 -1
  15. package/dist/styles.css +1 -1
  16. package/dist/utils/index.esm.js +1 -1
  17. package/dist/utils/index.esm.js.map +1 -1
  18. package/dist/utils/index.js +1 -1
  19. package/dist/utils/index.js.map +1 -1
  20. package/package.json +1 -1
  21. package/src/components/brand-button/index.tsx +1 -1
  22. package/src/contentful/blocks/breadcrumbs/index.tsx +2 -2
  23. package/src/contentful/blocks/button/index.tsx +24 -3
  24. package/src/contentful/blocks/button/types.ts +1 -0
  25. package/src/contentful/blocks/email-input-block/index.tsx +16 -7
  26. package/src/contentful/blocks/find-kinetic/index.tsx +61 -35
  27. package/src/contentful/blocks/find-kinetic/types.ts +1 -0
  28. package/src/contentful/blocks/image-promo-bar/helper.tsx +1 -1
  29. package/src/contentful/blocks/image-promo-bar/index.tsx +38 -10
  30. package/src/contentful/blocks/image-promo-bar/types.ts +3 -0
  31. package/src/contentful/blocks/image-promo-bar/youtube-embed.tsx +1 -1
  32. package/src/contentful/blocks/navigation/desktop-link-groups.tsx/index.tsx +139 -141
  33. package/src/contentful/blocks/navigation/index.tsx +571 -569
  34. package/src/contentful/blocks/navigation/mobile-link-groups.tsx/index.tsx +82 -82
  35. package/src/contentful/blocks/shape-background-wrapper/index.tsx +5 -2
  36. package/src/hooks/contentful/use-contentful-rich-text.tsx +6 -2
package/dist/index.d.ts CHANGED
@@ -65,7 +65,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
65
65
  size?: "slim" | "medium" | "large" | undefined;
66
66
  label?: string | undefined;
67
67
  errorText?: string | undefined;
68
- prefixIconName?: "search" | "location_on" | undefined;
68
+ prefixIconName?: "location_on" | "search" | undefined;
69
69
  prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
70
70
  prefixIconFill?: boolean | undefined;
71
71
  suffixIconFill?: boolean | undefined;