@posiwise/user-module 0.0.153 → 0.0.154
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.
|
@@ -3001,13 +3001,48 @@ class EditSocialLinksComponent extends AppBaseComponent {
|
|
|
3001
3001
|
this.saveEvent = new EventEmitter();
|
|
3002
3002
|
this.buttonBusy = false;
|
|
3003
3003
|
this.socialNetworks = [
|
|
3004
|
-
{
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
{
|
|
3004
|
+
{
|
|
3005
|
+
key: 'linkedin',
|
|
3006
|
+
labelKey: 'User.Profile.SocialLinks.Label.LinkedIn',
|
|
3007
|
+
icon: 'linkedin',
|
|
3008
|
+
placeholder: 'https://linkedin.com/in/nickname'
|
|
3009
|
+
},
|
|
3010
|
+
{
|
|
3011
|
+
key: 'twitter',
|
|
3012
|
+
labelKey: 'User.Profile.SocialLinks.Label.Twitter',
|
|
3013
|
+
icon: 'twitter',
|
|
3014
|
+
placeholder: 'https://twitter.com/nickname'
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
key: 'facebook',
|
|
3018
|
+
labelKey: 'User.Profile.SocialLinks.Label.Facebook',
|
|
3019
|
+
icon: 'facebook',
|
|
3020
|
+
placeholder: 'https://www.facebook.com/nickname'
|
|
3021
|
+
},
|
|
3022
|
+
{
|
|
3023
|
+
key: 'youtube',
|
|
3024
|
+
labelKey: 'User.Profile.SocialLinks.Label.YouTube',
|
|
3025
|
+
icon: 'youtube',
|
|
3026
|
+
placeholder: 'https://www.youtube.com/nickname'
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
key: 'instagram',
|
|
3030
|
+
labelKey: 'User.Profile.SocialLinks.Label.Instagram',
|
|
3031
|
+
icon: 'instagram',
|
|
3032
|
+
placeholder: 'https://www.instagram.com/nickname'
|
|
3033
|
+
},
|
|
3034
|
+
{
|
|
3035
|
+
key: 'github',
|
|
3036
|
+
labelKey: 'User.Profile.SocialLinks.Label.Github',
|
|
3037
|
+
icon: 'github',
|
|
3038
|
+
placeholder: 'https://github.com/nickname'
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
key: 'stackoverflow',
|
|
3042
|
+
labelKey: 'User.Profile.SocialLinks.Label.Stackoverflow',
|
|
3043
|
+
icon: 'stackoverflow',
|
|
3044
|
+
placeholder: 'http://stackoverflow.com/users/nickname'
|
|
3045
|
+
}
|
|
3011
3046
|
];
|
|
3012
3047
|
this.form = this.fb.group({
|
|
3013
3048
|
user_id: 0,
|