forked from ChananM/AgudaJce
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include firebase Auth for admin and fix plugins build
- Loading branch information
Showing
122 changed files
with
11,341 additions
and
84 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,4 @@ | |
"android" | ||
] | ||
} | ||
} | ||
} |
Binary file added
BIN
+141 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/ionicons.eot
Binary file not shown.
50 changes: 50 additions & 0 deletions
50
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/ionicons.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
// Ionicons Icon Font CSS | ||
// -------------------------- | ||
// Ionicons CSS for Ionic's <ion-icon> element | ||
// ionicons-icons.scss has the icons and their unicode characters | ||
|
||
$ionicons-font-path: $font-path !default; | ||
|
||
@import "ionicons-icons"; | ||
@import "ionicons-variables"; | ||
|
||
|
||
@font-face { | ||
font-family: "Ionicons"; | ||
src: url("#{$ionicons-font-path}/ionicons.woff2?v=#{$ionicons-version}") format("woff2"), | ||
url("#{$ionicons-font-path}/ionicons.woff?v=#{$ionicons-version}") format("woff"), | ||
url("#{$ionicons-font-path}/ionicons.ttf?v=#{$ionicons-version}") format("truetype"); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
ion-icon { | ||
display: inline-block; | ||
|
||
font-family: "Ionicons"; | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
font-style: normal; | ||
font-variant: normal; | ||
font-weight: normal; | ||
line-height: 1; | ||
text-rendering: auto; | ||
text-transform: none; | ||
speak: none; | ||
|
||
@include rtl() { | ||
&[aria-label^="arrow"]::before, | ||
&[flip-rtl]::before { | ||
transform: scaleX(-1); | ||
} | ||
|
||
&[unflip-rtl]::before { | ||
transform: scaleX(1); | ||
} | ||
} | ||
|
||
&::before { | ||
display: inline-block; | ||
} | ||
} |
2,630 changes: 2,630 additions & 0 deletions
2,630
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/ionicons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+141 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/ionicons.ttf
Binary file not shown.
Binary file added
BIN
+405 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/noto-sans-bold.ttf
Binary file not shown.
Binary file added
BIN
+207 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/noto-sans-bold.woff
Binary file not shown.
Binary file added
BIN
+405 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/noto-sans-regular.ttf
Binary file not shown.
Binary file added
BIN
+208 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/noto-sans-regular.woff
Binary file not shown.
34 changes: 34 additions & 0 deletions
34
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/noto-sans.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Noto Sans Font | ||
// Apache License, version 2.0 | ||
// http://www.apache.org/licenses/LICENSE-2.0.html | ||
|
||
$noto-sans-font-path: $font-path !default; | ||
|
||
@font-face { | ||
font-family: "Noto Sans"; | ||
font-style: normal; | ||
font-weight: 300; | ||
src: local("Noto Sans"), local("Noto-Sans-Regular"), url("#{$noto-sans-font-path}/noto-sans-regular.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-regular.ttf") format("truetype"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Noto Sans"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local("Noto Sans"), local("Noto-Sans-Regular"), url("#{$noto-sans-font-path}/noto-sans-regular.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-regular.ttf") format("truetype"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Noto Sans"; | ||
font-style: normal; | ||
font-weight: 500; | ||
src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("#{$noto-sans-font-path}/noto-sans-bold.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-bold.ttf") format("truetype"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Noto Sans"; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("#{$noto-sans-font-path}/noto-sans-bold.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-bold.ttf") format("truetype"); | ||
} |
Binary file added
BIN
+19.6 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-bold.ttf
Binary file not shown.
Binary file added
BIN
+13 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-bold.woff
Binary file not shown.
Binary file added
BIN
+9.97 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-bold.woff2
Binary file not shown.
Binary file added
BIN
+19.4 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-light.ttf
Binary file not shown.
Binary file added
BIN
+13 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-light.woff
Binary file not shown.
Binary file added
BIN
+9.98 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-light.woff2
Binary file not shown.
Binary file added
BIN
+19.3 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-medium.ttf
Binary file not shown.
Binary file added
BIN
+12.9 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-medium.woff
Binary file not shown.
Binary file added
BIN
+9.95 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-medium.woff2
Binary file not shown.
Binary file added
BIN
+19.4 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-regular.ttf
Binary file not shown.
Binary file added
BIN
+13 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-regular.woff
Binary file not shown.
Binary file added
BIN
+9.96 KB
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto-regular.woff2
Binary file not shown.
34 changes: 34 additions & 0 deletions
34
AgudaApp/platforms/android/app/src/main/assets/www/assets/fonts/roboto.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Roboto Font | ||
// Apache License, version 2.0 | ||
// http://www.apache.org/licenses/LICENSE-2.0.html | ||
|
||
$roboto-font-path: $font-path !default; | ||
|
||
@font-face { | ||
font-family: "Roboto"; | ||
font-style: normal; | ||
font-weight: 300; | ||
src: local("Roboto Light"), local("Roboto-Light"), url("#{$roboto-font-path}/roboto-light.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-light.woff") format("woff"), url("#{$roboto-font-path}/roboto-light.ttf") format("truetype"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Roboto"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local("Roboto"), local("Roboto-Regular"), url("#{$roboto-font-path}/roboto-regular.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-regular.woff") format("woff"), url("#{$roboto-font-path}/roboto-regular.ttf") format("truetype"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Roboto"; | ||
font-style: normal; | ||
font-weight: 500; | ||
src: local("Roboto Medium"), local("Roboto-Medium"), url("#{$roboto-font-path}/roboto-medium.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-medium.woff") format("woff"), url("#{$roboto-font-path}/roboto-medium.ttf") format("truetype"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Roboto"; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local("Roboto Bold"), local("Roboto-Bold"), url("#{$roboto-font-path}/roboto-bold.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-bold.woff") format("woff"), url("#{$roboto-font-path}/roboto-bold.ttf") format("truetype"); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
AgudaApp/platforms/android/app/src/main/assets/www/build/main.css
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
AgudaApp/platforms/android/app/src/main/assets/www/build/main.js
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
AgudaApp/platforms/android/app/src/main/assets/www/build/vendor.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"project_info": { | ||
"project_number": "386963918160", | ||
"firebase_url": "https://agudajce-2018.firebaseio.com", | ||
"project_id": "agudajce-2018", | ||
"storage_bucket": "agudajce-2018.appspot.com" | ||
}, | ||
"client": [ | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:386963918160:android:86d524a3577c7a9b", | ||
"android_client_info": { | ||
"package_name": "jce.aguda.teamcal" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "386963918160-u2odsdlmcd5drgtjrgqg13v07pct3mj6.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyCJ-FfmHlIYZYk_s57YSlKglk8YBIY_vt4" | ||
} | ||
], | ||
"services": { | ||
"analytics_service": { | ||
"status": 1 | ||
}, | ||
"appinvite_service": { | ||
"status": 1, | ||
"other_platform_oauth_client": [] | ||
}, | ||
"ads_service": { | ||
"status": 2 | ||
} | ||
} | ||
} | ||
], | ||
"configuration_version": "1" | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
// Ionicons Icon Font CSS | ||
// -------------------------- | ||
// Ionicons CSS for Ionic's <ion-icon> element | ||
// ionicons-icons.scss has the icons and their unicode characters | ||
|
||
$ionicons-font-path: $font-path !default; | ||
|
||
@import "ionicons-icons"; | ||
@import "ionicons-variables"; | ||
|
||
|
||
@font-face { | ||
font-family: "Ionicons"; | ||
src: url("#{$ionicons-font-path}/ionicons.woff2?v=#{$ionicons-version}") format("woff2"), | ||
url("#{$ionicons-font-path}/ionicons.woff?v=#{$ionicons-version}") format("woff"), | ||
url("#{$ionicons-font-path}/ionicons.ttf?v=#{$ionicons-version}") format("truetype"); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
ion-icon { | ||
display: inline-block; | ||
|
||
font-family: "Ionicons"; | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
font-style: normal; | ||
font-variant: normal; | ||
font-weight: normal; | ||
line-height: 1; | ||
text-rendering: auto; | ||
text-transform: none; | ||
speak: none; | ||
|
||
@include rtl() { | ||
&[aria-label^="arrow"]::before, | ||
&[flip-rtl]::before { | ||
transform: scaleX(-1); | ||
} | ||
|
||
&[unflip-rtl]::before { | ||
transform: scaleX(1); | ||
} | ||
} | ||
|
||
&::before { | ||
display: inline-block; | ||
} | ||
} |
Oops, something went wrong.