sass-template-common 0.4.0 → 0.4.1
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/README.md +36 -36
- package/dist/sass-template-common.css +1 -1
- package/dist/sass-template-common.d.ts +5 -1
- package/dist/sass-template-common.js +2469 -2448
- package/dist/sass-template-common.umd.cjs +40 -40
- package/package.json +64 -64
|
@@ -1579,8 +1579,12 @@ export declare type NoteShare = {
|
|
|
1579
1579
|
variant: 'outline' | 'container';
|
|
1580
1580
|
options?: Array<NoteShareOption>;
|
|
1581
1581
|
url: string;
|
|
1582
|
-
googleProfile?:
|
|
1582
|
+
googleProfile?: {
|
|
1583
|
+
url: string;
|
|
1584
|
+
likeSocial: boolean;
|
|
1585
|
+
};
|
|
1583
1586
|
whatsappUrl?: string;
|
|
1587
|
+
customButton?: boolean;
|
|
1584
1588
|
};
|
|
1585
1589
|
|
|
1586
1590
|
export declare type NoteShareOption = 'X' | 'Email' | 'LinkedIn' | 'Whatsapp' | 'FaceBook';
|