@acorex/platform 18.1.4 → 18.1.6
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/common/lib/app/app-startup.service.d.ts +16 -0
- package/common/lib/app/application.types.d.ts +4 -2
- package/common/lib/app/index.d.ts +1 -0
- package/common/lib/common.module.d.ts +4 -1
- package/common/lib/configs/app.config.d.ts +1 -0
- package/common/lib/data/data-provider.types.d.ts +1 -0
- package/common/lib/data/data.types.d.ts +14 -0
- package/common/lib/data/dexie-storage.service.d.ts +7 -5
- package/common/lib/data/entity-data-seeder.d.ts +12 -0
- package/common/lib/data/entity-storage-service.d.ts +66 -0
- package/common/lib/data/index.d.ts +3 -2
- package/common/lib/layout/menu/index.d.ts +2 -0
- package/common/lib/layout/menu/menu.provider.d.ts +15 -0
- package/common/lib/layout/menu/menu.service.d.ts +12 -0
- package/common/lib/layout/menu/menu.types.d.ts +8 -1
- package/common/lib/layout/theme/components/slots/index.d.ts +0 -1
- package/common/lib/layout/theme/store/admin-layout.actions.d.ts +0 -1
- package/common/lib/layout/theme/store/admin-layout.effects.d.ts +1 -2
- package/common/lib/layout/theme/store/admin-layout.reducers.d.ts +0 -5
- package/common/lib/layout/theme/store/admin-layout.selectors.d.ts +0 -1
- package/common/lib/layout/theme/store/admin-layout.state.d.ts +0 -3
- package/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.d.ts +1 -1
- package/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.d.ts +2 -0
- package/common/lib/schema/widgets/lookup/lookup-widget-edit.component.d.ts +1 -0
- package/common/lib/settings/index.d.ts +1 -1
- package/common/lib/settings/settings.provider.d.ts +7 -0
- package/common/lib/settings/settings.service.d.ts +8 -4
- package/common/lib/settings/settings.types.d.ts +2 -3
- package/common/lib/store/common.actions.d.ts +1 -2
- package/common/lib/store/common.effects.d.ts +5 -3
- package/common/lib/workflows/common.workflow.d.ts +2 -0
- package/core/utils/data-conditioner.d.ts +2 -5
- package/esm2022/common/lib/app/app-startup.service.mjs +40 -0
- package/esm2022/common/lib/app/application.types.mjs +1 -1
- package/esm2022/common/lib/app/index.mjs +2 -1
- package/esm2022/common/lib/common.module.mjs +56 -19
- package/esm2022/common/lib/configs/app.config.mjs +2 -1
- package/esm2022/common/lib/data/data-provider.types.mjs +1 -1
- package/esm2022/common/lib/data/data.types.mjs +2 -0
- package/esm2022/common/lib/data/dexie-storage.service.mjs +98 -4
- package/esm2022/common/lib/data/entity-data-seeder.mjs +25 -0
- package/esm2022/common/lib/data/entity-storage-service.mjs +63 -0
- package/esm2022/common/lib/data/index.mjs +4 -3
- package/esm2022/common/lib/layout/menu/index.mjs +3 -1
- package/esm2022/common/lib/layout/menu/menu.provider.mjs +60 -0
- package/esm2022/common/lib/layout/menu/menu.service.mjs +73 -0
- package/esm2022/common/lib/layout/menu/menu.types.mjs +1 -1
- package/esm2022/common/lib/layout/theme/components/slots/index.mjs +1 -2
- package/esm2022/common/lib/layout/theme/store/admin-layout.actions.mjs +1 -2
- package/esm2022/common/lib/layout/theme/store/admin-layout.effects.mjs +6 -14
- package/esm2022/common/lib/layout/theme/store/admin-layout.reducers.mjs +24 -21
- package/esm2022/common/lib/layout/theme/store/admin-layout.selectors.mjs +1 -2
- package/esm2022/common/lib/layout/theme/store/admin-layout.state.mjs +1 -4
- package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-edit.component.mjs +8 -2
- package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +15 -9
- package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +64 -15
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +44 -16
- package/esm2022/common/lib/schema/widgets/number/number-widget-edit.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.mjs +10 -6
- package/esm2022/common/lib/settings/index.mjs +2 -2
- package/esm2022/common/lib/settings/settings.provider.mjs +35 -0
- package/esm2022/common/lib/settings/settings.service.mjs +40 -7
- package/esm2022/common/lib/settings/settings.types.mjs +1 -1
- package/esm2022/common/lib/store/common.actions.mjs +2 -3
- package/esm2022/common/lib/store/common.effects.mjs +13 -10
- package/esm2022/common/lib/workflows/common.workflow.mjs +7 -4
- package/esm2022/core/utils/data-conditioner.mjs +3 -3
- package/esm2022/layout/builder/lib/builder/builder.service.mjs +11 -6
- package/esm2022/layout/builder/lib/builder/widget-catalog.mjs +2 -1
- package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +12 -8
- package/esm2022/layout/builder/lib/builder/widget-renderer.component.directive.mjs +34 -11
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +21 -19
- package/esm2022/layout/designer/index.mjs +3 -1
- package/esm2022/layout/designer/lib/designer/components/add-widget-button/add-widget-line-button.component.mjs +49 -0
- package/esm2022/layout/designer/lib/designer/components/add-widget-button/add-widget-mini-button.component.mjs +53 -0
- package/esm2022/layout/designer/lib/designer/components/add-widget-button/index.mjs +4 -0
- package/esm2022/layout/designer/lib/designer/components/board/board.component.mjs +11 -3
- package/esm2022/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.mjs +1 -1
- package/esm2022/layout/designer/lib/designer/components/header-menu/header-menu.component.mjs +66 -5
- package/esm2022/layout/designer/lib/designer/components/size-mode/view-size-toolbar.component.mjs +54 -0
- package/esm2022/layout/designer/lib/designer/components/widget-picker/widget-picker.component.mjs +40 -16
- package/esm2022/layout/designer/lib/designer/designer.component.mjs +18 -57
- package/esm2022/layout/designer/lib/designer/index.mjs +3 -3
- package/esm2022/layout/designer/lib/designer/shared/designer-connector.service.mjs +1 -1
- package/esm2022/layout/designer/lib/designer/shared/designer.service.mjs +28 -8
- package/esm2022/layout/designer/lib/designer/shared/designer.types.mjs +6 -0
- package/esm2022/layout/designer/lib/designer/shared/widget-designer-renderer.directive.mjs +2 -3
- package/esm2022/layout/designer/lib/preview/preview-frame.component.mjs +75 -0
- package/esm2022/layout/designer/lib/preview/preview-viewer.component.mjs +58 -0
- package/esm2022/layout/designer/lib/preview/preview.component.mjs +67 -9
- package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +3 -3
- package/esm2022/layout/entity/lib/entity-detail-list.viewmodel.mjs +48 -36
- package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +5 -6
- package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +1 -2
- package/esm2022/layout/entity/lib/entity-registery.service.mjs +5 -5
- package/esm2022/layout/entity/lib/entity.config.mjs +28 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +5 -5
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +45 -9
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.mjs +2 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +4 -4
- package/esm2022/layout/entity/lib/widgets/widget-selector/widget-selector-widget.config.mjs +2 -1
- package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +3 -3
- package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +18 -9
- package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +7 -5
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +1 -1
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +1 -1
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +9 -5
- package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +2 -2
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +5 -3
- package/esm2022/themes/default/lib/default.module.mjs +7 -3
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +10 -7
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.mjs +27 -10
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +11 -8
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.mjs +1 -1
- package/esm2022/themes/default/lib/layouts/root-layout/components/header/header.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/root-layout/components/menu/root-menu.component.mjs +39 -0
- package/esm2022/themes/default/lib/layouts/root-layout/index.mjs +2 -1
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +13 -26
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +5 -2
- package/esm2022/themes/shared/index.mjs +3 -1
- package/esm2022/themes/shared/lib/comments/comment-list-view.component.mjs +28 -20
- package/esm2022/themes/shared/lib/comments/comments.service.mjs +3 -2
- package/esm2022/themes/shared/lib/comments/comments.type.mjs +1 -1
- package/esm2022/themes/shared/lib/components/theme-slot.component.mjs +114 -0
- package/esm2022/themes/shared/lib/services/theme.service.mjs +86 -0
- package/esm2022/themes/shared/lib/shared.module.mjs +9 -7
- package/esm2022/widgets/lib/widgets/actions/button/button-widget-designer.component.mjs +2 -2
- package/esm2022/widgets/lib/widgets/actions/button/button-widget-view.component.mjs +1 -2
- package/esm2022/widgets/lib/widgets/actions/button/button-widget.config.mjs +3 -2
- package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget-edit.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.mjs +4 -4
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.mjs +35 -23
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-column.component.mjs +26 -5
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-designer.component.mjs +3 -2
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-edit.component.mjs +3 -2
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-view.component.mjs +4 -3
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-column.component.mjs +18 -4
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-edit.component.mjs +20 -23
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget.config.mjs +6 -29
- package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.mjs +18 -8
- package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-view.component.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/number/number-box-widget-edit.component.mjs +5 -4
- package/esm2022/widgets/lib/widgets/editors/number/number-box-widget-view.component.mjs +5 -5
- package/esm2022/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.mjs +16 -11
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget-view.component.mjs +15 -19
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget.config.mjs +3 -2
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-edit.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-print.component.mjs +3 -2
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-view.component.mjs +68 -28
- package/esm2022/widgets/lib/widgets/index.mjs +2 -1
- package/esm2022/widgets/lib/widgets/layout/block/block-widget-designer.component.mjs +7 -8
- package/esm2022/widgets/lib/widgets/layout/block/block-widget-view.component.mjs +36 -15
- package/esm2022/widgets/lib/widgets/layout/block/block-widget.config.mjs +3 -2
- package/esm2022/widgets/lib/widgets/layout/form-field/form-field-widget-designer.component.mjs +11 -10
- package/esm2022/widgets/lib/widgets/layout/form-field/form-field-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/layout/form-field/form-field-widget.config.mjs +6 -2
- package/esm2022/widgets/lib/widgets/layout/grid/grid-widget-designer.component.mjs +7 -7
- package/esm2022/widgets/lib/widgets/layout/grid/grid-widget-view.component.mjs +5 -4
- package/esm2022/widgets/lib/widgets/layout/grid-item/grid-item-widget-designer.component.mjs +8 -19
- package/esm2022/widgets/lib/widgets/layout/grid-item/grid-item-widget-view.component.mjs +5 -4
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget-designer.component.mjs +2 -1
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget-view.component.mjs +5 -4
- package/esm2022/widgets/lib/widgets/layout/page/page-widget-designer.component.mjs +95 -9
- package/esm2022/widgets/lib/widgets/layout/page/page-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/layout/page/page-widget.config.mjs +18 -3
- package/esm2022/widgets/lib/widgets/layout/repeater/repeater-widget-designer.component.mjs +10 -10
- package/esm2022/widgets/lib/widgets/layout/repeater/repeater-widget-edit.component.mjs +56 -17
- package/esm2022/widgets/lib/widgets/layout/template/index.mjs +5 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-designer.component.mjs +70 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-edit.component.mjs +55 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-view.component.mjs +56 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget.config.mjs +30 -0
- package/esm2022/widgets/lib/widgets/layout/template/template.provider.mjs +41 -0
- package/esm2022/widgets/lib/widgets/layout/text-block/text-block-widget.config.mjs +3 -2
- package/esm2022/widgets/lib/widgets.module.mjs +4 -1
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/{acorex-platform-common-avatar-widget-edit.component-CfqY7kKi.mjs → acorex-platform-common-avatar-widget-edit.component-WAlG5E_9.mjs} +17 -8
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-WAlG5E_9.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-avatar-widget-view.component-DXC7INdQ.mjs → acorex-platform-common-avatar-widget-view.component-DRyB3UWf.mjs} +8 -6
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-DRyB3UWf.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-boolean-widget-filter.component-DLGnsXy4.mjs → acorex-platform-common-boolean-widget-filter.component-DY4oTjC-.mjs} +19 -12
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DY4oTjC-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-change-password.component-BBPFxmB6.mjs → acorex-platform-common-change-password.component-Djd4SeNv.mjs} +6 -6
- package/fesm2022/{acorex-platform-common-change-password.component-BBPFxmB6.mjs.map → acorex-platform-common-change-password.component-Djd4SeNv.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-Ch2bdAjo.mjs → acorex-platform-common-checkbox-widget-column.component-NSXcrUwU.mjs} +10 -8
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-Ch2bdAjo.mjs.map → acorex-platform-common-checkbox-widget-column.component-NSXcrUwU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-checkbox-widget-edit.component-DOGMfGby.mjs → acorex-platform-common-checkbox-widget-edit.component-BU7qV5Cm.mjs} +8 -6
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BU7qV5Cm.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-BhGOtblX.mjs → acorex-platform-common-checkbox-widget-view.component-2Du2IzDS.mjs} +10 -8
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-BhGOtblX.mjs.map → acorex-platform-common-checkbox-widget-view.component-2Du2IzDS.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-column.component-BkUDt0Kj.mjs → acorex-platform-common-dateTime-widget-column.component-Dd7fgwu3.mjs} +8 -6
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-Dd7fgwu3.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-DEqsapFH.mjs → acorex-platform-common-dateTime-widget-edit.component-B4AelVJp.mjs} +11 -8
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-DEqsapFH.mjs.map → acorex-platform-common-dateTime-widget-edit.component-B4AelVJp.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-filter.component-CqddjYjP.mjs → acorex-platform-common-dateTime-widget-filter.component-Ytm-TwOP.mjs} +68 -18
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-Ytm-TwOP.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-BKUPKE9M.mjs → acorex-platform-common-dateTime-widget-view.component-BKdqOPkb.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-BKUPKE9M.mjs.map → acorex-platform-common-dateTime-widget-view.component-BKdqOPkb.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-email-widget-column.component-BOer2nZi.mjs → acorex-platform-common-email-widget-column.component-CDKqwlPD.mjs} +8 -6
- package/fesm2022/acorex-platform-common-email-widget-column.component-CDKqwlPD.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-email-widget-edit.component-BoKsGiEI.mjs → acorex-platform-common-email-widget-edit.component-BT2rJjaW.mjs} +11 -8
- package/fesm2022/acorex-platform-common-email-widget-edit.component-BT2rJjaW.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-email-widget-view.component-BZtK5dMd.mjs → acorex-platform-common-email-widget-view.component-DbhRWpB1.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-email-widget-view.component-BZtK5dMd.mjs.map → acorex-platform-common-email-widget-view.component-DbhRWpB1.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-column.component-DpcUmwAT.mjs → acorex-platform-common-file-widget-column.component-8U76QgEQ.mjs} +7 -5
- package/fesm2022/acorex-platform-common-file-widget-column.component-8U76QgEQ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-CNLXguLn.mjs → acorex-platform-common-file-widget-edit.component-OFmiYz_5.mjs} +10 -7
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-CNLXguLn.mjs.map → acorex-platform-common-file-widget-edit.component-OFmiYz_5.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-filter.component-Dwt-LYWG.mjs → acorex-platform-common-file-widget-filter.component-ZLnpXMXK.mjs} +8 -6
- package/fesm2022/acorex-platform-common-file-widget-filter.component-ZLnpXMXK.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-view.component-CjDhjHQR.mjs → acorex-platform-common-file-widget-view.component-BcrM4XrO.mjs} +10 -7
- package/fesm2022/{acorex-platform-common-file-widget-view.component-CjDhjHQR.mjs.map → acorex-platform-common-file-widget-view.component-BcrM4XrO.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-CzKFKaPH.mjs → acorex-platform-common-gallery-widget-edit.component-pBBjrjDP.mjs} +14 -11
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-CzKFKaPH.mjs.map → acorex-platform-common-gallery-widget-edit.component-pBBjrjDP.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-filter.component-B-KxKtY4.mjs → acorex-platform-common-gallery-widget-filter.component-Cp7t9ovC.mjs} +8 -6
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-Cp7t9ovC.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-ca-JB8qW.mjs → acorex-platform-common-gallery-widget-view.component-CPS-h3cq.mjs} +13 -10
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-ca-JB8qW.mjs.map → acorex-platform-common-gallery-widget-view.component-CPS-h3cq.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-largetext-widget-edit.component-DD7S5j12.mjs → acorex-platform-common-largetext-widget-edit.component-DA6r3rVA.mjs} +8 -6
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DA6r3rVA.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-column.component-BEZNLQZi.mjs → acorex-platform-common-lookup-widget-column.component-Cxv1yZvE.mjs} +8 -6
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-Cxv1yZvE.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-edit.component-D50jPeKP.mjs → acorex-platform-common-lookup-widget-edit.component-CUtGoAGX.mjs} +9 -7
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CUtGoAGX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-filter.component-CZHDDnR3.mjs → acorex-platform-common-lookup-widget-filter.component-DJZqB3vj.mjs} +47 -17
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-DJZqB3vj.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-view.component-CQCvJxgi.mjs → acorex-platform-common-lookup-widget-view.component-CghJK1C4.mjs} +8 -6
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-CghJK1C4.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-edit.component-OanYRQ3B.mjs → acorex-platform-common-map-widget-edit.component-oSb3kVMc.mjs} +8 -6
- package/fesm2022/acorex-platform-common-map-widget-edit.component-oSb3kVMc.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-view.component-BWdndMYJ.mjs → acorex-platform-common-map-widget-view.component-BrYwr914.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-map-widget-view.component-BWdndMYJ.mjs.map → acorex-platform-common-map-widget-view.component-BrYwr914.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-messenger-widget-column.component-BHP6R3OI.mjs → acorex-platform-common-messenger-widget-column.component-DIJAffxy.mjs} +8 -6
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-DIJAffxy.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-edit.component-B7ycb6tX.mjs → acorex-platform-common-messenger-widget-edit.component-DpGvbM4a.mjs} +10 -7
- package/fesm2022/{acorex-platform-common-messenger-widget-edit.component-B7ycb6tX.mjs.map → acorex-platform-common-messenger-widget-edit.component-DpGvbM4a.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-Dz5X-FS5.mjs → acorex-platform-common-messenger-widget-view.component-CeuDEI-j.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-Dz5X-FS5.mjs.map → acorex-platform-common-messenger-widget-view.component-CeuDEI-j.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-edit.component-XSWI6466.mjs → acorex-platform-common-number-widget-edit.component-B1YGwr60.mjs} +11 -9
- package/fesm2022/acorex-platform-common-number-widget-edit.component-B1YGwr60.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs → acorex-platform-common-number-widget-filter.component-BmmgPy1w.mjs} +12 -9
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BmmgPy1w.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-view.component-CP5aboLU.mjs → acorex-platform-common-number-widget-view.component-bqylVHOz.mjs} +8 -6
- package/fesm2022/acorex-platform-common-number-widget-view.component-bqylVHOz.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-column.component-CGxTbd_S.mjs → acorex-platform-common-password-widget-column.component-DVdZh7s4.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-password-widget-column.component-CGxTbd_S.mjs.map → acorex-platform-common-password-widget-column.component-DVdZh7s4.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-password-widget-edit.component-CHQ_Kp4t.mjs → acorex-platform-common-password-widget-edit.component-OjHwMT5d.mjs} +12 -10
- package/fesm2022/acorex-platform-common-password-widget-edit.component-OjHwMT5d.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-view.component-BQ9jlt6g.mjs → acorex-platform-common-password-widget-view.component-BeSk1OgU.mjs} +9 -6
- package/fesm2022/{acorex-platform-common-password-widget-view.component-BQ9jlt6g.mjs.map → acorex-platform-common-password-widget-view.component-BeSk1OgU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-RJp6wHul.mjs → acorex-platform-common-phone-widget-column.component-DOfzGKBi.mjs} +8 -6
- package/fesm2022/acorex-platform-common-phone-widget-column.component-DOfzGKBi.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-BB5wTbjd.mjs → acorex-platform-common-phone-widget-edit.component-BJ-iEyLP.mjs} +10 -8
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-BB5wTbjd.mjs.map → acorex-platform-common-phone-widget-edit.component-BJ-iEyLP.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-SIzFWfjV.mjs → acorex-platform-common-phone-widget-view.component-DW4AHCE6.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-SIzFWfjV.mjs.map → acorex-platform-common-phone-widget-view.component-DW4AHCE6.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-Ced0WqvI.mjs → acorex-platform-common-rich-text-widget-column.component-2zZBG6Ze.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-Ced0WqvI.mjs.map → acorex-platform-common-rich-text-widget-column.component-2zZBG6Ze.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-edit.component-Do3YcmKg.mjs → acorex-platform-common-rich-text-widget-edit.component-BJveJgHZ.mjs} +8 -5
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-BJveJgHZ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-rich-text-widget-view.component-BIRyPRtw.mjs → acorex-platform-common-rich-text-widget-view.component-CiViWpBX.mjs} +8 -6
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-CiViWpBX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-DxeK2RPc.mjs → acorex-platform-common-selection-list-widget-column.component-D9lsVFgo.mjs} +8 -6
- package/fesm2022/acorex-platform-common-selection-list-widget-column.component-D9lsVFgo.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-edit.component-CBLEeILz.mjs → acorex-platform-common-selection-list-widget-edit.component-ocEwyUP7.mjs} +10 -8
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-ocEwyUP7.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-filter.component-B01t7mso.mjs → acorex-platform-common-selection-list-widget-filter.component-CS0f_jCx.mjs} +16 -12
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-CS0f_jCx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-view.component-QJMp11dd.mjs → acorex-platform-common-selection-list-widget-view.component-C65lbpo_.mjs} +8 -6
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-C65lbpo_.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-BQiY7RIp.mjs → acorex-platform-common-signature-pad-widget-edit.component-DbfQSGxm.mjs} +10 -7
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-BQiY7RIp.mjs.map → acorex-platform-common-signature-pad-widget-edit.component-DbfQSGxm.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-signature-pad-widget-view.component-CEhRqgEn.mjs → acorex-platform-common-signature-pad-widget-view.component-CDY3JdP-.mjs} +8 -6
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CDY3JdP-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-string-widget-filter.component--L4PeRCB.mjs → acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs} +12 -9
- package/fesm2022/acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-column.component-ytX4OqZX.mjs → acorex-platform-common-text-widget-column.component-bhx0QWAX.mjs} +8 -6
- package/fesm2022/acorex-platform-common-text-widget-column.component-bhx0QWAX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-edit.component-CN7OyTfJ.mjs → acorex-platform-common-text-widget-edit.component-Cb1k59hs.mjs} +10 -7
- package/fesm2022/acorex-platform-common-text-widget-edit.component-Cb1k59hs.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-view.component-B-R4-5Ra.mjs → acorex-platform-common-text-widget-view.component-CGwY9c2O.mjs} +8 -6
- package/fesm2022/{acorex-platform-common-text-widget-view.component-B-R4-5Ra.mjs.map → acorex-platform-common-text-widget-view.component-CGwY9c2O.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-B5NFRPgX.mjs → acorex-platform-common-toggle-widget-column.component-BxAwa7jw.mjs} +10 -8
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-B5NFRPgX.mjs.map → acorex-platform-common-toggle-widget-column.component-BxAwa7jw.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-edit.component-CLWHwf8V.mjs → acorex-platform-common-toggle-widget-edit.component-CT2fRAKm.mjs} +8 -5
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CT2fRAKm.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-Di2S7vub.mjs → acorex-platform-common-toggle-widget-view.component-9tquFHhE.mjs} +10 -8
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-Di2S7vub.mjs.map → acorex-platform-common-toggle-widget-view.component-9tquFHhE.mjs.map} +1 -1
- package/fesm2022/acorex-platform-common.mjs +652 -302
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +2 -2
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +71 -36
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +476 -72
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +149 -68
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-CPGbLM4C.mjs.map +1 -1
- package/fesm2022/acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs.map +1 -1
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-Bt4MLEou.mjs.map +1 -1
- package/fesm2022/acorex-platform-layouts.mjs +16 -11
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/acorex-platform-mocks.mjs.map +1 -1
- package/fesm2022/acorex-platform-native.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs → acorex-platform-themes-default-entity-master-create-view.component-i6vjEhti.mjs} +3 -3
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs.map → acorex-platform-themes-default-entity-master-create-view.component-i6vjEhti.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-fZ6QEYcd.mjs → acorex-platform-themes-default-entity-master-list-view.component-BGKWaCth.mjs} +37 -20
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BGKWaCth.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs → acorex-platform-themes-default-entity-master-modify-view.component-B3phYOIw.mjs} +5 -5
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-B3phYOIw.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-Bnrabotu.mjs → acorex-platform-themes-default-entity-master-single-view.component-DyZHE0o-.mjs} +16 -13
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DyZHE0o-.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +83 -56
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +225 -27
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-button-widget-designer.component-B9bfVuC4.mjs → acorex-platform-widgets-button-widget-designer.component-M_JuDPbt.mjs} +2 -2
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-M_JuDPbt.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-j1jG8pCr.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-designer.component-DzGg-uFi.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-view.component-tPk6Gylo.mjs → acorex-platform-widgets-checkbox-widget-view.component-CDA7Jwov.mjs} +35 -23
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-CDA7Jwov.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs → acorex-platform-widgets-color-box-widget-designer.component-DIvi0BtT.mjs} +3 -2
- package/fesm2022/acorex-platform-widgets-color-box-widget-designer.component-DIvi0BtT.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-contact-widget-filter.component-GTwK51nJ.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-BL_EAwUs.mjs +153 -0
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-BL_EAwUs.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-gvAh-gH1.mjs +96 -0
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-gvAh-gH1.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +563 -235
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/builder/lib/builder/builder.service.d.ts +1 -1
- package/layout/builder/lib/builder/widget-container.component.d.ts +3 -2
- package/layout/builder/lib/builder/widget-renderer.component.directive.d.ts +5 -1
- package/layout/builder/lib/builder/widget.types.d.ts +8 -5
- package/layout/designer/index.d.ts +2 -0
- package/layout/designer/lib/designer/components/add-widget-button/add-widget-line-button.component.d.ts +8 -0
- package/layout/designer/lib/designer/components/add-widget-button/add-widget-mini-button.component.d.ts +9 -0
- package/layout/designer/lib/designer/components/add-widget-button/index.d.ts +3 -0
- package/layout/designer/lib/designer/components/board/board.component.d.ts +2 -0
- package/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.d.ts +1 -1
- package/layout/designer/lib/designer/components/header-menu/header-menu.component.d.ts +1 -0
- package/layout/designer/lib/designer/components/size-mode/view-size-toolbar.component.d.ts +6 -0
- package/layout/designer/lib/designer/components/widget-picker/widget-picker.component.d.ts +4 -2
- package/layout/designer/lib/designer/designer.component.d.ts +1 -1
- package/layout/designer/lib/designer/index.d.ts +2 -2
- package/layout/designer/lib/designer/shared/designer-connector.service.d.ts +1 -1
- package/layout/designer/lib/designer/shared/designer.service.d.ts +8 -3
- package/layout/designer/lib/preview/preview-frame.component.d.ts +8 -0
- package/layout/designer/lib/preview/preview-viewer.component.d.ts +14 -0
- package/layout/designer/lib/preview/preview.component.d.ts +17 -3
- package/layout/entity/lib/entity-detail-list.viewmodel.d.ts +4 -4
- package/layout/entity/lib/entity-master-create.viewmodel.d.ts +1 -1
- package/layout/entity/lib/entity-master-list.viewmodel.d.ts +2 -1
- package/layout/entity/lib/entity-master-single.viewmodel.d.ts +1 -5
- package/layout/entity/lib/entity-master-update.viewmodel.d.ts +1 -1
- package/layout/entity/lib/entity-registery.service.d.ts +1 -1
- package/layout/entity/lib/entity.config.d.ts +7 -0
- package/layout/entity/lib/entity.viewmodel.d.ts +1 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +2 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +2 -1
- package/layout/entity/lib/workflows/delete-entity.workflow.d.ts +1 -0
- package/layout/entity/lib/workflows/modify-section.workflow.d.ts +1 -0
- package/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.d.ts +1 -0
- package/package.json +13 -13
- package/themes/default/lib/default.module.d.ts +2 -1
- package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.d.ts +3 -1
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +1 -1
- package/themes/default/lib/layouts/root-layout/components/menu/root-menu.component.d.ts +22 -0
- package/themes/default/lib/layouts/root-layout/index.d.ts +1 -0
- package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +1 -4
- package/themes/default/lib/layouts/root-layout/root-layout.module.d.ts +17 -16
- package/themes/shared/index.d.ts +2 -0
- package/themes/shared/lib/comments/comment-list-view.component.d.ts +16 -11
- package/themes/shared/lib/comments/comments.service.d.ts +4 -7
- package/themes/shared/lib/comments/comments.type.d.ts +24 -20
- package/themes/shared/lib/components/theme-slot.component.d.ts +23 -0
- package/themes/shared/lib/services/theme.service.d.ts +21 -0
- package/themes/shared/lib/shared.module.d.ts +5 -4
- package/widgets/lib/widgets/advance/map/map-box-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/advance/signature/signature-pad-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/color/color-box-widget-column.component.d.ts +3 -0
- package/widgets/lib/widgets/editors/color/color-box-widget-designer.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/color/color-box-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/color/color-box-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/contact/contact-widget-column.component.d.ts +2 -0
- package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/contact/contact-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.d.ts +3 -0
- package/widgets/lib/widgets/editors/number/number-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/number/number-box-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/password/password-box-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.d.ts +3 -2
- package/widgets/lib/widgets/editors/toggle/toggle-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/toggle/toggle-widget-print.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/toggle/toggle-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/index.d.ts +1 -0
- package/widgets/lib/widgets/layout/block/block-widget-view.component.d.ts +4 -2
- package/widgets/lib/widgets/layout/grid/grid-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/layout/grid-item/grid-item-widget-designer.component.d.ts +0 -2
- package/widgets/lib/widgets/layout/grid-item/grid-item-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/layout/grid-row/grid-row-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/layout/page/page-widget-designer.component.d.ts +11 -1
- package/widgets/lib/widgets/layout/repeater/repeater-widget-edit.component.d.ts +4 -3
- package/widgets/lib/widgets/layout/template/index.d.ts +4 -0
- package/widgets/lib/widgets/layout/template/template-widget-designer.component.d.ts +11 -0
- package/widgets/lib/widgets/layout/template/template-widget-edit.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/template/template-widget-view.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/template/template-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/layout/template/template.provider.d.ts +21 -0
- package/common/lib/data/entity-data-provider.d.ts +0 -14
- package/common/lib/data/storage-service.d.ts +0 -22
- package/common/lib/layout/theme/components/slots/theme-slot.component.d.ts +0 -8
- package/common/lib/settings/settings.loader.d.ts +0 -8
- package/esm2022/common/lib/data/entity-data-provider.mjs +0 -26
- package/esm2022/common/lib/data/storage-service.mjs +0 -5
- package/esm2022/common/lib/layout/theme/components/slots/theme-slot.component.mjs +0 -48
- package/esm2022/common/lib/settings/settings.loader.mjs +0 -17
- package/esm2022/layout/designer/lib/designer/shared/designer.typs.mjs +0 -6
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-CfqY7kKi.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-DXC7INdQ.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DLGnsXy4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-DOGMfGby.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BkUDt0Kj.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-CqddjYjP.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-column.component-BOer2nZi.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-edit.component-BoKsGiEI.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-column.component-DpcUmwAT.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-filter.component-Dwt-LYWG.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-B-KxKtY4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DD7S5j12.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-BEZNLQZi.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-D50jPeKP.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-CZHDDnR3.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-CQCvJxgi.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-edit.component-OanYRQ3B.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BHP6R3OI.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-edit.component-XSWI6466.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-view.component-CP5aboLU.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-edit.component-CHQ_Kp4t.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-phone-widget-column.component-RJp6wHul.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-Do3YcmKg.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-BIRyPRtw.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-column.component-DxeK2RPc.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-CBLEeILz.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-B01t7mso.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-QJMp11dd.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEhRqgEn.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-string-widget-filter.component--L4PeRCB.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-column.component-ytX4OqZX.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-edit.component-CN7OyTfJ.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CLWHwf8V.mjs.map +0 -1
- package/fesm2022/acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs +0 -23
- package/fesm2022/acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-fZ6QEYcd.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-Bnrabotu.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-B9bfVuC4.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-tPk6Gylo.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-6BMZ0qRw.mjs +0 -67
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-6BMZ0qRw.mjs.map +0 -1
- /package/layout/designer/lib/designer/shared/{designer.typs.d.ts → designer.types.d.ts} +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Provider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface AXPStartUpTask {
|
|
4
|
+
name: string;
|
|
5
|
+
statusText: string;
|
|
6
|
+
run: () => Promise<void>;
|
|
7
|
+
}
|
|
8
|
+
export declare class AXPAppStartUpService {
|
|
9
|
+
private tasks;
|
|
10
|
+
registerTask(task: AXPStartUpTask): void;
|
|
11
|
+
runAllTasks(): Promise<void>;
|
|
12
|
+
private updateStatus;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPAppStartUpService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPAppStartUpService>;
|
|
15
|
+
}
|
|
16
|
+
export declare const AXPAppStartUpProvider: Provider;
|
|
@@ -50,9 +50,11 @@ export interface AXPEntityPropertyGroup {
|
|
|
50
50
|
id: string;
|
|
51
51
|
title: string;
|
|
52
52
|
description?: string;
|
|
53
|
+
permissions?: string[];
|
|
53
54
|
}
|
|
54
55
|
export interface AXPEntityPropertyView {
|
|
55
56
|
name: string;
|
|
57
|
+
permissions?: string[];
|
|
56
58
|
layout?: AXPEntityPropertyLayoutConfig;
|
|
57
59
|
}
|
|
58
60
|
export interface AXPEntityPropertyUpdateView extends AXPEntityPropertyView {
|
|
@@ -68,7 +70,7 @@ export interface AXPEntitySectionView {
|
|
|
68
70
|
}
|
|
69
71
|
export interface AXPEntityProperty {
|
|
70
72
|
name: string;
|
|
71
|
-
title
|
|
73
|
+
title?: string;
|
|
72
74
|
description?: string;
|
|
73
75
|
groupId?: string;
|
|
74
76
|
reference?: {
|
|
@@ -116,12 +118,12 @@ export interface AXPEntityCommand {
|
|
|
116
118
|
}
|
|
117
119
|
export interface AXPEntityQuery {
|
|
118
120
|
execute: string | Function;
|
|
119
|
-
permissions?: string[];
|
|
120
121
|
type: AXPEntityQueryType;
|
|
121
122
|
}
|
|
122
123
|
export interface AXPEntityHistory {
|
|
123
124
|
}
|
|
124
125
|
export interface AXPEntityAction {
|
|
126
|
+
permissions?: string[];
|
|
125
127
|
command: string;
|
|
126
128
|
title: string;
|
|
127
129
|
type: 'create' | 'update' | 'delete' | 'print' | 'confirm' | 'report' | 'info' | 'view';
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { AXPAppStartUpService } from './app/app-startup.service';
|
|
3
|
+
import { AXPDataSeederService } from './data';
|
|
2
4
|
import { AXPErrorHandler } from './errors';
|
|
5
|
+
import { AXPSettingsService } from './settings';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
import * as i1 from "@ngrx/effects";
|
|
5
8
|
import * as i2 from "@ngrx/store";
|
|
@@ -17,7 +20,7 @@ export declare class AXPCommonModule {
|
|
|
17
20
|
/**
|
|
18
21
|
* @ignore
|
|
19
22
|
*/
|
|
20
|
-
constructor(instances: any[]);
|
|
23
|
+
constructor(instances: any[], appInitService: AXPAppStartUpService, settingsService: AXPSettingsService, seederService: AXPDataSeederService);
|
|
21
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommonModule, never>;
|
|
22
25
|
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPCommonModule, never, [typeof i1.EffectsFeatureModule, typeof i2.StoreFeatureModule, typeof i3.AXPWorkflowModule, typeof i4.AXPopupModule, typeof i5.AXDateTimeModule, typeof i6.AXToastModule], [typeof i7.RouterModule]>;
|
|
23
26
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXPCommonModule>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
2
|
import { AXPLogoConfig } from '../layout/logo/logo.types';
|
|
3
|
+
export declare const ENVIRONMENT: InjectionToken<any>;
|
|
3
4
|
export declare const AXP_PLATFORM_CONFIG_TOKEN: InjectionToken<AXPPlatformConfigs>;
|
|
4
5
|
export interface AXPPlatformConfigs {
|
|
5
6
|
title?: string;
|
|
@@ -9,6 +9,7 @@ export declare abstract class AXPDataProvider {
|
|
|
9
9
|
abstract deleteOne(entity: any, id: string): Promise<any>;
|
|
10
10
|
abstract getFirst(entity: any): Promise<any>;
|
|
11
11
|
abstract uploadFile(file: File, title: string, customUrl?: string): Promise<string>;
|
|
12
|
+
abstract updateFile(id: string, file: File, title: string, customUrl?: string): Promise<string>;
|
|
12
13
|
abstract uploadMultipleFiles(files: File[], title: string): Promise<string[]>;
|
|
13
14
|
abstract viewFile(id: string, name: string): Promise<Blob>;
|
|
14
15
|
abstract downloadFile(id: string, name: string): Promise<Blob>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AXDataSourceFilterOption, AXDataSourceSortOption } from '@acorex/components/common';
|
|
2
|
+
export interface AXPPagedListResult<T = any> {
|
|
3
|
+
items: T[];
|
|
4
|
+
totalCount: number;
|
|
5
|
+
}
|
|
6
|
+
export interface AXPQueryRequest {
|
|
7
|
+
skip: number;
|
|
8
|
+
take: number;
|
|
9
|
+
sort?: AXDataSourceSortOption[];
|
|
10
|
+
filter?: AXDataSourceFilterOption;
|
|
11
|
+
params?: {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import Dexie from 'dexie';
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { AXPPagedListResult, AXPQueryRequest } from './data.types';
|
|
3
|
+
import { AXPEntityStorageService } from './entity-storage-service';
|
|
4
|
+
export declare class AXPDexieEntityStorageService extends Dexie implements AXPEntityStorageService<string, any> {
|
|
4
5
|
constructor();
|
|
5
6
|
get dbName(): string;
|
|
6
7
|
initial<T = any>(entityName: string, collection: T[]): Promise<void>;
|
|
7
8
|
getOne<T = any>(entityName: string, id: string): Promise<T>;
|
|
8
|
-
updateOne(entityName: string, id: string, keyValue: {
|
|
9
|
+
updateOne<T = any>(entityName: string, id: string, keyValue: {
|
|
9
10
|
[key: string]: any;
|
|
10
|
-
}): Promise<
|
|
11
|
+
}): Promise<T>;
|
|
11
12
|
deleteOne(entityName: string, id: string): Promise<void>;
|
|
12
|
-
insertOne<T = any>(entityName: string, entity: T): Promise<
|
|
13
|
+
insertOne<T = any>(entityName: string, entity: T): Promise<string>;
|
|
13
14
|
getAll<T = any>(entityName: string): Promise<T[]>;
|
|
15
|
+
query<T = any>(entityName: string, request: AXPQueryRequest): Promise<AXPPagedListResult<T>>;
|
|
14
16
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface AXPDataSeeder {
|
|
4
|
+
seed(): Promise<void>;
|
|
5
|
+
}
|
|
6
|
+
export declare const AXP_DATA_SEEDER_TOKEN: InjectionToken<AXPDataSeeder>;
|
|
7
|
+
export declare class AXPDataSeederService {
|
|
8
|
+
private loader;
|
|
9
|
+
seed(): Promise<void>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDataSeederService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPDataSeederService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { AXPPagedListResult, AXPQueryRequest } from './data.types';
|
|
2
|
+
export interface AXPEntityModel<Id> {
|
|
3
|
+
id?: Id;
|
|
4
|
+
}
|
|
5
|
+
export declare abstract class AXPEntityStorageService<K, T extends AXPEntityModel<K>, RCreate = Omit<T, 'id'>, RGetSingle = T, RGetList = RGetSingle> {
|
|
6
|
+
abstract get dbName(): string;
|
|
7
|
+
abstract initial(entityName: string, collection: T[]): Promise<void>;
|
|
8
|
+
abstract getOne(entityName: string, id: K): Promise<RGetSingle>;
|
|
9
|
+
abstract updateOne(entityName: string, id: K, keyValue: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}): Promise<RGetSingle>;
|
|
12
|
+
abstract deleteOne(entityName: string, id: K): Promise<void>;
|
|
13
|
+
abstract insertOne(entityName: string, entity: RCreate): Promise<K>;
|
|
14
|
+
abstract getAll(entityName: string): Promise<RGetList[]>;
|
|
15
|
+
abstract query(entityName: string, request: AXPQueryRequest): Promise<AXPPagedListResult<RGetList>>;
|
|
16
|
+
}
|
|
17
|
+
export declare abstract class AXPEntityDataProvider<K, T extends AXPEntityModel<K>, RCreate = Omit<T, 'id'>, RGetSingle = T, RGetList = RGetSingle> {
|
|
18
|
+
abstract get entityName(): string;
|
|
19
|
+
abstract initial(collection: T[]): Promise<void>;
|
|
20
|
+
abstract getOne(id: K): Promise<RGetSingle>;
|
|
21
|
+
abstract getAll(): Promise<RGetList[]>;
|
|
22
|
+
abstract updateOne(id: K, keyValue: {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
}): Promise<RGetSingle>;
|
|
25
|
+
abstract deleteOne(id: K): Promise<void>;
|
|
26
|
+
abstract insertOne(entity: RCreate): Promise<K>;
|
|
27
|
+
abstract query(request: AXPQueryRequest): Promise<AXPPagedListResult<RGetList>>;
|
|
28
|
+
}
|
|
29
|
+
export declare class AXPEntityDataProviderImpl<K = any, T extends AXPEntityModel<K> = any, RCreate = Omit<T, 'id'>, RGetSingle = T, RGetList = RGetSingle> implements AXPEntityDataProvider<K, T, RCreate, RGetSingle, RGetList> {
|
|
30
|
+
private storageService;
|
|
31
|
+
entityName: string;
|
|
32
|
+
constructor(storageService: AXPEntityStorageService<K, T, RCreate, RGetSingle, RGetList>, entityName: string);
|
|
33
|
+
initial(collection: T[]): Promise<void>;
|
|
34
|
+
getOne(id: K): Promise<RGetSingle>;
|
|
35
|
+
getAll(): Promise<RGetList[]>;
|
|
36
|
+
query(request: AXPQueryRequest): Promise<AXPPagedListResult<RGetList>>;
|
|
37
|
+
updateOne(id: K, keyValue: {
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
}): Promise<RGetSingle>;
|
|
40
|
+
deleteOne(id: K): Promise<void>;
|
|
41
|
+
insertOne(entity: RCreate): Promise<K>;
|
|
42
|
+
}
|
|
43
|
+
export declare abstract class AXMEntityCrudService<Id = string, T = any, RCreate = Omit<T, 'id'>, RGetSingle = T, RGetList = RGetSingle> {
|
|
44
|
+
abstract insertOne(request: RCreate): Promise<Id>;
|
|
45
|
+
abstract getOne(id: Id): Promise<RGetSingle>;
|
|
46
|
+
abstract deleteOne(id: Id): Promise<void>;
|
|
47
|
+
abstract updateOne(id: Id, values: {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
}): Promise<void>;
|
|
50
|
+
abstract query(request: AXPQueryRequest): Promise<AXPPagedListResult<RGetList>>;
|
|
51
|
+
}
|
|
52
|
+
export declare class AXMEntityCrudServiceImpl<Id, T extends AXPEntityModel<Id>, RCreate = Omit<T, 'id'>, RGetSingle = T, RGetList = RGetSingle> {
|
|
53
|
+
private entityName;
|
|
54
|
+
private _storageService;
|
|
55
|
+
private _entityDataProvider;
|
|
56
|
+
constructor(entityName: string);
|
|
57
|
+
insertOne(request: RCreate): Promise<Id>;
|
|
58
|
+
getOne(id: Id): Promise<RGetSingle>;
|
|
59
|
+
deleteOne(id: Id): Promise<void>;
|
|
60
|
+
updateOne(id: Id, values: {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
}): Promise<RGetSingle>;
|
|
63
|
+
query(request: AXPQueryRequest): Promise<AXPPagedListResult<RGetList>>;
|
|
64
|
+
get entityDataProvider(): AXPEntityDataProviderImpl<Id, T, RCreate, RGetSingle, RGetList>;
|
|
65
|
+
get storageService(): AXPEntityStorageService<any, any, any, any, any>;
|
|
66
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './data-provider.types';
|
|
2
|
+
export * from './data.types';
|
|
2
3
|
export * from './dexie-storage.service';
|
|
3
|
-
export * from './entity-
|
|
4
|
-
export * from './
|
|
4
|
+
export * from './entity-storage-service';
|
|
5
|
+
export * from './entity-data-seeder';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { AXPMenuInsertion, AXPMenuItem } from './menu.types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface AXPMenuProvider {
|
|
5
|
+
items(): Promise<AXPMenuInsertion[]>;
|
|
6
|
+
}
|
|
7
|
+
export declare const AXP_MENU_PROVIDER: InjectionToken<AXPMenuProvider>;
|
|
8
|
+
export declare class AXPMenuProviderService {
|
|
9
|
+
private providers;
|
|
10
|
+
items(): Promise<AXPMenuItem[]>;
|
|
11
|
+
private applyInjections;
|
|
12
|
+
private findAndInsert;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPMenuProviderService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPMenuProviderService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AXPMenuItem } from './menu.types';
|
|
2
|
+
export declare const AXPMenuService: import("@angular/core").Type<{
|
|
3
|
+
items: import("@angular/core").Signal<AXPMenuItem[]>;
|
|
4
|
+
selectedMenuItem: import("@angular/core").Signal<AXPMenuItem | null>;
|
|
5
|
+
setMenuItems: (items: AXPMenuItem[]) => void;
|
|
6
|
+
selectMenuItemByRoute: (path: string) => void;
|
|
7
|
+
executeCommand: (item: AXPMenuItem) => void;
|
|
8
|
+
isItemOpen: (item: AXPMenuItem) => boolean;
|
|
9
|
+
} & import("@ngrx/signals").StateSource<{
|
|
10
|
+
items: AXPMenuItem[];
|
|
11
|
+
selectedMenuItem: AXPMenuItem | null;
|
|
12
|
+
}>>;
|
|
@@ -4,10 +4,17 @@ export interface AXPMenuItem {
|
|
|
4
4
|
type?: 'menu' | 'group';
|
|
5
5
|
name?: string;
|
|
6
6
|
icon?: string;
|
|
7
|
+
priority?: number;
|
|
7
8
|
opened?: boolean;
|
|
8
9
|
children?: AXPMenuItem[];
|
|
9
|
-
parent?: AXPMenuItem;
|
|
10
10
|
path?: string;
|
|
11
11
|
command?: Action;
|
|
12
12
|
data?: any;
|
|
13
13
|
}
|
|
14
|
+
export interface AXPMenuInsertion {
|
|
15
|
+
items: AXPMenuItem[];
|
|
16
|
+
insertAt?: {
|
|
17
|
+
target: string;
|
|
18
|
+
position?: 'after' | 'before';
|
|
19
|
+
};
|
|
20
|
+
}
|
|
@@ -3,6 +3,5 @@ export declare const AXPLayoutRootDrawerClose: import("@ngrx/store").ActionCreat
|
|
|
3
3
|
export declare const AXPLayoutRootDrawerToggle: import("@ngrx/store").ActionCreator<"[Root Drawer] Toggle", () => import("@ngrx/store").Action<"[Root Drawer] Toggle">>;
|
|
4
4
|
export declare const AXPLayoutChildDrawerClose: import("@ngrx/store").ActionCreator<"[Child Drawer] Close", () => import("@ngrx/store").Action<"[Child Drawer] Close">>;
|
|
5
5
|
export declare const AXPLayoutChildDrawerToggle: import("@ngrx/store").ActionCreator<"[Child Drawer] Toggle", () => import("@ngrx/store").Action<"[Child Drawer] Toggle">>;
|
|
6
|
-
export declare const AXPLayoutThemeDarkToggleAction: import("@ngrx/store").ActionCreator<"[Theme] Toggle Dark", () => import("@ngrx/store").Action<"[Theme] Toggle Dark">>;
|
|
7
6
|
export declare const AXPLoadingShowAction: import("@ngrx/store").ActionCreator<"[Theme] Loading Show", () => import("@ngrx/store").Action<"[Theme] Loading Show">>;
|
|
8
7
|
export declare const AXPLoadingHideAction: import("@ngrx/store").ActionCreator<"[Theme] Loading Hide", () => import("@ngrx/store").Action<"[Theme] Loading Hide">>;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class AXPLayoutEffects {
|
|
3
|
-
private
|
|
3
|
+
private settingService;
|
|
4
4
|
private actions$;
|
|
5
5
|
private store$;
|
|
6
6
|
resize$: import("rxjs").Observable<import("@ngrx/store").Action<"[Layout] Resize">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
7
|
-
switchDark$: import("rxjs").Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
|
8
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLayoutEffects, never>;
|
|
9
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPLayoutEffects>;
|
|
10
9
|
}
|
|
@@ -2,11 +2,6 @@ export declare const AXPLayoutFeature: {
|
|
|
2
2
|
name: "layout";
|
|
3
3
|
reducer: import("@ngrx/store").ActionReducer<import("./admin-layout.state").AXPAdminLayoutState, import("@ngrx/store").Action<string>>;
|
|
4
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
5
|
selectScreen: import("@ngrx/store").MemoizedSelector<Record<string, any>, {
|
|
11
6
|
small: boolean;
|
|
12
7
|
}, (featureState: import("./admin-layout.state").AXPAdminLayoutState) => {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export declare const getRootDrawer: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("@acorex/platform/common").AXPAdminLayoutState) => boolean>;
|
|
2
2
|
export declare const getChildDrawer: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("@acorex/platform/common").AXPAdminLayoutState) => boolean>;
|
|
3
3
|
export declare const isSmallScreen: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("@acorex/platform/common").AXPAdminLayoutState) => boolean>;
|
|
4
|
-
export declare const isDarkTheme: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("@acorex/platform/common").AXPAdminLayoutState) => boolean>;
|
|
5
4
|
export declare const isLoading: () => import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (s1: import("@acorex/platform/common").AXPAdminLayoutState) => boolean>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AXPWidgetFilterBase } from '../../widget/widget-base';
|
|
2
1
|
import { AXPFilterOperator } from '../../../app';
|
|
2
|
+
import { AXPWidgetFilterBase } from '../../widget/widget-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AXPBooleanWidgetFilterComponent extends AXPWidgetFilterBase<number> {
|
|
5
5
|
protected falsyText: string;
|
|
@@ -5,6 +5,8 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class AXPDateTimeWidgetFilterComponent extends AXPWidgetFilterBase {
|
|
6
6
|
protected selectedItem: WritableSignal<string>;
|
|
7
7
|
dataSource: string[];
|
|
8
|
+
filterFieldFrom: string;
|
|
9
|
+
filterFieldTo: string;
|
|
8
10
|
private calendarService;
|
|
9
11
|
private changeValueEffect;
|
|
10
12
|
ngOnInit(): void;
|
|
@@ -5,6 +5,7 @@ export declare class AXPLookupWidgetEditComponent extends AXPWidgetEditBase {
|
|
|
5
5
|
protected reference: string;
|
|
6
6
|
protected multiple: boolean;
|
|
7
7
|
protected filterField: string;
|
|
8
|
+
protected filterValue: string;
|
|
8
9
|
protected valueField: string;
|
|
9
10
|
protected textField: string;
|
|
10
11
|
protected template: string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPSettingValue } from "./settings.types";
|
|
2
|
+
import { InjectionToken } from "@angular/core";
|
|
3
|
+
export interface AXPSettingsProvider {
|
|
4
|
+
load(): Promise<AXPSettingValue[]>;
|
|
5
|
+
set(key: string, value: any): Promise<void>;
|
|
6
|
+
}
|
|
7
|
+
export declare const AXP_SETTINGS_PROVIDER: InjectionToken<AXPSettingsProvider>;
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { AXPSettingValue } from './settings.types';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AXPSettingsService {
|
|
4
|
-
private readonly
|
|
5
|
-
private
|
|
6
|
-
readonly
|
|
5
|
+
private readonly settingsProvider;
|
|
6
|
+
private settingsCache;
|
|
7
|
+
readonly changed: Subject<AXPSettingValue>;
|
|
8
|
+
load(): Promise<AXPSettingValue[]>;
|
|
9
|
+
get<T = any>(key: string): Promise<T>;
|
|
10
|
+
set<T = any>(key: string, value: T): Promise<void>;
|
|
7
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPSettingsService, never>;
|
|
8
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPSettingsService>;
|
|
9
13
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NavigationExtras } from
|
|
1
|
+
import { NavigationExtras } from '@angular/router';
|
|
2
2
|
export declare const AXPNavigateAction: import("@ngrx/store").ActionCreator<"[Navigate] Action", (props: {
|
|
3
3
|
payload: {
|
|
4
4
|
commands: string | any[];
|
|
@@ -12,4 +12,3 @@ export declare const AXPNavigateAction: import("@ngrx/store").ActionCreator<"[Na
|
|
|
12
12
|
} & import("@ngrx/store").Action<"[Navigate] Action">>;
|
|
13
13
|
export declare const AXPSignOutAction: import("@ngrx/store").ActionCreator<"[SignOut] Action", () => import("@ngrx/store").Action<"[SignOut] Action">>;
|
|
14
14
|
export declare const AXPSignInAction: import("@ngrx/store").ActionCreator<"[SignIn] Action", () => import("@ngrx/store").Action<"[SignIn] Action">>;
|
|
15
|
-
export declare const AXPLoadInitState: import("@ngrx/store").ActionCreator<"[App] Load State from Storage", () => import("@ngrx/store").Action<"[App] Load State from Storage">>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { Router } from
|
|
2
|
-
import { Actions } from
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { Actions } from '@ngrx/effects';
|
|
3
|
+
import { AXPSettingsService } from '../settings';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class AXPCommonEffects {
|
|
5
6
|
private actions$;
|
|
6
7
|
private router;
|
|
7
|
-
|
|
8
|
+
private settingService;
|
|
9
|
+
constructor(actions$: Actions, router: Router, settingService: AXPSettingsService);
|
|
8
10
|
command$: import("rxjs").Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommonEffects, never>;
|
|
10
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPCommonEffects>;
|
|
@@ -20,6 +20,7 @@ export declare class AXPWorkflowNavigateAction extends AXPWorkflowAction {
|
|
|
20
20
|
}
|
|
21
21
|
export declare class AXPDialogConfirmAction extends AXPWorkflowAction {
|
|
22
22
|
private dialogService;
|
|
23
|
+
private translationService;
|
|
23
24
|
title: string;
|
|
24
25
|
message: string;
|
|
25
26
|
type: AXStyleColorType;
|
|
@@ -29,6 +30,7 @@ export declare class AXPDialogConfirmAction extends AXPWorkflowAction {
|
|
|
29
30
|
}
|
|
30
31
|
export declare class AXPToastAction extends AXPWorkflowAction {
|
|
31
32
|
private toastService;
|
|
33
|
+
private translationService;
|
|
32
34
|
color: AXStyleColorType;
|
|
33
35
|
title: string;
|
|
34
36
|
content: string;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import { AXDataSourceFilterOption } from '@acorex/components/common';
|
|
1
|
+
import { AXDataSourceFilterOption, AXDataSourceSortOption } from '@acorex/components/common';
|
|
2
2
|
export declare function applyFilterArray(dataArray: any[], filters?: AXDataSourceFilterOption[], logic?: 'and' | 'or'): any[];
|
|
3
|
-
export declare function applySortArray(dataArray: any, sorts:
|
|
4
|
-
field: string;
|
|
5
|
-
dir: 'asc' | 'desc';
|
|
6
|
-
}[]): any;
|
|
3
|
+
export declare function applySortArray(dataArray: any, sorts: AXDataSourceSortOption[]): any;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { APP_INITIALIZER, Injectable } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class AXPAppStartUpService {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.tasks = [];
|
|
6
|
+
}
|
|
7
|
+
registerTask(task) {
|
|
8
|
+
this.tasks.push(task);
|
|
9
|
+
}
|
|
10
|
+
async runAllTasks() {
|
|
11
|
+
for (const task of this.tasks) {
|
|
12
|
+
this.updateStatus(task.statusText);
|
|
13
|
+
await task.run();
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
updateStatus(status) {
|
|
17
|
+
const loadingText = document.querySelector('#loadingText');
|
|
18
|
+
if (loadingText) {
|
|
19
|
+
loadingText.innerHTML = status;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, providedIn: 'root' }); }
|
|
24
|
+
}
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, decorators: [{
|
|
26
|
+
type: Injectable,
|
|
27
|
+
args: [{
|
|
28
|
+
providedIn: 'root',
|
|
29
|
+
}]
|
|
30
|
+
}] });
|
|
31
|
+
function initAppFactory(appInitService) {
|
|
32
|
+
return () => appInitService.runAllTasks();
|
|
33
|
+
}
|
|
34
|
+
export const AXPAppStartUpProvider = {
|
|
35
|
+
provide: APP_INITIALIZER,
|
|
36
|
+
useFactory: initAppFactory,
|
|
37
|
+
deps: [AXPAppStartUpService],
|
|
38
|
+
multi: true,
|
|
39
|
+
};
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLXN0YXJ0dXAuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vY29tbW9uL3NyYy9saWIvYXBwL2FwcC1zdGFydHVwLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGVBQWUsRUFBRSxVQUFVLEVBQVksTUFBTSxlQUFlLENBQUM7O0FBV3RFLE1BQU0sT0FBTyxvQkFBb0I7SUFIakM7UUFJVSxVQUFLLEdBQXFCLEVBQUUsQ0FBQztLQW1CdEM7SUFqQkMsWUFBWSxDQUFDLElBQW9CO1FBQy9CLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3hCLENBQUM7SUFFRCxLQUFLLENBQUMsV0FBVztRQUNmLEtBQUssTUFBTSxJQUFJLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1lBQzlCLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1lBQ25DLE1BQU0sSUFBSSxDQUFDLEdBQUcsRUFBRSxDQUFDO1FBQ25CLENBQUM7SUFDSCxDQUFDO0lBRU8sWUFBWSxDQUFDLE1BQWM7UUFDakMsTUFBTSxXQUFXLEdBQUcsUUFBUSxDQUFDLGFBQWEsQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUMzRCxJQUFJLFdBQVcsRUFBRSxDQUFDO1lBQ2hCLFdBQVcsQ0FBQyxTQUFTLEdBQUcsTUFBTSxDQUFDO1FBQ2pDLENBQUM7SUFDSCxDQUFDOzhHQW5CVSxvQkFBb0I7a0hBQXBCLG9CQUFvQixjQUZuQixNQUFNOzsyRkFFUCxvQkFBb0I7a0JBSGhDLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25COztBQXVCRCxTQUFTLGNBQWMsQ0FBQyxjQUFvQztJQUMxRCxPQUFPLEdBQUcsRUFBRSxDQUFDLGNBQWMsQ0FBQyxXQUFXLEVBQUUsQ0FBQztBQUM1QyxDQUFDO0FBRUQsTUFBTSxDQUFDLE1BQU0scUJBQXFCLEdBQWE7SUFDN0MsT0FBTyxFQUFFLGVBQWU7SUFDeEIsVUFBVSxFQUFFLGNBQWM7SUFDMUIsSUFBSSxFQUFFLENBQUMsb0JBQW9CLENBQUM7SUFDNUIsS0FBSyxFQUFFLElBQUk7Q0FDWixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVBQX0lOSVRJQUxJWkVSLCBJbmplY3RhYmxlLCBQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEFYUFN0YXJ0VXBUYXNrIHtcbiAgbmFtZTogc3RyaW5nO1xuICBzdGF0dXNUZXh0OiBzdHJpbmc7XG4gIHJ1bjogKCkgPT4gUHJvbWlzZTx2b2lkPjtcbn1cblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIEFYUEFwcFN0YXJ0VXBTZXJ2aWNlIHtcbiAgcHJpdmF0ZSB0YXNrczogQVhQU3RhcnRVcFRhc2tbXSA9IFtdO1xuXG4gIHJlZ2lzdGVyVGFzayh0YXNrOiBBWFBTdGFydFVwVGFzaykge1xuICAgIHRoaXMudGFza3MucHVzaCh0YXNrKTtcbiAgfVxuXG4gIGFzeW5jIHJ1bkFsbFRhc2tzKCkge1xuICAgIGZvciAoY29uc3QgdGFzayBvZiB0aGlzLnRhc2tzKSB7XG4gICAgICB0aGlzLnVwZGF0ZVN0YXR1cyh0YXNrLnN0YXR1c1RleHQpO1xuICAgICAgYXdhaXQgdGFzay5ydW4oKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZVN0YXR1cyhzdGF0dXM6IHN0cmluZykge1xuICAgIGNvbnN0IGxvYWRpbmdUZXh0ID0gZG9jdW1lbnQucXVlcnlTZWxlY3RvcignI2xvYWRpbmdUZXh0Jyk7XG4gICAgaWYgKGxvYWRpbmdUZXh0KSB7XG4gICAgICBsb2FkaW5nVGV4dC5pbm5lckhUTUwgPSBzdGF0dXM7XG4gICAgfVxuICB9XG59XG5cbmZ1bmN0aW9uIGluaXRBcHBGYWN0b3J5KGFwcEluaXRTZXJ2aWNlOiBBWFBBcHBTdGFydFVwU2VydmljZSkge1xuICByZXR1cm4gKCkgPT4gYXBwSW5pdFNlcnZpY2UucnVuQWxsVGFza3MoKTtcbn1cblxuZXhwb3J0IGNvbnN0IEFYUEFwcFN0YXJ0VXBQcm92aWRlcjogUHJvdmlkZXIgPSB7XG4gIHByb3ZpZGU6IEFQUF9JTklUSUFMSVpFUixcbiAgdXNlRmFjdG9yeTogaW5pdEFwcEZhY3RvcnksXG4gIGRlcHM6IFtBWFBBcHBTdGFydFVwU2VydmljZV0sXG4gIG11bHRpOiB0cnVlLFxufTtcbiJdfQ==
|
|
@@ -40,4 +40,4 @@ export function resolveActionLook(tr) {
|
|
|
40
40
|
return { color: 'primary', icon: '' };
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb24udHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL2NvbW1vbi9zcmMvbGliL2FwcC9hcHBsaWNhdGlvbi50eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFnQkEsTUFBTSxDQUFOLElBQVksbUJBSVg7QUFKRCxXQUFZLG1CQUFtQjtJQUM3QiwyRUFBVyxDQUFBO0lBQ1gsMkVBQVcsQ0FBQTtJQUNYLDJFQUFXLENBQUE7QUFDYixDQUFDLEVBSlcsbUJBQW1CLEtBQW5CLG1CQUFtQixRQUk5QjtBQUVELE1BQU0sQ0FBTixJQUFZLDBCQUlYO0FBSkQsV0FBWSwwQkFBMEI7SUFDcEMsbUZBQVEsQ0FBQTtJQUNSLHFGQUFTLENBQUE7SUFDVCx1RkFBVSxDQUFBO0FBQ1osQ0FBQyxFQUpXLDBCQUEwQixLQUExQiwwQkFBMEIsUUFJckM7QUFVRCxNQUFNLENBQU4sSUFBWSxxQkFLWDtBQUxELFdBQVkscUJBQXFCO0lBQy9CLGdEQUF1QixDQUFBO0lBQ3ZCLDhDQUFxQixDQUFBO0lBQ3JCLGtEQUF5QixDQUFBO0lBQ3pCLDRDQUFtQixDQUFBO0FBQ3JCLENBQUMsRUFMVyxxQkFBcUIsS0FBckIscUJBQXFCLFFBS2hDO0FBRUQsTUFBTSxDQUFOLElBQVksa0JBR1g7QUFIRCxXQUFZLGtCQUFrQjtJQUM1Qix1Q0FBaUIsQ0FBQTtJQUNqQixtQ0FBYSxDQUFBO0FBQ2YsQ0FBQyxFQUhXLGtCQUFrQixLQUFsQixrQkFBa0IsUUFHN0I7QUFpT0QsTUFBTSxVQUFVLGlCQUFpQixDQUFDLEVBQW1CO0lBQ25ELFFBQVEsRUFBRSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ2hCLEtBQUssUUFBUTtZQUNYLE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxpQkFBaUIsRUFBRSxDQUFDO1FBQ3ZELEtBQUssTUFBTTtZQUNULE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxpQkFBaUIsRUFBRSxDQUFDO1FBQ3ZELEtBQUssTUFBTTtZQUNULE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxrQkFBa0IsRUFBRSxDQUFDO1FBQ3hELEtBQUssUUFBUTtZQUNYLE9BQU8sRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1FBQ3hELEtBQUssT0FBTztZQUNWLE9BQU8sRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1FBQzNELEtBQUssU0FBUztZQUNaLE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1FBQ3pEO1lBQ0UsT0FBTyxFQUFFLEtBQUssRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFFLEVBQUUsRUFBRSxDQUFDO0lBQzFDLENBQUM7QUFDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhEYXRhU291cmNlT3BlcmF0b3IsIEFYU3R5bGVDb2xvclR5cGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uJztcbmltcG9ydCB7IEFYUE9wdGlvbnNEYXRhLCBBWFBWYWxpZGF0aW9uUnVsZXMgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvcmUnO1xuaW1wb3J0IHsgQVhQV2lkZ2V0VHlwZXNNYXAgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUEdyaWRMYXlvdXRPcHRpb25zIH0gZnJvbSAnLi4vbGF5b3V0JztcblxuZXhwb3J0IGludGVyZmFjZSBBWEVudGl0eVByb3BlcnR5V2lkZ2V0IHtcbiAgdHlwZTogQVhQV2lkZ2V0VHlwZXNNYXBba2V5b2YgQVhQV2lkZ2V0VHlwZXNNYXBdO1xuICBwYXRoOiBzdHJpbmc7XG4gIGlkPzogc3RyaW5nO1xuICBmb3JtdWxhPzogc3RyaW5nO1xuICBjaGlsZHJlbj86IEFYRW50aXR5UHJvcGVydHlXaWRnZXRbXTtcbiAgbW9kZTogJ3ZpZXcnIHwgJ2VkaXQnIHwgJ2Rlc2lnbmVyJztcbiAgb3B0aW9ucz86IFJlY29yZDxzdHJpbmcsIGFueT47XG4gIHRyaWdnZXJzPzogeyBldmVudDogc3RyaW5nOyBhY3Rpb246IHN0cmluZzsgZGlzYWJsZWQ/OiBib29sZWFuIH1bXTtcbn1cblxuZXhwb3J0IGVudW0gQVhQUmVsYXRpb25zaGlwS2luZCB7XG4gIEFzc29jaWF0aW9uLFxuICBDb21wb3NpdGlvbixcbiAgQWdncmVnYXRpb24sXG59XG5cbmV4cG9ydCBlbnVtIEFYUFJlbGF0aW9uc2hpcENhcmRpbmFsaXR5IHtcbiAgT25lVG9PbmUsXG4gIE9uZVRvTWFueSxcbiAgTWFueVRvTWFueSxcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBSZWxhdGlvbnNoaXAge1xuICBpZDogc3RyaW5nO1xuICBmcm9tOiBzdHJpbmc7XG4gIHRvOiBzdHJpbmc7XG4gIGtpbmQ6IEFYUFJlbGF0aW9uc2hpcEtpbmQ7XG4gIGNhcmRpbmFsaXR5OiBBWFBSZWxhdGlvbnNoaXBDYXJkaW5hbGl0eTtcbn1cblxuZXhwb3J0IGVudW0gQVhQRW50aXR5Q29tbWFuZFNjb3BlIHtcbiAgVHlwZUxldmVsID0gJ3R5cGVMZXZlbCcsXG4gIFNlbGVjdGVkID0gJ3NlbGVjdGVkJyxcbiAgSW5kaXZpZHVhbCA9ICdpbmRpdmlkdWFsJyxcbiAgU2VjdGlvbiA9ICdzZWN0aW9uJyxcbn1cblxuZXhwb3J0IGVudW0gQVhQRW50aXR5UXVlcnlUeXBlIHtcbiAgU2luZ2xlID0gJ3NpbmdsZScsXG4gIExpc3QgPSAnbGlzdCcsXG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5UHJvcGVydHlMYXlvdXRDb25maWcgZXh0ZW5kcyBBWFBHcmlkTGF5b3V0T3B0aW9ucyB7XG4gIG9yZGVyPzogbnVtYmVyO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVByb3BlcnR5R3JvdXAge1xuICBpZDogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBkZXNjcmlwdGlvbj86IHN0cmluZztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlQcm9wZXJ0eVZpZXcge1xuICBuYW1lOiBzdHJpbmc7XG4gIGxheW91dD86IEFYUEVudGl0eVByb3BlcnR5TGF5b3V0Q29uZmlnO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVByb3BlcnR5VXBkYXRlVmlldyBleHRlbmRzIEFYUEVudGl0eVByb3BlcnR5VmlldyB7fVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVByb3BlcnR5Q3JlYXRlVmlldyBleHRlbmRzIEFYUEVudGl0eVByb3BlcnR5VmlldyB7XG4gIGRlZmF1bHRWYWx1ZT86IGFueTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlTZWN0aW9uVmlldyB7XG4gIGlkOiBzdHJpbmc7XG4gIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xuICBvcmRlcj86IG51bWJlcjtcbiAgbGF5b3V0PzogQVhQRW50aXR5UHJvcGVydHlMYXlvdXRDb25maWc7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5UHJvcGVydHkge1xuICBuYW1lOiBzdHJpbmc7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xuICBncm91cElkPzogc3RyaW5nO1xuICByZWZlcmVuY2U/OiB7XG4gICAgcmVsYXRpb25JZDogc3RyaW5nO1xuICB9O1xuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogc3RyaW5nO1xuICAgIG51bGxhYmxlPzogYm9vbGVhbjtcbiAgICByZWFkb25seT86IGJvb2xlYW47XG4gICAgaGlkZGVuPzogYm9vbGVhbjtcbiAgICBkZWZhdWx0VmFsdWU/OiBhbnkgfCBzdHJpbmcgfCAoKGNvbnRleHQ6IGFueSB8IG51bGwpID0+IGFueSk7XG4gICAgdW5pcXVlPzoge1xuICAgICAgZW5hYmxlZDogYm9vbGVhbjtcbiAgICB9O1xuICAgIGludGVyZmFjZT86IFBhcnRpYWw8QVhFbnRpdHlQcm9wZXJ0eVdpZGdldD47XG4gIH07XG4gIG9wdGlvbnM/OiB7XG4gICAgZmlsdGVyPzoge1xuICAgICAgYWR2YW5jZT86IHtcbiAgICAgICAgZW5hYmxlZD86IGJvb2xlYW47XG4gICAgICAgIHdpZGdldD86IEFYUE9wdGlvbnNEYXRhO1xuICAgICAgfTtcbiAgICAgIGlubGluZT86IHtcbiAgICAgICAgZW5hYmxlZD86IGJvb2xlYW47XG4gICAgICB9O1xuICAgIH07XG4gICAgc29ydD86IHtcbiAgICAgIGVuYWJsZWQ/OiBib29sZWFuO1xuICAgIH07XG4gIH07XG4gIHZhbGlkYXRpb25zPzogQVhQVmFsaWRhdGlvblJ1bGVzO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVRhYmxlQ29sdW1uIHtcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZT86IHN0cmluZztcbiAgb3B0aW9ucz86IHtcbiAgICB2aXNpYmxlPzogYm9vbGVhbjtcbiAgICB3aWR0aD86IHN0cmluZztcbiAgICBbbmFtZTogc3RyaW5nXTogYW55O1xuICB9O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eUNvbW1hbmQge1xuICBleGVjdXRlOiBzdHJpbmcgfCBGdW5jdGlvbjsgLy8gQXMgcnVubmFibGUgZXhwcmVzc2lvblxuICBwZXJtaXNzaW9ucz86IHN0cmluZ1tdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVF1ZXJ5IHtcbiAgZXhlY3V0ZTogc3RyaW5nIHwgRnVuY3Rpb247IC8vIEFzIHJ1bm5hYmxlIGV4cHJlc3Npb25cbiAgcGVybWlzc2lvbnM/OiBzdHJpbmdbXTtcbiAgdHlwZTogQVhQRW50aXR5UXVlcnlUeXBlO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eUhpc3Rvcnkge31cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlBY3Rpb24ge1xuICBjb21tYW5kOiBzdHJpbmc7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIHR5cGU6ICdjcmVhdGUnIHwgJ3VwZGF0ZScgfCAnZGVsZXRlJyB8ICdwcmludCcgfCAnY29uZmlybScgfCAncmVwb3J0JyB8ICdpbmZvJyB8ICd2aWV3JztcbiAgcHJpb3JpdHk6ICdwcmltYXJ5JyB8ICdzZWNvbmRhcnknO1xuICBjb2xvcj86ICdwcmltYXJ5JyB8ICdkYW5nZXInIHwgJ3N1Y2Nlc3MnIHwgJ3dhcm5pbmcnO1xuICBzZXBhcmF0ZWQ/OiBib29sZWFuO1xuICBpY29uPzogc3RyaW5nO1xuICBzY29wZTogQVhQRW50aXR5Q29tbWFuZFNjb3BlO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eSB7XG4gIG1vZHVsZTogc3RyaW5nO1xuICBuYW1lOiBzdHJpbmc7XG4gIHNvdXJjZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBmb3JtYXRzOiB7XG4gICAgaW5kaXZpZHVhbDogc3RyaW5nO1xuICAgIHBsdXJhbDogc3RyaW5nO1xuICAgIGxvb2t1cD86IHN0cmluZztcbiAgfTtcbiAgcmVsYXRlZEVudGl0aWVzPzogQVhQUmVsYXRlZEVudGl0eVtdO1xuICBncm91cHM/OiBBWFBFbnRpdHlQcm9wZXJ0eUdyb3VwW107XG4gIHByb3BlcnRpZXM6IEFYUEVudGl0eVByb3BlcnR5W107XG4gIGNvbHVtbnM/OiBBWFBFbnRpdHlUYWJsZUNvbHVtbltdO1xuICBjb21tYW5kcz86IHtcbiAgICBjcmVhdGU6IEFYUEVudGl0eUNvbW1hbmQgfCB1bmRlZmluZWQ7XG4gICAgdXBkYXRlPzogQVhQRW50aXR5Q29tbWFuZCB8IHVuZGVmaW5lZDtcbiAgICBkZWxldGU/OiBBWFBFbnRpdHlDb21tYW5kIHwgdW5kZWZpbmVkO1xuICAgIFtuYW1lOiBzdHJpbmddOiBBWFBFbnRpdHlDb21tYW5kIHwgdW5kZWZpbmVkO1xuICB9O1xuICBxdWVyaWVzOiB7XG4gICAgYnlLZXk6IEFYUEVudGl0eVF1ZXJ5O1xuICAgIGxpc3Q/OiBBWFBFbnRpdHlRdWVyeTtcbiAgICBsb29rdXA/OiBBWFBFbnRpdHlRdWVyeTtcbiAgICBoaXN0b3J5PzogQVhQRW50aXR5UXVlcnk7XG4gICAgY29tbWVudHM/OiBBWFBFbnRpdHlRdWVyeTtcbiAgICBbbmFtZTogc3RyaW5nXTogQVhQRW50aXR5UXVlcnkgfCB1bmRlZmluZWQ7XG4gIH07XG4gIHZhbGlkYXRpb25zPzogQVhQVmFsaWRhdGlvblJ1bGVzO1xuICBpbnRlcmZhY2VzPzoge1xuICAgIG1hc3Rlcj86IHtcbiAgICAgIHNpbmdsZT86IEFYUEVudGl0eU1hc3RlclNpbmdsZUxheW91dFZpZXc7XG4gICAgICBsaXN0PzogQVhQRW50aXR5TWFzdGVyTGlzdFZpZXc7XG4gICAgICBjcmVhdGU/OiBBWFBFbnRpdHlNYXN0ZXJDcmVhdGVMYXlvdXRWaWV3O1xuICAgICAgdXBkYXRlPzogQVhQRW50aXR5TWFzdGVyVXBkYXRlTGF5b3V0VmlldztcbiAgICB9O1xuICAgIGRldGFpbD86IHtcbiAgICAgIGxpc3Q/OiBBWFBFbnRpdHlEZXRhaWxMaXN0VmlldztcbiAgICB9O1xuICB9O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUFJlbGF0ZWRFbnRpdHkge1xuICBlbnRpdHk6IHN0cmluZztcbiAgdGl0bGU/OiBzdHJpbmc7XG4gIGNvbHVtbnM/OiBzdHJpbmdbXTtcbiAgY29uZGl0aW9ucz86IEFYUFF1ZXJ5RmlsdGVyW107XG4gIHNvcnRzPzogQVhQUXVlcnlTb3J0W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQQWdncmVnYXRlIHtcbiAgaWQ6IHN0cmluZztcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBlbnRpdGllczogQVhQRW50aXR5W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQTW9kdWxlIHtcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBhZ2dyZWdhdGVzOiBBWFBBZ2dyZWdhdGVbXTtcbiAgcmVsYXRpb25zaGlwcz86IEFYUFJlbGF0aW9uc2hpcFtdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEFwcGxpY2F0aW9uIHtcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBtb2R1bGVzOiBBWFBNb2R1bGVbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHtcbiAgdGl0bGU/OiBzdHJpbmc7XG4gIHNlY3Rpb25zOiBBWFBFbnRpdHlTZWN0aW9uVmlld1tdO1xuICBwcm9wZXJ0aWVzPzogQVhQRW50aXR5UHJvcGVydHlWaWV3W107XG59XG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eU1hc3RlckNyZWF0ZUxheW91dFZpZXcgZXh0ZW5kcyBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHtcbiAgc3RlcHM/OiB7XG4gICAgaWQ6IHN0cmluZztcbiAgICB0aXRsZTogc3RyaW5nO1xuICAgIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xuICB9O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eU1hc3RlclVwZGF0ZUxheW91dFZpZXcgZXh0ZW5kcyBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHt9XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5TWFzdGVyU2luZ2xlTGF5b3V0VmlldyBleHRlbmRzIEFYUEVudGl0eU1hc3RlckxheW91dFZpZXcge1xuICB0aXRsZTogc3RyaW5nO1xuICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgYWN0aW9ucz86IEFYUEVudGl0eUFjdGlvbltdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eU1hc3Rlckxpc3RWaWV3IHtcbiAgdGl0bGU/OiBzdHJpbmc7XG4gIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xuICBhY3Rpb25zPzogQVhQRW50aXR5QWN0aW9uW107XG4gIHZpZXdzOiBBWFBRdWVyeVZpZXdbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlEZXRhaWxMaXN0VmlldyB7XG4gIHRpdGxlPzogc3RyaW5nO1xuICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgY29sdW1uczogQVhQRW50aXR5VGFibGVDb2x1bW5bXTtcbiAgYWN0aW9ucz86IEFYUEVudGl0eUFjdGlvbltdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUFF1ZXJ5VmlldyB7XG4gIG5hbWU6IHN0cmluZztcbiAgZml4ZWQ6IGJvb2xlYW47XG4gIHRpdGxlOiBzdHJpbmc7XG4gIGNvbHVtbnM6IHN0cmluZ1tdO1xuICBjb25kaXRpb25zOiBBWFBRdWVyeUZpbHRlcltdO1xuICBzb3J0czogQVhQUXVlcnlTb3J0W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQUXVlcnlGaWx0ZXIge1xuICBuYW1lOiBzdHJpbmc7IC8vIGVudGl0eSBwcm9wZXJ0eSBuYW1lXG4gIG9wZXJhdG9yOiBBWERhdGFTb3VyY2VPcGVyYXRvcjtcbiAgdmFsdWU6IGFueTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBRdWVyeVNvcnQge1xuICBuYW1lOiBzdHJpbmc7IC8vIGVudGl0eSBwcm9wZXJ0eSBuYW1lXG4gIGRpcjogJ2FzYycgfCAnZGVzYyc7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiByZXNvbHZlQWN0aW9uTG9vayh0cjogQVhQRW50aXR5QWN0aW9uKTogeyBpY29uOiBzdHJpbmc7IGNvbG9yOiBBWFN0eWxlQ29sb3JUeXBlIH0ge1xuICBzd2l0Y2ggKHRyLnR5cGUpIHtcbiAgICBjYXNlICdjcmVhdGUnOlxuICAgICAgcmV0dXJuIHsgY29sb3I6ICdwcmltYXJ5JywgaWNvbjogJ2ZhLXNvbGlkIGZhLWFkZCcgfTtcbiAgICBjYXNlICd2aWV3JzpcbiAgICAgIHJldHVybiB7IGNvbG9yOiAncHJpbWFyeScsIGljb246ICdmYS1zb2xpZCBmYS1leWUnIH07XG4gICAgY2FzZSAnaW5mbyc6XG4gICAgICByZXR1cm4geyBjb2xvcjogJ3ByaW1hcnknLCBpY29uOiAnZmEtc29saWQgZmEtaW5mbycgfTtcbiAgICBjYXNlICdkZWxldGUnOlxuICAgICAgcmV0dXJuIHsgY29sb3I6ICdkYW5nZXInLCBpY29uOiAnZmEtc29saWQgZmEtdHJhc2gnIH07XG4gICAgY2FzZSAncHJpbnQnOlxuICAgICAgcmV0dXJuIHsgY29sb3I6ICdzZWNvbmRhcnknLCBpY29uOiAnZmEtc29saWQgZmEtcHJpbnQnIH07XG4gICAgY2FzZSAnY29uZmlybSc6XG4gICAgICByZXR1cm4geyBjb2xvcjogJ3N1Y2Nlc3MnLCBpY29uOiAnZmEtc29saWQgZmEtY2hlY2snIH07XG4gICAgZGVmYXVsdDpcbiAgICAgIHJldHVybiB7IGNvbG9yOiAncHJpbWFyeScsIGljb246ICcnIH07XG4gIH1cbn1cbiJdfQ==
|
|
43
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb24udHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL2NvbW1vbi9zcmMvbGliL2FwcC9hcHBsaWNhdGlvbi50eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFnQkEsTUFBTSxDQUFOLElBQVksbUJBSVg7QUFKRCxXQUFZLG1CQUFtQjtJQUM3QiwyRUFBVyxDQUFBO0lBQ1gsMkVBQVcsQ0FBQTtJQUNYLDJFQUFXLENBQUE7QUFDYixDQUFDLEVBSlcsbUJBQW1CLEtBQW5CLG1CQUFtQixRQUk5QjtBQUVELE1BQU0sQ0FBTixJQUFZLDBCQUlYO0FBSkQsV0FBWSwwQkFBMEI7SUFDcEMsbUZBQVEsQ0FBQTtJQUNSLHFGQUFTLENBQUE7SUFDVCx1RkFBVSxDQUFBO0FBQ1osQ0FBQyxFQUpXLDBCQUEwQixLQUExQiwwQkFBMEIsUUFJckM7QUFVRCxNQUFNLENBQU4sSUFBWSxxQkFLWDtBQUxELFdBQVkscUJBQXFCO0lBQy9CLGdEQUF1QixDQUFBO0lBQ3ZCLDhDQUFxQixDQUFBO0lBQ3JCLGtEQUF5QixDQUFBO0lBQ3pCLDRDQUFtQixDQUFBO0FBQ3JCLENBQUMsRUFMVyxxQkFBcUIsS0FBckIscUJBQXFCLFFBS2hDO0FBRUQsTUFBTSxDQUFOLElBQVksa0JBR1g7QUFIRCxXQUFZLGtCQUFrQjtJQUM1Qix1Q0FBaUIsQ0FBQTtJQUNqQixtQ0FBYSxDQUFBO0FBQ2YsQ0FBQyxFQUhXLGtCQUFrQixLQUFsQixrQkFBa0IsUUFHN0I7QUFtT0QsTUFBTSxVQUFVLGlCQUFpQixDQUFDLEVBQW1CO0lBQ25ELFFBQVEsRUFBRSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ2hCLEtBQUssUUFBUTtZQUNYLE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxpQkFBaUIsRUFBRSxDQUFDO1FBQ3ZELEtBQUssTUFBTTtZQUNULE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxpQkFBaUIsRUFBRSxDQUFDO1FBQ3ZELEtBQUssTUFBTTtZQUNULE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxrQkFBa0IsRUFBRSxDQUFDO1FBQ3hELEtBQUssUUFBUTtZQUNYLE9BQU8sRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1FBQ3hELEtBQUssT0FBTztZQUNWLE9BQU8sRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1FBQzNELEtBQUssU0FBUztZQUNaLE9BQU8sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1FBQ3pEO1lBQ0UsT0FBTyxFQUFFLEtBQUssRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFFLEVBQUUsRUFBRSxDQUFDO0lBQzFDLENBQUM7QUFDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhEYXRhU291cmNlT3BlcmF0b3IsIEFYU3R5bGVDb2xvclR5cGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uJztcbmltcG9ydCB7IEFYUE9wdGlvbnNEYXRhLCBBWFBWYWxpZGF0aW9uUnVsZXMgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvcmUnO1xuaW1wb3J0IHsgQVhQV2lkZ2V0VHlwZXNNYXAgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUEdyaWRMYXlvdXRPcHRpb25zIH0gZnJvbSAnLi4vbGF5b3V0JztcblxuZXhwb3J0IGludGVyZmFjZSBBWEVudGl0eVByb3BlcnR5V2lkZ2V0IHtcbiAgdHlwZTogQVhQV2lkZ2V0VHlwZXNNYXBba2V5b2YgQVhQV2lkZ2V0VHlwZXNNYXBdO1xuICBwYXRoOiBzdHJpbmc7XG4gIGlkPzogc3RyaW5nO1xuICBmb3JtdWxhPzogc3RyaW5nO1xuICBjaGlsZHJlbj86IEFYRW50aXR5UHJvcGVydHlXaWRnZXRbXTtcbiAgbW9kZTogJ3ZpZXcnIHwgJ2VkaXQnIHwgJ2Rlc2lnbmVyJztcbiAgb3B0aW9ucz86IFJlY29yZDxzdHJpbmcsIGFueT47XG4gIHRyaWdnZXJzPzogeyBldmVudDogc3RyaW5nOyBhY3Rpb246IHN0cmluZzsgZGlzYWJsZWQ/OiBib29sZWFuIH1bXTtcbn1cblxuZXhwb3J0IGVudW0gQVhQUmVsYXRpb25zaGlwS2luZCB7XG4gIEFzc29jaWF0aW9uLFxuICBDb21wb3NpdGlvbixcbiAgQWdncmVnYXRpb24sXG59XG5cbmV4cG9ydCBlbnVtIEFYUFJlbGF0aW9uc2hpcENhcmRpbmFsaXR5IHtcbiAgT25lVG9PbmUsXG4gIE9uZVRvTWFueSxcbiAgTWFueVRvTWFueSxcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBSZWxhdGlvbnNoaXAge1xuICBpZDogc3RyaW5nO1xuICBmcm9tOiBzdHJpbmc7XG4gIHRvOiBzdHJpbmc7XG4gIGtpbmQ6IEFYUFJlbGF0aW9uc2hpcEtpbmQ7XG4gIGNhcmRpbmFsaXR5OiBBWFBSZWxhdGlvbnNoaXBDYXJkaW5hbGl0eTtcbn1cblxuZXhwb3J0IGVudW0gQVhQRW50aXR5Q29tbWFuZFNjb3BlIHtcbiAgVHlwZUxldmVsID0gJ3R5cGVMZXZlbCcsXG4gIFNlbGVjdGVkID0gJ3NlbGVjdGVkJyxcbiAgSW5kaXZpZHVhbCA9ICdpbmRpdmlkdWFsJyxcbiAgU2VjdGlvbiA9ICdzZWN0aW9uJyxcbn1cblxuZXhwb3J0IGVudW0gQVhQRW50aXR5UXVlcnlUeXBlIHtcbiAgU2luZ2xlID0gJ3NpbmdsZScsXG4gIExpc3QgPSAnbGlzdCcsXG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5UHJvcGVydHlMYXlvdXRDb25maWcgZXh0ZW5kcyBBWFBHcmlkTGF5b3V0T3B0aW9ucyB7XG4gIG9yZGVyPzogbnVtYmVyO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVByb3BlcnR5R3JvdXAge1xuICBpZDogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgcGVybWlzc2lvbnM/OiBzdHJpbmdbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlQcm9wZXJ0eVZpZXcge1xuICBuYW1lOiBzdHJpbmc7XG4gIHBlcm1pc3Npb25zPzogc3RyaW5nW107XG4gIGxheW91dD86IEFYUEVudGl0eVByb3BlcnR5TGF5b3V0Q29uZmlnO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVByb3BlcnR5VXBkYXRlVmlldyBleHRlbmRzIEFYUEVudGl0eVByb3BlcnR5VmlldyB7IH1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlQcm9wZXJ0eUNyZWF0ZVZpZXcgZXh0ZW5kcyBBWFBFbnRpdHlQcm9wZXJ0eVZpZXcge1xuICBkZWZhdWx0VmFsdWU/OiBhbnk7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5U2VjdGlvblZpZXcge1xuICBpZDogc3RyaW5nO1xuICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgb3JkZXI/OiBudW1iZXI7XG4gIGxheW91dD86IEFYUEVudGl0eVByb3BlcnR5TGF5b3V0Q29uZmlnO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eVByb3BlcnR5IHtcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZT86IHN0cmluZztcbiAgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG4gIGdyb3VwSWQ/OiBzdHJpbmc7XG4gIHJlZmVyZW5jZT86IHtcbiAgICByZWxhdGlvbklkOiBzdHJpbmc7XG4gIH07XG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiBzdHJpbmc7XG4gICAgbnVsbGFibGU/OiBib29sZWFuO1xuICAgIHJlYWRvbmx5PzogYm9vbGVhbjtcbiAgICBoaWRkZW4/OiBib29sZWFuO1xuICAgIGRlZmF1bHRWYWx1ZT86IGFueSB8IHN0cmluZyB8ICgoY29udGV4dDogYW55IHwgbnVsbCkgPT4gYW55KTtcbiAgICB1bmlxdWU/OiB7XG4gICAgICBlbmFibGVkOiBib29sZWFuO1xuICAgIH07XG4gICAgaW50ZXJmYWNlPzogUGFydGlhbDxBWEVudGl0eVByb3BlcnR5V2lkZ2V0PjtcbiAgfTtcbiAgb3B0aW9ucz86IHtcbiAgICBmaWx0ZXI/OiB7XG4gICAgICBhZHZhbmNlPzoge1xuICAgICAgICBlbmFibGVkPzogYm9vbGVhbjtcbiAgICAgICAgd2lkZ2V0PzogQVhQT3B0aW9uc0RhdGE7XG4gICAgICB9O1xuICAgICAgaW5saW5lPzoge1xuICAgICAgICBlbmFibGVkPzogYm9vbGVhbjtcbiAgICAgIH07XG4gICAgfTtcbiAgICBzb3J0Pzoge1xuICAgICAgZW5hYmxlZD86IGJvb2xlYW47XG4gICAgfTtcbiAgfTtcbiAgdmFsaWRhdGlvbnM/OiBBWFBWYWxpZGF0aW9uUnVsZXM7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5VGFibGVDb2x1bW4ge1xuICBuYW1lOiBzdHJpbmc7XG4gIHRpdGxlPzogc3RyaW5nO1xuICBvcHRpb25zPzoge1xuICAgIHZpc2libGU/OiBib29sZWFuO1xuICAgIHdpZHRoPzogc3RyaW5nO1xuICAgIFtuYW1lOiBzdHJpbmddOiBhbnk7XG4gIH07XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5Q29tbWFuZCB7XG4gIGV4ZWN1dGU6IHN0cmluZyB8IEZ1bmN0aW9uOyAvLyBBcyBydW5uYWJsZSBleHByZXNzaW9uXG4gIHBlcm1pc3Npb25zPzogc3RyaW5nW107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5UXVlcnkge1xuICBleGVjdXRlOiBzdHJpbmcgfCBGdW5jdGlvbjsgLy8gQXMgcnVubmFibGUgZXhwcmVzc2lvblxuICB0eXBlOiBBWFBFbnRpdHlRdWVyeVR5cGU7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5SGlzdG9yeSB7IH1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlBY3Rpb24ge1xuICBwZXJtaXNzaW9ucz86IHN0cmluZ1tdO1xuICBjb21tYW5kOiBzdHJpbmc7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIHR5cGU6ICdjcmVhdGUnIHwgJ3VwZGF0ZScgfCAnZGVsZXRlJyB8ICdwcmludCcgfCAnY29uZmlybScgfCAncmVwb3J0JyB8ICdpbmZvJyB8ICd2aWV3JztcbiAgcHJpb3JpdHk6ICdwcmltYXJ5JyB8ICdzZWNvbmRhcnknO1xuICBjb2xvcj86ICdwcmltYXJ5JyB8ICdkYW5nZXInIHwgJ3N1Y2Nlc3MnIHwgJ3dhcm5pbmcnO1xuICBzZXBhcmF0ZWQ/OiBib29sZWFuO1xuICBpY29uPzogc3RyaW5nO1xuICBzY29wZTogQVhQRW50aXR5Q29tbWFuZFNjb3BlO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eSB7XG4gIG1vZHVsZTogc3RyaW5nO1xuICBuYW1lOiBzdHJpbmc7XG4gIHNvdXJjZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBmb3JtYXRzOiB7XG4gICAgaW5kaXZpZHVhbDogc3RyaW5nO1xuICAgIHBsdXJhbDogc3RyaW5nO1xuICAgIGxvb2t1cD86IHN0cmluZztcbiAgfTtcbiAgcmVsYXRlZEVudGl0aWVzPzogQVhQUmVsYXRlZEVudGl0eVtdO1xuICBncm91cHM/OiBBWFBFbnRpdHlQcm9wZXJ0eUdyb3VwW107XG4gIHByb3BlcnRpZXM6IEFYUEVudGl0eVByb3BlcnR5W107XG4gIGNvbHVtbnM/OiBBWFBFbnRpdHlUYWJsZUNvbHVtbltdO1xuICBjb21tYW5kcz86IHtcbiAgICBjcmVhdGU6IEFYUEVudGl0eUNvbW1hbmQgfCB1bmRlZmluZWQ7XG4gICAgdXBkYXRlPzogQVhQRW50aXR5Q29tbWFuZCB8IHVuZGVmaW5lZDtcbiAgICBkZWxldGU/OiBBWFBFbnRpdHlDb21tYW5kIHwgdW5kZWZpbmVkO1xuICAgIFtuYW1lOiBzdHJpbmddOiBBWFBFbnRpdHlDb21tYW5kIHwgdW5kZWZpbmVkO1xuICB9O1xuICBxdWVyaWVzOiB7XG4gICAgYnlLZXk6IEFYUEVudGl0eVF1ZXJ5O1xuICAgIGxpc3Q/OiBBWFBFbnRpdHlRdWVyeTtcbiAgICBsb29rdXA/OiBBWFBFbnRpdHlRdWVyeTtcbiAgICBoaXN0b3J5PzogQVhQRW50aXR5UXVlcnk7XG4gICAgY29tbWVudHM/OiBBWFBFbnRpdHlRdWVyeTtcbiAgICBbbmFtZTogc3RyaW5nXTogQVhQRW50aXR5UXVlcnkgfCB1bmRlZmluZWQ7XG4gIH07XG4gIHZhbGlkYXRpb25zPzogQVhQVmFsaWRhdGlvblJ1bGVzO1xuICBpbnRlcmZhY2VzPzoge1xuICAgIG1hc3Rlcj86IHtcbiAgICAgIHNpbmdsZT86IEFYUEVudGl0eU1hc3RlclNpbmdsZUxheW91dFZpZXc7XG4gICAgICBsaXN0PzogQVhQRW50aXR5TWFzdGVyTGlzdFZpZXc7XG4gICAgICBjcmVhdGU/OiBBWFBFbnRpdHlNYXN0ZXJDcmVhdGVMYXlvdXRWaWV3O1xuICAgICAgdXBkYXRlPzogQVhQRW50aXR5TWFzdGVyVXBkYXRlTGF5b3V0VmlldztcbiAgICB9O1xuICAgIGRldGFpbD86IHtcbiAgICAgIGxpc3Q/OiBBWFBFbnRpdHlEZXRhaWxMaXN0VmlldztcbiAgICB9O1xuICB9O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUFJlbGF0ZWRFbnRpdHkge1xuICBlbnRpdHk6IHN0cmluZztcbiAgdGl0bGU/OiBzdHJpbmc7XG4gIGNvbHVtbnM/OiBzdHJpbmdbXTtcbiAgY29uZGl0aW9ucz86IEFYUFF1ZXJ5RmlsdGVyW107XG4gIHNvcnRzPzogQVhQUXVlcnlTb3J0W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQQWdncmVnYXRlIHtcbiAgaWQ6IHN0cmluZztcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBlbnRpdGllczogQVhQRW50aXR5W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQTW9kdWxlIHtcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBhZ2dyZWdhdGVzOiBBWFBBZ2dyZWdhdGVbXTtcbiAgcmVsYXRpb25zaGlwcz86IEFYUFJlbGF0aW9uc2hpcFtdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEFwcGxpY2F0aW9uIHtcbiAgbmFtZTogc3RyaW5nO1xuICB0aXRsZTogc3RyaW5nO1xuICBtb2R1bGVzOiBBWFBNb2R1bGVbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHtcbiAgdGl0bGU/OiBzdHJpbmc7XG4gIHNlY3Rpb25zOiBBWFBFbnRpdHlTZWN0aW9uVmlld1tdO1xuICBwcm9wZXJ0aWVzPzogQVhQRW50aXR5UHJvcGVydHlWaWV3W107XG59XG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eU1hc3RlckNyZWF0ZUxheW91dFZpZXcgZXh0ZW5kcyBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHtcbiAgc3RlcHM/OiB7XG4gICAgaWQ6IHN0cmluZztcbiAgICB0aXRsZTogc3RyaW5nO1xuICAgIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xuICB9O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eU1hc3RlclVwZGF0ZUxheW91dFZpZXcgZXh0ZW5kcyBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHsgfVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUEVudGl0eU1hc3RlclNpbmdsZUxheW91dFZpZXcgZXh0ZW5kcyBBWFBFbnRpdHlNYXN0ZXJMYXlvdXRWaWV3IHtcbiAgdGl0bGU6IHN0cmluZztcbiAgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG4gIGFjdGlvbnM/OiBBWFBFbnRpdHlBY3Rpb25bXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBFbnRpdHlNYXN0ZXJMaXN0VmlldyB7XG4gIHRpdGxlPzogc3RyaW5nO1xuICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgYWN0aW9ucz86IEFYUEVudGl0eUFjdGlvbltdO1xuICB2aWV3czogQVhQUXVlcnlWaWV3W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQRW50aXR5RGV0YWlsTGlzdFZpZXcge1xuICB0aXRsZT86IHN0cmluZztcbiAgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG4gIGNvbHVtbnM6IEFYUEVudGl0eVRhYmxlQ29sdW1uW107XG4gIGFjdGlvbnM/OiBBWFBFbnRpdHlBY3Rpb25bXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBBWFBRdWVyeVZpZXcge1xuICBuYW1lOiBzdHJpbmc7XG4gIGZpeGVkOiBib29sZWFuO1xuICB0aXRsZTogc3RyaW5nO1xuICBjb2x1bW5zOiBzdHJpbmdbXTtcbiAgY29uZGl0aW9uczogQVhQUXVlcnlGaWx0ZXJbXTtcbiAgc29ydHM6IEFYUFF1ZXJ5U29ydFtdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFYUFF1ZXJ5RmlsdGVyIHtcbiAgbmFtZTogc3RyaW5nOyAvLyBlbnRpdHkgcHJvcGVydHkgbmFtZVxuICBvcGVyYXRvcjogQVhEYXRhU291cmNlT3BlcmF0b3I7XG4gIHZhbHVlOiBhbnk7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhQUXVlcnlTb3J0IHtcbiAgbmFtZTogc3RyaW5nOyAvLyBlbnRpdHkgcHJvcGVydHkgbmFtZVxuICBkaXI6ICdhc2MnIHwgJ2Rlc2MnO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gcmVzb2x2ZUFjdGlvbkxvb2sodHI6IEFYUEVudGl0eUFjdGlvbik6IHsgaWNvbjogc3RyaW5nOyBjb2xvcjogQVhTdHlsZUNvbG9yVHlwZSB9IHtcbiAgc3dpdGNoICh0ci50eXBlKSB7XG4gICAgY2FzZSAnY3JlYXRlJzpcbiAgICAgIHJldHVybiB7IGNvbG9yOiAncHJpbWFyeScsIGljb246ICdmYS1zb2xpZCBmYS1hZGQnIH07XG4gICAgY2FzZSAndmlldyc6XG4gICAgICByZXR1cm4geyBjb2xvcjogJ3ByaW1hcnknLCBpY29uOiAnZmEtc29saWQgZmEtZXllJyB9O1xuICAgIGNhc2UgJ2luZm8nOlxuICAgICAgcmV0dXJuIHsgY29sb3I6ICdwcmltYXJ5JywgaWNvbjogJ2ZhLXNvbGlkIGZhLWluZm8nIH07XG4gICAgY2FzZSAnZGVsZXRlJzpcbiAgICAgIHJldHVybiB7IGNvbG9yOiAnZGFuZ2VyJywgaWNvbjogJ2ZhLXNvbGlkIGZhLXRyYXNoJyB9O1xuICAgIGNhc2UgJ3ByaW50JzpcbiAgICAgIHJldHVybiB7IGNvbG9yOiAnc2Vjb25kYXJ5JywgaWNvbjogJ2ZhLXNvbGlkIGZhLXByaW50JyB9O1xuICAgIGNhc2UgJ2NvbmZpcm0nOlxuICAgICAgcmV0dXJuIHsgY29sb3I6ICdzdWNjZXNzJywgaWNvbjogJ2ZhLXNvbGlkIGZhLWNoZWNrJyB9O1xuICAgIGRlZmF1bHQ6XG4gICAgICByZXR1cm4geyBjb2xvcjogJ3ByaW1hcnknLCBpY29uOiAnJyB9O1xuICB9XG59XG4iXX0=
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './app-startup.service';
|
|
1
2
|
export * from './application.types';
|
|
2
3
|
export * from './operators';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL2NvbW1vbi9zcmMvbGliL2FwcC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2FwcC1zdGFydHVwLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9hcHBsaWNhdGlvbi50eXBlcyc7XG5leHBvcnQgKiBmcm9tICcuL29wZXJhdG9ycyc7Il19
|