@acorex/platform 18.0.10 → 18.0.11
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/core/index.d.ts +2 -0
- package/core/lib/types.d.ts +1 -0
- package/core/utils/countdown-timer.d.ts +12 -0
- package/core/utils/html-utils.d.ts +9 -0
- 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 +42 -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 +55 -57
- package/esm2022/layout/designer/index.mjs +7 -2
- package/esm2022/layout/designer/lib/board/board.component.mjs +68 -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 +77 -0
- package/esm2022/layout/designer/lib/designer.module.mjs +6 -26
- package/esm2022/layout/designer/lib/designer.service.mjs +370 -0
- package/esm2022/layout/designer/lib/outline/outline.component.mjs +56 -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/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 +355 -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 +11 -7
- 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 +20 -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 +54 -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 +74 -44
- 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 +20 -25
- 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 +8 -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 +3 -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 +14 -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 +16 -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 +55 -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 +27 -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 +4 -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-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 +83 -0
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +87 -85
- 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 +918 -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.mjs +4 -4
- 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-DYb6bilD.mjs +58 -0
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DYb6bilD.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 +2138 -1280
- 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 +52 -31
- package/layout/designer/index.d.ts +6 -1
- package/layout/designer/lib/board/board.component.d.ts +10 -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 +18 -0
- package/layout/designer/lib/designer.module.d.ts +1 -7
- package/layout/designer/lib/designer.service.d.ts +103 -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 +21 -1
- package/widgets/lib/widgets/actions/button-widget/button-widget-view.component.d.ts +7 -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 +12 -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 +8 -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 +8 -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-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,65 +1,389 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AX_STYLE_COLOR_TYPES } from '@acorex/components/common';
|
|
2
|
+
import { AXP_BEHAVIOR_PROPERTY_GROUP, AXP_DATA_PROPERTY_GROUP, AXP_STYLING_PROPERTY_GROUP, AXP_WIDGET_PROPERTY_GROUP } from './groups';
|
|
2
3
|
export const AXP_VALIDATION_PROPERTY = {
|
|
3
4
|
name: 'validationRules',
|
|
4
|
-
title:
|
|
5
|
+
title: 'Validation Rules',
|
|
5
6
|
group: AXP_DATA_PROPERTY_GROUP,
|
|
6
7
|
schema: {
|
|
7
|
-
dataType:
|
|
8
|
-
defaultValue: []
|
|
9
|
-
|
|
8
|
+
dataType: 'array',
|
|
9
|
+
defaultValue: [],
|
|
10
|
+
interface: {
|
|
11
|
+
type: 'text-box',
|
|
12
|
+
path: 'validationRules',
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
visible: true,
|
|
10
16
|
};
|
|
11
17
|
export const AXP_NAME_PROPERTY = {
|
|
12
18
|
name: 'name',
|
|
13
|
-
title:
|
|
19
|
+
title: 'Name',
|
|
14
20
|
group: AXP_WIDGET_PROPERTY_GROUP,
|
|
15
21
|
schema: {
|
|
16
|
-
dataType:
|
|
22
|
+
dataType: 'string',
|
|
17
23
|
interface: {
|
|
18
24
|
name: 'name',
|
|
19
|
-
|
|
20
|
-
type: 'text-box'
|
|
21
|
-
}
|
|
22
|
-
}
|
|
25
|
+
path: 'name',
|
|
26
|
+
type: 'text-box',
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
visible: true,
|
|
30
|
+
};
|
|
31
|
+
export const AXP_DISABLED_PROPERTY = {
|
|
32
|
+
name: 'disabled',
|
|
33
|
+
title: 'Disabled',
|
|
34
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
35
|
+
schema: {
|
|
36
|
+
dataType: 'boolean',
|
|
37
|
+
interface: {
|
|
38
|
+
name: 'disabled',
|
|
39
|
+
path: 'options.disabled',
|
|
40
|
+
type: 'toggle',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
visible: true,
|
|
44
|
+
};
|
|
45
|
+
export const AXP_PLACEHOLDER_PROPERTY = {
|
|
46
|
+
name: 'placeholder',
|
|
47
|
+
title: 'Placeholder',
|
|
48
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
49
|
+
schema: {
|
|
50
|
+
dataType: 'string',
|
|
51
|
+
interface: {
|
|
52
|
+
name: 'placeholder',
|
|
53
|
+
path: 'options.placeholder',
|
|
54
|
+
type: 'text-box',
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
visible: true,
|
|
23
58
|
};
|
|
24
59
|
export const AXP_DATA_PATH_PROPERTY = {
|
|
25
60
|
name: 'path',
|
|
26
|
-
title:
|
|
61
|
+
title: 'Data Path',
|
|
27
62
|
group: AXP_DATA_PROPERTY_GROUP,
|
|
28
63
|
schema: {
|
|
29
|
-
dataType:
|
|
64
|
+
dataType: 'string',
|
|
30
65
|
interface: {
|
|
31
66
|
name: 'path',
|
|
32
|
-
|
|
33
|
-
type: 'text-box'
|
|
34
|
-
}
|
|
35
|
-
}
|
|
67
|
+
path: 'path',
|
|
68
|
+
type: 'text-box',
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
visible: true,
|
|
36
72
|
};
|
|
37
|
-
export const
|
|
73
|
+
export const AXP_ALLOW_MULTIPLE_PROPERTY = {
|
|
38
74
|
name: 'multiple',
|
|
39
|
-
title:
|
|
75
|
+
title: 'Multiple',
|
|
40
76
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
41
77
|
schema: {
|
|
42
|
-
dataType:
|
|
78
|
+
dataType: 'boolean',
|
|
43
79
|
defaultValue: false,
|
|
44
80
|
interface: {
|
|
45
81
|
name: 'multiple',
|
|
46
|
-
|
|
47
|
-
type: 'toggle'
|
|
48
|
-
}
|
|
49
|
-
}
|
|
82
|
+
path: 'options.multiple',
|
|
83
|
+
type: 'toggle',
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
visible: true,
|
|
50
87
|
};
|
|
51
88
|
export const AXP_HAS_LABEL_PROPERTY = {
|
|
52
89
|
name: 'hasLabel',
|
|
53
|
-
title:
|
|
90
|
+
title: 'Label',
|
|
54
91
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
55
92
|
schema: {
|
|
56
|
-
dataType:
|
|
93
|
+
dataType: 'boolean',
|
|
57
94
|
defaultValue: true,
|
|
58
95
|
interface: {
|
|
59
96
|
name: 'hasLabel',
|
|
60
|
-
|
|
61
|
-
type: 'toggle'
|
|
62
|
-
}
|
|
63
|
-
}
|
|
97
|
+
path: 'options.hasLabel',
|
|
98
|
+
type: 'toggle',
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
visible: true,
|
|
102
|
+
};
|
|
103
|
+
export const AXP_HAS_ICON_PROPERTY = {
|
|
104
|
+
name: 'hasIcon',
|
|
105
|
+
title: 'Icon',
|
|
106
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
107
|
+
schema: {
|
|
108
|
+
dataType: 'boolean',
|
|
109
|
+
defaultValue: true,
|
|
110
|
+
interface: {
|
|
111
|
+
name: 'hasIcon',
|
|
112
|
+
path: 'options.hasIcon',
|
|
113
|
+
type: 'toggle',
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
visible: true,
|
|
117
|
+
};
|
|
118
|
+
export const AXP_FONT_SIZE_PROPERTY = {
|
|
119
|
+
name: 'fontSize',
|
|
120
|
+
title: 'Font Size',
|
|
121
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
122
|
+
schema: {
|
|
123
|
+
dataType: 'string',
|
|
124
|
+
defaultValue: '12px',
|
|
125
|
+
interface: {
|
|
126
|
+
name: 'fontSize',
|
|
127
|
+
path: 'options.fontSize',
|
|
128
|
+
type: 'text-box',
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
visible: true,
|
|
132
|
+
};
|
|
133
|
+
export const AXP_BG_COLOR_PROPERTY = {
|
|
134
|
+
name: 'backgroundColor',
|
|
135
|
+
title: 'Background Color',
|
|
136
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
137
|
+
schema: {
|
|
138
|
+
dataType: 'string',
|
|
139
|
+
defaultValue: '#FFFFFF',
|
|
140
|
+
interface: {
|
|
141
|
+
path: 'options.backgroundColor',
|
|
142
|
+
type: 'color-box',
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
visible: true,
|
|
146
|
+
};
|
|
147
|
+
export const AXP_HAS_CLEAR_BUTTON_PROPERTY = {
|
|
148
|
+
name: 'hasClearButton',
|
|
149
|
+
title: 'has Clear Button',
|
|
150
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
151
|
+
schema: {
|
|
152
|
+
dataType: 'boolean',
|
|
153
|
+
interface: {
|
|
154
|
+
name: 'hasClearButton',
|
|
155
|
+
path: 'options.hasClearButton',
|
|
156
|
+
type: 'toggle',
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
visible: true,
|
|
160
|
+
};
|
|
161
|
+
export const AXP_HAS_COPY_ICON_PROPERTY = {
|
|
162
|
+
name: 'hasCopyIcon',
|
|
163
|
+
title: 'has Copy Icon',
|
|
164
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
165
|
+
schema: {
|
|
166
|
+
dataType: 'boolean',
|
|
167
|
+
interface: {
|
|
168
|
+
name: 'hasCopyIcon',
|
|
169
|
+
path: 'options.hasCopyIcon',
|
|
170
|
+
type: 'toggle',
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
visible: true,
|
|
174
|
+
};
|
|
175
|
+
export const AXP_HAS_EYE_ICON_PROPERTY = {
|
|
176
|
+
name: 'hasEyeIcon',
|
|
177
|
+
title: 'has Eye Icon',
|
|
178
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
179
|
+
schema: {
|
|
180
|
+
dataType: 'boolean',
|
|
181
|
+
interface: {
|
|
182
|
+
name: 'hasEyeIcon',
|
|
183
|
+
path: 'options.hasEyeIcon',
|
|
184
|
+
type: 'toggle',
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
visible: true,
|
|
188
|
+
};
|
|
189
|
+
export const AXP_DOWNLOADABLE_PROPERTY = {
|
|
190
|
+
name: 'downloadable',
|
|
191
|
+
title: 'Downloadable',
|
|
192
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
193
|
+
schema: {
|
|
194
|
+
dataType: 'boolean',
|
|
195
|
+
interface: {
|
|
196
|
+
name: 'downloadable',
|
|
197
|
+
path: 'options.downloadable',
|
|
198
|
+
type: 'toggle',
|
|
199
|
+
},
|
|
200
|
+
},
|
|
201
|
+
visible: true,
|
|
202
|
+
};
|
|
203
|
+
export const AXP_TRULY_TEXT_PROPERTY = {
|
|
204
|
+
name: 'trulyText',
|
|
205
|
+
title: 'Truly Text',
|
|
206
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
207
|
+
schema: {
|
|
208
|
+
dataType: 'string',
|
|
209
|
+
interface: {
|
|
210
|
+
name: 'trulyText',
|
|
211
|
+
path: 'options.trulyText',
|
|
212
|
+
type: 'text-box',
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
visible: true,
|
|
216
|
+
};
|
|
217
|
+
export const AXP_FALSY_TEXT_PROPERTY = {
|
|
218
|
+
name: 'falsyText',
|
|
219
|
+
title: 'Falsy Text',
|
|
220
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
221
|
+
schema: {
|
|
222
|
+
dataType: 'string',
|
|
223
|
+
interface: {
|
|
224
|
+
name: 'falsyText',
|
|
225
|
+
path: 'options.falsyText',
|
|
226
|
+
type: 'text-box',
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
visible: true,
|
|
230
|
+
};
|
|
231
|
+
export const AXP_TEXT_PROPERTY = {
|
|
232
|
+
name: 'text',
|
|
233
|
+
title: 'Text',
|
|
234
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
235
|
+
schema: {
|
|
236
|
+
dataType: 'string',
|
|
237
|
+
interface: {
|
|
238
|
+
name: 'text',
|
|
239
|
+
path: 'options.text',
|
|
240
|
+
type: 'text-box',
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
visible: true,
|
|
244
|
+
};
|
|
245
|
+
export const AXP_VALUE_FIELD_PROPERTY = {
|
|
246
|
+
name: 'valueField',
|
|
247
|
+
title: 'Value Field',
|
|
248
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
249
|
+
schema: {
|
|
250
|
+
dataType: 'string',
|
|
251
|
+
interface: {
|
|
252
|
+
name: 'valueField',
|
|
253
|
+
path: 'options.valueField',
|
|
254
|
+
type: 'text-box',
|
|
255
|
+
},
|
|
256
|
+
},
|
|
257
|
+
visible: true,
|
|
258
|
+
};
|
|
259
|
+
export const AXP_TEXT_FIELD_PROPERTY = {
|
|
260
|
+
name: 'textField',
|
|
261
|
+
title: 'Text Field',
|
|
262
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
263
|
+
schema: {
|
|
264
|
+
dataType: 'string',
|
|
265
|
+
interface: {
|
|
266
|
+
name: 'textField',
|
|
267
|
+
path: 'options.textField',
|
|
268
|
+
type: 'text-box',
|
|
269
|
+
},
|
|
270
|
+
},
|
|
271
|
+
visible: true,
|
|
272
|
+
};
|
|
273
|
+
export const AXP_DESCRIPTION_PROPERTY = {
|
|
274
|
+
name: 'description',
|
|
275
|
+
title: 'Description',
|
|
276
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
277
|
+
schema: {
|
|
278
|
+
dataType: 'string',
|
|
279
|
+
interface: {
|
|
280
|
+
name: 'description',
|
|
281
|
+
path: 'options.description',
|
|
282
|
+
type: 'text-box',
|
|
283
|
+
},
|
|
284
|
+
},
|
|
285
|
+
visible: true,
|
|
286
|
+
};
|
|
287
|
+
export const AXP_STYLE_COLOR_PROPERTY = {
|
|
288
|
+
name: 'color',
|
|
289
|
+
title: 'Color',
|
|
290
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
291
|
+
schema: {
|
|
292
|
+
dataType: 'string',
|
|
293
|
+
defaultValue: { id: 'primary' },
|
|
294
|
+
interface: {
|
|
295
|
+
name: 'color',
|
|
296
|
+
path: 'options.color',
|
|
297
|
+
type: 'select-box',
|
|
298
|
+
options: {
|
|
299
|
+
dataSource: AX_STYLE_COLOR_TYPES.map((i) => ({ id: i, title: i })),
|
|
300
|
+
},
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
visible: true,
|
|
304
|
+
};
|
|
305
|
+
export const AXP_STYLE_LOOK_PROPERTY = {
|
|
306
|
+
name: 'look',
|
|
307
|
+
title: 'Look',
|
|
308
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
309
|
+
schema: {
|
|
310
|
+
dataType: 'string',
|
|
311
|
+
defaultValue: { id: 'solid' },
|
|
312
|
+
interface: {
|
|
313
|
+
name: 'look',
|
|
314
|
+
path: 'options.look',
|
|
315
|
+
type: 'select-box',
|
|
316
|
+
options: {
|
|
317
|
+
dataSource: ['solid', 'blank', 'outline', 'twotone', 'flat', 'fill', 'none'].map((i) => ({ id: i, title: i })), //TODO remove this array and use AX_STYLE_LOOK_TYPES instead
|
|
318
|
+
},
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
visible: true,
|
|
322
|
+
};
|
|
323
|
+
export const AXP_DATE_FROMAT_PROPERTY = {
|
|
324
|
+
name: 'format',
|
|
325
|
+
title: 'Format',
|
|
326
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
327
|
+
schema: {
|
|
328
|
+
dataType: 'string',
|
|
329
|
+
defaultValue: { id: 'date', title: 'Date' },
|
|
330
|
+
interface: {
|
|
331
|
+
name: 'format',
|
|
332
|
+
path: 'options.format',
|
|
333
|
+
type: 'select-box',
|
|
334
|
+
options: {
|
|
335
|
+
dataSource: [
|
|
336
|
+
{ id: 'date', title: 'Date' },
|
|
337
|
+
{ id: 'datetime', title: 'DateTime' },
|
|
338
|
+
{ id: 'time', title: 'Time' },
|
|
339
|
+
],
|
|
340
|
+
},
|
|
341
|
+
},
|
|
342
|
+
},
|
|
343
|
+
visible: true,
|
|
64
344
|
};
|
|
65
|
-
|
|
345
|
+
export function booleanDefaultProperty() {
|
|
346
|
+
return {
|
|
347
|
+
name: 'defaultValue',
|
|
348
|
+
title: 'Default Value',
|
|
349
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
350
|
+
schema: {
|
|
351
|
+
dataType: 'boolean',
|
|
352
|
+
interface: {
|
|
353
|
+
defaultValue: true,
|
|
354
|
+
name: 'defaultValue',
|
|
355
|
+
path: 'defaultValue',
|
|
356
|
+
type: 'toggle',
|
|
357
|
+
},
|
|
358
|
+
// interface: {
|
|
359
|
+
// name: 'defaultValue',
|
|
360
|
+
// path: 'defaultValue',
|
|
361
|
+
// type: 'select-box',
|
|
362
|
+
// options: {
|
|
363
|
+
// dataSource: [
|
|
364
|
+
// { id: 0, title: 'False' },
|
|
365
|
+
// { id: 1, title: 'True' },
|
|
366
|
+
// ],
|
|
367
|
+
// },
|
|
368
|
+
// },
|
|
369
|
+
},
|
|
370
|
+
visible: true,
|
|
371
|
+
};
|
|
372
|
+
}
|
|
373
|
+
export function plainTextDefaultProperty() {
|
|
374
|
+
return {
|
|
375
|
+
name: 'defaultValue',
|
|
376
|
+
title: 'Default Value',
|
|
377
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
378
|
+
schema: {
|
|
379
|
+
dataType: 'string',
|
|
380
|
+
interface: {
|
|
381
|
+
name: 'defaultValue',
|
|
382
|
+
path: 'defaultValue',
|
|
383
|
+
type: 'text-box',
|
|
384
|
+
},
|
|
385
|
+
},
|
|
386
|
+
visible: true,
|
|
387
|
+
};
|
|
388
|
+
}
|
|
389
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdG9ycy5wcm9wcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3Byb3BlcnRpZXMvZWRpdG9ycy5wcm9wcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUVqRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsdUJBQXVCLEVBQUUsMEJBQTBCLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFFdkksTUFBTSxDQUFDLE1BQU0sdUJBQXVCLEdBQXNCO0lBQ3hELElBQUksRUFBRSxpQkFBaUI7SUFDdkIsS0FBSyxFQUFFLGtCQUFrQjtJQUN6QixLQUFLLEVBQUUsdUJBQXVCO0lBQzlCLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxPQUFPO1FBQ2pCLFlBQVksRUFBRSxFQUFFO1FBQ2hCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxVQUFVO1lBQ2hCLElBQUksRUFBRSxpQkFBaUI7U0FDeEI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUFzQjtJQUNsRCxJQUFJLEVBQUUsTUFBTTtJQUNaLEtBQUssRUFBRSxNQUFNO0lBQ2IsS0FBSyxFQUFFLHlCQUF5QjtJQUNoQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsTUFBTTtZQUNaLElBQUksRUFBRSxNQUFNO1lBQ1osSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFzQjtJQUN0RCxJQUFJLEVBQUUsVUFBVTtJQUNoQixLQUFLLEVBQUUsVUFBVTtJQUNqQixLQUFLLEVBQUUsMkJBQTJC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QjtZQUMxQix3QkFBd0I7WUFDeEIsZUFBZTtZQUNmLG9CQUFvQjtZQUNwQixtQ0FBbUM7WUFDbkMsa0NBQWtDO1lBQ2xDLFNBQVM7WUFDVCxPQUFPO1lBQ1AsS0FBSztTQUNOO1FBQ0QsT0FBTyxFQUFFLElBQUk7S0FDZCxDQUFDO0FBQ0osQ0FBQztBQUVELE1BQU0sVUFBVSx3QkFBd0I7SUFDdEMsT0FBTztRQUNMLElBQUksRUFBRSxjQUFjO1FBQ3BCLEtBQUssRUFBRSxlQUFlO1FBQ3RCLEtBQUssRUFBRSx1QkFBdUI7UUFDOUIsTUFBTSxFQUFFO1lBQ04sUUFBUSxFQUFFLFFBQVE7WUFDbEIsU0FBUyxFQUFFO2dCQUNULElBQUksRUFBRSxjQUFjO2dCQUNwQixJQUFJLEVBQUUsY0FBYztnQkFDcEIsSUFBSSxFQUFFLFVBQVU7YUFDakI7U0FDRjtRQUNELE9BQU8sRUFBRSxJQUFJO0tBQ2QsQ0FBQztBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWF9TVFlMRV9DT0xPUl9UWVBFUyB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jb21tb24nO1xuaW1wb3J0IHsgQVhQV2lkZ2V0UHJvcGVydHkgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCwgQVhQX0RBVEFfUFJPUEVSVFlfR1JPVVAsIEFYUF9TVFlMSU5HX1BST1BFUlRZX0dST1VQLCBBWFBfV0lER0VUX1BST1BFUlRZX0dST1VQIH0gZnJvbSAnLi9ncm91cHMnO1xuXG5leHBvcnQgY29uc3QgQVhQX1ZBTElEQVRJT05fUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAndmFsaWRhdGlvblJ1bGVzJyxcbiAgdGl0bGU6ICdWYWxpZGF0aW9uIFJ1bGVzJyxcbiAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2FycmF5JyxcbiAgICBkZWZhdWx0VmFsdWU6IFtdLFxuICAgIGludGVyZmFjZToge1xuICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICAgIHBhdGg6ICd2YWxpZGF0aW9uUnVsZXMnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX05BTUVfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnbmFtZScsXG4gIHRpdGxlOiAnTmFtZScsXG4gIGdyb3VwOiBBWFBfV0lER0VUX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnbmFtZScsXG4gICAgICBwYXRoOiAnbmFtZScsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0RJU0FCTEVEX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2Rpc2FibGVkJyxcbiAgdGl0bGU6ICdEaXNhYmxlZCcsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnYm9vbGVhbicsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnZGlzYWJsZWQnLFxuICAgICAgcGF0aDogJ29wdGlvbnMuZGlzYWJsZWQnLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfUExBQ0VIT0xERVJfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAncGxhY2Vob2xkZXInLFxuICB0aXRsZTogJ1BsYWNlaG9sZGVyJyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ3BsYWNlaG9sZGVyJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLnBsYWNlaG9sZGVyJyxcbiAgICAgIHR5cGU6ICd0ZXh0LWJveCcsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfREFUQV9QQVRIX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ3BhdGgnLFxuICB0aXRsZTogJ0RhdGEgUGF0aCcsXG4gIGdyb3VwOiBBWFBfREFUQV9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ3BhdGgnLFxuICAgICAgcGF0aDogJ3BhdGgnLFxuICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IEFYUF9BTExPV19NVUxUSVBMRV9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICdtdWx0aXBsZScsXG4gIHRpdGxlOiAnTXVsdGlwbGUnLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGRlZmF1bHRWYWx1ZTogZmFsc2UsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnbXVsdGlwbGUnLFxuICAgICAgcGF0aDogJ29wdGlvbnMubXVsdGlwbGUnLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfSEFTX0xBQkVMX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0xhYmVsJyxcbiAgdGl0bGU6ICdMYWJlbCcsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnYm9vbGVhbicsXG4gICAgZGVmYXVsdFZhbHVlOiB0cnVlLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ2hhc0xhYmVsJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmhhc0xhYmVsJyxcbiAgICAgIHR5cGU6ICd0b2dnbGUnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0hBU19JQ09OX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0ljb24nLFxuICB0aXRsZTogJ0ljb24nLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGRlZmF1bHRWYWx1ZTogdHJ1ZSxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdoYXNJY29uJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmhhc0ljb24nLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfRk9OVF9TSVpFX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2ZvbnRTaXplJyxcbiAgdGl0bGU6ICdGb250IFNpemUnLFxuICBncm91cDogQVhQX1NUWUxJTkdfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICBkZWZhdWx0VmFsdWU6ICcxMnB4JyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdmb250U2l6ZScsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5mb250U2l6ZScsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0JHX0NPTE9SX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2JhY2tncm91bmRDb2xvcicsXG4gIHRpdGxlOiAnQmFja2dyb3VuZCBDb2xvcicsXG4gIGdyb3VwOiBBWFBfU1RZTElOR19QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGRlZmF1bHRWYWx1ZTogJyNGRkZGRkYnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgcGF0aDogJ29wdGlvbnMuYmFja2dyb3VuZENvbG9yJyxcbiAgICAgIHR5cGU6ICdjb2xvci1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0hBU19DTEVBUl9CVVRUT05fUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnaGFzQ2xlYXJCdXR0b24nLFxuICB0aXRsZTogJ2hhcyBDbGVhciBCdXR0b24nLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ2hhc0NsZWFyQnV0dG9uJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmhhc0NsZWFyQnV0dG9uJyxcbiAgICAgIHR5cGU6ICd0b2dnbGUnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9IQVNfQ09QWV9JQ09OX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0NvcHlJY29uJyxcbiAgdGl0bGU6ICdoYXMgQ29weSBJY29uJyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdib29sZWFuJyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdoYXNDb3B5SWNvbicsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5oYXNDb3B5SWNvbicsXG4gICAgICB0eXBlOiAndG9nZ2xlJyxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcbmV4cG9ydCBjb25zdCBBWFBfSEFTX0VZRV9JQ09OX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0V5ZUljb24nLFxuICB0aXRsZTogJ2hhcyBFeWUgSWNvbicsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnYm9vbGVhbicsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnaGFzRXllSWNvbicsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5oYXNFeWVJY29uJyxcbiAgICAgIHR5cGU6ICd0b2dnbGUnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9ET1dOTE9BREFCTEVfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnZG93bmxvYWRhYmxlJyxcbiAgdGl0bGU6ICdEb3dubG9hZGFibGUnLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ2Rvd25sb2FkYWJsZScsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5kb3dubG9hZGFibGUnLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfVFJVTFlfVEVYVF9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICd0cnVseVRleHQnLFxuICB0aXRsZTogJ1RydWx5IFRleHQnLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAndHJ1bHlUZXh0JyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLnRydWx5VGV4dCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9GQUxTWV9URVhUX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2ZhbHN5VGV4dCcsXG4gIHRpdGxlOiAnRmFsc3kgVGV4dCcsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdmYWxzeVRleHQnLFxuICAgICAgcGF0aDogJ29wdGlvbnMuZmFsc3lUZXh0JyxcbiAgICAgIHR5cGU6ICd0ZXh0LWJveCcsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfVEVYVF9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICd0ZXh0JyxcbiAgdGl0bGU6ICdUZXh0JyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ3RleHQnLFxuICAgICAgcGF0aDogJ29wdGlvbnMudGV4dCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX1ZBTFVFX0ZJRUxEX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ3ZhbHVlRmllbGQnLFxuICB0aXRsZTogJ1ZhbHVlIEZpZWxkJyxcbiAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAndmFsdWVGaWVsZCcsXG4gICAgICBwYXRoOiAnb3B0aW9ucy52YWx1ZUZpZWxkJyxcbiAgICAgIHR5cGU6ICd0ZXh0LWJveCcsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5leHBvcnQgY29uc3QgQVhQX1RFWFRfRklFTERfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAndGV4dEZpZWxkJyxcbiAgdGl0bGU6ICdUZXh0IEZpZWxkJyxcbiAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAndGV4dEZpZWxkJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLnRleHRGaWVsZCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9ERVNDUklQVElPTl9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICdkZXNjcmlwdGlvbicsXG4gIHRpdGxlOiAnRGVzY3JpcHRpb24nLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnZGVzY3JpcHRpb24nLFxuICAgICAgcGF0aDogJ29wdGlvbnMuZGVzY3JpcHRpb24nLFxuICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IEFYUF9TVFlMRV9DT0xPUl9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICdjb2xvcicsXG4gIHRpdGxlOiAnQ29sb3InLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgZGVmYXVsdFZhbHVlOiB7IGlkOiAncHJpbWFyeScgfSxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdjb2xvcicsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5jb2xvcicsXG4gICAgICB0eXBlOiAnc2VsZWN0LWJveCcsXG4gICAgICBvcHRpb25zOiB7XG4gICAgICAgIGRhdGFTb3VyY2U6IEFYX1NUWUxFX0NPTE9SX1RZUEVTLm1hcCgoaSkgPT4gKHsgaWQ6IGksIHRpdGxlOiBpIH0pKSxcbiAgICAgIH0sXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5leHBvcnQgY29uc3QgQVhQX1NUWUxFX0xPT0tfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnbG9vaycsXG4gIHRpdGxlOiAnTG9vaycsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICBkZWZhdWx0VmFsdWU6IHsgaWQ6ICdzb2xpZCcgfSxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdsb29rJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmxvb2snLFxuICAgICAgdHlwZTogJ3NlbGVjdC1ib3gnLFxuICAgICAgb3B0aW9uczoge1xuICAgICAgICBkYXRhU291cmNlOiBbJ3NvbGlkJywgJ2JsYW5rJywgJ291dGxpbmUnLCAndHdvdG9uZScsICdmbGF0JywgJ2ZpbGwnLCAnbm9uZSddLm1hcCgoaSkgPT4gKHsgaWQ6IGksIHRpdGxlOiBpIH0pKSwgLy9UT0RPIHJlbW92ZSB0aGlzIGFycmF5IGFuZCB1c2UgQVhfU1RZTEVfTE9PS19UWVBFUyBpbnN0ZWFkXG4gICAgICB9LFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0RBVEVfRlJPTUFUX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2Zvcm1hdCcsXG4gIHRpdGxlOiAnRm9ybWF0JyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGRlZmF1bHRWYWx1ZTogeyBpZDogJ2RhdGUnLCB0aXRsZTogJ0RhdGUnIH0sXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnZm9ybWF0JyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmZvcm1hdCcsXG4gICAgICB0eXBlOiAnc2VsZWN0LWJveCcsXG4gICAgICBvcHRpb25zOiB7XG4gICAgICAgIGRhdGFTb3VyY2U6IFtcbiAgICAgICAgICB7IGlkOiAnZGF0ZScsIHRpdGxlOiAnRGF0ZScgfSxcbiAgICAgICAgICB7IGlkOiAnZGF0ZXRpbWUnLCB0aXRsZTogJ0RhdGVUaW1lJyB9LFxuICAgICAgICAgIHsgaWQ6ICd0aW1lJywgdGl0bGU6ICdUaW1lJyB9LFxuICAgICAgICBdLFxuICAgICAgfSxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcblxuZXhwb3J0IGZ1bmN0aW9uIGJvb2xlYW5EZWZhdWx0UHJvcGVydHkoKTogQVhQV2lkZ2V0UHJvcGVydHkge1xuICByZXR1cm4ge1xuICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgIHRpdGxlOiAnRGVmYXVsdCBWYWx1ZScsXG4gICAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICAgIHNjaGVtYToge1xuICAgICAgZGF0YVR5cGU6ICdib29sZWFuJyxcbiAgICAgIGludGVyZmFjZToge1xuICAgICAgICBkZWZhdWx0VmFsdWU6IHRydWUsXG4gICAgICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgICAgICBwYXRoOiAnZGVmYXVsdFZhbHVlJyxcbiAgICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgICB9LFxuICAgICAgLy8gaW50ZXJmYWNlOiB7XG4gICAgICAvLyAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgICAgLy8gICBwYXRoOiAnZGVmYXVsdFZhbHVlJyxcbiAgICAgIC8vICAgdHlwZTogJ3NlbGVjdC1ib3gnLFxuICAgICAgLy8gICBvcHRpb25zOiB7XG4gICAgICAvLyAgICAgZGF0YVNvdXJjZTogW1xuICAgICAgLy8gICAgICAgeyBpZDogMCwgdGl0bGU6ICdGYWxzZScgfSxcbiAgICAgIC8vICAgICAgIHsgaWQ6IDEsIHRpdGxlOiAnVHJ1ZScgfSxcbiAgICAgIC8vICAgICBdLFxuICAgICAgLy8gICB9LFxuICAgICAgLy8gfSxcbiAgICB9LFxuICAgIHZpc2libGU6IHRydWUsXG4gIH07XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBwbGFpblRleHREZWZhdWx0UHJvcGVydHkoKTogQVhQV2lkZ2V0UHJvcGVydHkge1xuICByZXR1cm4ge1xuICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgIHRpdGxlOiAnRGVmYXVsdCBWYWx1ZScsXG4gICAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICAgIHNjaGVtYToge1xuICAgICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgICAgaW50ZXJmYWNlOiB7XG4gICAgICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgICAgICBwYXRoOiAnZGVmYXVsdFZhbHVlJyxcbiAgICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICAgIH0sXG4gICAgfSxcbiAgICB2aXNpYmxlOiB0cnVlLFxuICB9O1xufVxuIl19
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import { AXP_STYLING_PROPERTY_GROUP } from './groups';
|
|
2
2
|
export const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
|
|
3
|
-
name:
|
|
4
|
-
title:
|
|
3
|
+
name: 'width',
|
|
4
|
+
title: 'Width',
|
|
5
5
|
group: AXP_STYLING_PROPERTY_GROUP,
|
|
6
6
|
schema: {
|
|
7
7
|
dataType: 'string',
|
|
8
|
-
defaultValue:
|
|
8
|
+
defaultValue: '200px',
|
|
9
9
|
interface: {
|
|
10
10
|
name: 'width',
|
|
11
|
-
|
|
12
|
-
type: 'text-box'
|
|
13
|
-
}
|
|
11
|
+
path: 'options.width',
|
|
12
|
+
type: 'text-box',
|
|
13
|
+
},
|
|
14
14
|
},
|
|
15
|
+
visible: true,
|
|
15
16
|
};
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1uLnByb3BzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvcHJvcGVydGllcy90YWJsZS1jb2x1bW4ucHJvcHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRXRELE1BQU0sQ0FBQyxNQUFNLCtCQUErQixHQUFzQjtJQUNoRSxJQUFJLEVBQUUsT0FBTztJQUNiLEtBQUssRUFBRSxPQUFPO0lBQ2QsS0FBSyxFQUFFLDBCQUEwQjtJQUNqQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixZQUFZLEVBQUUsT0FBTztRQUNyQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsT0FBTztZQUNiLElBQUksRUFBRSxlQUFlO1lBQ3JCLElBQUksRUFBRSxVQUFVO1NBQ2pCO0tBQ0Y7SUFDRCxPQUFPLEVBQUUsSUFBSTtDQUNkLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRQcm9wZXJ0eSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQVhQX1NUWUxJTkdfUFJPUEVSVFlfR1JPVVAgfSBmcm9tICcuL2dyb3Vwcyc7XG5cbmV4cG9ydCBjb25zdCBBWFBfVEFCTEVfQ09MVU1OX1dJRFRIX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ3dpZHRoJyxcbiAgdGl0bGU6ICdXaWR0aCcsXG4gIGdyb3VwOiBBWFBfU1RZTElOR19QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGRlZmF1bHRWYWx1ZTogJzIwMHB4JyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICd3aWR0aCcsXG4gICAgICBwYXRoOiAnb3B0aW9ucy53aWR0aCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuIl19
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { AXButtonModule } from '@acorex/components/button';
|
|
2
|
-
import {
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
|
-
import { ChangeDetectionStrategy, Component, EventEmitter } from '@angular/core';
|
|
4
|
+
import { ChangeDetectionStrategy, Component, computed, EventEmitter } from '@angular/core';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@acorex/components/button";
|
|
7
|
-
export class AXPButtonWidgetViewComponent extends
|
|
7
|
+
export class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
|
|
8
8
|
constructor() {
|
|
9
9
|
super(...arguments);
|
|
10
|
+
this.disabled = computed(() => this.options()['disabled']);
|
|
11
|
+
this.color = computed(() => this.options()['color']?.id ?? 'primary');
|
|
12
|
+
this.look = computed(() => this.options()['look']?.id ?? 'solid');
|
|
13
|
+
this.text = computed(() => this.options()['text']);
|
|
10
14
|
this.onClick = new EventEmitter();
|
|
11
15
|
}
|
|
12
16
|
handleClick(e) {
|
|
@@ -14,20 +18,20 @@ export class AXPButtonWidgetViewComponent extends AXPWidgetBase {
|
|
|
14
18
|
}
|
|
15
19
|
api() {
|
|
16
20
|
return {
|
|
17
|
-
|
|
21
|
+
onClick: this.onClick,
|
|
18
22
|
};
|
|
19
23
|
}
|
|
20
24
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
21
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` <ax-button (onClick)="handleClick($event)" color="
|
|
25
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()"></ax-button> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
22
26
|
}
|
|
23
27
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
|
|
24
28
|
type: Component,
|
|
25
29
|
args: [{
|
|
26
|
-
template: ` <ax-button (onClick)="handleClick($event)" color="
|
|
30
|
+
template: ` <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()"></ax-button> `,
|
|
27
31
|
standalone: true,
|
|
28
32
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
29
33
|
imports: [CommonModule, AXButtonModule],
|
|
30
34
|
inputs: [],
|
|
31
35
|
}]
|
|
32
36
|
}] });
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvYWN0aW9ucy9idXR0b24td2lkZ2V0L2J1dHRvbi13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRTNELE9BQU8sRUFBdUIsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUMxRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFRM0YsTUFBTSxPQUFPLDRCQUE2QixTQUFRLGtCQUF1QjtJQVB6RTs7UUFRWSxhQUFRLEdBQUcsUUFBUSxDQUFVLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1FBQy9ELFVBQUssR0FBRyxRQUFRLENBQW1CLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUMsRUFBRSxFQUFFLElBQUksU0FBUyxDQUFDLENBQUM7UUFDbkYsU0FBSSxHQUFHLFFBQVEsQ0FBa0IsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsSUFBSSxPQUFPLENBQUMsQ0FBQztRQUM5RSxTQUFJLEdBQUcsUUFBUSxDQUFTLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO1FBRXpELFlBQU8sR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQztLQVduRDtJQVRXLFdBQVcsQ0FBQyxDQUFlO1FBQ25DLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3ZCLENBQUM7SUFFUSxHQUFHO1FBQ1YsT0FBTztZQUNMLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTztTQUN0QixDQUFDO0lBQ0osQ0FBQzs4R0FoQlUsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsK0ZBTjdCLHFJQUFxSSwyREFHckksWUFBWSw4QkFBRSxjQUFjOzsyRkFHM0IsNEJBQTRCO2tCQVB4QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxxSUFBcUk7b0JBQy9JLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGNBQWMsQ0FBQztvQkFDdkMsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhDbGlja0V2ZW50LCBBWFN0eWxlQ29sb3JUeXBlLCBBWFN0eWxlTG9va1R5cGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uJztcbmltcG9ydCB7IEFYUExheW91dEVsZW1lbnRBUEksIEFYUFdpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGNvbXB1dGVkLCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYCA8YXgtYnV0dG9uIChvbkNsaWNrKT1cImhhbmRsZUNsaWNrKCRldmVudClcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKVwiIFtjb2xvcl09XCJjb2xvcigpXCIgW2xvb2tdPVwibG9vaygpXCIgW3RleHRdPVwidGV4dCgpXCI+PC9heC1idXR0b24+IGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWEJ1dHRvbk1vZHVsZV0sXG4gIGlucHV0czogW10sXG59KVxuZXhwb3J0IGNsYXNzIEFYUEJ1dHRvbldpZGdldFZpZXdDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8YW55PiB7XG4gIHByb3RlY3RlZCBkaXNhYmxlZCA9IGNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHRoaXMub3B0aW9ucygpWydkaXNhYmxlZCddKTtcbiAgcHJvdGVjdGVkIGNvbG9yID0gY29tcHV0ZWQ8QVhTdHlsZUNvbG9yVHlwZT4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2NvbG9yJ10/LmlkID8/ICdwcmltYXJ5Jyk7XG4gIHByb3RlY3RlZCBsb29rID0gY29tcHV0ZWQ8QVhTdHlsZUxvb2tUeXBlPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnbG9vayddPy5pZCA/PyAnc29saWQnKTtcbiAgcHJvdGVjdGVkIHRleHQgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpWyd0ZXh0J10pO1xuXG4gIHB1YmxpYyBvbkNsaWNrID0gbmV3IEV2ZW50RW1pdHRlcjxBWENsaWNrRXZlbnQ+KCk7XG5cbiAgcHJvdGVjdGVkIGhhbmRsZUNsaWNrKGU6IEFYQ2xpY2tFdmVudCkge1xuICAgIHRoaXMub25DbGljay5lbWl0KGUpO1xuICB9XG5cbiAgb3ZlcnJpZGUgYXBpKCk6IEFYUExheW91dEVsZW1lbnRBUEkge1xuICAgIHJldHVybiB7XG4gICAgICBvbkNsaWNrOiB0aGlzLm9uQ2xpY2ssXG4gICAgfTtcbiAgfVxufVxuIl19
|
|
@@ -1,9 +1,25 @@
|
|
|
1
|
+
import { cloneProperty } from '@acorex/platform/layout/builder';
|
|
2
|
+
import { AXP_DISABLED_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_TEXT_PROPERTY } from '../../../properties';
|
|
1
3
|
export const AXPButtonWidget = {
|
|
2
|
-
name:
|
|
4
|
+
name: 'button',
|
|
5
|
+
title: 'Button',
|
|
6
|
+
icon: "fa-solid fa-play",
|
|
7
|
+
properties: [
|
|
8
|
+
AXP_DISABLED_PROPERTY,
|
|
9
|
+
cloneProperty(AXP_TEXT_PROPERTY, { schema: { defaultValue: "Click Here" } }),
|
|
10
|
+
AXP_STYLE_COLOR_PROPERTY,
|
|
11
|
+
AXP_STYLE_LOOK_PROPERTY
|
|
12
|
+
],
|
|
3
13
|
components: {
|
|
14
|
+
designer: {
|
|
15
|
+
component: () => import('./button-widget-view.component').then((c) => c.AXPButtonWidgetViewComponent),
|
|
16
|
+
},
|
|
4
17
|
view: {
|
|
5
18
|
component: () => import('./button-widget-view.component').then((c) => c.AXPButtonWidgetViewComponent),
|
|
6
|
-
}
|
|
7
|
-
|
|
19
|
+
},
|
|
20
|
+
edit: {
|
|
21
|
+
component: () => import('./button-widget-view.component').then((c) => c.AXPButtonWidgetViewComponent),
|
|
22
|
+
},
|
|
23
|
+
},
|
|
8
24
|
};
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdpZGdldC5jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2FjdGlvbnMvYnV0dG9uLXdpZGdldC9idXR0b24td2lkZ2V0LmNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQW1CLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2pGLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSx3QkFBd0IsRUFBRSx1QkFBdUIsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ2xJLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBb0I7SUFDOUMsSUFBSSxFQUFFLFFBQVE7SUFDZCxLQUFLLEVBQUUsUUFBUTtJQUNmLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsVUFBVSxFQUFFO1FBQ1YscUJBQXFCO1FBQ3JCLGFBQWEsQ0FBQyxpQkFBaUIsRUFDN0IsRUFBRSxNQUFNLEVBQUUsRUFBRSxZQUFZLEVBQUUsWUFBWSxFQUFFLEVBQUUsQ0FBQztRQUM3Qyx3QkFBd0I7UUFDeEIsdUJBQXVCO0tBQ3hCO0lBQ0QsVUFBVSxFQUFFO1FBQ1YsUUFBUSxFQUFFO1lBQ1IsU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxnQ0FBZ0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLDRCQUE0QixDQUFDO1NBQ3RHO1FBQ0QsSUFBSSxFQUFFO1lBQ0osU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxnQ0FBZ0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLDRCQUE0QixDQUFDO1NBQ3RHO1FBQ0QsSUFBSSxFQUFFO1lBQ0osU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxnQ0FBZ0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLDRCQUE0QixDQUFDO1NBQ3RHO0tBQ0Y7Q0FDRixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29uZmlnLCBjbG9uZVByb3BlcnR5IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBBWFBfRElTQUJMRURfUFJPUEVSVFksIEFYUF9TVFlMRV9DT0xPUl9QUk9QRVJUWSwgQVhQX1NUWUxFX0xPT0tfUFJPUEVSVFksIEFYUF9URVhUX1BST1BFUlRZIH0gZnJvbSAnLi4vLi4vLi4vcHJvcGVydGllcyc7XG5leHBvcnQgY29uc3QgQVhQQnV0dG9uV2lkZ2V0OiBBWFBXaWRnZXRDb25maWcgPSB7XG4gIG5hbWU6ICdidXR0b24nLFxuICB0aXRsZTogJ0J1dHRvbicsXG4gIGljb246IFwiZmEtc29saWQgZmEtcGxheVwiLFxuICBwcm9wZXJ0aWVzOiBbXG4gICAgQVhQX0RJU0FCTEVEX1BST1BFUlRZLFxuICAgIGNsb25lUHJvcGVydHkoQVhQX1RFWFRfUFJPUEVSVFksXG4gICAgICB7IHNjaGVtYTogeyBkZWZhdWx0VmFsdWU6IFwiQ2xpY2sgSGVyZVwiIH0gfSksXG4gICAgQVhQX1NUWUxFX0NPTE9SX1BST1BFUlRZLFxuICAgIEFYUF9TVFlMRV9MT09LX1BST1BFUlRZXG4gIF0sXG4gIGNvbXBvbmVudHM6IHtcbiAgICBkZXNpZ25lcjoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vYnV0dG9uLXdpZGdldC12aWV3LmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQQnV0dG9uV2lkZ2V0Vmlld0NvbXBvbmVudCksXG4gICAgfSxcbiAgICB2aWV3OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9idXR0b24td2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBCdXR0b25XaWRnZXRWaWV3Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGVkaXQ6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL2J1dHRvbi13aWRnZXQtdmlldy5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUEJ1dHRvbldpZGdldFZpZXdDb21wb25lbnQpLFxuICAgIH0sXG4gIH0sXG59O1xuIl19
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
2
|
-
import {
|
|
2
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
4
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@acorex/components/decorators";
|
|
7
|
-
export class AXPCheckBoxWidgetColumnComponent extends
|
|
7
|
+
export class AXPCheckBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
8
|
+
constructor() {
|
|
9
|
+
super(...arguments);
|
|
10
|
+
this.negative = this.options["negative"];
|
|
11
|
+
this.trulyText = this.options["trulyText"];
|
|
12
|
+
this.falsyText = this.options["falsyText"];
|
|
13
|
+
}
|
|
8
14
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCheckBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
15
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPCheckBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` <div>
|
|
10
16
|
@if(this.rawValue){ @if(trulyText){
|
|
@@ -42,4 +48,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
42
48
|
inputs: [],
|
|
43
49
|
}]
|
|
44
50
|
}] });
|
|
45
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtd2lkZ2V0LWNvbHVtbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvY2hlY2tib3gvY2hlY2tib3gtd2lkZ2V0LWNvbHVtbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDM0UsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQW9CbkUsTUFBTSxPQUFPLGdDQUFpQyxTQUFRLHdCQUE2QjtJQW5CbkY7O1FBb0JZLGFBQVEsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBWSxDQUFDO1FBQy9DLGNBQVMsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBVyxDQUFDO1FBQ2hELGNBQVMsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBVyxDQUFDO0tBQzNEOzhHQUpZLGdDQUFnQztrR0FBaEMsZ0NBQWdDLCtGQWxCakM7Ozs7Ozs7Ozs7OztTQVlILDJEQUdHLFlBQVksOEJBQUUsaUJBQWlCOzsyRkFHOUIsZ0NBQWdDO2tCQW5CNUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7OztTQVlIO29CQUNQLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDO29CQUMxQyxNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYRGVjb3JhdG9yTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2RlY29yYXRvcnMnO1xuaW1wb3J0IHsgQVhQQ29sdW1uV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgIDxkaXY+XG4gICAgQGlmKHRoaXMucmF3VmFsdWUpeyBAaWYodHJ1bHlUZXh0KXtcbiAgICA8c3BhbiBbY2xhc3NdPVwibmVnYXRpdmUgPyAnYXgtdGV4dC1kYW5nZXInIDogJ2F4LXRleHQtc3VjY2VzcydcIj57eyB0cnVseVRleHQgfX08L3NwYW4+XG4gICAgfUBlbHNlIHtcblxuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEtY2hlY2sgYXgtdGV4dC1zdWNjZXNzXCI+IDwvYXgtaWNvbj5cbiAgICB9IH1AZWxzZSB7IEBpZihmYWxzeVRleHQpe1xuICAgIDxzcGFuIFtjbGFzc109XCJuZWdhdGl2ZSA/ICdheC10ZXh0LXN1Y2Nlc3MnIDogJ2F4LXRleHQtZGFuZ2VyJ1wiPnt7IGZhbHN5VGV4dCB9fTwvc3Bhbj5cbiAgICB9QGVsc2Uge1xuXG4gICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS14bWFyayBheC10ZXh0LWRhbmdlclwiPiA8L2F4LWljb24+XG4gICAgfSB9XG4gIDwvZGl2PmAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWERlY29yYXRvck1vZHVsZV0sXG4gIGlucHV0czogW10sXG59KVxuZXhwb3J0IGNsYXNzIEFYUENoZWNrQm94V2lkZ2V0Q29sdW1uQ29tcG9uZW50IGV4dGVuZHMgQVhQQ29sdW1uV2lkZ2V0Q29tcG9uZW50PGFueT4ge1xuICBwcm90ZWN0ZWQgbmVnYXRpdmUgPSB0aGlzLm9wdGlvbnNbXCJuZWdhdGl2ZVwiXSBhcyBib29sZWFuO1xuICBwcm90ZWN0ZWQgdHJ1bHlUZXh0ID0gdGhpcy5vcHRpb25zW1widHJ1bHlUZXh0XCJdIGFzIHN0cmluZztcbiAgcHJvdGVjdGVkIGZhbHN5VGV4dCA9IHRoaXMub3B0aW9uc1tcImZhbHN5VGV4dFwiXSBhcyBzdHJpbmc7XG59XG4iXX0=
|