@pronto-tools-and-more/components 10.43.0 → 10.44.0
Sign up to get free protection for your applications and to get access to all the features.
package/dist/main.js
CHANGED
@@ -622,6 +622,11 @@ var getInstagramUserUrl = (username) => {
|
|
622
622
|
return `https://www.instagram.com/${username}`;
|
623
623
|
};
|
624
624
|
|
625
|
+
// src/parts/GetLinkedinShareUrl/GetLinkedinShareUrl.ts
|
626
|
+
var getLinkedinShareUrl = ({ url }) => {
|
627
|
+
return `https://www.linkedin.com/sharing/share-offsite/?url=${url}`;
|
628
|
+
};
|
629
|
+
|
625
630
|
// src/parts/GetPinterestUserUrl/GetPinterestUserUrl.ts
|
626
631
|
var getPinterestUserUrl = (username) => {
|
627
632
|
return `https://ch.pinterest.com/${username}`;
|
@@ -1224,6 +1229,7 @@ export {
|
|
1224
1229
|
getFacebookShareUrl,
|
1225
1230
|
getFacebookUserUrl,
|
1226
1231
|
getInstagramUserUrl,
|
1232
|
+
getLinkedinShareUrl,
|
1227
1233
|
getPinterestUserUrl,
|
1228
1234
|
getTwitterShareUrl,
|
1229
1235
|
getTwitterUserUrl,
|
@@ -19,6 +19,7 @@ export * from "../GetEmailLink/GetEmailLink.ts";
|
|
19
19
|
export * from "../GetFacebookShareUrl/GetFacebookShareUrl.ts";
|
20
20
|
export * from "../GetFacebookUserUrl/GetFacebookUserUrl.ts";
|
21
21
|
export * from "../GetInstagramUserUrl/GetInstagramUserUrl.ts";
|
22
|
+
export * from "../GetLinkedinShareUrl/GetLinkedinShareUrl.ts";
|
22
23
|
export * from "../GetPinterestUserUrl/GetPinterestUserUrl.ts";
|
23
24
|
export * from "../GetTwitterShareUrl/GetTwitterShareUrl.ts";
|
24
25
|
export * from "../GetTwitterUserUrl/GetTwitterUserUrl.ts";
|