@acorex/platform 1.0.0
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/README.md +7 -0
- package/auth/README.md +3 -0
- package/auth/index.d.ts +16 -0
- package/auth/lib/application/application.loader.d.ts +9 -0
- package/auth/lib/application/application.types.d.ts +10 -0
- package/auth/lib/auth-registry.service.d.ts +12 -0
- package/auth/lib/auth.guard.d.ts +2 -0
- package/auth/lib/auth.module.d.ts +20 -0
- package/auth/lib/auth.strategy.d.ts +28 -0
- package/auth/lib/errors.types.d.ts +6 -0
- package/auth/lib/feature/feature.loader.d.ts +7 -0
- package/auth/lib/feature/feature.types.d.ts +6 -0
- package/auth/lib/permission/permission.directive.d.ts +16 -0
- package/auth/lib/permission/permission.guard.d.ts +2 -0
- package/auth/lib/permission/permission.loader.d.ts +7 -0
- package/auth/lib/permission/permission.types.d.ts +1 -0
- package/auth/lib/session.service.d.ts +51 -0
- package/auth/lib/tenant/tenant.loader.d.ts +9 -0
- package/auth/lib/tenant/tenant.types.d.ts +8 -0
- package/auth/lib/user/user.types.d.ts +6 -0
- package/common/README.md +3 -0
- package/common/index.d.ts +11 -0
- package/common/lib/common.module.d.ts +21 -0
- package/common/lib/configs/app.config.d.ts +19 -0
- package/common/lib/data/data-provider.types.d.ts +11 -0
- package/common/lib/data/index.d.ts +1 -0
- package/common/lib/errors/error-handler-registry.service.d.ts +12 -0
- package/common/lib/errors/error-handler.types.d.ts +3 -0
- package/common/lib/errors/global-error-handler.d.ts +11 -0
- package/common/lib/errors/index.d.ts +3 -0
- package/common/lib/layout/component-slot/component-slot-loader.service.d.ts +11 -0
- package/common/lib/layout/component-slot/component-slot-registery.service.d.ts +9 -0
- package/common/lib/layout/component-slot/component-slot.directive.d.ts +12 -0
- package/common/lib/layout/component-slot/component-slot.module.d.ts +15 -0
- package/common/lib/layout/component-slot/component-slot.types.d.ts +14 -0
- package/common/lib/layout/component-slot/index.d.ts +5 -0
- package/common/lib/menu/index.d.ts +2 -0
- package/common/lib/menu/menu.loader.d.ts +17 -0
- package/common/lib/menu/menu.types.d.ts +13 -0
- package/common/lib/settings/index.d.ts +3 -0
- package/common/lib/settings/settings.loader.d.ts +8 -0
- package/common/lib/settings/settings.service.d.ts +9 -0
- package/common/lib/settings/settings.types.d.ts +5 -0
- package/common/lib/shared/logo.types.d.ts +19 -0
- package/common/lib/shared/state-persistence/index.d.ts +3 -0
- package/common/lib/shared/state-persistence/state-persistence.actions.d.ts +1 -0
- package/common/lib/shared/state-persistence/state-persistence.module.d.ts +8 -0
- package/common/lib/shared/state-persistence/state-persistence.reducers.d.ts +3 -0
- package/common/lib/store/common.actions.d.ts +14 -0
- package/common/lib/store/common.effects.d.ts +11 -0
- package/common/lib/store/index.d.ts +2 -0
- package/common/lib/utils/clipboard-service.d.ts +7 -0
- package/common/lib/utils/index.d.ts +3 -0
- package/common/lib/utils/router-util.service.d.ts +12 -0
- package/common/lib/utils/sticky.directive.d.ts +24 -0
- package/esm2022/acorex-platform.mjs +5 -0
- package/esm2022/auth/acorex-platform-auth.mjs +5 -0
- package/esm2022/auth/index.mjs +17 -0
- package/esm2022/auth/lib/application/application.loader.mjs +26 -0
- package/esm2022/auth/lib/application/application.types.mjs +2 -0
- package/esm2022/auth/lib/auth-registry.service.mjs +29 -0
- package/esm2022/auth/lib/auth.guard.mjs +18 -0
- package/esm2022/auth/lib/auth.module.mjs +84 -0
- package/esm2022/auth/lib/auth.strategy.mjs +2 -0
- package/esm2022/auth/lib/errors.types.mjs +13 -0
- package/esm2022/auth/lib/feature/feature.loader.mjs +14 -0
- package/esm2022/auth/lib/feature/feature.types.mjs +2 -0
- package/esm2022/auth/lib/permission/permission.directive.mjs +51 -0
- package/esm2022/auth/lib/permission/permission.guard.mjs +16 -0
- package/esm2022/auth/lib/permission/permission.loader.mjs +14 -0
- package/esm2022/auth/lib/permission/permission.types.mjs +2 -0
- package/esm2022/auth/lib/session.service.mjs +240 -0
- package/esm2022/auth/lib/tenant/tenant.loader.mjs +23 -0
- package/esm2022/auth/lib/tenant/tenant.types.mjs +2 -0
- package/esm2022/auth/lib/user/user.types.mjs +2 -0
- package/esm2022/common/acorex-platform-common.mjs +5 -0
- package/esm2022/common/index.mjs +12 -0
- package/esm2022/common/lib/common.module.mjs +123 -0
- package/esm2022/common/lib/configs/app.config.mjs +27 -0
- package/esm2022/common/lib/data/data-provider.types.mjs +3 -0
- package/esm2022/common/lib/data/index.mjs +2 -0
- package/esm2022/common/lib/errors/error-handler-registry.service.mjs +29 -0
- package/esm2022/common/lib/errors/error-handler.types.mjs +2 -0
- package/esm2022/common/lib/errors/global-error-handler.mjs +36 -0
- package/esm2022/common/lib/errors/index.mjs +4 -0
- package/esm2022/common/lib/layout/component-slot/component-slot-loader.service.mjs +56 -0
- package/esm2022/common/lib/layout/component-slot/component-slot-registery.service.mjs +28 -0
- package/esm2022/common/lib/layout/component-slot/component-slot.directive.mjs +24 -0
- package/esm2022/common/lib/layout/component-slot/component-slot.module.mjs +72 -0
- package/esm2022/common/lib/layout/component-slot/component-slot.types.mjs +2 -0
- package/esm2022/common/lib/layout/component-slot/index.mjs +6 -0
- package/esm2022/common/lib/menu/index.mjs +3 -0
- package/esm2022/common/lib/menu/menu.loader.mjs +39 -0
- package/esm2022/common/lib/menu/menu.types.mjs +2 -0
- package/esm2022/common/lib/settings/index.mjs +4 -0
- package/esm2022/common/lib/settings/settings.loader.mjs +17 -0
- package/esm2022/common/lib/settings/settings.service.mjs +20 -0
- package/esm2022/common/lib/settings/settings.types.mjs +2 -0
- package/esm2022/common/lib/shared/logo.types.mjs +21 -0
- package/esm2022/common/lib/shared/state-persistence/index.mjs +4 -0
- package/esm2022/common/lib/shared/state-persistence/state-persistence.actions.mjs +3 -0
- package/esm2022/common/lib/shared/state-persistence/state-persistence.module.mjs +36 -0
- package/esm2022/common/lib/shared/state-persistence/state-persistence.reducers.mjs +30 -0
- package/esm2022/common/lib/store/common.actions.mjs +5 -0
- package/esm2022/common/lib/store/common.effects.mjs +31 -0
- package/esm2022/common/lib/store/index.mjs +3 -0
- package/esm2022/common/lib/utils/clipboard-service.mjs +26 -0
- package/esm2022/common/lib/utils/index.mjs +4 -0
- package/esm2022/common/lib/utils/router-util.service.mjs +43 -0
- package/esm2022/common/lib/utils/sticky.directive.mjs +74 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/layouts/acorex-platform-layouts.mjs +5 -0
- package/esm2022/layouts/index.mjs +5 -0
- package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.mjs +58 -0
- package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.component.mjs +50 -0
- package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.module.mjs +57 -0
- package/esm2022/layouts/lib/admin/admin-child-layout/index.mjs +4 -0
- package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.component.mjs +74 -0
- package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.module.mjs +92 -0
- package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.mjs +14 -0
- package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.mjs +29 -0
- package/esm2022/layouts/lib/admin/admin-root-layout/index.mjs +5 -0
- package/esm2022/layouts/lib/admin/admin.module.mjs +75 -0
- package/esm2022/layouts/lib/admin/admin.routes.mjs +37 -0
- package/esm2022/layouts/lib/admin/custom-reuse.strategy.mjs +20 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +105 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.mjs +137 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +125 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +180 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/index.mjs +3 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +200 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/index.mjs +6 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.mjs +56 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +108 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.mjs +76 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.mjs +57 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +283 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/index.mjs +5 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +333 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.mjs +156 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +86 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.mjs +66 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.mjs +82 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/index.mjs +2 -0
- package/esm2022/layouts/lib/admin/entity-layout/index.mjs +4 -0
- package/esm2022/layouts/lib/admin/entity-layout/store/entity.actions.mjs +18 -0
- package/esm2022/layouts/lib/admin/entity-layout/store/entity.effects.mjs +76 -0
- package/esm2022/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.mjs +91 -0
- package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +153 -0
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +98 -0
- package/esm2022/layouts/lib/admin/entity.resolver.mjs +21 -0
- package/esm2022/layouts/lib/admin/index.mjs +8 -0
- package/esm2022/layouts/lib/admin/store/admin-layout.actions.mjs +12 -0
- package/esm2022/layouts/lib/admin/store/admin-layout.effects.mjs +29 -0
- package/esm2022/layouts/lib/admin/store/admin-layout.reducers.mjs +60 -0
- package/esm2022/layouts/lib/admin/store/admin-layout.selectors.mjs +8 -0
- package/esm2022/layouts/lib/admin/store/admin-layout.state.mjs +16 -0
- package/esm2022/layouts/lib/admin/store/index.mjs +6 -0
- package/esm2022/layouts/lib/layout.module.mjs +63 -0
- package/esm2022/layouts/lib/layout.routes.mjs +15 -0
- package/esm2022/layouts/lib/shared/components/content-view/content-view.page.mjs +64 -0
- package/esm2022/layouts/lib/shared/components/content-view/content-view.type.mjs +2 -0
- package/esm2022/layouts/lib/shared/components/error-401/error-401.component.mjs +29 -0
- package/esm2022/layouts/lib/shared/components/error-404/error-404.component.mjs +22 -0
- package/esm2022/layouts/lib/shared/components/error-offline/error-offline.component.mjs +16 -0
- package/esm2022/layouts/lib/shared/components/index.mjs +9 -0
- package/esm2022/layouts/lib/shared/components/logo/logo.component.mjs +38 -0
- package/esm2022/layouts/lib/shared/components/slots/footer-text-slot.component.mjs +20 -0
- package/esm2022/layouts/lib/shared/components/slots/navbar-slot.component.mjs +36 -0
- package/esm2022/layouts/lib/shared/components/slots/theme-slot.component.mjs +48 -0
- package/esm2022/layouts/lib/shared/entity/entity-registery.service.mjs +70 -0
- package/esm2022/layouts/lib/shared/entity/entity.class.mjs +32 -0
- package/esm2022/layouts/lib/shared/entity/entity.loader.mjs +13 -0
- package/esm2022/layouts/lib/shared/entity/index.mjs +4 -0
- package/esm2022/layouts/lib/shared/index.mjs +5 -0
- package/esm2022/layouts/lib/shared/services/index.mjs +2 -0
- package/esm2022/layouts/lib/shared/services/layout.service.mjs +79 -0
- package/esm2022/layouts/lib/shared/workflows/common.workflow.mjs +110 -0
- package/esm2022/layouts/lib/shared/workflows/error-handler.mjs +24 -0
- package/esm2022/layouts/lib/shared/workflows/index.mjs +3 -0
- package/esm2022/layouts/lib/widgets/avatar/avatar-widget-edit.component.mjs +102 -0
- package/esm2022/layouts/lib/widgets/avatar/avatar-widget-view.component.mjs +33 -0
- package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-column.component.mjs +53 -0
- package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.mjs +22 -0
- package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-view.component.mjs +47 -0
- package/esm2022/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.mjs +147 -0
- package/esm2022/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.mjs +135 -0
- package/esm2022/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.mjs +125 -0
- package/esm2022/layouts/lib/widgets/common-widgets.module.mjs +479 -0
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-column.component.mjs +44 -0
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.mjs +175 -0
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.mjs +230 -0
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-view.component.mjs +71 -0
- package/esm2022/layouts/lib/widgets/email/email-widget-column.component.mjs +73 -0
- package/esm2022/layouts/lib/widgets/email/email-widget-edit.component.mjs +249 -0
- package/esm2022/layouts/lib/widgets/email/email-widget-view.component.mjs +108 -0
- package/esm2022/layouts/lib/widgets/file/file-widget-column.component.mjs +27 -0
- package/esm2022/layouts/lib/widgets/file/file-widget-edit.component.mjs +200 -0
- package/esm2022/layouts/lib/widgets/file/file-widget-filter.component.mjs +27 -0
- package/esm2022/layouts/lib/widgets/file/file-widget-view.component.mjs +153 -0
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-edit.component.mjs +189 -0
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-filter.component.mjs +27 -0
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-types.mjs +2 -0
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-view.component.mjs +173 -0
- package/esm2022/layouts/lib/widgets/index.mjs +2 -0
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-column.component.mjs +43 -0
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-edit.component.mjs +74 -0
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-filter.component.mjs +139 -0
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-view.component.mjs +54 -0
- package/esm2022/layouts/lib/widgets/map/map-widget-edit.component.mjs +91 -0
- package/esm2022/layouts/lib/widgets/map/map-widget-view.component.mjs +63 -0
- package/esm2022/layouts/lib/widgets/messenger/messenger-widget-column.component.mjs +71 -0
- package/esm2022/layouts/lib/widgets/messenger/messenger-widget-edit.component.mjs +136 -0
- package/esm2022/layouts/lib/widgets/messenger/messenger-widget-view.component.mjs +132 -0
- package/esm2022/layouts/lib/widgets/number/number-widget-edit.component.mjs +46 -0
- package/esm2022/layouts/lib/widgets/number/number-widget-view.component.mjs +30 -0
- package/esm2022/layouts/lib/widgets/password/change-password.component.mjs +175 -0
- package/esm2022/layouts/lib/widgets/password/password-widget-column.component.mjs +77 -0
- package/esm2022/layouts/lib/widgets/password/password-widget-edit.component.mjs +34 -0
- package/esm2022/layouts/lib/widgets/password/password-widget-view.component.mjs +109 -0
- package/esm2022/layouts/lib/widgets/phone/phone-widget-column.component.mjs +91 -0
- package/esm2022/layouts/lib/widgets/phone/phone-widget-edit.component.mjs +315 -0
- package/esm2022/layouts/lib/widgets/phone/phone-widget-view.component.mjs +123 -0
- package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-column.component.mjs +69 -0
- package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.mjs +67 -0
- package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-view.component.mjs +34 -0
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-column.component.mjs +43 -0
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.mjs +53 -0
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.mjs +41 -0
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-view.component.mjs +45 -0
- package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.mjs +128 -0
- package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.mjs +41 -0
- package/esm2022/layouts/lib/widgets/text/largetext-widget-edit.component.mjs +37 -0
- package/esm2022/layouts/lib/widgets/text/text-widget-column.component.mjs +47 -0
- package/esm2022/layouts/lib/widgets/text/text-widget-edit.component.mjs +162 -0
- package/esm2022/layouts/lib/widgets/text/text-widget-view.component.mjs +66 -0
- package/esm2022/layouts/lib/widgets/toggle/toggle-widget-column.component.mjs +57 -0
- package/esm2022/layouts/lib/widgets/toggle/toggle-widget-edit.component.mjs +25 -0
- package/esm2022/layouts/lib/widgets/toggle/toggle-widget-view.component.mjs +49 -0
- package/esm2022/mocks/acorex-platform-mocks.mjs +5 -0
- package/esm2022/mocks/index.mjs +7 -0
- package/esm2022/mocks/lib/mocks.module.mjs +15 -0
- package/esm2022/mocks/lib/services/mocker.service.mjs +124 -0
- package/esm2022/mocks/lib/storage/storage.mock.service.mjs +186 -0
- package/esm2022/native/acorex-platform-native.mjs +5 -0
- package/esm2022/native/index.mjs +3 -0
- package/esm2022/native/lib/native.module.mjs +16 -0
- package/esm2022/native/lib/native.service.mjs +133 -0
- package/esm2022/schema/acorex-platform-schema.mjs +5 -0
- package/esm2022/schema/index.mjs +14 -0
- package/esm2022/schema/lib/component-loader.mjs +2 -0
- package/esm2022/schema/lib/formats.mjs +2 -0
- package/esm2022/schema/lib/operators.mjs +50 -0
- package/esm2022/schema/lib/schema-registery.service.mjs +33 -0
- package/esm2022/schema/lib/schema.mjs +2 -0
- package/esm2022/schema/lib/schema.module.mjs +23 -0
- package/esm2022/schema/lib/widget/widget-base.mjs +110 -0
- package/esm2022/schema/lib/widget/widget-column-renderer.mjs +99 -0
- package/esm2022/schema/lib/widget/widget-filter-renderer.mjs +133 -0
- package/esm2022/schema/lib/widget/widget-renderer.mjs +144 -0
- package/esm2022/schema/lib/widget/widget-token.mjs +3 -0
- package/esm2022/workflow/acorex-platform-workflow.mjs +5 -0
- package/esm2022/workflow/index.mjs +7 -0
- package/esm2022/workflow/lib/errors.types.mjs +8 -0
- package/esm2022/workflow/lib/workflow-event-dispatcher.service.mjs +23 -0
- package/esm2022/workflow/lib/workflow-registery.service.mjs +39 -0
- package/esm2022/workflow/lib/workflow.module.mjs +96 -0
- package/esm2022/workflow/lib/workflow.service.mjs +141 -0
- package/esm2022/workflow/lib/workflow.types.mjs +52 -0
- package/fesm2022/acorex-platform-auth.mjs +502 -0
- package/fesm2022/acorex-platform-auth.mjs.map +1 -0
- package/fesm2022/acorex-platform-common.mjs +699 -0
- package/fesm2022/acorex-platform-common.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-PZr1lXj-.mjs +104 -0
- package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-PZr1lXj-.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-pJJYkvdH.mjs +36 -0
- package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-pJJYkvdH.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-boolean-widget-filter.component-H056Q5Gz.mjs +150 -0
- package/fesm2022/acorex-platform-layouts-boolean-widget-filter.component-H056Q5Gz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-change-password.component-QMAm6dxN.mjs +178 -0
- package/fesm2022/acorex-platform-layouts-change-password.component-QMAm6dxN.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-vRJI5S-w.mjs +56 -0
- package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-vRJI5S-w.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-checkbox-widget-edit.component-P4cD_Nwg.mjs +25 -0
- package/fesm2022/acorex-platform-layouts-checkbox-widget-edit.component-P4cD_Nwg.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-m6bF8XFR.mjs +50 -0
- package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-m6bF8XFR.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-qeQRJePy.mjs +47 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-qeQRJePy.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-zeJXGXY8.mjs +178 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-zeJXGXY8.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-DJ6esclU.mjs +233 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-DJ6esclU.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-BrwycTWz.mjs +74 -0
- package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-BrwycTWz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-email-widget-column.component-ac8gqsFT.mjs +76 -0
- package/fesm2022/acorex-platform-layouts-email-widget-column.component-ac8gqsFT.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-email-widget-edit.component-m2dI7y9X.mjs +252 -0
- package/fesm2022/acorex-platform-layouts-email-widget-edit.component-m2dI7y9X.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-email-widget-view.component-XrV8va7z.mjs +111 -0
- package/fesm2022/acorex-platform-layouts-email-widget-view.component-XrV8va7z.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-8rtifIvM.mjs +108 -0
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-8rtifIvM.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-VeTkP3-n.mjs +89 -0
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-VeTkP3-n.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-file-widget-column.component-v7kAdIQ9.mjs +30 -0
- package/fesm2022/acorex-platform-layouts-file-widget-column.component-v7kAdIQ9.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-file-widget-edit.component-Wrq7ZL9R.mjs +203 -0
- package/fesm2022/acorex-platform-layouts-file-widget-edit.component-Wrq7ZL9R.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-file-widget-filter.component-1-NJh38j.mjs +30 -0
- package/fesm2022/acorex-platform-layouts-file-widget-filter.component-1-NJh38j.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-file-widget-view.component-mXBrKX0K.mjs +156 -0
- package/fesm2022/acorex-platform-layouts-file-widget-view.component-mXBrKX0K.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-gallery-widget-edit.component-cWNvVwum.mjs +192 -0
- package/fesm2022/acorex-platform-layouts-gallery-widget-edit.component-cWNvVwum.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-gallery-widget-filter.component-OCz0hj5i.mjs +30 -0
- package/fesm2022/acorex-platform-layouts-gallery-widget-filter.component-OCz0hj5i.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-xU52uaP0.mjs +176 -0
- package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-xU52uaP0.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-largetext-widget-edit.component-Um_eBRFi.mjs +40 -0
- package/fesm2022/acorex-platform-layouts-largetext-widget-edit.component-Um_eBRFi.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-Ts0MJe8O.mjs +46 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-Ts0MJe8O.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-l5nSr9Cm.mjs +119 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-l5nSr9Cm.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-gp5skvmz.mjs +181 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-gp5skvmz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-ftFXFj6k.mjs +57 -0
- package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-ftFXFj6k.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-map-widget-edit.component-SOQvPhmX.mjs +94 -0
- package/fesm2022/acorex-platform-layouts-map-widget-edit.component-SOQvPhmX.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-map-widget-view.component-1Lj9efbd.mjs +66 -0
- package/fesm2022/acorex-platform-layouts-map-widget-view.component-1Lj9efbd.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-W7ZY-W84.mjs +74 -0
- package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-W7ZY-W84.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-dAX8nirB.mjs +139 -0
- package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-dAX8nirB.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-9TJiFdq-.mjs +135 -0
- package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-9TJiFdq-.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-number-widget-edit.component-DDi-o_Zn.mjs +49 -0
- package/fesm2022/acorex-platform-layouts-number-widget-edit.component-DDi-o_Zn.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-number-widget-filter.component-DPGSzdNm.mjs +138 -0
- package/fesm2022/acorex-platform-layouts-number-widget-filter.component-DPGSzdNm.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-number-widget-view.component-hqkAR0LG.mjs +33 -0
- package/fesm2022/acorex-platform-layouts-number-widget-view.component-hqkAR0LG.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-password-widget-column.component-ic1jykZL.mjs +80 -0
- package/fesm2022/acorex-platform-layouts-password-widget-column.component-ic1jykZL.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-password-widget-edit.component-D8xI17yk.mjs +37 -0
- package/fesm2022/acorex-platform-layouts-password-widget-edit.component-D8xI17yk.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-password-widget-view.component-E2vtPKRO.mjs +112 -0
- package/fesm2022/acorex-platform-layouts-password-widget-view.component-E2vtPKRO.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-phone-widget-column.component-s04WZfzv.mjs +94 -0
- package/fesm2022/acorex-platform-layouts-phone-widget-column.component-s04WZfzv.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-MKzlZ0_B.mjs +318 -0
- package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-MKzlZ0_B.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-phone-widget-view.component-NEO22XO7.mjs +126 -0
- package/fesm2022/acorex-platform-layouts-phone-widget-view.component-NEO22XO7.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-P0YzXTIB.mjs +72 -0
- package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-P0YzXTIB.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-rich-text-widget-edit.component-ro2yg7PR.mjs +70 -0
- package/fesm2022/acorex-platform-layouts-rich-text-widget-edit.component-ro2yg7PR.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component--Rzxm2a6.mjs +37 -0
- package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component--Rzxm2a6.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-9FTkDGmq.mjs +46 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-9FTkDGmq.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-FpOQ12Ie.mjs +56 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-FpOQ12Ie.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-hGk-ZZ78.mjs +44 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-hGk-ZZ78.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-s9xq___Y.mjs +48 -0
- package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-s9xq___Y.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-signature-pad-widget-edit.component-W28Uk9zO.mjs +131 -0
- package/fesm2022/acorex-platform-layouts-signature-pad-widget-edit.component-W28Uk9zO.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-R40Ml757.mjs +44 -0
- package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-R40Ml757.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-string-widget-filter.component-4oZ6BVis.mjs +128 -0
- package/fesm2022/acorex-platform-layouts-string-widget-filter.component-4oZ6BVis.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-text-widget-column.component-qhh6MT79.mjs +50 -0
- package/fesm2022/acorex-platform-layouts-text-widget-column.component-qhh6MT79.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-text-widget-edit.component-TC127Dq8.mjs +165 -0
- package/fesm2022/acorex-platform-layouts-text-widget-edit.component-TC127Dq8.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-text-widget-view.component-65eOj0qR.mjs +69 -0
- package/fesm2022/acorex-platform-layouts-text-widget-view.component-65eOj0qR.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-uxOXR-bL.mjs +60 -0
- package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-uxOXR-bL.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-toggle-widget-edit.component-R44L1pgJ.mjs +28 -0
- package/fesm2022/acorex-platform-layouts-toggle-widget-edit.component-R44L1pgJ.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-toggle-widget-view.component-DTOeAUiy.mjs +52 -0
- package/fesm2022/acorex-platform-layouts-toggle-widget-view.component-DTOeAUiy.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts.mjs +3732 -0
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -0
- package/fesm2022/acorex-platform-mocks.mjs +332 -0
- package/fesm2022/acorex-platform-mocks.mjs.map +1 -0
- package/fesm2022/acorex-platform-native.mjs +154 -0
- package/fesm2022/acorex-platform-native.mjs.map +1 -0
- package/fesm2022/acorex-platform-schema.mjs +572 -0
- package/fesm2022/acorex-platform-schema.mjs.map +1 -0
- package/fesm2022/acorex-platform-workflow.mjs +350 -0
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -0
- package/fesm2022/acorex-platform.mjs +6 -0
- package/fesm2022/acorex-platform.mjs.map +1 -0
- package/index.d.ts +2 -0
- package/layouts/README.md +3 -0
- package/layouts/index.d.ts +4 -0
- package/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.d.ts +22 -0
- package/layouts/lib/admin/admin-child-layout/admin-child-layout.component.d.ts +21 -0
- package/layouts/lib/admin/admin-child-layout/admin-child-layout.module.d.ts +17 -0
- package/layouts/lib/admin/admin-child-layout/index.d.ts +3 -0
- package/layouts/lib/admin/admin-root-layout/admin-root-layout.component.d.ts +30 -0
- package/layouts/lib/admin/admin-root-layout/admin-root-layout.module.d.ts +25 -0
- package/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.d.ts +5 -0
- package/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.d.ts +10 -0
- package/layouts/lib/admin/admin-root-layout/index.d.ts +4 -0
- package/layouts/lib/admin/admin.module.d.ts +11 -0
- package/layouts/lib/admin/admin.routes.d.ts +2 -0
- package/layouts/lib/admin/custom-reuse.strategy.d.ts +8 -0
- package/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.d.ts +20 -0
- package/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.d.ts +54 -0
- package/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.d.ts +48 -0
- package/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.d.ts +41 -0
- package/layouts/lib/admin/entity-layout/entity-details-view/index.d.ts +2 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.d.ts +47 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/components/index.d.ts +5 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.d.ts +22 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.d.ts +35 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.d.ts +18 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.d.ts +22 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.d.ts +63 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/index.d.ts +4 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.d.ts +110 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.d.ts +41 -0
- package/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.d.ts +25 -0
- package/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.d.ts +31 -0
- package/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.d.ts +22 -0
- package/layouts/lib/admin/entity-layout/entity-quick-view/index.d.ts +1 -0
- package/layouts/lib/admin/entity-layout/index.d.ts +3 -0
- package/layouts/lib/admin/entity-layout/store/entity.actions.d.ts +48 -0
- package/layouts/lib/admin/entity-layout/store/entity.effects.d.ts +22 -0
- package/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.d.ts +28 -0
- package/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.d.ts +33 -0
- package/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.d.ts +31 -0
- package/layouts/lib/admin/entity.resolver.d.ts +4 -0
- package/layouts/lib/admin/index.d.ts +7 -0
- package/layouts/lib/admin/store/admin-layout.actions.d.ts +8 -0
- package/layouts/lib/admin/store/admin-layout.effects.d.ts +10 -0
- package/layouts/lib/admin/store/admin-layout.reducers.d.ts +24 -0
- package/layouts/lib/admin/store/admin-layout.selectors.d.ts +5 -0
- package/layouts/lib/admin/store/admin-layout.state.d.ts +14 -0
- package/layouts/lib/admin/store/index.d.ts +5 -0
- package/layouts/lib/layout.module.d.ts +9 -0
- package/layouts/lib/layout.routes.d.ts +2 -0
- package/layouts/lib/shared/components/content-view/content-view.page.d.ts +23 -0
- package/layouts/lib/shared/components/content-view/content-view.type.d.ts +16 -0
- package/layouts/lib/shared/components/error-401/error-401.component.d.ts +13 -0
- package/layouts/lib/shared/components/error-404/error-404.component.d.ts +8 -0
- package/layouts/lib/shared/components/error-offline/error-offline.component.d.ts +9 -0
- package/layouts/lib/shared/components/index.d.ts +8 -0
- package/layouts/lib/shared/components/logo/logo.component.d.ts +8 -0
- package/layouts/lib/shared/components/slots/footer-text-slot.component.d.ts +6 -0
- package/layouts/lib/shared/components/slots/navbar-slot.component.d.ts +10 -0
- package/layouts/lib/shared/components/slots/theme-slot.component.d.ts +8 -0
- package/layouts/lib/shared/entity/entity-registery.service.d.ts +34 -0
- package/layouts/lib/shared/entity/entity.class.d.ts +145 -0
- package/layouts/lib/shared/entity/entity.loader.d.ts +9 -0
- package/layouts/lib/shared/entity/index.d.ts +3 -0
- package/layouts/lib/shared/index.d.ts +4 -0
- package/layouts/lib/shared/services/index.d.ts +1 -0
- package/layouts/lib/shared/services/layout.service.d.ts +19 -0
- package/layouts/lib/shared/workflows/common.workflow.d.ts +52 -0
- package/layouts/lib/shared/workflows/error-handler.d.ts +8 -0
- package/layouts/lib/shared/workflows/index.d.ts +2 -0
- package/layouts/lib/widgets/avatar/avatar-widget-edit.component.d.ts +10 -0
- package/layouts/lib/widgets/avatar/avatar-widget-view.component.d.ts +8 -0
- package/layouts/lib/widgets/checkbox/checkbox-widget-column.component.d.ts +11 -0
- package/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.d.ts +6 -0
- package/layouts/lib/widgets/checkbox/checkbox-widget-view.component.d.ts +11 -0
- package/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.d.ts +17 -0
- package/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.d.ts +11 -0
- package/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.d.ts +11 -0
- package/layouts/lib/widgets/common-widgets.module.d.ts +32 -0
- package/layouts/lib/widgets/dateTime/dateTime-widget-column.component.d.ts +11 -0
- package/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.d.ts +24 -0
- package/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.d.ts +16 -0
- package/layouts/lib/widgets/dateTime/dateTime-widget-view.component.d.ts +11 -0
- package/layouts/lib/widgets/email/email-widget-column.component.d.ts +16 -0
- package/layouts/lib/widgets/email/email-widget-edit.component.d.ts +28 -0
- package/layouts/lib/widgets/email/email-widget-view.component.d.ts +16 -0
- package/layouts/lib/widgets/file/file-widget-column.component.d.ts +8 -0
- package/layouts/lib/widgets/file/file-widget-edit.component.d.ts +17 -0
- package/layouts/lib/widgets/file/file-widget-filter.component.d.ts +6 -0
- package/layouts/lib/widgets/file/file-widget-view.component.d.ts +17 -0
- package/layouts/lib/widgets/gallery/gallery-widget-edit.component.d.ts +15 -0
- package/layouts/lib/widgets/gallery/gallery-widget-filter.component.d.ts +6 -0
- package/layouts/lib/widgets/gallery/gallery-widget-types.d.ts +10 -0
- package/layouts/lib/widgets/gallery/gallery-widget-view.component.d.ts +16 -0
- package/layouts/lib/widgets/index.d.ts +1 -0
- package/layouts/lib/widgets/lookup/lookup-widget-column.component.d.ts +16 -0
- package/layouts/lib/widgets/lookup/lookup-widget-edit.component.d.ts +15 -0
- package/layouts/lib/widgets/lookup/lookup-widget-filter.component.d.ts +16 -0
- package/layouts/lib/widgets/lookup/lookup-widget-view.component.d.ts +17 -0
- package/layouts/lib/widgets/map/map-widget-edit.component.d.ts +15 -0
- package/layouts/lib/widgets/map/map-widget-view.component.d.ts +17 -0
- package/layouts/lib/widgets/messenger/messenger-widget-column.component.d.ts +15 -0
- package/layouts/lib/widgets/messenger/messenger-widget-edit.component.d.ts +14 -0
- package/layouts/lib/widgets/messenger/messenger-widget-view.component.d.ts +17 -0
- package/layouts/lib/widgets/number/number-widget-edit.component.d.ts +7 -0
- package/layouts/lib/widgets/number/number-widget-view.component.d.ts +8 -0
- package/layouts/lib/widgets/password/change-password.component.d.ts +16 -0
- package/layouts/lib/widgets/password/password-widget-column.component.d.ts +14 -0
- package/layouts/lib/widgets/password/password-widget-edit.component.d.ts +6 -0
- package/layouts/lib/widgets/password/password-widget-view.component.d.ts +18 -0
- package/layouts/lib/widgets/phone/phone-widget-column.component.d.ts +15 -0
- package/layouts/lib/widgets/phone/phone-widget-edit.component.d.ts +29 -0
- package/layouts/lib/widgets/phone/phone-widget-view.component.d.ts +18 -0
- package/layouts/lib/widgets/rich-text/rich-text-widget-column.component.d.ts +11 -0
- package/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.d.ts +33 -0
- package/layouts/lib/widgets/rich-text/rich-text-widget-view.component.d.ts +10 -0
- package/layouts/lib/widgets/selection-list/selection-list-widget-column.component.d.ts +16 -0
- package/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.d.ts +10 -0
- package/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.d.ts +9 -0
- package/layouts/lib/widgets/selection-list/selection-list-widget-view.component.d.ts +15 -0
- package/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.d.ts +19 -0
- package/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.d.ts +8 -0
- package/layouts/lib/widgets/text/largetext-widget-edit.component.d.ts +6 -0
- package/layouts/lib/widgets/text/text-widget-column.component.d.ts +11 -0
- package/layouts/lib/widgets/text/text-widget-edit.component.d.ts +23 -0
- package/layouts/lib/widgets/text/text-widget-view.component.d.ts +11 -0
- package/layouts/lib/widgets/toggle/toggle-widget-column.component.d.ts +11 -0
- package/layouts/lib/widgets/toggle/toggle-widget-edit.component.d.ts +6 -0
- package/layouts/lib/widgets/toggle/toggle-widget-view.component.d.ts +11 -0
- package/mocks/README.md +3 -0
- package/mocks/index.d.ts +3 -0
- package/mocks/lib/mocks.module.d.ts +7 -0
- package/mocks/lib/services/mocker.service.d.ts +29 -0
- package/mocks/lib/storage/storage.mock.service.d.ts +25 -0
- package/native/README.md +4 -0
- package/native/index.d.ts +2 -0
- package/native/lib/native.module.d.ts +6 -0
- package/native/lib/native.service.d.ts +26 -0
- package/package.json +67 -0
- package/schema/README.md +3 -0
- package/schema/index.d.ts +11 -0
- package/schema/lib/component-loader.d.ts +24 -0
- package/schema/lib/formats.d.ts +8 -0
- package/schema/lib/operators.d.ts +22 -0
- package/schema/lib/schema-registery.service.d.ts +20 -0
- package/schema/lib/schema.d.ts +21 -0
- package/schema/lib/schema.module.d.ts +12 -0
- package/schema/lib/widget/widget-base.d.ts +43 -0
- package/schema/lib/widget/widget-column-renderer.d.ts +27 -0
- package/schema/lib/widget/widget-filter-renderer.d.ts +30 -0
- package/schema/lib/widget/widget-renderer.d.ts +26 -0
- package/schema/lib/widget/widget-token.d.ts +15 -0
- package/workflow/README.md +4 -0
- package/workflow/index.d.ts +6 -0
- package/workflow/lib/errors.types.d.ts +4 -0
- package/workflow/lib/workflow-event-dispatcher.service.d.ts +10 -0
- package/workflow/lib/workflow-registery.service.d.ts +17 -0
- package/workflow/lib/workflow.module.d.ts +25 -0
- package/workflow/lib/workflow.service.d.ts +23 -0
- package/workflow/lib/workflow.types.d.ts +61 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export declare const AXPEntityQuickViewAction: import("@ngrx/store").ActionCreator<"[Entity] QuickView", (props: {
|
|
2
|
+
payload: {
|
|
3
|
+
module: string;
|
|
4
|
+
entity: string;
|
|
5
|
+
data: any;
|
|
6
|
+
};
|
|
7
|
+
}) => {
|
|
8
|
+
payload: {
|
|
9
|
+
module: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
data: any;
|
|
12
|
+
};
|
|
13
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Entity] QuickView">>;
|
|
14
|
+
export declare const AXPEntityListViewAction: import("@ngrx/store").ActionCreator<"[Entity] ListView", (props: {
|
|
15
|
+
payload: {
|
|
16
|
+
module: string;
|
|
17
|
+
entity: string;
|
|
18
|
+
};
|
|
19
|
+
}) => {
|
|
20
|
+
payload: {
|
|
21
|
+
module: string;
|
|
22
|
+
entity: string;
|
|
23
|
+
};
|
|
24
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Entity] ListView">>;
|
|
25
|
+
export declare const AXPEntityDetailViewAction: import("@ngrx/store").ActionCreator<"[Entity] DetailView", (props: {
|
|
26
|
+
payload: {
|
|
27
|
+
module: string;
|
|
28
|
+
entity: string;
|
|
29
|
+
id: string;
|
|
30
|
+
};
|
|
31
|
+
}) => {
|
|
32
|
+
payload: {
|
|
33
|
+
module: string;
|
|
34
|
+
entity: string;
|
|
35
|
+
id: string;
|
|
36
|
+
};
|
|
37
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Entity] DetailView">>;
|
|
38
|
+
export declare const AXPEntityReloadAction: import("@ngrx/store").ActionCreator<"[Entity] Reload", (props: {
|
|
39
|
+
payload: {
|
|
40
|
+
module: string;
|
|
41
|
+
entity: string;
|
|
42
|
+
};
|
|
43
|
+
}) => {
|
|
44
|
+
payload: {
|
|
45
|
+
module: string;
|
|
46
|
+
entity: string;
|
|
47
|
+
};
|
|
48
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Entity] Reload">>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Actions } from '@ngrx/effects';
|
|
2
|
+
import { Store } from '@ngrx/store';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXPEntityEffects {
|
|
5
|
+
private actions$;
|
|
6
|
+
private store;
|
|
7
|
+
private sessionService;
|
|
8
|
+
private entityRegistery;
|
|
9
|
+
private entityCreateFactory;
|
|
10
|
+
private entityModifyFactory;
|
|
11
|
+
private popupService;
|
|
12
|
+
private dialogService;
|
|
13
|
+
private toastService;
|
|
14
|
+
private formatService;
|
|
15
|
+
private platform;
|
|
16
|
+
constructor(actions$: Actions, store: Store);
|
|
17
|
+
private quickView$;
|
|
18
|
+
private detailView$;
|
|
19
|
+
private listView$;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEntityEffects, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPEntityEffects>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AXPWorkflow, AXPWorkflowAction, AXPWorkflowContext } from '@acorex/platform/workflow';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const AXPEntityCreateEvent: {
|
|
4
|
+
(payload: {
|
|
5
|
+
module: string;
|
|
6
|
+
entity: string;
|
|
7
|
+
}): {
|
|
8
|
+
type: string;
|
|
9
|
+
payload: {
|
|
10
|
+
module: string;
|
|
11
|
+
entity: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
type: string;
|
|
15
|
+
};
|
|
16
|
+
export declare class AXPEntityCreatePopupAction extends AXPWorkflowAction {
|
|
17
|
+
private entityRegistery;
|
|
18
|
+
private popupService;
|
|
19
|
+
private platform;
|
|
20
|
+
private entityCreateFactory;
|
|
21
|
+
execute(context: AXPWorkflowContext): Promise<void>;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEntityCreatePopupAction, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPEntityCreatePopupAction>;
|
|
24
|
+
}
|
|
25
|
+
export declare class AXPEntityCreateSubmittedAction extends AXPWorkflowAction {
|
|
26
|
+
execute(context: AXPWorkflowContext): Promise<void>;
|
|
27
|
+
}
|
|
28
|
+
export declare const AXPCreateEntityWorkflow: AXPWorkflow;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { AXPWorkflow, AXPWorkflowAction, AXPWorkflowContext, AXPWorkflowFunction } from '@acorex/platform/workflow';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const AXPEntityDeletedEvent: {
|
|
4
|
+
(payload: {
|
|
5
|
+
module: string;
|
|
6
|
+
entity: string;
|
|
7
|
+
id: string;
|
|
8
|
+
}): {
|
|
9
|
+
type: string;
|
|
10
|
+
payload: {
|
|
11
|
+
module: string;
|
|
12
|
+
entity: string;
|
|
13
|
+
id: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
type: string;
|
|
17
|
+
};
|
|
18
|
+
export declare class AXPEntityPerformDeleteAction extends AXPWorkflowAction {
|
|
19
|
+
private entityRegistery;
|
|
20
|
+
private dialogService;
|
|
21
|
+
private loadingDialog;
|
|
22
|
+
execute(context: AXPWorkflowContext): Promise<void>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEntityPerformDeleteAction, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPEntityPerformDeleteAction>;
|
|
25
|
+
}
|
|
26
|
+
export declare class AXPMyCustomFunc extends AXPWorkflowFunction {
|
|
27
|
+
private entityRegistery;
|
|
28
|
+
private dialogService;
|
|
29
|
+
execute(val: string): Promise<boolean>;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPMyCustomFunc, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPMyCustomFunc>;
|
|
32
|
+
}
|
|
33
|
+
export declare const AXPDeleteEntityWorkflow: AXPWorkflow;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AXPWorkflow, AXPWorkflowAction, AXPWorkflowContext } from '@acorex/platform/workflow';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const AXPEntityModifyEvent: {
|
|
4
|
+
(payload: {
|
|
5
|
+
module: string;
|
|
6
|
+
entity: string;
|
|
7
|
+
updateValues: any;
|
|
8
|
+
}): {
|
|
9
|
+
type: string;
|
|
10
|
+
payload: {
|
|
11
|
+
module: string;
|
|
12
|
+
entity: string;
|
|
13
|
+
updateValues: any;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
type: string;
|
|
17
|
+
};
|
|
18
|
+
export declare class AXPEntityModifyPopupAction extends AXPWorkflowAction {
|
|
19
|
+
private popupService;
|
|
20
|
+
private platform;
|
|
21
|
+
private entityRegistery;
|
|
22
|
+
private entityCreateFactory;
|
|
23
|
+
execute(context: AXPWorkflowContext): Promise<void>;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEntityModifyPopupAction, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPEntityModifyPopupAction>;
|
|
26
|
+
}
|
|
27
|
+
export declare class AXPEntityModifyConfirmedAction extends AXPWorkflowAction {
|
|
28
|
+
private entityRegistery;
|
|
29
|
+
execute(context: AXPWorkflowContext): Promise<void>;
|
|
30
|
+
}
|
|
31
|
+
export declare const AXPModifyEntityWorkflow: AXPWorkflow;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ResolveFn } from '@angular/router';
|
|
2
|
+
import { AXPEntityDetailViewLoader, AXPListViewLoader } from './entity-layout';
|
|
3
|
+
export declare const AXPListViewLoaderResolver: ResolveFn<Promise<AXPListViewLoader>>;
|
|
4
|
+
export declare const AXPEntityDetailViewLoaderResolver: ResolveFn<Promise<AXPEntityDetailViewLoader>>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const AXPWindowResizeAction: import("@ngrx/store").ActionCreator<"[Layout] Resize", () => import("@ngrx/store/src/models").TypedAction<"[Layout] Resize">>;
|
|
2
|
+
export declare const AXPLayoutRootDrawerClose: import("@ngrx/store").ActionCreator<"[Root Drawer] Close", () => import("@ngrx/store/src/models").TypedAction<"[Root Drawer] Close">>;
|
|
3
|
+
export declare const AXPLayoutRootDrawerToggle: import("@ngrx/store").ActionCreator<"[Root Drawer] Toggle", () => import("@ngrx/store/src/models").TypedAction<"[Root Drawer] Toggle">>;
|
|
4
|
+
export declare const AXPLayoutChildDrawerClose: import("@ngrx/store").ActionCreator<"[Child Drawer] Close", () => import("@ngrx/store/src/models").TypedAction<"[Child Drawer] Close">>;
|
|
5
|
+
export declare const AXPLayoutChildDrawerToggle: import("@ngrx/store").ActionCreator<"[Child Drawer] Toggle", () => import("@ngrx/store/src/models").TypedAction<"[Child Drawer] Toggle">>;
|
|
6
|
+
export declare const AXPLayoutThemeDarkToggleAction: import("@ngrx/store").ActionCreator<"[Theme] Toggle Dark", () => import("@ngrx/store/src/models").TypedAction<"[Theme] Toggle Dark">>;
|
|
7
|
+
export declare const AXPLoadingShowAction: import("@ngrx/store").ActionCreator<"[Theme] Loading Show", () => import("@ngrx/store/src/models").TypedAction<"[Theme] Loading Show">>;
|
|
8
|
+
export declare const AXPLoadingHideAction: import("@ngrx/store").ActionCreator<"[Theme] Loading Hide", () => import("@ngrx/store/src/models").TypedAction<"[Theme] Loading Hide">>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXPLayoutEffects {
|
|
3
|
+
private platform;
|
|
4
|
+
private actions$;
|
|
5
|
+
private store$;
|
|
6
|
+
resize$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Layout] Resize">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
7
|
+
switchDark$: import("rxjs").Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLayoutEffects, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPLayoutEffects>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const AXPLayoutFeature: {
|
|
2
|
+
name: "layout";
|
|
3
|
+
reducer: import("@ngrx/store").ActionReducer<import("./admin-layout.state").AXPAdminLayoutState, import("@ngrx/store").Action>;
|
|
4
|
+
selectLayoutState: import("@ngrx/store").MemoizedSelector<Record<string, any>, import("./admin-layout.state").AXPAdminLayoutState, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => import("./admin-layout.state").AXPAdminLayoutState>;
|
|
5
|
+
selectTheme: import("@ngrx/store").MemoizedSelector<Record<string, any>, {
|
|
6
|
+
dark: boolean;
|
|
7
|
+
}, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => {
|
|
8
|
+
dark: boolean;
|
|
9
|
+
}>;
|
|
10
|
+
selectScreen: import("@ngrx/store").MemoizedSelector<Record<string, any>, {
|
|
11
|
+
small: boolean;
|
|
12
|
+
}, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => {
|
|
13
|
+
small: boolean;
|
|
14
|
+
}>;
|
|
15
|
+
selectDrawer: import("@ngrx/store").MemoizedSelector<Record<string, any>, {
|
|
16
|
+
root: boolean;
|
|
17
|
+
child: boolean;
|
|
18
|
+
}, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => {
|
|
19
|
+
root: boolean;
|
|
20
|
+
child: boolean;
|
|
21
|
+
}>;
|
|
22
|
+
selectLoading: import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => boolean>;
|
|
23
|
+
};
|
|
24
|
+
export declare const name: "layout", reducer: import("@ngrx/store").ActionReducer<import("./admin-layout.state").AXPAdminLayoutState, import("@ngrx/store").Action>, selectLayoutState: import("@ngrx/store").MemoizedSelector<Record<string, any>, import("./admin-layout.state").AXPAdminLayoutState, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => import("./admin-layout.state").AXPAdminLayoutState>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const getRootDrawer: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("./admin-layout.state").AXPAdminLayoutState) => boolean>;
|
|
2
|
+
export declare const getChildDrawer: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("./admin-layout.state").AXPAdminLayoutState) => boolean>;
|
|
3
|
+
export declare const isSmallScreen: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("./admin-layout.state").AXPAdminLayoutState) => boolean>;
|
|
4
|
+
export declare const isDarkTheme: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("./admin-layout.state").AXPAdminLayoutState) => boolean>;
|
|
5
|
+
export declare const isLoading: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("./admin-layout.state").AXPAdminLayoutState) => boolean>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
import * as i2 from "@acorex/platform/common";
|
|
4
|
+
import * as i3 from "@acorex/platform/workflow";
|
|
5
|
+
export declare class AXPLayoutModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLayoutModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPLayoutModule, never, [typeof i1.RouterModule, typeof i2.AXPCommonModule, typeof i2.AXPComponentSlotModule, typeof i3.AXPWorkflowModule], [typeof i1.RouterModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXPLayoutModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnDestroy, OnInit, Signal, WritableSignal } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { AXPStaticContentDataSource } from './content-view.type';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AXPContentViewComponent implements OnInit, OnDestroy {
|
|
7
|
+
dataSource: AXPStaticContentDataSource;
|
|
8
|
+
hasSidebar: boolean;
|
|
9
|
+
router: Router;
|
|
10
|
+
route: ActivatedRoute;
|
|
11
|
+
protected isOpen: boolean;
|
|
12
|
+
protected activeFragment: WritableSignal<string>;
|
|
13
|
+
protected windowWidth: WritableSignal<number>;
|
|
14
|
+
protected isSM: Signal<boolean>;
|
|
15
|
+
protected fragmentSubscription: Subscription;
|
|
16
|
+
onResize(): void;
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
protected toggleCollapse(collapsed: boolean): void;
|
|
19
|
+
protected itemClick(fragment?: string): void;
|
|
20
|
+
ngOnDestroy(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContentViewComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPContentViewComponent, "axp-content-view", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "hasSidebar": { "alias": "hasSideBar"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface AXPContentItem {
|
|
2
|
+
type: 'paragraph' | 'list';
|
|
3
|
+
text: string | string[];
|
|
4
|
+
}
|
|
5
|
+
export interface AXPSectionItem {
|
|
6
|
+
title?: string;
|
|
7
|
+
fragment?: string;
|
|
8
|
+
icon?: string;
|
|
9
|
+
children?: AXPSectionItem[];
|
|
10
|
+
content?: AXPContentItem[];
|
|
11
|
+
}
|
|
12
|
+
export interface AXPStaticContentDataSource {
|
|
13
|
+
title: string;
|
|
14
|
+
subTitle?: string;
|
|
15
|
+
sections: AXPSectionItem[];
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPError401Component implements OnInit {
|
|
4
|
+
private sessionService;
|
|
5
|
+
private router;
|
|
6
|
+
protected isAuthorized$: import("rxjs").Observable<boolean>;
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
protected handleHomeClick(): void;
|
|
10
|
+
protected handleSignInClick(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPError401Component, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPError401Component, "axp-error-401", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXPError404Component {
|
|
3
|
+
private sessionService;
|
|
4
|
+
private router;
|
|
5
|
+
goHome(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPError404Component, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPError404Component, "axp-error-404", never, {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPErrorOfflineComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
goHome(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPErrorOfflineComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPErrorOfflineComponent, "axp-error-offline", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './content-view/content-view.page';
|
|
2
|
+
export * from './content-view/content-view.type';
|
|
3
|
+
export * from './error-401/error-401.component';
|
|
4
|
+
export * from './error-404/error-404.component';
|
|
5
|
+
export * from './error-offline/error-offline.component';
|
|
6
|
+
export * from './logo/logo.component';
|
|
7
|
+
export * from './slots/footer-text-slot.component';
|
|
8
|
+
export * from './slots/navbar-slot.component';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXPLogoComponent {
|
|
3
|
+
source: any;
|
|
4
|
+
protected logoType: string;
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLogoComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPLogoComponent, "axp-logo", never, { "source": { "alias": "source"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXPFooterTextSlotComponent {
|
|
3
|
+
text: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPFooterTextSlotComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPFooterTextSlotComponent, "ng-component", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AXPMenuItem } from '@acorex/platform/common';
|
|
2
|
+
import { Action } from '@ngrx/store';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXPNavBarSlotComponent {
|
|
5
|
+
items: AXPMenuItem[];
|
|
6
|
+
private store;
|
|
7
|
+
protected handleCommand(action?: Action): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPNavBarSlotComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPNavBarSlotComponent, "ng-component", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXPThemeSlotComponent {
|
|
3
|
+
private store;
|
|
4
|
+
protected isDark: import("rxjs").Observable<boolean>;
|
|
5
|
+
switchMode(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPThemeSlotComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPThemeSlotComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AXPEntityConfig } from "./entity.class";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPEntityRegistryService {
|
|
4
|
+
private entities;
|
|
5
|
+
private loader;
|
|
6
|
+
/**
|
|
7
|
+
* Registers a new entity configuration. Entities are identified uniquely by a combination
|
|
8
|
+
* of their module and name.
|
|
9
|
+
*
|
|
10
|
+
* @param config The configuration object of the entity to be registered.
|
|
11
|
+
*/
|
|
12
|
+
register(config: AXPEntityConfig): void;
|
|
13
|
+
/**
|
|
14
|
+
* Resolves an entity configuration based on module and entity name. If the configuration
|
|
15
|
+
* is not already registered, attempts to load it dynamically. Throws an error if the
|
|
16
|
+
* entity cannot be found or loaded.
|
|
17
|
+
*
|
|
18
|
+
* @param moduleName The module name of the entity.
|
|
19
|
+
* @param entityName The name of the entity.
|
|
20
|
+
* @returns A promise resolving to the entity configuration.
|
|
21
|
+
* @throws Error if the entity configuration cannot be resolved.
|
|
22
|
+
*/
|
|
23
|
+
resolve(moduleName: string, entityName: string): Promise<AXPEntityConfig>;
|
|
24
|
+
/**
|
|
25
|
+
* Creates a unique key for an entity based on its module and name.
|
|
26
|
+
*
|
|
27
|
+
* @param moduleName The module name of the entity.
|
|
28
|
+
* @param entityName The name of the entity.
|
|
29
|
+
* @returns The unique key for the entity.
|
|
30
|
+
*/
|
|
31
|
+
private createEntityKey;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEntityRegistryService, never>;
|
|
33
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPEntityRegistryService>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { AXDataSourceConfig } from '@acorex/components/common';
|
|
2
|
+
import { AXPComponentOptions, AXPDisplayFormat, AXPValidationRules } from '@acorex/platform/schema';
|
|
3
|
+
export interface AXPLayoutGridPositions {
|
|
4
|
+
start?: number;
|
|
5
|
+
span?: number;
|
|
6
|
+
}
|
|
7
|
+
export interface AXPEntityPropertyLayoutOptions {
|
|
8
|
+
positions: {
|
|
9
|
+
default?: AXPLayoutGridPositions;
|
|
10
|
+
sm?: AXPLayoutGridPositions;
|
|
11
|
+
md?: AXPLayoutGridPositions;
|
|
12
|
+
lg?: AXPLayoutGridPositions;
|
|
13
|
+
xl?: AXPLayoutGridPositions;
|
|
14
|
+
xxl?: AXPLayoutGridPositions;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
export interface AXPEntityProperty {
|
|
18
|
+
name: string;
|
|
19
|
+
title: string;
|
|
20
|
+
description?: string;
|
|
21
|
+
schema: string;
|
|
22
|
+
layout?: AXPEntityPropertyLayoutOptions;
|
|
23
|
+
canEdit: boolean;
|
|
24
|
+
canInsert: boolean;
|
|
25
|
+
canFilter?: boolean;
|
|
26
|
+
canInlineFilter?: boolean;
|
|
27
|
+
canSort?: boolean;
|
|
28
|
+
visible?: boolean | string;
|
|
29
|
+
formats?: AXPDisplayFormat;
|
|
30
|
+
validationRules?: AXPValidationRules;
|
|
31
|
+
component?: {
|
|
32
|
+
common?: {
|
|
33
|
+
options: AXPComponentOptions;
|
|
34
|
+
};
|
|
35
|
+
view?: {
|
|
36
|
+
options: AXPComponentOptions;
|
|
37
|
+
};
|
|
38
|
+
edit?: {
|
|
39
|
+
options: AXPComponentOptions;
|
|
40
|
+
};
|
|
41
|
+
filter?: {
|
|
42
|
+
options: AXPComponentOptions;
|
|
43
|
+
};
|
|
44
|
+
column?: {
|
|
45
|
+
options: AXPComponentOptions;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
export interface AXPEntityConfig {
|
|
50
|
+
module: string;
|
|
51
|
+
name: string;
|
|
52
|
+
title: string;
|
|
53
|
+
formats?: AXPDisplayFormat;
|
|
54
|
+
properties: AXPEntityProperty[];
|
|
55
|
+
dataSource: AXDataSourceConfig;
|
|
56
|
+
views: {
|
|
57
|
+
list: AXPEntityListConfig;
|
|
58
|
+
lookup?: any;
|
|
59
|
+
quickView?: AXPEntityViewConfig;
|
|
60
|
+
detailView?: AXPEntityViewConfig;
|
|
61
|
+
createView?: AXPEntityViewConfig;
|
|
62
|
+
};
|
|
63
|
+
commands?: {
|
|
64
|
+
create?: (values: {
|
|
65
|
+
[key: string]: any;
|
|
66
|
+
}) => Promise<any>;
|
|
67
|
+
delete?: (id: string) => Promise<any>;
|
|
68
|
+
update?: (id: string, values: {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
}) => Promise<any>;
|
|
71
|
+
};
|
|
72
|
+
actions?: {
|
|
73
|
+
[key: string]: {
|
|
74
|
+
title: string;
|
|
75
|
+
execute: (...args: any[]) => Promise<any> | string;
|
|
76
|
+
permissions?: string[];
|
|
77
|
+
target: 'selected' | 'single' | 'entity';
|
|
78
|
+
priority: 'primary' | 'secondary';
|
|
79
|
+
type: 'create' | 'update' | 'delete';
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
export interface AXPEntityViewRootSectionConfig {
|
|
84
|
+
properties: string[];
|
|
85
|
+
sections?: AXPEntityViewChildSectionConfig[];
|
|
86
|
+
}
|
|
87
|
+
export interface AXPEntityViewChildSectionConfig extends AXPEntityViewRootSectionConfig {
|
|
88
|
+
title: string;
|
|
89
|
+
name: string;
|
|
90
|
+
description?: string;
|
|
91
|
+
options?: {
|
|
92
|
+
showPropTitle: boolean;
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
export interface AXPEntityViewConfig {
|
|
96
|
+
root: AXPEntityViewRootSectionConfig;
|
|
97
|
+
}
|
|
98
|
+
export interface AXPEntityListConfig {
|
|
99
|
+
title: string;
|
|
100
|
+
views: AXPEntityListViewConfig[];
|
|
101
|
+
}
|
|
102
|
+
export interface AXPEntityListViewConfig {
|
|
103
|
+
fixed: boolean;
|
|
104
|
+
title: string;
|
|
105
|
+
name: string;
|
|
106
|
+
columns: AXPEntityListDisplayColumnConfig[];
|
|
107
|
+
conditions: AXPEntityListConditionConfig[];
|
|
108
|
+
inlineConditions?: AXPEntityListConditionConfig[];
|
|
109
|
+
sorts: AXPEntityListSortConfig[];
|
|
110
|
+
}
|
|
111
|
+
export declare const AXPEntityListViewConfigEmpty: AXPEntityListViewConfig;
|
|
112
|
+
export interface AXPEntityListColumnConfig {
|
|
113
|
+
name: string;
|
|
114
|
+
title: string;
|
|
115
|
+
schema: string;
|
|
116
|
+
}
|
|
117
|
+
export interface AXPEntityListDisplayColumnConfig {
|
|
118
|
+
name: string;
|
|
119
|
+
visible: boolean;
|
|
120
|
+
schema: string;
|
|
121
|
+
title: string;
|
|
122
|
+
displayFormat?: string;
|
|
123
|
+
sortOptions: {
|
|
124
|
+
enabled?: boolean;
|
|
125
|
+
property: string;
|
|
126
|
+
};
|
|
127
|
+
filterOptions: {
|
|
128
|
+
enabled?: boolean;
|
|
129
|
+
property: string;
|
|
130
|
+
};
|
|
131
|
+
options?: {
|
|
132
|
+
[key: string]: any;
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
export interface AXPEntityListConditionConfig {
|
|
136
|
+
name: string;
|
|
137
|
+
operator: string;
|
|
138
|
+
value: any;
|
|
139
|
+
}
|
|
140
|
+
export interface AXPEntityListSortConfig {
|
|
141
|
+
name: string;
|
|
142
|
+
dir: 'asc' | 'desc';
|
|
143
|
+
}
|
|
144
|
+
export declare function convertPropertyToColumn(property: AXPEntityProperty): AXPEntityListDisplayColumnConfig;
|
|
145
|
+
export declare function convertPropertiesToColumns(...propertis: AXPEntityProperty[]): AXPEntityListDisplayColumnConfig[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InjectionToken } from "@angular/core";
|
|
2
|
+
import { AXPEntityConfig } from "./entity.class";
|
|
3
|
+
export interface AXPEntityLoader {
|
|
4
|
+
get(moduleName: string, entityName: string): Promise<AXPEntityConfig | null>;
|
|
5
|
+
}
|
|
6
|
+
export declare class AXEntityLoaderDefault implements AXPEntityLoader {
|
|
7
|
+
get(moduleName: string, entityName: string): Promise<AXPEntityConfig | null>;
|
|
8
|
+
}
|
|
9
|
+
export declare const AXP_ENTITY_LOADER: InjectionToken<AXPEntityLoader>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './layout.service';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPLayoutService {
|
|
4
|
+
private minimumDisplayTime;
|
|
5
|
+
private navigationLoadingSubject;
|
|
6
|
+
private navigationLoadingTaskCount;
|
|
7
|
+
private navigationLoadingStateActive;
|
|
8
|
+
get navigationLoading$(): Observable<boolean>;
|
|
9
|
+
setNavigationLoading(value: boolean): void;
|
|
10
|
+
private updateNavigationLoadingState;
|
|
11
|
+
private overlayLoadingSubject;
|
|
12
|
+
private overlayLoadingTaskCount;
|
|
13
|
+
private overlayLoadingStateActive;
|
|
14
|
+
get overlayLoading$(): Observable<boolean>;
|
|
15
|
+
setOverlayLoading(value: boolean): void;
|
|
16
|
+
private updateOverlayLoadingState;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLayoutService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPLayoutService>;
|
|
19
|
+
}
|