keycloakify 10.0.0-rc.134 → 10.0.0-rc.135
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/package.json
CHANGED
@@ -122,73 +122,85 @@ export const WithSocialProviders: Story = {
|
|
122
122
|
loginUrl: "google",
|
123
123
|
alias: "google",
|
124
124
|
providerId: "google",
|
125
|
-
displayName: "Google"
|
125
|
+
displayName: "Google",
|
126
|
+
iconClasses: "fa fa-google"
|
126
127
|
},
|
127
128
|
{
|
128
129
|
loginUrl: "microsoft",
|
129
130
|
alias: "microsoft",
|
130
131
|
providerId: "microsoft",
|
131
|
-
displayName: "Microsoft"
|
132
|
+
displayName: "Microsoft",
|
133
|
+
iconClasses: "fa fa-windows"
|
132
134
|
},
|
133
135
|
{
|
134
136
|
loginUrl: "facebook",
|
135
137
|
alias: "facebook",
|
136
138
|
providerId: "facebook",
|
137
|
-
displayName: "Facebook"
|
139
|
+
displayName: "Facebook",
|
140
|
+
iconClasses: "fa fa-facebook"
|
138
141
|
},
|
139
142
|
{
|
140
143
|
loginUrl: "instagram",
|
141
144
|
alias: "instagram",
|
142
145
|
providerId: "instagram",
|
143
|
-
displayName: "Instagram"
|
146
|
+
displayName: "Instagram",
|
147
|
+
iconClasses: "fa fa-instagram"
|
144
148
|
},
|
145
149
|
{
|
146
150
|
loginUrl: "twitter",
|
147
151
|
alias: "twitter",
|
148
152
|
providerId: "twitter",
|
149
|
-
displayName: "Twitter"
|
153
|
+
displayName: "Twitter",
|
154
|
+
iconClasses: "fa fa-twitter"
|
150
155
|
},
|
151
156
|
{
|
152
157
|
loginUrl: "linkedin",
|
153
158
|
alias: "linkedin",
|
154
159
|
providerId: "linkedin",
|
155
|
-
displayName: "LinkedIn"
|
160
|
+
displayName: "LinkedIn",
|
161
|
+
iconClasses: "fa fa-linkedin"
|
156
162
|
},
|
157
163
|
{
|
158
164
|
loginUrl: "stackoverflow",
|
159
165
|
alias: "stackoverflow",
|
160
166
|
providerId: "stackoverflow",
|
161
|
-
displayName: "Stackoverflow"
|
167
|
+
displayName: "Stackoverflow",
|
168
|
+
iconClasses: "fa fa-stack-overflow"
|
162
169
|
},
|
163
170
|
{
|
164
171
|
loginUrl: "github",
|
165
172
|
alias: "github",
|
166
173
|
providerId: "github",
|
167
|
-
displayName: "Github"
|
174
|
+
displayName: "Github",
|
175
|
+
iconClasses: "fa fa-github"
|
168
176
|
},
|
169
177
|
{
|
170
178
|
loginUrl: "gitlab",
|
171
179
|
alias: "gitlab",
|
172
180
|
providerId: "gitlab",
|
173
|
-
displayName: "Gitlab"
|
181
|
+
displayName: "Gitlab",
|
182
|
+
iconClasses: "fa fa-gitlab"
|
174
183
|
},
|
175
184
|
{
|
176
185
|
loginUrl: "bitbucket",
|
177
186
|
alias: "bitbucket",
|
178
187
|
providerId: "bitbucket",
|
179
|
-
displayName: "Bitbucket"
|
188
|
+
displayName: "Bitbucket",
|
189
|
+
iconClasses: "fa fa-bitbucket"
|
180
190
|
},
|
181
191
|
{
|
182
192
|
loginUrl: "paypal",
|
183
193
|
alias: "paypal",
|
184
194
|
providerId: "paypal",
|
185
|
-
displayName: "PayPal"
|
195
|
+
displayName: "PayPal",
|
196
|
+
iconClasses: "fa fa-paypal"
|
186
197
|
},
|
187
198
|
{
|
188
199
|
loginUrl: "openshift",
|
189
200
|
alias: "openshift",
|
190
201
|
providerId: "openshift",
|
191
|
-
displayName: "OpenShift"
|
202
|
+
displayName: "OpenShift",
|
203
|
+
iconClasses: "fa fa-cloud"
|
192
204
|
}
|
193
205
|
]
|
194
206
|
}
|