ouisys-component-library 2.0.20 → 2.0.21
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/Creative.js +1 -1
- package/dist/Creative.js.map +1 -1
- package/dist/CreativeZipFolder.js +1 -1
- package/dist/CreativeZipFolder.js.map +1 -1
- package/dist/Features.js +1 -1
- package/dist/Features.js.map +1 -1
- package/dist/Footer.js +1 -1
- package/dist/Footer.js.map +1 -1
- package/dist/Header.js +1 -1
- package/dist/Header.js.map +1 -1
- package/dist/Menu.js +1 -1
- package/dist/Menu.js.map +1 -1
- package/dist/PersuasiveCreative.js +2 -0
- package/dist/PersuasiveCreative.js.map +1 -0
- package/dist/PersuasiveZipFolder.js +2 -0
- package/dist/PersuasiveZipFolder.js.map +1 -0
- package/dist/PricingPolicy.js +1 -1
- package/dist/PricingPolicy.js.map +1 -1
- package/dist/RefundPolicy.js.map +1 -1
- package/dist/Showcase.js +1 -1
- package/dist/Showcase.js.map +1 -1
- package/dist/Unsubscription.js +1 -1
- package/dist/Unsubscription.js.map +1 -1
- package/dist/types/Creatives/Creative/Creative.d.ts +2 -2
- package/dist/types/Creatives/Creative/Creative.types.d.ts +7 -14
- package/dist/types/Creatives/CreativeZipFolder/CreativeZipFolder.d.ts +2 -2
- package/dist/types/Creatives/CreativeZipFolder/CreativeZipFolder.types.d.ts +5 -16
- package/dist/types/Features/Features.d.ts +1 -1
- package/dist/types/Features/Features.types.d.ts +0 -3
- package/dist/types/Footer/Footer.types.d.ts +6 -33
- package/dist/types/Header/Header.d.ts +2 -2
- package/dist/types/Header/Header.types.d.ts +2 -13
- package/dist/types/Menu/Menu.d.ts +2 -2
- package/dist/types/Menu/Menu.types.d.ts +2 -10
- package/dist/types/Persuasive/Creative/Creative.d.ts +5 -0
- package/dist/types/Persuasive/Creative/Creative.types.d.ts +13 -0
- package/dist/types/Persuasive/CreativeZipFolder/CreativeZipFolder.d.ts +5 -0
- package/dist/types/Persuasive/CreativeZipFolder/CreativeZipFolder.types.d.ts +15 -0
- package/dist/types/Persuasive/PersuasiveCreative/Creative.types.d.ts +13 -0
- package/dist/types/Persuasive/PersuasiveCreative/PersuasiveCreative.d.ts +5 -0
- package/dist/types/Persuasive/PersuasiveCreative/PersuasiveCreative.types.d.ts +13 -0
- package/dist/types/Persuasive/PersuasiveZipFolder/PersuasiveZipFolder.d.ts +5 -0
- package/dist/types/Persuasive/PersuasiveZipFolder/PersuasiveZipFolder.types.d.ts +15 -0
- package/dist/types/Prelanders/LovePrelander/LovePrelander.types.d.ts +1 -9
- package/dist/types/PricingPolicy/PricingPolicy.d.ts +2 -2
- package/dist/types/PricingPolicy/PricingPolicy.types.d.ts +2 -31
- package/dist/types/RefundPolicy/RefundPolicy.types.d.ts +2 -11
- package/dist/types/Showcase/Showcase.d.ts +2 -2
- package/dist/types/Showcase/Showcase.types.d.ts +2 -2
- package/dist/types/Unsubscription/Unsubscription.types.d.ts +2 -9
- package/dist/types/component-exports/Creative/Creative.d.ts +2 -2
- package/dist/types/component-exports/CreativeZipFolder/CreativeZipFolder.d.ts +2 -2
- package/dist/types/component-exports/Footer/Footer.d.ts +1 -1
- package/dist/types/component-exports/Header/Header.d.ts +1 -1
- package/dist/types/component-exports/LovePrelander/LovePrelander.d.ts +1 -1
- package/dist/types/component-exports/Menu/Menu.d.ts +1 -1
- package/dist/types/component-exports/PersuasiveCreative/PersuasiveCreative.d.ts +2 -0
- package/dist/types/component-exports/PersuasiveZipFolder/PersuasiveZipFolder.d.ts +2 -0
- package/dist/types/component-exports/PricingPolicy/PricingPolicy.d.ts +1 -1
- package/dist/types/component-exports/RefundPolicy/RefundPolicy.d.ts +1 -1
- package/dist/types/component-exports/Showcase/Showcase.d.ts +1 -1
- package/dist/types/component-exports/Unsubscription/Unsubscription.d.ts +1 -1
- package/package.json +7 -7
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InterfaceFeatures } from './CreativeZipFolder.types.js';
|
|
2
2
|
|
|
3
|
-
declare const CreativeZipFolder: ({
|
|
3
|
+
declare const CreativeZipFolder: ({ title, subtitle, className, caption, image, dataQaId, tracker, ScrollTop, Overlay }: InterfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { CreativeZipFolder };
|
|
@@ -1,26 +1,15 @@
|
|
|
1
1
|
import { ITracker } from '../../custom-types.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
name: string;
|
|
6
|
-
subtitle: string;
|
|
7
|
-
description: string;
|
|
8
|
-
CreativeImage?: string;
|
|
9
|
-
subtitle2?: string;
|
|
10
|
-
tracker?: ITracker;
|
|
11
|
-
ScrollTop?: boolean;
|
|
12
|
-
Overlay?: boolean;
|
|
13
|
-
};
|
|
14
|
-
interface interfaceFeatures {
|
|
15
|
-
headline: string;
|
|
3
|
+
interface InterfaceFeatures {
|
|
4
|
+
title: string;
|
|
16
5
|
subtitle: string;
|
|
17
6
|
className?: string;
|
|
18
7
|
dataQaId?: string;
|
|
19
8
|
tracker?: ITracker;
|
|
20
|
-
|
|
21
|
-
|
|
9
|
+
image?: string;
|
|
10
|
+
caption?: string;
|
|
22
11
|
ScrollTop?: boolean;
|
|
23
12
|
Overlay?: boolean;
|
|
24
13
|
}
|
|
25
14
|
|
|
26
|
-
export {
|
|
15
|
+
export { InterfaceFeatures };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { interfaceFeatures } from './Features.types.js';
|
|
2
2
|
|
|
3
|
-
declare const Features: ({ locale, type,
|
|
3
|
+
declare const Features: ({ locale, type, domain, className, dataQaId }: interfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { Features };
|
|
@@ -5,8 +5,6 @@ type typeItems = {
|
|
|
5
5
|
image?: string;
|
|
6
6
|
name?: string;
|
|
7
7
|
description?: string;
|
|
8
|
-
isCollapsed?: boolean;
|
|
9
|
-
headline?: string;
|
|
10
8
|
};
|
|
11
9
|
interface interfaceFeatures {
|
|
12
10
|
locale: string;
|
|
@@ -17,7 +15,6 @@ interface interfaceFeatures {
|
|
|
17
15
|
className?: string;
|
|
18
16
|
dataQaId?: string;
|
|
19
17
|
tracker?: ITracker;
|
|
20
|
-
isCollapsed?: boolean;
|
|
21
18
|
}
|
|
22
19
|
|
|
23
20
|
export { interfaceFeatures, typeItems };
|
|
@@ -1,43 +1,16 @@
|
|
|
1
1
|
import lng from './locale/index.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
type typeItems = {
|
|
3
|
+
interface InterfaceFeatures {
|
|
5
4
|
dataQaId?: string;
|
|
6
|
-
serviceDescription: string;
|
|
7
5
|
serviceName: string;
|
|
8
|
-
mccCopyright: string;
|
|
9
|
-
address: string;
|
|
10
|
-
logoUrl: string;
|
|
11
|
-
mccName: string;
|
|
12
|
-
locale?: keyof typeof lng;
|
|
13
|
-
legalLinks: string;
|
|
14
|
-
faq: string;
|
|
15
|
-
description: string;
|
|
16
|
-
Menu: {
|
|
17
|
-
helpCenterTitle: string;
|
|
18
|
-
legalTitle: string;
|
|
19
|
-
faq: string;
|
|
20
|
-
terms: string;
|
|
21
|
-
privacyPolicy: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
interface interfaceFeatures {
|
|
25
|
-
dataQaId?: string;
|
|
26
|
-
serviceDescription: string;
|
|
27
|
-
serviceName: string;
|
|
28
|
-
mccCopyright: string;
|
|
29
6
|
address: string;
|
|
30
7
|
logoUrl: string;
|
|
31
8
|
locale?: keyof typeof lng;
|
|
32
|
-
description: string;
|
|
33
9
|
mccName: string;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
terms: string;
|
|
39
|
-
privacyPolicy: string;
|
|
40
|
-
};
|
|
10
|
+
ceo: string;
|
|
11
|
+
email: string;
|
|
12
|
+
phone: string;
|
|
13
|
+
registrationNumber: string;
|
|
41
14
|
}
|
|
42
15
|
|
|
43
|
-
export {
|
|
16
|
+
export { InterfaceFeatures };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InterfaceFeatures } from './Header.types.js';
|
|
2
2
|
|
|
3
|
-
declare const Header: ({
|
|
3
|
+
declare const Header: ({ logoUrl, className, dataQaId, locale, topLegal, tracker }: InterfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { Header };
|
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
import { ITracker } from '../custom-types.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
image: string;
|
|
5
|
-
name: string;
|
|
6
|
-
topLegal?: string;
|
|
7
|
-
};
|
|
8
|
-
interface interfaceFeatures {
|
|
9
|
-
name: string;
|
|
3
|
+
interface InterfaceFeatures {
|
|
10
4
|
logoUrl: string;
|
|
11
5
|
className?: string;
|
|
12
6
|
dataQaId?: string;
|
|
13
7
|
tracker?: ITracker;
|
|
14
|
-
options?: {
|
|
15
|
-
value: string;
|
|
16
|
-
label: string;
|
|
17
|
-
}[];
|
|
18
8
|
locale?: any;
|
|
19
|
-
switchLang?: (lang: string) => string;
|
|
20
9
|
topLegal?: string;
|
|
21
10
|
}
|
|
22
11
|
|
|
23
|
-
export {
|
|
12
|
+
export { InterfaceFeatures };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InterfaceFeatures } from './Menu.types.js';
|
|
2
2
|
|
|
3
|
-
declare const Menu: ({ locale, className,
|
|
3
|
+
declare const Menu: ({ locale, className, setIsOpen, dataQaId, logoUrl }: InterfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { Menu };
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
import { ITracker } from '../custom-types.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
logoUrl: string;
|
|
5
|
-
name: string;
|
|
6
|
-
locale: string;
|
|
7
|
-
isOpen: boolean;
|
|
8
|
-
labels: Record<string, string>;
|
|
9
|
-
setIsOpen: (isOpen: boolean) => void;
|
|
10
|
-
};
|
|
11
|
-
interface interfaceFeatures {
|
|
3
|
+
interface InterfaceFeatures {
|
|
12
4
|
logoUrl: string;
|
|
13
5
|
className?: string;
|
|
14
6
|
dataQaId?: string;
|
|
@@ -19,4 +11,4 @@ interface interfaceFeatures {
|
|
|
19
11
|
setIsOpen: (isOpen: boolean) => void;
|
|
20
12
|
}
|
|
21
13
|
|
|
22
|
-
export {
|
|
14
|
+
export { InterfaceFeatures };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ITracker } from '../../custom-types.js';
|
|
2
|
+
|
|
3
|
+
interface InterfaceFeatures {
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
caption: string;
|
|
7
|
+
dataQaId?: string;
|
|
8
|
+
tracker?: ITracker;
|
|
9
|
+
image: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export { InterfaceFeatures };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ITracker } from '../../custom-types.js';
|
|
2
|
+
|
|
3
|
+
interface InterfaceFeatures {
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
dataQaId?: string;
|
|
8
|
+
tracker?: ITracker;
|
|
9
|
+
image?: string;
|
|
10
|
+
caption?: string;
|
|
11
|
+
ScrollTop?: boolean;
|
|
12
|
+
Overlay?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export { InterfaceFeatures };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ITracker } from '../../custom-types.js';
|
|
2
|
+
|
|
3
|
+
interface InterfaceFeatures {
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
caption: string;
|
|
7
|
+
dataQaId?: string;
|
|
8
|
+
tracker?: ITracker;
|
|
9
|
+
image: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export { InterfaceFeatures };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ITracker } from '../../custom-types.js';
|
|
2
|
+
|
|
3
|
+
interface InterfaceFeatures {
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
caption: string;
|
|
7
|
+
dataQaId?: string;
|
|
8
|
+
tracker?: ITracker;
|
|
9
|
+
image: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export { InterfaceFeatures };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ITracker } from '../../custom-types.js';
|
|
2
|
+
|
|
3
|
+
interface InterfaceFeatures {
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
dataQaId?: string;
|
|
8
|
+
tracker?: ITracker;
|
|
9
|
+
image?: string;
|
|
10
|
+
caption?: string;
|
|
11
|
+
ScrollTop?: boolean;
|
|
12
|
+
Overlay?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export { InterfaceFeatures };
|
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
import { ITracker } from '../../custom-types.js';
|
|
2
2
|
|
|
3
|
-
type typeItems = {
|
|
4
|
-
logoUrl: string;
|
|
5
|
-
name: string;
|
|
6
|
-
locale: string;
|
|
7
|
-
questions: any[];
|
|
8
|
-
currentQuestion: number;
|
|
9
|
-
setCurrentQuestion: (currentQuestion: number) => void;
|
|
10
|
-
};
|
|
11
3
|
interface interfaceFeatures {
|
|
12
4
|
logoUrl: string;
|
|
13
5
|
className?: string;
|
|
@@ -22,4 +14,4 @@ interface interfaceFeatures {
|
|
|
22
14
|
setCurrentQuestion: (currentQuestion: number) => void;
|
|
23
15
|
}
|
|
24
16
|
|
|
25
|
-
export { interfaceFeatures
|
|
17
|
+
export { interfaceFeatures };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InterfaceFeatures } from './PricingPolicy.types.js';
|
|
2
2
|
|
|
3
|
-
declare const PricingPolicy: ({ locale, dataQaId }:
|
|
3
|
+
declare const PricingPolicy: ({ locale, dataQaId }: InterfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { PricingPolicy };
|
|
@@ -1,35 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
pricePoint: string;
|
|
3
|
-
dataQaId?: string;
|
|
4
|
-
locale?: string;
|
|
5
|
-
freePackage: boolean | string;
|
|
6
|
-
name: string;
|
|
7
|
-
status: boolean | string;
|
|
8
|
-
features: string;
|
|
9
|
-
};
|
|
10
|
-
interface PricingFeature {
|
|
11
|
-
name: string;
|
|
12
|
-
status: string;
|
|
13
|
-
}
|
|
14
|
-
interface PricingDetails {
|
|
15
|
-
label: string;
|
|
16
|
-
subLabel: string;
|
|
17
|
-
amount: string;
|
|
18
|
-
period: string;
|
|
19
|
-
ctaText: string;
|
|
20
|
-
}
|
|
21
|
-
interface LocaleData {
|
|
22
|
-
headline: string;
|
|
23
|
-
items: string[];
|
|
24
|
-
features: PricingFeature[];
|
|
25
|
-
pricing: PricingDetails;
|
|
26
|
-
}
|
|
27
|
-
interface interfacePricingPolicy {
|
|
1
|
+
interface InterfaceFeatures {
|
|
28
2
|
locale?: string;
|
|
29
3
|
dataQaId?: string;
|
|
30
4
|
}
|
|
31
|
-
interface PricingPolicyLocale {
|
|
32
|
-
pricingPolicy: LocaleData;
|
|
33
|
-
}
|
|
34
5
|
|
|
35
|
-
export {
|
|
6
|
+
export { InterfaceFeatures };
|
|
@@ -1,18 +1,9 @@
|
|
|
1
1
|
import lng from './locale/index.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
type typeItems = {
|
|
5
|
-
dataQaId?: string;
|
|
6
|
-
locale?: keyof typeof lng;
|
|
7
|
-
headline: string;
|
|
8
|
-
serviceName: string;
|
|
9
|
-
};
|
|
10
|
-
interface interfaceRefundPolicy {
|
|
11
|
-
refundPolicy: string;
|
|
12
|
-
headline: string;
|
|
3
|
+
interface InterfaceFeatures {
|
|
13
4
|
locale?: keyof typeof lng;
|
|
14
5
|
dataQaId?: string;
|
|
15
6
|
serviceName: string;
|
|
16
7
|
}
|
|
17
8
|
|
|
18
|
-
export {
|
|
9
|
+
export { InterfaceFeatures };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InterfaceFeatures } from './Showcase.types.js';
|
|
2
2
|
|
|
3
|
-
declare const Showcase: ({ locale, type, domain, className, dataQaId, tracker }:
|
|
3
|
+
declare const Showcase: ({ locale, type, domain, className, dataQaId, tracker }: InterfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { Showcase };
|
|
@@ -5,7 +5,7 @@ type TypeItems = {
|
|
|
5
5
|
image?: string;
|
|
6
6
|
name?: string;
|
|
7
7
|
};
|
|
8
|
-
interface
|
|
8
|
+
interface InterfaceFeatures {
|
|
9
9
|
locale: string;
|
|
10
10
|
type: 'astrology' | 'fitness' | 'football' | 'games' | 'iqbrain' | 'karaoke' | 'video' | 'xracademy';
|
|
11
11
|
items?: Array<TypeItems>;
|
|
@@ -15,4 +15,4 @@ interface InterfaceShowcase {
|
|
|
15
15
|
tracker?: ITracker;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
export {
|
|
18
|
+
export { InterfaceFeatures, TypeItems };
|
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
dataQaId?: string;
|
|
3
|
-
unsubscriptionText: string[];
|
|
4
|
-
unsubscriptionTitle: string;
|
|
5
|
-
locale: string;
|
|
6
|
-
Unsubscription: string;
|
|
7
|
-
};
|
|
8
|
-
interface interfaceFeatures {
|
|
1
|
+
interface InterfaceFeatures {
|
|
9
2
|
unsubscriptionText: string[];
|
|
10
3
|
unsubscriptionTitle: string;
|
|
11
4
|
dataQaId?: string;
|
|
@@ -13,4 +6,4 @@ interface interfaceFeatures {
|
|
|
13
6
|
Unsubscription: string;
|
|
14
7
|
}
|
|
15
8
|
|
|
16
|
-
export {
|
|
9
|
+
export { InterfaceFeatures };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { PersuasiveCreative } from '../../Persuasive/PersuasiveCreative/PersuasiveCreative.js';
|
|
2
|
+
export { InterfaceFeatures } from '../../Persuasive/PersuasiveCreative/PersuasiveCreative.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { CreativeZipFolder } from '../../
|
|
2
|
-
export {
|
|
1
|
+
export { CreativeZipFolder } from '../../Persuasive/CreativeZipFolder/CreativeZipFolder.js';
|
|
2
|
+
export { InterfaceFeatures } from '../../Persuasive/CreativeZipFolder/CreativeZipFolder.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Footer } from '../../Footer/Footer.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures } from '../../Footer/Footer.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Header } from '../../Header/Header.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures } from '../../Header/Header.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { LovePrelander } from '../../Prelanders/LovePrelander/LovePrelander.js';
|
|
2
|
-
export { interfaceFeatures
|
|
2
|
+
export { interfaceFeatures } from '../../Prelanders/LovePrelander/LovePrelander.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Menu } from '../../Menu/Menu.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures } from '../../Menu/Menu.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { PricingPolicy } from '../../PricingPolicy/PricingPolicy.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures } from '../../PricingPolicy/PricingPolicy.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { RefundPolicy } from '../../RefundPolicy/RefundPolicy.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures } from '../../RefundPolicy/RefundPolicy.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Showcase } from '../../Showcase/Showcase.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures, TypeItems } from '../../Showcase/Showcase.types.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Unsubscription } from '../../Unsubscription/Unsubscription.js';
|
|
2
|
-
export {
|
|
2
|
+
export { InterfaceFeatures } from '../../Unsubscription/Unsubscription.types.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ouisys-component-library",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.21",
|
|
4
4
|
"description": "Ouisys Components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"directories": "dist dev-tools",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"./utilities/defineMessages": "./dist/defineMessages.js",
|
|
56
56
|
"./utilities/injectIntl": "./dist/injectIntl.js",
|
|
57
57
|
"./utilities/formatSMSLink": "./dist/formatSMSLink.js",
|
|
58
|
-
"./
|
|
59
|
-
"./
|
|
58
|
+
"./PersuasiveCreative": "./dist/PersuasiveCreative.js",
|
|
59
|
+
"./PersuasiveZipFolder": "./dist/PersuasiveZipFolder.js",
|
|
60
60
|
"./Header": "./dist/Header.js",
|
|
61
61
|
"./Unsubscription": "./dist/Unsubscription.js",
|
|
62
62
|
"./Footer": "./dist/Footer.js",
|
|
@@ -116,11 +116,11 @@
|
|
|
116
116
|
"Showcase": [
|
|
117
117
|
"dist/types/Showcase/Showcase.d.ts"
|
|
118
118
|
],
|
|
119
|
-
"
|
|
120
|
-
"dist/types/
|
|
119
|
+
"PersuasiveCreative": [
|
|
120
|
+
"dist/types/PersuasiveCreative/PersuasiveCreative.d.ts"
|
|
121
121
|
],
|
|
122
|
-
"
|
|
123
|
-
"dist/types/
|
|
122
|
+
"PersuasiveZipFolder": [
|
|
123
|
+
"dist/types/PersuasiveZipFolder/PersuasiveZipFolder.d.ts"
|
|
124
124
|
],
|
|
125
125
|
"Footer": [
|
|
126
126
|
"dist/types/Footer/Footer.d.ts"
|