@etsoo/materialui 1.3.3 → 1.3.5
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/lib/app/IAppApi.d.ts +0 -4
- package/lib/app/ServiceApp.js +0 -5
- package/package.json +2 -2
- package/src/app/IAppApi.ts +0 -5
- package/src/app/ServiceApp.ts +0 -6
package/lib/app/IAppApi.d.ts
CHANGED
package/lib/app/ServiceApp.js
CHANGED
|
@@ -153,11 +153,6 @@ export class ServiceApp extends ReactApp {
|
|
|
153
153
|
}
|
|
154
154
|
// Login
|
|
155
155
|
if (appApi) {
|
|
156
|
-
if (!appApi.onceAuthorized) {
|
|
157
|
-
// API handling
|
|
158
|
-
this.setApiLoading(appApi.api);
|
|
159
|
-
this.setApiErrorHandler(appApi.api, true);
|
|
160
|
-
}
|
|
161
156
|
// Authorize external service application API
|
|
162
157
|
appApi.authorize(userData, refreshToken, serviceResult.data);
|
|
163
158
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "TypeScript Material-UI Implementation",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@emotion/css": "^11.11.2",
|
|
51
51
|
"@emotion/react": "^11.11.1",
|
|
52
52
|
"@emotion/styled": "^11.11.0",
|
|
53
|
-
"@etsoo/appscript": "^1.4.
|
|
53
|
+
"@etsoo/appscript": "^1.4.39",
|
|
54
54
|
"@etsoo/notificationbase": "^1.1.28",
|
|
55
55
|
"@etsoo/react": "^1.7.7",
|
|
56
56
|
"@etsoo/shared": "^1.2.10",
|
package/src/app/IAppApi.ts
CHANGED
package/src/app/ServiceApp.ts
CHANGED
|
@@ -229,12 +229,6 @@ export class ServiceApp<
|
|
|
229
229
|
|
|
230
230
|
// Login
|
|
231
231
|
if (appApi) {
|
|
232
|
-
if (!appApi.onceAuthorized) {
|
|
233
|
-
// API handling
|
|
234
|
-
this.setApiLoading(appApi.api);
|
|
235
|
-
this.setApiErrorHandler(appApi.api, true);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
232
|
// Authorize external service application API
|
|
239
233
|
appApi.authorize(userData, refreshToken, serviceResult.data);
|
|
240
234
|
} else {
|