sass-template-common 0.9.227 → 0.9.228
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/sass-template-common.d.ts +10 -1
- package/dist/sass-template-common.js +331 -323
- package/dist/sass-template-common.umd.cjs +16 -15
- package/package.json +1 -1
|
@@ -873,6 +873,13 @@ export declare interface Entity {
|
|
|
873
873
|
|
|
874
874
|
export declare const ErrorComponent: FC<Props_39>;
|
|
875
875
|
|
|
876
|
+
declare type EventReplaces = {
|
|
877
|
+
'[author_replace]': string;
|
|
878
|
+
'[section_replace]': string;
|
|
879
|
+
'[tag_replace]': string;
|
|
880
|
+
'[url_replace]': string;
|
|
881
|
+
};
|
|
882
|
+
|
|
876
883
|
declare interface External_2 {
|
|
877
884
|
httpstream: boolean;
|
|
878
885
|
iframe: boolean;
|
|
@@ -1036,7 +1043,7 @@ export declare interface FreeZoneResponse {
|
|
|
1036
1043
|
};
|
|
1037
1044
|
}
|
|
1038
1045
|
|
|
1039
|
-
export declare const GA4: ({ id, dimensionValues }: Props_2) => "" | JSX.Element | undefined;
|
|
1046
|
+
export declare const GA4: ({ id, dimensionValues, event_analytics, eventReplaces }: Props_2) => "" | JSX.Element | undefined;
|
|
1040
1047
|
|
|
1041
1048
|
export declare const GalleryHeader: ({ newsformated, internal, commonServices, }: {
|
|
1042
1049
|
newsformated: NewListResponseData;
|
|
@@ -2432,6 +2439,8 @@ declare type Props_2 = {
|
|
|
2432
2439
|
dimensionValues?: {
|
|
2433
2440
|
[key: string]: string;
|
|
2434
2441
|
};
|
|
2442
|
+
event_analytics?: BannerResponse;
|
|
2443
|
+
eventReplaces?: EventReplaces;
|
|
2435
2444
|
};
|
|
2436
2445
|
|
|
2437
2446
|
declare type Props_20 = {
|