academe-kit 0.10.3 → 0.11.2
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/index.cjs +14 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.esm.js +14 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/ProtectedApp/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -8,6 +8,13 @@ type ProtectedAppProps = {
|
|
|
8
8
|
requiredClientRoles?: RequiredClientRoles;
|
|
9
9
|
requiredRealmRoles?: string[];
|
|
10
10
|
theme?: Theme;
|
|
11
|
+
/**
|
|
12
|
+
* Indica que o app ainda está carregando dados pós-autenticação (ex.: a lista
|
|
13
|
+
* de instituições do usuário). Quando `true`, o ProtectedApp continua exibindo
|
|
14
|
+
* a MESMA tela de loading do boot do Keycloak, evitando um segundo spinner em
|
|
15
|
+
* sequência. Default `false` — comportamento idêntico ao anterior.
|
|
16
|
+
*/
|
|
17
|
+
pending?: boolean;
|
|
11
18
|
};
|
|
12
19
|
type TextColorClasses = {
|
|
13
20
|
textPrimary: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "academe-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official React SDK for Academe ecosystem - Authentication, protected routes, API services, and UI components for educational management applications",
|
|
6
6
|
"main": "dist/index.cjs",
|