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.
- package/esm2022/lib/components/ai-assistant/ai-assistant-container.component.mjs +109 -0
- package/esm2022/lib/components/ai-assistant/assistant-state.config.mjs +21 -0
- package/esm2022/lib/components/global-alert/global-alert/global-alert.component.mjs +191 -0
- package/esm2022/lib/components/global-alert/global-alert.module.mjs +18 -0
- package/esm2022/lib/components/header/ai-assistant/ai-assistant.component.mjs +42 -0
- package/esm2022/lib/components/header/business-cycle/business-cycle.component.mjs +292 -0
- package/esm2022/lib/components/header/create-workflow/create-workflow.component.mjs +21 -0
- package/esm2022/lib/components/header/header-container/header-container.component.mjs +133 -0
- package/esm2022/lib/components/header/header.module.mjs +77 -0
- package/esm2022/lib/components/header/queue/queue.component.mjs +59 -0
- package/esm2022/lib/components/header/search/search.component.mjs +138 -0
- package/esm2022/lib/components/header/support/support.component.mjs +31 -0
- package/esm2022/lib/components/header/user-details/user-details.component.mjs +36 -0
- package/esm2022/lib/components/product-list/module-list/module-list.component.mjs +202 -0
- package/esm2022/lib/components/product-list/preference-list/preference-list.component.mjs +100 -0
- package/esm2022/lib/components/product-list/product-list-container/product-list-container.component.mjs +42 -0
- package/esm2022/lib/components/product-list/product-list.module.mjs +31 -0
- package/esm2022/lib/components/sub-menu/sub-menu-container/sub-menu-container.component.mjs +106 -0
- package/esm2022/lib/components/sub-menu/sub-menu.module.mjs +19 -0
- package/esm2022/lib/configurations.mjs +6 -0
- package/esm2022/lib/constants/alerts.constant.mjs +7 -0
- package/esm2022/lib/constants/api.constant.mjs +7 -0
- package/esm2022/lib/constants/app-url.constant.mjs +22 -0
- package/esm2022/lib/constants/assets.constants.mjs +36 -0
- package/esm2022/lib/constants/assistant.constants.mjs +3 -0
- package/esm2022/lib/constants/business-cycle.constant.mjs +42 -0
- package/esm2022/lib/constants/product-list.constant.mjs +124 -0
- package/esm2022/lib/shared/pipe/check-create-permission.pipe.mjs +22 -0
- package/esm2022/lib/shared/pipe/date-format.pipe.mjs +35 -0
- package/esm2022/lib/shared/pipe/get-file-url.pipe.mjs +22 -0
- package/esm2022/lib/shared/pipe/get-module-icon.pipe.mjs +22 -0
- package/esm2022/lib/shared/pipe/pipes.module.mjs +42 -0
- package/esm2022/lib/shared/pipe/safe-url.pipe.mjs +23 -0
- package/esm2022/lib/shared/services/RBAC.service.mjs +57 -0
- package/esm2022/lib/shared/services/api.service.mjs +127 -0
- package/esm2022/lib/shared/services/business-cycle.service.mjs +113 -0
- package/esm2022/lib/shared/services/layout.service.mjs +41 -0
- package/esm2022/lib/shared/services/local-storage.service.mjs +41 -0
- package/esm2022/lib/shared/services/product-list.service.mjs +79 -0
- package/esm2022/lib/shared/ui-kit/avatar/avatar/avatar.component.mjs +43 -0
- package/esm2022/lib/shared/ui-kit/avatar/avatar.module.mjs +19 -0
- package/esm2022/lib/shared/ui-kit/formgroup/checkbox/checkbox.component.mjs +39 -0
- package/esm2022/lib/shared/ui-kit/formgroup/click-outside.directive.mjs +29 -0
- package/esm2022/lib/shared/ui-kit/formgroup/cs-checkbox/cs-checkbox.component.mjs +28 -0
- package/esm2022/lib/shared/ui-kit/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.mjs +32 -0
- package/esm2022/lib/shared/ui-kit/formgroup/cs-radio/cs-radio.component.mjs +30 -0
- package/esm2022/lib/shared/ui-kit/formgroup/cs-radio-group/cs-radio-group.component.mjs +14 -0
- package/esm2022/lib/shared/ui-kit/formgroup/cs-select/cs-select.component.mjs +102 -0
- package/esm2022/lib/shared/ui-kit/formgroup/cs-switch/cs-switch.component.mjs +35 -0
- package/esm2022/lib/shared/ui-kit/formgroup/formgroup.module.mjs +65 -0
- package/esm2022/lib/shared/ui-kit/formgroup/pipes/pascal.pipe.mjs +19 -0
- package/esm2022/lib/shared/ui-kit/formgroup/pipes/searchMultiSelect.pipe.mjs +24 -0
- package/esm2022/lib/shared/ui-kit/page-loader/page-loader.component.mjs +41 -0
- package/esm2022/lib/shared/ui-kit/popover/popover-event.directive.mjs +28 -0
- package/esm2022/lib/shared/ui-kit/popover/popover-longpress.directive.mjs +48 -0
- package/esm2022/lib/shared/ui-kit/popover/popover.component.mjs +141 -0
- package/esm2022/lib/shared/ui-kit/popover/popover.directive.mjs +82 -0
- package/esm2022/lib/shared/ui-kit/popover/popover.module.mjs +23 -0
- package/esm2022/lib/shared/ui-kit/popover/popover.service.mjs +15 -0
- package/esm2022/lib/shared/ui-kit/tooltip/tooltip.directive.mjs +156 -0
- package/esm2022/lib/shared/ui-kit/tooltip/tooltip.module.mjs +18 -0
- package/esm2022/lib/vc-layout.component.mjs +19 -0
- package/esm2022/lib/vc-layout.module.mjs +24 -0
- package/esm2022/lib/vc-layout.service.mjs +14 -0
- package/esm2022/public-api.mjs +15 -0
- package/esm2022/vc-layout.mjs +5 -0
- package/fesm2022/vc-layout.mjs +250 -257
- package/fesm2022/vc-layout.mjs.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vc-layout",
|
|
3
|
-
"version": "3.0.
|
|
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
|
|
6
|
-
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.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
|
},
|