vc-layout 3.0.4 → 3.0.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.
Files changed (69) hide show
  1. package/esm2022/lib/components/ai-assistant/ai-assistant-container.component.mjs +109 -0
  2. package/esm2022/lib/components/ai-assistant/assistant-state.config.mjs +21 -0
  3. package/esm2022/lib/components/global-alert/global-alert/global-alert.component.mjs +191 -0
  4. package/esm2022/lib/components/global-alert/global-alert.module.mjs +18 -0
  5. package/esm2022/lib/components/header/ai-assistant/ai-assistant.component.mjs +42 -0
  6. package/esm2022/lib/components/header/business-cycle/business-cycle.component.mjs +292 -0
  7. package/esm2022/lib/components/header/create-workflow/create-workflow.component.mjs +21 -0
  8. package/esm2022/lib/components/header/header-container/header-container.component.mjs +133 -0
  9. package/esm2022/lib/components/header/header.module.mjs +77 -0
  10. package/esm2022/lib/components/header/queue/queue.component.mjs +59 -0
  11. package/esm2022/lib/components/header/search/search.component.mjs +138 -0
  12. package/esm2022/lib/components/header/support/support.component.mjs +31 -0
  13. package/esm2022/lib/components/header/user-details/user-details.component.mjs +36 -0
  14. package/esm2022/lib/components/product-list/module-list/module-list.component.mjs +202 -0
  15. package/esm2022/lib/components/product-list/preference-list/preference-list.component.mjs +100 -0
  16. package/esm2022/lib/components/product-list/product-list-container/product-list-container.component.mjs +42 -0
  17. package/esm2022/lib/components/product-list/product-list.module.mjs +31 -0
  18. package/esm2022/lib/components/sub-menu/sub-menu-container/sub-menu-container.component.mjs +106 -0
  19. package/esm2022/lib/components/sub-menu/sub-menu.module.mjs +19 -0
  20. package/esm2022/lib/configurations.mjs +6 -0
  21. package/esm2022/lib/constants/alerts.constant.mjs +7 -0
  22. package/esm2022/lib/constants/api.constant.mjs +7 -0
  23. package/esm2022/lib/constants/app-url.constant.mjs +22 -0
  24. package/esm2022/lib/constants/assets.constants.mjs +36 -0
  25. package/esm2022/lib/constants/assistant.constants.mjs +3 -0
  26. package/esm2022/lib/constants/business-cycle.constant.mjs +42 -0
  27. package/esm2022/lib/constants/product-list.constant.mjs +124 -0
  28. package/esm2022/lib/shared/pipe/check-create-permission.pipe.mjs +22 -0
  29. package/esm2022/lib/shared/pipe/date-format.pipe.mjs +35 -0
  30. package/esm2022/lib/shared/pipe/get-file-url.pipe.mjs +22 -0
  31. package/esm2022/lib/shared/pipe/get-module-icon.pipe.mjs +22 -0
  32. package/esm2022/lib/shared/pipe/pipes.module.mjs +42 -0
  33. package/esm2022/lib/shared/pipe/safe-url.pipe.mjs +23 -0
  34. package/esm2022/lib/shared/services/RBAC.service.mjs +57 -0
  35. package/esm2022/lib/shared/services/api.service.mjs +127 -0
  36. package/esm2022/lib/shared/services/business-cycle.service.mjs +113 -0
  37. package/esm2022/lib/shared/services/layout.service.mjs +41 -0
  38. package/esm2022/lib/shared/services/local-storage.service.mjs +41 -0
  39. package/esm2022/lib/shared/services/product-list.service.mjs +79 -0
  40. package/esm2022/lib/shared/ui-kit/avatar/avatar/avatar.component.mjs +43 -0
  41. package/esm2022/lib/shared/ui-kit/avatar/avatar.module.mjs +19 -0
  42. package/esm2022/lib/shared/ui-kit/formgroup/checkbox/checkbox.component.mjs +39 -0
  43. package/esm2022/lib/shared/ui-kit/formgroup/click-outside.directive.mjs +29 -0
  44. package/esm2022/lib/shared/ui-kit/formgroup/cs-checkbox/cs-checkbox.component.mjs +28 -0
  45. package/esm2022/lib/shared/ui-kit/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.mjs +32 -0
  46. package/esm2022/lib/shared/ui-kit/formgroup/cs-radio/cs-radio.component.mjs +30 -0
  47. package/esm2022/lib/shared/ui-kit/formgroup/cs-radio-group/cs-radio-group.component.mjs +14 -0
  48. package/esm2022/lib/shared/ui-kit/formgroup/cs-select/cs-select.component.mjs +102 -0
  49. package/esm2022/lib/shared/ui-kit/formgroup/cs-switch/cs-switch.component.mjs +35 -0
  50. package/esm2022/lib/shared/ui-kit/formgroup/formgroup.module.mjs +65 -0
  51. package/esm2022/lib/shared/ui-kit/formgroup/pipes/pascal.pipe.mjs +19 -0
  52. package/esm2022/lib/shared/ui-kit/formgroup/pipes/searchMultiSelect.pipe.mjs +24 -0
  53. package/esm2022/lib/shared/ui-kit/page-loader/page-loader.component.mjs +41 -0
  54. package/esm2022/lib/shared/ui-kit/popover/popover-event.directive.mjs +28 -0
  55. package/esm2022/lib/shared/ui-kit/popover/popover-longpress.directive.mjs +48 -0
  56. package/esm2022/lib/shared/ui-kit/popover/popover.component.mjs +141 -0
  57. package/esm2022/lib/shared/ui-kit/popover/popover.directive.mjs +82 -0
  58. package/esm2022/lib/shared/ui-kit/popover/popover.module.mjs +23 -0
  59. package/esm2022/lib/shared/ui-kit/popover/popover.service.mjs +15 -0
  60. package/esm2022/lib/shared/ui-kit/tooltip/tooltip.directive.mjs +156 -0
  61. package/esm2022/lib/shared/ui-kit/tooltip/tooltip.module.mjs +18 -0
  62. package/esm2022/lib/vc-layout.component.mjs +19 -0
  63. package/esm2022/lib/vc-layout.module.mjs +24 -0
  64. package/esm2022/lib/vc-layout.service.mjs +14 -0
  65. package/esm2022/public-api.mjs +15 -0
  66. package/esm2022/vc-layout.mjs +5 -0
  67. package/fesm2022/vc-layout.mjs +250 -257
  68. package/fesm2022/vc-layout.mjs.map +1 -1
  69. package/package.json +5 -3
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "vc-layout",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "peerDependencies": {
5
- "@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x || 20.x || 21.x || 22.x || 23.x || 24.x ",
6
- "@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x || 20.x || 21.x || 22.x || 23.x || 24.x "
5
+ "@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
6
+ "@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
7
7
  },
8
8
  "dependencies": {
9
9
  "tslib": "^2.3.0"
@@ -16,6 +16,8 @@
16
16
  },
17
17
  ".": {
18
18
  "types": "./index.d.ts",
19
+ "esm2022": "./esm2022/vc-layout.mjs",
20
+ "esm": "./esm2022/vc-layout.mjs",
19
21
  "default": "./fesm2022/vc-layout.mjs"
20
22
  }
21
23
  },