@acorex/platform 18.0.10 → 18.0.12
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/auth/lib/session.service.d.ts +2 -2
- package/core/index.d.ts +2 -0
- package/core/lib/types.d.ts +1 -0
- package/core/utils/countdown-timer.d.ts +14 -0
- package/core/utils/html-utils.d.ts +9 -0
- package/esm2022/auth/lib/session.service.mjs +23 -38
- package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/number/number-widget-edit.component.mjs +2 -2
- package/esm2022/core/index.mjs +3 -1
- package/esm2022/core/lib/types.mjs +13 -2
- package/esm2022/core/utils/countdown-timer.mjs +49 -0
- package/esm2022/core/utils/html-utils.mjs +27 -0
- package/esm2022/layout/builder/lib/builder/widget-column-renderer.mjs +3 -3
- package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +12 -18
- package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +4 -1
- package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +19 -12
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +57 -58
- package/esm2022/layout/designer/index.mjs +7 -2
- package/esm2022/layout/designer/lib/board/board.component.mjs +127 -0
- package/esm2022/layout/designer/lib/breadcrumbs/breadcrumbs.component.mjs +64 -0
- package/esm2022/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.mjs +37 -0
- package/esm2022/layout/designer/lib/designer/designer.component.mjs +54 -0
- package/esm2022/layout/designer/lib/designer.module.mjs +6 -26
- package/esm2022/layout/designer/lib/designer.service.mjs +356 -0
- package/esm2022/layout/designer/lib/header-menu/header-menu.component.mjs +24 -0
- package/esm2022/layout/designer/lib/history/history.component.mjs +21 -0
- package/esm2022/layout/designer/lib/history-manager.service.mjs +117 -0
- package/esm2022/layout/designer/lib/outline/outline.component.mjs +55 -0
- package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +103 -0
- package/esm2022/layout/designer/lib/widget-designer-renderer.component.mjs +243 -0
- package/esm2022/layout/designer/lib/widget-picker/widget-picker.component.mjs +23 -0
- package/esm2022/layout/entity/lib/widgets/lookup-widget/index.mjs +1 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.mjs +3 -3
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +17 -16
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.mjs +3 -3
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.mjs +3 -3
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +4 -4
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +39 -4
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +7 -6
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +5 -4
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +4 -4
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +4 -4
- package/esm2022/widgets/lib/properties/editors.props.mjs +390 -31
- package/esm2022/widgets/lib/properties/table-column.props.mjs +8 -7
- package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget-view.component.mjs +27 -8
- package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget.config.mjs +20 -4
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.mjs +9 -3
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.mjs +10 -7
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.mjs +20 -19
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget.config.mjs +21 -1
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.mjs +48 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-view.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget.config.mjs +34 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-column.component.mjs +23 -6
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.mjs +76 -46
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-view.component.mjs +110 -8
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget.config.mjs +58 -4
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact.type.mjs +2 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/contact-widget/popup-component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +48 -37
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +5 -5
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +22 -13
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget.config.mjs +16 -2
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-edit.component.mjs +147 -126
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-view.component.mjs +30 -26
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget.config.mjs +14 -2
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-edit.component.mjs +14 -10
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-view.component.mjs +9 -7
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget.config.mjs +28 -4
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget.service.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-edit.component.mjs +4 -3
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-view.component.mjs +4 -3
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-edit.component.mjs +22 -17
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget.config.mjs +13 -9
- package/esm2022/widgets/lib/widgets/editors/link-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-edit.component.mjs +35 -34
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-edit.component.mjs +9 -5
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget.config.mjs +8 -4
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-column.component.mjs +5 -5
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-edit.component.mjs +68 -55
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-view.component.mjs +20 -17
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget.config.mjs +15 -9
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-edit.component.mjs +24 -11
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-view.component.mjs +17 -14
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget.config.mjs +15 -4
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-edit.component.mjs +27 -26
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-view.component.mjs +11 -9
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget.config.mjs +9 -17
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-popup.component.mjs +38 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-column.component.mjs +35 -12
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.mjs +56 -52
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-view.component.mjs +26 -20
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget.config.mjs +15 -2
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.mjs +38 -33
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-view.component.mjs +10 -10
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget.config.mjs +15 -4
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-edit.component.mjs +37 -23
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-view.component.mjs +11 -8
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +17 -15
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +6 -5
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget.config.mjs +12 -2
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-column.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.mjs +21 -23
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.mjs +18 -11
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget.config.mjs +15 -13
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/index.mjs +1 -2
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-column.component.mjs +9 -3
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-edit.component.mjs +11 -6
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-filter.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-view.component.mjs +22 -16
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget.config.mjs +17 -4
- package/esm2022/widgets/lib/widgets/index.mjs +2 -1
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget-designer.component.mjs +65 -0
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget-view.component.mjs +48 -0
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget.config.mjs +21 -3
- package/esm2022/widgets/lib/widgets/layout/block-widget/index.mjs +3 -2
- package/esm2022/widgets/lib/widgets/layout/page-widget/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.mjs +65 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-view.component.mjs +42 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget.config.mjs +28 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/index.mjs +1 -3
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-designer.component.mjs +39 -8
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-edit.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-print.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-view.component.mjs +6 -6
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget.config.mjs +5 -8
- package/esm2022/widgets/lib/widgets/layout/text-block-widget/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget-view.component.mjs +29 -0
- package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.mjs +39 -0
- package/esm2022/widgets/lib/widgets.module.mjs +18 -6
- package/fesm2022/acorex-platform-auth.mjs +22 -37
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-edit.component-bTHacO49.mjs → acorex-platform-common-number-widget-edit.component-XSWI6466.mjs} +2 -2
- package/fesm2022/{acorex-platform-common-number-widget-edit.component-bTHacO49.mjs.map → acorex-platform-common-number-widget-edit.component-XSWI6466.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-CFqNphMw.mjs → acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs} +2 -2
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-CFqNphMw.mjs.map → acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs.map} +1 -1
- package/fesm2022/acorex-platform-common.mjs +2 -2
- package/fesm2022/acorex-platform-core.mjs +90 -0
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +89 -86
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DkZGbnkz.mjs +26 -0
- package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DkZGbnkz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-designer.mjs +1081 -59
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +59 -43
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs → acorex-platform-layouts-entity-modify-view.component-C9L8cyBm.mjs} +7 -5
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-C9L8cyBm.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts.mjs +6 -6
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-D1vzPrng.mjs → acorex-platform-themes-default-entity-master-create-view.component-Cv0mt0pU.mjs} +5 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Cv0mt0pU.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-DCE6c3Is.mjs → acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs} +4 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +7 -7
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-column.component-CJUV6lFi.mjs → acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs} +9 -3
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-view.component-T-tXqoMd.mjs → acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs} +20 -19
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs +68 -0
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs +41 -0
- package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +2397 -1474
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/lib/builder/widget-container.component.d.ts +5 -5
- package/layout/builder/lib/builder/widget-registery.service.d.ts +1 -0
- package/layout/builder/lib/builder/widget-renderer.component.d.ts +6 -3
- package/layout/builder/lib/builder/widget.types.d.ts +54 -33
- package/layout/designer/index.d.ts +6 -1
- package/layout/designer/lib/board/board.component.d.ts +16 -0
- package/layout/designer/lib/breadcrumbs/breadcrumbs.component.d.ts +11 -0
- package/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.d.ts +9 -0
- package/layout/designer/lib/designer/designer.component.d.ts +9 -0
- package/layout/designer/lib/designer.module.d.ts +1 -7
- package/layout/designer/lib/designer.service.d.ts +107 -0
- package/layout/designer/lib/header-menu/header-menu.component.d.ts +7 -0
- package/layout/designer/lib/history/history.component.d.ts +7 -0
- package/layout/designer/lib/history-manager.service.d.ts +31 -0
- package/layout/designer/lib/outline/outline.component.d.ts +17 -0
- package/layout/designer/lib/{components → property-viewer}/widget-property-viewer.component.d.ts +12 -12
- package/layout/designer/lib/widget-designer-renderer.component.d.ts +38 -0
- package/layout/designer/lib/widget-picker/widget-picker.component.d.ts +9 -0
- package/layout/entity/lib/widgets/lookup-widget/index.d.ts +0 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.d.ts +2 -2
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +9 -9
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.d.ts +2 -2
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.d.ts +2 -2
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +5 -5
- package/package.json +7 -7
- package/widgets/lib/properties/editors.props.d.ts +22 -1
- package/widgets/lib/widgets/actions/button-widget/button-widget-view.component.d.ts +8 -3
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.d.ts +4 -4
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.d.ts +6 -4
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.d.ts +5 -5
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.d.ts +10 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-view.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget.config.d.ts +2 -0
- package/widgets/lib/widgets/editors/color-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-column.component.d.ts +4 -2
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.d.ts +11 -15
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-view.component.d.ts +15 -2
- package/widgets/lib/widgets/editors/contact-widget/contact.type.d.ts +5 -0
- package/widgets/lib/widgets/editors/contact-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +7 -7
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +4 -4
- package/widgets/lib/widgets/editors/date-time-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-edit.component.d.ts +8 -7
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-view.component.d.ts +4 -4
- package/widgets/lib/widgets/editors/email-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-edit.component.d.ts +6 -5
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-view.component.d.ts +4 -4
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget.service.d.ts +1 -1
- package/widgets/lib/widgets/editors/file-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-edit.component.d.ts +3 -3
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-view.component.d.ts +3 -3
- package/widgets/lib/widgets/editors/gallery-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/large-text-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-edit.component.d.ts +7 -5
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-view.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/link-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/link-widget/link-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/link-widget/link-widget-edit.component.d.ts +9 -9
- package/widgets/lib/widgets/editors/link-widget/link-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/link-widget/link-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/link-widget/link-widget-view.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/map-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-edit.component.d.ts +5 -5
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-view.component.d.ts +6 -6
- package/widgets/lib/widgets/editors/number-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-edit.component.d.ts +8 -11
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-view.component.d.ts +5 -7
- package/widgets/lib/widgets/editors/password-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-edit.component.d.ts +4 -2
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-view.component.d.ts +6 -5
- package/widgets/lib/widgets/editors/phone-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +7 -8
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-view.component.d.ts +4 -4
- package/widgets/lib/widgets/editors/rich-text-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-popup.component.d.ts +9 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-column.component.d.ts +11 -3
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +7 -29
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-view.component.d.ts +10 -6
- package/widgets/lib/widgets/editors/select-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.d.ts +10 -7
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-view.component.d.ts +5 -5
- package/widgets/lib/widgets/editors/selection-list-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +10 -7
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-view.component.d.ts +5 -5
- package/widgets/lib/widgets/editors/signature-pad-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +4 -2
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +3 -2
- package/widgets/lib/widgets/editors/text-box-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-column.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.d.ts +7 -8
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.d.ts +3 -3
- package/widgets/lib/widgets/editors/toggle-widget/index.d.ts +0 -1
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-column.component.d.ts +3 -3
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-edit.component.d.ts +5 -2
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-filter.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-view.component.d.ts +5 -5
- package/widgets/lib/widgets/index.d.ts +1 -0
- package/widgets/lib/widgets/layout/block-widget/block-widget-designer.component.d.ts +11 -0
- package/widgets/lib/widgets/layout/block-widget/{block-widget.component.d.ts → block-widget-view.component.d.ts} +5 -3
- package/widgets/lib/widgets/layout/block-widget/index.d.ts +2 -1
- package/widgets/lib/widgets/layout/page-widget/index.d.ts +2 -0
- package/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/page-widget/page-widget-view.component.d.ts +8 -0
- package/widgets/lib/widgets/layout/page-widget/page-widget.config.d.ts +2 -0
- package/widgets/lib/widgets/layout/repeater-widget/index.d.ts +0 -2
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-designer.component.d.ts +4 -2
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-edit.component.d.ts +2 -2
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-print.component.d.ts +2 -2
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-view.component.d.ts +2 -2
- package/widgets/lib/widgets/layout/text-block-widget/index.d.ts +2 -0
- package/widgets/lib/widgets/layout/text-block-widget/text-block-widget-view.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.d.ts +2 -0
- package/esm2022/layout/designer/lib/components/widget-property-viewer.component.mjs +0 -86
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget.component.mjs +0 -34
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-filter.component.mjs +0 -20
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-D1vzPrng.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-DCE6c3Is.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-CJUV6lFi.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-T-tXqoMd.mjs.map +0 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/link-widget/link-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-designer.component.d.ts +0 -6
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-column.component.d.ts +0 -6
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-filter.component.d.ts +0 -6
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { AXFormatService } from '@acorex/core/format';
|
|
2
|
-
import {
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AXPLookupWidgetViewComponent extends
|
|
4
|
+
export declare class AXPLookupWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
5
|
+
protected textField: string;
|
|
6
|
+
protected expose: string | undefined;
|
|
7
|
+
protected entity: string;
|
|
5
8
|
protected formatService: AXFormatService;
|
|
6
9
|
protected loader: import("../../entity.config").AXPEntityDefinitionLoader;
|
|
7
10
|
private entityDef;
|
|
8
11
|
protected displayText: import("@angular/core").WritableSignal<string>;
|
|
9
12
|
protected loading: import("@angular/core").WritableSignal<boolean>;
|
|
10
13
|
protected selectedItem: import("@angular/core").WritableSignal<any>;
|
|
11
|
-
protected textField: string;
|
|
12
|
-
protected expose: string | undefined;
|
|
13
|
-
protected entity: string;
|
|
14
14
|
ngOnInit(): Promise<void>;
|
|
15
15
|
setItem(): Promise<void>;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLookupWidgetViewComponent, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.12",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"esm": "./esm2022/core/acorex-platform-core.mjs",
|
|
51
51
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
52
52
|
},
|
|
53
|
-
"./layouts": {
|
|
54
|
-
"types": "./layouts/index.d.ts",
|
|
55
|
-
"esm2022": "./esm2022/layouts/acorex-platform-layouts.mjs",
|
|
56
|
-
"esm": "./esm2022/layouts/acorex-platform-layouts.mjs",
|
|
57
|
-
"default": "./fesm2022/acorex-platform-layouts.mjs"
|
|
58
|
-
},
|
|
59
53
|
"./common": {
|
|
60
54
|
"types": "./common/index.d.ts",
|
|
61
55
|
"esm2022": "./esm2022/common/acorex-platform-common.mjs",
|
|
62
56
|
"esm": "./esm2022/common/acorex-platform-common.mjs",
|
|
63
57
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
64
58
|
},
|
|
59
|
+
"./layouts": {
|
|
60
|
+
"types": "./layouts/index.d.ts",
|
|
61
|
+
"esm2022": "./esm2022/layouts/acorex-platform-layouts.mjs",
|
|
62
|
+
"esm": "./esm2022/layouts/acorex-platform-layouts.mjs",
|
|
63
|
+
"default": "./fesm2022/acorex-platform-layouts.mjs"
|
|
64
|
+
},
|
|
65
65
|
"./mocks": {
|
|
66
66
|
"types": "./mocks/index.d.ts",
|
|
67
67
|
"esm2022": "./esm2022/mocks/acorex-platform-mocks.mjs",
|
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
import { AXPWidgetProperty } from '@acorex/platform/layout/builder';
|
|
2
2
|
export declare const AXP_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
3
3
|
export declare const AXP_NAME_PROPERTY: AXPWidgetProperty;
|
|
4
|
+
export declare const AXP_DISABLED_PROPERTY: AXPWidgetProperty;
|
|
5
|
+
export declare const AXP_PLACEHOLDER_PROPERTY: AXPWidgetProperty;
|
|
4
6
|
export declare const AXP_DATA_PATH_PROPERTY: AXPWidgetProperty;
|
|
5
|
-
export declare const
|
|
7
|
+
export declare const AXP_ALLOW_MULTIPLE_PROPERTY: AXPWidgetProperty;
|
|
6
8
|
export declare const AXP_HAS_LABEL_PROPERTY: AXPWidgetProperty;
|
|
9
|
+
export declare const AXP_HAS_ICON_PROPERTY: AXPWidgetProperty;
|
|
10
|
+
export declare const AXP_FONT_SIZE_PROPERTY: AXPWidgetProperty;
|
|
11
|
+
export declare const AXP_BG_COLOR_PROPERTY: AXPWidgetProperty;
|
|
12
|
+
export declare const AXP_HAS_CLEAR_BUTTON_PROPERTY: AXPWidgetProperty;
|
|
13
|
+
export declare const AXP_HAS_COPY_ICON_PROPERTY: AXPWidgetProperty;
|
|
14
|
+
export declare const AXP_HAS_EYE_ICON_PROPERTY: AXPWidgetProperty;
|
|
15
|
+
export declare const AXP_DOWNLOADABLE_PROPERTY: AXPWidgetProperty;
|
|
16
|
+
export declare const AXP_TRULY_TEXT_PROPERTY: AXPWidgetProperty;
|
|
17
|
+
export declare const AXP_FALSY_TEXT_PROPERTY: AXPWidgetProperty;
|
|
18
|
+
export declare const AXP_TEXT_PROPERTY: AXPWidgetProperty;
|
|
19
|
+
export declare const AXP_VALUE_FIELD_PROPERTY: AXPWidgetProperty;
|
|
20
|
+
export declare const AXP_TEXT_FIELD_PROPERTY: AXPWidgetProperty;
|
|
21
|
+
export declare const AXP_DESCRIPTION_PROPERTY: AXPWidgetProperty;
|
|
22
|
+
export declare const AXP_STYLE_COLOR_PROPERTY: AXPWidgetProperty;
|
|
23
|
+
export declare const AXP_STYLE_LOOK_PROPERTY: AXPWidgetProperty;
|
|
24
|
+
export declare const AXP_DATE_FROMAT_PROPERTY: AXPWidgetProperty;
|
|
25
|
+
export declare function booleanDefaultProperty(): AXPWidgetProperty;
|
|
26
|
+
export declare function plainTextDefaultProperty(): AXPWidgetProperty;
|
|
27
|
+
export declare const AXP_THEME_PROPERTY: AXPWidgetProperty;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
import { AXClickEvent } from '@acorex/components/common';
|
|
2
|
-
import { AXPLayoutElementAPI,
|
|
1
|
+
import { AXClickEvent, AXStyleColorType, AXStyleLookType } from '@acorex/components/common';
|
|
2
|
+
import { AXPLayoutElementAPI, AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import { EventEmitter } from '@angular/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AXPButtonWidgetViewComponent extends
|
|
5
|
+
export declare class AXPButtonWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
6
|
+
protected disabled: import("@angular/core").Signal<boolean>;
|
|
7
|
+
protected color: import("@angular/core").Signal<AXStyleColorType>;
|
|
8
|
+
protected look: import("@angular/core").Signal<AXStyleLookType>;
|
|
9
|
+
protected text: import("@angular/core").Signal<string>;
|
|
10
|
+
protected loading: import("@angular/core").Signal<boolean>;
|
|
6
11
|
onClick: EventEmitter<AXClickEvent>;
|
|
7
12
|
protected handleClick(e: AXClickEvent): void;
|
|
8
13
|
api(): AXPLayoutElementAPI;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPCheckBoxWidgetColumnComponent extends
|
|
3
|
+
export declare class AXPCheckBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
4
4
|
protected negative: boolean;
|
|
5
|
-
protected trulyText:
|
|
6
|
-
protected falsyText:
|
|
5
|
+
protected trulyText: string;
|
|
6
|
+
protected falsyText: string;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCheckBoxWidgetColumnComponent, never>;
|
|
8
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPCheckBoxWidgetColumnComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { AXValueChangedEvent } from '@acorex/components/common';
|
|
2
2
|
import { AXValidationService } from '@acorex/core/validation';
|
|
3
|
-
import {
|
|
3
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AXPCheckBoxWidgetEditComponent extends
|
|
5
|
+
export declare class AXPCheckBoxWidgetEditComponent extends AXPWidgetComponent<boolean | null> {
|
|
6
|
+
protected negative: import("@angular/core").Signal<boolean>;
|
|
7
|
+
protected trulyText: import("@angular/core").Signal<boolean>;
|
|
8
|
+
protected falsyText: import("@angular/core").Signal<boolean>;
|
|
9
|
+
protected disabled: import("@angular/core").Signal<boolean>;
|
|
6
10
|
protected validationService: AXValidationService;
|
|
7
|
-
protected multiple: boolean;
|
|
8
11
|
protected validationMessage?: string | null;
|
|
9
|
-
disabled: boolean;
|
|
10
12
|
protected handleValueChange(e: AXValueChangedEvent): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCheckBoxWidgetEditComponent, never>;
|
|
12
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPCheckBoxWidgetEditComponent, "axp-checkbox-widget-edit", never, {}, {}, never, never, true, never>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPCheckBoxWidgetViewComponent extends
|
|
4
|
-
protected negative: boolean
|
|
5
|
-
protected trulyText: boolean
|
|
6
|
-
protected falsyText: boolean
|
|
3
|
+
export declare class AXPCheckBoxWidgetViewComponent extends AXPWidgetComponent<boolean | null> {
|
|
4
|
+
protected negative: import("@angular/core").Signal<boolean>;
|
|
5
|
+
protected trulyText: import("@angular/core").Signal<boolean>;
|
|
6
|
+
protected falsyText: import("@angular/core").Signal<boolean>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCheckBoxWidgetViewComponent, never>;
|
|
8
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPCheckBoxWidgetViewComponent, "axp-checkbox-widget-view", never, {}, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPColorBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPColorBoxWidgetColumnComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPColorBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AXPValidationRules } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXPColorBoxWidgetEditComponent extends AXPWidgetComponent<string> {
|
|
5
|
+
protected disabled: import("@angular/core").Signal<boolean>;
|
|
6
|
+
protected hasClearButton: import("@angular/core").Signal<boolean>;
|
|
7
|
+
protected validationRules: import("@angular/core").Signal<AXPValidationRules>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPColorBoxWidgetEditComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPColorBoxWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPColorBoxWidgetFilterComponent extends AXPWidgetComponent<any> {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPColorBoxWidgetFilterComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPColorBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPColorBoxWidgetPrintComponent extends AXPWidgetComponent<any> {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPColorBoxWidgetPrintComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPColorBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AXPColorBoxWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPColorBoxWidgetViewComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPColorBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './color-box-widget-view.component';
|
|
2
|
+
export * from './color-box-widget-edit.component';
|
|
3
|
+
export * from './color-box-widget-filter.component';
|
|
4
|
+
export * from './color-box-widget-column.component';
|
|
5
|
+
export * from './color-box-widget-print.component';
|
|
6
|
+
export * from './color-box-widget.config';
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPContactWidgetColumnComponent extends
|
|
3
|
+
export declare class AXPContactWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
4
|
+
protected getText(seperator: 'line' | 'comma'): any;
|
|
5
|
+
private itemToValue;
|
|
4
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContactWidgetColumnComponent, never>;
|
|
5
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPContactWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
8
|
}
|
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { AXDataSource, AXValueChangedEvent } from '@acorex/components/common';
|
|
2
2
|
import { AXValidationService } from '@acorex/core/validation';
|
|
3
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
4
|
-
import { Signal } from '@angular/core';
|
|
5
3
|
import { AXPValidationRules } from '@acorex/platform/core';
|
|
4
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
5
|
+
import { Signal } from '@angular/core';
|
|
6
|
+
import { AXPContactDataType } from './contact.type';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AXPContactWidgetEditComponent extends
|
|
8
|
-
protected
|
|
9
|
-
protected
|
|
10
|
-
protected
|
|
11
|
-
protected
|
|
12
|
-
protected hasIcon: boolean
|
|
8
|
+
export declare class AXPContactWidgetEditComponent extends AXPWidgetComponent<any> {
|
|
9
|
+
protected type: Signal<"link" | "phone" | "email">;
|
|
10
|
+
protected labelList: Signal<string[]>;
|
|
11
|
+
protected hasLabel: Signal<boolean>;
|
|
12
|
+
protected multiple: Signal<boolean>;
|
|
13
|
+
protected hasIcon: Signal<boolean>;
|
|
14
|
+
protected disabled: Signal<boolean>;
|
|
13
15
|
private popup;
|
|
14
16
|
protected dataSource: AXDataSource<string | undefined>;
|
|
15
17
|
protected internalValue: Signal<AXPContactDataType[]>;
|
|
16
18
|
protected addItem(): void;
|
|
17
19
|
protected deleteItem(deletedIndex: number): void;
|
|
18
20
|
protected handleValueChange(e: AXValueChangedEvent, selectedIndex: number): Promise<void>;
|
|
19
|
-
protected generateClasses(element: 'value' | '
|
|
21
|
+
protected generateClasses(element: 'value' | 'label'): string | any;
|
|
20
22
|
protected validationService: AXValidationService;
|
|
21
23
|
private _validationRules;
|
|
22
24
|
get validationRules(): AXPValidationRules;
|
|
@@ -28,9 +30,3 @@ export declare class AXPContactWidgetEditComponent extends AXPWidgetBase<any> {
|
|
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContactWidgetEditComponent, never>;
|
|
29
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPContactWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
30
32
|
}
|
|
31
|
-
interface AXPContactDataType {
|
|
32
|
-
value: string;
|
|
33
|
-
lable?: string;
|
|
34
|
-
icon?: string;
|
|
35
|
-
}
|
|
36
|
-
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPContactWidgetFilterComponent extends
|
|
3
|
+
export declare class AXPContactWidgetFilterComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContactWidgetFilterComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPContactWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPContactWidgetPrintComponent extends
|
|
3
|
+
export declare class AXPContactWidgetPrintComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContactWidgetPrintComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPContactWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPClipBoardService } from '@acorex/platform/common';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { Signal } from '@angular/core';
|
|
4
|
+
import { AXPContactDataType } from './contact.type';
|
|
2
5
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPContactWidgetViewComponent extends
|
|
6
|
+
export declare class AXPContactWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
7
|
+
protected type: Signal<"link" | "phone" | "email">;
|
|
8
|
+
protected labelList: Signal<string[]>;
|
|
9
|
+
protected hasLabel: Signal<boolean>;
|
|
10
|
+
protected multiple: Signal<boolean>;
|
|
11
|
+
protected hasIcon: Signal<boolean>;
|
|
12
|
+
protected internalValue: Signal<AXPContactDataType[]>;
|
|
13
|
+
protected clipboard: AXPClipBoardService;
|
|
14
|
+
protected chooseIcon: () => string;
|
|
15
|
+
private valueToArray;
|
|
16
|
+
private itemToArray;
|
|
4
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPContactWidgetViewComponent, never>;
|
|
5
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPContactWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
19
|
}
|
|
@@ -3,5 +3,4 @@ export * from './contact-widget-edit.component';
|
|
|
3
3
|
export * from './contact-widget-filter.component';
|
|
4
4
|
export * from './contact-widget-column.component';
|
|
5
5
|
export * from './contact-widget-print.component';
|
|
6
|
-
export * from './contact-widget-designer.component';
|
|
7
6
|
export * from './contact-widget.config';
|
package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import { Signal } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AXPDateTimeBoxWidgetColumnComponent extends
|
|
4
|
+
export declare class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
5
5
|
private formatter;
|
|
6
6
|
protected convertedValue: Signal<string | null>;
|
|
7
7
|
protected multiple: boolean;
|
package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { AXValueChangedEvent } from '@acorex/components/common';
|
|
2
2
|
import { AXValidationService } from '@acorex/core/validation';
|
|
3
3
|
import { AXPValidationRules } from '@acorex/platform/core';
|
|
4
|
-
import {
|
|
4
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
5
5
|
import { Signal } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AXPDateTimeBoxWidgetEditComponent extends
|
|
7
|
+
export declare class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent<any> {
|
|
8
8
|
protected validationService: AXValidationService;
|
|
9
|
-
protected multiple: boolean;
|
|
10
9
|
protected validationMessage?: string | null;
|
|
11
|
-
protected
|
|
12
|
-
protected clearButton: boolean
|
|
13
|
-
protected format:
|
|
10
|
+
protected multiple: Signal<boolean>;
|
|
11
|
+
protected clearButton: Signal<boolean>;
|
|
12
|
+
protected format: Signal<"date" | "datetime" | "time">;
|
|
13
|
+
protected disabled: Signal<boolean>;
|
|
14
14
|
protected internalValue: Signal<string[]>;
|
|
15
15
|
private _validationRules;
|
|
16
16
|
get validationRules(): AXPValidationRules;
|
|
17
17
|
set validationRules(v: AXPValidationRules);
|
|
18
18
|
protected handleValueChange(e: AXValueChangedEvent, i: number): void;
|
|
19
|
-
protected calendarFormat
|
|
19
|
+
protected calendarFormat: Signal<"dd/MM/yyyy" | "HH:mm" | "dd/MM/yyyy HH:mm">;
|
|
20
20
|
protected addItem(): void;
|
|
21
21
|
protected deleteItem(i: number): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetEditComponent, never>;
|
package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPDateTimeBoxWidgetFilterComponent extends
|
|
3
|
+
export declare class AXPDateTimeBoxWidgetFilterComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetFilterComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPDateTimeBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPDateTimeBoxWidgetPrintComponent extends
|
|
3
|
+
export declare class AXPDateTimeBoxWidgetPrintComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetPrintComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPDateTimeBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPDateTimeBoxWidgetViewComponent extends
|
|
3
|
+
export declare class AXPDateTimeBoxWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
private formatter;
|
|
5
|
-
protected
|
|
6
|
-
protected
|
|
5
|
+
protected multiple: import("@angular/core").Signal<boolean>;
|
|
6
|
+
protected format: import("@angular/core").Signal<"date" | "datetime" | "time">;
|
|
7
7
|
protected internalValue: import("@angular/core").Signal<any>;
|
|
8
8
|
protected handleFormat(value: string): string;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetViewComponent, never>;
|
|
@@ -3,5 +3,4 @@ export * from './date-time-box-widget-edit.component';
|
|
|
3
3
|
export * from './date-time-box-widget-filter.component';
|
|
4
4
|
export * from './date-time-box-widget-column.component';
|
|
5
5
|
export * from './date-time-box-widget-print.component';
|
|
6
|
-
export * from './date-time-box-widget-designer.component';
|
|
7
6
|
export * from './date-time-box-widget.config';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import { Signal } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AXPEmailBoxWidgetColumnComponent extends
|
|
4
|
+
export declare class AXPEmailBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
5
5
|
protected list: Signal<{
|
|
6
6
|
value: string;
|
|
7
7
|
label: string;
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import { AXValueChangedEvent } from '@acorex/components/common';
|
|
2
2
|
import { AXValidationService } from '@acorex/core/validation';
|
|
3
3
|
import { AXPValidationRules } from '@acorex/platform/core';
|
|
4
|
-
import {
|
|
4
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
5
5
|
import { Signal } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AXPEmailBoxWidgetEditComponent extends
|
|
7
|
+
export declare class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent<any> {
|
|
8
8
|
protected validationService: AXValidationService;
|
|
9
|
-
protected multiple: boolean;
|
|
10
9
|
protected validationMessage?: string | null;
|
|
11
|
-
protected
|
|
12
|
-
protected
|
|
13
|
-
protected
|
|
14
|
-
protected
|
|
10
|
+
protected multiple: Signal<boolean>;
|
|
11
|
+
protected disabled: Signal<boolean>;
|
|
12
|
+
protected clearButton: Signal<boolean>;
|
|
13
|
+
protected placeholder: Signal<string>;
|
|
14
|
+
protected hasLabel: Signal<boolean>;
|
|
15
|
+
protected lables: Signal<string[]>;
|
|
15
16
|
protected internalValue: Signal<{
|
|
16
17
|
value: string;
|
|
17
18
|
label?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPEmailBoxWidgetFilterComponent extends
|
|
3
|
+
export declare class AXPEmailBoxWidgetFilterComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEmailBoxWidgetFilterComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPEmailBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPEmailBoxWidgetPrintComponent extends
|
|
3
|
+
export declare class AXPEmailBoxWidgetPrintComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEmailBoxWidgetPrintComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPEmailBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { AXPClipBoardService } from '@acorex/platform/common';
|
|
2
|
-
import {
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AXPEmailBoxWidgetViewComponent extends
|
|
4
|
+
export declare class AXPEmailBoxWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
5
5
|
protected clipboard: AXPClipBoardService;
|
|
6
|
-
protected multiple: boolean
|
|
7
|
-
protected hasLabel: boolean
|
|
6
|
+
protected multiple: import("@angular/core").Signal<boolean>;
|
|
7
|
+
protected hasLabel: import("@angular/core").Signal<boolean>;
|
|
8
8
|
protected internalValue: import("@angular/core").Signal<any>;
|
|
9
9
|
private extractItem;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEmailBoxWidgetViewComponent, never>;
|
|
@@ -3,5 +3,4 @@ export * from './email-box-widget-edit.component';
|
|
|
3
3
|
export * from './email-box-widget-filter.component';
|
|
4
4
|
export * from './email-box-widget-column.component';
|
|
5
5
|
export * from './email-box-widget-print.component';
|
|
6
|
-
export * from './email-box-widget-designer.component';
|
|
7
6
|
export * from './email-box-widget.config';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPFileBoxWidgetColumnComponent extends
|
|
3
|
+
export declare class AXPFileBoxWidgetColumnComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPFileBoxWidgetColumnComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPFileBoxWidgetColumnComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { AXUploaderChangedEvent, AXUploaderFileCompleteEvent, AXUploaderFilesCompleteEvent } from '@acorex/components/uploader';
|
|
2
|
-
import {
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import { Signal } from '@angular/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AXPFileBoxWidgetEditComponent extends
|
|
5
|
+
export declare class AXPFileBoxWidgetEditComponent extends AXPWidgetComponent<any> {
|
|
6
6
|
private fileService;
|
|
7
|
-
protected multiple: boolean
|
|
8
|
-
protected accept: string
|
|
9
|
-
protected description: string
|
|
7
|
+
protected multiple: Signal<boolean>;
|
|
8
|
+
protected accept: Signal<string>;
|
|
9
|
+
protected description: Signal<string>;
|
|
10
|
+
protected metaData: Signal<string>;
|
|
10
11
|
protected internalValue: Signal<{
|
|
11
12
|
value?: string | null;
|
|
12
13
|
label?: string | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPFileBoxWidgetFilterComponent extends
|
|
3
|
+
export declare class AXPFileBoxWidgetFilterComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPFileBoxWidgetFilterComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPFileBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPFileBoxWidgetPrintComponent extends
|
|
3
|
+
export declare class AXPFileBoxWidgetPrintComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPFileBoxWidgetPrintComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPFileBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import { Signal } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
interface AXPFile {
|
|
@@ -7,12 +7,12 @@ interface AXPFile {
|
|
|
7
7
|
value: string;
|
|
8
8
|
size: string;
|
|
9
9
|
}
|
|
10
|
-
export declare class AXPFileBoxWidgetViewComponent extends
|
|
10
|
+
export declare class AXPFileBoxWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
11
11
|
private fileService;
|
|
12
12
|
private loadingDialog;
|
|
13
13
|
private translateService;
|
|
14
|
-
protected multiple: boolean
|
|
15
|
-
protected downloadable: boolean
|
|
14
|
+
protected multiple: Signal<boolean>;
|
|
15
|
+
protected downloadable: Signal<boolean>;
|
|
16
16
|
protected internalValue: Signal<AXPFile[]>;
|
|
17
17
|
private downloadSubscription;
|
|
18
18
|
protected handleDownload(item: AXPFile): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AXUploadRequest } from '@acorex/components/uploader';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare abstract class AXPFileManagementService {
|
|
4
|
-
abstract upload(requests: AXUploadRequest[]): Promise<PromiseSettledResult<{
|
|
4
|
+
abstract upload(requests: AXUploadRequest[], metaData?: any): Promise<PromiseSettledResult<{
|
|
5
5
|
result: unknown;
|
|
6
6
|
status: string;
|
|
7
7
|
}>[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AXPGalleryWidgetColumnComponent extends
|
|
3
|
+
export declare class AXPGalleryWidgetColumnComponent extends AXPWidgetComponent<any> {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPGalleryWidgetColumnComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPGalleryWidgetColumnComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|