sass-template-common 0.2.73 → 0.2.75
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.css +1 -1
- package/dist/sass-template-common.d.ts +16 -0
- package/dist/sass-template-common.js +2612 -2559
- package/dist/sass-template-common.umd.cjs +28 -28
- package/package.json +1 -1
|
@@ -499,11 +499,19 @@ export declare interface Entity {
|
|
|
499
499
|
orderDefault: string;
|
|
500
500
|
sizeDefault: number;
|
|
501
501
|
visibility: boolean;
|
|
502
|
+
url?: string;
|
|
502
503
|
image: {
|
|
503
504
|
url: string;
|
|
504
505
|
width: number;
|
|
505
506
|
height: number;
|
|
506
507
|
};
|
|
508
|
+
social?: {
|
|
509
|
+
facebook: string;
|
|
510
|
+
twitter: string;
|
|
511
|
+
linkedin: string;
|
|
512
|
+
google: boolean;
|
|
513
|
+
instagram: string;
|
|
514
|
+
};
|
|
507
515
|
}
|
|
508
516
|
|
|
509
517
|
export declare const ErrorComponent: FC<Props_37>;
|
|
@@ -1932,6 +1940,14 @@ declare type Props_49 = {
|
|
|
1932
1940
|
description: string;
|
|
1933
1941
|
img: string;
|
|
1934
1942
|
className?: string;
|
|
1943
|
+
url?: string;
|
|
1944
|
+
social?: {
|
|
1945
|
+
facebook: string;
|
|
1946
|
+
twitter: string;
|
|
1947
|
+
linkedin: string;
|
|
1948
|
+
google: string;
|
|
1949
|
+
instagram: string;
|
|
1950
|
+
};
|
|
1935
1951
|
};
|
|
1936
1952
|
|
|
1937
1953
|
declare type Props_5 = {
|