@cooperco/cooper-component-library 0.1.27 → 0.1.29

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.
@@ -0,0 +1,7 @@
1
+ import { Component } from '@/types';
2
+ import { Image } from '../Image/Image';
3
+ export interface AnimationWrapper extends Component {
4
+ __typename?: 'AnimationWrapper';
5
+ isChild?: boolean;
6
+ component: Image;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { AnimationWrapper } from './AnimationWrapper';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<AnimationWrapper, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AnimationWrapper> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
3
+ default?(_: {}): any;
4
+ }>;
5
+ export default _default;
6
+ type __VLS_WithTemplateSlots<T, S> = T & {
7
+ new (): {
8
+ $slots: S;
9
+ };
10
+ };
@@ -11,4 +11,5 @@ export interface Image extends Component {
11
11
  mobileMedia?: ImageMedia;
12
12
  altTag?: string;
13
13
  isFullWidth?: boolean;
14
+ animated?: boolean;
14
15
  }
@@ -1,5 +1,6 @@
1
1
  import { Image } from './Image';
2
2
  declare const _default: import("vue").DefineComponent<Image, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Image> & Readonly<{}>, {
3
3
  isFullWidth: boolean;
4
+ animated: boolean;
4
5
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
6
  export default _default;
@@ -11,6 +11,7 @@ export interface TileCollection extends Component {
11
11
  backgroundColor?: string;
12
12
  tileLabelType?: TileLabelType;
13
13
  ctas?: CTA[];
14
+ includeDecoration?: boolean;
14
15
  cols?: number;
15
16
  variant: 'IconTile' | 'ImageTile' | 'VideoTile' | 'ImageStackedAnimatedTile' | 'TextTile';
16
17
  pt?: ComponentPassthrough;
@@ -1,6 +1,7 @@
1
1
  import { TileCollection } from './TileCollectionModule';
2
2
  declare const _default: import("vue").DefineComponent<TileCollection, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TileCollection> & Readonly<{}>, {
3
3
  isProvider: boolean;
4
+ includeDecoration: boolean;
4
5
  cols: number;
5
6
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
7
  export default _default;
@@ -23,3 +23,4 @@ export { default as TileContentTextTile } from './TileContent/TileContentTextTil
23
23
  export { default as TileContentVideoTile } from './TileContent/TileContentVideoTile.vue';
24
24
  export { default as TileContentImageStackedAnimatedTile } from './TileContent/TileContentImageStackedAnimatedTile.vue';
25
25
  export { default as Video } from './Video/Video.vue';
26
+ export { default as AnimationWrapper } from './AnimationWrapper/AnimationWrapper.vue';
@@ -16,3 +16,4 @@ export type { TestimonialModule as TestimonialModuleType } from './TestimonialMo
16
16
  export type { TileCollection as TileCollectionModuleType } from './TileCollectionModule/TileCollectionModule';
17
17
  export type { TileContent as TileContentType } from './TileContent/TileContent';
18
18
  export type { Video as VideoType } from './Video/Video';
19
+ export type { AnimationWrapper as AnimationWrapperType } from './AnimationWrapper/AnimationWrapper';
@@ -36,7 +36,7 @@ export interface tileLabel {
36
36
  }
37
37
  export interface socialMedia {
38
38
  icon: Image;
39
- url: linkRef;
39
+ link: linkRef;
40
40
  }
41
41
  export interface Component {
42
42
  class?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cooperco/cooper-component-library",
3
3
  "private": false,
4
- "version": "0.1.27",
4
+ "version": "0.1.29",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"