sass-template-common 0.9.89 → 0.9.91

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.
@@ -523,6 +523,14 @@ export declare type Config = {
523
523
  includebody?: boolean;
524
524
  includedatecreated?: boolean;
525
525
  };
526
+ address?: {
527
+ streetAddress: string;
528
+ addressLocality: string;
529
+ addressRegion: string;
530
+ postalCode: string;
531
+ addressCountry: string;
532
+ };
533
+ orgSoftware?: Array<SoftwareApplicationData>;
526
534
  };
527
535
 
528
536
  declare type Config_2 = {
@@ -1072,6 +1080,7 @@ export declare type headConfig = {
1072
1080
  schemas_NewsArticle: boolean;
1073
1081
  schemas_Videos: boolean;
1074
1082
  schemas_WebsiteList: boolean;
1083
+ schemas_SoftwareApplication: boolean;
1075
1084
  };
1076
1085
 
1077
1086
  export declare const Header: default_2.FC<HeaderProps>;
@@ -2636,6 +2645,13 @@ export declare const SectionCard: FC<SectionCardProps>;
2636
2645
 
2637
2646
  export declare const SectionCard2: FC<SectionCardProps_2>;
2638
2647
 
2648
+ export declare const SectionCard5: FC<NewListResponseData & {
2649
+ showNewsLikeTitle?: boolean;
2650
+ hasShadow?: boolean;
2651
+ textAlignment?: string;
2652
+ speculationPrerenderClass?: string;
2653
+ }>;
2654
+
2639
2655
  declare interface SectionCardCarouselProps extends Omit<SectionProps, 'children'> {
2640
2656
  content: Array<NewListResponseData>;
2641
2657
  slot_id: string;
@@ -2796,6 +2812,31 @@ export declare type Socials = {
2796
2812
  [x: string]: Network;
2797
2813
  };
2798
2814
 
2815
+ export declare const SoftwareApplication: ({ config }: {
2816
+ config: Config;
2817
+ }) => JSX.Element | null;
2818
+
2819
+ export declare type SoftwareApplicationData = {
2820
+ name?: string;
2821
+ url: string;
2822
+ operatingSystem: string;
2823
+ applicationCategory: string;
2824
+ applicationSubCategory?: string;
2825
+ offers: {
2826
+ price: string;
2827
+ priceCurrency: string;
2828
+ };
2829
+ aggregateRating?: {
2830
+ ratingValue: string;
2831
+ ratingCount: string;
2832
+ bestRating?: string;
2833
+ };
2834
+ description?: string;
2835
+ downloadUrl?: string;
2836
+ softwareVersion?: string;
2837
+ contentRating?: string;
2838
+ };
2839
+
2799
2840
  export declare const SpeculationRules: ({ active, type, customSpeculation }: {
2800
2841
  active: boolean;
2801
2842
  type: "Home" | "Common" | "Nota" | "NotaLista";