@bigbinary/neeto-molecules 3.14.5 → 3.15.0

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.
@@ -742,7 +742,7 @@
742
742
  "title": "Element popup",
743
743
  "description": "Make sure to set the \"id\" attribute of the element in the host app with the following \"Element Id\" value",
744
744
  "elementId": "Element Id",
745
- "label": "I am a button that exists in your website",
745
+ "label": "Click to open popup",
746
746
  "warning": "Please provide an \"id\" to see popup"
747
747
  },
748
748
  "queryParam": {
@@ -148,11 +148,6 @@ type MoreOptions = {
148
148
  */
149
149
  declare const ShareViaLink: React.FC<{
150
150
  isLoading?: boolean;
151
- editUrlProps?: {
152
- prefix?: string;
153
- editablePath?: string;
154
- maxLength?: number;
155
- };
156
151
  enabledOptions?: {
157
152
  regenerate?: boolean;
158
153
  edit?: boolean;
@@ -164,13 +159,18 @@ declare const ShareViaLink: React.FC<{
164
159
  entityName: string;
165
160
  handleEdit?: Function;
166
161
  handleRegenerate?: Function;
167
- previewUrl?: string;
168
162
  socialMediaPostTitle: string;
169
- url: string;
170
163
  moreOptions?: MoreOptions[];
171
164
  isOtherShareOptionsEnabled?: boolean;
172
165
  disableShareSocialMedia?: boolean;
173
166
  disableQRDownload?: boolean;
167
+ urls: {
168
+ prefix?: string;
169
+ editablePath?: string;
170
+ maxLength?: number;
171
+ url: string;
172
+ previewUrl?: string;
173
+ }[];
174
174
  }>;
175
175
 
176
176
  export { ShareViaLink as default };