@acorex/platform 18.0.14 → 18.0.16
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 +1 -0
- package/core/utils/data-conditioner.d.ts +6 -0
- package/esm2022/auth/lib/session.service.mjs +7 -5
- package/esm2022/common/lib/schema/widget/widget-renderer.mjs +3 -3
- package/esm2022/core/index.mjs +2 -1
- package/esm2022/core/utils/data-conditioner.mjs +138 -0
- package/esm2022/layout/builder/lib/builder/widget-catalog.mjs +3 -2
- package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +2 -2
- package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +3 -3
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +17 -10
- package/esm2022/layout/designer/index.mjs +2 -7
- package/esm2022/layout/designer/lib/{helpers → designer/components}/add-widget-button/add-widget-button.component.mjs +2 -2
- package/esm2022/layout/designer/lib/designer/components/board/board.component.mjs +112 -0
- package/esm2022/layout/designer/lib/designer/components/breadcrumbs/breadcrumbs.component.mjs +64 -0
- package/esm2022/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.mjs +32 -0
- package/esm2022/layout/designer/lib/designer/components/drawers/history/history.component.mjs +30 -0
- package/esm2022/layout/designer/lib/designer/components/drawers/outline/outline.component.mjs +61 -0
- package/esm2022/layout/designer/lib/designer/components/drawers/pages/pages.component.mjs +28 -0
- package/esm2022/layout/designer/lib/designer/components/grid-drawer/grid-drawer.component.mjs +82 -0
- package/esm2022/layout/designer/lib/designer/components/header-menu/header-menu.component.mjs +24 -0
- package/esm2022/layout/designer/lib/{widget-picker → designer/components/widget-picker}/widget-picker.component.mjs +1 -1
- package/esm2022/layout/designer/lib/designer/designer.component.mjs +28 -17
- package/esm2022/layout/designer/lib/designer/index.mjs +8 -0
- package/esm2022/layout/designer/lib/designer/shared/command.mjs +185 -0
- package/esm2022/layout/designer/lib/designer/shared/designer-connector.service.mjs +10 -0
- package/esm2022/layout/designer/lib/designer/shared/designer.service.mjs +488 -0
- package/esm2022/layout/designer/lib/designer/shared/designer.typs.mjs +2 -0
- package/esm2022/layout/designer/lib/designer/shared/drawer-content/drawer-content.component.mjs +16 -0
- package/esm2022/layout/designer/lib/designer/shared/widget-designer-renderer.directive.mjs +224 -0
- package/esm2022/layout/designer/lib/preview/preview.component.mjs +3 -3
- package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +17 -5
- package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +2 -5
- package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +15 -5
- package/esm2022/layout/entity/lib/entity-registery.service.mjs +3 -3
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +2 -1
- package/esm2022/themes/default/index.mjs +3 -2
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +29 -20
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +19 -9
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comment-list-view.component.mjs +123 -0
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comments.service.mjs +3 -0
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +22 -23
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.mjs +68 -0
- package/esm2022/themes/default/lib/layouts/entity-layouts/index.mjs +2 -0
- package/esm2022/widgets/lib/properties/data-source.props.mjs +21 -0
- package/esm2022/widgets/lib/properties/editors.props.mjs +27 -90
- package/esm2022/widgets/lib/properties/general.props.mjs +124 -0
- package/esm2022/widgets/lib/properties/index.mjs +4 -1
- package/esm2022/widgets/lib/properties/layout.props.mjs +138 -33
- package/esm2022/widgets/lib/properties/table-column.props.mjs +2 -2
- package/esm2022/widgets/lib/widgets/actions/button/button-widget-designer.component.mjs +54 -0
- package/esm2022/widgets/lib/widgets/actions/button/button-widget-view.component.mjs +3 -2
- package/esm2022/widgets/lib/widgets/actions/button/button-widget.config.mjs +3 -2
- package/esm2022/widgets/lib/widgets/advance/file/file-box-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/advance/file/file-box-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget.config.mjs +2 -1
- package/esm2022/widgets/lib/widgets/advance/map/index.mjs +1 -4
- package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-edit.component.mjs +54 -157
- package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-view.component.mjs +40 -53
- package/esm2022/widgets/lib/widgets/advance/map/map-box-widget.config.mjs +100 -11
- package/esm2022/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.mjs +23 -14
- package/esm2022/widgets/lib/widgets/advance/qrcode/qrcode-widget.config.mjs +9 -7
- package/esm2022/widgets/lib/widgets/advance/signature/signature-pad-widget-edit.component.mjs +12 -3
- package/esm2022/widgets/lib/widgets/advance/signature/signature-pad-widget.config.mjs +5 -6
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-designer.component.mjs +54 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.mjs +21 -21
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.mjs +4 -1
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget.config.mjs +14 -5
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-designer.component.mjs +53 -0
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-edit.component.mjs +24 -12
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget.config.mjs +15 -6
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget.config.mjs +2 -1
- package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget.config.mjs +5 -2
- package/esm2022/widgets/lib/widgets/editors/email/email-box-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/email/email-box-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/link/link-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/link/link-widget.config.mjs +2 -1
- package/esm2022/widgets/lib/widgets/editors/number/number-box-widget-edit.component.mjs +14 -5
- package/esm2022/widgets/lib/widgets/editors/number/number-box-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/password/password-box-widget-edit.component.mjs +12 -8
- package/esm2022/widgets/lib/widgets/editors/password/password-box-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/phone/phone-box-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/phone/phone-box-widget.config.mjs +2 -1
- package/esm2022/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.mjs +14 -5
- package/esm2022/widgets/lib/widgets/editors/rich-text/rich-text-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget-edit.component.mjs +25 -4
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget-view.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget.config.mjs +2 -1
- package/esm2022/widgets/lib/widgets/editors/selection-list/index.mjs +2 -1
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-designer.component.mjs +75 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-edit.component.mjs +25 -13
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget-view.component.mjs +2 -3
- package/esm2022/widgets/lib/widgets/editors/selection-list/selection-list-widget.config.mjs +16 -3
- package/esm2022/widgets/lib/widgets/editors/text/text-box-widget-edit.component.mjs +13 -4
- package/esm2022/widgets/lib/widgets/editors/text/text-box-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget-edit.component.mjs +14 -4
- package/esm2022/widgets/lib/widgets/editors/toggle/toggle-widget.config.mjs +4 -2
- package/esm2022/widgets/lib/widgets/layout/block/block-widget-designer.component.mjs +40 -17
- package/esm2022/widgets/lib/widgets/layout/block/block-widget-view.component.mjs +17 -3
- package/esm2022/widgets/lib/widgets/layout/block/block-widget.config.mjs +9 -4
- package/esm2022/widgets/lib/widgets/layout/document/document-widget.config.mjs +2 -2
- package/esm2022/widgets/lib/widgets/layout/form-field/form-field-widget-designer.component.mjs +19 -9
- package/esm2022/widgets/lib/widgets/layout/form-field/form-field-widget.config.mjs +4 -3
- package/esm2022/widgets/lib/widgets/layout/grid/grid-widget-designer.component.mjs +21 -10
- package/esm2022/widgets/lib/widgets/layout/grid/grid-widget.config.mjs +8 -5
- package/esm2022/widgets/lib/widgets/layout/grid-item/grid-item-widget-designer.component.mjs +49 -41
- package/esm2022/widgets/lib/widgets/layout/grid-item/grid-item-widget.config.mjs +6 -9
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget-designer.component.mjs +84 -0
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget-view.component.mjs +18 -0
- package/esm2022/widgets/lib/widgets/layout/grid-row/grid-row-widget.config.mjs +28 -0
- package/esm2022/widgets/lib/widgets/layout/grid-row/index.mjs +5 -0
- package/esm2022/widgets/lib/widgets/layout/page/page-widget-designer.component.mjs +8 -9
- package/esm2022/widgets/lib/widgets/layout/page/page-widget-view.component.mjs +1 -2
- package/esm2022/widgets/lib/widgets/layout/page/page-widget.config.mjs +8 -4
- package/esm2022/widgets/lib/widgets/layout/repeater/repeater-widget-designer.component.mjs +6 -6
- package/esm2022/widgets/lib/widgets/layout/repeater/repeater-widget.config.mjs +2 -2
- package/esm2022/widgets/lib/widgets/layout/text-block/text-block-widget-designer.component.mjs +38 -0
- package/esm2022/widgets/lib/widgets/layout/text-block/text-block-widget-view.component.mjs +3 -2
- package/esm2022/widgets/lib/widgets/layout/text-block/text-block-widget.config.mjs +5 -5
- package/esm2022/widgets/lib/widgets.module.mjs +4 -1
- package/fesm2022/acorex-platform-auth.mjs +6 -4
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs +1 -1
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +139 -1
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +21 -13
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs +23 -0
- package/fesm2022/acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layout-designer-widget-picker.component-DXgcm-fP.mjs → acorex-platform-layout-designer-widget-picker.component-BZryrCyh.mjs} +4 -4
- package/fesm2022/acorex-platform-layout-designer-widget-picker.component-BZryrCyh.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-designer.mjs +496 -345
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +14 -6
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-DKNRxpQk.mjs → acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs} +23 -13
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs → acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs} +4 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +226 -66
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-C0S_HJkl.mjs +57 -0
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-C0S_HJkl.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-checkbox-widget-designer.component-DAGbdSTk.mjs +57 -0
- package/fesm2022/acorex-platform-widgets-checkbox-widget-designer.component-DAGbdSTk.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs → acorex-platform-widgets-checkbox-widget-view.component-tPk6Gylo.mjs} +4 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-tPk6Gylo.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs +56 -0
- package/fesm2022/acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs → acorex-platform-widgets-page-widget-designer.component-6BMZ0qRw.mjs} +8 -9
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-6BMZ0qRw.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs +41 -0
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +1391 -777
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/lib/builder/widget.types.d.ts +20 -8
- package/layout/designer/index.d.ts +1 -6
- package/layout/designer/lib/{board → designer/components/board}/board.component.d.ts +3 -1
- package/layout/designer/lib/{breadcrumbs → designer/components/breadcrumbs}/breadcrumbs.component.d.ts +1 -1
- package/layout/designer/lib/designer/components/drawers/data-sources/data-sources.component.d.ts +12 -0
- package/layout/designer/lib/{history → designer/components/drawers/history}/history.component.d.ts +1 -1
- package/layout/designer/lib/{outline → designer/components/drawers/outline}/outline.component.d.ts +1 -1
- package/layout/designer/lib/{pages → designer/components/drawers/pages}/pages.component.d.ts +1 -1
- package/layout/designer/lib/{header-menu → designer/components/header-menu}/header-menu.component.d.ts +1 -1
- package/layout/designer/lib/designer/designer.component.d.ts +1 -1
- package/layout/designer/lib/designer/index.d.ts +7 -0
- package/layout/designer/lib/designer/shared/designer-connector.service.d.ts +11 -0
- package/layout/designer/lib/{designer.service.d.ts → designer/shared/designer.service.d.ts} +9 -12
- package/layout/designer/lib/designer/shared/designer.typs.d.ts +4 -0
- package/layout/designer/lib/designer/shared/drawer-content/drawer-content.component.d.ts +8 -0
- package/layout/designer/lib/{widget-designer-renderer.component.d.ts → designer/shared/widget-designer-renderer.directive.d.ts} +6 -8
- package/layout/designer/lib/property-viewer/widget-property-viewer.component.d.ts +8 -0
- package/layout/entity/lib/entity-registery.service.d.ts +1 -1
- package/package.json +7 -7
- package/themes/default/index.d.ts +2 -1
- package/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.d.ts +7 -2
- package/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.d.ts +1 -1
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comment-list-view.component.d.ts +33 -0
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/comments/comments.service.d.ts +11 -0
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +3 -2
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.d.ts +11 -0
- package/themes/default/lib/layouts/entity-layouts/index.d.ts +1 -0
- package/widgets/lib/properties/data-source.props.d.ts +2 -0
- package/widgets/lib/properties/editors.props.d.ts +2 -5
- package/widgets/lib/properties/general.props.d.ts +7 -0
- package/widgets/lib/properties/index.d.ts +3 -0
- package/widgets/lib/properties/layout.props.d.ts +12 -3
- package/widgets/lib/widgets/actions/button/button-widget-designer.component.d.ts +15 -0
- package/widgets/lib/widgets/actions/button/button-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/advance/file/file-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/advance/gallery/gallery-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/advance/map/index.d.ts +0 -3
- package/widgets/lib/widgets/advance/map/map-box-widget-edit.component.d.ts +10 -32
- package/widgets/lib/widgets/advance/map/map-box-widget-view.component.d.ts +6 -11
- package/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.d.ts +5 -4
- package/widgets/lib/widgets/advance/signature/signature-pad-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-designer.component.d.ts +10 -0
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.d.ts +2 -5
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.d.ts +3 -0
- package/widgets/lib/widgets/editors/color/color-box-widget-designer.component.d.ts +11 -0
- package/widgets/lib/widgets/editors/color/color-box-widget-edit.component.d.ts +3 -0
- package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/date-time/date-time-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/email/email-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/link/link-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/number/number-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/password/password-box-widget-edit.component.d.ts +1 -2
- package/widgets/lib/widgets/editors/phone/phone-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/select/select-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/select/select-box-widget-view.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/selection-list/index.d.ts +1 -0
- package/widgets/lib/widgets/editors/selection-list/selection-list-widget-designer.component.d.ts +16 -0
- package/widgets/lib/widgets/editors/selection-list/selection-list-widget-edit.component.d.ts +4 -2
- package/widgets/lib/widgets/editors/selection-list/selection-list-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/text/text-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/toggle/toggle-widget-edit.component.d.ts +2 -1
- package/widgets/lib/widgets/layout/block/block-widget-designer.component.d.ts +5 -1
- package/widgets/lib/widgets/layout/block/block-widget-view.component.d.ts +3 -0
- package/widgets/lib/widgets/layout/form-field/form-field-widget-designer.component.d.ts +2 -1
- package/widgets/lib/widgets/layout/grid/grid-widget-designer.component.d.ts +3 -2
- package/widgets/lib/widgets/layout/grid-item/grid-item-widget-designer.component.d.ts +6 -4
- package/widgets/lib/widgets/layout/grid-row/grid-row-widget-designer.component.d.ts +15 -0
- package/widgets/lib/widgets/layout/grid-row/grid-row-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/layout/grid-row/grid-row-widget-view.component.d.ts +6 -0
- package/widgets/lib/widgets/layout/grid-row/grid-row-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/layout/grid-row/index.d.ts +4 -0
- package/widgets/lib/widgets/layout/page/page-widget-designer.component.d.ts +3 -2
- package/widgets/lib/widgets/layout/text-block/text-block-widget-designer.component.d.ts +11 -0
- package/widgets/lib/widgets/layout/text-block/text-block-widget-view.component.d.ts +1 -1
- package/esm2022/layout/designer/lib/board/board.component.mjs +0 -92
- package/esm2022/layout/designer/lib/breadcrumbs/breadcrumbs.component.mjs +0 -64
- package/esm2022/layout/designer/lib/command.mjs +0 -185
- package/esm2022/layout/designer/lib/designer.service.mjs +0 -399
- package/esm2022/layout/designer/lib/header-menu/header-menu.component.mjs +0 -24
- package/esm2022/layout/designer/lib/helpers/grid-drawer/grid-drawer.component.mjs +0 -82
- package/esm2022/layout/designer/lib/history/history.component.mjs +0 -28
- package/esm2022/layout/designer/lib/outline/outline.component.mjs +0 -56
- package/esm2022/layout/designer/lib/pages/pages.component.mjs +0 -28
- package/esm2022/layout/designer/lib/widget-designer-renderer.component.mjs +0 -251
- package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/widgets/advance/map/map-box-widget-print.component.mjs +0 -19
- package/fesm2022/acorex-platform-layout-designer-preview.component-xkvSLydm.mjs +0 -23
- package/fesm2022/acorex-platform-layout-designer-preview.component-xkvSLydm.mjs.map +0 -1
- package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DXgcm-fP.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-DKNRxpQk.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs.map +0 -1
- package/widgets/lib/widgets/advance/map/map-box-widget-column.component.d.ts +0 -6
- package/widgets/lib/widgets/advance/map/map-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/widgets/advance/map/map-box-widget-print.component.d.ts +0 -6
- /package/layout/designer/lib/{helpers → designer/components}/add-widget-button/add-widget-button.component.d.ts +0 -0
- /package/layout/designer/lib/{helpers → designer/components}/grid-drawer/grid-drawer.component.d.ts +0 -0
- /package/layout/designer/lib/{widget-picker → designer/components/widget-picker}/widget-picker.component.d.ts +0 -0
- /package/layout/designer/lib/{command.d.ts → designer/shared/command.d.ts} +0 -0
|
@@ -2,32 +2,34 @@ import * as i5 from '@acorex/components/button';
|
|
|
2
2
|
import { AXButtonModule } from '@acorex/components/button';
|
|
3
3
|
import * as i4 from '@acorex/components/loading';
|
|
4
4
|
import { AXLoadingModule } from '@acorex/components/loading';
|
|
5
|
-
import * as i1$
|
|
6
|
-
import { AXPWidgetComponent, AXPWidgetsCatalog,
|
|
7
|
-
import * as i1$
|
|
5
|
+
import * as i1$7 from '@acorex/platform/layout/builder';
|
|
6
|
+
import { AXPWidgetComponent, AXPWidgetsCatalog, cloneProperty, AXP_WIDGETS_ACTION_GROUP, AXP_WIDGETS_EDITOR_GROUP, AXPColumnWidgetComponent, AXP_WIDGETS_ADVANCE_GROUP, AXPContainerWidgetComponent, AXPLayoutBuilderModule, AXP_WIDGETS_LAYOUT_GROUP } from '@acorex/platform/layout/builder';
|
|
7
|
+
import * as i1$3 from '@angular/common';
|
|
8
8
|
import { CommonModule } from '@angular/common';
|
|
9
9
|
import * as i0 from '@angular/core';
|
|
10
|
-
import { computed, EventEmitter, Component, ChangeDetectionStrategy, inject, signal, ViewEncapsulation, ViewChild, effect,
|
|
11
|
-
import { AX_STYLE_COLOR_TYPES, AXDataSource } from '@acorex/components/common';
|
|
10
|
+
import { computed, EventEmitter, Component, ChangeDetectionStrategy, inject, HostBinding, signal, ViewEncapsulation, ViewChild, effect, HostListener, NgModule } from '@angular/core';
|
|
11
|
+
import { AX_STYLE_COLOR_TYPES, AXDataSource, convertArrayToDataSource } from '@acorex/components/common';
|
|
12
12
|
import * as i1 from '@acorex/components/check-box';
|
|
13
13
|
import { AXCheckBoxModule } from '@acorex/components/check-box';
|
|
14
|
-
import * as
|
|
15
|
-
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
16
|
-
import * as i4$1 from '@acorex/components/form';
|
|
17
|
-
import { AXFormModule } from '@acorex/components/form';
|
|
18
|
-
import { AXValidationService, AXValidationModule } from '@acorex/core/validation';
|
|
19
|
-
import * as i2 from '@angular/forms';
|
|
14
|
+
import * as i1$1 from '@angular/forms';
|
|
20
15
|
import { FormsModule } from '@angular/forms';
|
|
16
|
+
import * as i2 from '@acorex/components/label';
|
|
17
|
+
import { AXLabelModule } from '@acorex/components/label';
|
|
21
18
|
import * as i2$1 from '@acorex/components/badge';
|
|
22
19
|
import { AXBadgeModule } from '@acorex/components/badge';
|
|
20
|
+
import * as i3 from '@acorex/components/decorators';
|
|
21
|
+
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
23
22
|
import { AXPClipBoardService } from '@acorex/platform/common';
|
|
23
|
+
import * as i4$1 from '@acorex/components/form';
|
|
24
|
+
import { AXFormModule } from '@acorex/components/form';
|
|
24
25
|
import { AXPopupService } from '@acorex/components/popup';
|
|
25
26
|
import * as i3$1 from '@acorex/components/select-box';
|
|
26
27
|
import { AXSelectBoxModule, AXSelectBoxComponent } from '@acorex/components/select-box';
|
|
27
28
|
import * as i7 from '@acorex/components/text-box';
|
|
28
29
|
import { AXTextBoxModule } from '@acorex/components/text-box';
|
|
29
|
-
import * as i1$
|
|
30
|
+
import * as i1$2 from '@acorex/core/translation';
|
|
30
31
|
import { AXTranslationModule, AXTranslationService } from '@acorex/core/translation';
|
|
32
|
+
import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
|
|
31
33
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
32
34
|
import { AXDateTimeFormatter } from '@acorex/core/date-time';
|
|
33
35
|
import * as i3$2 from '@acorex/components/datetime-box';
|
|
@@ -35,14 +37,14 @@ import { AXDateTimeBoxModule } from '@acorex/components/datetime-box';
|
|
|
35
37
|
import * as i4$2 from '@acorex/components/text-area';
|
|
36
38
|
import { AXTextAreaModule } from '@acorex/components/text-area';
|
|
37
39
|
import { AXFormatService } from '@acorex/core/format';
|
|
38
|
-
import { isNumber } from 'lodash-es';
|
|
39
|
-
import * as i1$
|
|
40
|
+
import { isNumber, sum, get } from 'lodash-es';
|
|
41
|
+
import * as i1$4 from '@acorex/components/number-box';
|
|
40
42
|
import { AXNumberBoxModule } from '@acorex/components/number-box';
|
|
41
43
|
import * as i3$3 from '@acorex/components/password-box';
|
|
42
44
|
import { AXPasswordBoxModule } from '@acorex/components/password-box';
|
|
43
45
|
import { AXPlatform } from '@acorex/core/platform';
|
|
44
46
|
import { AXPHtmlUtils } from '@acorex/platform/core';
|
|
45
|
-
import * as i1$
|
|
47
|
+
import * as i1$5 from '@acorex/components/wysiwyg';
|
|
46
48
|
import { AXWysiwygModule } from '@acorex/components/wysiwyg';
|
|
47
49
|
import * as i2$2 from '@acorex/components/selection-list';
|
|
48
50
|
import { AXSelectionListModule } from '@acorex/components/selection-list';
|
|
@@ -54,16 +56,13 @@ import { AXLoadingDialogService } from '@acorex/components/loading-dialog';
|
|
|
54
56
|
import { Subscription } from 'rxjs';
|
|
55
57
|
import * as i2$4 from '@acorex/components/image';
|
|
56
58
|
import { AXImageModule } from '@acorex/components/image';
|
|
57
|
-
import * as
|
|
58
|
-
import '
|
|
59
|
-
import '
|
|
60
|
-
import { AXPWidgetDesignerRendererComponent, AXPDesignerAddWidgetButtonComponent, AXPDesignerService, AXPDesignerGridDrawerComponent } from '@acorex/platform/layout/designer';
|
|
59
|
+
import * as i1$6 from '@acorex/components/map';
|
|
60
|
+
import { AXMapModule } from '@acorex/components/map';
|
|
61
|
+
import { AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent, AXPDesignerService, AXPDesignerGridDrawerComponent } from '@acorex/platform/layout/designer';
|
|
61
62
|
import * as i2$5 from '@acorex/components/color-box';
|
|
62
63
|
import { AXColorBoxModule } from '@acorex/components/color-box';
|
|
63
64
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
64
|
-
import * as
|
|
65
|
-
import { AXLabelModule } from '@acorex/components/label';
|
|
66
|
-
import * as i1$6 from '@acorex/components/qrcode';
|
|
65
|
+
import * as i1$8 from '@acorex/components/qrcode';
|
|
67
66
|
import { AXQrcodeModule } from '@acorex/components/qrcode';
|
|
68
67
|
import { AXColorUtil } from '@acorex/core/utils';
|
|
69
68
|
|
|
@@ -86,7 +85,7 @@ class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
|
|
|
86
85
|
};
|
|
87
86
|
}
|
|
88
87
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
89
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "
|
|
88
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "axp_button_widget", usesInheritance: true, ngImport: i0, template: `
|
|
90
89
|
<ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
|
|
91
90
|
@if(loading()){
|
|
92
91
|
<ax-loading> </ax-loading>
|
|
@@ -97,6 +96,7 @@ class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
|
|
|
97
96
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
|
|
98
97
|
type: Component,
|
|
99
98
|
args: [{
|
|
99
|
+
selector: 'axp_button_widget',
|
|
100
100
|
template: `
|
|
101
101
|
<ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
|
|
102
102
|
@if(loading()){
|
|
@@ -137,6 +137,147 @@ const AXP_WIDGET_PROPERTY_GROUP = {
|
|
|
137
137
|
title: "Widget"
|
|
138
138
|
};
|
|
139
139
|
|
|
140
|
+
const AXP_DATA_SOURCE_PROPERTY = {
|
|
141
|
+
name: 'dataSource',
|
|
142
|
+
title: 'Data Source',
|
|
143
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
144
|
+
schema: {
|
|
145
|
+
dataType: 'object',
|
|
146
|
+
interface: {
|
|
147
|
+
name: 'dataSource',
|
|
148
|
+
path: 'options.dataSource',
|
|
149
|
+
type: AXPWidgetsCatalog.select,
|
|
150
|
+
options: {
|
|
151
|
+
dataSource: "{{ methods.getDataSourceNames() }}",
|
|
152
|
+
hasClearButton: true,
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
visible: true,
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
const AXP_NAME_PROPERTY = {
|
|
160
|
+
name: 'name',
|
|
161
|
+
title: 'Name',
|
|
162
|
+
group: AXP_WIDGET_PROPERTY_GROUP,
|
|
163
|
+
schema: {
|
|
164
|
+
dataType: 'string',
|
|
165
|
+
interface: {
|
|
166
|
+
name: 'name',
|
|
167
|
+
path: 'name',
|
|
168
|
+
type: AXPWidgetsCatalog.text,
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
visible: true,
|
|
172
|
+
};
|
|
173
|
+
const AXP_THEME_PROPERTY = {
|
|
174
|
+
name: 'theme',
|
|
175
|
+
title: 'Theme',
|
|
176
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
177
|
+
schema: {
|
|
178
|
+
dataType: 'string',
|
|
179
|
+
defaultValue: { id: 'default' },
|
|
180
|
+
interface: {
|
|
181
|
+
name: 'theme',
|
|
182
|
+
path: 'options.theme',
|
|
183
|
+
type: AXPWidgetsCatalog.select,
|
|
184
|
+
options: {
|
|
185
|
+
hasClearButton: false,
|
|
186
|
+
dataSource: [
|
|
187
|
+
{
|
|
188
|
+
id: 'default',
|
|
189
|
+
title: 'Default',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
id: 'light',
|
|
193
|
+
title: 'Light',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
id: 'dark',
|
|
197
|
+
title: 'Dark',
|
|
198
|
+
},
|
|
199
|
+
],
|
|
200
|
+
},
|
|
201
|
+
},
|
|
202
|
+
},
|
|
203
|
+
visible: true,
|
|
204
|
+
};
|
|
205
|
+
const AXP_DIRECTION_PROPERTY = {
|
|
206
|
+
name: 'direction',
|
|
207
|
+
title: 'Direction',
|
|
208
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
209
|
+
schema: {
|
|
210
|
+
dataType: 'string',
|
|
211
|
+
defaultValue: { id: 'horizontal' },
|
|
212
|
+
interface: {
|
|
213
|
+
name: 'direction',
|
|
214
|
+
path: 'options.direction',
|
|
215
|
+
type: AXPWidgetsCatalog.select,
|
|
216
|
+
options: {
|
|
217
|
+
hasClearButton: false,
|
|
218
|
+
dataSource: [
|
|
219
|
+
{
|
|
220
|
+
id: 'horizontal',
|
|
221
|
+
title: 'Horizontal',
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
id: 'vertical',
|
|
225
|
+
title: 'Vertical',
|
|
226
|
+
},
|
|
227
|
+
],
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
},
|
|
231
|
+
visible: true,
|
|
232
|
+
};
|
|
233
|
+
const AXP_COLOR_PROPERTY = {
|
|
234
|
+
name: 'color',
|
|
235
|
+
title: 'Color',
|
|
236
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
237
|
+
schema: {
|
|
238
|
+
dataType: 'string',
|
|
239
|
+
interface: {
|
|
240
|
+
path: 'options.color',
|
|
241
|
+
options: {
|
|
242
|
+
hasClearButton: true,
|
|
243
|
+
},
|
|
244
|
+
type: AXPWidgetsCatalog.color,
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
visible: true,
|
|
248
|
+
};
|
|
249
|
+
const AXP_FONT_SIZE_PROPERTY = {
|
|
250
|
+
name: 'fontSize',
|
|
251
|
+
title: 'Font Size',
|
|
252
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
253
|
+
schema: {
|
|
254
|
+
dataType: 'string',
|
|
255
|
+
defaultValue: '12px',
|
|
256
|
+
interface: {
|
|
257
|
+
name: 'fontSize',
|
|
258
|
+
path: 'options.fontSize',
|
|
259
|
+
type: AXPWidgetsCatalog.text,
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
visible: true,
|
|
263
|
+
};
|
|
264
|
+
const AXP_BG_COLOR_PROPERTY = {
|
|
265
|
+
name: 'backgroundColor',
|
|
266
|
+
title: 'Background Color',
|
|
267
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
268
|
+
schema: {
|
|
269
|
+
dataType: 'string',
|
|
270
|
+
interface: {
|
|
271
|
+
path: 'options.backgroundColor',
|
|
272
|
+
options: {
|
|
273
|
+
hasClearButton: true,
|
|
274
|
+
},
|
|
275
|
+
type: AXPWidgetsCatalog.color,
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
visible: true,
|
|
279
|
+
};
|
|
280
|
+
|
|
140
281
|
const AXP_VALIDATION_PROPERTY = {
|
|
141
282
|
name: 'validationRules',
|
|
142
283
|
title: 'Validation Rules',
|
|
@@ -151,15 +292,15 @@ const AXP_VALIDATION_PROPERTY = {
|
|
|
151
292
|
},
|
|
152
293
|
visible: true,
|
|
153
294
|
};
|
|
154
|
-
const
|
|
155
|
-
name: '
|
|
156
|
-
title: '
|
|
157
|
-
group:
|
|
295
|
+
const AXP_CONTENT_PROPERTY = {
|
|
296
|
+
name: 'content',
|
|
297
|
+
title: 'Content',
|
|
298
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
158
299
|
schema: {
|
|
159
300
|
dataType: 'string',
|
|
160
301
|
interface: {
|
|
161
|
-
name: '
|
|
162
|
-
path: '
|
|
302
|
+
name: 'content',
|
|
303
|
+
path: 'options.content',
|
|
163
304
|
type: AXPWidgetsCatalog.text,
|
|
164
305
|
},
|
|
165
306
|
},
|
|
@@ -171,6 +312,7 @@ const AXP_DISABLED_PROPERTY = {
|
|
|
171
312
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
172
313
|
schema: {
|
|
173
314
|
dataType: 'boolean',
|
|
315
|
+
defaultValue: false,
|
|
174
316
|
interface: {
|
|
175
317
|
name: 'disabled',
|
|
176
318
|
path: 'options.disabled',
|
|
@@ -179,6 +321,21 @@ const AXP_DISABLED_PROPERTY = {
|
|
|
179
321
|
},
|
|
180
322
|
visible: true,
|
|
181
323
|
};
|
|
324
|
+
const AXP_READONLY_PROPERTY = {
|
|
325
|
+
name: 'readonly',
|
|
326
|
+
title: 'Readonly',
|
|
327
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
328
|
+
schema: {
|
|
329
|
+
dataType: 'boolean',
|
|
330
|
+
defaultValue: false,
|
|
331
|
+
interface: {
|
|
332
|
+
name: 'readonly',
|
|
333
|
+
path: 'options.readonly',
|
|
334
|
+
type: AXPWidgetsCatalog.toggle,
|
|
335
|
+
},
|
|
336
|
+
},
|
|
337
|
+
visible: true,
|
|
338
|
+
};
|
|
182
339
|
const AXP_PLACEHOLDER_PROPERTY = {
|
|
183
340
|
name: 'placeholder',
|
|
184
341
|
title: 'Placeholder',
|
|
@@ -252,37 +409,6 @@ const AXP_HAS_ICON_PROPERTY = {
|
|
|
252
409
|
},
|
|
253
410
|
visible: true,
|
|
254
411
|
};
|
|
255
|
-
const AXP_FONT_SIZE_PROPERTY = {
|
|
256
|
-
name: 'fontSize',
|
|
257
|
-
title: 'Font Size',
|
|
258
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
259
|
-
schema: {
|
|
260
|
-
dataType: 'string',
|
|
261
|
-
defaultValue: '12px',
|
|
262
|
-
interface: {
|
|
263
|
-
name: 'fontSize',
|
|
264
|
-
path: 'options.fontSize',
|
|
265
|
-
type: AXPWidgetsCatalog.text,
|
|
266
|
-
},
|
|
267
|
-
},
|
|
268
|
-
visible: true,
|
|
269
|
-
};
|
|
270
|
-
const AXP_BG_COLOR_PROPERTY = {
|
|
271
|
-
name: 'backgroundColor',
|
|
272
|
-
title: 'Background Color',
|
|
273
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
274
|
-
schema: {
|
|
275
|
-
dataType: 'string',
|
|
276
|
-
interface: {
|
|
277
|
-
path: 'options.backgroundColor',
|
|
278
|
-
options: {
|
|
279
|
-
hasClearButton: true,
|
|
280
|
-
},
|
|
281
|
-
type: AXPWidgetsCatalog.color,
|
|
282
|
-
},
|
|
283
|
-
},
|
|
284
|
-
visible: true,
|
|
285
|
-
};
|
|
286
412
|
const AXP_HAS_CLEAR_BUTTON_PROPERTY = {
|
|
287
413
|
name: 'hasClearButton',
|
|
288
414
|
title: 'Clear Button',
|
|
@@ -452,26 +578,10 @@ const AXP_DESCRIPTION_PROPERTY = {
|
|
|
452
578
|
},
|
|
453
579
|
visible: true,
|
|
454
580
|
};
|
|
455
|
-
const AXP_COLOR_PROPERTY = {
|
|
456
|
-
name: 'color',
|
|
457
|
-
title: 'Color',
|
|
458
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
459
|
-
schema: {
|
|
460
|
-
dataType: 'string',
|
|
461
|
-
interface: {
|
|
462
|
-
path: 'options.color',
|
|
463
|
-
options: {
|
|
464
|
-
hasClearButton: true,
|
|
465
|
-
},
|
|
466
|
-
type: AXPWidgetsCatalog.color,
|
|
467
|
-
},
|
|
468
|
-
},
|
|
469
|
-
visible: true,
|
|
470
|
-
};
|
|
471
581
|
const AXP_STYLE_COLOR_PROPERTY = {
|
|
472
582
|
name: 'color',
|
|
473
583
|
title: 'Color',
|
|
474
|
-
group:
|
|
584
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
475
585
|
schema: {
|
|
476
586
|
dataType: 'string',
|
|
477
587
|
defaultValue: { id: 'primary' },
|
|
@@ -490,7 +600,7 @@ const AXP_STYLE_COLOR_PROPERTY = {
|
|
|
490
600
|
const AXP_STYLE_LOOK_PROPERTY = {
|
|
491
601
|
name: 'look',
|
|
492
602
|
title: 'Look',
|
|
493
|
-
group:
|
|
603
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
494
604
|
schema: {
|
|
495
605
|
dataType: 'string',
|
|
496
606
|
defaultValue: { id: 'solid' },
|
|
@@ -551,7 +661,7 @@ function plainTextDefaultProperty() {
|
|
|
551
661
|
group: AXP_DATA_PROPERTY_GROUP,
|
|
552
662
|
schema: {
|
|
553
663
|
dataType: 'string',
|
|
554
|
-
defaultValue:
|
|
664
|
+
defaultValue: 'Sample Text',
|
|
555
665
|
interface: {
|
|
556
666
|
name: 'defaultValue',
|
|
557
667
|
path: 'defaultValue',
|
|
@@ -561,54 +671,291 @@ function plainTextDefaultProperty() {
|
|
|
561
671
|
visible: true,
|
|
562
672
|
};
|
|
563
673
|
}
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
674
|
+
|
|
675
|
+
const AXP_LAYOUT_GRID_PROPERTY_GROUP = {
|
|
676
|
+
name: "grid",
|
|
677
|
+
order: 1,
|
|
678
|
+
title: "Grid Layout"
|
|
679
|
+
};
|
|
680
|
+
const AXP_LAYOUT_FLEX_PROPERTY_GROUP = {
|
|
681
|
+
name: "flex",
|
|
682
|
+
order: 1,
|
|
683
|
+
title: "Flex Layout"
|
|
684
|
+
};
|
|
685
|
+
const AXP_LAYOUT_GAP_PROPERTY = {
|
|
686
|
+
name: 'gap',
|
|
687
|
+
title: 'Gap',
|
|
688
|
+
group: AXP_LAYOUT_GRID_PROPERTY_GROUP,
|
|
568
689
|
schema: {
|
|
569
|
-
dataType: '
|
|
570
|
-
defaultValue:
|
|
690
|
+
dataType: 'number',
|
|
691
|
+
defaultValue: 2,
|
|
571
692
|
interface: {
|
|
572
|
-
name: '
|
|
573
|
-
path: 'options.
|
|
574
|
-
type: AXPWidgetsCatalog.
|
|
693
|
+
name: 'gap',
|
|
694
|
+
path: 'options.gap',
|
|
695
|
+
type: AXPWidgetsCatalog.number,
|
|
575
696
|
options: {
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
{
|
|
579
|
-
id: 'default',
|
|
580
|
-
title: 'Default',
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
id: 'light',
|
|
584
|
-
title: 'Light',
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
id: 'dark',
|
|
588
|
-
title: 'Dark',
|
|
589
|
-
},
|
|
590
|
-
],
|
|
697
|
+
minValue: 0,
|
|
698
|
+
maxValue: 12,
|
|
591
699
|
},
|
|
592
700
|
},
|
|
593
701
|
},
|
|
594
702
|
visible: true,
|
|
595
703
|
};
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
704
|
+
const AXP_LAYOUT_COL_SPAN_PROPERTY = {
|
|
705
|
+
name: 'colSpan',
|
|
706
|
+
title: 'Column Span',
|
|
707
|
+
group: AXP_LAYOUT_GRID_PROPERTY_GROUP,
|
|
601
708
|
schema: {
|
|
602
|
-
dataType: '
|
|
603
|
-
defaultValue: '200px',
|
|
709
|
+
dataType: 'number',
|
|
604
710
|
interface: {
|
|
605
|
-
name: '
|
|
606
|
-
path: 'options.
|
|
607
|
-
type: AXPWidgetsCatalog.
|
|
711
|
+
name: 'colSpan',
|
|
712
|
+
path: 'options.colSpan',
|
|
713
|
+
type: AXPWidgetsCatalog.number,
|
|
714
|
+
options: {
|
|
715
|
+
minValue: 0,
|
|
716
|
+
maxValue: 12,
|
|
717
|
+
},
|
|
718
|
+
},
|
|
719
|
+
},
|
|
720
|
+
visible: true,
|
|
721
|
+
};
|
|
722
|
+
const AXP_LAYOUT_COL_START_PROPERTY = {
|
|
723
|
+
name: 'colStart',
|
|
724
|
+
title: 'Column Start',
|
|
725
|
+
group: AXP_LAYOUT_GRID_PROPERTY_GROUP,
|
|
726
|
+
schema: {
|
|
727
|
+
dataType: 'number',
|
|
728
|
+
interface: {
|
|
729
|
+
name: 'colStart',
|
|
730
|
+
path: 'options.colStart',
|
|
731
|
+
type: AXPWidgetsCatalog.number,
|
|
732
|
+
options: {
|
|
733
|
+
minValue: 1,
|
|
734
|
+
maxValue: 13,
|
|
735
|
+
},
|
|
736
|
+
},
|
|
737
|
+
},
|
|
738
|
+
visible: true,
|
|
739
|
+
};
|
|
740
|
+
const AXP_LAYOUT_COL_END_PROPERTY = {
|
|
741
|
+
name: 'colEnd',
|
|
742
|
+
title: 'Column End',
|
|
743
|
+
group: AXP_LAYOUT_GRID_PROPERTY_GROUP,
|
|
744
|
+
schema: {
|
|
745
|
+
dataType: 'number',
|
|
746
|
+
interface: {
|
|
747
|
+
name: 'colEnd',
|
|
748
|
+
path: 'options.colEnd',
|
|
749
|
+
type: AXPWidgetsCatalog.number,
|
|
750
|
+
options: {
|
|
751
|
+
minValue: 1,
|
|
752
|
+
maxValue: 13,
|
|
753
|
+
},
|
|
754
|
+
},
|
|
755
|
+
},
|
|
756
|
+
visible: true,
|
|
757
|
+
};
|
|
758
|
+
const AXP_LAYOUT_COLUMNS_PROPERTY = {
|
|
759
|
+
name: 'cols',
|
|
760
|
+
title: 'Columns',
|
|
761
|
+
group: AXP_LAYOUT_GRID_PROPERTY_GROUP,
|
|
762
|
+
schema: {
|
|
763
|
+
dataType: 'number',
|
|
764
|
+
defaultValue: 1,
|
|
765
|
+
interface: {
|
|
766
|
+
name: 'cols',
|
|
767
|
+
path: 'options.cols',
|
|
768
|
+
type: AXPWidgetsCatalog.number,
|
|
769
|
+
options: {
|
|
770
|
+
minValue: 1,
|
|
771
|
+
maxValue: 12,
|
|
772
|
+
},
|
|
773
|
+
},
|
|
774
|
+
},
|
|
775
|
+
visible: true,
|
|
776
|
+
};
|
|
777
|
+
const AXP_LAYOUT_ROWS_PROPERTY = {
|
|
778
|
+
name: 'rows',
|
|
779
|
+
title: 'Rows',
|
|
780
|
+
group: AXP_LAYOUT_GRID_PROPERTY_GROUP,
|
|
781
|
+
schema: {
|
|
782
|
+
dataType: 'number',
|
|
783
|
+
defaultValue: 1,
|
|
784
|
+
interface: {
|
|
785
|
+
name: 'rows',
|
|
786
|
+
path: 'options.rows',
|
|
787
|
+
type: AXPWidgetsCatalog.number,
|
|
788
|
+
options: {
|
|
789
|
+
minValue: 1,
|
|
790
|
+
maxValue: 100,
|
|
791
|
+
},
|
|
792
|
+
},
|
|
793
|
+
},
|
|
794
|
+
visible: true,
|
|
795
|
+
};
|
|
796
|
+
const AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY = {
|
|
797
|
+
name: 'flexJustifyContent',
|
|
798
|
+
title: 'Justify Content',
|
|
799
|
+
group: AXP_LAYOUT_FLEX_PROPERTY_GROUP,
|
|
800
|
+
schema: {
|
|
801
|
+
dataType: 'string',
|
|
802
|
+
defaultValue: { id: 'ax-justify-normal' },
|
|
803
|
+
interface: {
|
|
804
|
+
name: 'flexJustifyContent',
|
|
805
|
+
path: 'options.flexJustifyContent',
|
|
806
|
+
type: AXPWidgetsCatalog.select,
|
|
807
|
+
options: {
|
|
808
|
+
hasClearButton: false,
|
|
809
|
+
dataSource: [
|
|
810
|
+
{ id: 'ax-justify-normal', title: 'Normal' },
|
|
811
|
+
{ id: 'ax-justify-start', title: 'Start' },
|
|
812
|
+
{ id: 'ax-justify-end', title: 'End' },
|
|
813
|
+
{ id: 'ax-justify-center', title: 'Center' },
|
|
814
|
+
{ id: 'ax-justify-between', title: 'Between' },
|
|
815
|
+
{ id: 'ax-justify-around', title: 'Around' },
|
|
816
|
+
{ id: 'ax-justify-evenly', title: 'Evenly' },
|
|
817
|
+
{ id: 'ax-justify-stretch', title: 'Stretch' },
|
|
818
|
+
],
|
|
819
|
+
},
|
|
820
|
+
},
|
|
821
|
+
},
|
|
822
|
+
visible: true,
|
|
823
|
+
};
|
|
824
|
+
const AXP_LAYOUT_FLEX_ALIGN_PROPERTY = {
|
|
825
|
+
name: 'flexAlignItems',
|
|
826
|
+
title: 'Align Items',
|
|
827
|
+
group: AXP_LAYOUT_FLEX_PROPERTY_GROUP,
|
|
828
|
+
schema: {
|
|
829
|
+
dataType: 'string',
|
|
830
|
+
defaultValue: { id: 'ax-items-start' },
|
|
831
|
+
interface: {
|
|
832
|
+
name: 'flexAlignItems',
|
|
833
|
+
path: 'options.flexAlignItems',
|
|
834
|
+
type: AXPWidgetsCatalog.select,
|
|
835
|
+
options: {
|
|
836
|
+
hasClearButton: false,
|
|
837
|
+
dataSource: [
|
|
838
|
+
{ id: 'ax-items-start', title: 'Start' },
|
|
839
|
+
{ id: 'ax-items-end', title: 'End' },
|
|
840
|
+
{ id: 'ax-items-center', title: 'Center' },
|
|
841
|
+
{ id: 'ax-items-baseline', title: 'Baseline' },
|
|
842
|
+
{ id: 'ax-items-stretch', title: 'Stretch' },
|
|
843
|
+
],
|
|
844
|
+
},
|
|
845
|
+
},
|
|
846
|
+
},
|
|
847
|
+
visible: true,
|
|
848
|
+
};
|
|
849
|
+
const AXP_LAYOUT_FLEX_DIRECTION_PROPERTY = {
|
|
850
|
+
name: 'flexDirection',
|
|
851
|
+
title: 'Direction',
|
|
852
|
+
group: AXP_LAYOUT_FLEX_PROPERTY_GROUP,
|
|
853
|
+
schema: {
|
|
854
|
+
dataType: 'string',
|
|
855
|
+
defaultValue: { id: 'ax-flex-row' },
|
|
856
|
+
interface: {
|
|
857
|
+
name: 'flexDirection',
|
|
858
|
+
path: 'options.flexDirection',
|
|
859
|
+
type: AXPWidgetsCatalog.select,
|
|
860
|
+
options: {
|
|
861
|
+
hasClearButton: false,
|
|
862
|
+
dataSource: [
|
|
863
|
+
{ id: 'ax-flex-row', title: 'Row' },
|
|
864
|
+
{ id: 'ax-flex-row-reverse', title: 'Row Reverse' },
|
|
865
|
+
{ id: 'ax-flex-col', title: 'Column' },
|
|
866
|
+
{ id: 'ax-flex-col-reverse', title: 'Column Reverse' }
|
|
867
|
+
],
|
|
868
|
+
},
|
|
869
|
+
},
|
|
870
|
+
},
|
|
871
|
+
visible: true,
|
|
872
|
+
};
|
|
873
|
+
const AXP_LAYOUT_FLEX_WRAP_PROPERTY = {
|
|
874
|
+
name: 'flexWrap',
|
|
875
|
+
title: 'Wrap',
|
|
876
|
+
group: AXP_LAYOUT_FLEX_PROPERTY_GROUP,
|
|
877
|
+
schema: {
|
|
878
|
+
dataType: 'string',
|
|
879
|
+
defaultValue: { id: 'ax-flex-nowrap' },
|
|
880
|
+
interface: {
|
|
881
|
+
name: 'flexWrap',
|
|
882
|
+
path: 'options.flexWrap',
|
|
883
|
+
type: AXPWidgetsCatalog.select,
|
|
884
|
+
options: {
|
|
885
|
+
hasClearButton: false,
|
|
886
|
+
dataSource: [
|
|
887
|
+
{ id: 'ax-flex-nowrap', title: 'No Wrap' },
|
|
888
|
+
{ id: 'ax-flex-wrap', title: 'Wrap' },
|
|
889
|
+
{ id: 'ax-flex-wrap-reverse', title: 'Wrap Reverse' }
|
|
890
|
+
],
|
|
891
|
+
},
|
|
892
|
+
},
|
|
893
|
+
},
|
|
894
|
+
visible: true,
|
|
895
|
+
};
|
|
896
|
+
const AXP_LAYOUT_ALIGN_CONTENT_PROPERTY = {
|
|
897
|
+
name: 'flexAlignContent',
|
|
898
|
+
title: 'Align Content',
|
|
899
|
+
group: AXP_LAYOUT_FLEX_PROPERTY_GROUP,
|
|
900
|
+
schema: {
|
|
901
|
+
dataType: 'string',
|
|
902
|
+
defaultValue: { id: 'ax-content-start' },
|
|
903
|
+
interface: {
|
|
904
|
+
name: 'flexAlignContent',
|
|
905
|
+
path: 'options.flexAlignContent',
|
|
906
|
+
type: AXPWidgetsCatalog.select,
|
|
907
|
+
options: {
|
|
908
|
+
hasClearButton: false,
|
|
909
|
+
dataSource: [
|
|
910
|
+
{ id: 'ax-content-start', title: 'Start' },
|
|
911
|
+
{ id: 'ax-content-end', title: 'End' },
|
|
912
|
+
{ id: 'ax-content-center', title: 'Center' },
|
|
913
|
+
{ id: 'ax-content-between', title: 'Between' },
|
|
914
|
+
{ id: 'ax-content-around', title: 'Around' },
|
|
915
|
+
{ id: 'ax-content-stretch', title: 'Stretch' },
|
|
916
|
+
],
|
|
917
|
+
},
|
|
608
918
|
},
|
|
609
919
|
},
|
|
610
920
|
visible: true,
|
|
611
921
|
};
|
|
922
|
+
const AXP_LAYOUT_GRID_PROPERTIES = [
|
|
923
|
+
AXP_LAYOUT_GAP_PROPERTY,
|
|
924
|
+
AXP_LAYOUT_COLUMNS_PROPERTY,
|
|
925
|
+
AXP_LAYOUT_ROWS_PROPERTY
|
|
926
|
+
];
|
|
927
|
+
const AXP_LAYOUT_GRID_ROW_PROPERTIES = [
|
|
928
|
+
AXP_LAYOUT_GAP_PROPERTY,
|
|
929
|
+
cloneProperty(AXP_LAYOUT_COLUMNS_PROPERTY, { schema: { defaultValue: 12 } }),
|
|
930
|
+
];
|
|
931
|
+
const AXP_LAYOUT_GRID_ITEM_PROPERTIES = [
|
|
932
|
+
AXP_LAYOUT_COL_SPAN_PROPERTY,
|
|
933
|
+
AXP_LAYOUT_COL_START_PROPERTY,
|
|
934
|
+
AXP_LAYOUT_COL_END_PROPERTY,
|
|
935
|
+
];
|
|
936
|
+
const AXP_LAYOUT_FLEX_PROPERTIES = [
|
|
937
|
+
AXP_LAYOUT_FLEX_DIRECTION_PROPERTY,
|
|
938
|
+
AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY,
|
|
939
|
+
AXP_LAYOUT_FLEX_ALIGN_PROPERTY,
|
|
940
|
+
AXP_LAYOUT_GAP_PROPERTY,
|
|
941
|
+
AXP_LAYOUT_FLEX_WRAP_PROPERTY,
|
|
942
|
+
];
|
|
943
|
+
|
|
944
|
+
const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
|
|
945
|
+
name: 'width',
|
|
946
|
+
title: 'Width',
|
|
947
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
948
|
+
schema: {
|
|
949
|
+
dataType: 'string',
|
|
950
|
+
defaultValue: '200px',
|
|
951
|
+
interface: {
|
|
952
|
+
name: 'width',
|
|
953
|
+
path: 'options.width',
|
|
954
|
+
type: AXPWidgetsCatalog.text,
|
|
955
|
+
},
|
|
956
|
+
},
|
|
957
|
+
visible: false,
|
|
958
|
+
};
|
|
612
959
|
|
|
613
960
|
const AXPButtonWidget = {
|
|
614
961
|
name: 'button-action',
|
|
@@ -616,6 +963,7 @@ const AXPButtonWidget = {
|
|
|
616
963
|
description: 'Triggers customizable actions',
|
|
617
964
|
icon: 'fa-solid fa-play',
|
|
618
965
|
group: AXP_WIDGETS_ACTION_GROUP,
|
|
966
|
+
type: 'action',
|
|
619
967
|
properties: [
|
|
620
968
|
AXP_DISABLED_PROPERTY,
|
|
621
969
|
cloneProperty(AXP_TEXT_PROPERTY, { schema: { defaultValue: 'Click Here' } }),
|
|
@@ -624,7 +972,7 @@ const AXPButtonWidget = {
|
|
|
624
972
|
],
|
|
625
973
|
components: {
|
|
626
974
|
designer: {
|
|
627
|
-
component: () =>
|
|
975
|
+
component: () => import('./acorex-platform-widgets-button-widget-designer.component-C0S_HJkl.mjs').then((c) => c.AXPButtonWidgetDesignerComponent),
|
|
628
976
|
},
|
|
629
977
|
view: {
|
|
630
978
|
component: () => Promise.resolve().then(function () { return buttonWidgetView_component; }).then((c) => c.AXPButtonWidgetViewComponent),
|
|
@@ -642,32 +990,34 @@ class AXPCheckBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
642
990
|
this.trulyText = computed(() => this.options()["trulyText"]);
|
|
643
991
|
this.falsyText = computed(() => this.options()["falsyText"]);
|
|
644
992
|
this.disabled = computed(() => this.options()["disabled"]);
|
|
645
|
-
this.
|
|
646
|
-
|
|
647
|
-
handleValueChange(e) {
|
|
648
|
-
if (e.isUserInteraction) {
|
|
649
|
-
this.setValue(e.value);
|
|
650
|
-
}
|
|
993
|
+
this.readonly = computed(() => this.options()["readonly"]);
|
|
994
|
+
this.label = computed(() => this.options()["label"]);
|
|
651
995
|
}
|
|
652
996
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
653
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
654
|
-
<
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
997
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPCheckBoxWidgetEditComponent, isStandalone: true, selector: "axp-checkbox-widget-edit", usesInheritance: true, ngImport: i0, template: `
|
|
998
|
+
<ax-check-box [ngModel]="this.getValue()" [disabled]="disabled()" [readonly]="readonly()" (onValueChanged)="handleValueChanged($event)">
|
|
999
|
+
@if(label())
|
|
1000
|
+
{
|
|
1001
|
+
<ax-label >{{label()}}</ax-label>
|
|
1002
|
+
}
|
|
1003
|
+
</ax-check-box>
|
|
1004
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
658
1005
|
}
|
|
659
1006
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
|
|
660
1007
|
type: Component,
|
|
661
1008
|
args: [{
|
|
662
1009
|
selector: 'axp-checkbox-widget-edit',
|
|
663
1010
|
template: `
|
|
664
|
-
<
|
|
665
|
-
|
|
666
|
-
|
|
1011
|
+
<ax-check-box [ngModel]="this.getValue()" [disabled]="disabled()" [readonly]="readonly()" (onValueChanged)="handleValueChanged($event)">
|
|
1012
|
+
@if(label())
|
|
1013
|
+
{
|
|
1014
|
+
<ax-label >{{label()}}</ax-label>
|
|
1015
|
+
}
|
|
1016
|
+
</ax-check-box>
|
|
667
1017
|
`,
|
|
668
1018
|
standalone: true,
|
|
669
1019
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
670
|
-
imports: [CommonModule, AXCheckBoxModule, FormsModule,
|
|
1020
|
+
imports: [CommonModule, AXCheckBoxModule, FormsModule, AXLabelModule],
|
|
671
1021
|
}]
|
|
672
1022
|
}] });
|
|
673
1023
|
|
|
@@ -679,17 +1029,25 @@ var checkboxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
|
679
1029
|
const AXPCheckBoxWidget = {
|
|
680
1030
|
name: 'checkbox-editor',
|
|
681
1031
|
title: 'Check Box',
|
|
682
|
-
container: false,
|
|
683
1032
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
684
1033
|
description: 'Selects multiple options via checkboxes',
|
|
685
1034
|
icon: 'fa-solid fa-square-check',
|
|
686
|
-
|
|
1035
|
+
type: 'editor',
|
|
1036
|
+
properties: [
|
|
1037
|
+
AXP_NAME_PROPERTY,
|
|
1038
|
+
AXP_DATA_PATH_PROPERTY,
|
|
1039
|
+
AXP_LABEL_PROPERTY,
|
|
1040
|
+
AXP_READONLY_PROPERTY,
|
|
1041
|
+
AXP_DISABLED_PROPERTY,
|
|
1042
|
+
AXP_VALIDATION_PROPERTY,
|
|
1043
|
+
booleanDefaultProperty()
|
|
1044
|
+
],
|
|
687
1045
|
components: {
|
|
688
1046
|
designer: {
|
|
689
|
-
component: () =>
|
|
1047
|
+
component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-DAGbdSTk.mjs').then((c) => c.AXPCheckBoxWidgetDesignerComponent),
|
|
690
1048
|
},
|
|
691
1049
|
view: {
|
|
692
|
-
component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-
|
|
1050
|
+
component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-tPk6Gylo.mjs').then((c) => c.AXPCheckBoxWidgetViewComponent),
|
|
693
1051
|
},
|
|
694
1052
|
edit: {
|
|
695
1053
|
component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
|
|
@@ -853,7 +1211,7 @@ class popupComponent extends AXBasePageComponent {
|
|
|
853
1211
|
<ax-button [text]="'apply' | translate | async" color="primary" (onClick)="handleClose(form)"></ax-button>
|
|
854
1212
|
</ax-suffix>
|
|
855
1213
|
</ax-footer>
|
|
856
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$
|
|
1214
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$2.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$3.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i4$1.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }] }); }
|
|
857
1215
|
}
|
|
858
1216
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: popupComponent, decorators: [{
|
|
859
1217
|
type: Component,
|
|
@@ -1025,8 +1383,14 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1025
1383
|
value: '',
|
|
1026
1384
|
};
|
|
1027
1385
|
}
|
|
1386
|
+
get __class() {
|
|
1387
|
+
const cls = {};
|
|
1388
|
+
cls[`ax-block`] = true;
|
|
1389
|
+
cls[`ax-flex-1`] = true;
|
|
1390
|
+
return cls;
|
|
1391
|
+
}
|
|
1028
1392
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1029
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="lg:ax-grid lg:ax-grid-cols-12 lg:ax-gap-4">
|
|
1393
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<div class="lg:ax-grid lg:ax-grid-cols-12 lg:ax-gap-4">
|
|
1030
1394
|
@for(item of internalValue();track $index) {
|
|
1031
1395
|
<ax-text-box
|
|
1032
1396
|
[ngModel]="item.value"
|
|
@@ -1080,7 +1444,7 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1080
1444
|
</ax-prefix>
|
|
1081
1445
|
</ax-button>
|
|
1082
1446
|
}
|
|
1083
|
-
</div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
1447
|
+
</div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1084
1448
|
}
|
|
1085
1449
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, decorators: [{
|
|
1086
1450
|
type: Component,
|
|
@@ -1156,7 +1520,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
1156
1520
|
],
|
|
1157
1521
|
inputs: [],
|
|
1158
1522
|
}]
|
|
1159
|
-
}]
|
|
1523
|
+
}], propDecorators: { __class: [{
|
|
1524
|
+
type: HostBinding,
|
|
1525
|
+
args: ['class']
|
|
1526
|
+
}] } });
|
|
1160
1527
|
|
|
1161
1528
|
var contactWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1162
1529
|
__proto__: null,
|
|
@@ -1246,6 +1613,7 @@ const AXPContactWidget = {
|
|
|
1246
1613
|
description: 'Inputs contact information',
|
|
1247
1614
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
1248
1615
|
icon: 'fa-solid fa-address-book',
|
|
1616
|
+
type: 'editor',
|
|
1249
1617
|
properties: [
|
|
1250
1618
|
{
|
|
1251
1619
|
name: 'type',
|
|
@@ -1415,8 +1783,14 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1415
1783
|
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
1416
1784
|
this.setValue(newValues);
|
|
1417
1785
|
}
|
|
1786
|
+
get __class() {
|
|
1787
|
+
const cls = {};
|
|
1788
|
+
cls[`ax-block`] = true;
|
|
1789
|
+
cls[`ax-flex-1`] = true;
|
|
1790
|
+
return cls;
|
|
1791
|
+
}
|
|
1418
1792
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1419
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPDateTimeBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
1793
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPDateTimeBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1420
1794
|
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
1421
1795
|
@for (datetime of internalValue(); track $index) {
|
|
1422
1796
|
<ax-datetime-box
|
|
@@ -1447,7 +1821,7 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1447
1821
|
<ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()" [disabled]="disabled()"></ax-button>
|
|
1448
1822
|
}
|
|
1449
1823
|
</div>
|
|
1450
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
1824
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$2.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "holidayDates", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1451
1825
|
}
|
|
1452
1826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
|
|
1453
1827
|
type: Component,
|
|
@@ -1489,7 +1863,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
1489
1863
|
imports: [CommonModule, FormsModule, AXFormModule, AXValidationModule, AXDateTimeBoxModule, AXButtonModule, AXDecoratorModule, AXValidationModule],
|
|
1490
1864
|
inputs: [],
|
|
1491
1865
|
}]
|
|
1492
|
-
}]
|
|
1866
|
+
}], propDecorators: { __class: [{
|
|
1867
|
+
type: HostBinding,
|
|
1868
|
+
args: ['class']
|
|
1869
|
+
}] } });
|
|
1493
1870
|
|
|
1494
1871
|
var dateTimeBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1495
1872
|
__proto__: null,
|
|
@@ -1586,11 +1963,13 @@ const AXPDateTimeBoxWidget = {
|
|
|
1586
1963
|
description: 'Selects date and time',
|
|
1587
1964
|
icon: 'fa-solid fa-calendar',
|
|
1588
1965
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
1966
|
+
type: 'editor',
|
|
1589
1967
|
properties: [
|
|
1590
1968
|
AXP_NAME_PROPERTY,
|
|
1591
1969
|
AXP_DATA_PATH_PROPERTY,
|
|
1592
1970
|
AXP_ALLOW_MULTIPLE_PROPERTY,
|
|
1593
1971
|
AXP_DATE_FROMAT_PROPERTY,
|
|
1972
|
+
AXP_READONLY_PROPERTY,
|
|
1594
1973
|
AXP_DISABLED_PROPERTY,
|
|
1595
1974
|
AXP_VALIDATION_PROPERTY,
|
|
1596
1975
|
AXP_PLACEHOLDER_PROPERTY,
|
|
@@ -1677,7 +2056,7 @@ class AXPEmailBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
1677
2056
|
}
|
|
1678
2057
|
</ng-template>
|
|
1679
2058
|
</div>
|
|
1680
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
2059
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1681
2060
|
}
|
|
1682
2061
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, decorators: [{
|
|
1683
2062
|
type: Component,
|
|
@@ -1794,8 +2173,14 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1794
2173
|
const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
|
|
1795
2174
|
this.setValue(newValues);
|
|
1796
2175
|
}
|
|
2176
|
+
get __class() {
|
|
2177
|
+
const cls = {};
|
|
2178
|
+
cls[`ax-block`] = true;
|
|
2179
|
+
cls[`ax-flex-1`] = true;
|
|
2180
|
+
return cls;
|
|
2181
|
+
}
|
|
1797
2182
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1798
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPEmailBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2183
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPEmailBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1799
2184
|
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
1800
2185
|
@if(multiple())
|
|
1801
2186
|
{
|
|
@@ -1872,7 +2257,7 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
1872
2257
|
}
|
|
1873
2258
|
}
|
|
1874
2259
|
</div>
|
|
1875
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
2260
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1876
2261
|
}
|
|
1877
2262
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, decorators: [{
|
|
1878
2263
|
type: Component,
|
|
@@ -1960,7 +2345,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
1960
2345
|
imports: [CommonModule, FormsModule, AXFormModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule, AXValidationModule],
|
|
1961
2346
|
inputs: [],
|
|
1962
2347
|
}]
|
|
1963
|
-
}]
|
|
2348
|
+
}], propDecorators: { __class: [{
|
|
2349
|
+
type: HostBinding,
|
|
2350
|
+
args: ['class']
|
|
2351
|
+
}] } });
|
|
1964
2352
|
|
|
1965
2353
|
var emailBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1966
2354
|
__proto__: null,
|
|
@@ -2080,6 +2468,7 @@ const AXPEmailBoxWidget = {
|
|
|
2080
2468
|
description: 'Inputs and validates email addresses',
|
|
2081
2469
|
icon: 'fa-solid fa-envelope',
|
|
2082
2470
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
2471
|
+
type: 'editor',
|
|
2083
2472
|
properties: [
|
|
2084
2473
|
AXP_NAME_PROPERTY,
|
|
2085
2474
|
AXP_DATA_PATH_PROPERTY,
|
|
@@ -2158,8 +2547,14 @@ class AXPLargeTextWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2158
2547
|
set validationRules(v) {
|
|
2159
2548
|
this._validationRules = v;
|
|
2160
2549
|
}
|
|
2550
|
+
get __class() {
|
|
2551
|
+
const cls = {};
|
|
2552
|
+
cls[`ax-block`] = true;
|
|
2553
|
+
cls[`ax-flex-1`] = true;
|
|
2554
|
+
return cls;
|
|
2555
|
+
}
|
|
2161
2556
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2162
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLargeTextWidgetEditComponent, isStandalone: true, selector: "axp-large-text-box-widget", inputs: { disabled: "disabled", clearButton: "clearButton" }, usesInheritance: true, ngImport: i0, template: `
|
|
2557
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLargeTextWidgetEditComponent, isStandalone: true, selector: "axp-large-text-box-widget", inputs: { disabled: "disabled", clearButton: "clearButton" }, host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
2163
2558
|
<ax-text-area [disabled]="disabled()" [ngModel]="getValue()" (ngModelChange)="setValue($event)" [placeholder]="placeholder()">
|
|
2164
2559
|
@if(clearButton()){
|
|
2165
2560
|
<ax-clear-button></ax-clear-button>
|
|
@@ -2168,7 +2563,7 @@ class AXPLargeTextWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2168
2563
|
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
2169
2564
|
}
|
|
2170
2565
|
</ax-text-area>
|
|
2171
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
2566
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXTextAreaModule }, { kind: "component", type: i4$2.AXTextAreaComponent, selector: "ax-text-area", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "placeholder", "maxLength", "look", "rows", "allowResize", "showCounter"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2172
2567
|
}
|
|
2173
2568
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetEditComponent, decorators: [{
|
|
2174
2569
|
type: Component,
|
|
@@ -2189,7 +2584,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
2189
2584
|
imports: [CommonModule, AXDecoratorModule, FormsModule, AXFormModule, AXTextAreaModule],
|
|
2190
2585
|
inputs: ['disabled', 'clearButton'],
|
|
2191
2586
|
}]
|
|
2192
|
-
}]
|
|
2587
|
+
}], propDecorators: { __class: [{
|
|
2588
|
+
type: HostBinding,
|
|
2589
|
+
args: ['class']
|
|
2590
|
+
}] } });
|
|
2193
2591
|
|
|
2194
2592
|
var largeTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2195
2593
|
__proto__: null,
|
|
@@ -2266,6 +2664,7 @@ const AXPLargeTextWidget = {
|
|
|
2266
2664
|
description: 'Inputs long text entries',
|
|
2267
2665
|
icon: 'fa-solid fa-input-text',
|
|
2268
2666
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
2667
|
+
type: 'editor',
|
|
2269
2668
|
properties: [
|
|
2270
2669
|
AXP_NAME_PROPERTY,
|
|
2271
2670
|
AXP_DATA_PATH_PROPERTY,
|
|
@@ -2359,7 +2758,7 @@ class AXPLinkWidgetViewComponent extends AXPWidgetComponent {
|
|
|
2359
2758
|
</div>
|
|
2360
2759
|
}
|
|
2361
2760
|
</ng-template>
|
|
2362
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
2761
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2363
2762
|
}
|
|
2364
2763
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetViewComponent, decorators: [{
|
|
2365
2764
|
type: Component,
|
|
@@ -2577,8 +2976,14 @@ class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2577
2976
|
return [''];
|
|
2578
2977
|
}
|
|
2579
2978
|
}
|
|
2979
|
+
get __class() {
|
|
2980
|
+
const cls = {};
|
|
2981
|
+
cls[`ax-block`] = true;
|
|
2982
|
+
cls[`ax-flex-1`] = true;
|
|
2983
|
+
return cls;
|
|
2984
|
+
}
|
|
2580
2985
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2581
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLinkWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
2986
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLinkWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
2582
2987
|
@if(multiple()){ @for(item of internalValue();track $index) { @if(item){
|
|
2583
2988
|
<!-- TODO need to fix multiple -->
|
|
2584
2989
|
<ax-text-box
|
|
@@ -2669,7 +3074,7 @@ class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2669
3074
|
>
|
|
2670
3075
|
</ax-select-box>
|
|
2671
3076
|
} }
|
|
2672
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
3077
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2673
3078
|
}
|
|
2674
3079
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, decorators: [{
|
|
2675
3080
|
type: Component,
|
|
@@ -2781,7 +3186,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
2781
3186
|
],
|
|
2782
3187
|
inputs: [],
|
|
2783
3188
|
}]
|
|
2784
|
-
}]
|
|
3189
|
+
}], propDecorators: { __class: [{
|
|
3190
|
+
type: HostBinding,
|
|
3191
|
+
args: ['class']
|
|
3192
|
+
}] } });
|
|
2785
3193
|
|
|
2786
3194
|
var linkWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2787
3195
|
__proto__: null,
|
|
@@ -2854,6 +3262,7 @@ const AXPLinkWidget = {
|
|
|
2854
3262
|
description: 'Inputs and edits URLs',
|
|
2855
3263
|
icon: 'fa-solid fa-link',
|
|
2856
3264
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
3265
|
+
type: 'editor',
|
|
2857
3266
|
components: {
|
|
2858
3267
|
view: {
|
|
2859
3268
|
component: () => Promise.resolve().then(function () { return linkWidgetView_component; }).then((c) => c.AXPLinkWidgetViewComponent),
|
|
@@ -2936,7 +3345,7 @@ class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2936
3345
|
super(...arguments);
|
|
2937
3346
|
this.disabled = computed(() => this.options()["disabled"]);
|
|
2938
3347
|
this.multiple = computed(() => this.options()["multiple"]);
|
|
2939
|
-
this.clearButton = computed(() => this.options()["
|
|
3348
|
+
this.clearButton = computed(() => this.options()["hasClearButton"] ?? true);
|
|
2940
3349
|
this.decimals = computed(() => this.options()["decimals"] ?? 0);
|
|
2941
3350
|
this.minValue = computed(() => this.options()["minValue"]);
|
|
2942
3351
|
this.maxValue = computed(() => this.options()["maxValue"]);
|
|
@@ -2974,8 +3383,14 @@ class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
2974
3383
|
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
2975
3384
|
this.setValue(newValues);
|
|
2976
3385
|
}
|
|
3386
|
+
get __class() {
|
|
3387
|
+
const cls = {};
|
|
3388
|
+
cls[`ax-block`] = true;
|
|
3389
|
+
cls[`ax-flex-1`] = true;
|
|
3390
|
+
return cls;
|
|
3391
|
+
}
|
|
2977
3392
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2978
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPNumberBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3393
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPNumberBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
2979
3394
|
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
2980
3395
|
@for(number of internalValue(); track $index){
|
|
2981
3396
|
<ax-number-box
|
|
@@ -3018,7 +3433,7 @@ class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3018
3433
|
</ax-button>
|
|
3019
3434
|
}
|
|
3020
3435
|
</div>
|
|
3021
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$
|
|
3436
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$4.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "hasWheel", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3022
3437
|
}
|
|
3023
3438
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, decorators: [{
|
|
3024
3439
|
type: Component,
|
|
@@ -3071,7 +3486,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
3071
3486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3072
3487
|
imports: [CommonModule, AXNumberBoxModule, FormsModule, AXDecoratorModule, AXFormModule, AXButtonModule],
|
|
3073
3488
|
}]
|
|
3074
|
-
}]
|
|
3489
|
+
}], propDecorators: { __class: [{
|
|
3490
|
+
type: HostBinding,
|
|
3491
|
+
args: ['class']
|
|
3492
|
+
}] } });
|
|
3075
3493
|
|
|
3076
3494
|
var numberBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3077
3495
|
__proto__: null,
|
|
@@ -3161,6 +3579,7 @@ const AXPNumberBoxWidget = {
|
|
|
3161
3579
|
description: 'Inputs numeric values',
|
|
3162
3580
|
icon: 'fa-solid fa-input-numeric',
|
|
3163
3581
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
3582
|
+
type: 'editor',
|
|
3164
3583
|
properties: [
|
|
3165
3584
|
AXP_NAME_PROPERTY,
|
|
3166
3585
|
AXP_DATA_PATH_PROPERTY,
|
|
@@ -3274,20 +3693,21 @@ class AXPPasswordBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3274
3693
|
this.disabled = computed(() => this.options()['disabled']);
|
|
3275
3694
|
this.hasClearButton = computed(() => this.options()['hasClearButton']);
|
|
3276
3695
|
}
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3696
|
+
get __class() {
|
|
3697
|
+
const cls = {};
|
|
3698
|
+
cls[`ax-block`] = true;
|
|
3699
|
+
cls[`ax-flex-1`] = true;
|
|
3700
|
+
return cls;
|
|
3281
3701
|
}
|
|
3282
3702
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3283
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPasswordBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3703
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPasswordBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
3284
3704
|
<ax-password-box [ngModel]="getValue()" [disabled]="disabled()" (onValueChanged)="handleValueChanged($event)">
|
|
3285
3705
|
<ax-validation-rule rule="required"></ax-validation-rule>
|
|
3286
3706
|
@if(hasClearButton()){
|
|
3287
3707
|
<ax-clear-button></ax-clear-button>
|
|
3288
3708
|
}
|
|
3289
3709
|
</ax-password-box>
|
|
3290
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
3710
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$3.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3291
3711
|
}
|
|
3292
3712
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, decorators: [{
|
|
3293
3713
|
type: Component,
|
|
@@ -3305,7 +3725,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
3305
3725
|
imports: [CommonModule, FormsModule, AXDecoratorModule, AXPasswordBoxModule, AXValidationModule, AXFormModule],
|
|
3306
3726
|
inputs: [],
|
|
3307
3727
|
}]
|
|
3308
|
-
}]
|
|
3728
|
+
}], propDecorators: { __class: [{
|
|
3729
|
+
type: HostBinding,
|
|
3730
|
+
args: ['class']
|
|
3731
|
+
}] } });
|
|
3309
3732
|
|
|
3310
3733
|
var passwordBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3311
3734
|
__proto__: null,
|
|
@@ -3378,6 +3801,7 @@ const AXPPasswordBoxWidget = {
|
|
|
3378
3801
|
description: 'Secures password input',
|
|
3379
3802
|
icon: 'fa-solid fa-lock',
|
|
3380
3803
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
3804
|
+
type: 'editor',
|
|
3381
3805
|
properties: [
|
|
3382
3806
|
AXP_NAME_PROPERTY,
|
|
3383
3807
|
AXP_VALIDATION_PROPERTY,
|
|
@@ -3468,7 +3892,7 @@ class AXPPhoneBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
3468
3892
|
</ng-container>
|
|
3469
3893
|
</ng-template>
|
|
3470
3894
|
</div>
|
|
3471
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
3895
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$1.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3472
3896
|
}
|
|
3473
3897
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, decorators: [{
|
|
3474
3898
|
type: Component,
|
|
@@ -3573,8 +3997,14 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3573
3997
|
const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
|
|
3574
3998
|
this.setValue(newValues);
|
|
3575
3999
|
}
|
|
4000
|
+
get __class() {
|
|
4001
|
+
const cls = {};
|
|
4002
|
+
cls[`ax-block`] = true;
|
|
4003
|
+
cls[`ax-flex-1`] = true;
|
|
4004
|
+
return cls;
|
|
4005
|
+
}
|
|
3576
4006
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3577
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPhoneBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
4007
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPhoneBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
3578
4008
|
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
3579
4009
|
<ng-container *ngIf="multiple()">
|
|
3580
4010
|
@for(item of internalValue();track $index) {
|
|
@@ -3642,7 +4072,7 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3642
4072
|
</ax-prefix>
|
|
3643
4073
|
</ax-button>
|
|
3644
4074
|
</div>
|
|
3645
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
4075
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3646
4076
|
}
|
|
3647
4077
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, decorators: [{
|
|
3648
4078
|
type: Component,
|
|
@@ -3721,7 +4151,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
3721
4151
|
imports: [CommonModule, FormsModule, AXFormModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule, AXValidationModule],
|
|
3722
4152
|
inputs: [],
|
|
3723
4153
|
}]
|
|
3724
|
-
}]
|
|
4154
|
+
}], propDecorators: { __class: [{
|
|
4155
|
+
type: HostBinding,
|
|
4156
|
+
args: ['class']
|
|
4157
|
+
}] } });
|
|
3725
4158
|
|
|
3726
4159
|
var phoneBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3727
4160
|
__proto__: null,
|
|
@@ -3841,6 +4274,7 @@ const AXPPhoneBoxWidget = {
|
|
|
3841
4274
|
description: 'Inputs and validates phone numbers',
|
|
3842
4275
|
icon: 'fa-solid fa-input-numeric',
|
|
3843
4276
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
4277
|
+
type: 'editor',
|
|
3844
4278
|
properties: [AXP_HAS_LABEL_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY],
|
|
3845
4279
|
components: {
|
|
3846
4280
|
view: {
|
|
@@ -3922,8 +4356,14 @@ class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3922
4356
|
set validationRules(v) {
|
|
3923
4357
|
this._validationRules = v;
|
|
3924
4358
|
}
|
|
4359
|
+
get __class() {
|
|
4360
|
+
const cls = {};
|
|
4361
|
+
cls[`ax-block`] = true;
|
|
4362
|
+
cls[`ax-flex-1`] = true;
|
|
4363
|
+
return cls;
|
|
4364
|
+
}
|
|
3925
4365
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRichTextWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3926
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "axp-rich-text-widget", usesInheritance: true, ngImport: i0, template: `<ax-wysiwyg-container [look]="'solid'" [ngModel]="getValue()" (ngModelChange)="setNgModel($event)" >
|
|
4366
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "axp-rich-text-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-wysiwyg-container [look]="'solid'" [ngModel]="getValue()" (ngModelChange)="setNgModel($event)" >
|
|
3927
4367
|
<ax-wysiwyg-view class="ax-min-h-28"></ax-wysiwyg-view>
|
|
3928
4368
|
<ax-wysiwyg-toolbar>
|
|
3929
4369
|
<ax-wysiwyg-history></ax-wysiwyg-history>
|
|
@@ -3936,7 +4376,7 @@ class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
|
|
|
3936
4376
|
@for (validation of validationRules; track $index) {
|
|
3937
4377
|
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
3938
4378
|
}
|
|
3939
|
-
</ax-wysiwyg-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXWysiwygModule }, { kind: "component", type: i1$
|
|
4379
|
+
</ax-wysiwyg-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXWysiwygModule }, { kind: "component", type: i1$5.AXWysiwygContainerComponent, selector: "ax-wysiwyg-container", inputs: ["look"], outputs: ["onValueChanged"] }, { kind: "component", type: i1$5.AXWysiwygViewComponent, selector: "ax-wysiwyg-view", inputs: ["class"] }, { kind: "component", type: i1$5.AXWysiwygToolbarComponent, selector: "ax-wysiwyg-toolbar" }, { kind: "component", type: i1$5.AXWysiwygAlignmentComponent, selector: "ax-wysiwyg-alignment" }, { kind: "component", type: i1$5.AXWysiwygColorsComponent, selector: "ax-wysiwyg-colors" }, { kind: "component", type: i1$5.AXWysiwygFontStyleComponent, selector: "ax-wysiwyg-font-style" }, { kind: "component", type: i1$5.AXWysiwygHistoryComponent, selector: "ax-wysiwyg-history" }, { kind: "component", type: i1$5.AXWysiwygInsertComponent, selector: "ax-wysiwyg-insert" }, { kind: "component", type: i1$5.AXWysiwygListComponent, selector: "ax-wysiwyg-list" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
3940
4380
|
}
|
|
3941
4381
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRichTextWidgetEditComponent, decorators: [{
|
|
3942
4382
|
type: Component,
|
|
@@ -3962,7 +4402,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
3962
4402
|
imports: [CommonModule, AXWysiwygModule, AXValidationModule, AXFormModule, FormsModule],
|
|
3963
4403
|
inputs: [],
|
|
3964
4404
|
}]
|
|
3965
|
-
}]
|
|
4405
|
+
}], propDecorators: { __class: [{
|
|
4406
|
+
type: HostBinding,
|
|
4407
|
+
args: ['class']
|
|
4408
|
+
}] } });
|
|
3966
4409
|
|
|
3967
4410
|
var richTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3968
4411
|
__proto__: null,
|
|
@@ -4057,6 +4500,7 @@ const AXPRichTextWidget = {
|
|
|
4057
4500
|
description: 'Formats and edits rich text',
|
|
4058
4501
|
icon: 'fa-solid fa-input-text',
|
|
4059
4502
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
4503
|
+
type: 'editor',
|
|
4060
4504
|
properties: [
|
|
4061
4505
|
AXP_NAME_PROPERTY,
|
|
4062
4506
|
AXP_DATA_PATH_PROPERTY,
|
|
@@ -4108,8 +4552,14 @@ class AXPSelectBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
4108
4552
|
text: item,
|
|
4109
4553
|
};
|
|
4110
4554
|
}
|
|
4555
|
+
get __class() {
|
|
4556
|
+
const cls = {};
|
|
4557
|
+
cls[`ax-block`] = true;
|
|
4558
|
+
cls[`ax-flex-1`] = true;
|
|
4559
|
+
return cls;
|
|
4560
|
+
}
|
|
4111
4561
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4112
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
4562
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4113
4563
|
<div>
|
|
4114
4564
|
@if(multiple())
|
|
4115
4565
|
{
|
|
@@ -4142,7 +4592,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
4142
4592
|
imports: [CommonModule],
|
|
4143
4593
|
inputs: [],
|
|
4144
4594
|
}]
|
|
4145
|
-
}]
|
|
4595
|
+
}], propDecorators: { __class: [{
|
|
4596
|
+
type: HostBinding,
|
|
4597
|
+
args: ['class']
|
|
4598
|
+
}] } });
|
|
4146
4599
|
|
|
4147
4600
|
var selectBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
4148
4601
|
__proto__: null,
|
|
@@ -4153,7 +4606,18 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4153
4606
|
constructor() {
|
|
4154
4607
|
super(...arguments);
|
|
4155
4608
|
this.multiple = computed(() => this.options()['multiple']);
|
|
4156
|
-
this.dataSource = computed(() =>
|
|
4609
|
+
this.dataSource = computed(() => {
|
|
4610
|
+
const rawValue = this.options()['dataSource'];
|
|
4611
|
+
if (rawValue instanceof AXDataSource) {
|
|
4612
|
+
return rawValue;
|
|
4613
|
+
}
|
|
4614
|
+
else if (Array.isArray(rawValue)) {
|
|
4615
|
+
return convertArrayToDataSource(rawValue);
|
|
4616
|
+
}
|
|
4617
|
+
else {
|
|
4618
|
+
return convertArrayToDataSource([]);
|
|
4619
|
+
}
|
|
4620
|
+
});
|
|
4157
4621
|
this.valueField = computed(() => this.options()['valueField'] ?? 'id');
|
|
4158
4622
|
this.textField = computed(() => this.options()['textField'] ?? 'title');
|
|
4159
4623
|
this.disabled = computed(() => this.options()['disabled']);
|
|
@@ -4172,8 +4636,14 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4172
4636
|
this.selectbox?.reset(true);
|
|
4173
4637
|
this.selectbox?.refresh();
|
|
4174
4638
|
}
|
|
4639
|
+
get __class() {
|
|
4640
|
+
const cls = {};
|
|
4641
|
+
cls[`ax-block`] = true;
|
|
4642
|
+
cls[`ax-flex-1`] = true;
|
|
4643
|
+
return cls;
|
|
4644
|
+
}
|
|
4175
4645
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4176
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4646
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", host: { properties: { "class": "this.__class" } }, viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4177
4647
|
<ax-select-box
|
|
4178
4648
|
#dd
|
|
4179
4649
|
[placeholder]="placeholder()"
|
|
@@ -4190,7 +4660,7 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4190
4660
|
<ax-clear-button></ax-clear-button>
|
|
4191
4661
|
}
|
|
4192
4662
|
</ax-select-box>
|
|
4193
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
4663
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4194
4664
|
}
|
|
4195
4665
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, decorators: [{
|
|
4196
4666
|
type: Component,
|
|
@@ -4222,6 +4692,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
4222
4692
|
}], propDecorators: { selectbox: [{
|
|
4223
4693
|
type: ViewChild,
|
|
4224
4694
|
args: [AXSelectBoxComponent]
|
|
4695
|
+
}], __class: [{
|
|
4696
|
+
type: HostBinding,
|
|
4697
|
+
args: ['class']
|
|
4225
4698
|
}] } });
|
|
4226
4699
|
|
|
4227
4700
|
var selectBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
@@ -4295,6 +4768,7 @@ const AXPSelectBoxWidget = {
|
|
|
4295
4768
|
description: 'Chooses from dropdown options',
|
|
4296
4769
|
icon: 'fa-solid fa-list-dropdown',
|
|
4297
4770
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
4771
|
+
type: 'editor',
|
|
4298
4772
|
properties: [
|
|
4299
4773
|
AXP_ALLOW_MULTIPLE_PROPERTY,
|
|
4300
4774
|
AXP_DISABLED_PROPERTY,
|
|
@@ -4343,7 +4817,7 @@ class AXPSelectionListWidgetViewComponent extends AXPWidgetComponent {
|
|
|
4343
4817
|
});
|
|
4344
4818
|
}
|
|
4345
4819
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4346
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component",
|
|
4820
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
4347
4821
|
@for (item of internalValue(); track $index) {
|
|
4348
4822
|
<ax-badge [class]="'ax-ms-1'" [look]="'twotone'" [text]="item[this.textField()]" color="primary"></ax-badge>
|
|
4349
4823
|
}
|
|
@@ -4360,7 +4834,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
4360
4834
|
standalone: true,
|
|
4361
4835
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4362
4836
|
imports: [AXBadgeModule],
|
|
4363
|
-
inputs: ['items', 'valueField', 'textField', 'direction'],
|
|
4364
4837
|
}]
|
|
4365
4838
|
}] });
|
|
4366
4839
|
|
|
@@ -4369,26 +4842,102 @@ var selectionListWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
|
4369
4842
|
AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent
|
|
4370
4843
|
});
|
|
4371
4844
|
|
|
4845
|
+
class AXPSelectionListWidgetDesignerComponent extends AXPWidgetComponent {
|
|
4846
|
+
constructor() {
|
|
4847
|
+
super(...arguments);
|
|
4848
|
+
this.samples = computed(() => Array.from({ length: 5 }).map((c, i) => {
|
|
4849
|
+
const item = {};
|
|
4850
|
+
item[this.valueField()] = i + 1;
|
|
4851
|
+
item[this.textField()] = `Item ${i + 1}`;
|
|
4852
|
+
return item;
|
|
4853
|
+
}));
|
|
4854
|
+
this.multiple = computed(() => this.options()['multiple']);
|
|
4855
|
+
this.items = computed(() => this.options()['items'] ?? this.samples());
|
|
4856
|
+
this.valueField = computed(() => this.options()['valueField'] ?? 'id');
|
|
4857
|
+
this.textField = computed(() => this.options()['textField'] ?? 'text');
|
|
4858
|
+
this.direction = computed(() => this.options()['direction']?.id ?? 'horizontal');
|
|
4859
|
+
this.disabled = computed(() => this.options()["disabled"]);
|
|
4860
|
+
this.readonly = computed(() => this.options()["readonly"]);
|
|
4861
|
+
}
|
|
4862
|
+
get __class() {
|
|
4863
|
+
const cls = {};
|
|
4864
|
+
cls[`ax-block`] = true;
|
|
4865
|
+
cls[`ax-flex-1`] = true;
|
|
4866
|
+
return cls;
|
|
4867
|
+
}
|
|
4868
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4869
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSelectionListWidgetDesignerComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4870
|
+
<ax-selection-list
|
|
4871
|
+
class="ax-w-max"
|
|
4872
|
+
[valueField]="valueField()"
|
|
4873
|
+
[textField]="textField()"
|
|
4874
|
+
[ngModel]="this.getValue()"
|
|
4875
|
+
[items]="items()"
|
|
4876
|
+
[multiple]="multiple()"
|
|
4877
|
+
[direction]="direction()"
|
|
4878
|
+
[disabled]="disabled()"
|
|
4879
|
+
[readonly]="readonly()"
|
|
4880
|
+
>
|
|
4881
|
+
</ax-selection-list>
|
|
4882
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$2.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4883
|
+
}
|
|
4884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, decorators: [{
|
|
4885
|
+
type: Component,
|
|
4886
|
+
args: [{
|
|
4887
|
+
template: `
|
|
4888
|
+
<ax-selection-list
|
|
4889
|
+
class="ax-w-max"
|
|
4890
|
+
[valueField]="valueField()"
|
|
4891
|
+
[textField]="textField()"
|
|
4892
|
+
[ngModel]="this.getValue()"
|
|
4893
|
+
[items]="items()"
|
|
4894
|
+
[multiple]="multiple()"
|
|
4895
|
+
[direction]="direction()"
|
|
4896
|
+
[disabled]="disabled()"
|
|
4897
|
+
[readonly]="readonly()"
|
|
4898
|
+
>
|
|
4899
|
+
</ax-selection-list>
|
|
4900
|
+
`,
|
|
4901
|
+
standalone: true,
|
|
4902
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4903
|
+
imports: [CommonModule, FormsModule, AXSelectionListModule, AXFormModule],
|
|
4904
|
+
inputs: [],
|
|
4905
|
+
}]
|
|
4906
|
+
}], propDecorators: { __class: [{
|
|
4907
|
+
type: HostBinding,
|
|
4908
|
+
args: ['class']
|
|
4909
|
+
}] } });
|
|
4910
|
+
|
|
4911
|
+
var selectionListWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
4912
|
+
__proto__: null,
|
|
4913
|
+
AXPSelectionListWidgetDesignerComponent: AXPSelectionListWidgetDesignerComponent
|
|
4914
|
+
});
|
|
4915
|
+
|
|
4372
4916
|
class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
|
|
4373
4917
|
constructor() {
|
|
4374
4918
|
super(...arguments);
|
|
4375
4919
|
this.multiple = computed(() => this.options()['multiple']);
|
|
4376
4920
|
this.items = computed(() => this.options()['items']);
|
|
4377
|
-
this.valueField = computed(() => this.options()['valueField']);
|
|
4378
|
-
this.textField = computed(() => this.options()['textField']);
|
|
4379
|
-
this.direction = computed(() => this.options()['direction']);
|
|
4380
|
-
this.
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
return this._validationRules;
|
|
4921
|
+
this.valueField = computed(() => this.options()['valueField'] ?? 'id');
|
|
4922
|
+
this.textField = computed(() => this.options()['textField'] ?? 'text');
|
|
4923
|
+
this.direction = computed(() => this.options()['direction']?.id ?? 'horizontal');
|
|
4924
|
+
this.disabled = computed(() => this.options()["disabled"]);
|
|
4925
|
+
this.readonly = computed(() => this.options()["readonly"]);
|
|
4926
|
+
this.validationRules = computed(() => this.options()["validationRules"] ?? []);
|
|
4384
4927
|
}
|
|
4385
4928
|
handleValueChange(e) {
|
|
4386
4929
|
if (e.isUserInteraction) {
|
|
4387
4930
|
this.setValue(e.value);
|
|
4388
4931
|
}
|
|
4389
4932
|
}
|
|
4933
|
+
get __class() {
|
|
4934
|
+
const cls = {};
|
|
4935
|
+
cls[`ax-block`] = true;
|
|
4936
|
+
cls[`ax-flex-1`] = true;
|
|
4937
|
+
return cls;
|
|
4938
|
+
}
|
|
4390
4939
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4391
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
4940
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4392
4941
|
<ax-selection-list
|
|
4393
4942
|
class="ax-w-max"
|
|
4394
4943
|
[valueField]="valueField()"
|
|
@@ -4397,13 +4946,15 @@ class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4397
4946
|
(onValueChanged)="handleValueChange($event)"
|
|
4398
4947
|
[items]="items()"
|
|
4399
4948
|
[multiple]="multiple()"
|
|
4949
|
+
[disabled]="disabled()"
|
|
4950
|
+
[readonly]="readonly()"
|
|
4400
4951
|
[direction]="direction()"
|
|
4401
4952
|
>
|
|
4402
|
-
@for (validation of validationRules; track $index) {
|
|
4953
|
+
@for (validation of validationRules(); track $index) {
|
|
4403
4954
|
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
4404
4955
|
}
|
|
4405
4956
|
</ax-selection-list>
|
|
4406
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
4957
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$2.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4407
4958
|
}
|
|
4408
4959
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
|
|
4409
4960
|
type: Component,
|
|
@@ -4417,9 +4968,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
4417
4968
|
(onValueChanged)="handleValueChange($event)"
|
|
4418
4969
|
[items]="items()"
|
|
4419
4970
|
[multiple]="multiple()"
|
|
4971
|
+
[disabled]="disabled()"
|
|
4972
|
+
[readonly]="readonly()"
|
|
4420
4973
|
[direction]="direction()"
|
|
4421
4974
|
>
|
|
4422
|
-
@for (validation of validationRules; track $index) {
|
|
4975
|
+
@for (validation of validationRules(); track $index) {
|
|
4423
4976
|
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
4424
4977
|
}
|
|
4425
4978
|
</ax-selection-list>
|
|
@@ -4429,7 +4982,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
4429
4982
|
imports: [CommonModule, FormsModule, AXSelectionListModule, AXFormModule],
|
|
4430
4983
|
inputs: [],
|
|
4431
4984
|
}]
|
|
4432
|
-
}]
|
|
4985
|
+
}], propDecorators: { __class: [{
|
|
4986
|
+
type: HostBinding,
|
|
4987
|
+
args: ['class']
|
|
4988
|
+
}] } });
|
|
4433
4989
|
|
|
4434
4990
|
var selectionListWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
4435
4991
|
__proto__: null,
|
|
@@ -4522,6 +5078,18 @@ const AXPSelectionListWidget = {
|
|
|
4522
5078
|
description: 'Selects from a list',
|
|
4523
5079
|
icon: 'fa-solid fa-list-radio',
|
|
4524
5080
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
5081
|
+
properties: [
|
|
5082
|
+
AXP_DATA_SOURCE_PROPERTY,
|
|
5083
|
+
AXP_NAME_PROPERTY,
|
|
5084
|
+
AXP_DATA_PATH_PROPERTY,
|
|
5085
|
+
AXP_ALLOW_MULTIPLE_PROPERTY,
|
|
5086
|
+
AXP_DIRECTION_PROPERTY,
|
|
5087
|
+
AXP_DISABLED_PROPERTY,
|
|
5088
|
+
AXP_READONLY_PROPERTY,
|
|
5089
|
+
AXP_VALIDATION_PROPERTY,
|
|
5090
|
+
cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: '200px' } }),
|
|
5091
|
+
],
|
|
5092
|
+
type: 'editor',
|
|
4525
5093
|
components: {
|
|
4526
5094
|
view: {
|
|
4527
5095
|
component: () => Promise.resolve().then(function () { return selectionListWidgetView_component; }).then((c) => c.AXPSelectionListWidgetViewComponent),
|
|
@@ -4539,7 +5107,7 @@ const AXPSelectionListWidget = {
|
|
|
4539
5107
|
component: () => Promise.resolve().then(function () { return selectionListWidgetPrint_component; }).then((c) => c.AXPSelectionListWidgetPrintComponent),
|
|
4540
5108
|
},
|
|
4541
5109
|
designer: {
|
|
4542
|
-
component: () => Promise.resolve().then(function () { return
|
|
5110
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetDesigner_component; }).then((c) => c.AXPSelectionListWidgetDesignerComponent),
|
|
4543
5111
|
},
|
|
4544
5112
|
},
|
|
4545
5113
|
};
|
|
@@ -4621,8 +5189,14 @@ class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4621
5189
|
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
4622
5190
|
this.setValue(newValues);
|
|
4623
5191
|
}
|
|
5192
|
+
get __class() {
|
|
5193
|
+
const cls = {};
|
|
5194
|
+
cls[`ax-block`] = true;
|
|
5195
|
+
cls[`ax-flex-1`] = true;
|
|
5196
|
+
return cls;
|
|
5197
|
+
}
|
|
4624
5198
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4625
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPTextBoxWidgetEditComponent, isStandalone: true, selector: "axp-text-box-widget", usesInheritance: true, ngImport: i0, template: `
|
|
5199
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPTextBoxWidgetEditComponent, isStandalone: true, selector: "axp-text-box-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
4626
5200
|
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
4627
5201
|
@for (text of internalValue(); track $index) {
|
|
4628
5202
|
<ax-text-box class="ax-col-span-12" [ngModel]="text" [type]="'text'" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled()" [placeholder]="placeholder()">
|
|
@@ -4653,7 +5227,7 @@ class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4653
5227
|
</ax-button>
|
|
4654
5228
|
}
|
|
4655
5229
|
</div>
|
|
4656
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
5230
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4657
5231
|
}
|
|
4658
5232
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetEditComponent, decorators: [{
|
|
4659
5233
|
type: Component,
|
|
@@ -4696,7 +5270,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
4696
5270
|
imports: [CommonModule, AXTextBoxModule, FormsModule, AXFormModule, AXDecoratorModule, AXValidationModule, AXButtonModule],
|
|
4697
5271
|
inputs: [],
|
|
4698
5272
|
}]
|
|
4699
|
-
}]
|
|
5273
|
+
}], propDecorators: { __class: [{
|
|
5274
|
+
type: HostBinding,
|
|
5275
|
+
args: ['class']
|
|
5276
|
+
}] } });
|
|
4700
5277
|
|
|
4701
5278
|
var textBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
4702
5279
|
__proto__: null,
|
|
@@ -4770,6 +5347,7 @@ const AXPTextBoxWidget = {
|
|
|
4770
5347
|
icon: 'fa-solid fa-input-text',
|
|
4771
5348
|
description: 'Inputs single-line text',
|
|
4772
5349
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
5350
|
+
type: 'editor',
|
|
4773
5351
|
properties: [
|
|
4774
5352
|
AXP_NAME_PROPERTY,
|
|
4775
5353
|
AXP_DATA_PATH_PROPERTY,
|
|
@@ -4862,19 +5440,29 @@ class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
|
|
|
4862
5440
|
onModelChange(e) {
|
|
4863
5441
|
this.setValue(e);
|
|
4864
5442
|
}
|
|
5443
|
+
get __class() {
|
|
5444
|
+
const cls = {};
|
|
5445
|
+
//
|
|
5446
|
+
cls['ax-inline'] = true;
|
|
5447
|
+
return cls;
|
|
5448
|
+
}
|
|
4865
5449
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4866
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "
|
|
5450
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "axp-swith-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `<ax-switch [ngModel]="this.getValue()" [disabled]="disabled()" [color]="color()" (ngModelChange)="onModelChange($event)"></ax-switch>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSwitchModule }, { kind: "component", type: i2$3.AXSwitchComponent, selector: "ax-switch", inputs: ["disabled", "readonly", "color", "tabIndex", "value", "name", "isLoading"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4867
5451
|
}
|
|
4868
5452
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, decorators: [{
|
|
4869
5453
|
type: Component,
|
|
4870
5454
|
args: [{
|
|
5455
|
+
selector: 'axp-swith-widget',
|
|
4871
5456
|
template: `<ax-switch [ngModel]="this.getValue()" [disabled]="disabled()" [color]="color()" (ngModelChange)="onModelChange($event)"></ax-switch>`,
|
|
4872
5457
|
standalone: true,
|
|
4873
5458
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4874
5459
|
imports: [CommonModule, FormsModule, AXSwitchModule],
|
|
4875
5460
|
inputs: [],
|
|
4876
5461
|
}]
|
|
4877
|
-
}]
|
|
5462
|
+
}], propDecorators: { __class: [{
|
|
5463
|
+
type: HostBinding,
|
|
5464
|
+
args: ['class']
|
|
5465
|
+
}] } });
|
|
4878
5466
|
|
|
4879
5467
|
var toggleWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
4880
5468
|
__proto__: null,
|
|
@@ -4977,6 +5565,7 @@ const AXPToggleWidget = {
|
|
|
4977
5565
|
description: 'Switches between on/off states',
|
|
4978
5566
|
icon: 'fa-solid fa-toggle-on',
|
|
4979
5567
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
5568
|
+
type: 'editor',
|
|
4980
5569
|
properties: [
|
|
4981
5570
|
AXP_NAME_PROPERTY,
|
|
4982
5571
|
AXP_DATA_PATH_PROPERTY,
|
|
@@ -5102,8 +5691,14 @@ class AXPFileBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
|
5102
5691
|
return { icon: 'fa-file', color: 'ax-bg-gray-100 ax-text-gray-500' };
|
|
5103
5692
|
}
|
|
5104
5693
|
}
|
|
5694
|
+
get __class() {
|
|
5695
|
+
const cls = {};
|
|
5696
|
+
cls[`ax-block`] = true;
|
|
5697
|
+
cls[`ax-flex-1`] = true;
|
|
5698
|
+
return cls;
|
|
5699
|
+
}
|
|
5105
5700
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFileBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5106
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPFileBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
5701
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPFileBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
5107
5702
|
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
5108
5703
|
<div class="ax-col-span-12">
|
|
5109
5704
|
<ax-uploader-drop-zone
|
|
@@ -5142,7 +5737,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
5142
5737
|
imports: [CommonModule, FormsModule, AXButtonModule, AXDecoratorModule, AXUploaderModule],
|
|
5143
5738
|
inputs: [],
|
|
5144
5739
|
}]
|
|
5145
|
-
}]
|
|
5740
|
+
}], propDecorators: { __class: [{
|
|
5741
|
+
type: HostBinding,
|
|
5742
|
+
args: ['class']
|
|
5743
|
+
}] } });
|
|
5146
5744
|
|
|
5147
5745
|
var fileBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
5148
5746
|
__proto__: null,
|
|
@@ -5345,7 +5943,7 @@ class AXPFileBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
|
5345
5943
|
</div>
|
|
5346
5944
|
</ng-template>
|
|
5347
5945
|
</div>
|
|
5348
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
5946
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5349
5947
|
}
|
|
5350
5948
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFileBoxWidgetViewComponent, decorators: [{
|
|
5351
5949
|
type: Component,
|
|
@@ -5402,6 +6000,7 @@ const AXPFileBoxWidget = {
|
|
|
5402
6000
|
description: 'Uploads and manages files',
|
|
5403
6001
|
icon: 'fa-solid fa-files',
|
|
5404
6002
|
group: AXP_WIDGETS_ADVANCE_GROUP,
|
|
6003
|
+
type: 'editor',
|
|
5405
6004
|
properties: [
|
|
5406
6005
|
AXP_NAME_PROPERTY,
|
|
5407
6006
|
AXP_VALIDATION_PROPERTY,
|
|
@@ -5533,7 +6132,7 @@ class AXPGalleryWidgetViewComponent extends AXPWidgetComponent {
|
|
|
5533
6132
|
<small>No Media!</small>
|
|
5534
6133
|
}
|
|
5535
6134
|
</div>
|
|
5536
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
6135
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$4.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5537
6136
|
}
|
|
5538
6137
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
|
|
5539
6138
|
type: Component,
|
|
@@ -5638,8 +6237,14 @@ class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
|
|
|
5638
6237
|
return { icon: '', format: 'image' };
|
|
5639
6238
|
}
|
|
5640
6239
|
}
|
|
6240
|
+
get __class() {
|
|
6241
|
+
const cls = {};
|
|
6242
|
+
cls[`ax-block`] = true;
|
|
6243
|
+
cls[`ax-flex-1`] = true;
|
|
6244
|
+
return cls;
|
|
6245
|
+
}
|
|
5641
6246
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5642
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGalleryWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
6247
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGalleryWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
5643
6248
|
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
5644
6249
|
@if(internalValue().length){
|
|
5645
6250
|
<div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
|
|
@@ -5692,7 +6297,7 @@ class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
|
|
|
5692
6297
|
|
|
5693
6298
|
}
|
|
5694
6299
|
</div>
|
|
5695
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$
|
|
6300
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$4.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "component", type: i5$1.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone", inputs: ["description"] }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple", "accept"], outputs: ["onChanged", "onFileUploadComplete", "onFilesUploadComplete"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5696
6301
|
}
|
|
5697
6302
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetEditComponent, decorators: [{
|
|
5698
6303
|
type: Component,
|
|
@@ -5756,7 +6361,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
5756
6361
|
imports: [CommonModule, FormsModule, AXImageModule, AXDecoratorModule, AXLoadingModule, AXUploaderModule],
|
|
5757
6362
|
inputs: [],
|
|
5758
6363
|
}]
|
|
5759
|
-
}]
|
|
6364
|
+
}], propDecorators: { __class: [{
|
|
6365
|
+
type: HostBinding,
|
|
6366
|
+
args: ['class']
|
|
6367
|
+
}] } });
|
|
5760
6368
|
|
|
5761
6369
|
var galleryWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
5762
6370
|
__proto__: null,
|
|
@@ -5829,6 +6437,7 @@ const AXPGalleryWidget = {
|
|
|
5829
6437
|
description: 'Shows and edits image galleries',
|
|
5830
6438
|
icon: 'fa-solid fa-images',
|
|
5831
6439
|
group: AXP_WIDGETS_ADVANCE_GROUP,
|
|
6440
|
+
type: 'editor',
|
|
5832
6441
|
components: {
|
|
5833
6442
|
view: {
|
|
5834
6443
|
component: () => Promise.resolve().then(function () { return galleryWidgetView_component; }).then((c) => c.AXPGalleryWidgetViewComponent),
|
|
@@ -5854,63 +6463,48 @@ const AXPGalleryWidget = {
|
|
|
5854
6463
|
class AXPMapBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
5855
6464
|
constructor() {
|
|
5856
6465
|
super(...arguments);
|
|
5857
|
-
this.
|
|
5858
|
-
|
|
5859
|
-
|
|
5860
|
-
|
|
5861
|
-
|
|
5862
|
-
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5867
|
-
marker.bindPopup(location.title);
|
|
5868
|
-
}
|
|
5869
|
-
this.featuresGroup.addLayer(marker);
|
|
5870
|
-
}
|
|
5871
|
-
updateMarkers() {
|
|
5872
|
-
if (this.getValue()) {
|
|
5873
|
-
this.featuresGroup.clearLayers();
|
|
5874
|
-
this.getValue().forEach((location) => {
|
|
5875
|
-
this.addMarker(location, this.leaflet);
|
|
5876
|
-
});
|
|
5877
|
-
this.map.fitBounds(this.featuresGroup.getBounds(), { padding: [50, 50] });
|
|
5878
|
-
}
|
|
5879
|
-
}
|
|
5880
|
-
async initMap() {
|
|
5881
|
-
const leaflet = await import('leaflet');
|
|
5882
|
-
this.leaflet = leaflet;
|
|
5883
|
-
this.featuresGroup = new leaflet.FeatureGroup();
|
|
5884
|
-
this.map = leaflet.map(this.mapEl.nativeElement, {
|
|
5885
|
-
center: [20, 0],
|
|
5886
|
-
zoom: 2,
|
|
5887
|
-
minZoom: 1,
|
|
5888
|
-
maxZoom: 10,
|
|
5889
|
-
worldCopyJump: true,
|
|
6466
|
+
this.markers = computed(() => this.getValue());
|
|
6467
|
+
this.height = computed(() => this.options()['height'] ?? 300);
|
|
6468
|
+
this.zoomLevel = computed(() => this.options()['zoomLevel'] ?? 13);
|
|
6469
|
+
this.initialLocation = computed(() => this.options()['initialLocation'] ?? { latitude: 51.505, longitude: -0.09 }, {
|
|
6470
|
+
equal: (a, b) => {
|
|
6471
|
+
if (a.latitude === b.latitude && a.longitude === b.longitude)
|
|
6472
|
+
return true;
|
|
6473
|
+
else
|
|
6474
|
+
return false;
|
|
6475
|
+
},
|
|
5890
6476
|
});
|
|
5891
|
-
leaflet
|
|
5892
|
-
.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
5893
|
-
maxZoom: 10,
|
|
5894
|
-
attribution: '© acorex platform',
|
|
5895
|
-
})
|
|
5896
|
-
.addTo(this.map);
|
|
5897
|
-
this.updateMarkers();
|
|
5898
|
-
this.map.addLayer(this.featuresGroup);
|
|
5899
6477
|
}
|
|
5900
6478
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5901
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetViewComponent, isStandalone: true, selector: "ng-component",
|
|
5902
|
-
<
|
|
5903
|
-
</div>`, isInline: true, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6479
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div [class.height.px]="height()" class="ax-w-full">
|
|
6480
|
+
<ax-map
|
|
6481
|
+
[hasMarker]="false"
|
|
6482
|
+
[markers]="markers()"
|
|
6483
|
+
[zoomLevel]="zoomLevel()"
|
|
6484
|
+
[latitude]="initialLocation().latitude"
|
|
6485
|
+
[longitude]="initialLocation().longitude"
|
|
6486
|
+
></ax-map>
|
|
6487
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$6.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "hasMarker", "hasLocator", "markerPlace", "locatePlace", "markers"], outputs: ["onMarkerAdded", "onMarkerChanged", "onLocationFound"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
5904
6488
|
}
|
|
5905
6489
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetViewComponent, decorators: [{
|
|
5906
6490
|
type: Component,
|
|
5907
|
-
args: [{
|
|
5908
|
-
|
|
5909
|
-
</div>`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule], inputs: [], encapsulation: ViewEncapsulation.None, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAAA8CAYAAAC6nMS5AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAA16SURBVHic7d1/jBxneQfw7zNzvotdn+9sVQkxoRKoammBqqpbk6uT5mLfvHPn42yn1VFRVCEhoFH5IYpoSaUCKi1NcGkcfrbCVRFKEwG2aHLn83pmLvY2CTqT1AmCOBE0EOT4B0nBPw/snb2dp3/sLr6s77i923dud/a+H8ny7tzMo8f3eud99p133gGIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiFYGaXYCRETUPMYYrWe/MAzZX2QQ27d5OpqdABFROxgZGVlz5cqVrzuOc18QBJPNzofsYvvSYrVcgTVftZ2l6npgYODXHMc5oKoHHcfZHQTB2WbnRETpGRkZWVMoFA6IyO2qutX3/R1Z64TnO8fWOwLSzti+mSKDg4M3l0qlnSJyG4CbAFwP4ByAlwE8paoPX3fddcH4+PjP00yk5QqsrDPGvAZAHsBrReRNqvpeY8x/iMg9QRCcaXJ6ZIHv+xtUdReAHQBej/IHGABOAnhORMY6OjoempiYONe0JC3zPM84jjOqqrfi6r/3RQCPAdgXhmHUvOyaa3R01L1w4cJBALdVNq1W1THP87woir7ZzNyocWzf7PA8b4uI7E6S5A9Frqknb6j8eZOIvKNQKPzU9/1/dhznvlwuV0gjn5YbFapW09Vqu/Z9K9u2bdsNruvmUe50axUAfMV13X/I5XInlzcze2x/28lCu1b19fWt7u7u/hCAvwGwboHdL6jq7unp6T1TU1OXlyG9VAwODv5mkiR7Ady6wK6Plkqldz/yyCPfX468bBkaGuqamZm5E8DbReQNANYscMiLIrI1CILnZ280xrwHwL+hck4VkacBDLTS6HVaIxWt/Blm+zauldu3atOmTas2bNjwWRG5s7LplKp+VUQOuq77/bVr17589uzZ9SKy0XGcAVUdFZE/qOx7zHXdXWn0yy31i6sMw/4MyF6BZYy5XlWPiMhvL7BrrKpfcxznE7Uf4ixYqQWW53kbATw060NZr28nSbJzcnLyRBp5pcnzvNtE5CEAvXUecg7ArjAMH00xLWuGhoZuKpVKEwB+p85DXnRd9/ZcLvcDAOjv778un88XAChwtRMWkW+jxTpfYOV1wGxfO1q1fav6+vpWr1u3blxVtwH4uar+/fT09OcW+mJrjBkBcC+AXwdwBoAJw/AZm7m1zC+uUlyNA9g6189buZH7+/t/tbOz8wiANy7isKKqftV13U8eOnToe2nlZttKLLAqJ+qjAF69xBAnZ2Zmbj58+PApm3mlqTJydRTXFldHAUxVXvcBuLnm5+dU9c1RFP1v2jk2YmhoqKtUKj2B+jvfE0mS3D45OflD4OqcHADPh2H4F6h0wp7nva1YLOby+fz5dDKnerB9Vwzxff8BVX0bgFMAdoZheKzeg4eHh9cXi8WvAfAAvOC67ptzudz/WUvOVqBGVO7OmBCR/vn2adWOuL+/v7ezs3MSwKYlhkgAHBSRjwdB8JTF1FKx0gqsymXBxwH8XoOh/ieO41vz+fwVG3mlzRjzKF55WfA8gD8LwzA3ez/P87aLyIMAeqrbVDUfRdHty5Pp0hhjPgDgM9X3qnq/iNwPYM5RCdd1T1RPvLM63+q/ce/sTpiaj+27Mvi+f6eq/iuAi67r9uVyuWcXG6NSjB8B0KeqE1EUvcVWfk3v3OYZuXosjuPt+Xx+ull51WNgYKBHRKIlXDaaS6Kq+6Mo+lMLsVKz0gosz/M+KiKfsBTub8MwvMdSrNQYYzwAYc3m7bXFVZXv+8OqemD2NlUdiKLokbRybJQx5lsANlfefi4Mww/UedyvADgI4I9mbxeRDwdB8C92s0yHrc9wK3922b6Na+X2BYD+/v61nZ2dz6M8cX00DMP9S421ffv2V83MzDwHoNfmucuxEWSpslxcjYyMrHEcZ8xScQUAjoj8vqVYZIHv+xtE5MMWQ941PDy83mK8VIjIW2s2HZ2vuAKAIAgmADyxQIxWM3uu5J56DhgZGVkDYBw1nS+ApwB82VJeZAfbt82tWrXqPSgXV481UlwBwMGDB3+sqncDgIh81EZ+QBMLrKwXV5Uh5NoPYqMyN+m9nanqHVj4bsHF6InjeKfFeKmoLMUw+/2Ct6KLyOM1m2x/NmxbW30RhuGPFtp5jstGVU+JiNdqE57rEYahzB6lWOz7Fsf2be/2hYj8SeXlvTbiFYvFLwK4DOAWY8z1NmI2pcDKcnE1OjraWSgU9uPaD2LDRKSlJwavQCO2A4rIDtsxU7BxsQeoau2Jeak3BDTDL72kUm/n63neaFoJUkPYvm3G9/0NKN9gc7mrq6t2OsOSVGqPSQCuiAzaiLnsBVaWiysAuHDhwn4AQ2nEVtUfpBGXluwNKcRcaBmPVpDMfiMiW+o4pnafZM69MmYxnW9lsj9lCNs3m1T1tSjXL89aXo39WCX+62wEW9YCK+vFVcXLKcbmJcLW8qoUYmZhZOfFmvc3e563fb6djTFvwdUJxfPFyJx6O1/f999a6Xz5ZIwMYftm2o2Vv60+HUVETldeLnoUfy7LVmC1SXEFVf0YgFSeX5QkCQus9tfyIzsicnSObQ/6vj9cu71SXP1nPTGyplAo5FDT+arqk3Ecb5s9J0dV2flmENs3u0REgTmnJjRkVjwrd2Iuy3+adimuACCKotPGmC8A+GvLoZOZmZkXLMekBojIaVX9DcthTy+8S3MlSTIuIu+q2dyjqgeMMU8A+CYAUdUtAOa8izZJkvG081wG19xN5jjO4ByLTLrLlRBZxfbNrjMAICI3LrTjIlVHrqyMjKU+gtVOxVVVHMf/hHkWrGvAiawsQrlSqOqiF61rRkzbOjo6AsxfCG4G8FcAPvhLlih5qVgsWpl42kIyezcZ1YXtmy0/QvlqwG9V1i6zZRMAiIiV+dCpFljtWFwBQOUbzqcth+XlwdZjfRRGRMZsx7St8mT5zzcQ4r52+LKgqp9S1U8B+GTtZSPKPrZvdlXaagrAalU1NmJWCrVtAEqO4xyyETO1S4TtWlxVXbp06b7u7u6/BHCTjXiqygKrxYjIQ6p6L2Y9BqZB51etWtXyBRYAuK77hVKp9H5cnUxarzOu634xjZyWWxRFdzU7B0oP2zfbVPUbIrLFcZwPAfivRuOJyPtUdbWq5m09jzCVEax2L64AYGpq6rKq/qOteI7jsMBqMUEQnFXV3bbiqerdExMT52zFS1Mul7soIovugETkI7lc7mIaORERVRWLxS8BeElVb/F9v6EnR/i+f6Oq3gUAjuPYejSavQLLGKPVP4VC4Wd4ZXF1pKura7Bdiquq3t7efwfwnKVwLLBa0PT09B5U1kZp0BPFYvGzFuIsmyAI7kf5uWz1OhgEwTV3FLaoX5yLKosWLknNsZcayohsYvu2uUo98TEAUNW9vu8vad3CoaGhLlX9BoBeAONBEByxleNyLNPwWBzHOywvBtYS9u3bV1LVj1sKxwKrBU1NTV12XXcXgFMNhDmpqndkcF6SisifAzhRx76n4jh+Byzd3rwMjldfqOqSV+xPkmT2yvzH592RlhvbdwUIw3AvgAcArFPVcHBwcFHPBvZ9f0OpVDqA8qrwL8Rx/E6b+VkvsGqfZ9ROlwXnEkXRfgDfajCMXrx48Yc28iH7crncSVXdrKpPLvZYEXk6SZItURS1/PIMcwmC4KzjOCMAam9dn+0SgJ35fP4ny5SWDQ/Mer3HGLPoTtgYMyIiv3gOmqpmZfRuJWD7rgwax/G7UH7EzcYkSf7bGHNXX1/f6oUO9H1/Z+WcPoDysgw7bJ/DUl8Hq52LqwoVkb9T1WiRx8UoX158RlWfnJqaupxCbmRJFEWn+/r6buvu7v4ggI9g4Ynv50XknkKh8JkMjly9wqFDh77j+/6oqo4BqD1xXRaRPw6CwMZl1GXjuu6XSqXSOwH8LoD1AMaMMecA1PtF53WV4wCUC+menp699jOlpWD7rhz5fP5Kf3//UFdX132q+l4Ad3d3d7/fGPN1EZlQ1e/19PS8dPbs2fWu694kIgOqOqqqm4Dy4rKlUumOw4cPN3KVYk7WVkE1xsx5aSBLT+duhDEmQrkSnssZlIeXnxWRY6p6PI7j41nveFeq4eHh9XEc7xSRnQBej6t3kp5EuWh+OI7jh+dYsDDTfN/frKrjAKpPmv9pkiS7JicnH29mXku1devWV3d0dBxAuRNeMhF5ulgsjqRxgk7DfOfqxWr1czvbtzGt3r5zGRwc7FPV3ap6y0L7ishPAHx63bp1e/bt2xenkQ8LLEuMMZtE5JCqfhfAMwCeSZLkO2vWrDk+NjbGyZHUFjzP2yginwcAVX1fVi99Vo2OjnaeP3/+3SLydgBvBNBd56GXAHxXVR/s7e3dm9YJOg0rqQNm+y5dFtp3HmKM2QxgF8qr9b8GwA0AzgH4MYBjIjJ28eLFkFeOiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIhWgv8Hnffz4dmwY9cAAAAASUVORK5CYII=);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"] }]
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
6491
|
+
args: [{
|
|
6492
|
+
template: `<div [class.height.px]="height()" class="ax-w-full">
|
|
6493
|
+
<ax-map
|
|
6494
|
+
[hasMarker]="false"
|
|
6495
|
+
[markers]="markers()"
|
|
6496
|
+
[zoomLevel]="zoomLevel()"
|
|
6497
|
+
[latitude]="initialLocation().latitude"
|
|
6498
|
+
[longitude]="initialLocation().longitude"
|
|
6499
|
+
></ax-map>
|
|
6500
|
+
</div>`,
|
|
6501
|
+
standalone: true,
|
|
6502
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6503
|
+
imports: [CommonModule, AXMapModule],
|
|
6504
|
+
inputs: [],
|
|
6505
|
+
encapsulation: ViewEncapsulation.None,
|
|
6506
|
+
}]
|
|
6507
|
+
}] });
|
|
5914
6508
|
|
|
5915
6509
|
var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
5916
6510
|
__proto__: null,
|
|
@@ -5920,229 +6514,69 @@ var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
|
5920
6514
|
class AXPMapBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
5921
6515
|
constructor() {
|
|
5922
6516
|
super(...arguments);
|
|
5923
|
-
this.
|
|
5924
|
-
this.
|
|
5925
|
-
this.
|
|
5926
|
-
this.
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
5935
|
-
zoom: this.zoomLevel() ?? 2,
|
|
5936
|
-
minZoom: 1,
|
|
5937
|
-
maxZoom: 18,
|
|
5938
|
-
worldCopyJump: true,
|
|
5939
|
-
});
|
|
5940
|
-
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
5941
|
-
maxZoom: 18,
|
|
5942
|
-
attribution: '© acorex platform',
|
|
5943
|
-
}).addTo(this.map);
|
|
5944
|
-
this.drawnItems = new L.FeatureGroup();
|
|
5945
|
-
this.markerLayer = new L.LayerGroup();
|
|
5946
|
-
this.map.addLayer(this.drawnItems);
|
|
5947
|
-
this.map.addLayer(this.markerLayer);
|
|
5948
|
-
L.control
|
|
5949
|
-
.locate({
|
|
5950
|
-
position: 'bottomright', // Place the button in the bottom-right corner
|
|
5951
|
-
setView: false,
|
|
5952
|
-
drawCircle: false,
|
|
5953
|
-
drawMarker: false,
|
|
5954
|
-
keepCurrentZoomLevel: false,
|
|
5955
|
-
onLocationError: (e) => alert(e.message), // Handle location errors
|
|
5956
|
-
onLocationOutsideMapBounds: (control) => control.stop(), // Stop locate if outside bounds
|
|
5957
|
-
locateOptions: {
|
|
5958
|
-
enableHighAccuracy: true, // Use GPS for better accuracy
|
|
5959
|
-
},
|
|
5960
|
-
})
|
|
5961
|
-
.addTo(this.map);
|
|
5962
|
-
const drawControl = new L.Control.Draw({
|
|
5963
|
-
draw: {
|
|
5964
|
-
polygon: false,
|
|
5965
|
-
polyline: false,
|
|
5966
|
-
rectangle: false,
|
|
5967
|
-
circle: false,
|
|
5968
|
-
circlemarker: false,
|
|
5969
|
-
},
|
|
5970
|
-
position: 'topleft',
|
|
5971
|
-
edit: {
|
|
5972
|
-
featureGroup: this.drawnItems,
|
|
5973
|
-
remove: true,
|
|
5974
|
-
edit: false,
|
|
6517
|
+
this.markers = computed(() => this.getValue() ?? []);
|
|
6518
|
+
this.hasDraw = computed(() => this.options()['hasDraw'] ?? false);
|
|
6519
|
+
this.hasLocate = computed(() => this.options()['hasLocate'] ?? false);
|
|
6520
|
+
this.maxMarker = computed(() => this.options()['maxMarker'] ?? 1);
|
|
6521
|
+
this.zoomLevel = computed(() => this.options()['zoomLevel'] ?? 13);
|
|
6522
|
+
this.height = computed(() => this.options()['height'] ?? 300);
|
|
6523
|
+
this.initialLocation = computed(() => this.options()['initialLocation'] ?? { latitude: 51.505, longitude: -0.09 }, {
|
|
6524
|
+
equal: (a, b) => {
|
|
6525
|
+
if (a.latitude === b.latitude && a.longitude === b.longitude)
|
|
6526
|
+
return true;
|
|
6527
|
+
else
|
|
6528
|
+
return false;
|
|
5975
6529
|
},
|
|
5976
6530
|
});
|
|
5977
|
-
this.map.addControl(drawControl);
|
|
5978
|
-
this.map.on(L.Draw.Event.CREATED, (event) => this.onMarkerCreated({ latitude: event.layer._latlng.lat, longitude: event.layer._latlng.lng }));
|
|
5979
|
-
this.map.on('locationfound', (event) => {
|
|
5980
|
-
this.onMarkerCreated({ latitude: event.latitude, longitude: event.longitude, tooltip: 'You Are Here!' });
|
|
5981
|
-
this.map?.flyTo(event.latlng, 15, { animate: true });
|
|
5982
|
-
// this.map!.on('moveend', () => {
|
|
5983
|
-
// console.log(event);
|
|
5984
|
-
// this.onMarkerCreated({ latitude: event.latitude, longitude: event.longitude, tooltip: 'You Are Here!' });
|
|
5985
|
-
// this.map?.off('moveend');
|
|
5986
|
-
// });
|
|
5987
|
-
});
|
|
5988
|
-
this.initializeExistingMarkers();
|
|
5989
|
-
}
|
|
5990
|
-
ngOnDestroy() {
|
|
5991
|
-
this.map?.remove();
|
|
5992
|
-
}
|
|
5993
|
-
initializingCenter() {
|
|
5994
|
-
const markers = this.markers();
|
|
5995
|
-
if (markers === undefined)
|
|
5996
|
-
return [20, 0];
|
|
5997
|
-
if (Array.isArray(markers)) {
|
|
5998
|
-
return [markers[0].latitude, markers[0].longitude];
|
|
5999
|
-
}
|
|
6000
|
-
else {
|
|
6001
|
-
return [markers.latitude, markers.longitude];
|
|
6002
|
-
}
|
|
6003
6531
|
}
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
this.replaceMarker(event);
|
|
6010
|
-
}
|
|
6011
|
-
}
|
|
6012
|
-
addMarker(location) {
|
|
6013
|
-
let marker = L.marker([location.latitude, location.longitude]);
|
|
6014
|
-
if (location.tooltip) {
|
|
6015
|
-
marker.bindPopup(location.tooltip);
|
|
6016
|
-
}
|
|
6017
|
-
else {
|
|
6018
|
-
marker.bindPopup(`You Are at ${location.latitude} latitude & ${location.longitude} longitude`);
|
|
6019
|
-
}
|
|
6020
|
-
this.markerLayer.addLayer(marker);
|
|
6021
|
-
//this.markersList.push(location);
|
|
6022
|
-
this.markersList.update((prev) => [...prev, location]);
|
|
6023
|
-
}
|
|
6024
|
-
replaceMarker(location) {
|
|
6025
|
-
this.markerLayer.clearLayers();
|
|
6026
|
-
this.markersList.set([]);
|
|
6027
|
-
this.addMarker(location);
|
|
6028
|
-
}
|
|
6029
|
-
initializeExistingMarkers() {
|
|
6030
|
-
const markers = this.markers();
|
|
6031
|
-
if (markers) {
|
|
6032
|
-
if (Array.isArray(markers)) {
|
|
6033
|
-
markers.forEach((marker) => this.addMarker(marker));
|
|
6034
|
-
}
|
|
6035
|
-
else {
|
|
6036
|
-
this.addMarker(markers);
|
|
6037
|
-
}
|
|
6038
|
-
}
|
|
6039
|
-
}
|
|
6040
|
-
flyToMarker(marker) {
|
|
6041
|
-
this.map?.flyTo([marker.latitude, marker.longitude], this.zoomLevel() || 15, {
|
|
6042
|
-
animate: true,
|
|
6043
|
-
duration: 1.5,
|
|
6044
|
-
});
|
|
6532
|
+
get __class() {
|
|
6533
|
+
const cls = {};
|
|
6534
|
+
cls[`ax-block`] = true;
|
|
6535
|
+
cls[`ax-flex-1`] = true;
|
|
6536
|
+
return cls;
|
|
6045
6537
|
}
|
|
6046
6538
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6047
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
6048
|
-
<
|
|
6049
|
-
|
|
6050
|
-
|
|
6051
|
-
|
|
6052
|
-
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
}
|
|
6060
|
-
</div> `, isInline: true, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6539
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: ` <div [style.height.px]="height()" class="ax-w-full">
|
|
6540
|
+
<ax-map
|
|
6541
|
+
class="ax-h-full"
|
|
6542
|
+
[hasLocator]="hasLocate()"
|
|
6543
|
+
[hasMarker]="hasDraw()"
|
|
6544
|
+
[latitude]="initialLocation().latitude"
|
|
6545
|
+
[longitude]="initialLocation().longitude"
|
|
6546
|
+
[zoomLevel]="zoomLevel()"
|
|
6547
|
+
[maxMarker]="maxMarker()"
|
|
6548
|
+
>
|
|
6549
|
+
</ax-map>
|
|
6550
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$6.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "hasMarker", "hasLocator", "markerPlace", "locatePlace", "markers"], outputs: ["onMarkerAdded", "onMarkerChanged", "onLocationFound"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6061
6551
|
}
|
|
6062
6552
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetEditComponent, decorators: [{
|
|
6063
|
-
type: Component,
|
|
6064
|
-
args: [{ template: `<div class="ax-w-full ax-h-72 ax-relative">
|
|
6065
|
-
<div class="ax-h-full" #mapEl></div>
|
|
6066
|
-
@if(multiple()){
|
|
6067
|
-
<div class="marker-list-panel">
|
|
6068
|
-
<ul>
|
|
6069
|
-
@for(marker of markersList(); track $index){
|
|
6070
|
-
<li class="ax-text-xs ax-truncate" (click)="flyToMarker(marker)">
|
|
6071
|
-
{{ marker.tooltip || 'Marker at ' + marker.latitude + ', ' + marker.longitude }}
|
|
6072
|
-
</li>
|
|
6073
|
-
}
|
|
6074
|
-
</ul>
|
|
6075
|
-
</div>
|
|
6076
|
-
}
|
|
6077
|
-
</div> `, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, FormsModule], encapsulation: ViewEncapsulation.None, styles: [".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A');background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:url(data:image/png;base64,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);background-image:linear-gradient(transparent,transparent),url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:xlink=\"http://www.w3.org/1999/xlink\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A viewBox=\"0 0 600 60\"%0A height=\"60\"%0A width=\"600\"%0A id=\"svg4225\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"spritesheet.svg\"%0A inkscape:export-filename=\"/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png\"%0A inkscape:export-xdpi=\"90\"%0A inkscape:export-ydpi=\"90\">%0A <metadata%0A id=\"metadata4258\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title />%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4256\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ffffff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1056\"%0A id=\"namedview4254\"%0A showgrid=\"false\"%0A inkscape:zoom=\"1.3101852\"%0A inkscape:cx=\"237.56928\"%0A inkscape:cy=\"7.2419621\"%0A inkscape:window-x=\"1920\"%0A inkscape:window-y=\"24\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4225\" />%0A <g%0A id=\"enabled\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <g%0A id=\"polyline\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4229\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z\"%0A id=\"path4231\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z\"%0A id=\"path4233\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <path%0A id=\"polygon\"%0A d=\"M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"rectangle\"%0A d=\"m 140,20 20,0 0,20 -20,0 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"circle\"%0A d=\"m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A id=\"marker\"%0A d=\"m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <g%0A id=\"edit\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968\"%0A id=\"path4240\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z\"%0A id=\"path4242\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 338.697,17.826 4,0 0,4 -4,0 z\"%0A transform=\"matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)\"%0A id=\"path4244\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A <g%0A id=\"remove\"%0A style=\"fill:%23464646;fill-opacity:1\">%0A <path%0A d=\"m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z\"%0A id=\"path4247\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A <path%0A d=\"m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z\"%0A id=\"path4249\"%0A inkscape:connector-curvature=\"0\"%0A style=\"fill:%23464646;fill-opacity:1\" />%0A </g>%0A </g>%0A <g%0A id=\"disabled\"%0A transform=\"translate(120,0)\"%0A style=\"fill:%23bbbbbb\">%0A <use%0A xlink:href=\"%23edit\"%0A id=\"edit-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A <use%0A xlink:href=\"%23remove\"%0A id=\"remove-disabled\"%0A x=\"0\"%0A y=\"0\"%0A width=\"100%\"%0A height=\"100%\" />%0A </g>%0A <path%0A style=\"fill:none;stroke:%23464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A id=\"circle-3\"%0A d=\"m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z\"%0A inkscape:connector-curvature=\"0\" />%0A</svg>%0A')}.leaflet-draw a{display:block;text-align:center;text-decoration:none}.leaflet-draw a .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaflet-draw-actions{display:none;list-style:none;margin:0;padding:0;position:absolute;left:26px;top:0;white-space:nowrap}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{right:26px;left:auto}.leaflet-touch .leaflet-right .leaflet-draw-actions{right:32px;left:auto}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{-webkit-border-radius:0;border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.leaflet-draw-actions a{background-color:#919187;border-left:1px solid #AAA;color:#fff;font:11px/19px Helvetica Neue,Arial,Helvetica,sans-serif;line-height:28px;text-decoration:none;padding-left:10px;padding-right:10px;height:28px}.leaflet-touch .leaflet-draw-actions a{font-size:12px;line-height:30px;height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{background-color:#fff;cursor:crosshair}.leaflet-draw-tooltip{background:#363636;background:rgba(0,0,0,.5);border:1px solid transparent;-webkit-border-radius:4px;border-radius:4px;color:#fff;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;margin-left:20px;margin-top:-21px;padding:4px 8px;position:absolute;visibility:hidden;white-space:nowrap;z-index:6}.leaflet-draw-tooltip:before{border-right:6px solid black;border-right-color:rgba(0,0,0,.5);border-top:6px solid transparent;border-bottom:6px solid transparent;content:\"\";position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{background-color:#f2dede;border:1px solid #e6b6bd;color:#b94a48}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{font-size:1%;opacity:.6;position:absolute;width:5px;height:5px}.leaflet-edit-marker-selected{background-color:rgba(254,87,161,.1);border:4px dashed rgba(254,87,161,.6);-webkit-border-radius:4px;border-radius:4px;box-sizing:content-box}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999}.leaflet-control-locate a{cursor:pointer}.leaflet-control-locate a .leaflet-control-locate-location-arrow{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate a .leaflet-control-locate-spinner{display:inline-block;width:16px;height:16px;margin:7px;background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"black\" d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>');animation:leaflet-control-locate-spin 2s linear infinite}.leaflet-control-locate.active a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(32, 116, 182)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-control-locate.following a .leaflet-control-locate-location-arrow{background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"rgb(252, 132, 40)\" d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>')}.leaflet-touch .leaflet-bar .leaflet-locate-text-active{width:100%;max-width:200px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon{padding:0 5px 0 0}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8)}to{stroke-width:1}}@keyframes leaflet-control-locate-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.leaflet-marker-shadow{display:none}.marker-list-panel{position:absolute;top:10px;right:10px;width:150px;height:70%;background-color:rgba(255,255,255,.5);overflow-y:auto;padding:10px;z-index:1000;border:1px solid #ccc}.marker-list-panel ul{list-style-type:none;padding:0;margin:0}.marker-list-panel li{cursor:pointer;padding:8px;background-color:#f5f5f5;border:1px solid #ddd;margin-bottom:5px;border-radius:4px;transition:background-color .3s}.marker-list-panel li:hover{background-color:#e0e0e0}\n"] }]
|
|
6078
|
-
}], propDecorators: { mapEl: [{
|
|
6079
|
-
type: ViewChild,
|
|
6080
|
-
args: ['mapEl']
|
|
6081
|
-
}] } });
|
|
6082
|
-
|
|
6083
|
-
var mapBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
6084
|
-
__proto__: null,
|
|
6085
|
-
AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
|
|
6086
|
-
});
|
|
6087
|
-
|
|
6088
|
-
class AXPMapBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
6089
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6090
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6091
|
-
}
|
|
6092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetFilterComponent, decorators: [{
|
|
6093
|
-
type: Component,
|
|
6094
|
-
args: [{
|
|
6095
|
-
template: ``,
|
|
6096
|
-
standalone: true,
|
|
6097
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6098
|
-
imports: [CommonModule, FormsModule],
|
|
6099
|
-
inputs: []
|
|
6100
|
-
}]
|
|
6101
|
-
}] });
|
|
6102
|
-
|
|
6103
|
-
var mapBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
6104
|
-
__proto__: null,
|
|
6105
|
-
AXPMapBoxWidgetFilterComponent: AXPMapBoxWidgetFilterComponent
|
|
6106
|
-
});
|
|
6107
|
-
|
|
6108
|
-
class AXPMapBoxWidgetColumnComponent extends AXPWidgetComponent {
|
|
6109
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6110
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6111
|
-
}
|
|
6112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetColumnComponent, decorators: [{
|
|
6113
|
-
type: Component,
|
|
6114
|
-
args: [{
|
|
6115
|
-
template: ``,
|
|
6116
|
-
standalone: true,
|
|
6117
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6118
|
-
imports: [CommonModule],
|
|
6119
|
-
inputs: []
|
|
6120
|
-
}]
|
|
6121
|
-
}] });
|
|
6122
|
-
|
|
6123
|
-
var mapBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
6124
|
-
__proto__: null,
|
|
6125
|
-
AXPMapBoxWidgetColumnComponent: AXPMapBoxWidgetColumnComponent
|
|
6126
|
-
});
|
|
6127
|
-
|
|
6128
|
-
class AXPMapBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
6129
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6130
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPMapBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6131
|
-
}
|
|
6132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMapBoxWidgetPrintComponent, decorators: [{
|
|
6133
6553
|
type: Component,
|
|
6134
6554
|
args: [{
|
|
6135
|
-
template:
|
|
6555
|
+
template: ` <div [style.height.px]="height()" class="ax-w-full">
|
|
6556
|
+
<ax-map
|
|
6557
|
+
class="ax-h-full"
|
|
6558
|
+
[hasLocator]="hasLocate()"
|
|
6559
|
+
[hasMarker]="hasDraw()"
|
|
6560
|
+
[latitude]="initialLocation().latitude"
|
|
6561
|
+
[longitude]="initialLocation().longitude"
|
|
6562
|
+
[zoomLevel]="zoomLevel()"
|
|
6563
|
+
[maxMarker]="maxMarker()"
|
|
6564
|
+
>
|
|
6565
|
+
</ax-map>
|
|
6566
|
+
</div>`,
|
|
6136
6567
|
standalone: true,
|
|
6137
6568
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6138
|
-
imports: [
|
|
6139
|
-
|
|
6569
|
+
imports: [AXMapModule],
|
|
6570
|
+
encapsulation: ViewEncapsulation.None,
|
|
6140
6571
|
}]
|
|
6141
|
-
}]
|
|
6572
|
+
}], propDecorators: { __class: [{
|
|
6573
|
+
type: HostBinding,
|
|
6574
|
+
args: ['class']
|
|
6575
|
+
}] } });
|
|
6142
6576
|
|
|
6143
|
-
var
|
|
6577
|
+
var mapBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
6144
6578
|
__proto__: null,
|
|
6145
|
-
|
|
6579
|
+
AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
|
|
6146
6580
|
});
|
|
6147
6581
|
|
|
6148
6582
|
const AXPMapBoxWidget = {
|
|
@@ -6151,22 +6585,110 @@ const AXPMapBoxWidget = {
|
|
|
6151
6585
|
description: 'Displays and interacts with maps',
|
|
6152
6586
|
icon: 'fa-solid fa-map-location',
|
|
6153
6587
|
group: AXP_WIDGETS_ADVANCE_GROUP,
|
|
6154
|
-
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
|
|
6588
|
+
type: 'editor',
|
|
6589
|
+
properties: [
|
|
6590
|
+
AXP_NAME_PROPERTY,
|
|
6591
|
+
AXP_DATA_PATH_PROPERTY,
|
|
6592
|
+
{
|
|
6593
|
+
name: 'height',
|
|
6594
|
+
title: 'Height',
|
|
6595
|
+
group: AXP_STYLING_PROPERTY_GROUP,
|
|
6596
|
+
schema: {
|
|
6597
|
+
defaultValue: 300,
|
|
6598
|
+
dataType: 'number',
|
|
6599
|
+
interface: {
|
|
6600
|
+
name: 'height',
|
|
6601
|
+
path: 'options.height',
|
|
6602
|
+
type: AXPWidgetsCatalog.number,
|
|
6603
|
+
options: {
|
|
6604
|
+
minValue: 0,
|
|
6605
|
+
maxValue: 500,
|
|
6606
|
+
hasClearButton: false,
|
|
6607
|
+
}
|
|
6608
|
+
},
|
|
6609
|
+
},
|
|
6610
|
+
visible: true,
|
|
6158
6611
|
},
|
|
6159
|
-
|
|
6160
|
-
|
|
6612
|
+
{
|
|
6613
|
+
name: 'maxMarker',
|
|
6614
|
+
title: 'Max Marker',
|
|
6615
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
6616
|
+
schema: {
|
|
6617
|
+
defaultValue: 1,
|
|
6618
|
+
dataType: 'number',
|
|
6619
|
+
interface: {
|
|
6620
|
+
name: 'maxMarker',
|
|
6621
|
+
path: 'options.maxMarker',
|
|
6622
|
+
type: AXPWidgetsCatalog.number,
|
|
6623
|
+
options: {
|
|
6624
|
+
minValue: 0,
|
|
6625
|
+
maxValue: 100,
|
|
6626
|
+
hasClearButton: false,
|
|
6627
|
+
}
|
|
6628
|
+
},
|
|
6629
|
+
},
|
|
6630
|
+
visible: true,
|
|
6161
6631
|
},
|
|
6162
|
-
|
|
6163
|
-
|
|
6632
|
+
{
|
|
6633
|
+
name: 'zoomLevel',
|
|
6634
|
+
title: 'Zoom Level',
|
|
6635
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
6636
|
+
schema: {
|
|
6637
|
+
defaultValue: 13,
|
|
6638
|
+
dataType: 'number',
|
|
6639
|
+
interface: {
|
|
6640
|
+
name: 'zoomLevel',
|
|
6641
|
+
path: 'options.zoomLevel',
|
|
6642
|
+
type: AXPWidgetsCatalog.number,
|
|
6643
|
+
options: {
|
|
6644
|
+
minValue: 1,
|
|
6645
|
+
maxValue: 20,
|
|
6646
|
+
hasClearButton: false,
|
|
6647
|
+
}
|
|
6648
|
+
},
|
|
6649
|
+
},
|
|
6650
|
+
visible: true,
|
|
6164
6651
|
},
|
|
6165
|
-
|
|
6166
|
-
|
|
6652
|
+
{
|
|
6653
|
+
name: 'hasLocate',
|
|
6654
|
+
title: 'Has Locate',
|
|
6655
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
6656
|
+
schema: {
|
|
6657
|
+
dataType: 'boolean',
|
|
6658
|
+
defaultValue: false,
|
|
6659
|
+
interface: {
|
|
6660
|
+
name: 'hasLocate',
|
|
6661
|
+
path: 'options.hasLocate',
|
|
6662
|
+
type: AXPWidgetsCatalog.toggle,
|
|
6663
|
+
},
|
|
6664
|
+
},
|
|
6665
|
+
visible: true,
|
|
6666
|
+
},
|
|
6667
|
+
{
|
|
6668
|
+
name: 'hasDraw',
|
|
6669
|
+
title: 'Has Draw',
|
|
6670
|
+
group: AXP_DATA_PROPERTY_GROUP,
|
|
6671
|
+
schema: {
|
|
6672
|
+
dataType: 'boolean',
|
|
6673
|
+
defaultValue: false,
|
|
6674
|
+
interface: {
|
|
6675
|
+
name: 'hasDraw',
|
|
6676
|
+
path: 'options.hasDraw',
|
|
6677
|
+
type: AXPWidgetsCatalog.toggle,
|
|
6678
|
+
},
|
|
6679
|
+
},
|
|
6680
|
+
visible: true,
|
|
6681
|
+
},
|
|
6682
|
+
],
|
|
6683
|
+
components: {
|
|
6684
|
+
view: {
|
|
6685
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetView_component; }).then((c) => c.AXPMapBoxWidgetViewComponent),
|
|
6686
|
+
},
|
|
6687
|
+
edit: {
|
|
6688
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetEdit_component; }).then((c) => c.AXPMapBoxWidgetEditComponent),
|
|
6167
6689
|
},
|
|
6168
6690
|
print: {
|
|
6169
|
-
component: () => Promise.resolve().then(function () { return
|
|
6691
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetView_component; }).then((c) => c.AXPMapBoxWidgetViewComponent),
|
|
6170
6692
|
},
|
|
6171
6693
|
designer: {
|
|
6172
6694
|
component: () => Promise.resolve().then(function () { return mapBoxWidgetEdit_component; }).then((c) => c.AXPMapBoxWidgetEditComponent),
|
|
@@ -6254,8 +6776,14 @@ class AXPSignatureWidgetEditComponent extends AXPWidgetComponent {
|
|
|
6254
6776
|
this.setValue(this.getDataURL());
|
|
6255
6777
|
}
|
|
6256
6778
|
}
|
|
6779
|
+
get __class() {
|
|
6780
|
+
const cls = {};
|
|
6781
|
+
cls[`ax-block`] = true;
|
|
6782
|
+
cls[`ax-flex-1`] = true;
|
|
6783
|
+
return cls;
|
|
6784
|
+
}
|
|
6257
6785
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6258
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSignatureWidgetEditComponent, isStandalone: true, selector: "axp-signature-widget", viewQueries: [{ propertyName: "padCanvas", first: true, predicate: ["padCanvas"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
6786
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSignatureWidgetEditComponent, isStandalone: true, selector: "axp-signature-widget", host: { properties: { "class": "this.__class" } }, viewQueries: [{ propertyName: "padCanvas", first: true, predicate: ["padCanvas"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
6259
6787
|
<div class="ax-flex ax-gap-3">
|
|
6260
6788
|
@if(editMode() ){
|
|
6261
6789
|
<canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
|
|
@@ -6323,6 +6851,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
6323
6851
|
}], propDecorators: { padCanvas: [{
|
|
6324
6852
|
type: ViewChild,
|
|
6325
6853
|
args: ['padCanvas']
|
|
6854
|
+
}], __class: [{
|
|
6855
|
+
type: HostBinding,
|
|
6856
|
+
args: ['class']
|
|
6326
6857
|
}] } });
|
|
6327
6858
|
|
|
6328
6859
|
var signaturePadWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
@@ -6345,11 +6876,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
6345
6876
|
}]
|
|
6346
6877
|
}] });
|
|
6347
6878
|
|
|
6348
|
-
var signaturePadWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
6349
|
-
__proto__: null,
|
|
6350
|
-
AXPSignatureWidgetFilterComponent: AXPSignatureWidgetFilterComponent
|
|
6351
|
-
});
|
|
6352
|
-
|
|
6353
6879
|
class AXPSignatureWidgetPrintComponent extends AXPWidgetComponent {
|
|
6354
6880
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSignatureWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6355
6881
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSignatureWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -6418,7 +6944,8 @@ const AXPSignatureWidget = {
|
|
|
6418
6944
|
description: 'Captures digital signatures',
|
|
6419
6945
|
icon: 'fa-solid fa-file-signature',
|
|
6420
6946
|
group: AXP_WIDGETS_ADVANCE_GROUP,
|
|
6421
|
-
|
|
6947
|
+
type: 'editor',
|
|
6948
|
+
properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY, AXP_VALIDATION_PROPERTY],
|
|
6422
6949
|
components: {
|
|
6423
6950
|
view: {
|
|
6424
6951
|
component: () => Promise.resolve().then(function () { return signaturePadWidgetView_component; }).then((c) => c.AXPSignatureWidgetViewComponent),
|
|
@@ -6426,9 +6953,6 @@ const AXPSignatureWidget = {
|
|
|
6426
6953
|
edit: {
|
|
6427
6954
|
component: () => Promise.resolve().then(function () { return signaturePadWidgetEdit_component; }).then((c) => c.AXPSignatureWidgetEditComponent),
|
|
6428
6955
|
},
|
|
6429
|
-
filter: {
|
|
6430
|
-
component: () => Promise.resolve().then(function () { return signaturePadWidgetFilter_component; }).then((c) => c.AXPSignatureWidgetFilterComponent),
|
|
6431
|
-
},
|
|
6432
6956
|
column: {
|
|
6433
6957
|
component: () => Promise.resolve().then(function () { return signaturePadWidgetColumn_component; }).then((c) => c.AXPSignatureWidgetColumnComponent),
|
|
6434
6958
|
},
|
|
@@ -6446,30 +6970,54 @@ class AXPBlockWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
6446
6970
|
super(...arguments);
|
|
6447
6971
|
this.backgroundColor = computed(() => this.options()["backgroundColor"]);
|
|
6448
6972
|
this.cssClass = computed(() => this.options()["cssClass"]);
|
|
6973
|
+
this.flexAlignItems = computed(() => this.options()["flexAlignItems"]?.id);
|
|
6974
|
+
this.flexJustifyContent = computed(() => this.options()["flexJustifyContent"]?.id);
|
|
6975
|
+
this.flexWrap = computed(() => this.options()["flexWrap"]?.id);
|
|
6976
|
+
this.flexDirection = computed(() => this.options()["flexDirection"]?.id);
|
|
6977
|
+
this.gap = computed(() => this.options()["gap"] ?? 0);
|
|
6449
6978
|
}
|
|
6450
6979
|
get __class() {
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6980
|
+
const cls = {};
|
|
6981
|
+
//
|
|
6982
|
+
cls[`ax-w-full`] = true;
|
|
6983
|
+
cls[`ax-border`] = true;
|
|
6984
|
+
cls[`ax-border-dashed`] = true;
|
|
6985
|
+
//
|
|
6986
|
+
cls[`ax-flex`] = true;
|
|
6987
|
+
cls[`ax-gap-${this.gap()}`] = true;
|
|
6988
|
+
//
|
|
6989
|
+
if (this.flexAlignItems()) {
|
|
6990
|
+
cls[this.flexAlignItems()] = true;
|
|
6991
|
+
}
|
|
6992
|
+
if (this.flexJustifyContent()) {
|
|
6993
|
+
cls[this.flexJustifyContent()] = true;
|
|
6994
|
+
}
|
|
6995
|
+
if (this.flexWrap()) {
|
|
6996
|
+
cls[this.flexWrap()] = true;
|
|
6997
|
+
}
|
|
6998
|
+
if (this.flexDirection()) {
|
|
6999
|
+
cls[this.flexDirection()] = true;
|
|
7000
|
+
}
|
|
7001
|
+
return cls;
|
|
6455
7002
|
}
|
|
6456
7003
|
get __style() {
|
|
6457
7004
|
return {
|
|
6458
7005
|
'background-color': this.backgroundColor(),
|
|
6459
|
-
'display': 'block',
|
|
6460
7006
|
};
|
|
6461
7007
|
}
|
|
6462
7008
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6463
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPBlockWidgetDesignerComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.
|
|
7009
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPBlockWidgetDesignerComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.__class", "style": "this.__style" } }, providers: [
|
|
6464
7010
|
{
|
|
6465
7011
|
provide: AXPContainerWidgetComponent, useExisting: AXPBlockWidgetDesignerComponent
|
|
6466
7012
|
}
|
|
6467
7013
|
], usesInheritance: true, ngImport: i0, template: `
|
|
6468
7014
|
@for (node of children(); track $index) {
|
|
6469
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"
|
|
7015
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"></ng-container>
|
|
6470
7016
|
}
|
|
6471
|
-
|
|
6472
|
-
|
|
7017
|
+
@empty {
|
|
7018
|
+
<axp-designer-add-widget-button class="ax-flex-1 ax-self-center ax-place-self-end"></axp-designer-add-widget-button>
|
|
7019
|
+
}
|
|
7020
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6473
7021
|
}
|
|
6474
7022
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetDesignerComponent, decorators: [{
|
|
6475
7023
|
type: Component,
|
|
@@ -6477,13 +7025,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
6477
7025
|
selector: 'axp-block-widget',
|
|
6478
7026
|
template: `
|
|
6479
7027
|
@for (node of children(); track $index) {
|
|
6480
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"
|
|
7028
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"></ng-container>
|
|
7029
|
+
}
|
|
7030
|
+
@empty {
|
|
7031
|
+
<axp-designer-add-widget-button class="ax-flex-1 ax-self-center ax-place-self-end"></axp-designer-add-widget-button>
|
|
6481
7032
|
}
|
|
6482
|
-
<axp-designer-add-widget-button></axp-designer-add-widget-button>
|
|
6483
7033
|
`,
|
|
6484
7034
|
standalone: true,
|
|
6485
7035
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6486
|
-
imports: [CommonModule, AXPLayoutBuilderModule,
|
|
7036
|
+
imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent],
|
|
6487
7037
|
providers: [
|
|
6488
7038
|
{
|
|
6489
7039
|
provide: AXPContainerWidgetComponent, useExisting: AXPBlockWidgetDesignerComponent
|
|
@@ -6493,9 +7043,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
6493
7043
|
}], propDecorators: { __class: [{
|
|
6494
7044
|
type: HostBinding,
|
|
6495
7045
|
args: ['class']
|
|
6496
|
-
}], __class2: [{
|
|
6497
|
-
type: HostBinding,
|
|
6498
|
-
args: ['class']
|
|
6499
7046
|
}], __style: [{
|
|
6500
7047
|
type: HostBinding,
|
|
6501
7048
|
args: ['style']
|
|
@@ -6511,14 +7058,28 @@ class AXPBlockWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6511
7058
|
super(...arguments);
|
|
6512
7059
|
this.backgroundColor = computed(() => this.options()["backgroundColor"]);
|
|
6513
7060
|
this.cssClass = computed(() => this.options()["cssClass"]);
|
|
7061
|
+
this.flexAlign = computed(() => this.options()["flexAlign"]?.id);
|
|
7062
|
+
this.flexJustify = computed(() => this.options()["flexJustify"]?.id);
|
|
7063
|
+
this.gap = computed(() => this.options()["gap"] ?? 0);
|
|
6514
7064
|
}
|
|
6515
7065
|
get __class() {
|
|
6516
|
-
|
|
7066
|
+
const cls = {};
|
|
7067
|
+
//
|
|
7068
|
+
cls[`ax-flex`] = true;
|
|
7069
|
+
cls[`ax-flex-col`] = true;
|
|
7070
|
+
cls[`ax-w-full`] = true;
|
|
7071
|
+
cls[`ax-gap-${this.gap}`] = true;
|
|
7072
|
+
if (this.flexAlign()) {
|
|
7073
|
+
cls[this.flexAlign()] = true;
|
|
7074
|
+
}
|
|
7075
|
+
if (this.flexJustify()) {
|
|
7076
|
+
cls[this.flexJustify()] = true;
|
|
7077
|
+
}
|
|
7078
|
+
return cls;
|
|
6517
7079
|
}
|
|
6518
7080
|
get __style() {
|
|
6519
7081
|
return {
|
|
6520
7082
|
'background-color': this.backgroundColor(),
|
|
6521
|
-
'display': 'block',
|
|
6522
7083
|
};
|
|
6523
7084
|
}
|
|
6524
7085
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -6526,7 +7087,7 @@ class AXPBlockWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6526
7087
|
@for (node of children(); track $index) {
|
|
6527
7088
|
<axp-widget-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-renderer>
|
|
6528
7089
|
}
|
|
6529
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$
|
|
7090
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6530
7091
|
}
|
|
6531
7092
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetViewComponent, decorators: [{
|
|
6532
7093
|
type: Component,
|
|
@@ -6560,8 +7121,12 @@ const AXPBlockWidget = {
|
|
|
6560
7121
|
description: 'Organizes content in blocks',
|
|
6561
7122
|
icon: 'fa-solid fa-square',
|
|
6562
7123
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
6563
|
-
|
|
6564
|
-
properties: [
|
|
7124
|
+
type: 'container',
|
|
7125
|
+
properties: [
|
|
7126
|
+
AXP_FONT_SIZE_PROPERTY,
|
|
7127
|
+
cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: null } }),
|
|
7128
|
+
...AXP_LAYOUT_FLEX_PROPERTIES
|
|
7129
|
+
],
|
|
6565
7130
|
components: {
|
|
6566
7131
|
designer: {
|
|
6567
7132
|
component: () => Promise.resolve().then(function () { return blockWidgetDesigner_component; }).then((c) => c.AXPBlockWidgetDesignerComponent),
|
|
@@ -6586,7 +7151,6 @@ class AXPPageWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6586
7151
|
get __style() {
|
|
6587
7152
|
return {
|
|
6588
7153
|
'background-color': this.backgroundColor(),
|
|
6589
|
-
'display': 'block',
|
|
6590
7154
|
};
|
|
6591
7155
|
}
|
|
6592
7156
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -6594,7 +7158,7 @@ class AXPPageWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6594
7158
|
@for (node of children(); track $index) {
|
|
6595
7159
|
<axp-widget-renderer [node]="node" [parentNode]="this" [mode]="mode" > </axp-widget-renderer>
|
|
6596
7160
|
}
|
|
6597
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$
|
|
7161
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6598
7162
|
}
|
|
6599
7163
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetViewComponent, decorators: [{
|
|
6600
7164
|
type: Component,
|
|
@@ -6626,9 +7190,13 @@ const AXPPageWidget = {
|
|
|
6626
7190
|
description: 'Structures the entire page',
|
|
6627
7191
|
icon: 'fa-solid fa-page',
|
|
6628
7192
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
6629
|
-
|
|
7193
|
+
type: 'container',
|
|
6630
7194
|
visible: false,
|
|
6631
|
-
properties: [
|
|
7195
|
+
properties: [
|
|
7196
|
+
AXP_FONT_SIZE_PROPERTY,
|
|
7197
|
+
AXP_THEME_PROPERTY,
|
|
7198
|
+
AXP_BG_COLOR_PROPERTY
|
|
7199
|
+
],
|
|
6632
7200
|
components: {
|
|
6633
7201
|
view: {
|
|
6634
7202
|
component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
|
|
@@ -6640,7 +7208,7 @@ const AXPPageWidget = {
|
|
|
6640
7208
|
component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
|
|
6641
7209
|
},
|
|
6642
7210
|
designer: {
|
|
6643
|
-
component: () => import('./acorex-platform-widgets-page-widget-designer.component-
|
|
7211
|
+
component: () => import('./acorex-platform-widgets-page-widget-designer.component-6BMZ0qRw.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
|
|
6644
7212
|
},
|
|
6645
7213
|
},
|
|
6646
7214
|
};
|
|
@@ -6670,7 +7238,7 @@ class AXPRepeaterWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6670
7238
|
}
|
|
6671
7239
|
</ng-container>
|
|
6672
7240
|
}
|
|
6673
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$
|
|
7241
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6674
7242
|
}
|
|
6675
7243
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetViewComponent, decorators: [{
|
|
6676
7244
|
type: Component,
|
|
@@ -6745,12 +7313,12 @@ class AXPRepeaterWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
6745
7313
|
@for(row of rows();let i=$index; track i){
|
|
6746
7314
|
<ng-container>
|
|
6747
7315
|
@for (node of children();track $index) {
|
|
6748
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [index]="i" [mode]="this.mode"> </
|
|
7316
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [index]="i" [mode]="this.mode"> </ng-container>
|
|
6749
7317
|
}
|
|
6750
7318
|
</ng-container>
|
|
6751
7319
|
}
|
|
6752
7320
|
<axp-designer-add-widget-button></axp-designer-add-widget-button>
|
|
6753
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "
|
|
7321
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6754
7322
|
}
|
|
6755
7323
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetDesignerComponent, decorators: [{
|
|
6756
7324
|
type: Component,
|
|
@@ -6759,7 +7327,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
6759
7327
|
@for(row of rows();let i=$index; track i){
|
|
6760
7328
|
<ng-container>
|
|
6761
7329
|
@for (node of children();track $index) {
|
|
6762
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [index]="i" [mode]="this.mode"> </
|
|
7330
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [index]="i" [mode]="this.mode"> </ng-container>
|
|
6763
7331
|
}
|
|
6764
7332
|
</ng-container>
|
|
6765
7333
|
}
|
|
@@ -6767,7 +7335,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
6767
7335
|
`,
|
|
6768
7336
|
standalone: true,
|
|
6769
7337
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6770
|
-
imports: [CommonModule, AXPLayoutBuilderModule,
|
|
7338
|
+
imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent],
|
|
6771
7339
|
providers: [
|
|
6772
7340
|
{
|
|
6773
7341
|
provide: AXPContainerWidgetComponent, useExisting: AXPRepeaterWidgetDesignerComponent
|
|
@@ -6787,7 +7355,7 @@ const AXPRepeaterWidget = {
|
|
|
6787
7355
|
description: 'Adds repeating form elements',
|
|
6788
7356
|
icon: 'fa-solid fa-table-list',
|
|
6789
7357
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
6790
|
-
|
|
7358
|
+
type: 'container',
|
|
6791
7359
|
components: {
|
|
6792
7360
|
view: {
|
|
6793
7361
|
component: () => Promise.resolve().then(function () { return repeaterWidgetView_component; }).then((c) => c.AXPRepeaterWidgetViewComponent),
|
|
@@ -6827,38 +7395,50 @@ var colorBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
|
6827
7395
|
class AXPColorBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
6828
7396
|
constructor() {
|
|
6829
7397
|
super(...arguments);
|
|
7398
|
+
this.placeholder = computed(() => this.options()["placeholder"]);
|
|
6830
7399
|
this.disabled = computed(() => this.options()["disabled"]);
|
|
7400
|
+
this.readonly = computed(() => this.options()["readonly"]);
|
|
6831
7401
|
this.hasClearButton = computed(() => this.options()['hasClearButton']);
|
|
6832
7402
|
this.validationRules = computed(() => this.options()["validationRules"] ?? []);
|
|
6833
7403
|
}
|
|
7404
|
+
get __class() {
|
|
7405
|
+
const cls = {};
|
|
7406
|
+
cls[`ax-flex-1`] = true;
|
|
7407
|
+
return cls;
|
|
7408
|
+
}
|
|
6834
7409
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6835
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPColorBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
6836
|
-
<ax-color-box [disabled]="disabled()" [ngModel]="getValue()" (
|
|
7410
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPColorBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
7411
|
+
<ax-color-box [disabled]="disabled()" [readonly]="readonly()" [ngModel]="getValue()" [placeholder]="placeholder()" (onValueChanged)="handleValueChanged($event)">
|
|
7412
|
+
@for (validation of validationRules(); track $index) {
|
|
7413
|
+
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
7414
|
+
}
|
|
6837
7415
|
@if(hasClearButton()){
|
|
6838
7416
|
<ax-clear-button></ax-clear-button>
|
|
6839
|
-
}
|
|
6840
|
-
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
6841
|
-
}
|
|
7417
|
+
}
|
|
6842
7418
|
</ax-color-box>
|
|
6843
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type:
|
|
7419
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$5.AXColorBoxComponent, selector: "ax-color-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6844
7420
|
}
|
|
6845
7421
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetEditComponent, decorators: [{
|
|
6846
7422
|
type: Component,
|
|
6847
7423
|
args: [{
|
|
6848
7424
|
template: `
|
|
6849
|
-
<ax-color-box [disabled]="disabled()" [ngModel]="getValue()" (
|
|
7425
|
+
<ax-color-box [disabled]="disabled()" [readonly]="readonly()" [ngModel]="getValue()" [placeholder]="placeholder()" (onValueChanged)="handleValueChanged($event)">
|
|
7426
|
+
@for (validation of validationRules(); track $index) {
|
|
7427
|
+
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
7428
|
+
}
|
|
6850
7429
|
@if(hasClearButton()){
|
|
6851
7430
|
<ax-clear-button></ax-clear-button>
|
|
6852
|
-
}
|
|
6853
|
-
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
6854
|
-
}
|
|
7431
|
+
}
|
|
6855
7432
|
</ax-color-box>
|
|
6856
7433
|
`,
|
|
6857
7434
|
standalone: true,
|
|
6858
7435
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6859
7436
|
imports: [CommonModule, FormsModule, AXColorBoxModule, AXDecoratorModule, AXFormModule],
|
|
6860
7437
|
}]
|
|
6861
|
-
}]
|
|
7438
|
+
}], propDecorators: { __class: [{
|
|
7439
|
+
type: HostBinding,
|
|
7440
|
+
args: ['class']
|
|
7441
|
+
}] } });
|
|
6862
7442
|
|
|
6863
7443
|
var colorBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
6864
7444
|
__proto__: null,
|
|
@@ -6931,8 +7511,19 @@ const AXPColorBoxWidget = {
|
|
|
6931
7511
|
description: 'Picks and applies colors',
|
|
6932
7512
|
icon: 'fa-solid fa-palette',
|
|
6933
7513
|
group: AXP_WIDGETS_EDITOR_GROUP,
|
|
6934
|
-
|
|
7514
|
+
type: 'editor',
|
|
7515
|
+
properties: [
|
|
7516
|
+
AXP_NAME_PROPERTY,
|
|
7517
|
+
AXP_DATA_PATH_PROPERTY,
|
|
7518
|
+
AXP_READONLY_PROPERTY,
|
|
7519
|
+
AXP_DISABLED_PROPERTY,
|
|
7520
|
+
AXP_VALIDATION_PROPERTY,
|
|
7521
|
+
AXP_PLACEHOLDER_PROPERTY
|
|
7522
|
+
],
|
|
6935
7523
|
components: {
|
|
7524
|
+
designer: {
|
|
7525
|
+
component: () => import('./acorex-platform-widgets-color-box-widget-designer.component-Bb3aXCNZ.mjs').then((c) => c.AXPColorBoxWidgetDesignerComponent),
|
|
7526
|
+
},
|
|
6936
7527
|
view: {
|
|
6937
7528
|
component: () => Promise.resolve().then(function () { return colorBoxWidgetView_component; }).then((c) => c.AXPColorBoxWidgetViewComponent),
|
|
6938
7529
|
},
|
|
@@ -6948,9 +7539,6 @@ const AXPColorBoxWidget = {
|
|
|
6948
7539
|
print: {
|
|
6949
7540
|
component: () => Promise.resolve().then(function () { return colorBoxWidgetPrint_component; }).then((c) => c.AXPColorBoxWidgetPrintComponent),
|
|
6950
7541
|
},
|
|
6951
|
-
designer: {
|
|
6952
|
-
component: () => Promise.resolve().then(function () { return colorBoxWidgetEdit_component; }).then((c) => c.AXPColorBoxWidgetEditComponent),
|
|
6953
|
-
},
|
|
6954
7542
|
},
|
|
6955
7543
|
};
|
|
6956
7544
|
|
|
@@ -6962,13 +7550,14 @@ class AXPTextBlockWidgetViewComponent extends AXPWidgetComponent {
|
|
|
6962
7550
|
this.innerContent = computed(() => this.sanitizer.bypassSecurityTrustHtml(this.content()));
|
|
6963
7551
|
}
|
|
6964
7552
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6965
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBlockWidgetViewComponent, isStandalone: true, selector: "
|
|
7553
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBlockWidgetViewComponent, isStandalone: true, selector: "axp-text-block-widget", usesInheritance: true, ngImport: i0, template: `
|
|
6966
7554
|
<div [innerHTML]="innerContent()"></div>
|
|
6967
7555
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6968
7556
|
}
|
|
6969
7557
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, decorators: [{
|
|
6970
7558
|
type: Component,
|
|
6971
7559
|
args: [{
|
|
7560
|
+
selector: "axp-text-block-widget",
|
|
6972
7561
|
template: `
|
|
6973
7562
|
<div [innerHTML]="innerContent()"></div>
|
|
6974
7563
|
`,
|
|
@@ -6989,12 +7578,12 @@ const AXPTextBlockWidget = {
|
|
|
6989
7578
|
description: 'Displays text blocks',
|
|
6990
7579
|
icon: 'fa-solid fa-text',
|
|
6991
7580
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
7581
|
+
type: 'view',
|
|
6992
7582
|
properties: [
|
|
6993
|
-
AXP_PLACEHOLDER_PROPERTY,
|
|
6994
7583
|
{
|
|
6995
7584
|
name: 'content',
|
|
6996
7585
|
title: 'Content',
|
|
6997
|
-
group:
|
|
7586
|
+
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
6998
7587
|
schema: {
|
|
6999
7588
|
dataType: 'string',
|
|
7000
7589
|
defaultValue: 'Text Block',
|
|
@@ -7018,7 +7607,7 @@ const AXPTextBlockWidget = {
|
|
|
7018
7607
|
component: () => Promise.resolve().then(function () { return textBlockWidgetView_component; }).then((c) => c.AXPTextBlockWidgetViewComponent),
|
|
7019
7608
|
},
|
|
7020
7609
|
designer: {
|
|
7021
|
-
component: () =>
|
|
7610
|
+
component: () => import('./acorex-platform-widgets-text-block-widget-designer.component-Bi9hlpvB.mjs').then((c) => c.AXPTextBlockWidgetDesignerComponent),
|
|
7022
7611
|
},
|
|
7023
7612
|
},
|
|
7024
7613
|
};
|
|
@@ -7029,7 +7618,7 @@ const AXPDocumentWidget = {
|
|
|
7029
7618
|
description: 'Structures the entire document',
|
|
7030
7619
|
icon: 'fa-solid fa-page',
|
|
7031
7620
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
7032
|
-
|
|
7621
|
+
type: 'container',
|
|
7033
7622
|
visible: false,
|
|
7034
7623
|
properties: [],
|
|
7035
7624
|
components: {},
|
|
@@ -7048,7 +7637,7 @@ class AXPFormFieldWidgetViewComponent extends AXPWidgetComponent {
|
|
|
7048
7637
|
<axp-widget-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-renderer>
|
|
7049
7638
|
}
|
|
7050
7639
|
</ax-form-field>
|
|
7051
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2
|
|
7640
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$7.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7052
7641
|
}
|
|
7053
7642
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFormFieldWidgetViewComponent, decorators: [{
|
|
7054
7643
|
type: Component,
|
|
@@ -7077,8 +7666,14 @@ class AXPFormFieldWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7077
7666
|
super(...arguments);
|
|
7078
7667
|
this.label = computed(() => this.options()["label"]);
|
|
7079
7668
|
}
|
|
7669
|
+
get __class() {
|
|
7670
|
+
const cls = {};
|
|
7671
|
+
cls[`ax-block`] = true;
|
|
7672
|
+
cls[`ax-w-full`] = true;
|
|
7673
|
+
return cls;
|
|
7674
|
+
}
|
|
7080
7675
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFormFieldWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7081
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPFormFieldWidgetDesignerComponent, isStandalone: true, selector: "
|
|
7676
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPFormFieldWidgetDesignerComponent, isStandalone: true, selector: "axp-form-field-widget", host: { properties: { "class": "this.__class" } }, providers: [
|
|
7082
7677
|
{
|
|
7083
7678
|
provide: AXPContainerWidgetComponent, useExisting: AXPFormFieldWidgetDesignerComponent
|
|
7084
7679
|
}
|
|
@@ -7086,22 +7681,23 @@ class AXPFormFieldWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7086
7681
|
<ax-form-field>
|
|
7087
7682
|
<ax-label>{{label()}}</ax-label>
|
|
7088
7683
|
@for (node of children(); track $index) {
|
|
7089
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </
|
|
7684
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7090
7685
|
}
|
|
7091
7686
|
@empty {
|
|
7092
7687
|
<axp-designer-add-widget-button class="axp-empty-space ax-block ax-p-0 "></axp-designer-add-widget-button>
|
|
7093
7688
|
}
|
|
7094
7689
|
</ax-form-field>
|
|
7095
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2
|
|
7690
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7096
7691
|
}
|
|
7097
7692
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFormFieldWidgetDesignerComponent, decorators: [{
|
|
7098
7693
|
type: Component,
|
|
7099
7694
|
args: [{
|
|
7695
|
+
selector: "axp-form-field-widget",
|
|
7100
7696
|
template: `
|
|
7101
7697
|
<ax-form-field>
|
|
7102
7698
|
<ax-label>{{label()}}</ax-label>
|
|
7103
7699
|
@for (node of children(); track $index) {
|
|
7104
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </
|
|
7700
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7105
7701
|
}
|
|
7106
7702
|
@empty {
|
|
7107
7703
|
<axp-designer-add-widget-button class="axp-empty-space ax-block ax-p-0 "></axp-designer-add-widget-button>
|
|
@@ -7110,14 +7706,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7110
7706
|
`,
|
|
7111
7707
|
standalone: true,
|
|
7112
7708
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7113
|
-
imports: [CommonModule, AXFormModule, AXLabelModule, AXPLayoutBuilderModule,
|
|
7709
|
+
imports: [CommonModule, AXFormModule, AXLabelModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent],
|
|
7114
7710
|
providers: [
|
|
7115
7711
|
{
|
|
7116
7712
|
provide: AXPContainerWidgetComponent, useExisting: AXPFormFieldWidgetDesignerComponent
|
|
7117
7713
|
}
|
|
7118
7714
|
]
|
|
7119
7715
|
}]
|
|
7120
|
-
}]
|
|
7716
|
+
}], propDecorators: { __class: [{
|
|
7717
|
+
type: HostBinding,
|
|
7718
|
+
args: ['class']
|
|
7719
|
+
}] } });
|
|
7121
7720
|
|
|
7122
7721
|
var formFieldWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
7123
7722
|
__proto__: null,
|
|
@@ -7128,7 +7727,7 @@ const AXPFormFieldWidget = {
|
|
|
7128
7727
|
name: 'form-field',
|
|
7129
7728
|
title: 'Form Field',
|
|
7130
7729
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
7131
|
-
|
|
7730
|
+
type: 'container',
|
|
7132
7731
|
icon: 'fa-solid fa-pen-field',
|
|
7133
7732
|
properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_LABEL_PROPERTY],
|
|
7134
7733
|
components: {
|
|
@@ -7189,7 +7788,7 @@ class AXPGridWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7189
7788
|
this.rows = computed(() => this.options()["rows"] ?? 1);
|
|
7190
7789
|
this.gap = computed(() => this.options()["gap"] ?? 0);
|
|
7191
7790
|
this.cells = computed(() => Array.from({ length: this.cols() * this.rows() }).map((c, index) => index));
|
|
7192
|
-
this.settled = computed(() => this.cols() * this.rows() > 1);
|
|
7791
|
+
this.settled = computed(() => (this.cols() * this.rows() > 1) && this.children().length);
|
|
7193
7792
|
}
|
|
7194
7793
|
// private e = effect(async () => {
|
|
7195
7794
|
// if (this.settled()) {
|
|
@@ -7227,8 +7826,15 @@ class AXPGridWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7227
7826
|
this.designerService.addWidget(this.node, node);
|
|
7228
7827
|
});
|
|
7229
7828
|
}
|
|
7829
|
+
get __class() {
|
|
7830
|
+
const cls = {};
|
|
7831
|
+
//
|
|
7832
|
+
cls[`ax-block`] = true;
|
|
7833
|
+
cls[`ax-w-full`] = true;
|
|
7834
|
+
return cls;
|
|
7835
|
+
}
|
|
7230
7836
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7231
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGridWidgetDesignerComponent, isStandalone: true, selector: "
|
|
7837
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGridWidgetDesignerComponent, isStandalone: true, selector: "axp-grid-layout-widget", host: { properties: { "class": "this.__class" } }, providers: [
|
|
7232
7838
|
{
|
|
7233
7839
|
provide: AXPContainerWidgetComponent, useExisting: AXPGridWidgetDesignerComponent
|
|
7234
7840
|
}
|
|
@@ -7237,23 +7843,24 @@ class AXPGridWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7237
7843
|
{
|
|
7238
7844
|
<div class="ax-grid ax-grid-cols-{{cols()}} ax-grid-rows-{{rows()}} ax-gap-{{gap()}}">
|
|
7239
7845
|
@for (node of children(); track $index) {
|
|
7240
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </
|
|
7846
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7241
7847
|
}
|
|
7242
7848
|
</div>
|
|
7243
7849
|
}@else {
|
|
7244
7850
|
<axp-designer-grid-drawer (onSelect)="handleDrawerSelect($event)"></axp-designer-grid-drawer>
|
|
7245
7851
|
}
|
|
7246
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "
|
|
7852
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerGridDrawerComponent, selector: "axp-designer-grid-drawer", inputs: ["rows", "columns"], outputs: ["rowsChange", "columnsChange", "onSelect"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7247
7853
|
}
|
|
7248
7854
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridWidgetDesignerComponent, decorators: [{
|
|
7249
7855
|
type: Component,
|
|
7250
7856
|
args: [{
|
|
7857
|
+
selector: 'axp-grid-layout-widget',
|
|
7251
7858
|
template: `
|
|
7252
7859
|
@if(settled())
|
|
7253
7860
|
{
|
|
7254
7861
|
<div class="ax-grid ax-grid-cols-{{cols()}} ax-grid-rows-{{rows()}} ax-gap-{{gap()}}">
|
|
7255
7862
|
@for (node of children(); track $index) {
|
|
7256
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </
|
|
7863
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7257
7864
|
}
|
|
7258
7865
|
</div>
|
|
7259
7866
|
}@else {
|
|
@@ -7262,190 +7869,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7262
7869
|
`,
|
|
7263
7870
|
standalone: true,
|
|
7264
7871
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7265
|
-
imports: [CommonModule, AXPLayoutBuilderModule,
|
|
7872
|
+
imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent, AXPDesignerGridDrawerComponent],
|
|
7266
7873
|
providers: [
|
|
7267
7874
|
{
|
|
7268
7875
|
provide: AXPContainerWidgetComponent, useExisting: AXPGridWidgetDesignerComponent
|
|
7269
7876
|
}
|
|
7270
7877
|
]
|
|
7271
7878
|
}]
|
|
7272
|
-
}]
|
|
7879
|
+
}], propDecorators: { __class: [{
|
|
7880
|
+
type: HostBinding,
|
|
7881
|
+
args: ['class']
|
|
7882
|
+
}] } });
|
|
7273
7883
|
|
|
7274
7884
|
var gridWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
7275
7885
|
__proto__: null,
|
|
7276
7886
|
AXPGridWidgetDesignerComponent: AXPGridWidgetDesignerComponent
|
|
7277
7887
|
});
|
|
7278
7888
|
|
|
7279
|
-
const AXP_LAYOUT_GAP_PROPERTY = {
|
|
7280
|
-
name: 'gap',
|
|
7281
|
-
title: 'Gap',
|
|
7282
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7283
|
-
schema: {
|
|
7284
|
-
dataType: 'number',
|
|
7285
|
-
defaultValue: 2,
|
|
7286
|
-
interface: {
|
|
7287
|
-
name: 'gap',
|
|
7288
|
-
path: 'options.gap',
|
|
7289
|
-
type: AXPWidgetsCatalog.number,
|
|
7290
|
-
options: {
|
|
7291
|
-
minValue: 0,
|
|
7292
|
-
maxValue: 12,
|
|
7293
|
-
},
|
|
7294
|
-
},
|
|
7295
|
-
},
|
|
7296
|
-
visible: true,
|
|
7297
|
-
};
|
|
7298
|
-
const AXP_LAYOUT_COL_SPAN_PROPERTY = {
|
|
7299
|
-
name: 'colSpan',
|
|
7300
|
-
title: 'Column Span',
|
|
7301
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7302
|
-
schema: {
|
|
7303
|
-
dataType: 'number',
|
|
7304
|
-
interface: {
|
|
7305
|
-
name: 'colSpan',
|
|
7306
|
-
path: 'options.colSpan',
|
|
7307
|
-
type: AXPWidgetsCatalog.number,
|
|
7308
|
-
options: {
|
|
7309
|
-
minValue: 0,
|
|
7310
|
-
maxValue: 12,
|
|
7311
|
-
},
|
|
7312
|
-
},
|
|
7313
|
-
},
|
|
7314
|
-
visible: true,
|
|
7315
|
-
};
|
|
7316
|
-
const AXP_LAYOUT_COL_START_PROPERTY = {
|
|
7317
|
-
name: 'colStart',
|
|
7318
|
-
title: 'Column Start',
|
|
7319
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7320
|
-
schema: {
|
|
7321
|
-
dataType: 'number',
|
|
7322
|
-
interface: {
|
|
7323
|
-
name: 'colStart',
|
|
7324
|
-
path: 'options.colStart',
|
|
7325
|
-
type: AXPWidgetsCatalog.number,
|
|
7326
|
-
options: {
|
|
7327
|
-
minValue: 1,
|
|
7328
|
-
maxValue: 13,
|
|
7329
|
-
},
|
|
7330
|
-
},
|
|
7331
|
-
},
|
|
7332
|
-
visible: true,
|
|
7333
|
-
};
|
|
7334
|
-
const AXP_LAYOUT_COL_END_PROPERTY = {
|
|
7335
|
-
name: 'colEnd',
|
|
7336
|
-
title: 'Column End',
|
|
7337
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7338
|
-
schema: {
|
|
7339
|
-
dataType: 'number',
|
|
7340
|
-
interface: {
|
|
7341
|
-
name: 'colEnd',
|
|
7342
|
-
path: 'options.colEnd',
|
|
7343
|
-
type: AXPWidgetsCatalog.number,
|
|
7344
|
-
options: {
|
|
7345
|
-
minValue: 1,
|
|
7346
|
-
maxValue: 13,
|
|
7347
|
-
},
|
|
7348
|
-
},
|
|
7349
|
-
},
|
|
7350
|
-
visible: true,
|
|
7351
|
-
};
|
|
7352
|
-
const AXP_LAYOUT_COLUMNS_PROPERTY = {
|
|
7353
|
-
name: 'cols',
|
|
7354
|
-
title: 'Columns',
|
|
7355
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7356
|
-
schema: {
|
|
7357
|
-
dataType: 'number',
|
|
7358
|
-
defaultValue: 1,
|
|
7359
|
-
interface: {
|
|
7360
|
-
name: 'cols',
|
|
7361
|
-
path: 'options.cols',
|
|
7362
|
-
type: AXPWidgetsCatalog.number,
|
|
7363
|
-
options: {
|
|
7364
|
-
minValue: 1,
|
|
7365
|
-
maxValue: 12,
|
|
7366
|
-
},
|
|
7367
|
-
},
|
|
7368
|
-
},
|
|
7369
|
-
visible: true,
|
|
7370
|
-
};
|
|
7371
|
-
const AXP_LAYOUT_ROWS_PROPERTY = {
|
|
7372
|
-
name: 'rows',
|
|
7373
|
-
title: 'Rows',
|
|
7374
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7375
|
-
schema: {
|
|
7376
|
-
dataType: 'number',
|
|
7377
|
-
defaultValue: 1,
|
|
7378
|
-
interface: {
|
|
7379
|
-
name: 'rows',
|
|
7380
|
-
path: 'options.rows',
|
|
7381
|
-
type: AXPWidgetsCatalog.number,
|
|
7382
|
-
options: {
|
|
7383
|
-
minValue: 1,
|
|
7384
|
-
maxValue: 100,
|
|
7385
|
-
},
|
|
7386
|
-
},
|
|
7387
|
-
},
|
|
7388
|
-
visible: true,
|
|
7389
|
-
};
|
|
7390
|
-
const AXP_FLEX_JUSTIFY_PROPERTY = {
|
|
7391
|
-
name: 'flexJustify',
|
|
7392
|
-
title: 'Flex Justify',
|
|
7393
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7394
|
-
schema: {
|
|
7395
|
-
dataType: 'string',
|
|
7396
|
-
defaultValue: { id: 'ax-justify-start' },
|
|
7397
|
-
interface: {
|
|
7398
|
-
name: 'flexJustify',
|
|
7399
|
-
path: 'options.flexJustify',
|
|
7400
|
-
type: AXPWidgetsCatalog.select,
|
|
7401
|
-
options: {
|
|
7402
|
-
hasClearButton: false,
|
|
7403
|
-
dataSource: [
|
|
7404
|
-
{ id: 'ax-justify-start', title: 'Justify Start' },
|
|
7405
|
-
{ id: 'ax-justify-end', title: 'Justify End' },
|
|
7406
|
-
{ id: 'ax-justify-center', title: 'Justify Center' },
|
|
7407
|
-
{ id: 'ax-justify-between', title: 'Justify Between' },
|
|
7408
|
-
{ id: 'ax-justify-around', title: 'Justify Around' },
|
|
7409
|
-
{ id: 'ax-justify-evenly', title: 'Justify Evenly' },
|
|
7410
|
-
],
|
|
7411
|
-
},
|
|
7412
|
-
},
|
|
7413
|
-
},
|
|
7414
|
-
visible: true,
|
|
7415
|
-
};
|
|
7416
|
-
const AXP_FLEX_ALIGN_PROPERTY = {
|
|
7417
|
-
name: 'flexAlign',
|
|
7418
|
-
title: 'Flex Align',
|
|
7419
|
-
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7420
|
-
schema: {
|
|
7421
|
-
dataType: 'string',
|
|
7422
|
-
defaultValue: { id: 'ax-items-start' },
|
|
7423
|
-
interface: {
|
|
7424
|
-
name: 'flexAlign',
|
|
7425
|
-
path: 'options.flexAlign',
|
|
7426
|
-
type: AXPWidgetsCatalog.select,
|
|
7427
|
-
options: {
|
|
7428
|
-
hasClearButton: false,
|
|
7429
|
-
dataSource: [
|
|
7430
|
-
{ id: 'ax-items-start', title: 'Align Start' },
|
|
7431
|
-
{ id: 'ax-items-end', title: 'Align End' },
|
|
7432
|
-
{ id: 'ax-items-center', title: 'Align Center' },
|
|
7433
|
-
{ id: 'ax-items-baseline', title: 'Align Baseline' },
|
|
7434
|
-
{ id: 'ax-items-stretch', title: 'Align Stretch' },
|
|
7435
|
-
],
|
|
7436
|
-
},
|
|
7437
|
-
},
|
|
7438
|
-
},
|
|
7439
|
-
visible: true,
|
|
7440
|
-
};
|
|
7441
|
-
|
|
7442
7889
|
const AXPGridWidget = {
|
|
7443
7890
|
name: 'grid-layout',
|
|
7444
7891
|
title: 'Grid Layout',
|
|
7445
|
-
|
|
7892
|
+
type: 'container',
|
|
7446
7893
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
7447
7894
|
icon: 'fa-solid fa-grid',
|
|
7448
|
-
properties: [
|
|
7895
|
+
properties: [
|
|
7896
|
+
AXP_NAME_PROPERTY,
|
|
7897
|
+
...AXP_LAYOUT_GRID_PROPERTIES
|
|
7898
|
+
],
|
|
7449
7899
|
components: {
|
|
7450
7900
|
view: {
|
|
7451
7901
|
component: () => Promise.resolve().then(function () { return gridWidgetView_component; }).then((c) => c.AXPGridWidgetViewComponent),
|
|
@@ -7465,25 +7915,31 @@ const AXPGridWidget = {
|
|
|
7465
7915
|
class AXPQrcodeWidgetViewComponent extends AXPWidgetComponent {
|
|
7466
7916
|
constructor() {
|
|
7467
7917
|
super(...arguments);
|
|
7468
|
-
this.content = computed(() => this.
|
|
7469
|
-
this.size = computed(() => this.options()['size']);
|
|
7470
|
-
this.level = computed(() => this.options()['level']?.id);
|
|
7918
|
+
this.content = computed(() => this.options()['content']);
|
|
7919
|
+
this.size = computed(() => this.options()['size'] ?? 200);
|
|
7920
|
+
this.level = computed(() => this.options()['level']?.id ?? 'M');
|
|
7471
7921
|
this.color = computed(() => AXColorUtil.colorStringToHex(this.options()['color'] ?? '#000000'));
|
|
7472
|
-
this.outputType = computed(() => this.options()['outputType']);
|
|
7922
|
+
this.outputType = computed(() => this.options()['outputType'] ?? 'svg');
|
|
7923
|
+
}
|
|
7924
|
+
get __class() {
|
|
7925
|
+
const cls = {};
|
|
7926
|
+
cls[`ax-block`] = true;
|
|
7927
|
+
cls[`ax-flex-1`] = true;
|
|
7928
|
+
return cls;
|
|
7473
7929
|
}
|
|
7474
7930
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7475
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPQrcodeWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
7931
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPQrcodeWidgetViewComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
7476
7932
|
@if(this.content()){
|
|
7477
7933
|
<ax-qrcode
|
|
7478
7934
|
[content]="this.content()"
|
|
7479
|
-
[size]="size()
|
|
7935
|
+
[size]="size()"
|
|
7480
7936
|
[color]="color()"
|
|
7481
|
-
[level]="level()
|
|
7482
|
-
[outputType]="outputType()
|
|
7937
|
+
[level]="level()"
|
|
7938
|
+
[outputType]="outputType()"
|
|
7483
7939
|
>
|
|
7484
7940
|
</ax-qrcode>
|
|
7485
7941
|
}
|
|
7486
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXQrcodeModule }, { kind: "component", type: i1$
|
|
7942
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXQrcodeModule }, { kind: "component", type: i1$8.AXQrcodeComponent, selector: "ax-qrcode", inputs: ["content", "size", "level", "color", "backgroundColor", "outputType"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7487
7943
|
}
|
|
7488
7944
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPQrcodeWidgetViewComponent, decorators: [{
|
|
7489
7945
|
type: Component,
|
|
@@ -7492,10 +7948,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7492
7948
|
@if(this.content()){
|
|
7493
7949
|
<ax-qrcode
|
|
7494
7950
|
[content]="this.content()"
|
|
7495
|
-
[size]="size()
|
|
7951
|
+
[size]="size()"
|
|
7496
7952
|
[color]="color()"
|
|
7497
|
-
[level]="level()
|
|
7498
|
-
[outputType]="outputType()
|
|
7953
|
+
[level]="level()"
|
|
7954
|
+
[outputType]="outputType()"
|
|
7499
7955
|
>
|
|
7500
7956
|
</ax-qrcode>
|
|
7501
7957
|
}
|
|
@@ -7504,7 +7960,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7504
7960
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7505
7961
|
imports: [CommonModule, AXQrcodeModule],
|
|
7506
7962
|
}]
|
|
7507
|
-
}]
|
|
7963
|
+
}], propDecorators: { __class: [{
|
|
7964
|
+
type: HostBinding,
|
|
7965
|
+
args: ['class']
|
|
7966
|
+
}] } });
|
|
7508
7967
|
|
|
7509
7968
|
var qrcodeWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
7510
7969
|
__proto__: null,
|
|
@@ -7515,20 +7974,20 @@ const AXPQrcodeWidget = {
|
|
|
7515
7974
|
name: 'qrcode',
|
|
7516
7975
|
title: 'QR Code',
|
|
7517
7976
|
group: AXP_WIDGETS_ADVANCE_GROUP,
|
|
7518
|
-
container: false,
|
|
7519
7977
|
icon: 'fa-solid fa-qrcode',
|
|
7520
7978
|
description: 'Display and edit QR Codes',
|
|
7979
|
+
type: 'view',
|
|
7521
7980
|
properties: [
|
|
7522
7981
|
AXP_NAME_PROPERTY,
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
plainTextDefaultProperty(),
|
|
7982
|
+
cloneProperty(AXP_COLOR_PROPERTY, { schema: { interface: { defaultValue: '#000000' } } }),
|
|
7983
|
+
cloneProperty(AXP_CONTENT_PROPERTY, { schema: { interface: { defaultValue: 'http://google.com' } } }),
|
|
7526
7984
|
{
|
|
7527
7985
|
name: 'size',
|
|
7528
7986
|
title: 'Size',
|
|
7529
7987
|
group: AXP_STYLING_PROPERTY_GROUP,
|
|
7530
7988
|
schema: {
|
|
7531
7989
|
dataType: 'string',
|
|
7990
|
+
defaultValue: 200,
|
|
7532
7991
|
interface: {
|
|
7533
7992
|
name: 'size',
|
|
7534
7993
|
path: 'options.size',
|
|
@@ -7544,6 +8003,7 @@ const AXPQrcodeWidget = {
|
|
|
7544
8003
|
schema: {
|
|
7545
8004
|
dataType: 'string',
|
|
7546
8005
|
interface: {
|
|
8006
|
+
defaultValue: 'M',
|
|
7547
8007
|
name: 'level',
|
|
7548
8008
|
path: 'options.level',
|
|
7549
8009
|
type: AXPWidgetsCatalog.select,
|
|
@@ -7612,71 +8072,79 @@ class AXPGridItemWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
|
7612
8072
|
this.colSpan = computed(() => this.options()["colSpan"]);
|
|
7613
8073
|
this.colStart = computed(() => this.options()["colStart"]);
|
|
7614
8074
|
this.colEnd = computed(() => this.options()["colEnd"]);
|
|
7615
|
-
this.
|
|
7616
|
-
this.
|
|
7617
|
-
this.
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
cls[`!ax-flex`] = true;
|
|
7621
|
-
cls[`ax-flex-1`] = true;
|
|
7622
|
-
if (this.flexAlign()) {
|
|
7623
|
-
cls[this.flexAlign()] = true;
|
|
7624
|
-
}
|
|
7625
|
-
if (this.flexJustify()) {
|
|
7626
|
-
cls[this.flexJustify()] = true;
|
|
7627
|
-
}
|
|
7628
|
-
//
|
|
7629
|
-
cls[`ax-col-span-12`] = true;
|
|
7630
|
-
if (this.colSpan() != null) {
|
|
7631
|
-
cls[`lg:ax-col-span-${this.colSpan()}`] = true;
|
|
7632
|
-
}
|
|
7633
|
-
else {
|
|
7634
|
-
cls[`lg:ax-col-span-1`] = true;
|
|
7635
|
-
}
|
|
7636
|
-
//
|
|
7637
|
-
if (this.colStart() != null) {
|
|
7638
|
-
cls[`lg:ax-col-start-${this.colStart()}`] = true;
|
|
7639
|
-
}
|
|
7640
|
-
//
|
|
7641
|
-
if (this.colEnd() != null) {
|
|
7642
|
-
cls[`lg:ax-col-end-${this.colEnd()}`] = true;
|
|
7643
|
-
}
|
|
7644
|
-
return cls;
|
|
7645
|
-
});
|
|
8075
|
+
this.flexAlignItems = computed(() => this.options()["flexAlignItems"]?.id);
|
|
8076
|
+
this.flexJustifyContent = computed(() => this.options()["flexJustifyContent"]?.id);
|
|
8077
|
+
this.flexWrap = computed(() => this.options()["flexWrap"]?.id);
|
|
8078
|
+
this.flexDirection = computed(() => this.options()["flexDirection"]?.id);
|
|
8079
|
+
this.gap = computed(() => this.options()["gap"] ?? 0);
|
|
7646
8080
|
}
|
|
7647
8081
|
async handleSlotClick() {
|
|
7648
8082
|
await this.designerService.showPicker(this.node);
|
|
7649
8083
|
}
|
|
7650
8084
|
get __class() {
|
|
7651
|
-
|
|
8085
|
+
const cls = {};
|
|
8086
|
+
//
|
|
8087
|
+
cls[`ax-flex`] = true;
|
|
8088
|
+
cls[`ax-gap-${this.gap()}`] = true;
|
|
8089
|
+
//
|
|
8090
|
+
if (this.flexAlignItems()) {
|
|
8091
|
+
cls[this.flexAlignItems()] = true;
|
|
8092
|
+
}
|
|
8093
|
+
if (this.flexJustifyContent()) {
|
|
8094
|
+
cls[this.flexJustifyContent()] = true;
|
|
8095
|
+
}
|
|
8096
|
+
if (this.flexWrap()) {
|
|
8097
|
+
cls[this.flexWrap()] = true;
|
|
8098
|
+
}
|
|
8099
|
+
if (this.flexDirection()) {
|
|
8100
|
+
cls[this.flexDirection()] = true;
|
|
8101
|
+
}
|
|
8102
|
+
//
|
|
8103
|
+
cls[`ax-col-span-12`] = true;
|
|
8104
|
+
if (this.colSpan() != null) {
|
|
8105
|
+
cls[`lg:ax-col-span-${this.colSpan()}`] = true;
|
|
8106
|
+
}
|
|
8107
|
+
else {
|
|
8108
|
+
cls[`lg:ax-col-span-1`] = true;
|
|
8109
|
+
}
|
|
8110
|
+
//
|
|
8111
|
+
if (this.colStart() != null) {
|
|
8112
|
+
cls[`lg:ax-col-start-${this.colStart()}`] = true;
|
|
8113
|
+
}
|
|
8114
|
+
//
|
|
8115
|
+
if (this.colEnd() != null) {
|
|
8116
|
+
cls[`lg:ax-col-end-${this.colEnd()}`] = true;
|
|
8117
|
+
}
|
|
8118
|
+
return cls;
|
|
7652
8119
|
}
|
|
7653
8120
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridItemWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7654
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGridItemWidgetDesignerComponent, isStandalone: true, selector: "
|
|
8121
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGridItemWidgetDesignerComponent, isStandalone: true, selector: "axp-grid-layout-item-widget", host: { properties: { "class": "this.__class" } }, providers: [
|
|
7655
8122
|
{
|
|
7656
8123
|
provide: AXPContainerWidgetComponent, useExisting: AXPGridItemWidgetDesignerComponent
|
|
7657
8124
|
}
|
|
7658
8125
|
], usesInheritance: true, ngImport: i0, template: `
|
|
7659
8126
|
@for (node of children(); track $index) {
|
|
7660
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </
|
|
8127
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7661
8128
|
}
|
|
7662
8129
|
@empty {
|
|
7663
|
-
<div class="axp-empty-space ax-flex ax-justify-center ax-items-center" >
|
|
8130
|
+
<div class="axp-empty-space ax-flex-1 ax-flex ax-justify-center ax-items-center" >
|
|
7664
8131
|
<div class="ax-m-auto ax-p-4 ax-text-primary-500 hover:ax-text-primary-800" (click)="handleSlotClick()">
|
|
7665
8132
|
<i class="fa-solid fa-plus "></i>
|
|
7666
8133
|
</div>
|
|
7667
8134
|
</div>
|
|
7668
8135
|
}
|
|
7669
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "
|
|
8136
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7670
8137
|
}
|
|
7671
8138
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridItemWidgetDesignerComponent, decorators: [{
|
|
7672
8139
|
type: Component,
|
|
7673
8140
|
args: [{
|
|
8141
|
+
selector: 'axp-grid-layout-item-widget',
|
|
7674
8142
|
template: `
|
|
7675
8143
|
@for (node of children(); track $index) {
|
|
7676
|
-
<axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </
|
|
8144
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
7677
8145
|
}
|
|
7678
8146
|
@empty {
|
|
7679
|
-
<div class="axp-empty-space ax-flex ax-justify-center ax-items-center" >
|
|
8147
|
+
<div class="axp-empty-space ax-flex-1 ax-flex ax-justify-center ax-items-center" >
|
|
7680
8148
|
<div class="ax-m-auto ax-p-4 ax-text-primary-500 hover:ax-text-primary-800" (click)="handleSlotClick()">
|
|
7681
8149
|
<i class="fa-solid fa-plus "></i>
|
|
7682
8150
|
</div>
|
|
@@ -7685,7 +8153,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7685
8153
|
`,
|
|
7686
8154
|
standalone: true,
|
|
7687
8155
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7688
|
-
imports: [CommonModule, AXPLayoutBuilderModule,
|
|
8156
|
+
imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent, AXPDesignerGridDrawerComponent],
|
|
7689
8157
|
providers: [
|
|
7690
8158
|
{
|
|
7691
8159
|
provide: AXPContainerWidgetComponent, useExisting: AXPGridItemWidgetDesignerComponent
|
|
@@ -7705,17 +8173,14 @@ var gridItemWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
|
7705
8173
|
const AXPGridItemWidget = {
|
|
7706
8174
|
name: 'grid-item-layout',
|
|
7707
8175
|
title: 'Grid Item',
|
|
7708
|
-
|
|
8176
|
+
type: 'container',
|
|
7709
8177
|
visible: false,
|
|
7710
8178
|
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
7711
8179
|
icon: 'fa-solid fa-objects-column',
|
|
7712
8180
|
properties: [
|
|
7713
8181
|
AXP_NAME_PROPERTY,
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
AXP_LAYOUT_COL_END_PROPERTY,
|
|
7717
|
-
AXP_FLEX_ALIGN_PROPERTY,
|
|
7718
|
-
AXP_FLEX_JUSTIFY_PROPERTY,
|
|
8182
|
+
...AXP_LAYOUT_GRID_ITEM_PROPERTIES,
|
|
8183
|
+
...AXP_LAYOUT_FLEX_PROPERTIES
|
|
7719
8184
|
],
|
|
7720
8185
|
components: {
|
|
7721
8186
|
view: {
|
|
@@ -7733,9 +8198,156 @@ const AXPGridItemWidget = {
|
|
|
7733
8198
|
},
|
|
7734
8199
|
};
|
|
7735
8200
|
|
|
8201
|
+
class AXPGridRowWidgetViewComponent extends AXPWidgetComponent {
|
|
8202
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8203
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPGridRowWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8204
|
+
}
|
|
8205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetViewComponent, decorators: [{
|
|
8206
|
+
type: Component,
|
|
8207
|
+
args: [{
|
|
8208
|
+
template: ``,
|
|
8209
|
+
standalone: true,
|
|
8210
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8211
|
+
imports: [CommonModule]
|
|
8212
|
+
}]
|
|
8213
|
+
}] });
|
|
8214
|
+
|
|
8215
|
+
var gridRowWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
8216
|
+
__proto__: null,
|
|
8217
|
+
AXPGridRowWidgetViewComponent: AXPGridRowWidgetViewComponent
|
|
8218
|
+
});
|
|
8219
|
+
|
|
8220
|
+
class AXPGridRowWidgetPrintComponent extends AXPWidgetComponent {
|
|
8221
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8222
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPGridRowWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8223
|
+
}
|
|
8224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetPrintComponent, decorators: [{
|
|
8225
|
+
type: Component,
|
|
8226
|
+
args: [{
|
|
8227
|
+
template: ``,
|
|
8228
|
+
standalone: true,
|
|
8229
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8230
|
+
imports: [CommonModule],
|
|
8231
|
+
inputs: []
|
|
8232
|
+
}]
|
|
8233
|
+
}] });
|
|
8234
|
+
|
|
8235
|
+
var gridRowWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
8236
|
+
__proto__: null,
|
|
8237
|
+
AXPGridRowWidgetPrintComponent: AXPGridRowWidgetPrintComponent
|
|
8238
|
+
});
|
|
8239
|
+
|
|
8240
|
+
class AXPGridRowWidgetDesignerComponent extends AXPContainerWidgetComponent {
|
|
8241
|
+
constructor() {
|
|
8242
|
+
super(...arguments);
|
|
8243
|
+
this.designerService = inject(AXPDesignerService);
|
|
8244
|
+
this.cols = computed(() => this.options()["cols"] ?? 1);
|
|
8245
|
+
this.gap = computed(() => this.options()["gap"] ?? 0);
|
|
8246
|
+
this.cells = computed(() => Array.from({ length: this.cols() - sum(this.children().map(c => get(c.options, 'colSpan'))) }).map((c, index) => index));
|
|
8247
|
+
this.hoverIndex = signal(0);
|
|
8248
|
+
}
|
|
8249
|
+
handleMouseHover(index) {
|
|
8250
|
+
console.log("handleMouseHover", index);
|
|
8251
|
+
this.hoverIndex.set(index);
|
|
8252
|
+
}
|
|
8253
|
+
handleClick(e, index) {
|
|
8254
|
+
console.log("handleClick", index);
|
|
8255
|
+
e.stopPropagation();
|
|
8256
|
+
this.hoverIndex.set(-1);
|
|
8257
|
+
e.preventDefault();
|
|
8258
|
+
this.designerService.addWidget(this.node, {
|
|
8259
|
+
type: AXPWidgetsCatalog.gridItem,
|
|
8260
|
+
options: {
|
|
8261
|
+
colSpan: index + 1
|
|
8262
|
+
}
|
|
8263
|
+
});
|
|
8264
|
+
}
|
|
8265
|
+
handleMouseLeave(event) {
|
|
8266
|
+
this.hoverIndex.set(-1);
|
|
8267
|
+
}
|
|
8268
|
+
get __class() {
|
|
8269
|
+
const cls = {};
|
|
8270
|
+
//
|
|
8271
|
+
cls[`ax-block`] = true;
|
|
8272
|
+
cls[`ax-w-full`] = true;
|
|
8273
|
+
return cls;
|
|
8274
|
+
}
|
|
8275
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8276
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPGridRowWidgetDesignerComponent, isStandalone: true, selector: "axp-grid-row-widget", host: { listeners: { "mouseleave": "handleMouseLeave($event)" }, properties: { "class": "this.__class" } }, providers: [
|
|
8277
|
+
{
|
|
8278
|
+
provide: AXPContainerWidgetComponent, useExisting: AXPGridWidgetDesignerComponent
|
|
8279
|
+
}
|
|
8280
|
+
], usesInheritance: true, ngImport: i0, template: `
|
|
8281
|
+
<div class="ax-grid ax-grid-cols-{{cols()}} ax-gap-{{gap()}}">
|
|
8282
|
+
@for (node of children(); track $index) {
|
|
8283
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
8284
|
+
}
|
|
8285
|
+
@for (node of cells(); track $index) {
|
|
8286
|
+
<div class="axp-empty-slot" (mouseenter)="handleMouseHover($index)" (mouseleave)="handleMouseLeave($event)" (click)="handleClick($event,$index)" [class.axp-state-hover]="hoverIndex()>=$index">
|
|
8287
|
+
</div>
|
|
8288
|
+
}
|
|
8289
|
+
</div>
|
|
8290
|
+
`, isInline: true, styles: ["axp-grid-row-widget.axp-widget-host .axp-empty-slot{display:flex;flex:1 1 0%;align-items:center;justify-content:center;border-width:1px;border-style:dashed;padding:1rem;background-color:rgba(209,213,219,.1);background-image:linear-gradient(135deg,rgb(209 213 219 / 50%) 10%,transparent 0,transparent 50%,rgb(209 213 219 / 50%) 0,rgb(209 213 219 / 50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}axp-grid-row-widget.axp-widget-host .axp-empty-slot.axp-state-hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(var(--ax-color-primary-300),var(--tw-bg-opacity))}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "mode", "node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
8291
|
+
}
|
|
8292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGridRowWidgetDesignerComponent, decorators: [{
|
|
8293
|
+
type: Component,
|
|
8294
|
+
args: [{ selector: 'axp-grid-row-widget', template: `
|
|
8295
|
+
<div class="ax-grid ax-grid-cols-{{cols()}} ax-gap-{{gap()}}">
|
|
8296
|
+
@for (node of children(); track $index) {
|
|
8297
|
+
<ng-container axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </ng-container>
|
|
8298
|
+
}
|
|
8299
|
+
@for (node of cells(); track $index) {
|
|
8300
|
+
<div class="axp-empty-slot" (mouseenter)="handleMouseHover($index)" (mouseleave)="handleMouseLeave($event)" (click)="handleClick($event,$index)" [class.axp-state-hover]="hoverIndex()>=$index">
|
|
8301
|
+
</div>
|
|
8302
|
+
}
|
|
8303
|
+
</div>
|
|
8304
|
+
`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererDirective, AXPDesignerAddWidgetButtonComponent, AXPDesignerGridDrawerComponent], providers: [
|
|
8305
|
+
{
|
|
8306
|
+
provide: AXPContainerWidgetComponent, useExisting: AXPGridWidgetDesignerComponent
|
|
8307
|
+
}
|
|
8308
|
+
], styles: ["axp-grid-row-widget.axp-widget-host .axp-empty-slot{display:flex;flex:1 1 0%;align-items:center;justify-content:center;border-width:1px;border-style:dashed;padding:1rem;background-color:rgba(209,213,219,.1);background-image:linear-gradient(135deg,rgb(209 213 219 / 50%) 10%,transparent 0,transparent 50%,rgb(209 213 219 / 50%) 0,rgb(209 213 219 / 50%) 60%,transparent 0,transparent);background-size:7.5px 7.5px}axp-grid-row-widget.axp-widget-host .axp-empty-slot.axp-state-hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(var(--ax-color-primary-300),var(--tw-bg-opacity))}\n"] }]
|
|
8309
|
+
}], propDecorators: { handleMouseLeave: [{
|
|
8310
|
+
type: HostListener,
|
|
8311
|
+
args: ['mouseleave', ['$event']]
|
|
8312
|
+
}], __class: [{
|
|
8313
|
+
type: HostBinding,
|
|
8314
|
+
args: ['class']
|
|
8315
|
+
}] } });
|
|
8316
|
+
|
|
8317
|
+
var gridRowWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
8318
|
+
__proto__: null,
|
|
8319
|
+
AXPGridRowWidgetDesignerComponent: AXPGridRowWidgetDesignerComponent
|
|
8320
|
+
});
|
|
8321
|
+
|
|
8322
|
+
const AXPGridRowWidget = {
|
|
8323
|
+
name: "grid-row-layout",
|
|
8324
|
+
title: "Grid Row Layout",
|
|
8325
|
+
group: AXP_WIDGETS_LAYOUT_GROUP,
|
|
8326
|
+
type: 'container',
|
|
8327
|
+
icon: "fa-solid fa-diagram-cells",
|
|
8328
|
+
properties: [
|
|
8329
|
+
AXP_NAME_PROPERTY,
|
|
8330
|
+
...AXP_LAYOUT_GRID_ROW_PROPERTIES
|
|
8331
|
+
],
|
|
8332
|
+
components: {
|
|
8333
|
+
view: {
|
|
8334
|
+
component: () => Promise.resolve().then(function () { return gridRowWidgetView_component; }).then((c) => c.AXPGridRowWidgetViewComponent),
|
|
8335
|
+
},
|
|
8336
|
+
edit: {
|
|
8337
|
+
component: () => Promise.resolve().then(function () { return gridRowWidgetView_component; }).then((c) => c.AXPGridRowWidgetViewComponent),
|
|
8338
|
+
},
|
|
8339
|
+
print: {
|
|
8340
|
+
component: () => Promise.resolve().then(function () { return gridRowWidgetPrint_component; }).then((c) => c.AXPGridRowWidgetPrintComponent),
|
|
8341
|
+
},
|
|
8342
|
+
designer: {
|
|
8343
|
+
component: () => Promise.resolve().then(function () { return gridRowWidgetDesigner_component; }).then((c) => c.AXPGridRowWidgetDesignerComponent),
|
|
8344
|
+
},
|
|
8345
|
+
}
|
|
8346
|
+
};
|
|
8347
|
+
|
|
7736
8348
|
class AXPWidgetsModule {
|
|
7737
8349
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7738
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, imports: [i1$
|
|
8350
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, imports: [i1$7.AXPLayoutBuilderModule] }); }
|
|
7739
8351
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetsModule, imports: [AXPLayoutBuilderModule.forChild({
|
|
7740
8352
|
widgets: [
|
|
7741
8353
|
AXPDocumentWidget,
|
|
@@ -7747,6 +8359,7 @@ class AXPWidgetsModule {
|
|
|
7747
8359
|
AXPFormFieldWidget,
|
|
7748
8360
|
AXPGridWidget,
|
|
7749
8361
|
AXPGridItemWidget,
|
|
8362
|
+
AXPGridRowWidget,
|
|
7750
8363
|
//
|
|
7751
8364
|
AXPTextBoxWidget,
|
|
7752
8365
|
AXPCheckBoxWidget,
|
|
@@ -7788,6 +8401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7788
8401
|
AXPFormFieldWidget,
|
|
7789
8402
|
AXPGridWidget,
|
|
7790
8403
|
AXPGridItemWidget,
|
|
8404
|
+
AXPGridRowWidget,
|
|
7791
8405
|
//
|
|
7792
8406
|
AXPTextBoxWidget,
|
|
7793
8407
|
AXPCheckBoxWidget,
|
|
@@ -7823,5 +8437,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
7823
8437
|
* Generated bundle index. Do not edit.
|
|
7824
8438
|
*/
|
|
7825
8439
|
|
|
7826
|
-
export { AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetFilterComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget,
|
|
8440
|
+
export { AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetFilterComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTY, AXP_DATE_FROMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ALIGN_CONTENT_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_FLEX_ALIGN_PROPERTY, AXP_LAYOUT_FLEX_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY, AXP_LAYOUT_FLEX_PROPERTIES, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_FLEX_WRAP_PROPERTY, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, booleanDefaultProperty, plainTextDefaultProperty };
|
|
7827
8441
|
//# sourceMappingURL=acorex-platform-widgets.mjs.map
|