@acorex/platform 18.2.1 → 18.2.3
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/application.types.d.ts +8 -0
- package/common/lib/app/operators.d.ts +1 -0
- package/common/lib/common.module.d.ts +6 -7
- package/common/lib/data/entity-storage-service.d.ts +0 -1
- package/common/lib/data/filter-middleware.service.d.ts +28 -0
- package/common/lib/data/index.d.ts +3 -1
- package/common/lib/data/operators.service.d.ts +14 -0
- package/common/lib/layout/index.d.ts +0 -2
- package/common/lib/layout/menu/index.d.ts +0 -1
- package/common/lib/layout/menu/menu.provider.d.ts +11 -4
- package/common/lib/layout/menu/menu.service.d.ts +8 -2
- package/common/lib/layout/menu/menu.types.d.ts +9 -6
- package/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.d.ts +0 -2
- package/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.d.ts +1 -0
- package/common/lib/schema/widgets/email/email-widget-edit.component.d.ts +0 -2
- package/common/lib/schema/widgets/phone/phone-widget-edit.component.d.ts +0 -2
- package/common/lib/schema/widgets/text/text-widget-edit.component.d.ts +0 -2
- package/common/lib/settings/index.d.ts +2 -1
- package/common/lib/settings/setting-definition.provider.d.ts +19 -0
- package/common/lib/settings/settings.types.d.ts +51 -0
- package/common/lib/utils/index.d.ts +0 -1
- package/esm2022/common/lib/app/application.types.mjs +4 -4
- package/esm2022/common/lib/app/operators.mjs +16 -1
- package/esm2022/common/lib/common.module.mjs +23 -12
- package/esm2022/common/lib/data/entity-storage-service.mjs +4 -4
- package/esm2022/common/lib/data/filter-middleware.service.mjs +53 -0
- package/esm2022/common/lib/data/index.mjs +4 -2
- package/esm2022/common/lib/data/operators.service.mjs +15 -0
- package/esm2022/common/lib/layout/index.mjs +1 -3
- package/esm2022/common/lib/layout/menu/index.mjs +1 -2
- package/esm2022/common/lib/layout/menu/menu.provider.mjs +105 -24
- package/esm2022/common/lib/layout/menu/menu.service.mjs +43 -11
- package/esm2022/common/lib/layout/menu/menu.types.mjs +1 -1
- package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +2 -2
- 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/common-widgets.module.mjs +22 -22
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.mjs +7 -8
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +47 -25
- package/esm2022/common/lib/schema/widgets/email/email-widget-edit.component.mjs +6 -7
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/password/change-password.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/phone/phone-widget-edit.component.mjs +6 -7
- package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/text/text-widget-edit.component.mjs +6 -7
- package/esm2022/common/lib/settings/index.mjs +3 -2
- package/esm2022/common/lib/settings/setting-definition.provider.mjs +183 -0
- package/esm2022/common/lib/settings/settings.types.mjs +1 -1
- package/esm2022/common/lib/utils/data-generator.mjs +1 -1
- package/esm2022/common/lib/utils/index.mjs +1 -2
- package/esm2022/common/lib/workflows/common.workflow.mjs +5 -3
- package/esm2022/layout/builder/lib/builder/builder.service.mjs +3 -2
- package/esm2022/layout/builder/lib/builder/widget-catalog.mjs +3 -1
- package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +7 -5
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +17 -8
- package/esm2022/layout/designer/lib/designer/components/board/board.component.mjs +61 -34
- package/esm2022/layout/designer/lib/designer/components/breadcrumbs/breadcrumbs.component.mjs +27 -32
- package/esm2022/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.mjs +1 -1
- package/esm2022/layout/designer/lib/designer/components/grid-drawer/grid-drawer.component.mjs +2 -2
- package/esm2022/layout/designer/lib/designer/components/header-menu/header-menu.component.mjs +34 -14
- package/esm2022/layout/designer/lib/designer/components/size-mode/view-size-toolbar.component.mjs +23 -23
- package/esm2022/layout/designer/lib/designer/components/widget-picker/widget-picker.component.mjs +3 -3
- package/esm2022/layout/designer/lib/designer/designer.component.mjs +10 -4
- package/esm2022/layout/designer/lib/designer/index.mjs +2 -1
- package/esm2022/layout/designer/lib/designer/shared/designer-connector.service.mjs +5 -6
- package/esm2022/layout/designer/lib/designer/shared/designer.service.mjs +158 -61
- package/esm2022/layout/designer/lib/designer/shared/designer.types.mjs +1 -1
- package/esm2022/layout/designer/lib/designer/shared/generic-commands.types.mjs +52 -0
- package/esm2022/layout/designer/lib/designer/shared/widget-designer-renderer.directive.mjs +32 -38
- package/esm2022/layout/designer/lib/preview/preview-viewer.component.mjs +3 -3
- package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +3 -3
- package/esm2022/layout/entity/lib/entity-detail-list.viewmodel.mjs +10 -9
- package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +4 -3
- package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +26 -20
- package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +5 -3
- package/esm2022/layout/entity/lib/entity-master-update.viewmodel.mjs +3 -3
- package/esm2022/layout/entity/lib/entity.module.mjs +12 -1
- package/esm2022/layout/entity/lib/entity.viewmodel.mjs +7 -5
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.mjs +10 -4
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +42 -32
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +3 -3
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.mjs +1 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +79 -40
- package/esm2022/layout/setting/acorex-platform-layout-setting.mjs +5 -0
- package/esm2022/layout/setting/index.mjs +2 -0
- package/esm2022/layout/setting/lib/setting.viewmodel.mjs +50 -0
- package/esm2022/layouts/lib/admin/admin.module.mjs +17 -5
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +2 -2
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +4 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +8 -23
- 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-columns/list-view-option-columns.component.mjs +2 -6
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +4 -5
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +8 -11
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +12 -10
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +2 -2
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.mjs +1 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.mjs +2 -2
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +2 -2
- package/esm2022/themes/default/index.mjs +2 -1
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +39 -25
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +2 -2
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.mjs +6 -9
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.mjs +2 -6
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.mjs +24 -18
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +2 -2
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +6 -8
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/root-layout/components/header/header.component.mjs +6 -8
- package/esm2022/themes/default/lib/layouts/root-layout/components/menu/root-menu.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +11 -40
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +3 -2
- package/esm2022/themes/default/lib/layouts/setting-layout/convert-setting-data.mjs +49 -0
- package/esm2022/themes/default/lib/layouts/setting-layout/index.mjs +3 -0
- package/esm2022/themes/default/lib/layouts/setting-layout/setting-preview/setting-preview.component.mjs +104 -0
- package/esm2022/themes/default/lib/layouts/setting-layout/setting-view/setting-menu.component.mjs +44 -0
- package/esm2022/themes/shared/lib/services/theme.service.mjs +183 -19
- package/esm2022/widgets/lib/properties/editors.props.mjs +2 -2
- package/esm2022/widgets/lib/properties/layout.props.mjs +13 -13
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget-column.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget-designer.component.mjs +18 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget-edit.component.mjs +24 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget-view.component.mjs +22 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/cron-job-widget.config.mjs +31 -0
- package/esm2022/widgets/lib/widgets/advance/cron-job/index.mjs +8 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-designer.component.mjs +2 -2
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.mjs +44 -20
- package/esm2022/widgets/lib/widgets/editors/contact/popup-component.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/link/link-widget-edit.component.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget-view.component.mjs +18 -25
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-designer.component.mjs +7 -11
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-edit.component.mjs +7 -12
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-view.component.mjs +24 -15
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-edit.component.mjs +14 -7
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-view.component.mjs +29 -67
- package/esm2022/widgets/lib/widgets/layout/block/block-widget-designer.component.mjs +32 -17
- package/esm2022/widgets/lib/widgets/layout/block/block-widget.config.mjs +6 -7
- package/esm2022/widgets/lib/widgets/layout/grid/grid-widget-designer.component.mjs +1 -22
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget-designer.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/layout/page/page-widget-designer.component.mjs +76 -78
- package/esm2022/widgets/lib/widgets/layout/page/page-widget.config.mjs +9 -9
- package/esm2022/widgets/lib/widgets/layout/template/template-picker/template-picker.component.mjs +120 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-edit.component.mjs +65 -24
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-view.component.mjs +27 -7
- package/esm2022/widgets/lib/widgets/layout/template/template.provider.mjs +18 -1
- package/esm2022/widgets/lib/widgets.module.mjs +5 -2
- package/fesm2022/acorex-platform-auth.mjs +1 -1
- package/fesm2022/{acorex-platform-common-avatar-widget-edit.component-BYEjzXpW.mjs → acorex-platform-common-avatar-widget-edit.component-DtC2IaE8.mjs} +4 -6
- package/fesm2022/{acorex-platform-common-avatar-widget-edit.component-BYEjzXpW.mjs.map → acorex-platform-common-avatar-widget-edit.component-DtC2IaE8.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-avatar-widget-view.component-CfHELBLm.mjs → acorex-platform-common-avatar-widget-view.component-BOIV0Be1.mjs} +5 -7
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-BOIV0Be1.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-boolean-widget-filter.component-DRDiIxsn.mjs → acorex-platform-common-boolean-widget-filter.component-S4-3SmKA.mjs} +5 -7
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-S4-3SmKA.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-change-password.component-Djd4SeNv.mjs → acorex-platform-common-change-password.component-g_GEw3IZ.mjs} +4 -4
- package/fesm2022/{acorex-platform-common-change-password.component-Djd4SeNv.mjs.map → acorex-platform-common-change-password.component-g_GEw3IZ.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-Bn0tnHyT.mjs → acorex-platform-common-checkbox-widget-column.component-DOoneR7g.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-Bn0tnHyT.mjs.map → acorex-platform-common-checkbox-widget-column.component-DOoneR7g.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-checkbox-widget-edit.component-BuS0Pg-j.mjs → acorex-platform-common-checkbox-widget-edit.component-PFRq-XS-.mjs} +6 -8
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-PFRq-XS-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-D7kmxXjj.mjs → acorex-platform-common-checkbox-widget-view.component-CKz8XnjT.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-D7kmxXjj.mjs.map → acorex-platform-common-checkbox-widget-view.component-CKz8XnjT.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-column.component-CtS98tbi.mjs → acorex-platform-common-dateTime-widget-column.component-DG0leXAo.mjs} +5 -7
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-DG0leXAo.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-Dm4QofDq.mjs → acorex-platform-common-dateTime-widget-edit.component-D8W-XEcx.mjs} +10 -14
- package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-D8W-XEcx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-filter.component-DDny36SE.mjs → acorex-platform-common-dateTime-widget-filter.component-DngCKwFY.mjs} +50 -30
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-DngCKwFY.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-lzf0fwxr.mjs → acorex-platform-common-dateTime-widget-view.component-KGgJkiKB.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-lzf0fwxr.mjs.map → acorex-platform-common-dateTime-widget-view.component-KGgJkiKB.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-email-widget-column.component-Cy_Kj9po.mjs → acorex-platform-common-email-widget-column.component-CLNqSuB7.mjs} +5 -7
- package/fesm2022/acorex-platform-common-email-widget-column.component-CLNqSuB7.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-email-widget-edit.component-DTxCX3ok.mjs → acorex-platform-common-email-widget-edit.component--0gaRm4s.mjs} +10 -13
- package/fesm2022/acorex-platform-common-email-widget-edit.component--0gaRm4s.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-email-widget-view.component-CvEHLvcT.mjs → acorex-platform-common-email-widget-view.component-C3AUr1HO.mjs} +4 -6
- package/fesm2022/{acorex-platform-common-email-widget-view.component-CvEHLvcT.mjs.map → acorex-platform-common-email-widget-view.component-C3AUr1HO.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-column.component-GtbElxmS.mjs → acorex-platform-common-file-widget-column.component-C9AHk2UP.mjs} +5 -7
- package/fesm2022/acorex-platform-common-file-widget-column.component-C9AHk2UP.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-3fR5jRFv.mjs → acorex-platform-common-file-widget-edit.component-L7bln9k0.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-3fR5jRFv.mjs.map → acorex-platform-common-file-widget-edit.component-L7bln9k0.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-filter.component-B7etTIuq.mjs → acorex-platform-common-file-widget-filter.component-Ce35mqny.mjs} +5 -7
- package/fesm2022/acorex-platform-common-file-widget-filter.component-Ce35mqny.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-view.component-RsQQjlL7.mjs → acorex-platform-common-file-widget-view.component-BvMzrs5C.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-file-widget-view.component-RsQQjlL7.mjs.map → acorex-platform-common-file-widget-view.component-BvMzrs5C.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-CixJEDUT.mjs → acorex-platform-common-gallery-widget-edit.component-BVuV2Ib8.mjs} +4 -6
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-CixJEDUT.mjs.map → acorex-platform-common-gallery-widget-edit.component-BVuV2Ib8.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-filter.component-1wzY6U5s.mjs → acorex-platform-common-gallery-widget-filter.component-C8tdM6PX.mjs} +5 -7
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-C8tdM6PX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-YaLJU3Cv.mjs → acorex-platform-common-gallery-widget-view.component-D8YmSi9C.mjs} +4 -6
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-YaLJU3Cv.mjs.map → acorex-platform-common-gallery-widget-view.component-D8YmSi9C.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-largetext-widget-edit.component-BeiJZnEv.mjs → acorex-platform-common-largetext-widget-edit.component-DGMxpnsr.mjs} +4 -6
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DGMxpnsr.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-column.component-C5DZ-cez.mjs → acorex-platform-common-lookup-widget-column.component-B-cEaNjv.mjs} +5 -7
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-B-cEaNjv.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-edit.component-uopyJIC1.mjs → acorex-platform-common-lookup-widget-edit.component-DqB_g9Zz.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-lookup-widget-edit.component-uopyJIC1.mjs.map → acorex-platform-common-lookup-widget-edit.component-DqB_g9Zz.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-lookup-widget-filter.component-D1lrIkz4.mjs → acorex-platform-common-lookup-widget-filter.component-0TPWNWSd.mjs} +5 -7
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-0TPWNWSd.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-view.component-DTNcGNir.mjs → acorex-platform-common-lookup-widget-view.component-DYAg76YH.mjs} +5 -7
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-DYAg76YH.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-edit.component-h4SRiV6_.mjs → acorex-platform-common-map-widget-edit.component-C3cpsXD5.mjs} +5 -7
- package/fesm2022/acorex-platform-common-map-widget-edit.component-C3cpsXD5.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-view.component-Deos8gVy.mjs → acorex-platform-common-map-widget-view.component-C-DCNaJi.mjs} +5 -7
- package/fesm2022/acorex-platform-common-map-widget-view.component-C-DCNaJi.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-column.component-DN8dFLZD.mjs → acorex-platform-common-messenger-widget-column.component-B2A7ZBEP.mjs} +5 -7
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-B2A7ZBEP.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-edit.component-m_zxHCw5.mjs → acorex-platform-common-messenger-widget-edit.component-DC8vQDo0.mjs} +5 -7
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-DC8vQDo0.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-DA9MiNb9.mjs → acorex-platform-common-messenger-widget-view.component-B6FavkmG.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-DA9MiNb9.mjs.map → acorex-platform-common-messenger-widget-view.component-B6FavkmG.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-edit.component-B0if4vR4.mjs → acorex-platform-common-number-widget-edit.component-Bc5-ZUw4.mjs} +5 -7
- package/fesm2022/acorex-platform-common-number-widget-edit.component-Bc5-ZUw4.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-BgTJbR2u.mjs → acorex-platform-common-number-widget-filter.component-DxfJ90n4.mjs} +6 -8
- package/fesm2022/acorex-platform-common-number-widget-filter.component-DxfJ90n4.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-view.component-Du1oQYBH.mjs → acorex-platform-common-number-widget-view.component-DGfLSGw1.mjs} +5 -7
- package/fesm2022/acorex-platform-common-number-widget-view.component-DGfLSGw1.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-column.component-CEWtRX1S.mjs → acorex-platform-common-password-widget-column.component-DEHaVLGK.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-password-widget-column.component-CEWtRX1S.mjs.map → acorex-platform-common-password-widget-column.component-DEHaVLGK.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-password-widget-edit.component-B-_m6f_C.mjs → acorex-platform-common-password-widget-edit.component-DrYyu5v-.mjs} +5 -7
- package/fesm2022/acorex-platform-common-password-widget-edit.component-DrYyu5v-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-view.component-BVW-Zak-.mjs → acorex-platform-common-password-widget-view.component-B_HU-3J1.mjs} +6 -7
- package/fesm2022/{acorex-platform-common-password-widget-view.component-BVW-Zak-.mjs.map → acorex-platform-common-password-widget-view.component-B_HU-3J1.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-DGaGGltV.mjs → acorex-platform-common-phone-widget-column.component-D99ncxxJ.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-DGaGGltV.mjs.map → acorex-platform-common-phone-widget-column.component-D99ncxxJ.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-BNfAQ_4j.mjs → acorex-platform-common-phone-widget-edit.component-a5EAI9FK.mjs} +9 -12
- package/fesm2022/acorex-platform-common-phone-widget-edit.component-a5EAI9FK.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-xGygt5Y9.mjs → acorex-platform-common-phone-widget-view.component-BlFVuoNN.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-xGygt5Y9.mjs.map → acorex-platform-common-phone-widget-view.component-BlFVuoNN.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-BJYxnZm2.mjs → acorex-platform-common-rich-text-widget-column.component-DOdv5I2s.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-BJYxnZm2.mjs.map → acorex-platform-common-rich-text-widget-column.component-DOdv5I2s.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-edit.component-Dvv8JnXl.mjs → acorex-platform-common-rich-text-widget-edit.component-DL5UyAqe.mjs} +5 -7
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-DL5UyAqe.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-rich-text-widget-view.component-B77Y5luo.mjs → acorex-platform-common-rich-text-widget-view.component-B9WB-mx9.mjs} +5 -7
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-B9WB-mx9.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-1zPVFgFG.mjs → acorex-platform-common-selection-list-widget-column.component-CkOuYy0Z.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-1zPVFgFG.mjs.map → acorex-platform-common-selection-list-widget-column.component-CkOuYy0Z.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-selection-list-widget-edit.component-Tdkf-0cn.mjs → acorex-platform-common-selection-list-widget-edit.component-BmbDQ1LH.mjs} +6 -8
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-BmbDQ1LH.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-filter.component-y2aFk-A6.mjs → acorex-platform-common-selection-list-widget-filter.component-Dm_1-7eT.mjs} +4 -6
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-Dm_1-7eT.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-view.component-DLc1MHex.mjs → acorex-platform-common-selection-list-widget-view.component-3hinF85C.mjs} +5 -7
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-3hinF85C.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-qUuwwYlj.mjs → acorex-platform-common-signature-pad-widget-edit.component-DmmPbw-A.mjs} +4 -6
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-qUuwwYlj.mjs.map → acorex-platform-common-signature-pad-widget-edit.component-DmmPbw-A.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-signature-pad-widget-view.component-D5XVZ88b.mjs → acorex-platform-common-signature-pad-widget-view.component-DkFaMNk8.mjs} +5 -7
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-DkFaMNk8.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-string-widget-filter.component-B9h7CnEz.mjs → acorex-platform-common-string-widget-filter.component-DAqR2PUN.mjs} +6 -8
- package/fesm2022/acorex-platform-common-string-widget-filter.component-DAqR2PUN.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-column.component-LFKeHZbS.mjs → acorex-platform-common-text-widget-column.component-DVczwvKA.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-text-widget-column.component-LFKeHZbS.mjs.map → acorex-platform-common-text-widget-column.component-DVczwvKA.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-text-widget-edit.component-BiyTKmvV.mjs → acorex-platform-common-text-widget-edit.component-DC_GnFhe.mjs} +10 -14
- package/fesm2022/acorex-platform-common-text-widget-edit.component-DC_GnFhe.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-view.component-BDxpsxE6.mjs → acorex-platform-common-text-widget-view.component-BK3HZGgb.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-text-widget-view.component-BDxpsxE6.mjs.map → acorex-platform-common-text-widget-view.component-BK3HZGgb.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-BnmR9hFM.mjs → acorex-platform-common-toggle-widget-column.component-Bp1d7SAE.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-BnmR9hFM.mjs.map → acorex-platform-common-toggle-widget-column.component-Bp1d7SAE.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-edit.component-Cz7LayX-.mjs → acorex-platform-common-toggle-widget-edit.component-D64m4agx.mjs} +5 -7
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-D64m4agx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-Cq2-5QUg.mjs → acorex-platform-common-toggle-widget-view.component-BTaXXZ88.mjs} +5 -7
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-Cq2-5QUg.mjs.map → acorex-platform-common-toggle-widget-view.component-BTaXXZ88.mjs.map} +1 -1
- package/fesm2022/acorex-platform-common.mjs +1203 -1069
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +25 -11
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +396 -211
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +186 -113
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-setting.mjs +57 -0
- package/fesm2022/acorex-platform-layout-setting.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-entity-create-view.component-CPGbLM4C.mjs → acorex-platform-layouts-entity-create-view.component-JsGlDx_S.mjs} +3 -3
- package/fesm2022/{acorex-platform-layouts-entity-create-view.component-CPGbLM4C.mjs.map → acorex-platform-layouts-entity-create-view.component-JsGlDx_S.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs → acorex-platform-layouts-entity-import-view.component-9FK_Iro9.mjs} +2 -2
- package/fesm2022/{acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs.map → acorex-platform-layouts-entity-import-view.component-9FK_Iro9.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-entity-modify-view.component-Bt4MLEou.mjs → acorex-platform-layouts-entity-modify-view.component-CNbc8ewu.mjs} +3 -3
- package/fesm2022/{acorex-platform-layouts-entity-modify-view.component-Bt4MLEou.mjs.map → acorex-platform-layouts-entity-modify-view.component-CNbc8ewu.mjs.map} +1 -1
- package/fesm2022/acorex-platform-layouts.mjs +47 -55
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-dByV3T8-.mjs → acorex-platform-themes-default-entity-master-create-view.component-CJY8R3sa.mjs} +7 -7
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-dByV3T8-.mjs.map → acorex-platform-themes-default-entity-master-create-view.component-CJY8R3sa.mjs.map} +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-C6zgLyry.mjs +301 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-C6zgLyry.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-CdwlY0Fa.mjs → acorex-platform-themes-default-entity-master-modify-view.component-wPZPhMgy.mjs} +7 -7
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-CdwlY0Fa.mjs.map → acorex-platform-themes-default-entity-master-modify-view.component-wPZPhMgy.mjs.map} +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DNXWb6ij.mjs +148 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DNXWb6ij.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +240 -79
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +184 -20
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-button-widget-designer.component-M_JuDPbt.mjs → acorex-platform-widgets-button-widget-designer.component-CPFA79Gx.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-button-widget-designer.component-M_JuDPbt.mjs.map → acorex-platform-widgets-button-widget-designer.component-CPFA79Gx.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-column.component-j1jG8pCr.mjs → acorex-platform-widgets-checkbox-widget-column.component-MInF2GVN.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-column.component-j1jG8pCr.mjs.map → acorex-platform-widgets-checkbox-widget-column.component-MInF2GVN.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-designer.component-DzGg-uFi.mjs → acorex-platform-widgets-checkbox-widget-designer.component-B7Qv2aYx.mjs} +3 -3
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-designer.component-DzGg-uFi.mjs.map → acorex-platform-widgets-checkbox-widget-designer.component-B7Qv2aYx.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-view.component-CDA7Jwov.mjs → acorex-platform-widgets-checkbox-widget-view.component-DP4kITs-.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-view.component-CDA7Jwov.mjs.map → acorex-platform-widgets-checkbox-widget-view.component-DP4kITs-.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-widgets-color-box-widget-designer.component-DIvi0BtT.mjs → acorex-platform-widgets-color-box-widget-designer.component-uQBHAspe.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-color-box-widget-designer.component-DIvi0BtT.mjs.map → acorex-platform-widgets-color-box-widget-designer.component-uQBHAspe.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-widgets-contact-widget-filter.component-GTwK51nJ.mjs → acorex-platform-widgets-contact-widget-filter.component-DnQZon-E.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-contact-widget-filter.component-GTwK51nJ.mjs.map → acorex-platform-widgets-contact-widget-filter.component-DnQZon-E.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-BL_EAwUs.mjs → acorex-platform-widgets-page-widget-designer.component-DOulAanE.mjs} +76 -78
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DOulAanE.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs → acorex-platform-widgets-rich-text-popup.component-C8KmObPV.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs.map → acorex-platform-widgets-rich-text-popup.component-C8KmObPV.mjs.map} +1 -1
- package/fesm2022/acorex-platform-widgets-template-picker.component-DPlvwgbu.mjs +123 -0
- package/fesm2022/acorex-platform-widgets-template-picker.component-DPlvwgbu.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-DwPYeF0y.mjs +136 -0
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-DwPYeF0y.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs → acorex-platform-widgets-text-block-widget-designer.component-BE6goaZc.mjs} +2 -2
- package/fesm2022/{acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs.map → acorex-platform-widgets-text-block-widget-designer.component-BE6goaZc.mjs.map} +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +431 -269
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +1 -1
- package/layout/builder/lib/builder/widget.types.d.ts +4 -3
- package/layout/designer/lib/designer/components/board/board.component.d.ts +8 -0
- package/layout/designer/lib/designer/designer.component.d.ts +3 -1
- package/layout/designer/lib/designer/index.d.ts +1 -0
- package/layout/designer/lib/designer/shared/designer-connector.service.d.ts +10 -6
- package/layout/designer/lib/designer/shared/designer.service.d.ts +18 -3
- package/layout/designer/lib/designer/shared/generic-commands.types.d.ts +9 -0
- package/layout/designer/lib/designer/shared/widget-designer-renderer.directive.d.ts +8 -5
- package/layout/designer/lib/preview/preview-viewer.component.d.ts +2 -2
- package/layout/designer/lib/property-viewer/widget-property-viewer.component.d.ts +2 -2
- package/layout/entity/lib/entity-detail-list.viewmodel.d.ts +3 -1
- package/layout/entity/lib/entity-master-create.viewmodel.d.ts +2 -2
- package/layout/entity/lib/entity-master-list.viewmodel.d.ts +3 -3
- package/layout/entity/lib/entity-master-single.viewmodel.d.ts +1 -0
- package/layout/entity/lib/entity.viewmodel.d.ts +5 -3
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +14 -12
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +13 -10
- package/layout/setting/README.md +4 -0
- package/layout/setting/index.d.ts +1 -0
- package/layout/setting/lib/setting.viewmodel.d.ts +13 -0
- package/layouts/lib/admin/admin.module.d.ts +6 -3
- package/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.d.ts +42 -9
- package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.d.ts +0 -2
- package/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.d.ts +0 -3
- package/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.d.ts +4 -2
- package/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.d.ts +0 -1
- package/package.json +18 -18
- package/themes/default/index.d.ts +1 -0
- package/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.d.ts +47 -9
- package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.d.ts +42 -4
- package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.d.ts +0 -2
- package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.d.ts +1 -1
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +42 -3
- package/themes/default/lib/layouts/root-layout/components/header/header.component.d.ts +42 -2
- package/themes/default/lib/layouts/root-layout/components/menu/root-menu.component.d.ts +8 -2
- package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +42 -14
- package/themes/default/lib/layouts/setting-layout/convert-setting-data.d.ts +21 -0
- package/themes/default/lib/layouts/setting-layout/index.d.ts +2 -0
- package/themes/default/lib/layouts/setting-layout/setting-preview/setting-preview.component.d.ts +24 -0
- package/themes/default/lib/layouts/setting-layout/setting-view/setting-menu.component.d.ts +20 -0
- package/themes/shared/lib/components/theme-slot.component.d.ts +31 -5
- package/themes/shared/lib/services/theme.service.d.ts +45 -5
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget-designer.component.d.ts +6 -0
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget-edit.component.d.ts +8 -0
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget-view.component.d.ts +7 -0
- package/widgets/lib/widgets/advance/cron-job/cron-job-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/advance/cron-job/index.d.ts +7 -0
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.d.ts +2 -0
- package/widgets/lib/widgets/editors/select/select-box-widget-view.component.d.ts +2 -3
- package/widgets/lib/widgets/editors/selection-list/selection-list-widget-designer.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/selection-list/selection-list-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/selection-list/selection-list-widget-view.component.d.ts +3 -3
- package/widgets/lib/widgets/editors/toggle/toggle-widget-edit.component.d.ts +1 -2
- 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/layout/page/page-widget-designer.component.d.ts +8 -9
- package/widgets/lib/widgets/layout/template/template-picker/template-picker.component.d.ts +30 -0
- package/widgets/lib/widgets/layout/template/template-widget-edit.component.d.ts +3 -0
- package/widgets/lib/widgets/layout/template/template-widget-view.component.d.ts +1 -0
- package/widgets/lib/widgets/layout/template/template.provider.d.ts +3 -0
- package/common/lib/layout/layout.service.d.ts +0 -19
- package/common/lib/layout/menu/menu.loader.d.ts +0 -17
- package/common/lib/layout/theme/store/admin-layout.actions.d.ts +0 -7
- package/common/lib/layout/theme/store/admin-layout.effects.d.ts +0 -9
- package/common/lib/layout/theme/store/admin-layout.reducers.d.ts +0 -19
- package/common/lib/layout/theme/store/admin-layout.selectors.d.ts +0 -4
- package/common/lib/layout/theme/store/admin-layout.state.d.ts +0 -11
- package/common/lib/layout/theme/store/index.d.ts +0 -5
- package/common/lib/utils/router-util.service.d.ts +0 -12
- package/esm2022/common/lib/layout/layout.service.mjs +0 -79
- package/esm2022/common/lib/layout/menu/menu.loader.mjs +0 -39
- package/esm2022/common/lib/layout/theme/store/admin-layout.actions.mjs +0 -11
- package/esm2022/common/lib/layout/theme/store/admin-layout.effects.mjs +0 -21
- package/esm2022/common/lib/layout/theme/store/admin-layout.reducers.mjs +0 -63
- package/esm2022/common/lib/layout/theme/store/admin-layout.selectors.mjs +0 -7
- package/esm2022/common/lib/layout/theme/store/admin-layout.state.mjs +0 -13
- package/esm2022/common/lib/layout/theme/store/index.mjs +0 -6
- package/esm2022/common/lib/utils/router-util.service.mjs +0 -43
- package/esm2022/mocks/acorex-platform-mocks.mjs +0 -5
- package/esm2022/mocks/index.mjs +0 -7
- package/esm2022/mocks/lib/mocks.module.mjs +0 -15
- package/esm2022/mocks/lib/services/mocker.service.mjs +0 -114
- package/esm2022/mocks/lib/storage/storage.mock.service.mjs +0 -183
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-CfHELBLm.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DRDiIxsn.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BuS0Pg-j.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-CtS98tbi.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-Dm4QofDq.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-DDny36SE.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-column.component-Cy_Kj9po.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-edit.component-DTxCX3ok.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-column.component-GtbElxmS.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-filter.component-B7etTIuq.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-1wzY6U5s.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-BeiJZnEv.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-C5DZ-cez.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-D1lrIkz4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-DTNcGNir.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-edit.component-h4SRiV6_.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-view.component-Deos8gVy.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-DN8dFLZD.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-m_zxHCw5.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-edit.component-B0if4vR4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BgTJbR2u.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-view.component-Du1oQYBH.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-edit.component-B-_m6f_C.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-phone-widget-edit.component-BNfAQ_4j.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-Dvv8JnXl.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-B77Y5luo.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-Tdkf-0cn.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-y2aFk-A6.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-DLc1MHex.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-D5XVZ88b.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-string-widget-filter.component-B9h7CnEz.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-edit.component-BiyTKmvV.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-Cz7LayX-.mjs.map +0 -1
- package/fesm2022/acorex-platform-mocks.mjs +0 -319
- package/fesm2022/acorex-platform-mocks.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-mzb-FV9E.mjs +0 -299
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-mzb-FV9E.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-ItkFB3QF.mjs +0 -150
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-ItkFB3QF.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-BL_EAwUs.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-BWc0_EA0.mjs +0 -96
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-BWc0_EA0.mjs.map +0 -1
- package/mocks/README.md +0 -3
- package/mocks/index.d.ts +0 -3
- package/mocks/lib/mocks.module.d.ts +0 -7
- package/mocks/lib/services/mocker.service.d.ts +0 -29
- package/mocks/lib/storage/storage.mock.service.d.ts +0 -25
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as i1$3 from '@acorex/components/badge';
|
|
2
2
|
import { AXBadgeModule } from '@acorex/components/badge';
|
|
3
3
|
import * as i5 from '@acorex/components/button';
|
|
4
4
|
import { AXButtonModule } from '@acorex/components/button';
|
|
@@ -8,61 +8,63 @@ import * as i4 from '@acorex/components/loading';
|
|
|
8
8
|
import { AXLoadingModule } from '@acorex/components/loading';
|
|
9
9
|
import * as i1$7 from '@acorex/platform/layout/builder';
|
|
10
10
|
import { AXPWidgetComponent, AXPWidgetsCatalog, createStringProperty, createBooleanProperty, createSelectProperty, cloneProperty, AXP_WIDGETS_ACTION_GROUP, AXP_WIDGETS_EDITOR_GROUP, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXP_WIDGETS_ADVANCE_GROUP, AXPContainerWidgetComponent, AXPLayoutBuilderModule, AXP_WIDGETS_LAYOUT_GROUP } from '@acorex/platform/layout/builder';
|
|
11
|
-
import * as i1$
|
|
11
|
+
import * as i1$2 from '@angular/common';
|
|
12
12
|
import { CommonModule } from '@angular/common';
|
|
13
13
|
import * as i0 from '@angular/core';
|
|
14
|
-
import { computed, EventEmitter,
|
|
14
|
+
import { computed, EventEmitter, ChangeDetectionStrategy, Component, inject, HostBinding, signal, effect, ViewEncapsulation, ViewChild, ChangeDetectorRef, InjectionToken, Injectable, HostListener, NgModule } from '@angular/core';
|
|
15
15
|
import { AX_STYLE_COLOR_TYPES, AX_STYLE_LOOK_TYPES, AXDataSource } from '@acorex/components/common';
|
|
16
16
|
import * as i1 from '@acorex/components/check-box';
|
|
17
17
|
import { AXCheckBoxModule } from '@acorex/components/check-box';
|
|
18
|
-
import * as
|
|
19
|
-
import {
|
|
18
|
+
import * as i3$1 from '@acorex/components/form';
|
|
19
|
+
import { AXFormModule } from '@acorex/components/form';
|
|
20
20
|
import * as i2 from '@acorex/components/label';
|
|
21
21
|
import { AXLabelModule } from '@acorex/components/label';
|
|
22
|
+
import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
|
|
23
|
+
import * as i1$1 from '@angular/forms';
|
|
24
|
+
import { FormsModule } from '@angular/forms';
|
|
22
25
|
import { AXPClipBoardService } from '@acorex/platform/common';
|
|
23
|
-
import * as i3$1 from '@acorex/components/form';
|
|
24
|
-
import { AXFormModule } from '@acorex/components/form';
|
|
25
26
|
import { AXPopupService } from '@acorex/components/popup';
|
|
26
|
-
import * as i3$
|
|
27
|
+
import * as i3$3 from '@acorex/components/select-box';
|
|
27
28
|
import { AXSelectBoxModule, AXSelectBoxComponent } from '@acorex/components/select-box';
|
|
28
29
|
import * as i7 from '@acorex/components/text-box';
|
|
29
30
|
import { AXTextBoxModule } from '@acorex/components/text-box';
|
|
30
|
-
import * as
|
|
31
|
+
import * as i3$2 from '@acorex/core/translation';
|
|
31
32
|
import { AXTranslationModule, AXTranslationService } from '@acorex/core/translation';
|
|
32
|
-
import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
|
|
33
33
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
34
34
|
import { AXDateTimeFormatter } from '@acorex/core/date-time';
|
|
35
|
-
import * as i3$
|
|
35
|
+
import * as i3$4 from '@acorex/components/datetime-box';
|
|
36
36
|
import { AXDateTimeBoxModule } from '@acorex/components/datetime-box';
|
|
37
37
|
import * as i4$1 from '@acorex/components/text-area';
|
|
38
38
|
import { AXTextAreaModule } from '@acorex/components/text-area';
|
|
39
39
|
import { AXFormatService } from '@acorex/core/format';
|
|
40
|
-
import { isNumber,
|
|
40
|
+
import { isNumber, sortBy, get, sum } from 'lodash-es';
|
|
41
41
|
import * as i1$4 from '@acorex/components/number-box';
|
|
42
42
|
import { AXNumberBoxModule } from '@acorex/components/number-box';
|
|
43
|
-
import * as i3$
|
|
43
|
+
import * as i3$5 from '@acorex/components/password-box';
|
|
44
44
|
import { AXPasswordBoxModule } from '@acorex/components/password-box';
|
|
45
45
|
import { AXPlatform } from '@acorex/core/platform';
|
|
46
46
|
import { AXPHtmlUtils } from '@acorex/platform/core';
|
|
47
47
|
import * as i1$5 from '@acorex/components/wysiwyg';
|
|
48
48
|
import { AXWysiwygModule } from '@acorex/components/wysiwyg';
|
|
49
|
-
import * as i2$
|
|
49
|
+
import * as i2$1 from '@acorex/components/selection-list';
|
|
50
50
|
import { AXSelectionListModule } from '@acorex/components/selection-list';
|
|
51
51
|
import { first, Subscription } from 'rxjs';
|
|
52
|
-
import * as i2$
|
|
52
|
+
import * as i2$2 from '@acorex/components/switch';
|
|
53
53
|
import { AXSwitchModule } from '@acorex/components/switch';
|
|
54
54
|
import * as i5$1 from '@acorex/components/uploader';
|
|
55
55
|
import { AXUploaderModule } from '@acorex/components/uploader';
|
|
56
56
|
import { AXLoadingDialogService } from '@acorex/components/loading-dialog';
|
|
57
|
-
import * as i2$
|
|
57
|
+
import * as i2$3 from '@acorex/components/image';
|
|
58
58
|
import { AXImageModule } from '@acorex/components/image';
|
|
59
59
|
import * as i1$6 from '@acorex/components/map';
|
|
60
60
|
import { AXMapModule } from '@acorex/components/map';
|
|
61
61
|
import { AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetMiniButtonComponent, AXPDesignerService, AXPDesignerGridDrawerComponent, AXPDesignerAddWidgetButtonComponent } from '@acorex/platform/layout/designer';
|
|
62
|
-
import * as i1$8 from '@acorex/components/
|
|
62
|
+
import * as i1$8 from '@acorex/components/cron-job';
|
|
63
|
+
import { AXCronJobModule } from '@acorex/components/cron-job';
|
|
64
|
+
import * as i1$9 from '@acorex/components/qrcode';
|
|
63
65
|
import { AXQrcodeModule } from '@acorex/components/qrcode';
|
|
64
66
|
import { AXColorUtil } from '@acorex/core/utils';
|
|
65
|
-
import * as i2$
|
|
67
|
+
import * as i2$4 from '@acorex/components/color-box';
|
|
66
68
|
import { AXColorBoxModule } from '@acorex/components/color-box';
|
|
67
69
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
68
70
|
|
|
@@ -460,7 +462,7 @@ const AXP_DATE_FORMAT_PROPERTY = createSelectProperty({
|
|
|
460
462
|
{ id: 'datetime', title: 'DateTime' },
|
|
461
463
|
{ id: 'time', title: 'Time' },
|
|
462
464
|
],
|
|
463
|
-
defaultValue: 'date',
|
|
465
|
+
defaultValue: { id: 'date', title: 'Date' },
|
|
464
466
|
path: 'options.format',
|
|
465
467
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
466
468
|
});
|
|
@@ -531,14 +533,14 @@ function numberDefaultProperty() {
|
|
|
531
533
|
}
|
|
532
534
|
|
|
533
535
|
const AXP_LAYOUT_GRID_PROPERTY_GROUP = {
|
|
534
|
-
name:
|
|
536
|
+
name: 'grid',
|
|
535
537
|
order: 1,
|
|
536
|
-
title:
|
|
538
|
+
title: 'Grid Layout',
|
|
537
539
|
};
|
|
538
540
|
const AXP_LAYOUT_FLEX_PROPERTY_GROUP = {
|
|
539
|
-
name:
|
|
541
|
+
name: 'flex',
|
|
540
542
|
order: 1,
|
|
541
|
-
title:
|
|
543
|
+
title: 'Flex Layout',
|
|
542
544
|
};
|
|
543
545
|
const AXP_LAYOUT_GAP_PROPERTY = {
|
|
544
546
|
name: 'gap',
|
|
@@ -721,7 +723,7 @@ const AXP_LAYOUT_FLEX_DIRECTION_PROPERTY = {
|
|
|
721
723
|
{ id: 'ax-flex-row', title: 'Row' },
|
|
722
724
|
{ id: 'ax-flex-row-reverse', title: 'Row Reverse' },
|
|
723
725
|
{ id: 'ax-flex-col', title: 'Column' },
|
|
724
|
-
{ id: 'ax-flex-col-reverse', title: 'Column Reverse' }
|
|
726
|
+
{ id: 'ax-flex-col-reverse', title: 'Column Reverse' },
|
|
725
727
|
],
|
|
726
728
|
},
|
|
727
729
|
},
|
|
@@ -744,7 +746,7 @@ const AXP_LAYOUT_FLEX_WRAP_PROPERTY = {
|
|
|
744
746
|
dataSource: [
|
|
745
747
|
{ id: 'ax-flex-nowrap', title: 'No Wrap' },
|
|
746
748
|
{ id: 'ax-flex-wrap', title: 'Wrap' },
|
|
747
|
-
{ id: 'ax-flex-wrap-reverse', title: 'Wrap Reverse' }
|
|
749
|
+
{ id: 'ax-flex-wrap-reverse', title: 'Wrap Reverse' },
|
|
748
750
|
],
|
|
749
751
|
},
|
|
750
752
|
},
|
|
@@ -780,7 +782,7 @@ const AXP_LAYOUT_ALIGN_CONTENT_PROPERTY = {
|
|
|
780
782
|
const AXP_LAYOUT_GRID_PROPERTIES = [
|
|
781
783
|
AXP_LAYOUT_GAP_PROPERTY,
|
|
782
784
|
AXP_LAYOUT_COLUMNS_PROPERTY,
|
|
783
|
-
AXP_LAYOUT_ROWS_PROPERTY
|
|
785
|
+
AXP_LAYOUT_ROWS_PROPERTY,
|
|
784
786
|
];
|
|
785
787
|
const AXP_LAYOUT_GRID_ROW_PROPERTIES = [
|
|
786
788
|
AXP_LAYOUT_GAP_PROPERTY,
|
|
@@ -793,10 +795,10 @@ const AXP_LAYOUT_GRID_ITEM_PROPERTIES = [
|
|
|
793
795
|
];
|
|
794
796
|
const AXP_LAYOUT_FLEX_PROPERTIES = [
|
|
795
797
|
AXP_LAYOUT_FLEX_DIRECTION_PROPERTY,
|
|
796
|
-
AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY,
|
|
797
|
-
AXP_LAYOUT_FLEX_ALIGN_PROPERTY,
|
|
798
|
-
AXP_LAYOUT_GAP_PROPERTY,
|
|
799
|
-
AXP_LAYOUT_FLEX_WRAP_PROPERTY,
|
|
798
|
+
// AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY,
|
|
799
|
+
// AXP_LAYOUT_FLEX_ALIGN_PROPERTY,
|
|
800
|
+
// AXP_LAYOUT_GAP_PROPERTY,
|
|
801
|
+
// AXP_LAYOUT_FLEX_WRAP_PROPERTY,
|
|
800
802
|
];
|
|
801
803
|
|
|
802
804
|
const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
|
|
@@ -848,7 +850,7 @@ const AXPButtonWidget = {
|
|
|
848
850
|
],
|
|
849
851
|
components: {
|
|
850
852
|
designer: {
|
|
851
|
-
component: () => import('./acorex-platform-widgets-button-widget-designer.component-
|
|
853
|
+
component: () => import('./acorex-platform-widgets-button-widget-designer.component-CPFA79Gx.mjs').then((c) => c.AXPButtonWidgetDesignerComponent),
|
|
852
854
|
},
|
|
853
855
|
view: {
|
|
854
856
|
component: () => Promise.resolve().then(function () { return buttonWidgetView_component; }).then((c) => c.AXPButtonWidgetViewComponent),
|
|
@@ -862,38 +864,59 @@ const AXPButtonWidget = {
|
|
|
862
864
|
class AXPCheckBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
863
865
|
constructor() {
|
|
864
866
|
super(...arguments);
|
|
865
|
-
this.negative = computed(() => this.options()[
|
|
866
|
-
this.trulyText = computed(() => this.options()[
|
|
867
|
-
this.falsyText = computed(() => this.options()[
|
|
868
|
-
this.disabled = computed(() => this.options()[
|
|
869
|
-
this.readonly = computed(() => this.options()[
|
|
870
|
-
this.label = computed(() => this.options()[
|
|
867
|
+
this.negative = computed(() => this.options()['negative']);
|
|
868
|
+
this.trulyText = computed(() => this.options()['trulyText']);
|
|
869
|
+
this.falsyText = computed(() => this.options()['falsyText']);
|
|
870
|
+
this.disabled = computed(() => this.options()['disabled']);
|
|
871
|
+
this.readonly = computed(() => this.options()['readonly']);
|
|
872
|
+
this.label = computed(() => this.options()['label']);
|
|
873
|
+
this.validationRules = computed(() => this.options()['validationRules'] ?? []);
|
|
871
874
|
}
|
|
872
875
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
873
876
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPCheckBoxWidgetEditComponent, isStandalone: true, selector: "axp-checkbox-widget-edit", usesInheritance: true, ngImport: i0, template: `
|
|
874
|
-
<ax-check-box
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
877
|
+
<ax-check-box
|
|
878
|
+
[ngModel]="this.getValue()"
|
|
879
|
+
[disabled]="disabled()"
|
|
880
|
+
[readonly]="readonly()"
|
|
881
|
+
(onValueChanged)="handleValueChanged($event)"
|
|
882
|
+
>
|
|
883
|
+
@for (validation of validationRules(); track $index) {
|
|
884
|
+
<ax-validation-rule
|
|
885
|
+
[rule]="validation.rule"
|
|
886
|
+
[message]="validation.options?.message"
|
|
887
|
+
[options]="validation.options"
|
|
888
|
+
></ax-validation-rule>
|
|
889
|
+
} @if(label()) {
|
|
890
|
+
<ax-label>{{ label() }}</ax-label>
|
|
878
891
|
}
|
|
879
892
|
</ax-check-box>
|
|
880
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
893
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
881
894
|
}
|
|
882
895
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
|
|
883
896
|
type: Component,
|
|
884
897
|
args: [{
|
|
885
898
|
selector: 'axp-checkbox-widget-edit',
|
|
886
899
|
template: `
|
|
887
|
-
<ax-check-box
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
900
|
+
<ax-check-box
|
|
901
|
+
[ngModel]="this.getValue()"
|
|
902
|
+
[disabled]="disabled()"
|
|
903
|
+
[readonly]="readonly()"
|
|
904
|
+
(onValueChanged)="handleValueChanged($event)"
|
|
905
|
+
>
|
|
906
|
+
@for (validation of validationRules(); track $index) {
|
|
907
|
+
<ax-validation-rule
|
|
908
|
+
[rule]="validation.rule"
|
|
909
|
+
[message]="validation.options?.message"
|
|
910
|
+
[options]="validation.options"
|
|
911
|
+
></ax-validation-rule>
|
|
912
|
+
} @if(label()) {
|
|
913
|
+
<ax-label>{{ label() }}</ax-label>
|
|
891
914
|
}
|
|
892
915
|
</ax-check-box>
|
|
893
916
|
`,
|
|
894
917
|
standalone: true,
|
|
895
918
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
896
|
-
imports: [CommonModule, AXCheckBoxModule, FormsModule, AXLabelModule],
|
|
919
|
+
imports: [CommonModule, AXCheckBoxModule, FormsModule, AXFormModule, AXLabelModule, AXValidationModule],
|
|
897
920
|
}]
|
|
898
921
|
}] });
|
|
899
922
|
|
|
@@ -920,10 +943,10 @@ const AXPCheckBoxWidget = {
|
|
|
920
943
|
],
|
|
921
944
|
components: {
|
|
922
945
|
designer: {
|
|
923
|
-
component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-
|
|
946
|
+
component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-B7Qv2aYx.mjs').then((c) => c.AXPCheckBoxWidgetDesignerComponent),
|
|
924
947
|
},
|
|
925
948
|
view: {
|
|
926
|
-
component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-
|
|
949
|
+
component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-DP4kITs-.mjs').then((c) => c.AXPCheckBoxWidgetViewComponent),
|
|
927
950
|
},
|
|
928
951
|
edit: {
|
|
929
952
|
component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
|
|
@@ -932,7 +955,7 @@ const AXPCheckBoxWidget = {
|
|
|
932
955
|
component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
|
|
933
956
|
},
|
|
934
957
|
column: {
|
|
935
|
-
component: () => import('./acorex-platform-widgets-checkbox-widget-column.component-
|
|
958
|
+
component: () => import('./acorex-platform-widgets-checkbox-widget-column.component-MInF2GVN.mjs').then((c) => c.AXPCheckBoxWidgetColumnComponent),
|
|
936
959
|
},
|
|
937
960
|
filter: {
|
|
938
961
|
component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
|
|
@@ -1020,7 +1043,7 @@ class popupComponent extends AXBasePageComponent {
|
|
|
1020
1043
|
<ax-button [text]="'apply' | translate | async" color="primary" (onClick)="handleClose(form)"></ax-button>
|
|
1021
1044
|
</ax-suffix>
|
|
1022
1045
|
</ax-footer>
|
|
1023
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type:
|
|
1046
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i3$2.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i3$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i3$1.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "look", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }] }); }
|
|
1024
1047
|
}
|
|
1025
1048
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: popupComponent, decorators: [{
|
|
1026
1049
|
type: Component,
|
|
@@ -1265,7 +1288,7 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1265
1288
|
</ax-prefix>
|
|
1266
1289
|
</ax-button>
|
|
1267
1290
|
}
|
|
1268
|
-
</div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
1291
|
+
</div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i3$2.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1269
1292
|
}
|
|
1270
1293
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, decorators: [{
|
|
1271
1294
|
type: Component,
|
|
@@ -1447,7 +1470,7 @@ class AXPContactWidgetViewComponent extends AXPWidgetComponent {
|
|
|
1447
1470
|
}
|
|
1448
1471
|
</div>
|
|
1449
1472
|
}
|
|
1450
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type:
|
|
1473
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1451
1474
|
}
|
|
1452
1475
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetViewComponent, decorators: [{
|
|
1453
1476
|
type: Component,
|
|
@@ -1534,7 +1557,7 @@ const AXPContactWidget = {
|
|
|
1534
1557
|
component: () => Promise.resolve().then(function () { return contactWidgetEdit_component; }).then((c) => c.AXPContactWidgetEditComponent),
|
|
1535
1558
|
},
|
|
1536
1559
|
filter: {
|
|
1537
|
-
component: () => import('./acorex-platform-widgets-contact-widget-filter.component-
|
|
1560
|
+
component: () => import('./acorex-platform-widgets-contact-widget-filter.component-DnQZon-E.mjs').then((c) => c.AXPContactWidgetFilterComponent),
|
|
1538
1561
|
},
|
|
1539
1562
|
column: {
|
|
1540
1563
|
component: () => Promise.resolve().then(function () { return contactWidgetColumn_component; }).then((c) => c.AXPContactWidgetColumnComponent),
|
|
@@ -1705,7 +1728,7 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1705
1728
|
></ax-button>
|
|
1706
1729
|
}
|
|
1707
1730
|
</div>
|
|
1708
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$
|
|
1731
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$4.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "holidayDates", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1709
1732
|
}
|
|
1710
1733
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
|
|
1711
1734
|
type: Component,
|
|
@@ -1822,7 +1845,6 @@ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
1822
1845
|
};
|
|
1823
1846
|
}
|
|
1824
1847
|
handleFormat(value) {
|
|
1825
|
-
console.log(this.translationService);
|
|
1826
1848
|
return value
|
|
1827
1849
|
? this.formatter.format(new Date(value), {
|
|
1828
1850
|
format: this.format(),
|
|
@@ -1975,7 +1997,7 @@ class AXPEmailBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
1975
1997
|
}
|
|
1976
1998
|
</ng-template>
|
|
1977
1999
|
</div>
|
|
1978
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
2000
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1979
2001
|
}
|
|
1980
2002
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, decorators: [{
|
|
1981
2003
|
type: Component,
|
|
@@ -2176,7 +2198,7 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2176
2198
|
}
|
|
2177
2199
|
}
|
|
2178
2200
|
</div>
|
|
2179
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$
|
|
2201
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2180
2202
|
}
|
|
2181
2203
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, decorators: [{
|
|
2182
2204
|
type: Component,
|
|
@@ -2688,7 +2710,7 @@ class AXPLinkWidgetViewComponent extends AXPWidgetComponent {
|
|
|
2688
2710
|
</div>
|
|
2689
2711
|
}
|
|
2690
2712
|
</ng-template>
|
|
2691
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
2713
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2692
2714
|
}
|
|
2693
2715
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetViewComponent, decorators: [{
|
|
2694
2716
|
type: Component,
|
|
@@ -3004,7 +3026,7 @@ class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3004
3026
|
>
|
|
3005
3027
|
</ax-select-box>
|
|
3006
3028
|
} }
|
|
3007
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
3029
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3008
3030
|
}
|
|
3009
3031
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, decorators: [{
|
|
3010
3032
|
type: Component,
|
|
@@ -3114,7 +3136,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
3114
3136
|
AXTextBoxModule,
|
|
3115
3137
|
AXValidationModule,
|
|
3116
3138
|
],
|
|
3117
|
-
inputs: [],
|
|
3118
3139
|
}]
|
|
3119
3140
|
}], propDecorators: { __class: [{
|
|
3120
3141
|
type: HostBinding,
|
|
@@ -3631,7 +3652,7 @@ class AXPPasswordBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3631
3652
|
<ax-clear-button></ax-clear-button>
|
|
3632
3653
|
}
|
|
3633
3654
|
</ax-password-box>
|
|
3634
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$
|
|
3655
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$5.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3635
3656
|
}
|
|
3636
3657
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, decorators: [{
|
|
3637
3658
|
type: Component,
|
|
@@ -3853,7 +3874,7 @@ class AXPPhoneBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
3853
3874
|
</ng-container>
|
|
3854
3875
|
</ng-template>
|
|
3855
3876
|
</div>
|
|
3856
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
3877
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3857
3878
|
}
|
|
3858
3879
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, decorators: [{
|
|
3859
3880
|
type: Component,
|
|
@@ -4033,7 +4054,7 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4033
4054
|
</ax-prefix>
|
|
4034
4055
|
</ax-button>
|
|
4035
4056
|
</div>
|
|
4036
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
4057
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4037
4058
|
}
|
|
4038
4059
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, decorators: [{
|
|
4039
4060
|
type: Component,
|
|
@@ -4270,7 +4291,7 @@ class AXPRichTextWidgetViewComponent extends AXPWidgetComponent {
|
|
|
4270
4291
|
this.text = computed(() => this.htmlUtil.getTextFromHTML(this.getValue()));
|
|
4271
4292
|
}
|
|
4272
4293
|
async openPopup() {
|
|
4273
|
-
const { AXPRichTextPopupComponent } = await import('./acorex-platform-widgets-rich-text-popup.component-
|
|
4294
|
+
const { AXPRichTextPopupComponent } = await import('./acorex-platform-widgets-rich-text-popup.component-C8KmObPV.mjs');
|
|
4274
4295
|
this.popupService.open(AXPRichTextPopupComponent, {
|
|
4275
4296
|
size: this.platform.is('Mobile') || this.platform.is('SM') ? 'full' : 'md',
|
|
4276
4297
|
header: true,
|
|
@@ -4421,7 +4442,7 @@ class AXPRichTextWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
4421
4442
|
this.text = computed(() => this.htmlUtil.getTextFromHTML(this.rawValue));
|
|
4422
4443
|
}
|
|
4423
4444
|
async openPopup() {
|
|
4424
|
-
const { AXPRichTextPopupComponent } = await import('./acorex-platform-widgets-rich-text-popup.component-
|
|
4445
|
+
const { AXPRichTextPopupComponent } = await import('./acorex-platform-widgets-rich-text-popup.component-C8KmObPV.mjs');
|
|
4425
4446
|
this.popupService.open(AXPRichTextPopupComponent, {
|
|
4426
4447
|
size: this.platform.is('Mobile') || this.platform.is('SM') ? 'full' : 'md',
|
|
4427
4448
|
header: true,
|
|
@@ -4537,7 +4558,7 @@ class AXPSelectBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
4537
4558
|
@for (item of internalValue(); track $index) {
|
|
4538
4559
|
<ax-badge [look]="'twotone'" [text]="item[this.textField]" color="primary"></ax-badge>
|
|
4539
4560
|
}
|
|
4540
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type:
|
|
4561
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4541
4562
|
}
|
|
4542
4563
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetColumnComponent, decorators: [{
|
|
4543
4564
|
type: Component,
|
|
@@ -4614,7 +4635,7 @@ class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
|
4614
4635
|
></ax-validation-rule>
|
|
4615
4636
|
}
|
|
4616
4637
|
</ax-select-box>
|
|
4617
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$
|
|
4638
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4618
4639
|
}
|
|
4619
4640
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, decorators: [{
|
|
4620
4641
|
type: Component,
|
|
@@ -4703,13 +4724,12 @@ var selectBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
|
4703
4724
|
class AXPSelectBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
4704
4725
|
constructor() {
|
|
4705
4726
|
super(...arguments);
|
|
4706
|
-
this.internalValue = computed(() => Array.isArray(this.getValue())
|
|
4707
|
-
? this.getValue().map((item) => this.extractItem(item))
|
|
4708
|
-
: [this.extractItem(this.getValue())]);
|
|
4709
|
-
this.text = null;
|
|
4710
4727
|
this.multiple = computed(() => this.options()['multiple']);
|
|
4711
4728
|
this.valueField = computed(() => this.options()['valueField'] ?? 'id');
|
|
4712
4729
|
this.textField = computed(() => this.options()['textField'] ?? 'title');
|
|
4730
|
+
this.internalValue = computed(() => Array.isArray(this.getValue())
|
|
4731
|
+
? this.getValue().map((item) => this.extractItem(item))
|
|
4732
|
+
: [this.extractItem(this.getValue())]);
|
|
4713
4733
|
}
|
|
4714
4734
|
extractItem(item) {
|
|
4715
4735
|
const result = typeof item == 'object'
|
|
@@ -4721,41 +4741,33 @@ class AXPSelectBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
4721
4741
|
id: item,
|
|
4722
4742
|
text: item,
|
|
4723
4743
|
};
|
|
4724
|
-
debugger;
|
|
4725
4744
|
return result;
|
|
4726
4745
|
}
|
|
4727
4746
|
get __class() {
|
|
4728
4747
|
const cls = {};
|
|
4729
|
-
cls[`ax-
|
|
4730
|
-
cls[`ax-
|
|
4748
|
+
cls[`ax-flex`] = true;
|
|
4749
|
+
cls[`ax-gap-1`] = true;
|
|
4731
4750
|
return cls;
|
|
4732
4751
|
}
|
|
4733
4752
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4734
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
<p>{{ internalValue()[0].text }}</p>
|
|
4740
|
-
}
|
|
4741
|
-
</div>
|
|
4742
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4753
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "axp-select-box-widget-view", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4754
|
+
@for (item of internalValue(); track $index) {
|
|
4755
|
+
<ax-badge [look]="'twotone'" [text]="item.text" color="primary"></ax-badge>
|
|
4756
|
+
}
|
|
4757
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4743
4758
|
}
|
|
4744
4759
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, decorators: [{
|
|
4745
4760
|
type: Component,
|
|
4746
4761
|
args: [{
|
|
4762
|
+
selector: 'axp-select-box-widget-view',
|
|
4747
4763
|
template: `
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
} }@else {
|
|
4752
|
-
<p>{{ internalValue()[0].text }}</p>
|
|
4753
|
-
}
|
|
4754
|
-
</div>
|
|
4764
|
+
@for (item of internalValue(); track $index) {
|
|
4765
|
+
<ax-badge [look]="'twotone'" [text]="item.text" color="primary"></ax-badge>
|
|
4766
|
+
}
|
|
4755
4767
|
`,
|
|
4756
4768
|
standalone: true,
|
|
4757
4769
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4758
|
-
imports: [CommonModule],
|
|
4770
|
+
imports: [CommonModule, AXBadgeModule],
|
|
4759
4771
|
inputs: [],
|
|
4760
4772
|
}]
|
|
4761
4773
|
}], propDecorators: { __class: [{
|
|
@@ -4810,40 +4822,49 @@ const AXPSelectBoxWidget = {
|
|
|
4810
4822
|
class AXPSelectionListWidgetViewComponent extends AXPWidgetComponent {
|
|
4811
4823
|
constructor() {
|
|
4812
4824
|
super(...arguments);
|
|
4813
|
-
this.internalValue = computed(() => this.updateValue());
|
|
4814
4825
|
this.items = computed(() => this.options()['items']);
|
|
4815
4826
|
this.valueField = computed(() => this.options()['valueField']);
|
|
4816
4827
|
this.textField = computed(() => this.options()['textField']);
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
}
|
|
4828
|
+
this.internalValue = computed(() => {
|
|
4829
|
+
return this.items().filter((item) => {
|
|
4830
|
+
if (Array.isArray(this.getValue()))
|
|
4831
|
+
return this.getValue().includes(item[this.valueField()]);
|
|
4832
|
+
else {
|
|
4833
|
+
return this.getValue() == item[this.valueField()];
|
|
4834
|
+
}
|
|
4835
|
+
});
|
|
4825
4836
|
});
|
|
4826
4837
|
}
|
|
4838
|
+
get __class() {
|
|
4839
|
+
const cls = {};
|
|
4840
|
+
cls[`ax-flex`] = true;
|
|
4841
|
+
cls[`ax-gap-1`] = true;
|
|
4842
|
+
return cls;
|
|
4843
|
+
}
|
|
4827
4844
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4828
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "
|
|
4845
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "axp-selection-list-widget-view", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4829
4846
|
@for (item of internalValue(); track $index) {
|
|
4830
|
-
<ax-badge
|
|
4847
|
+
<ax-badge [look]="'twotone'" [text]="item[this.textField()]" color="primary"></ax-badge>
|
|
4831
4848
|
}
|
|
4832
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type:
|
|
4849
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4833
4850
|
}
|
|
4834
4851
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetViewComponent, decorators: [{
|
|
4835
4852
|
type: Component,
|
|
4836
4853
|
args: [{
|
|
4854
|
+
selector: 'axp-selection-list-widget-view',
|
|
4837
4855
|
template: `
|
|
4838
4856
|
@for (item of internalValue(); track $index) {
|
|
4839
|
-
<ax-badge
|
|
4857
|
+
<ax-badge [look]="'twotone'" [text]="item[this.textField()]" color="primary"></ax-badge>
|
|
4840
4858
|
}
|
|
4841
4859
|
`,
|
|
4842
4860
|
standalone: true,
|
|
4843
4861
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4844
4862
|
imports: [AXBadgeModule],
|
|
4845
4863
|
}]
|
|
4846
|
-
}]
|
|
4864
|
+
}], propDecorators: { __class: [{
|
|
4865
|
+
type: HostBinding,
|
|
4866
|
+
args: ['class']
|
|
4867
|
+
}] } });
|
|
4847
4868
|
|
|
4848
4869
|
var selectionListWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
4849
4870
|
__proto__: null,
|
|
@@ -4868,16 +4889,11 @@ class AXPSelectionListWidgetDesignerComponent extends AXPDataListWidgetComponent
|
|
|
4868
4889
|
this.dataSource()
|
|
4869
4890
|
.onChanged.pipe(first())
|
|
4870
4891
|
.subscribe((e) => {
|
|
4871
|
-
if (
|
|
4872
|
-
this.displayItems.set(
|
|
4892
|
+
if (e.items?.length > 0) {
|
|
4893
|
+
this.displayItems.set(e.items);
|
|
4873
4894
|
}
|
|
4874
4895
|
else {
|
|
4875
|
-
|
|
4876
|
-
this.displayItems.set(e.items);
|
|
4877
|
-
}
|
|
4878
|
-
else {
|
|
4879
|
-
this.displayItems.set(this.samples());
|
|
4880
|
-
}
|
|
4896
|
+
this.displayItems.set(this.samples());
|
|
4881
4897
|
}
|
|
4882
4898
|
});
|
|
4883
4899
|
this.dataSource().refresh();
|
|
@@ -4890,7 +4906,7 @@ class AXPSelectionListWidgetDesignerComponent extends AXPDataListWidgetComponent
|
|
|
4890
4906
|
return cls;
|
|
4891
4907
|
}
|
|
4892
4908
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4893
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSelectionListWidgetDesignerComponent, isStandalone: true, selector: "
|
|
4909
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSelectionListWidgetDesignerComponent, isStandalone: true, selector: "axp-selection-list-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4894
4910
|
<ax-selection-list
|
|
4895
4911
|
class="ax-w-max"
|
|
4896
4912
|
[valueField]="valueField()"
|
|
@@ -4903,11 +4919,12 @@ class AXPSelectionListWidgetDesignerComponent extends AXPDataListWidgetComponent
|
|
|
4903
4919
|
[readonly]="readonly()"
|
|
4904
4920
|
>
|
|
4905
4921
|
</ax-selection-list>
|
|
4906
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$
|
|
4922
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$1.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4907
4923
|
}
|
|
4908
4924
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, decorators: [{
|
|
4909
4925
|
type: Component,
|
|
4910
4926
|
args: [{
|
|
4927
|
+
selector: 'axp-selection-list-widget',
|
|
4911
4928
|
template: `
|
|
4912
4929
|
<ax-selection-list
|
|
4913
4930
|
class="ax-w-max"
|
|
@@ -4949,12 +4966,7 @@ class AXPSelectionListWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
|
4949
4966
|
this.dataSource()
|
|
4950
4967
|
.onChanged.pipe(first())
|
|
4951
4968
|
.subscribe((e) => {
|
|
4952
|
-
|
|
4953
|
-
this.displayItems.set(this.items());
|
|
4954
|
-
}
|
|
4955
|
-
else {
|
|
4956
|
-
this.displayItems.set(e.items);
|
|
4957
|
-
}
|
|
4969
|
+
this.displayItems.set(e.items);
|
|
4958
4970
|
});
|
|
4959
4971
|
this.dataSource().refresh();
|
|
4960
4972
|
});
|
|
@@ -4972,12 +4984,12 @@ class AXPSelectionListWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
|
4972
4984
|
return cls;
|
|
4973
4985
|
}
|
|
4974
4986
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4975
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "
|
|
4987
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "axp-selection-list-widget-edit", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4976
4988
|
<ax-selection-list
|
|
4977
4989
|
class="ax-w-max"
|
|
4978
4990
|
[valueField]="valueField()"
|
|
4979
4991
|
[textField]="textField()"
|
|
4980
|
-
[ngModel]="
|
|
4992
|
+
[ngModel]="getValue()"
|
|
4981
4993
|
(onValueChanged)="handleValueChange($event)"
|
|
4982
4994
|
[items]="displayItems()"
|
|
4983
4995
|
[multiple]="multiple()"
|
|
@@ -4993,17 +5005,18 @@ class AXPSelectionListWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
|
4993
5005
|
></ax-validation-rule>
|
|
4994
5006
|
}
|
|
4995
5007
|
</ax-selection-list>
|
|
4996
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$
|
|
5008
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$1.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4997
5009
|
}
|
|
4998
5010
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
|
|
4999
5011
|
type: Component,
|
|
5000
5012
|
args: [{
|
|
5013
|
+
selector: 'axp-selection-list-widget-edit',
|
|
5001
5014
|
template: `
|
|
5002
5015
|
<ax-selection-list
|
|
5003
5016
|
class="ax-w-max"
|
|
5004
5017
|
[valueField]="valueField()"
|
|
5005
5018
|
[textField]="textField()"
|
|
5006
|
-
[ngModel]="
|
|
5019
|
+
[ngModel]="getValue()"
|
|
5007
5020
|
(onValueChanged)="handleValueChange($event)"
|
|
5008
5021
|
[items]="displayItems()"
|
|
5009
5022
|
[multiple]="multiple()"
|
|
@@ -5023,7 +5036,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
5023
5036
|
standalone: true,
|
|
5024
5037
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5025
5038
|
imports: [CommonModule, FormsModule, AXSelectionListModule, AXFormModule],
|
|
5026
|
-
inputs: [],
|
|
5027
5039
|
}]
|
|
5028
5040
|
}], propDecorators: { __class: [{
|
|
5029
5041
|
type: HostBinding,
|
|
@@ -5086,7 +5098,7 @@ class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
5086
5098
|
} }@else {
|
|
5087
5099
|
<ax-badge [look]="'twotone'" [text]="firstItem()[this.textField]" color="primary"></ax-badge>
|
|
5088
5100
|
}
|
|
5089
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type:
|
|
5101
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5090
5102
|
}
|
|
5091
5103
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, decorators: [{
|
|
5092
5104
|
type: Component,
|
|
@@ -5449,77 +5461,39 @@ class AXPToggleWidgetViewComponent extends AXPWidgetComponent {
|
|
|
5449
5461
|
this.trulyText = computed(() => this.options()['trulyText']);
|
|
5450
5462
|
}
|
|
5451
5463
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5452
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPToggleWidgetViewComponent, isStandalone: true, selector: "axp-switch-widget", usesInheritance: true, ngImport: i0, template: `
|
|
5453
|
-
@if(getValue()){
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
|
|
5460
|
-
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
}
|
|
5467
|
-
}
|
|
5468
|
-
}@else
|
|
5469
|
-
{
|
|
5470
|
-
@if(falsyText())
|
|
5471
|
-
{
|
|
5472
|
-
<ax-badge [text]="falsyText()" [color]="negative() ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
5473
|
-
}
|
|
5474
|
-
@else
|
|
5475
|
-
{
|
|
5476
|
-
@if(negative())
|
|
5477
|
-
{
|
|
5478
|
-
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
5479
|
-
}@else
|
|
5480
|
-
{
|
|
5481
|
-
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
5482
|
-
}
|
|
5483
|
-
}
|
|
5484
|
-
}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5464
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPToggleWidgetViewComponent, isStandalone: true, selector: "axp-switch-widget-view", usesInheritance: true, ngImport: i0, template: `
|
|
5465
|
+
@if(getValue()){ @if(trulyText()) {
|
|
5466
|
+
<ax-badge [text]="trulyText()" [color]="negative() ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
|
|
5467
|
+
} @else { @if(negative()) {
|
|
5468
|
+
<ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
|
|
5469
|
+
} @else {
|
|
5470
|
+
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
5471
|
+
} } }@else { @if(falsyText()) {
|
|
5472
|
+
<ax-badge [text]="falsyText()" [color]="negative() ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
5473
|
+
} @else { @if(negative()) {
|
|
5474
|
+
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
5475
|
+
}@else {
|
|
5476
|
+
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
5477
|
+
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5485
5478
|
}
|
|
5486
5479
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetViewComponent, decorators: [{
|
|
5487
5480
|
type: Component,
|
|
5488
5481
|
args: [{
|
|
5489
|
-
selector: 'axp-switch-widget',
|
|
5482
|
+
selector: 'axp-switch-widget-view',
|
|
5490
5483
|
template: `
|
|
5491
|
-
@if(getValue()){
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
}
|
|
5505
|
-
}
|
|
5506
|
-
}@else
|
|
5507
|
-
{
|
|
5508
|
-
@if(falsyText())
|
|
5509
|
-
{
|
|
5510
|
-
<ax-badge [text]="falsyText()" [color]="negative() ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
5511
|
-
}
|
|
5512
|
-
@else
|
|
5513
|
-
{
|
|
5514
|
-
@if(negative())
|
|
5515
|
-
{
|
|
5516
|
-
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
5517
|
-
}@else
|
|
5518
|
-
{
|
|
5519
|
-
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
5520
|
-
}
|
|
5521
|
-
}
|
|
5522
|
-
}`,
|
|
5484
|
+
@if(getValue()){ @if(trulyText()) {
|
|
5485
|
+
<ax-badge [text]="trulyText()" [color]="negative() ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
|
|
5486
|
+
} @else { @if(negative()) {
|
|
5487
|
+
<ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
|
|
5488
|
+
} @else {
|
|
5489
|
+
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
5490
|
+
} } }@else { @if(falsyText()) {
|
|
5491
|
+
<ax-badge [text]="falsyText()" [color]="negative() ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
5492
|
+
} @else { @if(negative()) {
|
|
5493
|
+
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
5494
|
+
}@else {
|
|
5495
|
+
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
5496
|
+
} } }`,
|
|
5523
5497
|
standalone: true,
|
|
5524
5498
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5525
5499
|
imports: [CommonModule, AXDecoratorModule, AXBadgeModule],
|
|
@@ -5537,9 +5511,6 @@ class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
|
|
|
5537
5511
|
this.disabled = computed(() => this.options()['disabled']);
|
|
5538
5512
|
this.color = computed(() => this.options()['color']?.id ?? 'primary');
|
|
5539
5513
|
}
|
|
5540
|
-
onModelChange(e) {
|
|
5541
|
-
this.setValue(e);
|
|
5542
|
-
}
|
|
5543
5514
|
get __class() {
|
|
5544
5515
|
const cls = {};
|
|
5545
5516
|
//
|
|
@@ -5547,13 +5518,23 @@ class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
|
|
|
5547
5518
|
return cls;
|
|
5548
5519
|
}
|
|
5549
5520
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5550
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "axp-switch-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-switch
|
|
5521
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "axp-switch-widget-edit", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-switch
|
|
5522
|
+
[ngModel]="this.getValue()"
|
|
5523
|
+
[disabled]="disabled()"
|
|
5524
|
+
[color]="color()"
|
|
5525
|
+
(onValueChanged)="handleValueChanged($event)"
|
|
5526
|
+
></ax-switch>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSwitchModule }, { kind: "component", type: i2$2.AXSwitchComponent, selector: "ax-switch", inputs: ["disabled", "readonly", "color", "tabIndex", "value", "name", "isLoading"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5551
5527
|
}
|
|
5552
5528
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, decorators: [{
|
|
5553
5529
|
type: Component,
|
|
5554
5530
|
args: [{
|
|
5555
|
-
selector: 'axp-switch-widget',
|
|
5556
|
-
template: `<ax-switch
|
|
5531
|
+
selector: 'axp-switch-widget-edit',
|
|
5532
|
+
template: `<ax-switch
|
|
5533
|
+
[ngModel]="this.getValue()"
|
|
5534
|
+
[disabled]="disabled()"
|
|
5535
|
+
[color]="color()"
|
|
5536
|
+
(onValueChanged)="handleValueChanged($event)"
|
|
5537
|
+
></ax-switch>`,
|
|
5557
5538
|
standalone: true,
|
|
5558
5539
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5559
5540
|
imports: [CommonModule, FormsModule, AXSwitchModule],
|
|
@@ -5609,7 +5590,7 @@ class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
5609
5590
|
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
5610
5591
|
}@else {
|
|
5611
5592
|
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
5612
|
-
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type:
|
|
5593
|
+
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5613
5594
|
}
|
|
5614
5595
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetColumnComponent, decorators: [{
|
|
5615
5596
|
type: Component,
|
|
@@ -5641,12 +5622,12 @@ var toggleWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
|
5641
5622
|
|
|
5642
5623
|
class AXPToggleWidgetPrintComponent extends AXPWidgetComponent {
|
|
5643
5624
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5644
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetPrintComponent, isStandalone: true, selector: "axp-swith-widget", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5625
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetPrintComponent, isStandalone: true, selector: "axp-swith-widget-print", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5645
5626
|
}
|
|
5646
5627
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetPrintComponent, decorators: [{
|
|
5647
5628
|
type: Component,
|
|
5648
5629
|
args: [{
|
|
5649
|
-
selector: 'axp-swith-widget',
|
|
5630
|
+
selector: 'axp-swith-widget-print',
|
|
5650
5631
|
template: ``,
|
|
5651
5632
|
standalone: true,
|
|
5652
5633
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -6044,7 +6025,7 @@ class AXPFileBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6044
6025
|
</div>
|
|
6045
6026
|
</ng-template>
|
|
6046
6027
|
</div>
|
|
6047
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
6028
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6048
6029
|
}
|
|
6049
6030
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFileBoxWidgetViewComponent, decorators: [{
|
|
6050
6031
|
type: Component,
|
|
@@ -6233,7 +6214,7 @@ class AXPGalleryWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6233
6214
|
<small>No Media!</small>
|
|
6234
6215
|
}
|
|
6235
6216
|
</div>
|
|
6236
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
6217
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6237
6218
|
}
|
|
6238
6219
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
|
|
6239
6220
|
type: Component,
|
|
@@ -6398,7 +6379,7 @@ class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
|
|
|
6398
6379
|
|
|
6399
6380
|
}
|
|
6400
6381
|
</div>
|
|
6401
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
6382
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "component", type: i5$1.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone", inputs: ["description"] }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple", "accept"], outputs: ["onChanged", "onFileUploadComplete", "onFilesUploadComplete"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6402
6383
|
}
|
|
6403
6384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetEditComponent, decorators: [{
|
|
6404
6385
|
type: Component,
|
|
@@ -6920,7 +6901,7 @@ class AXPSignatureWidgetEditComponent extends AXPWidgetComponent {
|
|
|
6920
6901
|
</div>
|
|
6921
6902
|
}
|
|
6922
6903
|
</div>
|
|
6923
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$
|
|
6904
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6924
6905
|
}
|
|
6925
6906
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetEditComponent, decorators: [{
|
|
6926
6907
|
type: Component,
|
|
@@ -7021,7 +7002,7 @@ class AXPSignatureWidgetViewComponent extends AXPWidgetComponent {
|
|
|
7021
7002
|
<span>{{placeholder()}}</span>
|
|
7022
7003
|
}
|
|
7023
7004
|
</div>
|
|
7024
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$
|
|
7005
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7025
7006
|
}
|
|
7026
7007
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetViewComponent, decorators: [{
|
|
7027
7008
|
type: Component,
|
|
@@ -7078,13 +7059,13 @@ const AXPSignatureWidget = {
|
|
|
7078
7059
|
class AXPBlockWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
7079
7060
|
constructor() {
|
|
7080
7061
|
super(...arguments);
|
|
7081
|
-
this.backgroundColor = computed(() => this.options()[
|
|
7082
|
-
this.cssClass = computed(() => this.options()[
|
|
7083
|
-
this.flexAlignItems = computed(() => this.options()[
|
|
7084
|
-
this.flexJustifyContent = computed(() => this.options()[
|
|
7085
|
-
this.flexWrap = computed(() => this.options()[
|
|
7086
|
-
this.flexDirection = computed(() => this.options()[
|
|
7087
|
-
this.gap = computed(() => this.options()[
|
|
7062
|
+
this.backgroundColor = computed(() => this.options()['backgroundColor']);
|
|
7063
|
+
this.cssClass = computed(() => this.options()['cssClass']);
|
|
7064
|
+
this.flexAlignItems = computed(() => this.options()['flexAlignItems']?.id);
|
|
7065
|
+
this.flexJustifyContent = computed(() => this.options()['flexJustifyContent']?.id);
|
|
7066
|
+
this.flexWrap = computed(() => this.options()['flexWrap']?.id);
|
|
7067
|
+
this.flexDirection = computed(() => this.options()['flexDirection']?.id);
|
|
7068
|
+
this.gap = computed(() => this.options()['gap'] ?? 0);
|
|
7088
7069
|
}
|
|
7089
7070
|
get __class() {
|
|
7090
7071
|
const cls = {};
|
|
@@ -7117,13 +7098,18 @@ class AXPBlockWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7117
7098
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7118
7099
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPBlockWidgetDesignerComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.__class", "style": "this.__style" } }, providers: [
|
|
7119
7100
|
{
|
|
7120
|
-
provide: AXPContainerWidgetComponent,
|
|
7121
|
-
|
|
7101
|
+
provide: AXPContainerWidgetComponent,
|
|
7102
|
+
useExisting: AXPBlockWidgetDesignerComponent,
|
|
7103
|
+
},
|
|
7122
7104
|
], usesInheritance: true, ngImport: i0, template: `
|
|
7123
7105
|
@for (node of children(); track $index) {
|
|
7124
7106
|
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"></ng-container>
|
|
7125
7107
|
}
|
|
7126
|
-
|
|
7108
|
+
@empty {
|
|
7109
|
+
<axp-designer-add-widget-mini-button
|
|
7110
|
+
class="ax-flex-1 ax-self-center ax-place-self-end"
|
|
7111
|
+
></axp-designer-add-widget-mini-button>
|
|
7112
|
+
}
|
|
7127
7113
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetMiniButtonComponent, selector: "axp-designer-add-widget-mini-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7128
7114
|
}
|
|
7129
7115
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetDesignerComponent, decorators: [{
|
|
@@ -7134,16 +7120,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7134
7120
|
@for (node of children(); track $index) {
|
|
7135
7121
|
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"></ng-container>
|
|
7136
7122
|
}
|
|
7137
|
-
|
|
7123
|
+
@empty {
|
|
7124
|
+
<axp-designer-add-widget-mini-button
|
|
7125
|
+
class="ax-flex-1 ax-self-center ax-place-self-end"
|
|
7126
|
+
></axp-designer-add-widget-mini-button>
|
|
7127
|
+
}
|
|
7138
7128
|
`,
|
|
7139
7129
|
standalone: true,
|
|
7140
7130
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7141
|
-
imports: [
|
|
7131
|
+
imports: [
|
|
7132
|
+
CommonModule,
|
|
7133
|
+
AXPLayoutBuilderModule,
|
|
7134
|
+
AXPWidgetDesignerRendererDirective,
|
|
7135
|
+
AXPDesignerAddWidgetMiniButtonComponent,
|
|
7136
|
+
],
|
|
7142
7137
|
providers: [
|
|
7143
7138
|
{
|
|
7144
|
-
provide: AXPContainerWidgetComponent,
|
|
7145
|
-
|
|
7146
|
-
|
|
7139
|
+
provide: AXPContainerWidgetComponent,
|
|
7140
|
+
useExisting: AXPBlockWidgetDesignerComponent,
|
|
7141
|
+
},
|
|
7142
|
+
],
|
|
7147
7143
|
}]
|
|
7148
7144
|
}], propDecorators: { __class: [{
|
|
7149
7145
|
type: HostBinding,
|
|
@@ -7249,10 +7245,10 @@ const AXPBlockWidget = {
|
|
|
7249
7245
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
7250
7246
|
type: 'container',
|
|
7251
7247
|
properties: [
|
|
7252
|
-
AXP_NAME_PROPERTY,
|
|
7253
|
-
AXP_FONT_SIZE_PROPERTY,
|
|
7254
|
-
cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: null } }),
|
|
7255
|
-
...AXP_LAYOUT_FLEX_PROPERTIES
|
|
7248
|
+
// AXP_NAME_PROPERTY,
|
|
7249
|
+
// AXP_FONT_SIZE_PROPERTY,
|
|
7250
|
+
// cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: null } }),
|
|
7251
|
+
...AXP_LAYOUT_FLEX_PROPERTIES,
|
|
7256
7252
|
],
|
|
7257
7253
|
components: {
|
|
7258
7254
|
designer: {
|
|
@@ -7322,21 +7318,21 @@ const AXPPageWidget = {
|
|
|
7322
7318
|
properties: [
|
|
7323
7319
|
AXP_FONT_SIZE_PROPERTY,
|
|
7324
7320
|
AXP_THEME_PROPERTY,
|
|
7325
|
-
AXP_BG_COLOR_PROPERTY,
|
|
7321
|
+
cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: '#ffffff' } }),
|
|
7326
7322
|
createBooleanProperty({
|
|
7327
|
-
name:
|
|
7323
|
+
name: 'hasHeader',
|
|
7328
7324
|
path: 'options.hasHeader',
|
|
7329
|
-
title:
|
|
7325
|
+
title: 'Header',
|
|
7330
7326
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
7331
7327
|
defaultValue: true,
|
|
7332
7328
|
}),
|
|
7333
7329
|
createBooleanProperty({
|
|
7334
|
-
name:
|
|
7330
|
+
name: 'hasFooter',
|
|
7335
7331
|
path: 'options.hasFooter',
|
|
7336
|
-
title:
|
|
7332
|
+
title: 'Footer',
|
|
7337
7333
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
7338
7334
|
defaultValue: true,
|
|
7339
|
-
})
|
|
7335
|
+
}),
|
|
7340
7336
|
],
|
|
7341
7337
|
components: {
|
|
7342
7338
|
view: {
|
|
@@ -7349,7 +7345,7 @@ const AXPPageWidget = {
|
|
|
7349
7345
|
component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
|
|
7350
7346
|
},
|
|
7351
7347
|
designer: {
|
|
7352
|
-
component: () => import('./acorex-platform-widgets-page-widget-designer.component-
|
|
7348
|
+
component: () => import('./acorex-platform-widgets-page-widget-designer.component-DOulAanE.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
|
|
7353
7349
|
},
|
|
7354
7350
|
},
|
|
7355
7351
|
};
|
|
@@ -7488,7 +7484,7 @@ class AXPRepeaterWidgetEditComponent extends AXPWidgetComponent {
|
|
|
7488
7484
|
You haven't added any items yet. Click “Start Adding Items” to get started!
|
|
7489
7485
|
</div>
|
|
7490
7486
|
</ng-template>
|
|
7491
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
7487
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: i1$7.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7492
7488
|
}
|
|
7493
7489
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetEditComponent, decorators: [{
|
|
7494
7490
|
type: Component,
|
|
@@ -7639,7 +7635,7 @@ class AXPRepeaterWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7639
7635
|
<axp-designer-add-widget-mini-button ></axp-designer-add-widget-mini-button>
|
|
7640
7636
|
}
|
|
7641
7637
|
</ng-template>
|
|
7642
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
7638
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetMiniButtonComponent, selector: "axp-designer-add-widget-mini-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7643
7639
|
}
|
|
7644
7640
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetDesignerComponent, decorators: [{
|
|
7645
7641
|
type: Component,
|
|
@@ -7741,6 +7737,7 @@ const AXPRepeaterWidget = {
|
|
|
7741
7737
|
const AXP_TEMPLATE_WIDGET_PROVIDER = new InjectionToken('AXP_TEMPLATE_WIDGET_PROVIDER');
|
|
7742
7738
|
class AXPTemplateWidgetProviderService {
|
|
7743
7739
|
constructor() {
|
|
7740
|
+
this.popupService = inject(AXPopupService);
|
|
7744
7741
|
this.providers = inject(AXP_TEMPLATE_WIDGET_PROVIDER, { optional: true });
|
|
7745
7742
|
}
|
|
7746
7743
|
async items(query) {
|
|
@@ -7769,6 +7766,20 @@ class AXPTemplateWidgetProviderService {
|
|
|
7769
7766
|
}
|
|
7770
7767
|
return null;
|
|
7771
7768
|
}
|
|
7769
|
+
async chooseTemplate() {
|
|
7770
|
+
const com = await import('./acorex-platform-widgets-template-picker.component-DPlvwgbu.mjs').then((c) => c.AXPTemplateWidgetPickerComponent);
|
|
7771
|
+
const widgets = await this.items();
|
|
7772
|
+
const result = await this.popupService.open(com, {
|
|
7773
|
+
title: 'Template Gallery',
|
|
7774
|
+
size: 'md',
|
|
7775
|
+
closeButton: true,
|
|
7776
|
+
data: {
|
|
7777
|
+
widgets: sortBy(widgets, (c) => c.title),
|
|
7778
|
+
},
|
|
7779
|
+
});
|
|
7780
|
+
const selected = result.data?.widgets;
|
|
7781
|
+
return selected[0];
|
|
7782
|
+
}
|
|
7772
7783
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTemplateWidgetProviderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
7773
7784
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTemplateWidgetProviderService, providedIn: 'root' }); }
|
|
7774
7785
|
}
|
|
@@ -7780,14 +7791,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7780
7791
|
class AXPTemplateWidgetViewComponent extends AXPWidgetComponent {
|
|
7781
7792
|
constructor() {
|
|
7782
7793
|
super();
|
|
7794
|
+
this.metaKey = '__meta__';
|
|
7783
7795
|
this.templateProvider = inject(AXPTemplateWidgetProviderService);
|
|
7784
7796
|
this.templateId = computed(() => this.options()['templateId']);
|
|
7785
7797
|
this.nodeToRender = signal(null);
|
|
7786
7798
|
//
|
|
7787
7799
|
effect(async () => {
|
|
7788
|
-
const
|
|
7789
|
-
|
|
7790
|
-
|
|
7800
|
+
const value = this.getValue();
|
|
7801
|
+
const templateId = get(value, `${this.metaKey}.templateId`) ?? this.templateId();
|
|
7802
|
+
if (templateId) {
|
|
7803
|
+
const node = await this.templateProvider.get(templateId);
|
|
7804
|
+
if (node) {
|
|
7805
|
+
this.nodeToRender.set(node);
|
|
7806
|
+
}
|
|
7807
|
+
}
|
|
7808
|
+
else {
|
|
7809
|
+
this.nodeToRender.set(null);
|
|
7791
7810
|
}
|
|
7792
7811
|
}, { allowSignalWrites: true });
|
|
7793
7812
|
}
|
|
@@ -7795,8 +7814,12 @@ class AXPTemplateWidgetViewComponent extends AXPWidgetComponent {
|
|
|
7795
7814
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPTemplateWidgetViewComponent, isStandalone: true, selector: "axp-template-widget", usesInheritance: true, ngImport: i0, template: `
|
|
7796
7815
|
@if(nodeToRender()) {
|
|
7797
7816
|
<ng-container axp-widget-renderer [node]="nodeToRender()!" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7817
|
+
} @else {
|
|
7818
|
+
<span class="ax-underline ax-decoration-dotted ax-underline-offset-8 ax-text-gray-400">
|
|
7819
|
+
{{ 'empty-template' | translate : { scope: 'form-template-management' } | async }}
|
|
7820
|
+
</span>
|
|
7798
7821
|
}
|
|
7799
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: i1$7.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7822
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: i1$7.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i3$2.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7800
7823
|
}
|
|
7801
7824
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTemplateWidgetViewComponent, decorators: [{
|
|
7802
7825
|
type: Component,
|
|
@@ -7805,11 +7828,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7805
7828
|
template: `
|
|
7806
7829
|
@if(nodeToRender()) {
|
|
7807
7830
|
<ng-container axp-widget-renderer [node]="nodeToRender()!" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7831
|
+
} @else {
|
|
7832
|
+
<span class="ax-underline ax-decoration-dotted ax-underline-offset-8 ax-text-gray-400">
|
|
7833
|
+
{{ 'empty-template' | translate : { scope: 'form-template-management' } | async }}
|
|
7834
|
+
</span>
|
|
7808
7835
|
}
|
|
7809
7836
|
`,
|
|
7810
7837
|
standalone: true,
|
|
7811
7838
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7812
|
-
imports: [CommonModule, AXPLayoutBuilderModule],
|
|
7839
|
+
imports: [CommonModule, AXPLayoutBuilderModule, AXTranslationModule],
|
|
7813
7840
|
}]
|
|
7814
7841
|
}], ctorParameters: () => [] });
|
|
7815
7842
|
|
|
@@ -7904,7 +7931,7 @@ const AXPTemplateWidget = {
|
|
|
7904
7931
|
component: () => Promise.resolve().then(function () { return templateWidgetView_component; }).then((c) => c.AXPTemplateWidgetViewComponent),
|
|
7905
7932
|
},
|
|
7906
7933
|
edit: {
|
|
7907
|
-
component: () => import('./acorex-platform-widgets-template-widget-edit.component-
|
|
7934
|
+
component: () => import('./acorex-platform-widgets-template-widget-edit.component-DwPYeF0y.mjs').then((c) => c.AXPTemplateWidgetEditComponent),
|
|
7908
7935
|
},
|
|
7909
7936
|
print: {
|
|
7910
7937
|
component: () => Promise.resolve().then(function () { return templateWidgetView_component; }).then((c) => c.AXPTemplateWidgetViewComponent),
|
|
@@ -7915,6 +7942,160 @@ const AXPTemplateWidget = {
|
|
|
7915
7942
|
}
|
|
7916
7943
|
};
|
|
7917
7944
|
|
|
7945
|
+
class AXPCronJobWidgetViewComponent extends AXPWidgetComponent {
|
|
7946
|
+
constructor() {
|
|
7947
|
+
super(...arguments);
|
|
7948
|
+
this.internalValue = computed(() => this.getValue());
|
|
7949
|
+
}
|
|
7950
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7951
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPCronJobWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<p>{{ internalValue() }}</p>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7952
|
+
}
|
|
7953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetViewComponent, decorators: [{
|
|
7954
|
+
type: Component,
|
|
7955
|
+
args: [{
|
|
7956
|
+
template: `<p>{{ internalValue() }}</p>`,
|
|
7957
|
+
standalone: true,
|
|
7958
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7959
|
+
imports: [CommonModule],
|
|
7960
|
+
}]
|
|
7961
|
+
}] });
|
|
7962
|
+
|
|
7963
|
+
var cronJobWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
7964
|
+
__proto__: null,
|
|
7965
|
+
AXPCronJobWidgetViewComponent: AXPCronJobWidgetViewComponent
|
|
7966
|
+
});
|
|
7967
|
+
|
|
7968
|
+
class AXPCronJobWidgetEditComponent extends AXPWidgetComponent {
|
|
7969
|
+
getExpressionHandler(e) {
|
|
7970
|
+
this.setValue(e.data);
|
|
7971
|
+
}
|
|
7972
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7973
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPCronJobWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<ax-cron-job-container (onExpressionChange)="getExpressionHandler($event)"> </ax-cron-job-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXCronJobModule }, { kind: "component", type: i1$8.AXCronJobContainerComponent, selector: "ax-cron-job-container", outputs: ["onExpressionChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7974
|
+
}
|
|
7975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetEditComponent, decorators: [{
|
|
7976
|
+
type: Component,
|
|
7977
|
+
args: [{
|
|
7978
|
+
template: `<ax-cron-job-container (onExpressionChange)="getExpressionHandler($event)"> </ax-cron-job-container>`,
|
|
7979
|
+
standalone: true,
|
|
7980
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7981
|
+
imports: [CommonModule, FormsModule, AXCronJobModule],
|
|
7982
|
+
}]
|
|
7983
|
+
}] });
|
|
7984
|
+
|
|
7985
|
+
var cronJobWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
7986
|
+
__proto__: null,
|
|
7987
|
+
AXPCronJobWidgetEditComponent: AXPCronJobWidgetEditComponent
|
|
7988
|
+
});
|
|
7989
|
+
|
|
7990
|
+
class AXPCronJobWidgetFilterComponent extends AXPWidgetComponent {
|
|
7991
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7992
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPCronJobWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7993
|
+
}
|
|
7994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetFilterComponent, decorators: [{
|
|
7995
|
+
type: Component,
|
|
7996
|
+
args: [{
|
|
7997
|
+
template: ``,
|
|
7998
|
+
standalone: true,
|
|
7999
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8000
|
+
imports: [CommonModule, FormsModule],
|
|
8001
|
+
inputs: []
|
|
8002
|
+
}]
|
|
8003
|
+
}] });
|
|
8004
|
+
|
|
8005
|
+
var cronJobWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
8006
|
+
__proto__: null,
|
|
8007
|
+
AXPCronJobWidgetFilterComponent: AXPCronJobWidgetFilterComponent
|
|
8008
|
+
});
|
|
8009
|
+
|
|
8010
|
+
class AXPCronJobWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
8011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPCronJobWidgetColumnComponent, isStandalone: true, selector: "axp-text-box-widget-column", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `{{ rawValue }}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8013
|
+
}
|
|
8014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetColumnComponent, decorators: [{
|
|
8015
|
+
type: Component,
|
|
8016
|
+
args: [{
|
|
8017
|
+
selector: 'axp-text-box-widget-column',
|
|
8018
|
+
template: `{{ rawValue }}`,
|
|
8019
|
+
standalone: true,
|
|
8020
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8021
|
+
imports: [CommonModule],
|
|
8022
|
+
inputs: ['rawValue'],
|
|
8023
|
+
}]
|
|
8024
|
+
}] });
|
|
8025
|
+
|
|
8026
|
+
var cronJobWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
8027
|
+
__proto__: null,
|
|
8028
|
+
AXPCronJobWidgetColumnComponent: AXPCronJobWidgetColumnComponent
|
|
8029
|
+
});
|
|
8030
|
+
|
|
8031
|
+
class AXPCronJobWidgetPrintComponent extends AXPWidgetComponent {
|
|
8032
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8033
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPCronJobWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8034
|
+
}
|
|
8035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetPrintComponent, decorators: [{
|
|
8036
|
+
type: Component,
|
|
8037
|
+
args: [{
|
|
8038
|
+
template: ``,
|
|
8039
|
+
standalone: true,
|
|
8040
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8041
|
+
imports: [CommonModule],
|
|
8042
|
+
inputs: []
|
|
8043
|
+
}]
|
|
8044
|
+
}] });
|
|
8045
|
+
|
|
8046
|
+
var cronJobWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
8047
|
+
__proto__: null,
|
|
8048
|
+
AXPCronJobWidgetPrintComponent: AXPCronJobWidgetPrintComponent
|
|
8049
|
+
});
|
|
8050
|
+
|
|
8051
|
+
class AXPCronJobWidgetDesignerComponent extends AXPWidgetComponent {
|
|
8052
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8053
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPCronJobWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8054
|
+
}
|
|
8055
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCronJobWidgetDesignerComponent, decorators: [{
|
|
8056
|
+
type: Component,
|
|
8057
|
+
args: [{
|
|
8058
|
+
template: ``,
|
|
8059
|
+
standalone: true,
|
|
8060
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8061
|
+
imports: [CommonModule]
|
|
8062
|
+
}]
|
|
8063
|
+
}] });
|
|
8064
|
+
|
|
8065
|
+
var cronJobWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
8066
|
+
__proto__: null,
|
|
8067
|
+
AXPCronJobWidgetDesignerComponent: AXPCronJobWidgetDesignerComponent
|
|
8068
|
+
});
|
|
8069
|
+
|
|
8070
|
+
const AXPCronJobWidget = {
|
|
8071
|
+
name: 'cron-job',
|
|
8072
|
+
title: 'Cron Job',
|
|
8073
|
+
icon: 'fa-solid fa-square',
|
|
8074
|
+
group: AXP_WIDGETS_ADVANCE_GROUP,
|
|
8075
|
+
type: 'editor',
|
|
8076
|
+
properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY],
|
|
8077
|
+
components: {
|
|
8078
|
+
view: {
|
|
8079
|
+
component: () => Promise.resolve().then(function () { return cronJobWidgetView_component; }).then((c) => c.AXPCronJobWidgetViewComponent),
|
|
8080
|
+
},
|
|
8081
|
+
edit: {
|
|
8082
|
+
component: () => Promise.resolve().then(function () { return cronJobWidgetEdit_component; }).then((c) => c.AXPCronJobWidgetEditComponent),
|
|
8083
|
+
},
|
|
8084
|
+
filter: {
|
|
8085
|
+
component: () => Promise.resolve().then(function () { return cronJobWidgetFilter_component; }).then((c) => c.AXPCronJobWidgetFilterComponent),
|
|
8086
|
+
},
|
|
8087
|
+
column: {
|
|
8088
|
+
component: () => Promise.resolve().then(function () { return cronJobWidgetColumn_component; }).then((c) => c.AXPCronJobWidgetColumnComponent),
|
|
8089
|
+
},
|
|
8090
|
+
print: {
|
|
8091
|
+
component: () => Promise.resolve().then(function () { return cronJobWidgetPrint_component; }).then((c) => c.AXPCronJobWidgetPrintComponent),
|
|
8092
|
+
},
|
|
8093
|
+
designer: {
|
|
8094
|
+
component: () => Promise.resolve().then(function () { return cronJobWidgetDesigner_component; }).then((c) => c.AXPCronJobWidgetDesignerComponent),
|
|
8095
|
+
},
|
|
8096
|
+
},
|
|
8097
|
+
};
|
|
8098
|
+
|
|
7918
8099
|
class AXPQrcodeWidgetViewComponent extends AXPWidgetComponent {
|
|
7919
8100
|
constructor() {
|
|
7920
8101
|
super(...arguments);
|
|
@@ -7941,7 +8122,7 @@ class AXPQrcodeWidgetViewComponent extends AXPWidgetComponent {
|
|
|
7941
8122
|
>
|
|
7942
8123
|
</ax-qrcode>
|
|
7943
8124
|
}
|
|
7944
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXQrcodeModule }, { kind: "component", type: i1$
|
|
8125
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXQrcodeModule }, { kind: "component", type: i1$9.AXQrcodeComponent, selector: "ax-qrcode", inputs: ["content", "size", "level", "color", "backgroundColor", "outputType"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7945
8126
|
}
|
|
7946
8127
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, decorators: [{
|
|
7947
8128
|
type: Component,
|
|
@@ -8098,7 +8279,7 @@ class AXPColorBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
8098
8279
|
<ax-clear-button></ax-clear-button>
|
|
8099
8280
|
}
|
|
8100
8281
|
</ax-color-box>
|
|
8101
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$
|
|
8282
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$4.AXColorBoxComponent, selector: "ax-color-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8102
8283
|
}
|
|
8103
8284
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetEditComponent, decorators: [{
|
|
8104
8285
|
type: Component,
|
|
@@ -8224,7 +8405,7 @@ const AXPColorBoxWidget = {
|
|
|
8224
8405
|
],
|
|
8225
8406
|
components: {
|
|
8226
8407
|
designer: {
|
|
8227
|
-
component: () => import('./acorex-platform-widgets-color-box-widget-designer.component-
|
|
8408
|
+
component: () => import('./acorex-platform-widgets-color-box-widget-designer.component-uQBHAspe.mjs').then((c) => c.AXPColorBoxWidgetDesignerComponent),
|
|
8228
8409
|
},
|
|
8229
8410
|
view: {
|
|
8230
8411
|
component: () => Promise.resolve().then(function () { return colorBoxWidgetView_component; }).then((c) => c.AXPColorBoxWidgetViewComponent),
|
|
@@ -8456,27 +8637,6 @@ class AXPGridWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
8456
8637
|
this.cells = computed(() => Array.from({ length: this.cols() * this.rows() }).map((c, index) => index));
|
|
8457
8638
|
this.settled = computed(() => this.cols() * this.rows() > 1 && this.children().length);
|
|
8458
8639
|
}
|
|
8459
|
-
// private e = effect(async () => {
|
|
8460
|
-
// if (this.settled()) {
|
|
8461
|
-
// const cols = this.cols();
|
|
8462
|
-
// const rows = this.rows();
|
|
8463
|
-
// const gap = this.gap();
|
|
8464
|
-
// // const gridstack = (await import('gridstack')).GridStack;
|
|
8465
|
-
// // const cols = this.cols();
|
|
8466
|
-
// // const rows = this.rows();
|
|
8467
|
-
// //
|
|
8468
|
-
// // // Initialize the grid with responsive options
|
|
8469
|
-
// // gridstack.init({
|
|
8470
|
-
// // cellHeight: 80,
|
|
8471
|
-
// // margin: 0,
|
|
8472
|
-
// // minRow: 1,
|
|
8473
|
-
// // column: 11,
|
|
8474
|
-
// // });
|
|
8475
|
-
// setTimeout(() => {
|
|
8476
|
-
// this.element.nativeElement.style.minHeight = this.placeholder?.nativeElement ? `${this.placeholder.nativeElement.clientHeight}px` : '100px';
|
|
8477
|
-
// }, 50);
|
|
8478
|
-
// }
|
|
8479
|
-
// })
|
|
8480
8640
|
handleDrawerSelect(e) {
|
|
8481
8641
|
this.designerService.update({
|
|
8482
8642
|
values: {
|
|
@@ -8925,7 +9085,7 @@ class AXPGridRowWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
8925
9085
|
</div>
|
|
8926
9086
|
}
|
|
8927
9087
|
</div>
|
|
8928
|
-
`, isInline: true, styles: ["axp-grid-row-widget.axp-widget-host .axp-empty-slot{display:flex;flex:1 1 0%;align-items:center;justify-content:center;border-width:1px;border-style:dashed;padding:1rem;background-color:rgba(209,213,219,.1);background-image:linear-gradient(135deg,rgb(209 213 219 / 50%) 10%,transparent 0,transparent 50%,rgb(209 213 219 / 50%) 0,rgb(209 213 219 / 50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}axp-grid-row-widget.axp-widget-host .axp-empty-slot.axp-state-hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(var(--ax-color-primary-300),var(--tw-bg-opacity))}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
9088
|
+
`, isInline: true, styles: ["axp-grid-row-widget.axp-widget-host .axp-empty-slot{display:flex;flex:1 1 0%;align-items:center;justify-content:center;border-width:1px;border-style:dashed;padding:1rem;background-color:rgba(209,213,219,.1);background-image:linear-gradient(135deg,rgb(209 213 219 / 50%) 10%,transparent 0,transparent 50%,rgb(209 213 219 / 50%) 0,rgb(209 213 219 / 50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}axp-grid-row-widget.axp-widget-host .axp-empty-slot.axp-state-hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(var(--ax-color-primary-300),var(--tw-bg-opacity, 1))}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
8929
9089
|
}
|
|
8930
9090
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetDesignerComponent, decorators: [{
|
|
8931
9091
|
type: Component,
|
|
@@ -8943,7 +9103,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
8943
9103
|
{
|
|
8944
9104
|
provide: AXPContainerWidgetComponent, useExisting: AXPGridWidgetDesignerComponent
|
|
8945
9105
|
}
|
|
8946
|
-
], styles: ["axp-grid-row-widget.axp-widget-host .axp-empty-slot{display:flex;flex:1 1 0%;align-items:center;justify-content:center;border-width:1px;border-style:dashed;padding:1rem;background-color:rgba(209,213,219,.1);background-image:linear-gradient(135deg,rgb(209 213 219 / 50%) 10%,transparent 0,transparent 50%,rgb(209 213 219 / 50%) 0,rgb(209 213 219 / 50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}axp-grid-row-widget.axp-widget-host .axp-empty-slot.axp-state-hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(var(--ax-color-primary-300),var(--tw-bg-opacity))}\n"] }]
|
|
9106
|
+
], styles: ["axp-grid-row-widget.axp-widget-host .axp-empty-slot{display:flex;flex:1 1 0%;align-items:center;justify-content:center;border-width:1px;border-style:dashed;padding:1rem;background-color:rgba(209,213,219,.1);background-image:linear-gradient(135deg,rgb(209 213 219 / 50%) 10%,transparent 0,transparent 50%,rgb(209 213 219 / 50%) 0,rgb(209 213 219 / 50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}axp-grid-row-widget.axp-widget-host .axp-empty-slot.axp-state-hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(var(--ax-color-primary-300),var(--tw-bg-opacity, 1))}\n"] }]
|
|
8947
9107
|
}], propDecorators: { handleMouseLeave: [{
|
|
8948
9108
|
type: HostListener,
|
|
8949
9109
|
args: ['mouseleave', ['$event']]
|
|
@@ -9049,7 +9209,7 @@ const AXPTextBlockWidget = {
|
|
|
9049
9209
|
component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
|
|
9050
9210
|
},
|
|
9051
9211
|
designer: {
|
|
9052
|
-
component: () => import('./acorex-platform-widgets-text-block-widget-designer.component-
|
|
9212
|
+
component: () => import('./acorex-platform-widgets-text-block-widget-designer.component-BE6goaZc.mjs').then((c) => c.AXPTextBlockWidgetDesignerComponent),
|
|
9053
9213
|
},
|
|
9054
9214
|
},
|
|
9055
9215
|
};
|
|
@@ -9082,6 +9242,7 @@ class AXPWidgetsModule {
|
|
|
9082
9242
|
AXPSelectionListWidget,
|
|
9083
9243
|
AXPLargeTextWidget,
|
|
9084
9244
|
AXPMapBoxWidget,
|
|
9245
|
+
AXPCronJobWidget,
|
|
9085
9246
|
//AXPPhoneBoxWidget,
|
|
9086
9247
|
//AXPEmailBoxWidget,
|
|
9087
9248
|
//AXPLinkWidget,
|
|
@@ -9125,6 +9286,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
9125
9286
|
AXPSelectionListWidget,
|
|
9126
9287
|
AXPLargeTextWidget,
|
|
9127
9288
|
AXPMapBoxWidget,
|
|
9289
|
+
AXPCronJobWidget,
|
|
9128
9290
|
//AXPPhoneBoxWidget,
|
|
9129
9291
|
//AXPEmailBoxWidget,
|
|
9130
9292
|
//AXPLinkWidget,
|