academe-kit 0.11.0 → 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.
@@ -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.11.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",