@indigina/kendo 1.0.128-beta → 1.0.142-beta

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.
Files changed (48) hide show
  1. package/README.md +6 -5
  2. package/bundles/indigina-kendo.umd.js +2824 -2565
  3. package/bundles/indigina-kendo.umd.js.map +1 -1
  4. package/bundles/indigina-kendo.umd.min.js +2 -2
  5. package/bundles/indigina-kendo.umd.min.js.map +1 -1
  6. package/esm2015/indigina-kendo.js +3 -1
  7. package/esm2015/lib/angular/indigina.module.js +24 -14
  8. package/esm2015/lib/angular/models/AppSettings.js +1 -1
  9. package/esm2015/lib/angular/services/settings.service.js +8 -1
  10. package/esm2015/lib/components/azure-login-callback/azure-login-callback.component.js +35 -0
  11. package/esm2015/lib/config/msal-instance.factory.js +27 -0
  12. package/esm2015/lib/interceptors/auth-headers.interceptor.js +32 -0
  13. package/esm2015/lib/kendo.module.js +44 -24
  14. package/esm2015/lib/models/AuthProviders.js +6 -0
  15. package/esm2015/lib/models/AzureB2CSettings.js +2 -0
  16. package/esm2015/lib/models/SystemInfo.js +2 -0
  17. package/esm2015/lib/services/account.service.js +9 -9
  18. package/esm2015/lib/services/auth-provider.resolver.js +48 -0
  19. package/esm2015/lib/services/auth.providers/AuthProvider.js +3 -0
  20. package/esm2015/lib/services/auth.providers/azureb2c.provider.js +44 -0
  21. package/esm2015/lib/services/auth.providers/oauth.provider.js +40 -0
  22. package/esm2015/lib/services/base.account.service.js +67 -66
  23. package/esm2015/lib/services/signalr/signalr.service.js +3 -2
  24. package/esm2015/lib/widgets/entity-edit/entity-edit-form.component.js +7 -2
  25. package/esm2015/lib/widgets/entity-edit/field-multiselect/field-multiselect.component.js +4 -7
  26. package/esm2015/public-api.js +51 -46
  27. package/fesm2015/indigina-kendo.js +2482 -2241
  28. package/fesm2015/indigina-kendo.js.map +1 -1
  29. package/indigina-kendo.d.ts +2 -0
  30. package/indigina-kendo.metadata.json +1 -1
  31. package/lib/angular/indigina.module.d.ts +1 -1
  32. package/lib/angular/models/AppSettings.d.ts +6 -0
  33. package/lib/angular/services/settings.service.d.ts +2 -0
  34. package/lib/components/azure-login-callback/azure-login-callback.component.d.ts +11 -0
  35. package/lib/config/msal-instance.factory.d.ts +3 -0
  36. package/lib/interceptors/auth-headers.interceptor.d.ts +8 -0
  37. package/lib/models/AuthProviders.d.ts +4 -0
  38. package/lib/models/AzureB2CSettings.d.ts +5 -0
  39. package/lib/models/SystemInfo.d.ts +3 -0
  40. package/lib/services/account.service.d.ts +5 -5
  41. package/lib/services/auth-provider.resolver.d.ts +12 -0
  42. package/lib/services/auth.providers/AuthProvider.d.ts +8 -0
  43. package/lib/services/auth.providers/azureb2c.provider.d.ts +14 -0
  44. package/lib/services/auth.providers/oauth.provider.d.ts +15 -0
  45. package/lib/services/base.account.service.d.ts +5 -5
  46. package/lib/widgets/entity-edit/field-multiselect/field-multiselect.component.d.ts +1 -1
  47. package/package.json +3 -1
  48. package/public-api.d.ts +67 -60
package/README.md CHANGED
@@ -1036,11 +1036,12 @@ This service provides public methods for managing the current locale for an appl
1036
1036
 
1037
1037
  ### Overview
1038
1038
 
1039
- | Prop name | Required | Type | Description |
1040
- | ------------- | -------- | ------ | ----------------------------------- |
1041
- | apiUrl | yes | string | The base endpoint server url |
1042
- | accountUrl | yes | string | The url to account server |
1043
- | toastrTimeOut | yes | number | Timeout to auto close toast message |
1039
+ | Prop name | Required | Type | Description |
1040
+ | --------------- | -------- | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1041
+ | apiUrl | yes | string | The base endpoint server url |
1042
+ | accountUrl | yes | string | The url to account server |
1043
+ | toastrTimeOut | yes | number | Timeout to auto close toast message |
1044
+ | signalRLogLevel | no | LogLevel (enum) | This optoin is idicate what SignalR log information do you can see in the console. By default is _*None*_. See more about [LogLevel](https://docs.microsoft.com/en-us/aspnet/core/signalr/diagnostics?view=aspnetcore-5.0#javascript-client-logging). |
1044
1045
 
1045
1046
  ---
1046
1047