oiu-core 0.0.2 → 0.0.4
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/dist/auth/AuthenticationProvider.d.ts +14 -0
- package/dist/auth/AuthenticationProvider.d.ts.map +1 -0
- package/dist/auth/AuthorizationProvider.d.ts +20 -0
- package/dist/auth/AuthorizationProvider.d.ts.map +1 -0
- package/dist/auth/Context.d.ts +5 -0
- package/dist/auth/Context.d.ts.map +1 -0
- package/dist/auth/OAuthService/index.d.ts +57 -0
- package/dist/auth/OAuthService/index.d.ts.map +1 -0
- package/dist/auth/OAuthService/utils.d.ts +15 -0
- package/dist/auth/OAuthService/utils.d.ts.map +1 -0
- package/dist/auth/_type.d.ts +22 -0
- package/dist/auth/_type.d.ts.map +1 -1
- package/dist/auth/index.d.ts +17 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/utils.d.ts +42 -0
- package/dist/auth/utils.d.ts.map +1 -0
- package/dist/components/ConfigLoader/index.d.ts +22 -0
- package/dist/components/ConfigLoader/index.d.ts.map +1 -0
- package/dist/components/Wait/_type.d.ts +31 -0
- package/dist/components/Wait/_type.d.ts.map +1 -0
- package/dist/components/Wait/index.d.ts +9 -0
- package/dist/components/Wait/index.d.ts.map +1 -0
- package/dist/components/index.d.ts +4 -4
- package/dist/components/index.d.ts.map +1 -1
- package/dist/hoc/index.d.ts +2 -0
- package/dist/hoc/index.d.ts.map +1 -0
- package/dist/hoc/wl.d.ts +31 -0
- package/dist/hoc/wl.d.ts.map +1 -0
- package/dist/index-BzyehgBi.js +2659 -0
- package/dist/language/index.d.ts +0 -3
- package/dist/language/index.d.ts.map +1 -1
- package/dist/main-CKwVM_d-.js +6700 -0
- package/dist/main.d.ts +17 -5
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +11 -5956
- package/dist/redux/slices/appSlice.d.ts +4 -0
- package/dist/redux/slices/appSlice.d.ts.map +1 -1
- package/dist/utils/config.d.ts +34 -0
- package/dist/utils/config.d.ts.map +1 -0
- package/dist/utils/index.d.ts +3 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/components/Await/_type.d.ts +0 -29
- package/dist/components/Await/_type.d.ts.map +0 -1
- package/dist/components/Await/index.d.ts +0 -9
- package/dist/components/Await/index.d.ts.map +0 -1
- package/dist/components/Test1/index.d.ts +0 -2
- package/dist/components/Test1/index.d.ts.map +0 -1
- package/dist/components/Test2/index.d.ts +0 -2
- package/dist/components/Test2/index.d.ts.map +0 -1
- /package/dist/assets/{oiu.css → oiu-core.css} +0 -0
package/dist/main.d.ts
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
import { ComponentType } from 'react';
|
|
2
2
|
import { DevToolsEnhancerOptions } from '@reduxjs/toolkit';
|
|
3
|
+
import * as auth from './auth';
|
|
3
4
|
import * as utils from './utils';
|
|
4
5
|
import * as redux from './redux';
|
|
5
6
|
import * as language from './language';
|
|
6
7
|
import * as components from './components';
|
|
8
|
+
import * as hoc from './hoc';
|
|
7
9
|
import * as theme from './theme';
|
|
8
10
|
export type RTKDevSetup = utils.SetupOptions<DevToolsEnhancerOptions>;
|
|
9
|
-
export type InitOIUOptions<Token> = {
|
|
11
|
+
export type InitOIUOptions<Token, TSpinProps, TSkeletonProps> = {
|
|
12
|
+
/** Translation configuration */
|
|
10
13
|
translation: {
|
|
14
|
+
/** Default language information, this will be used if the browser language is set to an unknown language */
|
|
11
15
|
defaultLang: language.LangInfo;
|
|
16
|
+
/** Record of language code and its information. Example: { en: { code: 'en', locale: 'en-US' }, es: { code: 'es', locale: 'es-ES' } } */
|
|
12
17
|
langs: Record<string, language.LangInfo>;
|
|
13
18
|
};
|
|
19
|
+
/** Wait component configuration */
|
|
14
20
|
wait: {
|
|
15
|
-
|
|
16
|
-
|
|
21
|
+
/** Spin component to be used in the app */
|
|
22
|
+
spin: ComponentType<components.SpinProps<TSpinProps>>;
|
|
23
|
+
/** Default extra properties set to the spin component, this will ignored if there is spin extra props passed */
|
|
24
|
+
spinProps?: TSpinProps;
|
|
25
|
+
/** Skeleton component to be used in the app */
|
|
26
|
+
skeleton?: ComponentType<components.SpinProps<TSkeletonProps>>;
|
|
27
|
+
/** Default extra properties set to the skeleton component, this will ignored if there is skeleton extra props passed */
|
|
28
|
+
skeletonProps?: TSkeletonProps;
|
|
17
29
|
};
|
|
18
30
|
themeProvider?: theme.ProviderComponentType<Token>;
|
|
19
31
|
};
|
|
@@ -23,7 +35,7 @@ export type InitOIUOptions<Token> = {
|
|
|
23
35
|
* @param lang Record of language code and its information. Example: { en: { code: 'en', locale: 'en-US' }, es: { code: 'es', locale: 'es-ES' } }
|
|
24
36
|
* @param themeProvider
|
|
25
37
|
*/
|
|
26
|
-
export declare function initOIU<Token>(options: InitOIUOptions<Token>): void;
|
|
38
|
+
export declare function initOIU<Token, TSpinProps, TSkeletonProps>(options: InitOIUOptions<Token, TSpinProps, TSkeletonProps>): void;
|
|
27
39
|
/**
|
|
28
40
|
* Hook to initialize OIU in the component
|
|
29
41
|
* @returns
|
|
@@ -38,5 +50,5 @@ export declare function useInitOIU(defaultLocale: string, devOptionsSetup?: RTKD
|
|
|
38
50
|
}>, import("redux").StoreEnhancer]>>;
|
|
39
51
|
langInfo: language.LangInfo;
|
|
40
52
|
};
|
|
41
|
-
export { components, language, redux, theme, utils };
|
|
53
|
+
export { auth, components, language, redux, theme, utils, hoc };
|
|
42
54
|
//# sourceMappingURL=main.d.ts.map
|
package/dist/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../lib/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAW,MAAM,OAAO,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AAQjC,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,YAAY,CAAC,uBAAuB,CAAC,CAAC;AAEtE,MAAM,MAAM,cAAc,CAAC,KAAK,IAAI;IAChC,WAAW,EAAE;QACT,WAAW,EAAE,QAAQ,CAAC,QAAQ,CAAC;QAC/B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;KAC5C,CAAC;IACF,IAAI,EAAE;QACF,IAAI,EAAE,aAAa,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../lib/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAW,MAAM,OAAO,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,KAAK,GAAG,MAAM,OAAO,CAAC;AAC7B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AAQjC,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,YAAY,CAAC,uBAAuB,CAAC,CAAC;AAEtE,MAAM,MAAM,cAAc,CAAC,KAAK,EAAE,UAAU,EAAE,cAAc,IAAI;IAC5D,gCAAgC;IAChC,WAAW,EAAE;QACT,4GAA4G;QAC5G,WAAW,EAAE,QAAQ,CAAC,QAAQ,CAAC;QAC/B,yIAAyI;QACzI,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;KAC5C,CAAC;IACF,mCAAmC;IACnC,IAAI,EAAE;QACF,2CAA2C;QAC3C,IAAI,EAAE,aAAa,CAAC,UAAU,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC;QACtD,gHAAgH;QAChH,SAAS,CAAC,EAAE,UAAU,CAAC;QACvB,+CAA+C;QAC/C,QAAQ,CAAC,EAAE,aAAa,CAAC,UAAU,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,CAAC;QAC/D,wHAAwH;QACxH,aAAa,CAAC,EAAE,cAAc,CAAC;KAClC,CAAC;IACF,aAAa,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC;CACtD,CAAC;AACF;;;;;GAKG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,OAAO,EAAE,cAAc,CAAC,KAAK,EAAE,UAAU,EAAE,cAAc,CAAC,QAqBpH;AACD;;;GAGG;AACH,wBAAgB,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,eAAe,CAAC,EAAE,WAAW;;;;;;;;;EAkB9E;AAED,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC"}
|