@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.
- package/dist/ProductEmbed.js +1 -1
- package/dist/ProductEmbed.js.map +1 -1
- package/dist/ShareViaLink.js +17 -20
- package/dist/ShareViaLink.js.map +1 -1
- package/dist/cjs/ProductEmbed.js +1 -1
- package/dist/cjs/ProductEmbed.js.map +1 -1
- package/dist/cjs/ShareViaLink.js +17 -20
- package/dist/cjs/ShareViaLink.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +1 -1
- package/types/ShareViaLink.d.ts +7 -7
package/src/translations/en.json
CHANGED
|
@@ -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": "
|
|
745
|
+
"label": "Click to open popup",
|
|
746
746
|
"warning": "Please provide an \"id\" to see popup"
|
|
747
747
|
},
|
|
748
748
|
"queryParam": {
|
package/types/ShareViaLink.d.ts
CHANGED
|
@@ -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 };
|