@pronto-tools-and-more/components 15.2.0 → 15.3.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/main.js
CHANGED
@@ -1053,6 +1053,11 @@ var getLinkedinShareUrl = ({ url }) => {
|
|
1053
1053
|
return `https://www.linkedin.com/sharing/share-offsite/?url=${url}`;
|
1054
1054
|
};
|
1055
1055
|
|
1056
|
+
// src/parts/GetLinkedInUserUrl/GetLinkedInUserUrl.ts
|
1057
|
+
var getLinkedInUserUrl = (username) => {
|
1058
|
+
return `https://www.linkedin.com/company/${username}`;
|
1059
|
+
};
|
1060
|
+
|
1056
1061
|
// src/parts/GetPinterestUserUrl/GetPinterestUserUrl.ts
|
1057
1062
|
var getPinterestUserUrl = (username) => {
|
1058
1063
|
return `https://ch.pinterest.com/${username}`;
|
@@ -2263,6 +2268,7 @@ export {
|
|
2263
2268
|
getFacebookShareUrl,
|
2264
2269
|
getFacebookUserUrl,
|
2265
2270
|
getInstagramUserUrl,
|
2271
|
+
getLinkedInUserUrl,
|
2266
2272
|
getLinkedinShareUrl,
|
2267
2273
|
getPinterestUserUrl,
|
2268
2274
|
getTwitterShareUrl,
|
@@ -29,6 +29,7 @@ export * from "../GetFacebookShareUrl/GetFacebookShareUrl.ts";
|
|
29
29
|
export * from "../GetFacebookUserUrl/GetFacebookUserUrl.ts";
|
30
30
|
export * from "../GetInstagramUserUrl/GetInstagramUserUrl.ts";
|
31
31
|
export * from "../GetLinkedinShareUrl/GetLinkedinShareUrl.ts";
|
32
|
+
export * from "../GetLinkedInUserUrl/GetLinkedInUserUrl.ts";
|
32
33
|
export * from "../GetPinterestUserUrl/GetPinterestUserUrl.ts";
|
33
34
|
export * from "../GetTwitterShareUrl/GetTwitterShareUrl.ts";
|
34
35
|
export * from "../GetTwitterUserUrl/GetTwitterUserUrl.ts";
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const getLinkedInUserUrl: (username: string) => string;
|