@pronto-tools-and-more/components 15.2.0 → 15.4.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,11 +1053,21 @@ 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}`;
|
1059
1064
|
};
|
1060
1065
|
|
1066
|
+
// src/parts/GetThreadsUserUrl/GetThreadsUserUrl.ts
|
1067
|
+
var getThreadsUserUrl = (username) => {
|
1068
|
+
return `https://www.threads.com/${username}`;
|
1069
|
+
};
|
1070
|
+
|
1061
1071
|
// src/parts/GetTwitterShareUrl/GetTwitterShareUrl.ts
|
1062
1072
|
var getTwitterShareUrl = ({ url }) => {
|
1063
1073
|
return `https://twitter.com/intent/tweet?text=${url}`;
|
@@ -2263,8 +2273,10 @@ export {
|
|
2263
2273
|
getFacebookShareUrl,
|
2264
2274
|
getFacebookUserUrl,
|
2265
2275
|
getInstagramUserUrl,
|
2276
|
+
getLinkedInUserUrl,
|
2266
2277
|
getLinkedinShareUrl,
|
2267
2278
|
getPinterestUserUrl,
|
2279
|
+
getThreadsUserUrl,
|
2268
2280
|
getTwitterShareUrl,
|
2269
2281
|
getTwitterUserUrl,
|
2270
2282
|
getYoutubeUserUrl,
|
@@ -29,7 +29,9 @@ 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";
|
34
|
+
export * from "../GetThreadsUserUrl/GetThreadsUserUrl.ts";
|
33
35
|
export * from "../GetTwitterShareUrl/GetTwitterShareUrl.ts";
|
34
36
|
export * from "../GetTwitterUserUrl/GetTwitterUserUrl.ts";
|
35
37
|
export * from "../GetYoutubeUserUrl/GetYoutubeUserUrl.ts";
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const getLinkedInUserUrl: (username: string) => string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const getThreadsUserUrl: (username: string) => string;
|