Skip to content

Commit e01d04d

Browse files
Googlerchanning-google
authored andcommitted
FirebaseUI: 2.2.0 release changes.
GitOrigin-RevId=dffd85140327cc75a12cd9b1f51919ec1ea31c3e PiperOrigin-RevId: 159465688 Change-Id: I5817e040059ec4c88be439b0766b345373b1bd8c
1 parent 2d692ab commit e01d04d

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ You just need to include the following script and CSS file in the `<head>` tag
5252
of your page, below the initialization snippet from the Firebase Console:
5353

5454
```html
55-
<script src="https://cdn.firebase.com/libs/firebaseui/2.1.1/firebaseui.js"></script>
56-
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.1.1/firebaseui.css" />
55+
<script src="https://cdn.firebase.com/libs/firebaseui/2.2.0/firebaseui.js"></script>
56+
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.2.0/firebaseui.css" />
5757
```
5858

5959
#### Localized Widget
@@ -62,17 +62,17 @@ Localized versions of the widget are available through the CDN. To use a localiz
6262
localized JS library instead of the default library:
6363

6464
```html
65-
<script src="https://www.gstatic.com/firebasejs/ui/2.1.1/firebase-ui-auth__{LANGUAGE_CODE}.js"></script>
66-
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/2.1.1/firebase-ui-auth.css" />
65+
<script src="https://www.gstatic.com/firebasejs/ui/2.2.0/firebase-ui-auth__{LANGUAGE_CODE}.js"></script>
66+
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/2.2.0/firebase-ui-auth.css" />
6767
```
6868

6969
where `{LANGUAGE_CODE}` is replaced by the code of the language you want. For example, the French
7070
version of the library is available at
71-
`https://www.gstatic.com/firebasejs/ui/2.1.1/firebase-ui-auth__fr.js`. The list of available
71+
`https://www.gstatic.com/firebasejs/ui/2.2.0/firebase-ui-auth__fr.js`. The list of available
7272
languages and their respective language codes can be found at [LANGUAGES.md](LANGUAGES.md).
7373

7474
Right-to-left languages also require the right-to-left version of the stylesheet, available at
75-
`https://www.gstatic.com/firebasejs/ui/2.1.1/firebase-ui-auth-rtl.css`, instead of the default
75+
`https://www.gstatic.com/firebasejs/ui/2.2.0/firebase-ui-auth-rtl.css`, instead of the default
7676
stylesheet. The supported right-to-left languages are Arabic (ar), Farsi (fa), and Hebrew (iw).
7777

7878
Internationalized binaries are currently not available in the GitHub repository due to dependencies
@@ -171,8 +171,8 @@ for a more in-depth example, showcasing a Single Page Application mode.
171171
* TODO(DEVELOPER): Paste the initialization snippet from:
172172
* Firebase Console > Overview > Add Firebase to your web app. *
173173
***************************************************************************************** -->
174-
<script src="https://cdn.firebase.com/libs/firebaseui/2.1.1/firebaseui.js"></script>
175-
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.1.1/firebaseui.css" />
174+
<script src="https://cdn.firebase.com/libs/firebaseui/2.2.0/firebaseui.js"></script>
175+
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.2.0/firebaseui.css" />
176176
<script type="text/javascript">
177177
// FirebaseUI config.
178178
var uiConfig = {
@@ -529,8 +529,8 @@ FirebaseUI is displayed.
529529
* TODO(DEVELOPER): Paste the initialization snippet from:
530530
* Firebase Console > Overview > Add Firebase to your web app. *
531531
***************************************************************************************** -->
532-
<script src="https://cdn.firebase.com/libs/firebaseui/2.1.1/firebaseui.js"></script>
533-
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.1.1/firebaseui.css" />
532+
<script src="https://cdn.firebase.com/libs/firebaseui/2.2.0/firebaseui.js"></script>
533+
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.2.0/firebaseui.css" />
534534
<script type="text/javascript">
535535
// FirebaseUI config.
536536
var uiConfig = {

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebaseui",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Javascript library for customizable UI on top of Firebase SDK",
55
"main": [
66
"./dist/firebaseui.js",

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
feature - Added support for localization.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebaseui",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Javascript library for customizable UI on top of Firebase SDK",
55
"files": [
66
"dist/**",

0 commit comments

Comments
 (0)