@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.
- package/dist/lib/component-lib.js +2313 -2150
- package/dist/lib/component-lib.umd.cjs +26 -26
- package/dist/lib/style.css +1 -1
- package/dist/types/components/AnimationWrapper/AnimationWrapper.d.ts +7 -0
- package/dist/types/components/AnimationWrapper/AnimationWrapper.vue.d.ts +10 -0
- package/dist/types/components/Image/Image.d.ts +1 -0
- package/dist/types/components/Image/Image.vue.d.ts +1 -0
- package/dist/types/components/TileCollectionModule/TileCollectionModule.d.ts +1 -0
- package/dist/types/components/TileCollectionModule/TileCollectionModule.vue.d.ts +1 -0
- package/dist/types/components/components.d.ts +1 -0
- package/dist/types/components/types.d.ts +1 -0
- package/dist/types/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
+
};
|
|
@@ -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';
|
package/dist/types/types.d.ts
CHANGED