@luizleon/sf.prefeiturasp.vuecomponents 0.0.62 → 0.0.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luizleon/sf.prefeiturasp.vuecomponents",
3
- "version": "0.0.62",
3
+ "version": "0.0.63",
4
4
  "type": "module",
5
5
  "main": "dist/sf.prefeiturasp.vuecomponents.umd.js",
6
6
  "module": "dist/sf.prefeiturasp.vuecomponents.es.js",
@@ -99,7 +99,13 @@ function ConfigAuthService(config?: KeycloakConfig): IAuthService {
99
99
  };
100
100
  }
101
101
 
102
- const UseAuthService = (config: KeycloakConfig) =>
102
+ /**
103
+ * Serviço de autenticação.
104
+ * O parâmetro config só deve ser passado uma única vez, no início da aplicação.
105
+ * @param config
106
+ * @returns
107
+ */
108
+ const UseAuthService = (config?: KeycloakConfig) =>
103
109
  ConfigAuthService(config);
104
110
 
105
111
  export { UseAuthService };