@windstream/react-shared-components 0.1.80 → 0.1.86

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.
@@ -3,6 +3,7 @@ import React__default, { ReactNode, CSSProperties, FC } from 'react';
3
3
  import { ResponsiveSize } from '@shared/components/brand-button/types';
4
4
  import { Fill, Size } from '@shared/components/material-icon/types';
5
5
  import { CheckPlansProps, Asset, Button as Button$1, ButtonGroup } from '@shared/types/micro-components';
6
+ import { AnimationType } from '@shared/components/animation-wrapper';
6
7
  import { ButtonProps as ButtonProps$1 } from '@shared/contentful/blocks/button/types';
7
8
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
9
  import { BlogCardImageProps as BlogCardImageProps$1 } from '@shared/contentful/blocks/cards/blog-card/types';
@@ -122,6 +123,10 @@ type CalloutProps = {
122
123
  containerClassName?: string;
123
124
  /** Extra class names for the inner content wrapper. */
124
125
  innerClassName?: string;
126
+ /** Disable card hover/tap animations. */
127
+ disableAnimation?: boolean;
128
+ /** Animation type(s) applied to each card. */
129
+ animationType?: AnimationType | AnimationType[];
125
130
  };
126
131
 
127
132
  declare const Callout: React__default.FC<CalloutProps>;
@@ -242,6 +247,7 @@ interface ProductCardFields {
242
247
  benefitsTitle?: string;
243
248
  benefitsExpanded?: boolean;
244
249
  innerBadge?: string;
250
+ productCategory?: string;
245
251
  benefits?: {
246
252
  items: Array<any>;
247
253
  };