@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.
- package/dist/contentful/index.d.ts +6 -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 +16 -3
- package/dist/index.d.ts +21 -8
- package/dist/index.esm.js +6 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/animation-wrapper/index.tsx +129 -0
- package/src/components/animation-wrapper/types.ts +11 -0
- package/src/contentful/blocks/callout/index.tsx +16 -2
- package/src/contentful/blocks/callout/types.ts +6 -0
- package/src/contentful/blocks/carousel/helper.tsx +74 -20
- package/src/contentful/blocks/carousel/index.tsx +2 -0
- package/src/contentful/blocks/carousel/types.ts +1 -0
- package/src/index.ts +6 -0
|
@@ -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
|
};
|