@bigbinary/neeto-molecules 3.16.2-beta → 3.16.2-beta-2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "3.16.2-beta",
3
+ "version": "3.16.2-beta-2",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -3,6 +3,7 @@ import React from 'react';
3
3
  type MoreOptions = {
4
4
  title: string;
5
5
  link: string;
6
+ path: string;
6
7
  icon: React.ReactNode;
7
8
  onClick?: Function;
8
9
  dataCy: string;
@@ -155,17 +156,17 @@ declare const ShareViaLink: React.FC<{
155
156
  handleEdit?: Function;
156
157
  handleRegenerate?: Function;
157
158
  socialMediaProps: {
158
- cardTitle: string | React.ReactNode;
159
- cardDescription: string | React.ReactNode;
160
- pageTitle: string | React.ReactNode;
161
- pageDescription: string | React.ReactNode;
162
- postTitle: string;
159
+ cardTitle?: string | React.ReactNode;
160
+ cardDescription?: string | React.ReactNode;
161
+ pageTitle?: string | React.ReactNode;
162
+ pageDescription?: string | React.ReactNode;
163
+ postTitle?: string;
163
164
  };
164
165
  qrCodeProps: {
165
- cardTitle: string | React.ReactNode;
166
- cardDescription: string | React.ReactNode;
167
- pageTitle: string | React.ReactNode;
168
- pageDescription: string | React.ReactNode;
166
+ cardTitle?: string | React.ReactNode;
167
+ cardDescription?: string | React.ReactNode;
168
+ pageTitle?: string | React.ReactNode;
169
+ pageDescription?: string | React.ReactNode;
169
170
  };
170
171
  moreOptions?: MoreOptions[];
171
172
  disableShareSocialMedia?: boolean;