@oxyhq/services 5.1.32 → 5.1.33
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/UI_COMPONENTS.md +23 -1
- package/lib/commonjs/index.js +5 -40
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/index.js +8 -12
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/index.d.ts +2 -2
- package/lib/typescript/index.d.ts.map +1 -1
- package/package.json +19 -1
- package/src/index.ts +18 -32
package/UI_COMPONENTS.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
This document provides details about the UI components available in the `@oxyhq/services` package.
|
|
4
4
|
|
|
5
|
+
## Import Guide
|
|
6
|
+
|
|
7
|
+
The package provides different entry points for different use cases:
|
|
8
|
+
|
|
9
|
+
### For Node.js/Express (Server-side only)
|
|
10
|
+
```javascript
|
|
11
|
+
// Only core services and models - no UI components
|
|
12
|
+
import { OxyServices } from '@oxyhq/services';
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### For React/React Native apps (UI components only)
|
|
16
|
+
```javascript
|
|
17
|
+
// UI components and context providers
|
|
18
|
+
import { OxyProvider, OxySignInButton, OxyLogo, Avatar } from '@oxyhq/services/ui';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### For full package (Core + UI)
|
|
22
|
+
```javascript
|
|
23
|
+
// Everything - core services, models, and UI components
|
|
24
|
+
import { OxyServices, OxyProvider, OxySignInButton } from '@oxyhq/services/full';
|
|
25
|
+
```
|
|
26
|
+
|
|
5
27
|
## Table of Contents
|
|
6
28
|
|
|
7
29
|
- [OxyProvider](#oxyprovider)
|
|
@@ -20,7 +42,7 @@ This document provides details about the UI components available in the `@oxyhq/
|
|
|
20
42
|
The main provider component that manages authentication state and exposes the bottom sheet for sign-in, sign-up, and account management.
|
|
21
43
|
|
|
22
44
|
```tsx
|
|
23
|
-
import { OxyProvider } from '@oxyhq/services';
|
|
45
|
+
import { OxyProvider } from '@oxyhq/services/ui';
|
|
24
46
|
|
|
25
47
|
// In your app
|
|
26
48
|
<OxyProvider
|
package/lib/commonjs/index.js
CHANGED
|
@@ -6,21 +6,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
var _exportNames = {
|
|
7
7
|
OxyServices: true,
|
|
8
8
|
OxyProvider: true,
|
|
9
|
-
OxySignInButton: true,
|
|
10
|
-
OxyLogo: true,
|
|
11
|
-
Avatar: true,
|
|
12
|
-
FollowButton: true,
|
|
13
9
|
OxyContextProvider: true,
|
|
14
10
|
useOxy: true,
|
|
15
|
-
FontLoader: true,
|
|
16
|
-
setupFonts: true,
|
|
17
|
-
fontFamilies: true,
|
|
18
|
-
fontStyles: true,
|
|
19
11
|
SignInScreen: true,
|
|
20
12
|
SignUpScreen: true,
|
|
21
13
|
AccountCenterScreen: true,
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
OxySignInButton: true,
|
|
15
|
+
OxyLogo: true,
|
|
16
|
+
Avatar: true,
|
|
17
|
+
FollowButton: true,
|
|
18
|
+
FontLoader: true,
|
|
24
19
|
OxyContextState: true,
|
|
25
20
|
OxyContextProviderProps: true,
|
|
26
21
|
Models: true
|
|
@@ -31,18 +26,6 @@ Object.defineProperty(exports, "AccountCenterScreen", {
|
|
|
31
26
|
return _ui.AccountCenterScreen;
|
|
32
27
|
}
|
|
33
28
|
});
|
|
34
|
-
Object.defineProperty(exports, "AccountOverviewScreen", {
|
|
35
|
-
enumerable: true,
|
|
36
|
-
get: function () {
|
|
37
|
-
return _ui.AccountOverviewScreen;
|
|
38
|
-
}
|
|
39
|
-
});
|
|
40
|
-
Object.defineProperty(exports, "AccountSettingsScreen", {
|
|
41
|
-
enumerable: true,
|
|
42
|
-
get: function () {
|
|
43
|
-
return _ui.AccountSettingsScreen;
|
|
44
|
-
}
|
|
45
|
-
});
|
|
46
29
|
Object.defineProperty(exports, "Avatar", {
|
|
47
30
|
enumerable: true,
|
|
48
31
|
get: function () {
|
|
@@ -117,24 +100,6 @@ Object.defineProperty(exports, "SignUpScreen", {
|
|
|
117
100
|
}
|
|
118
101
|
});
|
|
119
102
|
exports.default = void 0;
|
|
120
|
-
Object.defineProperty(exports, "fontFamilies", {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
get: function () {
|
|
123
|
-
return _ui.fontFamilies;
|
|
124
|
-
}
|
|
125
|
-
});
|
|
126
|
-
Object.defineProperty(exports, "fontStyles", {
|
|
127
|
-
enumerable: true,
|
|
128
|
-
get: function () {
|
|
129
|
-
return _ui.fontStyles;
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
Object.defineProperty(exports, "setupFonts", {
|
|
133
|
-
enumerable: true,
|
|
134
|
-
get: function () {
|
|
135
|
-
return _ui.setupFonts;
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
103
|
Object.defineProperty(exports, "useOxy", {
|
|
139
104
|
enumerable: true,
|
|
140
105
|
get: function () {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_core","_interopRequireWildcard","require","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_ui","_OxyContext","Models","_types","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","set","getOwnPropertyDescriptor","_default","OxyCore"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"
|
|
1
|
+
{"version":3,"names":["_core","_interopRequireWildcard","require","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_ui","_OxyContext","Models","_types","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","set","getOwnPropertyDescriptor","_default","OxyCore"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AA8BAC,MAAA,CAAAC,IAAA,CAAAJ,KAAA,EAAAK,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAN,KAAA,CAAAM,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAd,KAAA,CAAAM,GAAA;IAAA;EAAA;AAAA;AA1BA,IAAAS,GAAA,GAAAb,OAAA;AAoBA,IAAAc,WAAA,GAAAd,OAAA;AACA,IAAAe,MAAA,GAAAhB,uBAAA,CAAAC,OAAA;AAA8CS,OAAA,CAAAM,MAAA,GAAAA,MAAA;AAS9Cd,MAAA,CAAAC,IAAA,CAAAa,MAAA,EAAAZ,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAW,MAAA,CAAAX,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAG,MAAA,CAAAX,GAAA;IAAA;EAAA;AAAA;AAwBA,IAAAY,MAAA,GAAAhB,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAc,MAAA,EAAAb,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAY,MAAA,CAAAZ,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAI,MAAA,CAAAZ,GAAA;IAAA;EAAA;AAAA;AAAsC,SAAAL,wBAAAkB,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAApB,uBAAA,YAAAA,CAAAkB,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAX,GAAA,CAAAK,CAAA,GAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAZ,cAAA,CAAAC,IAAA,CAAAU,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAtB,MAAA,CAAAS,cAAA,KAAAT,MAAA,CAAA6B,wBAAA,CAAAb,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAZ,GAAA,IAAAY,CAAA,CAAAK,GAAA,IAAAN,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AA/DtC;AACA;AACA;AAEA;AAIA;AAoBA;AAIA;AAAA,IAAAa,QAAA,GAAAtB,OAAA,CAAAkB,OAAA,GACeK,aAAO,EAAE;AAIxB;AACoB;AACkB;AAEtC;AAoBA","ignoreList":[]}
|
package/lib/module/index.js
CHANGED
|
@@ -10,14 +10,12 @@ import { OxyServices } from './core';
|
|
|
10
10
|
|
|
11
11
|
// ------------- UI Imports -------------
|
|
12
12
|
import {
|
|
13
|
-
// Provider and Core Components
|
|
14
|
-
OxyProvider, OxySignInButton, OxyLogo, Avatar, FollowButton,
|
|
15
13
|
// Context and Hooks
|
|
16
|
-
OxyContextProvider, useOxy,
|
|
17
|
-
// Font utilities
|
|
18
|
-
FontLoader, setupFonts, fontFamilies, fontStyles,
|
|
14
|
+
OxyProvider, OxyContextProvider, useOxy,
|
|
19
15
|
// Screens
|
|
20
|
-
SignInScreen, SignUpScreen, AccountCenterScreen,
|
|
16
|
+
SignInScreen, SignUpScreen, AccountCenterScreen,
|
|
17
|
+
// Components
|
|
18
|
+
OxySignInButton, OxyLogo, Avatar, FollowButton, FontLoader } from './ui';
|
|
21
19
|
|
|
22
20
|
// ------------- Type Imports -------------
|
|
23
21
|
import { OxyContextState, OxyContextProviderProps } from './ui/context/OxyContext';
|
|
@@ -34,14 +32,12 @@ export * from './models/interfaces'; // Export all models directly
|
|
|
34
32
|
|
|
35
33
|
// ------------- UI Exports -------------
|
|
36
34
|
export {
|
|
37
|
-
// Provider and Core Components
|
|
38
|
-
OxyProvider, OxySignInButton, OxyLogo, Avatar, FollowButton,
|
|
39
35
|
// Context and Hooks
|
|
40
|
-
OxyContextProvider, useOxy,
|
|
41
|
-
// Font utilities
|
|
42
|
-
FontLoader, setupFonts, fontFamilies, fontStyles,
|
|
36
|
+
OxyProvider, OxyContextProvider, useOxy,
|
|
43
37
|
// Screens
|
|
44
|
-
SignInScreen, SignUpScreen, AccountCenterScreen,
|
|
38
|
+
SignInScreen, SignUpScreen, AccountCenterScreen,
|
|
39
|
+
// Components
|
|
40
|
+
OxySignInButton, OxyLogo, Avatar, FollowButton, FontLoader };
|
|
45
41
|
|
|
46
42
|
// ------------- Type Exports -------------
|
|
47
43
|
export { OxyContextState, OxyContextProviderProps };
|
package/lib/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["OxyCore","OxyServices","OxyProvider","
|
|
1
|
+
{"version":3,"names":["OxyCore","OxyServices","OxyProvider","OxyContextProvider","useOxy","SignInScreen","SignUpScreen","AccountCenterScreen","OxySignInButton","OxyLogo","Avatar","FollowButton","FontLoader","OxyContextState","OxyContextProviderProps","Models"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA;AACA;AACA;;AAEA;AACA,OAAOA,OAAO,MAAM,QAAQ;AAC5B,SAASC,WAAW,QAAQ,QAAQ;;AAEpC;AACA;AACE;AACAC,WAAW,EACXC,kBAAkB,EAClBC,MAAM;AAEN;AACAC,YAAY,EACZC,YAAY,EACZC,mBAAmB;AAEnB;AACAC,eAAe,EACfC,OAAO,EACPC,MAAM,EACNC,YAAY,EACZC,UAAU,QACL,MAAM;;AAEb;AACA,SAASC,eAAe,EAAEC,uBAAuB,QAAQ,yBAAyB;AAClF,OAAO,KAAKC,MAAM,MAAM,qBAAqB;;AAE7C;AACA,eAAef,OAAO,CAAC,CAAC;AACxB,SAASC,WAAW;AACpB,cAAc,QAAQ;;AAEtB;AACA,SAASc,MAAM,GAAG,CAAE;AACpB,cAAc,qBAAqB,CAAC,CAAE;;AAEtC;AACA;AACE;AACAb,WAAW,EACXC,kBAAkB,EAClBC,MAAM;AAEN;AACAC,YAAY,EACZC,YAAY,EACZC,mBAAmB;AAEnB;AACAC,eAAe,EACfC,OAAO,EACPC,MAAM,EACNC,YAAY,EACZC,UAAU;;AAGZ;AACA,SAASC,eAAe,EAAEC,uBAAuB;AACjD,cAAc,uBAAuB","ignoreList":[]}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import OxyCore from './core';
|
|
5
5
|
import { OxyServices } from './core';
|
|
6
|
-
import { OxyProvider,
|
|
6
|
+
import { OxyProvider, OxyContextProvider, useOxy, SignInScreen, SignUpScreen, AccountCenterScreen, OxySignInButton, OxyLogo, Avatar, FollowButton, FontLoader } from './ui';
|
|
7
7
|
import { OxyContextState, OxyContextProviderProps } from './ui/context/OxyContext';
|
|
8
8
|
import * as Models from './models/interfaces';
|
|
9
9
|
export default OxyCore;
|
|
@@ -11,7 +11,7 @@ export { OxyServices };
|
|
|
11
11
|
export * from './core';
|
|
12
12
|
export { Models };
|
|
13
13
|
export * from './models/interfaces';
|
|
14
|
-
export { OxyProvider,
|
|
14
|
+
export { OxyProvider, OxyContextProvider, useOxy, SignInScreen, SignUpScreen, AccountCenterScreen, OxySignInButton, OxyLogo, Avatar, FollowButton, FontLoader };
|
|
15
15
|
export { OxyContextState, OxyContextProviderProps };
|
|
16
16
|
export * from './ui/navigation/types';
|
|
17
17
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,OAAO,MAAM,QAAQ,CAAC;AAC7B,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAGrC,OAAO,EAEL,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,OAAO,MAAM,QAAQ,CAAC;AAC7B,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAGrC,OAAO,EAEL,WAAW,EACX,kBAAkB,EAClB,MAAM,EAGN,YAAY,EACZ,YAAY,EACZ,mBAAmB,EAGnB,eAAe,EACf,OAAO,EACP,MAAM,EACN,YAAY,EACZ,UAAU,EACX,MAAM,MAAM,CAAC;AAGd,OAAO,EAAE,eAAe,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AACnF,OAAO,KAAK,MAAM,MAAM,qBAAqB,CAAC;AAG9C,eAAe,OAAO,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,CAAC;AACvB,cAAc,QAAQ,CAAC;AAGvB,OAAO,EAAE,MAAM,EAAE,CAAC;AAClB,cAAc,qBAAqB,CAAC;AAGpC,OAAO,EAEL,WAAW,EACX,kBAAkB,EAClB,MAAM,EAGN,YAAY,EACZ,YAAY,EACZ,mBAAmB,EAGnB,eAAe,EACf,OAAO,EACP,MAAM,EACN,YAAY,EACZ,UAAU,EACX,CAAC;AAGF,OAAO,EAAE,eAAe,EAAE,uBAAuB,EAAE,CAAC;AACpD,cAAc,uBAAuB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxyhq/services",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.33",
|
|
4
4
|
"description": "Reusable OxyHQ module to handle authentication, user management, karma system and more 🚀",
|
|
5
5
|
"main": "lib/commonjs/node/index.js",
|
|
6
6
|
"module": "lib/module/node/index.js",
|
|
7
7
|
"types": "lib/typescript/node/index.d.ts",
|
|
8
8
|
"react-native": "src/index.ts",
|
|
9
9
|
"source": "src/index.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./lib/module/node/index.js",
|
|
13
|
+
"require": "./lib/commonjs/node/index.js",
|
|
14
|
+
"types": "./lib/typescript/node/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./ui": {
|
|
17
|
+
"import": "./lib/module/ui/index.js",
|
|
18
|
+
"require": "./lib/commonjs/ui/index.js",
|
|
19
|
+
"types": "./lib/typescript/ui/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./full": {
|
|
22
|
+
"import": "./lib/module/index.js",
|
|
23
|
+
"require": "./lib/commonjs/index.js",
|
|
24
|
+
"types": "./lib/typescript/index.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
10
28
|
"files": [
|
|
11
29
|
"src",
|
|
12
30
|
"lib",
|
package/src/index.ts
CHANGED
|
@@ -8,29 +8,22 @@ import { OxyServices } from './core';
|
|
|
8
8
|
|
|
9
9
|
// ------------- UI Imports -------------
|
|
10
10
|
import {
|
|
11
|
-
// Provider and Core Components
|
|
12
|
-
OxyProvider,
|
|
13
|
-
OxySignInButton,
|
|
14
|
-
OxyLogo,
|
|
15
|
-
Avatar,
|
|
16
|
-
FollowButton,
|
|
17
|
-
|
|
18
11
|
// Context and Hooks
|
|
12
|
+
OxyProvider,
|
|
19
13
|
OxyContextProvider,
|
|
20
14
|
useOxy,
|
|
21
15
|
|
|
22
|
-
// Font utilities
|
|
23
|
-
FontLoader,
|
|
24
|
-
setupFonts,
|
|
25
|
-
fontFamilies,
|
|
26
|
-
fontStyles,
|
|
27
|
-
|
|
28
16
|
// Screens
|
|
29
|
-
SignInScreen,
|
|
30
|
-
SignUpScreen,
|
|
17
|
+
SignInScreen,
|
|
18
|
+
SignUpScreen,
|
|
31
19
|
AccountCenterScreen,
|
|
32
|
-
|
|
33
|
-
|
|
20
|
+
|
|
21
|
+
// Components
|
|
22
|
+
OxySignInButton,
|
|
23
|
+
OxyLogo,
|
|
24
|
+
Avatar,
|
|
25
|
+
FollowButton,
|
|
26
|
+
FontLoader
|
|
34
27
|
} from './ui';
|
|
35
28
|
|
|
36
29
|
// ------------- Type Imports -------------
|
|
@@ -48,29 +41,22 @@ export * from './models/interfaces'; // Export all models directly
|
|
|
48
41
|
|
|
49
42
|
// ------------- UI Exports -------------
|
|
50
43
|
export {
|
|
51
|
-
// Provider and Core Components
|
|
52
|
-
OxyProvider,
|
|
53
|
-
OxySignInButton,
|
|
54
|
-
OxyLogo,
|
|
55
|
-
Avatar,
|
|
56
|
-
FollowButton,
|
|
57
|
-
|
|
58
44
|
// Context and Hooks
|
|
45
|
+
OxyProvider,
|
|
59
46
|
OxyContextProvider,
|
|
60
47
|
useOxy,
|
|
61
48
|
|
|
62
|
-
// Font utilities
|
|
63
|
-
FontLoader,
|
|
64
|
-
setupFonts,
|
|
65
|
-
fontFamilies,
|
|
66
|
-
fontStyles,
|
|
67
|
-
|
|
68
49
|
// Screens
|
|
69
50
|
SignInScreen,
|
|
70
51
|
SignUpScreen,
|
|
71
52
|
AccountCenterScreen,
|
|
72
|
-
|
|
73
|
-
|
|
53
|
+
|
|
54
|
+
// Components
|
|
55
|
+
OxySignInButton,
|
|
56
|
+
OxyLogo,
|
|
57
|
+
Avatar,
|
|
58
|
+
FollowButton,
|
|
59
|
+
FontLoader
|
|
74
60
|
};
|
|
75
61
|
|
|
76
62
|
// ------------- Type Exports -------------
|