@smartbit4all/ng-client 6.0.8 → 6.0.10

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 (73) hide show
  1. package/esm2022/lib/session/smart-backend-bootstrap.config.mjs +1 -1
  2. package/esm2022/lib/session/smart-backend-bootstrap.service.mjs +7 -4
  3. package/esm2022/lib/session/smart-error-catching.interceptor.mjs +3 -3
  4. package/esm2022/lib/session/smart-session.service.mjs +48 -23
  5. package/esm2022/lib/smart-generic-pages/search-page/search-page.component.mjs +3 -3
  6. package/esm2022/lib/smart-tree/smarttree.component.mjs +3 -3
  7. package/esm2022/lib/theme/theme.service.mjs +48 -0
  8. package/esm2022/lib/view-context/api/api/view.service.mjs +211 -1
  9. package/esm2022/lib/view-context/api/api-default/binaryContentData.mjs +2 -0
  10. package/esm2022/lib/view-context/api/model/deviceInfo.mjs +1 -1
  11. package/esm2022/lib/view-context/api/model/iconPosition.mjs +1 -1
  12. package/esm2022/lib/view-context/api/model/menuTriggerType.mjs +17 -0
  13. package/esm2022/lib/view-context/api/model/models.mjs +7 -1
  14. package/esm2022/lib/view-context/api/model/namedValidator.mjs +1 -1
  15. package/esm2022/lib/view-context/api/model/publishedViewData.mjs +13 -0
  16. package/esm2022/lib/view-context/api/model/shellProperty.mjs +13 -0
  17. package/esm2022/lib/view-context/api/model/smartLinkData.mjs +1 -1
  18. package/esm2022/lib/view-context/api/model/themeDefinition.mjs +2 -0
  19. package/esm2022/lib/view-context/api/model/themeDescriptor.mjs +2 -0
  20. package/esm2022/lib/view-context/api/model/themeShellDescriptor.mjs +2 -0
  21. package/esm2022/lib/view-context/api/model/uiAction.mjs +1 -1
  22. package/esm2022/lib/view-context/api/model/uiActionDefinition.mjs +1 -1
  23. package/esm2022/lib/view-context/api/model/uiActionDefinitionEntry.mjs +1 -1
  24. package/esm2022/lib/view-context/api/model/uiActionDescriptor.mjs +1 -1
  25. package/esm2022/lib/view-context/api/model/uiActionInputType.mjs +1 -1
  26. package/esm2022/lib/view-context/api/model/uiActionSchedule.mjs +1 -1
  27. package/esm2022/lib/view-context/api/model/uiActionUploadDescriptor.mjs +1 -1
  28. package/esm2022/lib/view-context/api/model/view.mjs +1 -1
  29. package/esm2022/lib/view-context/api/model/viewData.mjs +1 -1
  30. package/esm2022/lib/view-context/api/model/viewEventHandler.mjs +1 -1
  31. package/esm2022/lib/view-context/projects.mjs +3 -2
  32. package/esm2022/lib/view-context/smart-ui-action/components/menu/click/menu.component.mjs +205 -0
  33. package/esm2022/lib/view-context/smart-ui-action/components/menu/hover/hover-menu.component.mjs +205 -0
  34. package/esm2022/lib/view-context/smart-ui-action/components/theme-selector/theme-selector.component.mjs +35 -0
  35. package/esm2022/lib/view-context/smart-ui-action/file-editor-toolbar/file-editor-toolbar.component.mjs +6 -4
  36. package/esm2022/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.mjs +18 -10
  37. package/esm2022/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +10 -7
  38. package/esm2022/lib/view-context/smart-ui-action/ui-action.service.mjs +13 -3
  39. package/esm2022/lib/view-context/smart-view-context.module.mjs +13 -7
  40. package/esm2022/lib/view-context/smart-view-context.service.mjs +14 -5
  41. package/esm2022/projects.mjs +2 -1
  42. package/fesm2022/smartbit4all-ng-client.mjs +895 -313
  43. package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
  44. package/lib/session/smart-backend-bootstrap.config.d.ts +9 -1
  45. package/lib/session/smart-backend-bootstrap.service.d.ts +3 -1
  46. package/lib/session/smart-error-catching.interceptor.d.ts +2 -1
  47. package/lib/session/smart-session.service.d.ts +18 -1
  48. package/lib/theme/theme.service.d.ts +17 -0
  49. package/lib/view-context/api/api/view.service.d.ts +94 -0
  50. package/lib/view-context/api/api-default/binaryContentData.d.ts +2 -0
  51. package/lib/view-context/api/model/deviceInfo.d.ts +1 -0
  52. package/lib/view-context/api/model/menuTriggerType.d.ts +15 -0
  53. package/lib/view-context/api/model/models.d.ts +6 -0
  54. package/lib/view-context/api/model/publishedViewData.d.ts +14 -0
  55. package/lib/view-context/api/model/shellProperty.d.ts +15 -0
  56. package/lib/view-context/api/model/themeDefinition.d.ts +22 -0
  57. package/lib/view-context/api/model/themeDescriptor.d.ts +16 -0
  58. package/lib/view-context/api/model/themeShellDescriptor.d.ts +17 -0
  59. package/lib/view-context/api/model/uiActionDescriptor.d.ts +2 -0
  60. package/lib/view-context/projects.d.ts +2 -1
  61. package/lib/view-context/smart-ui-action/components/menu/{menu.component.d.ts → click/menu.component.d.ts} +8 -7
  62. package/lib/view-context/smart-ui-action/components/menu/hover/hover-menu.component.d.ts +43 -0
  63. package/lib/view-context/smart-ui-action/components/theme-selector/theme-selector.component.d.ts +16 -0
  64. package/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.d.ts +1 -0
  65. package/lib/view-context/smart-ui-action/ui-action-toolbar.component.d.ts +2 -1
  66. package/lib/view-context/smart-ui-action/ui-action.service.d.ts +3 -1
  67. package/lib/view-context/smart-view-context.module.d.ts +56 -54
  68. package/lib/view-context/smart-view-context.service.d.ts +4 -2
  69. package/package.json +1 -1
  70. package/projects.d.ts +1 -0
  71. package/smartbit4all-ng-client-6.0.10.tgz +0 -0
  72. package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.component.mjs +0 -199
  73. package/smartbit4all-ng-client-6.0.8.tgz +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.