sass-template-common 0.9.89 → 0.9.90
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 +33 -0
- package/dist/sass-template-common.js +814 -773
- package/dist/sass-template-common.umd.cjs +21 -21
- package/package.json +1 -1
|
@@ -523,6 +523,13 @@ export declare type Config = {
|
|
|
523
523
|
includebody?: boolean;
|
|
524
524
|
includedatecreated?: boolean;
|
|
525
525
|
};
|
|
526
|
+
address?: {
|
|
527
|
+
streetAddress: string;
|
|
528
|
+
addressLocality: string;
|
|
529
|
+
postalCode: string;
|
|
530
|
+
addressCountry: string;
|
|
531
|
+
};
|
|
532
|
+
orgSoftware?: Array<SoftwareApplicationData>;
|
|
526
533
|
};
|
|
527
534
|
|
|
528
535
|
declare type Config_2 = {
|
|
@@ -1072,6 +1079,7 @@ export declare type headConfig = {
|
|
|
1072
1079
|
schemas_NewsArticle: boolean;
|
|
1073
1080
|
schemas_Videos: boolean;
|
|
1074
1081
|
schemas_WebsiteList: boolean;
|
|
1082
|
+
schemas_SoftwareApplication: boolean;
|
|
1075
1083
|
};
|
|
1076
1084
|
|
|
1077
1085
|
export declare const Header: default_2.FC<HeaderProps>;
|
|
@@ -2796,6 +2804,31 @@ export declare type Socials = {
|
|
|
2796
2804
|
[x: string]: Network;
|
|
2797
2805
|
};
|
|
2798
2806
|
|
|
2807
|
+
export declare const SoftwareApplication: ({ config }: {
|
|
2808
|
+
config: Config;
|
|
2809
|
+
}) => JSX.Element | null;
|
|
2810
|
+
|
|
2811
|
+
export declare type SoftwareApplicationData = {
|
|
2812
|
+
name?: string;
|
|
2813
|
+
url: string;
|
|
2814
|
+
operatingSystem: string;
|
|
2815
|
+
applicationCategory: string;
|
|
2816
|
+
applicationSubCategory?: string;
|
|
2817
|
+
offers: {
|
|
2818
|
+
price: string;
|
|
2819
|
+
priceCurrency: string;
|
|
2820
|
+
};
|
|
2821
|
+
aggregateRating?: {
|
|
2822
|
+
ratingValue: string;
|
|
2823
|
+
ratingCount: string;
|
|
2824
|
+
bestRating?: string;
|
|
2825
|
+
};
|
|
2826
|
+
description?: string;
|
|
2827
|
+
downloadUrl?: string;
|
|
2828
|
+
softwareVersion?: string;
|
|
2829
|
+
contentRating?: string;
|
|
2830
|
+
};
|
|
2831
|
+
|
|
2799
2832
|
export declare const SpeculationRules: ({ active, type, customSpeculation }: {
|
|
2800
2833
|
active: boolean;
|
|
2801
2834
|
type: "Home" | "Common" | "Nota" | "NotaLista";
|