@acorex/platform 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auth/index.d.ts +3 -6
- package/auth/lib/application/application.loader.d.ts +2 -3
- package/auth/lib/auth.module.d.ts +5 -4
- package/auth/lib/auth.strategy.d.ts +17 -6
- package/auth/lib/errors.types.d.ts +12 -2
- package/auth/lib/feature/feature.directive.d.ts +15 -0
- package/auth/lib/feature/feature.guard.d.ts +2 -0
- package/auth/lib/feature/feature.loader.d.ts +2 -1
- package/auth/lib/feature/index.d.ts +4 -0
- package/auth/lib/permission/index.d.ts +4 -0
- package/auth/lib/permission/permission.directive.d.ts +5 -6
- package/auth/lib/permission/permission.guard.d.ts +1 -1
- package/auth/lib/permission/permission.loader.d.ts +2 -1
- package/auth/lib/session.service.d.ts +21 -13
- package/auth/lib/session.types.d.ts +24 -0
- package/auth/lib/tenant/tenant.loader.d.ts +2 -3
- package/common/index.d.ts +0 -1
- package/common/lib/common.module.d.ts +1 -1
- package/common/lib/configs/app.config.d.ts +0 -1
- package/common/lib/data/data-provider.types.d.ts +4 -0
- package/common/lib/shared/state-persistence/state-persistence.actions.d.ts +1 -1
- package/common/lib/store/common.actions.d.ts +3 -3
- package/core/README.md +4 -0
- package/core/index.d.ts +4 -0
- package/core/lib/app/application.types.d.ts +144 -0
- package/core/lib/app/operators.d.ts +22 -0
- package/core/lib/configs/config.types.d.ts +5 -0
- package/core/lib/core.module.d.ts +6 -0
- package/esm2022/auth/index.mjs +4 -7
- package/esm2022/auth/lib/application/application.loader.mjs +2 -5
- package/esm2022/auth/lib/auth-registry.service.mjs +3 -3
- package/esm2022/auth/lib/auth.guard.mjs +7 -9
- package/esm2022/auth/lib/auth.module.mjs +26 -20
- package/esm2022/auth/lib/auth.strategy.mjs +1 -1
- package/esm2022/auth/lib/errors.types.mjs +7 -5
- package/esm2022/auth/lib/feature/feature.directive.mjs +55 -0
- package/esm2022/auth/lib/feature/feature.guard.mjs +19 -0
- package/esm2022/auth/lib/feature/feature.loader.mjs +2 -2
- package/esm2022/auth/lib/feature/index.mjs +5 -0
- package/esm2022/auth/lib/permission/index.mjs +5 -0
- package/esm2022/auth/lib/permission/permission.directive.mjs +24 -21
- package/esm2022/auth/lib/permission/permission.guard.mjs +12 -9
- package/esm2022/auth/lib/permission/permission.loader.mjs +2 -2
- package/esm2022/auth/lib/session.service.mjs +116 -121
- package/esm2022/auth/lib/session.types.mjs +29 -0
- package/esm2022/auth/lib/tenant/tenant.loader.mjs +2 -5
- package/esm2022/common/index.mjs +1 -2
- package/esm2022/common/lib/common.module.mjs +19 -26
- package/esm2022/common/lib/configs/app.config.mjs +2 -3
- package/esm2022/common/lib/data/data-provider.types.mjs +1 -1
- package/esm2022/common/lib/errors/error-handler-registry.service.mjs +3 -3
- package/esm2022/common/lib/errors/global-error-handler.mjs +3 -3
- package/esm2022/common/lib/settings/settings.service.mjs +3 -3
- package/esm2022/common/lib/shared/state-persistence/state-persistence.module.mjs +4 -4
- package/esm2022/common/lib/store/common.effects.mjs +3 -3
- package/esm2022/common/lib/utils/clipboard-service.mjs +3 -3
- package/esm2022/common/lib/utils/router-util.service.mjs +3 -3
- package/esm2022/common/lib/utils/sticky.directive.mjs +3 -3
- package/esm2022/core/acorex-platform-core.mjs +5 -0
- package/esm2022/core/index.mjs +5 -0
- package/esm2022/core/lib/app/application.types.mjs +19 -0
- package/esm2022/core/lib/app/operators.mjs +50 -0
- package/esm2022/core/lib/configs/config.types.mjs +3 -0
- package/esm2022/core/lib/core.module.mjs +16 -0
- package/esm2022/layout/acorex-platform-layout.mjs +5 -0
- package/esm2022/layout/index.mjs +3 -0
- package/esm2022/layout/lib/builder/builder.module.mjs +66 -0
- package/esm2022/layout/lib/builder/context.service.mjs +64 -0
- package/esm2022/layout/lib/builder/index.mjs +8 -0
- package/esm2022/layout/lib/builder/widget-column-renderer.mjs +75 -0
- package/esm2022/layout/lib/builder/widget-container.mjs +45 -0
- package/esm2022/layout/lib/builder/widget-registery.service.mjs +33 -0
- package/esm2022/layout/lib/builder/widget-renderer.mjs +279 -0
- package/esm2022/layout/lib/builder/widget.types.mjs +49 -0
- package/esm2022/layout/lib/component-slot/component-slot-loader.service.mjs +56 -0
- package/esm2022/layout/lib/component-slot/component-slot-registery.service.mjs +28 -0
- package/esm2022/layout/lib/component-slot/component-slot.directive.mjs +24 -0
- package/esm2022/layout/lib/component-slot/component-slot.module.mjs +72 -0
- package/esm2022/layout/lib/component-slot/component-slot.types.mjs +2 -0
- package/esm2022/layout/lib/component-slot/index.mjs +6 -0
- package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.module.mjs +4 -4
- package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.component.mjs +6 -6
- package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.module.mjs +6 -6
- package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.mjs +4 -4
- package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.mjs +5 -5
- package/esm2022/layouts/lib/admin/admin.module.mjs +18 -10
- package/esm2022/layouts/lib/admin/admin.routes.mjs +14 -2
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +4 -4
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +15 -15
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +4 -4
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.mjs +6 -6
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +31 -27
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +8 -6
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.mjs +11 -7
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +4 -4
- package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.mjs +16 -18
- package/esm2022/layouts/lib/admin/entity-layout/index.mjs +2 -1
- package/esm2022/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +7 -22
- package/esm2022/layouts/lib/admin/entity-layout/workflows/index.mjs +4 -0
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/show-details.workflow.mjs +10 -0
- package/esm2022/layouts/lib/admin/entity-layout/workflows/show-list.workflow.mjs +10 -0
- package/esm2022/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.mjs +10 -0
- package/esm2022/layouts/lib/admin/entity.resolver.mjs +1 -5
- package/esm2022/layouts/lib/admin/store/admin-layout.effects.mjs +3 -3
- package/esm2022/layouts/lib/layout.module.mjs +9 -24
- package/esm2022/layouts/lib/shared/components/content-view/content-view.page.mjs +4 -4
- package/esm2022/layouts/lib/shared/components/error-401/error-401.component.mjs +5 -6
- package/esm2022/layouts/lib/shared/components/error-404/error-404.component.mjs +3 -3
- package/esm2022/layouts/lib/shared/components/error-offline/error-offline.component.mjs +3 -3
- package/esm2022/layouts/lib/shared/components/index.mjs +2 -1
- package/esm2022/layouts/lib/shared/components/logo/logo.component.mjs +5 -5
- package/esm2022/layouts/lib/shared/components/slots/footer-text-slot.component.mjs +3 -3
- package/esm2022/layouts/lib/shared/components/slots/navbar-slot.component.mjs +3 -3
- package/esm2022/layouts/lib/shared/components/slots/theme-slot.component.mjs +4 -4
- package/esm2022/layouts/lib/shared/entity/entity-registery.service.mjs +3 -3
- package/esm2022/layouts/lib/shared/entity/entity.class.mjs +1 -1
- package/esm2022/layouts/lib/shared/services/layout.service.mjs +3 -3
- package/esm2022/layouts/lib/shared/workflows/common.workflow.mjs +54 -17
- package/esm2022/layouts/lib/shared/workflows/error-handler.mjs +3 -3
- package/esm2022/layouts/lib/themes/default/entity-layouts/entity-details-view/entity-details-view.component.mjs +73 -0
- package/esm2022/layouts/lib/themes/default/entity-layouts/entity-details.viewmodel.mjs +99 -0
- package/esm2022/layouts/lib/themes/default/index.mjs +3 -0
- package/esm2022/layouts/lib/widgets/avatar/avatar-widget-edit.component.mjs +70 -12
- package/esm2022/layouts/lib/widgets/avatar/avatar-widget-view.component.mjs +41 -13
- package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-column.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.mjs +4 -4
- package/esm2022/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/common-widgets.module.mjs +32 -7
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-column.component.mjs +7 -7
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.mjs +12 -9
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.mjs +10 -26
- package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-view.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/email/email-widget-column.component.mjs +7 -7
- package/esm2022/layouts/lib/widgets/email/email-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/email/email-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/file/file-widget-column.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/file/file-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/file/file-widget-filter.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/file/file-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-filter.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/gallery/gallery-widget-view.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-column.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-filter.component.mjs +10 -34
- package/esm2022/layouts/lib/widgets/lookup/lookup-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/map/map-widget-edit.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/map/map-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/messenger/messenger-widget-column.component.mjs +7 -7
- package/esm2022/layouts/lib/widgets/messenger/messenger-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/messenger/messenger-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/number/number-widget-edit.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/number/number-widget-view.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/password/change-password.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/password/password-widget-column.component.mjs +10 -20
- package/esm2022/layouts/lib/widgets/password/password-widget-edit.component.mjs +17 -10
- package/esm2022/layouts/lib/widgets/password/password-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/phone/phone-widget-column.component.mjs +7 -7
- package/esm2022/layouts/lib/widgets/phone/phone-widget-edit.component.mjs +8 -92
- package/esm2022/layouts/lib/widgets/phone/phone-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-column.component.mjs +9 -17
- package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-column.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.mjs +28 -28
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-view.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/text/largetext-widget-edit.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/text/text-widget-column.component.mjs +10 -11
- package/esm2022/layouts/lib/widgets/text/text-widget-edit.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/text/text-widget-view.component.mjs +5 -5
- package/esm2022/layouts/lib/widgets/toggle/toggle-widget-column.component.mjs +6 -6
- package/esm2022/layouts/lib/widgets/toggle/toggle-widget-edit.component.mjs +3 -3
- package/esm2022/layouts/lib/widgets/toggle/toggle-widget-view.component.mjs +5 -5
- package/esm2022/mocks/lib/mocks.module.mjs +4 -4
- package/esm2022/mocks/lib/services/mocker.service.mjs +8 -18
- package/esm2022/mocks/lib/storage/storage.mock.service.mjs +6 -9
- package/esm2022/native/lib/native.module.mjs +4 -4
- package/esm2022/native/lib/native.service.mjs +3 -3
- package/esm2022/schema/index.mjs +2 -2
- package/esm2022/schema/lib/schema-registery.service.mjs +4 -4
- package/esm2022/schema/lib/schema.module.mjs +4 -4
- package/esm2022/schema/lib/schema.types.mjs +2 -0
- package/esm2022/schema/lib/widget/widget-base.mjs +14 -11
- package/esm2022/schema/lib/widget/widget-column-renderer.mjs +36 -17
- package/esm2022/schema/lib/widget/widget-filter-renderer.mjs +3 -3
- package/esm2022/schema/lib/widget/widget-renderer.mjs +7 -7
- package/esm2022/schema/lib/widget/widget-token.mjs +1 -1
- package/esm2022/widgets/acorex-platform-widgets.mjs +5 -0
- package/esm2022/widgets/index.mjs +2 -0
- package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-edit.component.mjs +45 -0
- package/esm2022/widgets/lib/editors/checkbox/checkbox-widget.config.mjs +9 -0
- package/esm2022/widgets/lib/editors/checkbox/index.mjs +3 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +113 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +45 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/date-time-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.mjs +196 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-view.component.mjs +111 -0
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/email-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.mjs +189 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-view.component.mjs +147 -0
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/file-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.mjs +172 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-types.mjs +2 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-view.component.mjs +159 -0
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/gallery-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/map-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.mjs +92 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-view.component.mjs +65 -0
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/number-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.mjs +135 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-view.component.mjs +39 -0
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/password-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.mjs +39 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-view.component.mjs +73 -0
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.mjs +190 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.mjs +113 -0
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.mjs +63 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.mjs +33 -0
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/select-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.mjs +80 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-view.component.mjs +54 -0
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.mjs +58 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +129 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +41 -0
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/editors/text-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.mjs +120 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-view.component.mjs +39 -0
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget.config.mjs +24 -0
- package/esm2022/widgets/lib/layout/block-widget/block-widget.component.mjs +39 -0
- package/esm2022/widgets/lib/layout/block-widget/block-widget.config.mjs +9 -0
- package/esm2022/widgets/lib/layout/block-widget/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets.module.mjs +71 -0
- package/esm2022/workflow/lib/workflow-event-dispatcher.service.mjs +3 -3
- package/esm2022/workflow/lib/workflow-registery.service.mjs +3 -3
- package/esm2022/workflow/lib/workflow.module.mjs +4 -4
- package/esm2022/workflow/lib/workflow.service.mjs +3 -3
- package/esm2022/workflow/lib/workflow.types.mjs +7 -7
- package/fesm2022/acorex-platform-auth.mjs +311 -214
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs +70 -244
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +94 -0
- package/fesm2022/acorex-platform-core.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout.mjs +756 -0
- package/fesm2022/acorex-platform-layout.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-avatar-widget-edit.component-PZr1lXj-.mjs → acorex-platform-layouts-avatar-widget-edit.component-a_eCmVu5.mjs} +72 -14
- package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-a_eCmVu5.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-wwI7L0Kc.mjs +64 -0
- package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-wwI7L0Kc.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-boolean-widget-filter.component-H056Q5Gz.mjs → acorex-platform-layouts-boolean-widget-filter.component-CHW4rgxA.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-boolean-widget-filter.component-H056Q5Gz.mjs.map → acorex-platform-layouts-boolean-widget-filter.component-CHW4rgxA.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-change-password.component-QMAm6dxN.mjs → acorex-platform-layouts-change-password.component-vUZy2W_B.mjs} +7 -7
- package/fesm2022/{acorex-platform-layouts-change-password.component-QMAm6dxN.mjs.map → acorex-platform-layouts-change-password.component-vUZy2W_B.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-checkbox-widget-column.component-vRJI5S-w.mjs → acorex-platform-layouts-checkbox-widget-column.component-BNEtAS7g.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-BNEtAS7g.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-checkbox-widget-edit.component-P4cD_Nwg.mjs → acorex-platform-layouts-checkbox-widget-edit.component-Cqn_QBcv.mjs} +4 -4
- package/fesm2022/{acorex-platform-layouts-checkbox-widget-edit.component-P4cD_Nwg.mjs.map → acorex-platform-layouts-checkbox-widget-edit.component-Cqn_QBcv.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-checkbox-widget-view.component-m6bF8XFR.mjs → acorex-platform-layouts-checkbox-widget-view.component-DQLggJ9x.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-DQLggJ9x.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-dateTime-widget-column.component-qeQRJePy.mjs → acorex-platform-layouts-dateTime-widget-column.component-D0eNN66F.mjs} +7 -7
- package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-D0eNN66F.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-dateTime-widget-edit.component-zeJXGXY8.mjs → acorex-platform-layouts-dateTime-widget-edit.component-BLqAWdRX.mjs} +13 -10
- package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-BLqAWdRX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-dateTime-widget-filter.component-DJ6esclU.mjs → acorex-platform-layouts-dateTime-widget-filter.component-tvc-cTos.mjs} +10 -26
- package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-tvc-cTos.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-dateTime-widget-view.component-BrwycTWz.mjs → acorex-platform-layouts-dateTime-widget-view.component-CjChqiJw.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-CjChqiJw.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-email-widget-column.component-ac8gqsFT.mjs → acorex-platform-layouts-email-widget-column.component-CUnxKERe.mjs} +7 -7
- package/fesm2022/acorex-platform-layouts-email-widget-column.component-CUnxKERe.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-email-widget-edit.component-m2dI7y9X.mjs → acorex-platform-layouts-email-widget-edit.component-DqnNien2.mjs} +8 -8
- package/fesm2022/{acorex-platform-layouts-email-widget-edit.component-m2dI7y9X.mjs.map → acorex-platform-layouts-email-widget-edit.component-DqnNien2.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-email-widget-view.component-XrV8va7z.mjs → acorex-platform-layouts-email-widget-view.component-BZsLYW2w.mjs} +5 -5
- package/fesm2022/{acorex-platform-layouts-email-widget-view.component-XrV8va7z.mjs.map → acorex-platform-layouts-email-widget-view.component-BZsLYW2w.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-entity-create-view.component-8rtifIvM.mjs → acorex-platform-layouts-entity-create-view.component-C3TUCnB2.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-entity-create-view.component-8rtifIvM.mjs.map → acorex-platform-layouts-entity-create-view.component-C3TUCnB2.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-entity-modify-view.component-VeTkP3-n.mjs → acorex-platform-layouts-entity-modify-view.component-BnSfJlc5.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-entity-modify-view.component-VeTkP3-n.mjs.map → acorex-platform-layouts-entity-modify-view.component-BnSfJlc5.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-file-widget-column.component-v7kAdIQ9.mjs → acorex-platform-layouts-file-widget-column.component-f54Z9E5C.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-file-widget-column.component-f54Z9E5C.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-file-widget-edit.component-Wrq7ZL9R.mjs → acorex-platform-layouts-file-widget-edit.component-CW9ESi46.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-file-widget-edit.component-Wrq7ZL9R.mjs.map → acorex-platform-layouts-file-widget-edit.component-CW9ESi46.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-file-widget-filter.component-1-NJh38j.mjs → acorex-platform-layouts-file-widget-filter.component-K3mC1xLX.mjs} +5 -5
- package/fesm2022/{acorex-platform-layouts-file-widget-filter.component-1-NJh38j.mjs.map → acorex-platform-layouts-file-widget-filter.component-K3mC1xLX.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-file-widget-view.component-mXBrKX0K.mjs → acorex-platform-layouts-file-widget-view.component-DVlbi33v.mjs} +7 -7
- package/fesm2022/acorex-platform-layouts-file-widget-view.component-DVlbi33v.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-gallery-widget-edit.component-cWNvVwum.mjs → acorex-platform-layouts-gallery-widget-edit.component-BUlkUU5u.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-gallery-widget-edit.component-cWNvVwum.mjs.map → acorex-platform-layouts-gallery-widget-edit.component-BUlkUU5u.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-gallery-widget-filter.component-OCz0hj5i.mjs → acorex-platform-layouts-gallery-widget-filter.component-BYFQSXOV.mjs} +5 -5
- package/fesm2022/{acorex-platform-layouts-gallery-widget-filter.component-OCz0hj5i.mjs.map → acorex-platform-layouts-gallery-widget-filter.component-BYFQSXOV.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-gallery-widget-view.component-xU52uaP0.mjs → acorex-platform-layouts-gallery-widget-view.component-BqVO3rDH.mjs} +7 -7
- package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-BqVO3rDH.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-largetext-widget-edit.component-Um_eBRFi.mjs → acorex-platform-layouts-largetext-widget-edit.component-CmH9daul.mjs} +4 -4
- package/fesm2022/{acorex-platform-layouts-largetext-widget-edit.component-Um_eBRFi.mjs.map → acorex-platform-layouts-largetext-widget-edit.component-CmH9daul.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-lookup-widget-column.component-Ts0MJe8O.mjs → acorex-platform-layouts-lookup-widget-column.component-C4Bb5AYW.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-C4Bb5AYW.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-lookup-widget-edit.component-l5nSr9Cm.mjs → acorex-platform-layouts-lookup-widget-edit.component-B2Qyoi4Q.mjs} +8 -7
- package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-B2Qyoi4Q.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-lookup-widget-filter.component-gp5skvmz.mjs → acorex-platform-layouts-lookup-widget-filter.component-JJzSun3D.mjs} +14 -37
- package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-JJzSun3D.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-lookup-widget-view.component-ftFXFj6k.mjs → acorex-platform-layouts-lookup-widget-view.component-Bmp_zVcQ.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-Bmp_zVcQ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-map-widget-edit.component-SOQvPhmX.mjs → acorex-platform-layouts-map-widget-edit.component-EWlgQnx5.mjs} +4 -4
- package/fesm2022/{acorex-platform-layouts-map-widget-edit.component-SOQvPhmX.mjs.map → acorex-platform-layouts-map-widget-edit.component-EWlgQnx5.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-map-widget-view.component-1Lj9efbd.mjs → acorex-platform-layouts-map-widget-view.component-cB5Mq7G7.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-map-widget-view.component-cB5Mq7G7.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-messenger-widget-column.component-W7ZY-W84.mjs → acorex-platform-layouts-messenger-widget-column.component-DWgWrdmz.mjs} +7 -7
- package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-DWgWrdmz.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-messenger-widget-edit.component-dAX8nirB.mjs → acorex-platform-layouts-messenger-widget-edit.component-C7VOe49a.mjs} +8 -8
- package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-C7VOe49a.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-messenger-widget-view.component-9TJiFdq-.mjs → acorex-platform-layouts-messenger-widget-view.component-uciMJWYn.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-uciMJWYn.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-number-widget-edit.component-DDi-o_Zn.mjs → acorex-platform-layouts-number-widget-edit.component-CXTwKvM4.mjs} +4 -4
- package/fesm2022/{acorex-platform-layouts-number-widget-edit.component-DDi-o_Zn.mjs.map → acorex-platform-layouts-number-widget-edit.component-CXTwKvM4.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-number-widget-filter.component-DPGSzdNm.mjs → acorex-platform-layouts-number-widget-filter.component-ARH7BdkE.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-number-widget-filter.component-DPGSzdNm.mjs.map → acorex-platform-layouts-number-widget-filter.component-ARH7BdkE.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-number-widget-view.component-hqkAR0LG.mjs → acorex-platform-layouts-number-widget-view.component-B0duuEhX.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-number-widget-view.component-B0duuEhX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-password-widget-column.component-ic1jykZL.mjs → acorex-platform-layouts-password-widget-column.component-Cav_zCe4.mjs} +10 -20
- package/fesm2022/acorex-platform-layouts-password-widget-column.component-Cav_zCe4.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-password-widget-edit.component-Dm2E5zA_.mjs +44 -0
- package/fesm2022/acorex-platform-layouts-password-widget-edit.component-Dm2E5zA_.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-password-widget-view.component-E2vtPKRO.mjs → acorex-platform-layouts-password-widget-view.component-BaipF6fT.mjs} +8 -8
- package/fesm2022/{acorex-platform-layouts-password-widget-view.component-E2vtPKRO.mjs.map → acorex-platform-layouts-password-widget-view.component-BaipF6fT.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-phone-widget-column.component-s04WZfzv.mjs → acorex-platform-layouts-phone-widget-column.component-BtZ5Qke0.mjs} +7 -7
- package/fesm2022/acorex-platform-layouts-phone-widget-column.component-BtZ5Qke0.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-phone-widget-edit.component-MKzlZ0_B.mjs → acorex-platform-layouts-phone-widget-edit.component-BugCYS-l.mjs} +11 -95
- package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-BugCYS-l.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-phone-widget-view.component-NEO22XO7.mjs → acorex-platform-layouts-phone-widget-view.component-C7EN8qDk.mjs} +5 -5
- package/fesm2022/{acorex-platform-layouts-phone-widget-view.component-NEO22XO7.mjs.map → acorex-platform-layouts-phone-widget-view.component-C7EN8qDk.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-rich-text-widget-column.component-P0YzXTIB.mjs → acorex-platform-layouts-rich-text-widget-column.component-B99s2Zhi.mjs} +11 -19
- package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-B99s2Zhi.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-rich-text-widget-edit.component-ro2yg7PR.mjs → acorex-platform-layouts-rich-text-widget-edit.component-Di1P6EQV.mjs} +4 -4
- package/fesm2022/{acorex-platform-layouts-rich-text-widget-edit.component-ro2yg7PR.mjs.map → acorex-platform-layouts-rich-text-widget-edit.component-Di1P6EQV.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-rich-text-widget-view.component--Rzxm2a6.mjs → acorex-platform-layouts-rich-text-widget-view.component-B_QG0YJc.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component-B_QG0YJc.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-selection-list-widget-column.component-9FTkDGmq.mjs → acorex-platform-layouts-selection-list-widget-column.component-Cx9QqR9f.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-Cx9QqR9f.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-selection-list-widget-edit.component-FpOQ12Ie.mjs → acorex-platform-layouts-selection-list-widget-edit.component-DU-U-Af-.mjs} +28 -28
- package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-DU-U-Af-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-selection-list-widget-filter.component-hGk-ZZ78.mjs → acorex-platform-layouts-selection-list-widget-filter.component-B8y8heXR.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-B8y8heXR.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-selection-list-widget-view.component-s9xq___Y.mjs → acorex-platform-layouts-selection-list-widget-view.component-BDupWZy-.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-BDupWZy-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-signature-pad-widget-edit.component-W28Uk9zO.mjs → acorex-platform-layouts-signature-pad-widget-edit.component-bEDsl8mg.mjs} +7 -7
- package/fesm2022/{acorex-platform-layouts-signature-pad-widget-edit.component-W28Uk9zO.mjs.map → acorex-platform-layouts-signature-pad-widget-edit.component-bEDsl8mg.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-signature-pad-widget-view.component-R40Ml757.mjs → acorex-platform-layouts-signature-pad-widget-view.component-DB903O2F.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-DB903O2F.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-string-widget-filter.component-4oZ6BVis.mjs → acorex-platform-layouts-string-widget-filter.component-D3ZxVk6S.mjs} +7 -7
- package/fesm2022/{acorex-platform-layouts-string-widget-filter.component-4oZ6BVis.mjs.map → acorex-platform-layouts-string-widget-filter.component-D3ZxVk6S.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-text-widget-column.component-qhh6MT79.mjs → acorex-platform-layouts-text-widget-column.component-D8WDAbQB.mjs} +10 -11
- package/fesm2022/acorex-platform-layouts-text-widget-column.component-D8WDAbQB.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-text-widget-edit.component-TC127Dq8.mjs → acorex-platform-layouts-text-widget-edit.component-BrDbNXgJ.mjs} +6 -6
- package/fesm2022/{acorex-platform-layouts-text-widget-edit.component-TC127Dq8.mjs.map → acorex-platform-layouts-text-widget-edit.component-BrDbNXgJ.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-text-widget-view.component-65eOj0qR.mjs → acorex-platform-layouts-text-widget-view.component-XHN41M3T.mjs} +5 -5
- package/fesm2022/acorex-platform-layouts-text-widget-view.component-XHN41M3T.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-toggle-widget-column.component-uxOXR-bL.mjs → acorex-platform-layouts-toggle-widget-column.component-BjIyTuZj.mjs} +6 -6
- package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-BjIyTuZj.mjs.map +1 -0
- package/fesm2022/{acorex-platform-layouts-toggle-widget-edit.component-R44L1pgJ.mjs → acorex-platform-layouts-toggle-widget-edit.component-BKbBile6.mjs} +4 -4
- package/fesm2022/{acorex-platform-layouts-toggle-widget-edit.component-R44L1pgJ.mjs.map → acorex-platform-layouts-toggle-widget-edit.component-BKbBile6.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-layouts-toggle-widget-view.component-DTOeAUiy.mjs → acorex-platform-layouts-toggle-widget-view.component-CyjhQSiV.mjs} +5 -5
- package/fesm2022/{acorex-platform-layouts-toggle-widget-view.component-DTOeAUiy.mjs.map → acorex-platform-layouts-toggle-widget-view.component-CyjhQSiV.mjs.map} +1 -1
- package/fesm2022/acorex-platform-layouts.mjs +565 -422
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/acorex-platform-mocks.mjs +16 -29
- package/fesm2022/acorex-platform-mocks.mjs.map +1 -1
- package/fesm2022/acorex-platform-native.mjs +7 -7
- package/fesm2022/acorex-platform-schema.mjs +63 -41
- package/fesm2022/acorex-platform-schema.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +3966 -0
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -0
- package/fesm2022/acorex-platform-workflow.mjs +19 -19
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/README.md +4 -0
- package/layout/index.d.ts +2 -0
- package/layout/lib/builder/builder.module.d.ts +23 -0
- package/layout/lib/builder/context.service.d.ts +17 -0
- package/layout/lib/builder/index.d.ts +7 -0
- package/layout/lib/builder/widget-column-renderer.d.ts +30 -0
- package/layout/lib/builder/widget-container.d.ts +13 -0
- package/layout/lib/builder/widget-registery.service.d.ts +10 -0
- package/layout/lib/builder/widget-renderer.d.ts +41 -0
- package/layout/lib/builder/widget.types.d.ts +55 -0
- package/layouts/lib/admin/admin-root-layout/admin-root-layout.module.d.ts +1 -1
- package/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.d.ts +3 -5
- package/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.d.ts +7 -2
- package/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.d.ts +2 -0
- package/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.d.ts +2 -1
- package/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.d.ts +3 -0
- package/layouts/lib/admin/entity-layout/index.d.ts +1 -0
- package/layouts/lib/admin/entity-layout/workflows/index.d.ts +3 -0
- package/layouts/lib/admin/entity-layout/workflows/show-details.workflow.d.ts +2 -0
- package/layouts/lib/admin/entity-layout/workflows/show-list.workflow.d.ts +2 -0
- package/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.d.ts +2 -0
- package/layouts/lib/admin/store/admin-layout.actions.d.ts +8 -8
- package/layouts/lib/admin/store/admin-layout.effects.d.ts +1 -1
- package/layouts/lib/admin/store/admin-layout.reducers.d.ts +2 -2
- package/layouts/lib/layout.module.d.ts +1 -1
- package/layouts/lib/shared/components/error-401/error-401.component.d.ts +1 -4
- package/layouts/lib/shared/components/index.d.ts +1 -0
- package/layouts/lib/shared/components/slots/theme-slot.component.d.ts +1 -1
- package/layouts/lib/shared/entity/entity.class.d.ts +10 -2
- package/layouts/lib/shared/workflows/common.workflow.d.ts +9 -0
- package/layouts/lib/themes/default/entity-layouts/entity-details-view/entity-details-view.component.d.ts +11 -0
- package/layouts/lib/themes/default/entity-layouts/entity-details.viewmodel.d.ts +34 -0
- package/layouts/lib/themes/default/index.d.ts +2 -0
- package/layouts/lib/widgets/avatar/avatar-widget-edit.component.d.ts +8 -2
- package/layouts/lib/widgets/avatar/avatar-widget-view.component.d.ts +6 -1
- package/layouts/lib/widgets/checkbox/checkbox-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/dateTime/dateTime-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.d.ts +4 -2
- package/layouts/lib/widgets/email/email-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/file/file-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/lookup/lookup-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/messenger/messenger-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/number/number-widget-view.component.d.ts +1 -1
- package/layouts/lib/widgets/password/password-widget-column.component.d.ts +2 -2
- package/layouts/lib/widgets/phone/phone-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/rich-text/rich-text-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/selection-list/selection-list-widget-column.component.d.ts +1 -1
- package/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.d.ts +2 -0
- package/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.d.ts +1 -1
- package/layouts/lib/widgets/selection-list/selection-list-widget-view.component.d.ts +1 -1
- package/layouts/lib/widgets/text/text-widget-column.component.d.ts +2 -1
- package/layouts/lib/widgets/toggle/toggle-widget-column.component.d.ts +1 -1
- package/mocks/lib/storage/storage.mock.service.d.ts +1 -1
- package/package.json +21 -3
- package/schema/index.d.ts +1 -1
- package/schema/lib/schema-registery.service.d.ts +1 -1
- package/schema/lib/{schema.d.ts → schema.types.d.ts} +1 -6
- package/schema/lib/widget/widget-base.d.ts +3 -1
- package/schema/lib/widget/widget-column-renderer.d.ts +10 -3
- package/schema/lib/widget/widget-token.d.ts +2 -1
- package/widgets/README.md +4 -0
- package/widgets/index.d.ts +1 -0
- package/widgets/lib/editors/checkbox/checkbox-widget-edit.component.d.ts +13 -0
- package/widgets/lib/editors/checkbox/checkbox-widget.config.d.ts +2 -0
- package/widgets/lib/editors/checkbox/index.d.ts +2 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +20 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +11 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/date-time-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.d.ts +25 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/editors/email-box-widget/email-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/email-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.d.ts +18 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget-view.component.d.ts +17 -0
- package/widgets/lib/editors/file-box-widget/file-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/file-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.d.ts +15 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-types.d.ts +10 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget-view.component.d.ts +15 -0
- package/widgets/lib/editors/gallery-widget/gallery-widget.config.d.ts +2 -0
- package/widgets/lib/editors/gallery-widget/index.d.ts +7 -0
- package/widgets/lib/editors/map-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.d.ts +15 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget-view.component.d.ts +16 -0
- package/widgets/lib/editors/map-box-widget/map-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/number-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.d.ts +25 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget-view.component.d.ts +8 -0
- package/widgets/lib/editors/number-box-widget/number-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/password-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.d.ts +8 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget-view.component.d.ts +13 -0
- package/widgets/lib/editors/password-box-widget/password-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/phone-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +25 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/editors/phone-box-widget/phone-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/rich-text-widget/index.d.ts +7 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +33 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.d.ts +9 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget.config.d.ts +2 -0
- package/widgets/lib/editors/select-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.d.ts +15 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/editors/select-box-widget/select-box-widget.config.d.ts +2 -0
- package/widgets/lib/editors/selection-list-widget/index.d.ts +7 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +13 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.d.ts +6 -0
- package/widgets/lib/editors/selection-list-widget/selection-list-widget.config.d.ts +2 -0
- package/widgets/lib/editors/signature-pad-widget/index.d.ts +7 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +19 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +7 -0
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.d.ts +2 -0
- package/widgets/lib/editors/text-box-widget/index.d.ts +7 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.d.ts +6 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.d.ts +19 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget-view.component.d.ts +8 -0
- package/widgets/lib/editors/text-box-widget/text-box-widget.config.d.ts +2 -0
- package/widgets/lib/layout/block-widget/block-widget.component.d.ts +8 -0
- package/widgets/lib/layout/block-widget/block-widget.config.d.ts +2 -0
- package/widgets/lib/layout/block-widget/index.d.ts +2 -0
- package/widgets/lib/widgets.module.d.ts +7 -0
- package/workflow/lib/workflow.types.d.ts +2 -2
- package/esm2022/common/lib/layout/component-slot/component-slot-loader.service.mjs +0 -56
- package/esm2022/common/lib/layout/component-slot/component-slot-registery.service.mjs +0 -28
- package/esm2022/common/lib/layout/component-slot/component-slot.directive.mjs +0 -24
- package/esm2022/common/lib/layout/component-slot/component-slot.module.mjs +0 -72
- package/esm2022/common/lib/layout/component-slot/component-slot.types.mjs +0 -2
- package/esm2022/common/lib/layout/component-slot/index.mjs +0 -6
- package/esm2022/layouts/lib/admin/entity-layout/store/entity.actions.mjs +0 -18
- package/esm2022/layouts/lib/admin/entity-layout/store/entity.effects.mjs +0 -76
- package/esm2022/schema/lib/schema.mjs +0 -2
- package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-PZr1lXj-.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-pJJYkvdH.mjs +0 -36
- package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-pJJYkvdH.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-vRJI5S-w.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-m6bF8XFR.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-qeQRJePy.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-zeJXGXY8.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-DJ6esclU.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-BrwycTWz.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-email-widget-column.component-ac8gqsFT.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-file-widget-column.component-v7kAdIQ9.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-file-widget-view.component-mXBrKX0K.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-xU52uaP0.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-Ts0MJe8O.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-l5nSr9Cm.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-gp5skvmz.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-ftFXFj6k.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-map-widget-view.component-1Lj9efbd.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-W7ZY-W84.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-dAX8nirB.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-9TJiFdq-.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-number-widget-view.component-hqkAR0LG.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-password-widget-column.component-ic1jykZL.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-password-widget-edit.component-D8xI17yk.mjs +0 -37
- package/fesm2022/acorex-platform-layouts-password-widget-edit.component-D8xI17yk.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-phone-widget-column.component-s04WZfzv.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-MKzlZ0_B.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-P0YzXTIB.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component--Rzxm2a6.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-9FTkDGmq.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-FpOQ12Ie.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-hGk-ZZ78.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-s9xq___Y.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-R40Ml757.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-text-widget-column.component-qhh6MT79.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-text-widget-view.component-65eOj0qR.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-uxOXR-bL.mjs.map +0 -1
- package/layouts/lib/admin/entity-layout/store/entity.actions.d.ts +0 -48
- package/layouts/lib/admin/entity-layout/store/entity.effects.d.ts +0 -22
- /package/{common/lib/layout → layout/lib}/component-slot/component-slot-loader.service.d.ts +0 -0
- /package/{common/lib/layout → layout/lib}/component-slot/component-slot-registery.service.d.ts +0 -0
- /package/{common/lib/layout → layout/lib}/component-slot/component-slot.directive.d.ts +0 -0
- /package/{common/lib/layout → layout/lib}/component-slot/component-slot.module.d.ts +0 -0
- /package/{common/lib/layout → layout/lib}/component-slot/component-slot.types.d.ts +0 -0
- /package/{common/lib/layout → layout/lib}/component-slot/index.d.ts +0 -0
|
@@ -0,0 +1,3966 @@
|
|
|
1
|
+
import * as i1$3 from '@acorex/platform/layout';
|
|
2
|
+
import { AXPWidgetBase, AXPLayoutBuilderModule } from '@acorex/platform/layout';
|
|
3
|
+
import * as i0 from '@angular/core';
|
|
4
|
+
import { inject, Component, ChangeDetectionStrategy, computed, signal, effect, ViewEncapsulation, ViewChild, Input, HostBinding, NgModule } from '@angular/core';
|
|
5
|
+
import * as i3 from '@acorex/components/button';
|
|
6
|
+
import { AXButtonModule } from '@acorex/components/button';
|
|
7
|
+
import * as i1 from '@acorex/components/check-box';
|
|
8
|
+
import { AXCheckBoxModule } from '@acorex/components/check-box';
|
|
9
|
+
import * as i3$1 from '@acorex/components/decorators';
|
|
10
|
+
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
11
|
+
import * as i3$2 from '@acorex/components/form';
|
|
12
|
+
import { AXFormModule } from '@acorex/components/form';
|
|
13
|
+
import { AXValidationService, AXValidationModule } from '@acorex/core/validation';
|
|
14
|
+
import * as i1$1 from '@angular/common';
|
|
15
|
+
import { CommonModule } from '@angular/common';
|
|
16
|
+
import * as i2 from '@angular/forms';
|
|
17
|
+
import { FormsModule } from '@angular/forms';
|
|
18
|
+
import { AXDateTimeFormatter } from '@acorex/core/date-time';
|
|
19
|
+
import * as i2$1 from '@acorex/components/datetime-box';
|
|
20
|
+
import { AXDateTimeBoxModule } from '@acorex/components/datetime-box';
|
|
21
|
+
import * as i2$2 from '@acorex/components/badge';
|
|
22
|
+
import { AXBadgeModule } from '@acorex/components/badge';
|
|
23
|
+
import { AXPClipBoardService } from '@acorex/platform/common';
|
|
24
|
+
import * as i5 from '@acorex/components/select-box';
|
|
25
|
+
import { AXSelectBoxModule, AXSelectBoxComponent } from '@acorex/components/select-box';
|
|
26
|
+
import * as i6 from '@acorex/components/text-box';
|
|
27
|
+
import { AXTextBoxModule } from '@acorex/components/text-box';
|
|
28
|
+
import * as i2$3 from '@acorex/components/image';
|
|
29
|
+
import { AXImageModule } from '@acorex/components/image';
|
|
30
|
+
import * as i4 from '@acorex/components/loading';
|
|
31
|
+
import { AXLoadingModule } from '@acorex/components/loading';
|
|
32
|
+
import * as i5$1 from '@acorex/components/uploader';
|
|
33
|
+
import { AXUploaderModule } from '@acorex/components/uploader';
|
|
34
|
+
import * as i1$2 from '@acorex/components/number-box';
|
|
35
|
+
import { AXNumberBoxModule } from '@acorex/components/number-box';
|
|
36
|
+
import * as i2$4 from '@acorex/components/password-box';
|
|
37
|
+
import { AXPasswordBoxModule } from '@acorex/components/password-box';
|
|
38
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
39
|
+
import * as i2$5 from '@acorex/components/selection-list';
|
|
40
|
+
import { AXSelectionListModule } from '@acorex/components/selection-list';
|
|
41
|
+
|
|
42
|
+
class AXPCheckBoxWidgetEditComponent extends AXPWidgetBase {
|
|
43
|
+
constructor() {
|
|
44
|
+
super(...arguments);
|
|
45
|
+
this.validationService = inject(AXValidationService);
|
|
46
|
+
this.disabled = false;
|
|
47
|
+
}
|
|
48
|
+
handleValueChange(e) {
|
|
49
|
+
if (e.isUserInteraction) {
|
|
50
|
+
this.setValue(e.value);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
54
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPCheckBoxWidgetEditComponent, isStandalone: true, selector: "axp-checkbox-widget-edit", usesInheritance: true, ngImport: i0, template: `
|
|
55
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
56
|
+
<ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
|
|
57
|
+
</div>
|
|
58
|
+
`, 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: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
59
|
+
}
|
|
60
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
|
|
61
|
+
type: Component,
|
|
62
|
+
args: [{
|
|
63
|
+
selector: 'axp-checkbox-widget-edit',
|
|
64
|
+
template: `
|
|
65
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
66
|
+
<ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
|
|
67
|
+
</div>
|
|
68
|
+
`,
|
|
69
|
+
standalone: true,
|
|
70
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
71
|
+
imports: [CommonModule, AXCheckBoxModule, FormsModule, AXFormModule, AXDecoratorModule, AXValidationModule, AXButtonModule],
|
|
72
|
+
}]
|
|
73
|
+
}] });
|
|
74
|
+
|
|
75
|
+
var checkboxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
76
|
+
__proto__: null,
|
|
77
|
+
AXPCheckBoxWidgetEditComponent: AXPCheckBoxWidgetEditComponent
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
const AXPCheckBoxWidget = {
|
|
81
|
+
name: "checkbox",
|
|
82
|
+
components: {
|
|
83
|
+
view: {
|
|
84
|
+
component: () => Promise.resolve().then(function () { return checkboxWidgetEdit_component; }).then((c) => c.AXPCheckBoxWidgetEditComponent),
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
class AXPDateTimeBoxWidgetViewComponent extends AXPWidgetBase {
|
|
90
|
+
constructor() {
|
|
91
|
+
super(...arguments);
|
|
92
|
+
this.formatter = inject(AXDateTimeFormatter);
|
|
93
|
+
this.format = 'datetime';
|
|
94
|
+
this.internalValue = computed(() => Array.isArray(this.getValue()) ? this.getValue().map((v) => this.handleFormat(v)) : [this.handleFormat(this.getValue())]);
|
|
95
|
+
}
|
|
96
|
+
handleFormat(value) {
|
|
97
|
+
return this.formatter.format(new Date(value), { format: this.format });
|
|
98
|
+
}
|
|
99
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
100
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
101
|
+
<div>
|
|
102
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
103
|
+
<p>{{ item }}</p>
|
|
104
|
+
} }@else {
|
|
105
|
+
<p>{{ internalValue()[0] }}</p>
|
|
106
|
+
}
|
|
107
|
+
</div>
|
|
108
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
109
|
+
}
|
|
110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, decorators: [{
|
|
111
|
+
type: Component,
|
|
112
|
+
args: [{
|
|
113
|
+
template: `
|
|
114
|
+
<div>
|
|
115
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
116
|
+
<p>{{ item }}</p>
|
|
117
|
+
} }@else {
|
|
118
|
+
<p>{{ internalValue()[0] }}</p>
|
|
119
|
+
}
|
|
120
|
+
</div>
|
|
121
|
+
`,
|
|
122
|
+
standalone: true,
|
|
123
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
124
|
+
imports: [CommonModule],
|
|
125
|
+
inputs: [],
|
|
126
|
+
}]
|
|
127
|
+
}] });
|
|
128
|
+
|
|
129
|
+
var dateTimeBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
130
|
+
__proto__: null,
|
|
131
|
+
AXPDateTimeBoxWidgetViewComponent: AXPDateTimeBoxWidgetViewComponent
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetBase {
|
|
135
|
+
constructor() {
|
|
136
|
+
super(...arguments);
|
|
137
|
+
this.validationService = inject(AXValidationService);
|
|
138
|
+
this.disabled = false;
|
|
139
|
+
this.clearButton = true;
|
|
140
|
+
this.format = 'datetime';
|
|
141
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
142
|
+
}
|
|
143
|
+
handleValueChange(e, i) {
|
|
144
|
+
if (e.isUserInteraction) {
|
|
145
|
+
const newValues = this.internalValue().map((item, index) => (i === index ? e.value : item));
|
|
146
|
+
if (this.multiple)
|
|
147
|
+
this.setValue(newValues);
|
|
148
|
+
else
|
|
149
|
+
this.setValue(newValues[0]);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
calendarFormat() {
|
|
153
|
+
if (this.format === 'date')
|
|
154
|
+
return 'dd/MM/yyyy';
|
|
155
|
+
else if (this.format === 'time')
|
|
156
|
+
return 'HH:mm';
|
|
157
|
+
else
|
|
158
|
+
return 'dd/MM/yyyy HH:mm';
|
|
159
|
+
}
|
|
160
|
+
addItem() {
|
|
161
|
+
const newValues = [...this.internalValue(), ''];
|
|
162
|
+
this.setValue(newValues);
|
|
163
|
+
}
|
|
164
|
+
deleteItem(i) {
|
|
165
|
+
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
166
|
+
this.setValue(newValues);
|
|
167
|
+
}
|
|
168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
169
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
170
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
171
|
+
@for (datetime of internalValue(); track $index) {
|
|
172
|
+
<ax-datetime-box
|
|
173
|
+
class="ax-col-span-12"
|
|
174
|
+
[ngModel]="datetime"
|
|
175
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
176
|
+
[disabled]="disabled"
|
|
177
|
+
[format]="calendarFormat()"
|
|
178
|
+
>
|
|
179
|
+
<!-- @if(validationMessage){
|
|
180
|
+
<ax-validation-rule rule="required" [message]="validationMessage"></ax-validation-rule>
|
|
181
|
+
} -->
|
|
182
|
+
|
|
183
|
+
@if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
|
|
184
|
+
<ax-suffix>
|
|
185
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
186
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
187
|
+
</ax-button>
|
|
188
|
+
</ax-suffix>
|
|
189
|
+
}
|
|
190
|
+
</ax-datetime-box>
|
|
191
|
+
} @if(multiple){
|
|
192
|
+
<ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()"></ax-button>
|
|
193
|
+
}
|
|
194
|
+
</div>
|
|
195
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i2$1.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3$1.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 }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
196
|
+
}
|
|
197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
|
|
198
|
+
type: Component,
|
|
199
|
+
args: [{
|
|
200
|
+
template: `
|
|
201
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
202
|
+
@for (datetime of internalValue(); track $index) {
|
|
203
|
+
<ax-datetime-box
|
|
204
|
+
class="ax-col-span-12"
|
|
205
|
+
[ngModel]="datetime"
|
|
206
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
207
|
+
[disabled]="disabled"
|
|
208
|
+
[format]="calendarFormat()"
|
|
209
|
+
>
|
|
210
|
+
<!-- @if(validationMessage){
|
|
211
|
+
<ax-validation-rule rule="required" [message]="validationMessage"></ax-validation-rule>
|
|
212
|
+
} -->
|
|
213
|
+
|
|
214
|
+
@if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
|
|
215
|
+
<ax-suffix>
|
|
216
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
217
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
218
|
+
</ax-button>
|
|
219
|
+
</ax-suffix>
|
|
220
|
+
}
|
|
221
|
+
</ax-datetime-box>
|
|
222
|
+
} @if(multiple){
|
|
223
|
+
<ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()"></ax-button>
|
|
224
|
+
}
|
|
225
|
+
</div>
|
|
226
|
+
`,
|
|
227
|
+
standalone: true,
|
|
228
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
229
|
+
imports: [CommonModule, FormsModule, AXDateTimeBoxModule, AXButtonModule, AXDecoratorModule, AXValidationModule],
|
|
230
|
+
inputs: [],
|
|
231
|
+
}]
|
|
232
|
+
}] });
|
|
233
|
+
|
|
234
|
+
var dateTimeBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
235
|
+
__proto__: null,
|
|
236
|
+
AXPDateTimeBoxWidgetEditComponent: AXPDateTimeBoxWidgetEditComponent
|
|
237
|
+
});
|
|
238
|
+
|
|
239
|
+
class AXPDateTimeBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
241
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetFilterComponent, 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 }); }
|
|
242
|
+
}
|
|
243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetFilterComponent, decorators: [{
|
|
244
|
+
type: Component,
|
|
245
|
+
args: [{
|
|
246
|
+
template: ``,
|
|
247
|
+
standalone: true,
|
|
248
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
249
|
+
imports: [CommonModule, FormsModule],
|
|
250
|
+
inputs: []
|
|
251
|
+
}]
|
|
252
|
+
}] });
|
|
253
|
+
|
|
254
|
+
var dateTimeBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
255
|
+
__proto__: null,
|
|
256
|
+
AXPDateTimeBoxWidgetFilterComponent: AXPDateTimeBoxWidgetFilterComponent
|
|
257
|
+
});
|
|
258
|
+
|
|
259
|
+
class AXPDateTimeBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
260
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
261
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
262
|
+
}
|
|
263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, decorators: [{
|
|
264
|
+
type: Component,
|
|
265
|
+
args: [{
|
|
266
|
+
template: ``,
|
|
267
|
+
standalone: true,
|
|
268
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
269
|
+
imports: [CommonModule],
|
|
270
|
+
inputs: []
|
|
271
|
+
}]
|
|
272
|
+
}] });
|
|
273
|
+
|
|
274
|
+
var dateTimeBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
275
|
+
__proto__: null,
|
|
276
|
+
AXPDateTimeBoxWidgetColumnComponent: AXPDateTimeBoxWidgetColumnComponent
|
|
277
|
+
});
|
|
278
|
+
|
|
279
|
+
class AXPDateTimeBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
280
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
281
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
282
|
+
}
|
|
283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetPrintComponent, decorators: [{
|
|
284
|
+
type: Component,
|
|
285
|
+
args: [{
|
|
286
|
+
template: ``,
|
|
287
|
+
standalone: true,
|
|
288
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
289
|
+
imports: [CommonModule],
|
|
290
|
+
inputs: []
|
|
291
|
+
}]
|
|
292
|
+
}] });
|
|
293
|
+
|
|
294
|
+
var dateTimeBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
295
|
+
__proto__: null,
|
|
296
|
+
AXPDateTimeBoxWidgetPrintComponent: AXPDateTimeBoxWidgetPrintComponent
|
|
297
|
+
});
|
|
298
|
+
|
|
299
|
+
class AXPDateTimeBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
301
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPDateTimeBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
302
|
+
}
|
|
303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDateTimeBoxWidgetDesignerComponent, decorators: [{
|
|
304
|
+
type: Component,
|
|
305
|
+
args: [{
|
|
306
|
+
template: ``,
|
|
307
|
+
standalone: true,
|
|
308
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
309
|
+
imports: [CommonModule],
|
|
310
|
+
inputs: []
|
|
311
|
+
}]
|
|
312
|
+
}] });
|
|
313
|
+
|
|
314
|
+
var dateTimeBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
315
|
+
__proto__: null,
|
|
316
|
+
AXPDateTimeBoxWidgetDesignerComponent: AXPDateTimeBoxWidgetDesignerComponent
|
|
317
|
+
});
|
|
318
|
+
|
|
319
|
+
const AXPDateTimeBoxWidget = {
|
|
320
|
+
name: "date-time-box",
|
|
321
|
+
components: {
|
|
322
|
+
view: {
|
|
323
|
+
component: () => Promise.resolve().then(function () { return dateTimeBoxWidgetView_component; }).then((c) => c.AXPDateTimeBoxWidgetViewComponent),
|
|
324
|
+
},
|
|
325
|
+
edit: {
|
|
326
|
+
component: () => Promise.resolve().then(function () { return dateTimeBoxWidgetEdit_component; }).then((c) => c.AXPDateTimeBoxWidgetEditComponent),
|
|
327
|
+
},
|
|
328
|
+
filter: {
|
|
329
|
+
component: () => Promise.resolve().then(function () { return dateTimeBoxWidgetFilter_component; }).then((c) => c.AXPDateTimeBoxWidgetFilterComponent),
|
|
330
|
+
},
|
|
331
|
+
column: {
|
|
332
|
+
component: () => Promise.resolve().then(function () { return dateTimeBoxWidgetColumn_component; }).then((c) => c.AXPDateTimeBoxWidgetColumnComponent),
|
|
333
|
+
},
|
|
334
|
+
print: {
|
|
335
|
+
component: () => Promise.resolve().then(function () { return dateTimeBoxWidgetPrint_component; }).then((c) => c.AXPDateTimeBoxWidgetPrintComponent),
|
|
336
|
+
},
|
|
337
|
+
designer: {
|
|
338
|
+
component: () => Promise.resolve().then(function () { return dateTimeBoxWidgetDesigner_component; }).then((c) => c.AXPDateTimeBoxWidgetDesignerComponent),
|
|
339
|
+
},
|
|
340
|
+
}
|
|
341
|
+
};
|
|
342
|
+
|
|
343
|
+
class AXPEmailBoxWidgetViewComponent extends AXPWidgetBase {
|
|
344
|
+
constructor() {
|
|
345
|
+
super(...arguments);
|
|
346
|
+
this.clipboard = inject(AXPClipBoardService);
|
|
347
|
+
this.internalValue = computed(() => this.getValue()
|
|
348
|
+
? Array.isArray(this.getValue())
|
|
349
|
+
? this.getValue().map((item) => this.extractItem(item))
|
|
350
|
+
: [this.extractItem(this.getValue())]
|
|
351
|
+
: []);
|
|
352
|
+
}
|
|
353
|
+
extractItem(item) {
|
|
354
|
+
return typeof item == 'object'
|
|
355
|
+
? {
|
|
356
|
+
value: item.value ?? '-',
|
|
357
|
+
label: item.label ?? 'Primary',
|
|
358
|
+
}
|
|
359
|
+
: {
|
|
360
|
+
value: item,
|
|
361
|
+
label: 'Primary',
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
365
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
366
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
|
|
367
|
+
<ng-container *ngIf="multiple">
|
|
368
|
+
@for(item of internalValue();track item?.value) {
|
|
369
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
|
|
370
|
+
}
|
|
371
|
+
</ng-container>
|
|
372
|
+
|
|
373
|
+
<ng-container *ngIf="!multiple">
|
|
374
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
|
|
375
|
+
</ng-container>
|
|
376
|
+
|
|
377
|
+
<ng-template #itemTemplate let-item="data">
|
|
378
|
+
<ng-container *ngIf="item">
|
|
379
|
+
<div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
|
|
380
|
+
<div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
|
|
381
|
+
<div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
|
|
382
|
+
<i class="fa-solid ax-text-neutral-400 fa-envelope"></i>
|
|
383
|
+
</div>
|
|
384
|
+
<a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
|
|
385
|
+
<span
|
|
386
|
+
class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
|
|
387
|
+
(click)="clipboard.copy('Email', item.value)"
|
|
388
|
+
>
|
|
389
|
+
<i class="fa-solid fa-copy "></i>
|
|
390
|
+
</span>
|
|
391
|
+
@if(hasLabel){
|
|
392
|
+
<ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
|
|
393
|
+
}
|
|
394
|
+
</div>
|
|
395
|
+
</div>
|
|
396
|
+
</ng-container>
|
|
397
|
+
</ng-template>
|
|
398
|
+
</div>
|
|
399
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
400
|
+
}
|
|
401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, decorators: [{
|
|
402
|
+
type: Component,
|
|
403
|
+
args: [{
|
|
404
|
+
template: `
|
|
405
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
|
|
406
|
+
<ng-container *ngIf="multiple">
|
|
407
|
+
@for(item of internalValue();track item?.value) {
|
|
408
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
|
|
409
|
+
}
|
|
410
|
+
</ng-container>
|
|
411
|
+
|
|
412
|
+
<ng-container *ngIf="!multiple">
|
|
413
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
|
|
414
|
+
</ng-container>
|
|
415
|
+
|
|
416
|
+
<ng-template #itemTemplate let-item="data">
|
|
417
|
+
<ng-container *ngIf="item">
|
|
418
|
+
<div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
|
|
419
|
+
<div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
|
|
420
|
+
<div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
|
|
421
|
+
<i class="fa-solid ax-text-neutral-400 fa-envelope"></i>
|
|
422
|
+
</div>
|
|
423
|
+
<a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
|
|
424
|
+
<span
|
|
425
|
+
class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
|
|
426
|
+
(click)="clipboard.copy('Email', item.value)"
|
|
427
|
+
>
|
|
428
|
+
<i class="fa-solid fa-copy "></i>
|
|
429
|
+
</span>
|
|
430
|
+
@if(hasLabel){
|
|
431
|
+
<ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
|
|
432
|
+
}
|
|
433
|
+
</div>
|
|
434
|
+
</div>
|
|
435
|
+
</ng-container>
|
|
436
|
+
</ng-template>
|
|
437
|
+
</div>
|
|
438
|
+
`,
|
|
439
|
+
standalone: true,
|
|
440
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
441
|
+
imports: [CommonModule, AXBadgeModule],
|
|
442
|
+
inputs: [],
|
|
443
|
+
}]
|
|
444
|
+
}] });
|
|
445
|
+
|
|
446
|
+
var emailBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
447
|
+
__proto__: null,
|
|
448
|
+
AXPEmailBoxWidgetViewComponent: AXPEmailBoxWidgetViewComponent
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
class AXPEmailBoxWidgetEditComponent extends AXPWidgetBase {
|
|
452
|
+
constructor() {
|
|
453
|
+
super(...arguments);
|
|
454
|
+
this.validationService = inject(AXValidationService);
|
|
455
|
+
this.disabled = false;
|
|
456
|
+
this.clearButton = true;
|
|
457
|
+
this.hasLabel = true;
|
|
458
|
+
this.emailLabels = ['Primary', 'Secondary'];
|
|
459
|
+
this.internalValue = computed(() => this.getValue() ? (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]) : [{}]);
|
|
460
|
+
}
|
|
461
|
+
handleValueChange(e, selectedIndex) {
|
|
462
|
+
if (e.isUserInteraction) {
|
|
463
|
+
const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, value: e.value } : item));
|
|
464
|
+
if (this.multiple)
|
|
465
|
+
this.setValue(newValues);
|
|
466
|
+
else
|
|
467
|
+
this.setValue(newValues[0]);
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
handleLabelChange(e, selectedIndex) {
|
|
471
|
+
if (e.isUserInteraction) {
|
|
472
|
+
const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, label: e.value } : item));
|
|
473
|
+
if (this.multiple)
|
|
474
|
+
this.setValue(newValues);
|
|
475
|
+
else
|
|
476
|
+
this.setValue(newValues[0]);
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
addItem() {
|
|
480
|
+
const newValues = [...this.internalValue(), ''];
|
|
481
|
+
this.setValue(newValues);
|
|
482
|
+
}
|
|
483
|
+
deleteItem(deletedIndex) {
|
|
484
|
+
const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
|
|
485
|
+
this.setValue(newValues);
|
|
486
|
+
}
|
|
487
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
488
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEmailBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
489
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
490
|
+
<ng-container *ngIf="multiple">
|
|
491
|
+
@for(item of internalValue();track $index) {
|
|
492
|
+
<ax-text-box
|
|
493
|
+
[ngModel]="item.value"
|
|
494
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
495
|
+
type="text"
|
|
496
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
497
|
+
[class.lg:!ax-col-end-12]="!hasLabel"
|
|
498
|
+
>
|
|
499
|
+
</ax-text-box>
|
|
500
|
+
@if(hasLabel){
|
|
501
|
+
<ax-select-box
|
|
502
|
+
[dataSource]="emailLabels"
|
|
503
|
+
[ngModel]="item.label"
|
|
504
|
+
(onValueChanged)="handleLabelChange($event, $index)"
|
|
505
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
|
|
506
|
+
>
|
|
507
|
+
</ax-select-box>
|
|
508
|
+
}
|
|
509
|
+
<ax-button
|
|
510
|
+
look="twotone"
|
|
511
|
+
color="danger"
|
|
512
|
+
(onClick)="deleteItem($index)"
|
|
513
|
+
class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
|
|
514
|
+
>
|
|
515
|
+
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
516
|
+
</ax-button>
|
|
517
|
+
}
|
|
518
|
+
</ng-container>
|
|
519
|
+
<ng-container *ngIf="!multiple">
|
|
520
|
+
<ax-text-box
|
|
521
|
+
[ngModel]="internalValue()[0].value"
|
|
522
|
+
(onValueChanged)="handleValueChange($event, 0)"
|
|
523
|
+
type="text"
|
|
524
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
525
|
+
[class.lg:!ax-col-end-13]="!hasLabel"
|
|
526
|
+
>
|
|
527
|
+
<!-- @for(vl of validations;track $index) {
|
|
528
|
+
<ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
|
|
529
|
+
} -->
|
|
530
|
+
</ax-text-box>
|
|
531
|
+
@if(hasLabel){
|
|
532
|
+
<ax-select-box
|
|
533
|
+
[dataSource]="emailLabels"
|
|
534
|
+
[ngModel]="internalValue()[0].label"
|
|
535
|
+
(onValueChanged)="handleLabelChange($event, 0)"
|
|
536
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
|
|
537
|
+
>
|
|
538
|
+
</ax-select-box>
|
|
539
|
+
}
|
|
540
|
+
</ng-container>
|
|
541
|
+
<ax-button
|
|
542
|
+
*ngIf="multiple"
|
|
543
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
544
|
+
look="twotone"
|
|
545
|
+
(onClick)="addItem()"
|
|
546
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
547
|
+
>
|
|
548
|
+
<ax-prefix>
|
|
549
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
550
|
+
</ax-prefix>
|
|
551
|
+
</ax-button>
|
|
552
|
+
</div>
|
|
553
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i5.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i6.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
554
|
+
}
|
|
555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, decorators: [{
|
|
556
|
+
type: Component,
|
|
557
|
+
args: [{
|
|
558
|
+
template: `
|
|
559
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
560
|
+
<ng-container *ngIf="multiple">
|
|
561
|
+
@for(item of internalValue();track $index) {
|
|
562
|
+
<ax-text-box
|
|
563
|
+
[ngModel]="item.value"
|
|
564
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
565
|
+
type="text"
|
|
566
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
567
|
+
[class.lg:!ax-col-end-12]="!hasLabel"
|
|
568
|
+
>
|
|
569
|
+
</ax-text-box>
|
|
570
|
+
@if(hasLabel){
|
|
571
|
+
<ax-select-box
|
|
572
|
+
[dataSource]="emailLabels"
|
|
573
|
+
[ngModel]="item.label"
|
|
574
|
+
(onValueChanged)="handleLabelChange($event, $index)"
|
|
575
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
|
|
576
|
+
>
|
|
577
|
+
</ax-select-box>
|
|
578
|
+
}
|
|
579
|
+
<ax-button
|
|
580
|
+
look="twotone"
|
|
581
|
+
color="danger"
|
|
582
|
+
(onClick)="deleteItem($index)"
|
|
583
|
+
class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
|
|
584
|
+
>
|
|
585
|
+
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
586
|
+
</ax-button>
|
|
587
|
+
}
|
|
588
|
+
</ng-container>
|
|
589
|
+
<ng-container *ngIf="!multiple">
|
|
590
|
+
<ax-text-box
|
|
591
|
+
[ngModel]="internalValue()[0].value"
|
|
592
|
+
(onValueChanged)="handleValueChange($event, 0)"
|
|
593
|
+
type="text"
|
|
594
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
595
|
+
[class.lg:!ax-col-end-13]="!hasLabel"
|
|
596
|
+
>
|
|
597
|
+
<!-- @for(vl of validations;track $index) {
|
|
598
|
+
<ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
|
|
599
|
+
} -->
|
|
600
|
+
</ax-text-box>
|
|
601
|
+
@if(hasLabel){
|
|
602
|
+
<ax-select-box
|
|
603
|
+
[dataSource]="emailLabels"
|
|
604
|
+
[ngModel]="internalValue()[0].label"
|
|
605
|
+
(onValueChanged)="handleLabelChange($event, 0)"
|
|
606
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
|
|
607
|
+
>
|
|
608
|
+
</ax-select-box>
|
|
609
|
+
}
|
|
610
|
+
</ng-container>
|
|
611
|
+
<ax-button
|
|
612
|
+
*ngIf="multiple"
|
|
613
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
614
|
+
look="twotone"
|
|
615
|
+
(onClick)="addItem()"
|
|
616
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
617
|
+
>
|
|
618
|
+
<ax-prefix>
|
|
619
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
620
|
+
</ax-prefix>
|
|
621
|
+
</ax-button>
|
|
622
|
+
</div>
|
|
623
|
+
`,
|
|
624
|
+
standalone: true,
|
|
625
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
626
|
+
imports: [CommonModule, FormsModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule],
|
|
627
|
+
inputs: [],
|
|
628
|
+
}]
|
|
629
|
+
}] });
|
|
630
|
+
|
|
631
|
+
var emailBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
632
|
+
__proto__: null,
|
|
633
|
+
AXPEmailBoxWidgetEditComponent: AXPEmailBoxWidgetEditComponent
|
|
634
|
+
});
|
|
635
|
+
|
|
636
|
+
class AXPEmailBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPEmailBoxWidgetFilterComponent, 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 }); }
|
|
639
|
+
}
|
|
640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetFilterComponent, decorators: [{
|
|
641
|
+
type: Component,
|
|
642
|
+
args: [{
|
|
643
|
+
template: ``,
|
|
644
|
+
standalone: true,
|
|
645
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
646
|
+
imports: [CommonModule, FormsModule],
|
|
647
|
+
inputs: []
|
|
648
|
+
}]
|
|
649
|
+
}] });
|
|
650
|
+
|
|
651
|
+
var emailBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
652
|
+
__proto__: null,
|
|
653
|
+
AXPEmailBoxWidgetFilterComponent: AXPEmailBoxWidgetFilterComponent
|
|
654
|
+
});
|
|
655
|
+
|
|
656
|
+
class AXPEmailBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
657
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
658
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPEmailBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
659
|
+
}
|
|
660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetColumnComponent, decorators: [{
|
|
661
|
+
type: Component,
|
|
662
|
+
args: [{
|
|
663
|
+
template: ``,
|
|
664
|
+
standalone: true,
|
|
665
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
666
|
+
imports: [CommonModule],
|
|
667
|
+
inputs: []
|
|
668
|
+
}]
|
|
669
|
+
}] });
|
|
670
|
+
|
|
671
|
+
var emailBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
672
|
+
__proto__: null,
|
|
673
|
+
AXPEmailBoxWidgetColumnComponent: AXPEmailBoxWidgetColumnComponent
|
|
674
|
+
});
|
|
675
|
+
|
|
676
|
+
class AXPEmailBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
677
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
678
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPEmailBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
679
|
+
}
|
|
680
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetPrintComponent, decorators: [{
|
|
681
|
+
type: Component,
|
|
682
|
+
args: [{
|
|
683
|
+
template: ``,
|
|
684
|
+
standalone: true,
|
|
685
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
686
|
+
imports: [CommonModule],
|
|
687
|
+
inputs: []
|
|
688
|
+
}]
|
|
689
|
+
}] });
|
|
690
|
+
|
|
691
|
+
var emailBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
692
|
+
__proto__: null,
|
|
693
|
+
AXPEmailBoxWidgetPrintComponent: AXPEmailBoxWidgetPrintComponent
|
|
694
|
+
});
|
|
695
|
+
|
|
696
|
+
class AXPEmailBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
697
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
698
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPEmailBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
699
|
+
}
|
|
700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEmailBoxWidgetDesignerComponent, decorators: [{
|
|
701
|
+
type: Component,
|
|
702
|
+
args: [{
|
|
703
|
+
template: ``,
|
|
704
|
+
standalone: true,
|
|
705
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
706
|
+
imports: [CommonModule],
|
|
707
|
+
inputs: []
|
|
708
|
+
}]
|
|
709
|
+
}] });
|
|
710
|
+
|
|
711
|
+
var emailBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
712
|
+
__proto__: null,
|
|
713
|
+
AXPEmailBoxWidgetDesignerComponent: AXPEmailBoxWidgetDesignerComponent
|
|
714
|
+
});
|
|
715
|
+
|
|
716
|
+
const AXPEmailBoxWidget = {
|
|
717
|
+
name: "email-box",
|
|
718
|
+
components: {
|
|
719
|
+
view: {
|
|
720
|
+
component: () => Promise.resolve().then(function () { return emailBoxWidgetView_component; }).then((c) => c.AXPEmailBoxWidgetViewComponent),
|
|
721
|
+
},
|
|
722
|
+
edit: {
|
|
723
|
+
component: () => Promise.resolve().then(function () { return emailBoxWidgetEdit_component; }).then((c) => c.AXPEmailBoxWidgetEditComponent),
|
|
724
|
+
},
|
|
725
|
+
filter: {
|
|
726
|
+
component: () => Promise.resolve().then(function () { return emailBoxWidgetFilter_component; }).then((c) => c.AXPEmailBoxWidgetFilterComponent),
|
|
727
|
+
},
|
|
728
|
+
column: {
|
|
729
|
+
component: () => Promise.resolve().then(function () { return emailBoxWidgetColumn_component; }).then((c) => c.AXPEmailBoxWidgetColumnComponent),
|
|
730
|
+
},
|
|
731
|
+
print: {
|
|
732
|
+
component: () => Promise.resolve().then(function () { return emailBoxWidgetPrint_component; }).then((c) => c.AXPEmailBoxWidgetPrintComponent),
|
|
733
|
+
},
|
|
734
|
+
designer: {
|
|
735
|
+
component: () => Promise.resolve().then(function () { return emailBoxWidgetDesigner_component; }).then((c) => c.AXPEmailBoxWidgetDesignerComponent),
|
|
736
|
+
},
|
|
737
|
+
}
|
|
738
|
+
};
|
|
739
|
+
|
|
740
|
+
class AXPFileBoxWidgetViewComponent extends AXPWidgetBase {
|
|
741
|
+
constructor() {
|
|
742
|
+
super(...arguments);
|
|
743
|
+
this.internalValue = computed(() => this.getValue()
|
|
744
|
+
? Array.isArray(this.getValue())
|
|
745
|
+
? this.getValue().map((item) => this.extractItem(item))
|
|
746
|
+
: [this.extractItem(this.getValue())]
|
|
747
|
+
: [{}]);
|
|
748
|
+
}
|
|
749
|
+
getFileInfo(fileName) {
|
|
750
|
+
const extension = fileName.split('.').pop()?.toLowerCase();
|
|
751
|
+
switch (extension) {
|
|
752
|
+
case 'txt':
|
|
753
|
+
return { icon: 'fa-file-alt', color: 'ax-bg-blue-100 ax-text-blue-500' };
|
|
754
|
+
case 'pdf':
|
|
755
|
+
return { icon: 'fa-file-pdf', color: 'ax-bg-red-100 ax-text-red-500' };
|
|
756
|
+
case 'doc':
|
|
757
|
+
case 'docx':
|
|
758
|
+
return { icon: 'fa-file-word', color: 'ax-bg-blue-200 ax-text-blue-600' };
|
|
759
|
+
case 'xls':
|
|
760
|
+
case 'xlsx':
|
|
761
|
+
return { icon: 'fa-file-excel', color: 'ax-bg-green-100 ax-text-green-500' };
|
|
762
|
+
case 'ppt':
|
|
763
|
+
case 'pptx':
|
|
764
|
+
return { icon: 'fa-file-powerpoint', color: 'ax-bg-orange-100 ax-text-orange-500' };
|
|
765
|
+
case 'jpg':
|
|
766
|
+
case 'jpeg':
|
|
767
|
+
case 'png':
|
|
768
|
+
case 'gif':
|
|
769
|
+
case 'bmp':
|
|
770
|
+
return { icon: 'fa-file-image', color: 'ax-bg-purple-100 ax-text-purple-500' };
|
|
771
|
+
case 'zip':
|
|
772
|
+
case 'rar':
|
|
773
|
+
case '7z':
|
|
774
|
+
return { icon: 'fa-file-archive', color: 'ax-bg-yellow-100 ax-text-yellow-500' };
|
|
775
|
+
case 'mp3':
|
|
776
|
+
case 'wav':
|
|
777
|
+
case 'ogg':
|
|
778
|
+
return { icon: 'fa-file-audio', color: 'ax-bg-pink-100 ax-text-pink-500' };
|
|
779
|
+
case 'mp4':
|
|
780
|
+
case 'avi':
|
|
781
|
+
case 'mkv':
|
|
782
|
+
case 'mov':
|
|
783
|
+
return { icon: 'fa-file-video', color: 'ax-bg-blue-100 ax-text-blue-500' };
|
|
784
|
+
case 'js':
|
|
785
|
+
case 'jsx':
|
|
786
|
+
case 'ts':
|
|
787
|
+
case 'tsx':
|
|
788
|
+
return { icon: 'fa-file-code', color: 'ax-bg-yellow-100 ax-text-yellow-500' };
|
|
789
|
+
// Add more cases as needed for other file types
|
|
790
|
+
default:
|
|
791
|
+
return { icon: 'fa-file', color: 'ax-bg-gray-100 ax-text-gray-500' };
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
extractItem(item) {
|
|
795
|
+
return typeof item == 'object'
|
|
796
|
+
? {
|
|
797
|
+
name: item.name,
|
|
798
|
+
type: item.type ?? 'Unknown',
|
|
799
|
+
}
|
|
800
|
+
: null;
|
|
801
|
+
}
|
|
802
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
803
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPFileBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
804
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
805
|
+
@if(multiple){ @for(item of internalValue();let first=$first;track item.name) {
|
|
806
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
|
|
807
|
+
} }@else {
|
|
808
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
|
|
809
|
+
}
|
|
810
|
+
<ng-template #itemTemplate let-item="data">
|
|
811
|
+
<div
|
|
812
|
+
*ngIf="item"
|
|
813
|
+
class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-13"
|
|
814
|
+
>
|
|
815
|
+
<div class="ax-flex ax-items-center ax-gap-3">
|
|
816
|
+
<ng-container *ngIf="getFileInfo(item.name) as fileInfo">
|
|
817
|
+
<div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
|
|
818
|
+
<i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
|
|
819
|
+
</div>
|
|
820
|
+
</ng-container>
|
|
821
|
+
<div>
|
|
822
|
+
<div class="ax-leading-6">{{ item.name }}</div>
|
|
823
|
+
<p class="ax-text-sm ax-text-neutral-400">250 KB</p>
|
|
824
|
+
</div>
|
|
825
|
+
</div>
|
|
826
|
+
<ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
|
|
827
|
+
<ax-icon>
|
|
828
|
+
<i class="fa-solid fa-download"></i>
|
|
829
|
+
</ax-icon>
|
|
830
|
+
</ax-button>
|
|
831
|
+
</div>
|
|
832
|
+
</ng-template>
|
|
833
|
+
</div>
|
|
834
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
835
|
+
}
|
|
836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetViewComponent, decorators: [{
|
|
837
|
+
type: Component,
|
|
838
|
+
args: [{
|
|
839
|
+
template: `
|
|
840
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
841
|
+
@if(multiple){ @for(item of internalValue();let first=$first;track item.name) {
|
|
842
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
|
|
843
|
+
} }@else {
|
|
844
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" ] [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
|
|
845
|
+
}
|
|
846
|
+
<ng-template #itemTemplate let-item="data">
|
|
847
|
+
<div
|
|
848
|
+
*ngIf="item"
|
|
849
|
+
class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-13"
|
|
850
|
+
>
|
|
851
|
+
<div class="ax-flex ax-items-center ax-gap-3">
|
|
852
|
+
<ng-container *ngIf="getFileInfo(item.name) as fileInfo">
|
|
853
|
+
<div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
|
|
854
|
+
<i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
|
|
855
|
+
</div>
|
|
856
|
+
</ng-container>
|
|
857
|
+
<div>
|
|
858
|
+
<div class="ax-leading-6">{{ item.name }}</div>
|
|
859
|
+
<p class="ax-text-sm ax-text-neutral-400">250 KB</p>
|
|
860
|
+
</div>
|
|
861
|
+
</div>
|
|
862
|
+
<ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
|
|
863
|
+
<ax-icon>
|
|
864
|
+
<i class="fa-solid fa-download"></i>
|
|
865
|
+
</ax-icon>
|
|
866
|
+
</ax-button>
|
|
867
|
+
</div>
|
|
868
|
+
</ng-template>
|
|
869
|
+
</div>
|
|
870
|
+
`,
|
|
871
|
+
standalone: true,
|
|
872
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
873
|
+
imports: [CommonModule, AXButtonModule, AXDecoratorModule],
|
|
874
|
+
inputs: [],
|
|
875
|
+
}]
|
|
876
|
+
}] });
|
|
877
|
+
|
|
878
|
+
var fileBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
879
|
+
__proto__: null,
|
|
880
|
+
AXPFileBoxWidgetViewComponent: AXPFileBoxWidgetViewComponent
|
|
881
|
+
});
|
|
882
|
+
|
|
883
|
+
class AXPFileBoxWidgetEditComponent extends AXPWidgetBase {
|
|
884
|
+
constructor() {
|
|
885
|
+
super(...arguments);
|
|
886
|
+
this.internalValue = computed(() => this.getValue() ? (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]) : [{}]);
|
|
887
|
+
}
|
|
888
|
+
handleAddItem() { }
|
|
889
|
+
handleRemoveItem(deletedIndex) {
|
|
890
|
+
const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
|
|
891
|
+
this.setValue(newValues);
|
|
892
|
+
}
|
|
893
|
+
getFileInfo(fileName) {
|
|
894
|
+
const extension = fileName?.split('.')?.pop()?.toLowerCase();
|
|
895
|
+
switch (extension) {
|
|
896
|
+
case 'txt':
|
|
897
|
+
return { icon: 'fa-file-alt', color: 'ax-bg-blue-100 ax-text-blue-500' };
|
|
898
|
+
case 'pdf':
|
|
899
|
+
return { icon: 'fa-file-pdf', color: 'ax-bg-red-100 ax-text-red-500' };
|
|
900
|
+
case 'doc':
|
|
901
|
+
case 'docx':
|
|
902
|
+
return { icon: 'fa-file-word', color: 'ax-bg-blue-200 ax-text-blue-600' };
|
|
903
|
+
case 'xls':
|
|
904
|
+
case 'xlsx':
|
|
905
|
+
return { icon: 'fa-file-excel', color: 'ax-bg-green-100 ax-text-green-500' };
|
|
906
|
+
case 'ppt':
|
|
907
|
+
case 'pptx':
|
|
908
|
+
return { icon: 'fa-file-powerpoint', color: 'ax-bg-orange-100 ax-text-orange-500' };
|
|
909
|
+
case 'jpg':
|
|
910
|
+
case 'jpeg':
|
|
911
|
+
case 'png':
|
|
912
|
+
case 'gif':
|
|
913
|
+
case 'bmp':
|
|
914
|
+
return { icon: 'fa-file-image', color: 'ax-bg-purple-100 ax-text-purple-500' };
|
|
915
|
+
case 'zip':
|
|
916
|
+
case 'rar':
|
|
917
|
+
case '7z':
|
|
918
|
+
return { icon: 'fa-file-archive', color: 'ax-bg-yellow-100 ax-text-yellow-500' };
|
|
919
|
+
case 'mp3':
|
|
920
|
+
case 'wav':
|
|
921
|
+
case 'ogg':
|
|
922
|
+
return { icon: 'fa-file-audio', color: 'ax-bg-pink-100 ax-text-pink-500' };
|
|
923
|
+
case 'mp4':
|
|
924
|
+
case 'avi':
|
|
925
|
+
case 'mkv':
|
|
926
|
+
case 'mov':
|
|
927
|
+
return { icon: 'fa-file-video', color: 'ax-bg-blue-100 ax-text-blue-500' };
|
|
928
|
+
case 'js':
|
|
929
|
+
case 'jsx':
|
|
930
|
+
case 'ts':
|
|
931
|
+
case 'tsx':
|
|
932
|
+
return { icon: 'fa-file-code', color: 'ax-bg-yellow-100 ax-text-yellow-500' };
|
|
933
|
+
// Add more cases as needed for other file types
|
|
934
|
+
default:
|
|
935
|
+
return { icon: 'fa-file', color: 'ax-bg-gray-100 ax-text-gray-500' };
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
939
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPFileBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
940
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
941
|
+
<ng-container *ngIf="multiple">
|
|
942
|
+
@for(item of internalValue();track $index) {
|
|
943
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item, index: $index }" ]></ng-template>
|
|
944
|
+
}
|
|
945
|
+
</ng-container>
|
|
946
|
+
<ng-container *ngIf="!multiple">
|
|
947
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0], index: 0 }" ]></ng-template>
|
|
948
|
+
</ng-container>
|
|
949
|
+
<ng-template #itemTemplate let-item="data" let-index="index">
|
|
950
|
+
<div
|
|
951
|
+
*ngIf="item"
|
|
952
|
+
class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-11 lg:ax-col-end-12 "
|
|
953
|
+
[class.!ax-col-end-13]="!multiple"
|
|
954
|
+
>
|
|
955
|
+
<div class="ax-flex ax-items-center ax-justify-between ax-gap-3">
|
|
956
|
+
<ng-container *ngIf="getFileInfo(item.name) as fileInfo">
|
|
957
|
+
<div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
|
|
958
|
+
<i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
|
|
959
|
+
</div>
|
|
960
|
+
</ng-container>
|
|
961
|
+
<div>
|
|
962
|
+
<div class="ax-leading-6">{{ item.name }}</div>
|
|
963
|
+
<p class="ax-text-sm ax-text-neutral-400">250 KB</p>
|
|
964
|
+
</div>
|
|
965
|
+
</div>
|
|
966
|
+
<ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
|
|
967
|
+
<ax-icon>
|
|
968
|
+
<i class="fa-solid fa-download"></i>
|
|
969
|
+
</ax-icon>
|
|
970
|
+
</ax-button>
|
|
971
|
+
</div>
|
|
972
|
+
<ax-button
|
|
973
|
+
*ngIf="multiple"
|
|
974
|
+
look="twotone"
|
|
975
|
+
color="danger"
|
|
976
|
+
(onClick)="handleRemoveItem(index)"
|
|
977
|
+
class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 ax-justify-self-end ax-items ax-self-center"
|
|
978
|
+
>
|
|
979
|
+
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
980
|
+
</ax-button>
|
|
981
|
+
</ng-template>
|
|
982
|
+
<ax-button
|
|
983
|
+
*ngIf="multiple"
|
|
984
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
985
|
+
look="twotone"
|
|
986
|
+
(onClick)="handleAddItem()"
|
|
987
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
988
|
+
>
|
|
989
|
+
<ax-prefix>
|
|
990
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
991
|
+
</ax-prefix>
|
|
992
|
+
</ax-button>
|
|
993
|
+
</div>
|
|
994
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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 }); }
|
|
995
|
+
}
|
|
996
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetEditComponent, decorators: [{
|
|
997
|
+
type: Component,
|
|
998
|
+
args: [{
|
|
999
|
+
template: `
|
|
1000
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
1001
|
+
<ng-container *ngIf="multiple">
|
|
1002
|
+
@for(item of internalValue();track $index) {
|
|
1003
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item, index: $index }" ]></ng-template>
|
|
1004
|
+
}
|
|
1005
|
+
</ng-container>
|
|
1006
|
+
<ng-container *ngIf="!multiple">
|
|
1007
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0], index: 0 }" ]></ng-template>
|
|
1008
|
+
</ng-container>
|
|
1009
|
+
<ng-template #itemTemplate let-item="data" let-index="index">
|
|
1010
|
+
<div
|
|
1011
|
+
*ngIf="item"
|
|
1012
|
+
class="ax-flex ax-items-center ax-justify-between ax-p-2 ax-border ax-rounded-lg ax-bg-surface ax-col-start-1 ax-col-end-11 lg:ax-col-end-12 "
|
|
1013
|
+
[class.!ax-col-end-13]="!multiple"
|
|
1014
|
+
>
|
|
1015
|
+
<div class="ax-flex ax-items-center ax-justify-between ax-gap-3">
|
|
1016
|
+
<ng-container *ngIf="getFileInfo(item.name) as fileInfo">
|
|
1017
|
+
<div class="ax-w-10 ax-h-10 ax-rounded-lg ax-flex ax-items-center ax-justify-center" [ngClass]="[fileInfo.color]">
|
|
1018
|
+
<i [ngClass]="['fa-solid', 'ax-text-xl', fileInfo.icon]"></i>
|
|
1019
|
+
</div>
|
|
1020
|
+
</ng-container>
|
|
1021
|
+
<div>
|
|
1022
|
+
<div class="ax-leading-6">{{ item.name }}</div>
|
|
1023
|
+
<p class="ax-text-sm ax-text-neutral-400">250 KB</p>
|
|
1024
|
+
</div>
|
|
1025
|
+
</div>
|
|
1026
|
+
<ax-button look="blank" color="ghost" class="!ax-text-neutral-400 hover:!ax-text-neutral-600">
|
|
1027
|
+
<ax-icon>
|
|
1028
|
+
<i class="fa-solid fa-download"></i>
|
|
1029
|
+
</ax-icon>
|
|
1030
|
+
</ax-button>
|
|
1031
|
+
</div>
|
|
1032
|
+
<ax-button
|
|
1033
|
+
*ngIf="multiple"
|
|
1034
|
+
look="twotone"
|
|
1035
|
+
color="danger"
|
|
1036
|
+
(onClick)="handleRemoveItem(index)"
|
|
1037
|
+
class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 ax-justify-self-end ax-items ax-self-center"
|
|
1038
|
+
>
|
|
1039
|
+
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
1040
|
+
</ax-button>
|
|
1041
|
+
</ng-template>
|
|
1042
|
+
<ax-button
|
|
1043
|
+
*ngIf="multiple"
|
|
1044
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
1045
|
+
look="twotone"
|
|
1046
|
+
(onClick)="handleAddItem()"
|
|
1047
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
1048
|
+
>
|
|
1049
|
+
<ax-prefix>
|
|
1050
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
1051
|
+
</ax-prefix>
|
|
1052
|
+
</ax-button>
|
|
1053
|
+
</div>
|
|
1054
|
+
`,
|
|
1055
|
+
standalone: true,
|
|
1056
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1057
|
+
imports: [CommonModule, FormsModule, AXButtonModule, AXDecoratorModule],
|
|
1058
|
+
inputs: [],
|
|
1059
|
+
}]
|
|
1060
|
+
}] });
|
|
1061
|
+
|
|
1062
|
+
var fileBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1063
|
+
__proto__: null,
|
|
1064
|
+
AXPFileBoxWidgetEditComponent: AXPFileBoxWidgetEditComponent
|
|
1065
|
+
});
|
|
1066
|
+
|
|
1067
|
+
class AXPFileBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
1068
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1069
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPFileBoxWidgetFilterComponent, 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 }); }
|
|
1070
|
+
}
|
|
1071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetFilterComponent, decorators: [{
|
|
1072
|
+
type: Component,
|
|
1073
|
+
args: [{
|
|
1074
|
+
template: ``,
|
|
1075
|
+
standalone: true,
|
|
1076
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1077
|
+
imports: [CommonModule, FormsModule],
|
|
1078
|
+
inputs: []
|
|
1079
|
+
}]
|
|
1080
|
+
}] });
|
|
1081
|
+
|
|
1082
|
+
var fileBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
1083
|
+
__proto__: null,
|
|
1084
|
+
AXPFileBoxWidgetFilterComponent: AXPFileBoxWidgetFilterComponent
|
|
1085
|
+
});
|
|
1086
|
+
|
|
1087
|
+
class AXPFileBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
1088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1089
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPFileBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1090
|
+
}
|
|
1091
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetColumnComponent, decorators: [{
|
|
1092
|
+
type: Component,
|
|
1093
|
+
args: [{
|
|
1094
|
+
template: ``,
|
|
1095
|
+
standalone: true,
|
|
1096
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1097
|
+
imports: [CommonModule],
|
|
1098
|
+
inputs: []
|
|
1099
|
+
}]
|
|
1100
|
+
}] });
|
|
1101
|
+
|
|
1102
|
+
var fileBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
1103
|
+
__proto__: null,
|
|
1104
|
+
AXPFileBoxWidgetColumnComponent: AXPFileBoxWidgetColumnComponent
|
|
1105
|
+
});
|
|
1106
|
+
|
|
1107
|
+
class AXPFileBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
1108
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1109
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPFileBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1110
|
+
}
|
|
1111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetPrintComponent, decorators: [{
|
|
1112
|
+
type: Component,
|
|
1113
|
+
args: [{
|
|
1114
|
+
template: ``,
|
|
1115
|
+
standalone: true,
|
|
1116
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1117
|
+
imports: [CommonModule],
|
|
1118
|
+
inputs: []
|
|
1119
|
+
}]
|
|
1120
|
+
}] });
|
|
1121
|
+
|
|
1122
|
+
var fileBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
1123
|
+
__proto__: null,
|
|
1124
|
+
AXPFileBoxWidgetPrintComponent: AXPFileBoxWidgetPrintComponent
|
|
1125
|
+
});
|
|
1126
|
+
|
|
1127
|
+
class AXPFileBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
1128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1129
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPFileBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1130
|
+
}
|
|
1131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPFileBoxWidgetDesignerComponent, decorators: [{
|
|
1132
|
+
type: Component,
|
|
1133
|
+
args: [{
|
|
1134
|
+
template: ``,
|
|
1135
|
+
standalone: true,
|
|
1136
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1137
|
+
imports: [CommonModule],
|
|
1138
|
+
inputs: []
|
|
1139
|
+
}]
|
|
1140
|
+
}] });
|
|
1141
|
+
|
|
1142
|
+
var fileBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
1143
|
+
__proto__: null,
|
|
1144
|
+
AXPFileBoxWidgetDesignerComponent: AXPFileBoxWidgetDesignerComponent
|
|
1145
|
+
});
|
|
1146
|
+
|
|
1147
|
+
const AXPFileBoxWidget = {
|
|
1148
|
+
name: "file-box",
|
|
1149
|
+
components: {
|
|
1150
|
+
view: {
|
|
1151
|
+
component: () => Promise.resolve().then(function () { return fileBoxWidgetView_component; }).then((c) => c.AXPFileBoxWidgetViewComponent),
|
|
1152
|
+
},
|
|
1153
|
+
edit: {
|
|
1154
|
+
component: () => Promise.resolve().then(function () { return fileBoxWidgetEdit_component; }).then((c) => c.AXPFileBoxWidgetEditComponent),
|
|
1155
|
+
},
|
|
1156
|
+
filter: {
|
|
1157
|
+
component: () => Promise.resolve().then(function () { return fileBoxWidgetFilter_component; }).then((c) => c.AXPFileBoxWidgetFilterComponent),
|
|
1158
|
+
},
|
|
1159
|
+
column: {
|
|
1160
|
+
component: () => Promise.resolve().then(function () { return fileBoxWidgetColumn_component; }).then((c) => c.AXPFileBoxWidgetColumnComponent),
|
|
1161
|
+
},
|
|
1162
|
+
print: {
|
|
1163
|
+
component: () => Promise.resolve().then(function () { return fileBoxWidgetPrint_component; }).then((c) => c.AXPFileBoxWidgetPrintComponent),
|
|
1164
|
+
},
|
|
1165
|
+
designer: {
|
|
1166
|
+
component: () => Promise.resolve().then(function () { return fileBoxWidgetDesigner_component; }).then((c) => c.AXPFileBoxWidgetDesignerComponent),
|
|
1167
|
+
},
|
|
1168
|
+
}
|
|
1169
|
+
};
|
|
1170
|
+
|
|
1171
|
+
class AXPGalleryWidgetViewComponent extends AXPWidgetBase {
|
|
1172
|
+
constructor() {
|
|
1173
|
+
super(...arguments);
|
|
1174
|
+
this.internalValue = computed(() => {
|
|
1175
|
+
const parsedValue = this.getValue() ? JSON.parse(this.getValue()) : [];
|
|
1176
|
+
return Array.isArray(parsedValue) ? parsedValue.map((c) => c) : [parsedValue];
|
|
1177
|
+
});
|
|
1178
|
+
this.thumbnails = computed(() => this.internalValue().filter((i) => i.id !== this.activeMedia()?.id));
|
|
1179
|
+
this.activeMedia = signal(undefined);
|
|
1180
|
+
}
|
|
1181
|
+
ngAfterViewInit() {
|
|
1182
|
+
this.activeMedia.set(this.internalValue()[0]);
|
|
1183
|
+
}
|
|
1184
|
+
changeMediaSelected(media) {
|
|
1185
|
+
this.activeMedia.set(media);
|
|
1186
|
+
}
|
|
1187
|
+
getMediaInfo(mediaName) {
|
|
1188
|
+
const extension = mediaName.split('.').pop()?.toLowerCase();
|
|
1189
|
+
switch (extension) {
|
|
1190
|
+
case 'jpg':
|
|
1191
|
+
case 'jpeg':
|
|
1192
|
+
case 'png':
|
|
1193
|
+
case 'gif':
|
|
1194
|
+
case 'bmp':
|
|
1195
|
+
return { icon: '', format: 'image' };
|
|
1196
|
+
case 'mp4':
|
|
1197
|
+
case 'avi':
|
|
1198
|
+
case 'mkv':
|
|
1199
|
+
case 'mov':
|
|
1200
|
+
return { icon: 'fa-regular fa-play', format: 'video' };
|
|
1201
|
+
case 'mp3':
|
|
1202
|
+
case 'wav':
|
|
1203
|
+
case 'ogg':
|
|
1204
|
+
return { icon: 'fa-regular fa-volume-high', format: 'audio' };
|
|
1205
|
+
default:
|
|
1206
|
+
return { icon: '', format: 'image' };
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1210
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPGalleryWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
1211
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
1212
|
+
@if(internalValue().length){
|
|
1213
|
+
<div class="ax-flex ax-items-center ax-justify-between ax-rounded-lg ax-col-start-1 ax-col-end-13">
|
|
1214
|
+
<div class="ax-flex ax-items-center md:ax-justify-start ax-justify-center ax-w-full ax-gap-3">
|
|
1215
|
+
<div class="ax-flex ax-flex-col ax-items-center ax-gap-4">
|
|
1216
|
+
@switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
|
|
1217
|
+
<video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
|
|
1218
|
+
} @case ('image') {
|
|
1219
|
+
<ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
|
|
1220
|
+
<ax-loading></ax-loading>
|
|
1221
|
+
<ax-placeholder>
|
|
1222
|
+
<div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
|
|
1223
|
+
<ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
|
|
1224
|
+
<span>Connection Error!</span>
|
|
1225
|
+
</div>
|
|
1226
|
+
</ax-placeholder>
|
|
1227
|
+
</ax-image>
|
|
1228
|
+
} @case ('audio') {
|
|
1229
|
+
<audio controls class="ax-rounded-lg">
|
|
1230
|
+
<source [src]="activeMedia()?.url" type="audio/mp3" />
|
|
1231
|
+
</audio>
|
|
1232
|
+
} }
|
|
1233
|
+
<div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
|
|
1234
|
+
@for (media of thumbnails(); track $index) {
|
|
1235
|
+
<div
|
|
1236
|
+
*ngIf="getMediaInfo(media.name) as mediaInfo"
|
|
1237
|
+
class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
|
|
1238
|
+
(click)="changeMediaSelected(media)"
|
|
1239
|
+
>
|
|
1240
|
+
<ax-image
|
|
1241
|
+
class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
|
|
1242
|
+
[src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
|
|
1243
|
+
></ax-image>
|
|
1244
|
+
<div class="ax-absolute ax-text-neutral-300 ax-text-xl">
|
|
1245
|
+
<ax-icon [class]="mediaInfo.icon"> </ax-icon>
|
|
1246
|
+
</div>
|
|
1247
|
+
</div>
|
|
1248
|
+
}
|
|
1249
|
+
</div>
|
|
1250
|
+
</div>
|
|
1251
|
+
</div>
|
|
1252
|
+
</div>
|
|
1253
|
+
} @else {
|
|
1254
|
+
<!-- ask for empty state: -->
|
|
1255
|
+
<small>No Media!</small>
|
|
1256
|
+
}
|
|
1257
|
+
</div>
|
|
1258
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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 }); }
|
|
1259
|
+
}
|
|
1260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
|
|
1261
|
+
type: Component,
|
|
1262
|
+
args: [{
|
|
1263
|
+
template: `
|
|
1264
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
1265
|
+
@if(internalValue().length){
|
|
1266
|
+
<div class="ax-flex ax-items-center ax-justify-between ax-rounded-lg ax-col-start-1 ax-col-end-13">
|
|
1267
|
+
<div class="ax-flex ax-items-center md:ax-justify-start ax-justify-center ax-w-full ax-gap-3">
|
|
1268
|
+
<div class="ax-flex ax-flex-col ax-items-center ax-gap-4">
|
|
1269
|
+
@switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
|
|
1270
|
+
<video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
|
|
1271
|
+
} @case ('image') {
|
|
1272
|
+
<ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
|
|
1273
|
+
<ax-loading></ax-loading>
|
|
1274
|
+
<ax-placeholder>
|
|
1275
|
+
<div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
|
|
1276
|
+
<ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
|
|
1277
|
+
<span>Connection Error!</span>
|
|
1278
|
+
</div>
|
|
1279
|
+
</ax-placeholder>
|
|
1280
|
+
</ax-image>
|
|
1281
|
+
} @case ('audio') {
|
|
1282
|
+
<audio controls class="ax-rounded-lg">
|
|
1283
|
+
<source [src]="activeMedia()?.url" type="audio/mp3" />
|
|
1284
|
+
</audio>
|
|
1285
|
+
} }
|
|
1286
|
+
<div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
|
|
1287
|
+
@for (media of thumbnails(); track $index) {
|
|
1288
|
+
<div
|
|
1289
|
+
*ngIf="getMediaInfo(media.name) as mediaInfo"
|
|
1290
|
+
class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
|
|
1291
|
+
(click)="changeMediaSelected(media)"
|
|
1292
|
+
>
|
|
1293
|
+
<ax-image
|
|
1294
|
+
class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
|
|
1295
|
+
[src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
|
|
1296
|
+
></ax-image>
|
|
1297
|
+
<div class="ax-absolute ax-text-neutral-300 ax-text-xl">
|
|
1298
|
+
<ax-icon [class]="mediaInfo.icon"> </ax-icon>
|
|
1299
|
+
</div>
|
|
1300
|
+
</div>
|
|
1301
|
+
}
|
|
1302
|
+
</div>
|
|
1303
|
+
</div>
|
|
1304
|
+
</div>
|
|
1305
|
+
</div>
|
|
1306
|
+
} @else {
|
|
1307
|
+
<!-- ask for empty state: -->
|
|
1308
|
+
<small>No Media!</small>
|
|
1309
|
+
}
|
|
1310
|
+
</div>
|
|
1311
|
+
`,
|
|
1312
|
+
standalone: true,
|
|
1313
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1314
|
+
imports: [CommonModule, AXImageModule, AXDecoratorModule, AXLoadingModule],
|
|
1315
|
+
inputs: [],
|
|
1316
|
+
}]
|
|
1317
|
+
}] });
|
|
1318
|
+
|
|
1319
|
+
var galleryWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
1320
|
+
__proto__: null,
|
|
1321
|
+
AXPGalleryWidgetViewComponent: AXPGalleryWidgetViewComponent
|
|
1322
|
+
});
|
|
1323
|
+
|
|
1324
|
+
class AXPGalleryWidgetEditComponent extends AXPWidgetBase {
|
|
1325
|
+
constructor() {
|
|
1326
|
+
super(...arguments);
|
|
1327
|
+
this.internalValue = computed(() => {
|
|
1328
|
+
const parsedValue = this.getValue() ? JSON.parse(this.getValue()) : [];
|
|
1329
|
+
return Array.isArray(parsedValue) ? parsedValue.map((c) => c) : [parsedValue];
|
|
1330
|
+
});
|
|
1331
|
+
this.activeMedia = signal(null);
|
|
1332
|
+
this.thumbnails = computed(() => this.internalValue().filter((i) => i.id !== this.activeMedia()?.id));
|
|
1333
|
+
}
|
|
1334
|
+
changeMediaSelected(media) {
|
|
1335
|
+
this.activeMedia.set(media);
|
|
1336
|
+
}
|
|
1337
|
+
ngAfterViewInit() {
|
|
1338
|
+
this.activeMedia.set(this.internalValue()[0]);
|
|
1339
|
+
}
|
|
1340
|
+
getMediaInfo(mediaName) {
|
|
1341
|
+
const extension = mediaName.split('.').pop()?.toLowerCase();
|
|
1342
|
+
switch (extension) {
|
|
1343
|
+
case 'jpg':
|
|
1344
|
+
case 'jpeg':
|
|
1345
|
+
case 'png':
|
|
1346
|
+
case 'gif':
|
|
1347
|
+
case 'bmp':
|
|
1348
|
+
return { icon: '', format: 'image' };
|
|
1349
|
+
case 'mp4':
|
|
1350
|
+
case 'avi':
|
|
1351
|
+
case 'mkv':
|
|
1352
|
+
case 'mov':
|
|
1353
|
+
return { icon: 'fa-regular fa-play', format: 'video' };
|
|
1354
|
+
case 'mp3':
|
|
1355
|
+
case 'wav':
|
|
1356
|
+
case 'ogg':
|
|
1357
|
+
return { icon: 'fa-regular fa-volume-high', format: 'audio' };
|
|
1358
|
+
default:
|
|
1359
|
+
return { icon: '', format: 'image' };
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1363
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPGalleryWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
1364
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
1365
|
+
@if(internalValue().length){
|
|
1366
|
+
<div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
|
|
1367
|
+
<div class="ax-flex ax-flex-col ax-items-center ax-gap-4 ax-w-full">
|
|
1368
|
+
@switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
|
|
1369
|
+
<video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
|
|
1370
|
+
} @case ('image') {
|
|
1371
|
+
<ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
|
|
1372
|
+
<ax-loading></ax-loading>
|
|
1373
|
+
<ax-placeholder>
|
|
1374
|
+
<div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
|
|
1375
|
+
<ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
|
|
1376
|
+
<span>Connection Error!</span>
|
|
1377
|
+
</div>
|
|
1378
|
+
</ax-placeholder>
|
|
1379
|
+
</ax-image>
|
|
1380
|
+
} @case ('audio') {
|
|
1381
|
+
<audio controls class="ax-rounded-lg">
|
|
1382
|
+
<source [src]="activeMedia()?.url" type="audio/mp3" />
|
|
1383
|
+
</audio>
|
|
1384
|
+
} }
|
|
1385
|
+
<div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
|
|
1386
|
+
@for (media of thumbnails(); track $index) {
|
|
1387
|
+
<div
|
|
1388
|
+
*ngIf="getMediaInfo(media.name) as mediaInfo"
|
|
1389
|
+
class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
|
|
1390
|
+
(click)="changeMediaSelected(media)"
|
|
1391
|
+
>
|
|
1392
|
+
<ax-image
|
|
1393
|
+
class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
|
|
1394
|
+
[src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
|
|
1395
|
+
></ax-image>
|
|
1396
|
+
<div class="ax-absolute ax-text-neutral-300 ax-text-xl">
|
|
1397
|
+
<ax-icon [class]="mediaInfo.icon"> </ax-icon>
|
|
1398
|
+
</div>
|
|
1399
|
+
</div>
|
|
1400
|
+
}
|
|
1401
|
+
<div axUploaderZone>
|
|
1402
|
+
<div axUploaderBrowseHandle class="ax-flex ax-justify-center ax-items-center ax-w-16 ax-h-16 ax-border ax-rounded-lg ax-cursor-pointer">
|
|
1403
|
+
<ax-icon class="fa-solid fa-plus ax-text-neutral-500"> </ax-icon>
|
|
1404
|
+
</div>
|
|
1405
|
+
</div>
|
|
1406
|
+
</div>
|
|
1407
|
+
</div>
|
|
1408
|
+
</div>
|
|
1409
|
+
} @else {
|
|
1410
|
+
<div class=" ax-col-start-1 ax-col-end-13">
|
|
1411
|
+
<ax-uploader-drop-zone></ax-uploader-drop-zone>
|
|
1412
|
+
</div>
|
|
1413
|
+
|
|
1414
|
+
}
|
|
1415
|
+
</div>
|
|
1416
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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" }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1417
|
+
}
|
|
1418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetEditComponent, decorators: [{
|
|
1419
|
+
type: Component,
|
|
1420
|
+
args: [{
|
|
1421
|
+
template: `
|
|
1422
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2">
|
|
1423
|
+
@if(internalValue().length){
|
|
1424
|
+
<div class="ax-col-start-1 ax-col-end-13 ax-flex ax-items-center lg:ax-justify-start ax-justify-center ">
|
|
1425
|
+
<div class="ax-flex ax-flex-col ax-items-center ax-gap-4 ax-w-full">
|
|
1426
|
+
@switch (getMediaInfo(activeMedia()?.name||'').format) { @case ('video') {
|
|
1427
|
+
<video class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto ax-shadow-md" controls [src]="activeMedia()?.url"></video>
|
|
1428
|
+
} @case ('image') {
|
|
1429
|
+
<ax-image class="ax-rounded-lg ax-h-48 md:ax-h-72 ax-w-auto" [src]="activeMedia()?.url">
|
|
1430
|
+
<ax-loading></ax-loading>
|
|
1431
|
+
<ax-placeholder>
|
|
1432
|
+
<div class="ax-w-96 ax-h-72 ax-gap-4 ax-flex ax-flex-col ax-items-center ax-justify-center ax-border ax-rounded-lg">
|
|
1433
|
+
<ax-icon class="fa-solid fa-circle-exclamation ax-text-3xl"> </ax-icon>
|
|
1434
|
+
<span>Connection Error!</span>
|
|
1435
|
+
</div>
|
|
1436
|
+
</ax-placeholder>
|
|
1437
|
+
</ax-image>
|
|
1438
|
+
} @case ('audio') {
|
|
1439
|
+
<audio controls class="ax-rounded-lg">
|
|
1440
|
+
<source [src]="activeMedia()?.url" type="audio/mp3" />
|
|
1441
|
+
</audio>
|
|
1442
|
+
} }
|
|
1443
|
+
<div class="ax-flex ax-gap-4 ax-overflow-x-auto ax-max-w-[320px] lg:ax-max-w-[480px] ax-pb-2">
|
|
1444
|
+
@for (media of thumbnails(); track $index) {
|
|
1445
|
+
<div
|
|
1446
|
+
*ngIf="getMediaInfo(media.name) as mediaInfo"
|
|
1447
|
+
class="hover:ax-opacity-75 ax-transition-all ax-relative ax-cursor-pointer ax-flex ax-justify-center ax-items-center"
|
|
1448
|
+
(click)="changeMediaSelected(media)"
|
|
1449
|
+
>
|
|
1450
|
+
<ax-image
|
|
1451
|
+
class="ax-w-16 ax-brightness-50 ax-h-16 ax-rounded-lg ax-shadow-md ax-filter"
|
|
1452
|
+
[src]="mediaInfo.format == 'image' ? media.url : media.posterUrl"
|
|
1453
|
+
></ax-image>
|
|
1454
|
+
<div class="ax-absolute ax-text-neutral-300 ax-text-xl">
|
|
1455
|
+
<ax-icon [class]="mediaInfo.icon"> </ax-icon>
|
|
1456
|
+
</div>
|
|
1457
|
+
</div>
|
|
1458
|
+
}
|
|
1459
|
+
<div axUploaderZone>
|
|
1460
|
+
<div axUploaderBrowseHandle class="ax-flex ax-justify-center ax-items-center ax-w-16 ax-h-16 ax-border ax-rounded-lg ax-cursor-pointer">
|
|
1461
|
+
<ax-icon class="fa-solid fa-plus ax-text-neutral-500"> </ax-icon>
|
|
1462
|
+
</div>
|
|
1463
|
+
</div>
|
|
1464
|
+
</div>
|
|
1465
|
+
</div>
|
|
1466
|
+
</div>
|
|
1467
|
+
} @else {
|
|
1468
|
+
<div class=" ax-col-start-1 ax-col-end-13">
|
|
1469
|
+
<ax-uploader-drop-zone></ax-uploader-drop-zone>
|
|
1470
|
+
</div>
|
|
1471
|
+
|
|
1472
|
+
}
|
|
1473
|
+
</div>
|
|
1474
|
+
`,
|
|
1475
|
+
standalone: true,
|
|
1476
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1477
|
+
imports: [CommonModule, FormsModule, AXImageModule, AXDecoratorModule, AXLoadingModule, AXUploaderModule],
|
|
1478
|
+
inputs: [],
|
|
1479
|
+
}]
|
|
1480
|
+
}] });
|
|
1481
|
+
|
|
1482
|
+
var galleryWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1483
|
+
__proto__: null,
|
|
1484
|
+
AXPGalleryWidgetEditComponent: AXPGalleryWidgetEditComponent
|
|
1485
|
+
});
|
|
1486
|
+
|
|
1487
|
+
class AXPGalleryWidgetFilterComponent extends AXPWidgetBase {
|
|
1488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1489
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPGalleryWidgetFilterComponent, 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 }); }
|
|
1490
|
+
}
|
|
1491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetFilterComponent, decorators: [{
|
|
1492
|
+
type: Component,
|
|
1493
|
+
args: [{
|
|
1494
|
+
template: ``,
|
|
1495
|
+
standalone: true,
|
|
1496
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1497
|
+
imports: [CommonModule, FormsModule],
|
|
1498
|
+
inputs: []
|
|
1499
|
+
}]
|
|
1500
|
+
}] });
|
|
1501
|
+
|
|
1502
|
+
var galleryWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
1503
|
+
__proto__: null,
|
|
1504
|
+
AXPGalleryWidgetFilterComponent: AXPGalleryWidgetFilterComponent
|
|
1505
|
+
});
|
|
1506
|
+
|
|
1507
|
+
class AXPGalleryWidgetColumnComponent extends AXPWidgetBase {
|
|
1508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1509
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPGalleryWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1510
|
+
}
|
|
1511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetColumnComponent, decorators: [{
|
|
1512
|
+
type: Component,
|
|
1513
|
+
args: [{
|
|
1514
|
+
template: ``,
|
|
1515
|
+
standalone: true,
|
|
1516
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1517
|
+
imports: [CommonModule],
|
|
1518
|
+
inputs: []
|
|
1519
|
+
}]
|
|
1520
|
+
}] });
|
|
1521
|
+
|
|
1522
|
+
var galleryWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
1523
|
+
__proto__: null,
|
|
1524
|
+
AXPGalleryWidgetColumnComponent: AXPGalleryWidgetColumnComponent
|
|
1525
|
+
});
|
|
1526
|
+
|
|
1527
|
+
class AXPGalleryWidgetPrintComponent extends AXPWidgetBase {
|
|
1528
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1529
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPGalleryWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1530
|
+
}
|
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetPrintComponent, decorators: [{
|
|
1532
|
+
type: Component,
|
|
1533
|
+
args: [{
|
|
1534
|
+
template: ``,
|
|
1535
|
+
standalone: true,
|
|
1536
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1537
|
+
imports: [CommonModule],
|
|
1538
|
+
inputs: []
|
|
1539
|
+
}]
|
|
1540
|
+
}] });
|
|
1541
|
+
|
|
1542
|
+
var galleryWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
1543
|
+
__proto__: null,
|
|
1544
|
+
AXPGalleryWidgetPrintComponent: AXPGalleryWidgetPrintComponent
|
|
1545
|
+
});
|
|
1546
|
+
|
|
1547
|
+
class AXPGalleryWidgetDesignerComponent extends AXPWidgetBase {
|
|
1548
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1549
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPGalleryWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1550
|
+
}
|
|
1551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPGalleryWidgetDesignerComponent, decorators: [{
|
|
1552
|
+
type: Component,
|
|
1553
|
+
args: [{
|
|
1554
|
+
template: ``,
|
|
1555
|
+
standalone: true,
|
|
1556
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1557
|
+
imports: [CommonModule],
|
|
1558
|
+
inputs: []
|
|
1559
|
+
}]
|
|
1560
|
+
}] });
|
|
1561
|
+
|
|
1562
|
+
var galleryWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
1563
|
+
__proto__: null,
|
|
1564
|
+
AXPGalleryWidgetDesignerComponent: AXPGalleryWidgetDesignerComponent
|
|
1565
|
+
});
|
|
1566
|
+
|
|
1567
|
+
const AXPGalleryWidget = {
|
|
1568
|
+
name: "gallery",
|
|
1569
|
+
components: {
|
|
1570
|
+
view: {
|
|
1571
|
+
component: () => Promise.resolve().then(function () { return galleryWidgetView_component; }).then((c) => c.AXPGalleryWidgetViewComponent),
|
|
1572
|
+
},
|
|
1573
|
+
edit: {
|
|
1574
|
+
component: () => Promise.resolve().then(function () { return galleryWidgetEdit_component; }).then((c) => c.AXPGalleryWidgetEditComponent),
|
|
1575
|
+
},
|
|
1576
|
+
filter: {
|
|
1577
|
+
component: () => Promise.resolve().then(function () { return galleryWidgetFilter_component; }).then((c) => c.AXPGalleryWidgetFilterComponent),
|
|
1578
|
+
},
|
|
1579
|
+
column: {
|
|
1580
|
+
component: () => Promise.resolve().then(function () { return galleryWidgetColumn_component; }).then((c) => c.AXPGalleryWidgetColumnComponent),
|
|
1581
|
+
},
|
|
1582
|
+
print: {
|
|
1583
|
+
component: () => Promise.resolve().then(function () { return galleryWidgetPrint_component; }).then((c) => c.AXPGalleryWidgetPrintComponent),
|
|
1584
|
+
},
|
|
1585
|
+
designer: {
|
|
1586
|
+
component: () => Promise.resolve().then(function () { return galleryWidgetDesigner_component; }).then((c) => c.AXPGalleryWidgetDesignerComponent),
|
|
1587
|
+
},
|
|
1588
|
+
}
|
|
1589
|
+
};
|
|
1590
|
+
|
|
1591
|
+
class AXPMapBoxWidgetViewComponent extends AXPWidgetBase {
|
|
1592
|
+
constructor() {
|
|
1593
|
+
super(...arguments);
|
|
1594
|
+
this.valueChangeEffect = effect(() => {
|
|
1595
|
+
this.updateMarkers();
|
|
1596
|
+
});
|
|
1597
|
+
}
|
|
1598
|
+
async ngAfterViewInit() {
|
|
1599
|
+
await this.initMap();
|
|
1600
|
+
}
|
|
1601
|
+
addMarker(location, leaflet) {
|
|
1602
|
+
const marker = leaflet.marker(location);
|
|
1603
|
+
if (location.title) {
|
|
1604
|
+
marker.bindPopup(location.title);
|
|
1605
|
+
}
|
|
1606
|
+
this.featuresGroup.addLayer(marker);
|
|
1607
|
+
}
|
|
1608
|
+
updateMarkers() {
|
|
1609
|
+
if (this.getValue()) {
|
|
1610
|
+
this.featuresGroup.clearLayers();
|
|
1611
|
+
this.getValue().forEach((location) => {
|
|
1612
|
+
this.addMarker(location, this.leaflet);
|
|
1613
|
+
});
|
|
1614
|
+
this.map.fitBounds(this.featuresGroup.getBounds(), { padding: [50, 50] });
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1617
|
+
async initMap() {
|
|
1618
|
+
const leaflet = await import('leaflet');
|
|
1619
|
+
this.leaflet = leaflet;
|
|
1620
|
+
this.featuresGroup = new leaflet.FeatureGroup();
|
|
1621
|
+
this.map = leaflet.map(this.mapEl.nativeElement, {
|
|
1622
|
+
center: [20, 0],
|
|
1623
|
+
zoom: 2,
|
|
1624
|
+
minZoom: 1,
|
|
1625
|
+
maxZoom: 10,
|
|
1626
|
+
worldCopyJump: true,
|
|
1627
|
+
});
|
|
1628
|
+
leaflet
|
|
1629
|
+
.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
1630
|
+
maxZoom: 10,
|
|
1631
|
+
attribution: '© acorex platform',
|
|
1632
|
+
})
|
|
1633
|
+
.addTo(this.map);
|
|
1634
|
+
this.updateMarkers();
|
|
1635
|
+
this.map.addLayer(this.featuresGroup);
|
|
1636
|
+
}
|
|
1637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "mapEl", first: true, predicate: ["mapEl"], descendants: true }], usesInheritance: true, ngImport: i0, template: `<div class="ax-w-full ax-h-72">
|
|
1639
|
+
<div class="ax-h-full" #mapEl></div>
|
|
1640
|
+
</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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
1641
|
+
}
|
|
1642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetViewComponent, decorators: [{
|
|
1643
|
+
type: Component,
|
|
1644
|
+
args: [{ template: `<div class="ax-w-full ax-h-72">
|
|
1645
|
+
<div class="ax-h-full" #mapEl></div>
|
|
1646
|
+
</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,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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}\n"] }]
|
|
1647
|
+
}], propDecorators: { mapEl: [{
|
|
1648
|
+
type: ViewChild,
|
|
1649
|
+
args: ['mapEl']
|
|
1650
|
+
}] } });
|
|
1651
|
+
|
|
1652
|
+
var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
1653
|
+
__proto__: null,
|
|
1654
|
+
AXPMapBoxWidgetViewComponent: AXPMapBoxWidgetViewComponent
|
|
1655
|
+
});
|
|
1656
|
+
|
|
1657
|
+
class AXPMapBoxWidgetEditComponent extends AXPWidgetBase {
|
|
1658
|
+
async ngAfterViewInit() {
|
|
1659
|
+
await this.initMap();
|
|
1660
|
+
}
|
|
1661
|
+
updateValue() {
|
|
1662
|
+
const markers = Object.values(this.featuresGroup._layers).map((layer) => {
|
|
1663
|
+
return layer._latlng;
|
|
1664
|
+
});
|
|
1665
|
+
this.setValue(markers);
|
|
1666
|
+
}
|
|
1667
|
+
addMarker(location, leaflet) {
|
|
1668
|
+
const marker = leaflet.marker(location);
|
|
1669
|
+
if (location.title) {
|
|
1670
|
+
marker.bindPopup(location.title);
|
|
1671
|
+
}
|
|
1672
|
+
this.featuresGroup.addLayer(marker);
|
|
1673
|
+
}
|
|
1674
|
+
async initMap() {
|
|
1675
|
+
const leaflet = await import('leaflet');
|
|
1676
|
+
await import('leaflet-draw');
|
|
1677
|
+
this.featuresGroup = new leaflet.FeatureGroup();
|
|
1678
|
+
this.map = leaflet.map(this.mapEl.nativeElement, {
|
|
1679
|
+
center: [20, 0],
|
|
1680
|
+
zoom: 2,
|
|
1681
|
+
minZoom: 1,
|
|
1682
|
+
maxZoom: 10,
|
|
1683
|
+
worldCopyJump: true,
|
|
1684
|
+
});
|
|
1685
|
+
leaflet
|
|
1686
|
+
.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
1687
|
+
maxZoom: 10,
|
|
1688
|
+
attribution: '© acorex platform',
|
|
1689
|
+
})
|
|
1690
|
+
.addTo(this.map);
|
|
1691
|
+
this.map.addLayer(this.featuresGroup);
|
|
1692
|
+
const drawControl = new leaflet.Control.Draw({
|
|
1693
|
+
draw: {
|
|
1694
|
+
circle: false,
|
|
1695
|
+
polygon: false,
|
|
1696
|
+
circlemarker: false,
|
|
1697
|
+
polyline: false,
|
|
1698
|
+
rectangle: false,
|
|
1699
|
+
},
|
|
1700
|
+
edit: {
|
|
1701
|
+
featureGroup: this.featuresGroup,
|
|
1702
|
+
remove: true,
|
|
1703
|
+
edit: false,
|
|
1704
|
+
},
|
|
1705
|
+
});
|
|
1706
|
+
this.map.addControl(drawControl);
|
|
1707
|
+
this.map.on('draw:created', (e) => {
|
|
1708
|
+
const { layer, layerType } = e;
|
|
1709
|
+
if ((!this.multiple && this.featuresGroup.getLayers().length < 1) || this.multiple) {
|
|
1710
|
+
this.featuresGroup.addLayer(layer);
|
|
1711
|
+
if (layerType === 'marker')
|
|
1712
|
+
this.updateValue();
|
|
1713
|
+
}
|
|
1714
|
+
});
|
|
1715
|
+
this.map.on('draw:deleted', (e) => {
|
|
1716
|
+
const { layers } = e;
|
|
1717
|
+
Object.values(layers._layers).map((layer) => {
|
|
1718
|
+
this.featuresGroup.removeLayer(layer);
|
|
1719
|
+
});
|
|
1720
|
+
this.updateValue();
|
|
1721
|
+
});
|
|
1722
|
+
if (this.getValue()) {
|
|
1723
|
+
this.getValue().forEach((location) => {
|
|
1724
|
+
this.addMarker(location, leaflet);
|
|
1725
|
+
});
|
|
1726
|
+
this.map.fitBounds(this.featuresGroup.getBounds(), { padding: [50, 50] });
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1730
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "mapEl", first: true, predicate: ["mapEl"], descendants: true }], usesInheritance: true, ngImport: i0, template: `<div class="ax-w-full ax-h-72">
|
|
1731
|
+
<div class="ax-h-full" #mapEl></div>
|
|
1732
|
+
</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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
1733
|
+
}
|
|
1734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetEditComponent, decorators: [{
|
|
1735
|
+
type: Component,
|
|
1736
|
+
args: [{ template: `<div class="ax-w-full ax-h-72">
|
|
1737
|
+
<div class="ax-h-full" #mapEl></div>
|
|
1738
|
+
</div>`, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, FormsModule], 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,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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}\n"] }]
|
|
1739
|
+
}], propDecorators: { mapEl: [{
|
|
1740
|
+
type: ViewChild,
|
|
1741
|
+
args: ['mapEl']
|
|
1742
|
+
}] } });
|
|
1743
|
+
|
|
1744
|
+
var mapBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1745
|
+
__proto__: null,
|
|
1746
|
+
AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
|
|
1747
|
+
});
|
|
1748
|
+
|
|
1749
|
+
class AXPMapBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
1750
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1751
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", 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 }); }
|
|
1752
|
+
}
|
|
1753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetFilterComponent, decorators: [{
|
|
1754
|
+
type: Component,
|
|
1755
|
+
args: [{
|
|
1756
|
+
template: ``,
|
|
1757
|
+
standalone: true,
|
|
1758
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1759
|
+
imports: [CommonModule, FormsModule],
|
|
1760
|
+
inputs: []
|
|
1761
|
+
}]
|
|
1762
|
+
}] });
|
|
1763
|
+
|
|
1764
|
+
var mapBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
1765
|
+
__proto__: null,
|
|
1766
|
+
AXPMapBoxWidgetFilterComponent: AXPMapBoxWidgetFilterComponent
|
|
1767
|
+
});
|
|
1768
|
+
|
|
1769
|
+
class AXPMapBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
1770
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1771
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1772
|
+
}
|
|
1773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetColumnComponent, decorators: [{
|
|
1774
|
+
type: Component,
|
|
1775
|
+
args: [{
|
|
1776
|
+
template: ``,
|
|
1777
|
+
standalone: true,
|
|
1778
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1779
|
+
imports: [CommonModule],
|
|
1780
|
+
inputs: []
|
|
1781
|
+
}]
|
|
1782
|
+
}] });
|
|
1783
|
+
|
|
1784
|
+
var mapBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
1785
|
+
__proto__: null,
|
|
1786
|
+
AXPMapBoxWidgetColumnComponent: AXPMapBoxWidgetColumnComponent
|
|
1787
|
+
});
|
|
1788
|
+
|
|
1789
|
+
class AXPMapBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
1790
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1791
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1792
|
+
}
|
|
1793
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetPrintComponent, decorators: [{
|
|
1794
|
+
type: Component,
|
|
1795
|
+
args: [{
|
|
1796
|
+
template: ``,
|
|
1797
|
+
standalone: true,
|
|
1798
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1799
|
+
imports: [CommonModule],
|
|
1800
|
+
inputs: []
|
|
1801
|
+
}]
|
|
1802
|
+
}] });
|
|
1803
|
+
|
|
1804
|
+
var mapBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
1805
|
+
__proto__: null,
|
|
1806
|
+
AXPMapBoxWidgetPrintComponent: AXPMapBoxWidgetPrintComponent
|
|
1807
|
+
});
|
|
1808
|
+
|
|
1809
|
+
class AXPMapBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
1810
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1811
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPMapBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1812
|
+
}
|
|
1813
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPMapBoxWidgetDesignerComponent, decorators: [{
|
|
1814
|
+
type: Component,
|
|
1815
|
+
args: [{
|
|
1816
|
+
template: ``,
|
|
1817
|
+
standalone: true,
|
|
1818
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1819
|
+
imports: [CommonModule],
|
|
1820
|
+
inputs: []
|
|
1821
|
+
}]
|
|
1822
|
+
}] });
|
|
1823
|
+
|
|
1824
|
+
var mapBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
1825
|
+
__proto__: null,
|
|
1826
|
+
AXPMapBoxWidgetDesignerComponent: AXPMapBoxWidgetDesignerComponent
|
|
1827
|
+
});
|
|
1828
|
+
|
|
1829
|
+
const AXPMapBoxWidget = {
|
|
1830
|
+
name: "map-box",
|
|
1831
|
+
components: {
|
|
1832
|
+
view: {
|
|
1833
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetView_component; }).then((c) => c.AXPMapBoxWidgetViewComponent),
|
|
1834
|
+
},
|
|
1835
|
+
edit: {
|
|
1836
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetEdit_component; }).then((c) => c.AXPMapBoxWidgetEditComponent),
|
|
1837
|
+
},
|
|
1838
|
+
filter: {
|
|
1839
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetFilter_component; }).then((c) => c.AXPMapBoxWidgetFilterComponent),
|
|
1840
|
+
},
|
|
1841
|
+
column: {
|
|
1842
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetColumn_component; }).then((c) => c.AXPMapBoxWidgetColumnComponent),
|
|
1843
|
+
},
|
|
1844
|
+
print: {
|
|
1845
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetPrint_component; }).then((c) => c.AXPMapBoxWidgetPrintComponent),
|
|
1846
|
+
},
|
|
1847
|
+
designer: {
|
|
1848
|
+
component: () => Promise.resolve().then(function () { return mapBoxWidgetDesigner_component; }).then((c) => c.AXPMapBoxWidgetDesignerComponent),
|
|
1849
|
+
},
|
|
1850
|
+
}
|
|
1851
|
+
};
|
|
1852
|
+
|
|
1853
|
+
class AXPNumberBoxWidgetViewComponent extends AXPWidgetBase {
|
|
1854
|
+
constructor() {
|
|
1855
|
+
super(...arguments);
|
|
1856
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
1857
|
+
}
|
|
1858
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1859
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPNumberBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
1860
|
+
<div>
|
|
1861
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
1862
|
+
<p>{{ item }}</p>
|
|
1863
|
+
} }@else {
|
|
1864
|
+
<p>{{ internalValue()[0] }}</p>
|
|
1865
|
+
}
|
|
1866
|
+
</div>
|
|
1867
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1868
|
+
}
|
|
1869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetViewComponent, decorators: [{
|
|
1870
|
+
type: Component,
|
|
1871
|
+
args: [{
|
|
1872
|
+
template: `
|
|
1873
|
+
<div>
|
|
1874
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
1875
|
+
<p>{{ item }}</p>
|
|
1876
|
+
} }@else {
|
|
1877
|
+
<p>{{ internalValue()[0] }}</p>
|
|
1878
|
+
}
|
|
1879
|
+
</div>
|
|
1880
|
+
`,
|
|
1881
|
+
standalone: true,
|
|
1882
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1883
|
+
imports: [CommonModule],
|
|
1884
|
+
inputs: [],
|
|
1885
|
+
}]
|
|
1886
|
+
}] });
|
|
1887
|
+
|
|
1888
|
+
var numberBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
1889
|
+
__proto__: null,
|
|
1890
|
+
AXPNumberBoxWidgetViewComponent: AXPNumberBoxWidgetViewComponent
|
|
1891
|
+
});
|
|
1892
|
+
|
|
1893
|
+
class AXPNumberBoxWidgetEditComponent extends AXPWidgetBase {
|
|
1894
|
+
constructor() {
|
|
1895
|
+
super(...arguments);
|
|
1896
|
+
this.clearButton = true;
|
|
1897
|
+
this.placeholder = null;
|
|
1898
|
+
this.disabled = false;
|
|
1899
|
+
this.multiple = false;
|
|
1900
|
+
this.decimals = 0;
|
|
1901
|
+
this.validationService = inject(AXValidationService);
|
|
1902
|
+
this.validationRules = [];
|
|
1903
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
1904
|
+
this.validateFn = async (value, options) => {
|
|
1905
|
+
const vn = this.validationService.ruleFor(value);
|
|
1906
|
+
this.validationRules.forEach(v => {
|
|
1907
|
+
const options = { ...v.options };
|
|
1908
|
+
if (v.message)
|
|
1909
|
+
options.message = v.message;
|
|
1910
|
+
vn.addRule(v.rule, options);
|
|
1911
|
+
});
|
|
1912
|
+
const a = await vn.validate();
|
|
1913
|
+
return { result: a.result, message: a.rules.find(c => !c.result)?.message };
|
|
1914
|
+
};
|
|
1915
|
+
}
|
|
1916
|
+
handleValueChange(e, i) {
|
|
1917
|
+
if (e.isUserInteraction) {
|
|
1918
|
+
const newValues = this.internalValue().map((item, index) => (i === index ? e.value : item));
|
|
1919
|
+
if (this.multiple)
|
|
1920
|
+
this.setValue(newValues);
|
|
1921
|
+
else
|
|
1922
|
+
this.setValue(newValues[0]);
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
addItem() {
|
|
1926
|
+
const newValues = [...this.internalValue(), 0];
|
|
1927
|
+
this.setValue(newValues);
|
|
1928
|
+
}
|
|
1929
|
+
deleteItem(i) {
|
|
1930
|
+
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
1931
|
+
this.setValue(newValues);
|
|
1932
|
+
}
|
|
1933
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1934
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPNumberBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", inputs: { validationRules: "validationRules", multiple: "multiple", disabled: "disabled" }, usesInheritance: true, ngImport: i0, template: `
|
|
1935
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
1936
|
+
@for(number of internalValue(); track $index){
|
|
1937
|
+
<ax-number-box
|
|
1938
|
+
class="ax-col-span-12"
|
|
1939
|
+
[decimals]="decimals"
|
|
1940
|
+
[placeholder]="placeholder"
|
|
1941
|
+
[ngModel]="number"
|
|
1942
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
1943
|
+
[disabled]="disabled"
|
|
1944
|
+
>
|
|
1945
|
+
<ax-validation-rule rule="callback" [options]="{validate:validateFn}"></ax-validation-rule>
|
|
1946
|
+
@if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
|
|
1947
|
+
<ax-suffix>
|
|
1948
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
1949
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
1950
|
+
</ax-button>
|
|
1951
|
+
</ax-suffix>
|
|
1952
|
+
}
|
|
1953
|
+
</ax-number-box>
|
|
1954
|
+
} @if(multiple){
|
|
1955
|
+
<ax-button
|
|
1956
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
1957
|
+
look="twotone"
|
|
1958
|
+
(onClick)="addItem()"
|
|
1959
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
1960
|
+
>
|
|
1961
|
+
<ax-prefix>
|
|
1962
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
1963
|
+
</ax-prefix>
|
|
1964
|
+
</ax-button>
|
|
1965
|
+
}
|
|
1966
|
+
</div>
|
|
1967
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$2.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "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: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i3$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1968
|
+
}
|
|
1969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, decorators: [{
|
|
1970
|
+
type: Component,
|
|
1971
|
+
args: [{
|
|
1972
|
+
template: `
|
|
1973
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
1974
|
+
@for(number of internalValue(); track $index){
|
|
1975
|
+
<ax-number-box
|
|
1976
|
+
class="ax-col-span-12"
|
|
1977
|
+
[decimals]="decimals"
|
|
1978
|
+
[placeholder]="placeholder"
|
|
1979
|
+
[ngModel]="number"
|
|
1980
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
1981
|
+
[disabled]="disabled"
|
|
1982
|
+
>
|
|
1983
|
+
<ax-validation-rule rule="callback" [options]="{validate:validateFn}"></ax-validation-rule>
|
|
1984
|
+
@if(clearButton){<ax-clear-button></ax-clear-button>} @if(multiple){
|
|
1985
|
+
<ax-suffix>
|
|
1986
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
1987
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
1988
|
+
</ax-button>
|
|
1989
|
+
</ax-suffix>
|
|
1990
|
+
}
|
|
1991
|
+
</ax-number-box>
|
|
1992
|
+
} @if(multiple){
|
|
1993
|
+
<ax-button
|
|
1994
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
1995
|
+
look="twotone"
|
|
1996
|
+
(onClick)="addItem()"
|
|
1997
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
1998
|
+
>
|
|
1999
|
+
<ax-prefix>
|
|
2000
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
2001
|
+
</ax-prefix>
|
|
2002
|
+
</ax-button>
|
|
2003
|
+
}
|
|
2004
|
+
</div>
|
|
2005
|
+
`,
|
|
2006
|
+
standalone: true,
|
|
2007
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2008
|
+
imports: [CommonModule, AXNumberBoxModule, FormsModule, AXDecoratorModule, AXFormModule, AXButtonModule],
|
|
2009
|
+
inputs: ['validationRules', 'multiple', 'disabled'],
|
|
2010
|
+
}]
|
|
2011
|
+
}] });
|
|
2012
|
+
|
|
2013
|
+
var numberBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2014
|
+
__proto__: null,
|
|
2015
|
+
AXPNumberBoxWidgetEditComponent: AXPNumberBoxWidgetEditComponent
|
|
2016
|
+
});
|
|
2017
|
+
|
|
2018
|
+
class AXPNumberBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
2019
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2020
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPNumberBoxWidgetFilterComponent, 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 }); }
|
|
2021
|
+
}
|
|
2022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetFilterComponent, decorators: [{
|
|
2023
|
+
type: Component,
|
|
2024
|
+
args: [{
|
|
2025
|
+
template: ``,
|
|
2026
|
+
standalone: true,
|
|
2027
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2028
|
+
imports: [CommonModule, FormsModule],
|
|
2029
|
+
inputs: []
|
|
2030
|
+
}]
|
|
2031
|
+
}] });
|
|
2032
|
+
|
|
2033
|
+
var numberBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
2034
|
+
__proto__: null,
|
|
2035
|
+
AXPNumberBoxWidgetFilterComponent: AXPNumberBoxWidgetFilterComponent
|
|
2036
|
+
});
|
|
2037
|
+
|
|
2038
|
+
class AXPNumberBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
2039
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2040
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPNumberBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2041
|
+
}
|
|
2042
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetColumnComponent, decorators: [{
|
|
2043
|
+
type: Component,
|
|
2044
|
+
args: [{
|
|
2045
|
+
template: ``,
|
|
2046
|
+
standalone: true,
|
|
2047
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2048
|
+
imports: [CommonModule],
|
|
2049
|
+
inputs: []
|
|
2050
|
+
}]
|
|
2051
|
+
}] });
|
|
2052
|
+
|
|
2053
|
+
var numberBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
2054
|
+
__proto__: null,
|
|
2055
|
+
AXPNumberBoxWidgetColumnComponent: AXPNumberBoxWidgetColumnComponent
|
|
2056
|
+
});
|
|
2057
|
+
|
|
2058
|
+
class AXPNumberBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
2059
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2060
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPNumberBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2061
|
+
}
|
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetPrintComponent, decorators: [{
|
|
2063
|
+
type: Component,
|
|
2064
|
+
args: [{
|
|
2065
|
+
template: ``,
|
|
2066
|
+
standalone: true,
|
|
2067
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2068
|
+
imports: [CommonModule],
|
|
2069
|
+
inputs: []
|
|
2070
|
+
}]
|
|
2071
|
+
}] });
|
|
2072
|
+
|
|
2073
|
+
var numberBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2074
|
+
__proto__: null,
|
|
2075
|
+
AXPNumberBoxWidgetPrintComponent: AXPNumberBoxWidgetPrintComponent
|
|
2076
|
+
});
|
|
2077
|
+
|
|
2078
|
+
class AXPNumberBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
2079
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2080
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPNumberBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2081
|
+
}
|
|
2082
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPNumberBoxWidgetDesignerComponent, decorators: [{
|
|
2083
|
+
type: Component,
|
|
2084
|
+
args: [{
|
|
2085
|
+
template: ``,
|
|
2086
|
+
standalone: true,
|
|
2087
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2088
|
+
imports: [CommonModule],
|
|
2089
|
+
inputs: []
|
|
2090
|
+
}]
|
|
2091
|
+
}] });
|
|
2092
|
+
|
|
2093
|
+
var numberBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
2094
|
+
__proto__: null,
|
|
2095
|
+
AXPNumberBoxWidgetDesignerComponent: AXPNumberBoxWidgetDesignerComponent
|
|
2096
|
+
});
|
|
2097
|
+
|
|
2098
|
+
const AXPNumberBoxWidget = {
|
|
2099
|
+
name: "number-box",
|
|
2100
|
+
components: {
|
|
2101
|
+
view: {
|
|
2102
|
+
component: () => Promise.resolve().then(function () { return numberBoxWidgetView_component; }).then((c) => c.AXPNumberBoxWidgetViewComponent),
|
|
2103
|
+
},
|
|
2104
|
+
edit: {
|
|
2105
|
+
component: () => Promise.resolve().then(function () { return numberBoxWidgetEdit_component; }).then((c) => c.AXPNumberBoxWidgetEditComponent),
|
|
2106
|
+
},
|
|
2107
|
+
filter: {
|
|
2108
|
+
component: () => Promise.resolve().then(function () { return numberBoxWidgetFilter_component; }).then((c) => c.AXPNumberBoxWidgetFilterComponent),
|
|
2109
|
+
},
|
|
2110
|
+
column: {
|
|
2111
|
+
component: () => Promise.resolve().then(function () { return numberBoxWidgetColumn_component; }).then((c) => c.AXPNumberBoxWidgetColumnComponent),
|
|
2112
|
+
},
|
|
2113
|
+
print: {
|
|
2114
|
+
component: () => Promise.resolve().then(function () { return numberBoxWidgetPrint_component; }).then((c) => c.AXPNumberBoxWidgetPrintComponent),
|
|
2115
|
+
},
|
|
2116
|
+
designer: {
|
|
2117
|
+
component: () => Promise.resolve().then(function () { return numberBoxWidgetDesigner_component; }).then((c) => c.AXPNumberBoxWidgetDesignerComponent),
|
|
2118
|
+
},
|
|
2119
|
+
}
|
|
2120
|
+
};
|
|
2121
|
+
|
|
2122
|
+
class AXPPasswordBoxWidgetViewComponent extends AXPWidgetBase {
|
|
2123
|
+
constructor() {
|
|
2124
|
+
super(...arguments);
|
|
2125
|
+
this.internalValue = computed(() => this.getValue());
|
|
2126
|
+
this.clipboard = inject(AXPClipBoardService);
|
|
2127
|
+
this.showPass = true;
|
|
2128
|
+
}
|
|
2129
|
+
toggleEye() {
|
|
2130
|
+
this.showPass = !this.showPass;
|
|
2131
|
+
}
|
|
2132
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2133
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2134
|
+
<div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
|
|
2135
|
+
<div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
|
|
2136
|
+
<span>{{ showPass ? internalValue() : '*******' }}</span>
|
|
2137
|
+
@if(hasEye){
|
|
2138
|
+
<span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
|
|
2139
|
+
@if(!showPass){
|
|
2140
|
+
<i class="fa-solid fa-eye"></i>
|
|
2141
|
+
}@else {
|
|
2142
|
+
<i class="fa-solid fa-eye-slash"></i>
|
|
2143
|
+
}
|
|
2144
|
+
</span>
|
|
2145
|
+
} @if(hasCopy && hasEye){
|
|
2146
|
+
<span
|
|
2147
|
+
class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
|
|
2148
|
+
(click)="clipboard.copy('Password', internalValue())"
|
|
2149
|
+
>
|
|
2150
|
+
<i class="fa-solid fa-copy "></i>
|
|
2151
|
+
</span>
|
|
2152
|
+
}
|
|
2153
|
+
</div>
|
|
2154
|
+
</div>
|
|
2155
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2156
|
+
}
|
|
2157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetViewComponent, decorators: [{
|
|
2158
|
+
type: Component,
|
|
2159
|
+
args: [{
|
|
2160
|
+
template: `
|
|
2161
|
+
<div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
|
|
2162
|
+
<div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
|
|
2163
|
+
<span>{{ showPass ? internalValue() : '*******' }}</span>
|
|
2164
|
+
@if(hasEye){
|
|
2165
|
+
<span class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500" (click)="toggleEye()">
|
|
2166
|
+
@if(!showPass){
|
|
2167
|
+
<i class="fa-solid fa-eye"></i>
|
|
2168
|
+
}@else {
|
|
2169
|
+
<i class="fa-solid fa-eye-slash"></i>
|
|
2170
|
+
}
|
|
2171
|
+
</span>
|
|
2172
|
+
} @if(hasCopy && hasEye){
|
|
2173
|
+
<span
|
|
2174
|
+
class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
|
|
2175
|
+
(click)="clipboard.copy('Password', internalValue())"
|
|
2176
|
+
>
|
|
2177
|
+
<i class="fa-solid fa-copy "></i>
|
|
2178
|
+
</span>
|
|
2179
|
+
}
|
|
2180
|
+
</div>
|
|
2181
|
+
</div>
|
|
2182
|
+
`,
|
|
2183
|
+
standalone: true,
|
|
2184
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2185
|
+
imports: [CommonModule],
|
|
2186
|
+
inputs: [],
|
|
2187
|
+
}]
|
|
2188
|
+
}] });
|
|
2189
|
+
|
|
2190
|
+
var passwordBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2191
|
+
__proto__: null,
|
|
2192
|
+
AXPPasswordBoxWidgetViewComponent: AXPPasswordBoxWidgetViewComponent
|
|
2193
|
+
});
|
|
2194
|
+
|
|
2195
|
+
class AXPPasswordBoxWidgetEditComponent extends AXPWidgetBase {
|
|
2196
|
+
handleValueChanged(e) {
|
|
2197
|
+
if (e.isUserInteraction) {
|
|
2198
|
+
this.setValue(e.value);
|
|
2199
|
+
}
|
|
2200
|
+
}
|
|
2201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2202
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2203
|
+
<ax-password-box [ngModel]="getValue()" (onValueChanged)="handleValueChanged($event)">
|
|
2204
|
+
<ax-validation-rule rule="required"></ax-validation-rule>
|
|
2205
|
+
</ax-password-box>
|
|
2206
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i2$4.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2207
|
+
}
|
|
2208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, decorators: [{
|
|
2209
|
+
type: Component,
|
|
2210
|
+
args: [{
|
|
2211
|
+
template: `
|
|
2212
|
+
<ax-password-box [ngModel]="getValue()" (onValueChanged)="handleValueChanged($event)">
|
|
2213
|
+
<ax-validation-rule rule="required"></ax-validation-rule>
|
|
2214
|
+
</ax-password-box>
|
|
2215
|
+
`,
|
|
2216
|
+
standalone: true,
|
|
2217
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2218
|
+
imports: [CommonModule, FormsModule, AXPasswordBoxModule, AXValidationModule, AXFormModule],
|
|
2219
|
+
inputs: [],
|
|
2220
|
+
}]
|
|
2221
|
+
}] });
|
|
2222
|
+
|
|
2223
|
+
var passwordBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2224
|
+
__proto__: null,
|
|
2225
|
+
AXPPasswordBoxWidgetEditComponent: AXPPasswordBoxWidgetEditComponent
|
|
2226
|
+
});
|
|
2227
|
+
|
|
2228
|
+
class AXPPasswordBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
2229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2230
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetFilterComponent, 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 }); }
|
|
2231
|
+
}
|
|
2232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetFilterComponent, decorators: [{
|
|
2233
|
+
type: Component,
|
|
2234
|
+
args: [{
|
|
2235
|
+
template: ``,
|
|
2236
|
+
standalone: true,
|
|
2237
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2238
|
+
imports: [CommonModule, FormsModule],
|
|
2239
|
+
inputs: []
|
|
2240
|
+
}]
|
|
2241
|
+
}] });
|
|
2242
|
+
|
|
2243
|
+
var passwordBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
2244
|
+
__proto__: null,
|
|
2245
|
+
AXPPasswordBoxWidgetFilterComponent: AXPPasswordBoxWidgetFilterComponent
|
|
2246
|
+
});
|
|
2247
|
+
|
|
2248
|
+
class AXPPasswordBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
2249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2250
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2251
|
+
}
|
|
2252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetColumnComponent, decorators: [{
|
|
2253
|
+
type: Component,
|
|
2254
|
+
args: [{
|
|
2255
|
+
template: ``,
|
|
2256
|
+
standalone: true,
|
|
2257
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2258
|
+
imports: [CommonModule],
|
|
2259
|
+
inputs: []
|
|
2260
|
+
}]
|
|
2261
|
+
}] });
|
|
2262
|
+
|
|
2263
|
+
var passwordBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
2264
|
+
__proto__: null,
|
|
2265
|
+
AXPPasswordBoxWidgetColumnComponent: AXPPasswordBoxWidgetColumnComponent
|
|
2266
|
+
});
|
|
2267
|
+
|
|
2268
|
+
class AXPPasswordBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
2269
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2270
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2271
|
+
}
|
|
2272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetPrintComponent, decorators: [{
|
|
2273
|
+
type: Component,
|
|
2274
|
+
args: [{
|
|
2275
|
+
template: ``,
|
|
2276
|
+
standalone: true,
|
|
2277
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2278
|
+
imports: [CommonModule],
|
|
2279
|
+
inputs: []
|
|
2280
|
+
}]
|
|
2281
|
+
}] });
|
|
2282
|
+
|
|
2283
|
+
var passwordBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2284
|
+
__proto__: null,
|
|
2285
|
+
AXPPasswordBoxWidgetPrintComponent: AXPPasswordBoxWidgetPrintComponent
|
|
2286
|
+
});
|
|
2287
|
+
|
|
2288
|
+
class AXPPasswordBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
2289
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2290
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPasswordBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2291
|
+
}
|
|
2292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordBoxWidgetDesignerComponent, decorators: [{
|
|
2293
|
+
type: Component,
|
|
2294
|
+
args: [{
|
|
2295
|
+
template: ``,
|
|
2296
|
+
standalone: true,
|
|
2297
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2298
|
+
imports: [CommonModule],
|
|
2299
|
+
inputs: []
|
|
2300
|
+
}]
|
|
2301
|
+
}] });
|
|
2302
|
+
|
|
2303
|
+
var passwordBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
2304
|
+
__proto__: null,
|
|
2305
|
+
AXPPasswordBoxWidgetDesignerComponent: AXPPasswordBoxWidgetDesignerComponent
|
|
2306
|
+
});
|
|
2307
|
+
|
|
2308
|
+
const AXPPasswordBoxWidget = {
|
|
2309
|
+
name: "password-box",
|
|
2310
|
+
components: {
|
|
2311
|
+
view: {
|
|
2312
|
+
component: () => Promise.resolve().then(function () { return passwordBoxWidgetView_component; }).then((c) => c.AXPPasswordBoxWidgetViewComponent),
|
|
2313
|
+
},
|
|
2314
|
+
edit: {
|
|
2315
|
+
component: () => Promise.resolve().then(function () { return passwordBoxWidgetEdit_component; }).then((c) => c.AXPPasswordBoxWidgetEditComponent),
|
|
2316
|
+
},
|
|
2317
|
+
filter: {
|
|
2318
|
+
component: () => Promise.resolve().then(function () { return passwordBoxWidgetFilter_component; }).then((c) => c.AXPPasswordBoxWidgetFilterComponent),
|
|
2319
|
+
},
|
|
2320
|
+
column: {
|
|
2321
|
+
component: () => Promise.resolve().then(function () { return passwordBoxWidgetColumn_component; }).then((c) => c.AXPPasswordBoxWidgetColumnComponent),
|
|
2322
|
+
},
|
|
2323
|
+
print: {
|
|
2324
|
+
component: () => Promise.resolve().then(function () { return passwordBoxWidgetPrint_component; }).then((c) => c.AXPPasswordBoxWidgetPrintComponent),
|
|
2325
|
+
},
|
|
2326
|
+
designer: {
|
|
2327
|
+
component: () => Promise.resolve().then(function () { return passwordBoxWidgetDesigner_component; }).then((c) => c.AXPPasswordBoxWidgetDesignerComponent),
|
|
2328
|
+
},
|
|
2329
|
+
}
|
|
2330
|
+
};
|
|
2331
|
+
|
|
2332
|
+
class AXPPhoneBoxWidgetViewComponent extends AXPWidgetBase {
|
|
2333
|
+
constructor() {
|
|
2334
|
+
super(...arguments);
|
|
2335
|
+
this.clipboard = inject(AXPClipBoardService);
|
|
2336
|
+
this.internalValue = computed(() => this.getValue()
|
|
2337
|
+
? Array.isArray(this.getValue())
|
|
2338
|
+
? this.getValue().map((item) => this.extractItem(item))
|
|
2339
|
+
: [this.extractItem(this.getValue())]
|
|
2340
|
+
: []);
|
|
2341
|
+
}
|
|
2342
|
+
extractItem(item) {
|
|
2343
|
+
return typeof item == 'object'
|
|
2344
|
+
? {
|
|
2345
|
+
value: item.value ?? '-',
|
|
2346
|
+
type: item.type ?? 'mobile',
|
|
2347
|
+
label: item.label,
|
|
2348
|
+
}
|
|
2349
|
+
: {
|
|
2350
|
+
value: item,
|
|
2351
|
+
type: 'mobile',
|
|
2352
|
+
label: null,
|
|
2353
|
+
};
|
|
2354
|
+
}
|
|
2355
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2356
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2357
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
|
|
2358
|
+
<ng-container *ngIf="multiple">
|
|
2359
|
+
@for(item of internalValue();track item?.value) {
|
|
2360
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
|
|
2361
|
+
}
|
|
2362
|
+
</ng-container>
|
|
2363
|
+
|
|
2364
|
+
<ng-container *ngIf="!multiple">
|
|
2365
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
|
|
2366
|
+
</ng-container>
|
|
2367
|
+
|
|
2368
|
+
<ng-template #itemTemplate let-item="data">
|
|
2369
|
+
<ng-container *ngIf="item">
|
|
2370
|
+
<div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
|
|
2371
|
+
<div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
|
|
2372
|
+
<div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
|
|
2373
|
+
<i class="fa-solid ax-text-neutral-400 fa-phone"></i>
|
|
2374
|
+
</div>
|
|
2375
|
+
<a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
|
|
2376
|
+
<span
|
|
2377
|
+
class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
|
|
2378
|
+
(click)="clipboard.copy('Phone Number', item.value)"
|
|
2379
|
+
>
|
|
2380
|
+
<i class="fa-solid fa-copy "></i>
|
|
2381
|
+
</span>
|
|
2382
|
+
@if(hasLabel){
|
|
2383
|
+
<ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
|
|
2384
|
+
}
|
|
2385
|
+
</div>
|
|
2386
|
+
</div>
|
|
2387
|
+
</ng-container>
|
|
2388
|
+
</ng-template>
|
|
2389
|
+
</div>
|
|
2390
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2$2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2391
|
+
}
|
|
2392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, decorators: [{
|
|
2393
|
+
type: Component,
|
|
2394
|
+
args: [{
|
|
2395
|
+
template: `
|
|
2396
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
|
|
2397
|
+
<ng-container *ngIf="multiple">
|
|
2398
|
+
@for(item of internalValue();track item?.value) {
|
|
2399
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
|
|
2400
|
+
}
|
|
2401
|
+
</ng-container>
|
|
2402
|
+
|
|
2403
|
+
<ng-container *ngIf="!multiple">
|
|
2404
|
+
<ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: internalValue()[0] }" ]></ng-template>
|
|
2405
|
+
</ng-container>
|
|
2406
|
+
|
|
2407
|
+
<ng-template #itemTemplate let-item="data">
|
|
2408
|
+
<ng-container *ngIf="item">
|
|
2409
|
+
<div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
|
|
2410
|
+
<div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
|
|
2411
|
+
<div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
|
|
2412
|
+
<i class="fa-solid ax-text-neutral-400 fa-phone"></i>
|
|
2413
|
+
</div>
|
|
2414
|
+
<a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
|
|
2415
|
+
<span
|
|
2416
|
+
class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
|
|
2417
|
+
(click)="clipboard.copy('Phone Number', item.value)"
|
|
2418
|
+
>
|
|
2419
|
+
<i class="fa-solid fa-copy "></i>
|
|
2420
|
+
</span>
|
|
2421
|
+
@if(hasLabel){
|
|
2422
|
+
<ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
|
|
2423
|
+
}
|
|
2424
|
+
</div>
|
|
2425
|
+
</div>
|
|
2426
|
+
</ng-container>
|
|
2427
|
+
</ng-template>
|
|
2428
|
+
</div>
|
|
2429
|
+
`,
|
|
2430
|
+
standalone: true,
|
|
2431
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2432
|
+
imports: [CommonModule, AXBadgeModule],
|
|
2433
|
+
inputs: [],
|
|
2434
|
+
}]
|
|
2435
|
+
}] });
|
|
2436
|
+
|
|
2437
|
+
var phoneBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2438
|
+
__proto__: null,
|
|
2439
|
+
AXPPhoneBoxWidgetViewComponent: AXPPhoneBoxWidgetViewComponent
|
|
2440
|
+
});
|
|
2441
|
+
|
|
2442
|
+
class AXPPhoneBoxWidgetEditComponent extends AXPWidgetBase {
|
|
2443
|
+
constructor() {
|
|
2444
|
+
super(...arguments);
|
|
2445
|
+
this.validationService = inject(AXValidationService);
|
|
2446
|
+
this.disabled = false;
|
|
2447
|
+
this.clearButton = true;
|
|
2448
|
+
this.hasLabel = true;
|
|
2449
|
+
this.phoneLabels = ['Mobile', 'Home', 'Work', 'Other'];
|
|
2450
|
+
this.internalValue = computed(() => this.getValue() ? (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]) : [{}]);
|
|
2451
|
+
}
|
|
2452
|
+
handleValueChange(e, selectedIndex) {
|
|
2453
|
+
if (e.isUserInteraction) {
|
|
2454
|
+
const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, value: e.value } : item));
|
|
2455
|
+
if (this.multiple)
|
|
2456
|
+
this.setValue(newValues);
|
|
2457
|
+
else
|
|
2458
|
+
this.setValue(newValues[0]);
|
|
2459
|
+
}
|
|
2460
|
+
}
|
|
2461
|
+
handleLabelChange(e, selectedIndex) {
|
|
2462
|
+
if (e.isUserInteraction) {
|
|
2463
|
+
const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, label: e.value } : item));
|
|
2464
|
+
if (this.multiple)
|
|
2465
|
+
this.setValue(newValues);
|
|
2466
|
+
else
|
|
2467
|
+
this.setValue(newValues[0]);
|
|
2468
|
+
}
|
|
2469
|
+
}
|
|
2470
|
+
addItem() {
|
|
2471
|
+
const newValues = [...this.internalValue(), ''];
|
|
2472
|
+
this.setValue(newValues);
|
|
2473
|
+
}
|
|
2474
|
+
deleteItem(deletedIndex) {
|
|
2475
|
+
const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
|
|
2476
|
+
this.setValue(newValues);
|
|
2477
|
+
}
|
|
2478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2479
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2480
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
2481
|
+
<ng-container *ngIf="multiple">
|
|
2482
|
+
@for(item of internalValue();track $index) {
|
|
2483
|
+
<ax-text-box
|
|
2484
|
+
[ngModel]="item.value"
|
|
2485
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
2486
|
+
type="text"
|
|
2487
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
2488
|
+
[class.lg:!ax-col-end-12]="!hasLabel"
|
|
2489
|
+
>
|
|
2490
|
+
</ax-text-box>
|
|
2491
|
+
@if(hasLabel){
|
|
2492
|
+
<ax-select-box
|
|
2493
|
+
[dataSource]="phoneLabels"
|
|
2494
|
+
[ngModel]="item.label"
|
|
2495
|
+
(onValueChanged)="handleLabelChange($event, $index)"
|
|
2496
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
|
|
2497
|
+
>
|
|
2498
|
+
</ax-select-box>
|
|
2499
|
+
}
|
|
2500
|
+
<ax-button
|
|
2501
|
+
look="twotone"
|
|
2502
|
+
color="danger"
|
|
2503
|
+
(onClick)="deleteItem($index)"
|
|
2504
|
+
class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
|
|
2505
|
+
>
|
|
2506
|
+
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
2507
|
+
</ax-button>
|
|
2508
|
+
}
|
|
2509
|
+
</ng-container>
|
|
2510
|
+
<ng-container *ngIf="!multiple">
|
|
2511
|
+
<ax-text-box
|
|
2512
|
+
[ngModel]="internalValue()[0].value"
|
|
2513
|
+
(onValueChanged)="handleValueChange($event, 0)"
|
|
2514
|
+
type="text"
|
|
2515
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
2516
|
+
[class.lg:!ax-col-end-13]="!hasLabel"
|
|
2517
|
+
>
|
|
2518
|
+
</ax-text-box>
|
|
2519
|
+
@if(hasLabel){
|
|
2520
|
+
<ax-select-box
|
|
2521
|
+
[dataSource]="phoneLabels"
|
|
2522
|
+
[ngModel]="internalValue()[0].label"
|
|
2523
|
+
(onValueChanged)="handleLabelChange($event, 0)"
|
|
2524
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
|
|
2525
|
+
>
|
|
2526
|
+
</ax-select-box>
|
|
2527
|
+
}
|
|
2528
|
+
</ng-container>
|
|
2529
|
+
<ax-button
|
|
2530
|
+
*ngIf="multiple"
|
|
2531
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
2532
|
+
look="twotone"
|
|
2533
|
+
(onClick)="addItem()"
|
|
2534
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
2535
|
+
>
|
|
2536
|
+
<ax-prefix>
|
|
2537
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
2538
|
+
</ax-prefix>
|
|
2539
|
+
</ax-button>
|
|
2540
|
+
</div>
|
|
2541
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i5.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i6.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2542
|
+
}
|
|
2543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, decorators: [{
|
|
2544
|
+
type: Component,
|
|
2545
|
+
args: [{
|
|
2546
|
+
template: `
|
|
2547
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
2548
|
+
<ng-container *ngIf="multiple">
|
|
2549
|
+
@for(item of internalValue();track $index) {
|
|
2550
|
+
<ax-text-box
|
|
2551
|
+
[ngModel]="item.value"
|
|
2552
|
+
(onValueChanged)="handleValueChange($event, $index)"
|
|
2553
|
+
type="text"
|
|
2554
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
2555
|
+
[class.lg:!ax-col-end-12]="!hasLabel"
|
|
2556
|
+
>
|
|
2557
|
+
</ax-text-box>
|
|
2558
|
+
@if(hasLabel){
|
|
2559
|
+
<ax-select-box
|
|
2560
|
+
[dataSource]="phoneLabels"
|
|
2561
|
+
[ngModel]="item.label"
|
|
2562
|
+
(onValueChanged)="handleLabelChange($event, $index)"
|
|
2563
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
|
|
2564
|
+
>
|
|
2565
|
+
</ax-select-box>
|
|
2566
|
+
}
|
|
2567
|
+
<ax-button
|
|
2568
|
+
look="twotone"
|
|
2569
|
+
color="danger"
|
|
2570
|
+
(onClick)="deleteItem($index)"
|
|
2571
|
+
class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
|
|
2572
|
+
>
|
|
2573
|
+
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
2574
|
+
</ax-button>
|
|
2575
|
+
}
|
|
2576
|
+
</ng-container>
|
|
2577
|
+
<ng-container *ngIf="!multiple">
|
|
2578
|
+
<ax-text-box
|
|
2579
|
+
[ngModel]="internalValue()[0].value"
|
|
2580
|
+
(onValueChanged)="handleValueChange($event, 0)"
|
|
2581
|
+
type="text"
|
|
2582
|
+
class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
|
|
2583
|
+
[class.lg:!ax-col-end-13]="!hasLabel"
|
|
2584
|
+
>
|
|
2585
|
+
</ax-text-box>
|
|
2586
|
+
@if(hasLabel){
|
|
2587
|
+
<ax-select-box
|
|
2588
|
+
[dataSource]="phoneLabels"
|
|
2589
|
+
[ngModel]="internalValue()[0].label"
|
|
2590
|
+
(onValueChanged)="handleLabelChange($event, 0)"
|
|
2591
|
+
class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
|
|
2592
|
+
>
|
|
2593
|
+
</ax-select-box>
|
|
2594
|
+
}
|
|
2595
|
+
</ng-container>
|
|
2596
|
+
<ax-button
|
|
2597
|
+
*ngIf="multiple"
|
|
2598
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
2599
|
+
look="twotone"
|
|
2600
|
+
(onClick)="addItem()"
|
|
2601
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
2602
|
+
>
|
|
2603
|
+
<ax-prefix>
|
|
2604
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
2605
|
+
</ax-prefix>
|
|
2606
|
+
</ax-button>
|
|
2607
|
+
</div>
|
|
2608
|
+
`,
|
|
2609
|
+
standalone: true,
|
|
2610
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2611
|
+
imports: [CommonModule, FormsModule, AXButtonModule, AXDecoratorModule, AXSelectBoxModule, AXTextBoxModule],
|
|
2612
|
+
inputs: [],
|
|
2613
|
+
}]
|
|
2614
|
+
}] });
|
|
2615
|
+
|
|
2616
|
+
var phoneBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2617
|
+
__proto__: null,
|
|
2618
|
+
AXPPhoneBoxWidgetEditComponent: AXPPhoneBoxWidgetEditComponent
|
|
2619
|
+
});
|
|
2620
|
+
|
|
2621
|
+
class AXPPhoneBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
2622
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2623
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetFilterComponent, 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 }); }
|
|
2624
|
+
}
|
|
2625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetFilterComponent, decorators: [{
|
|
2626
|
+
type: Component,
|
|
2627
|
+
args: [{
|
|
2628
|
+
template: ``,
|
|
2629
|
+
standalone: true,
|
|
2630
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2631
|
+
imports: [CommonModule, FormsModule],
|
|
2632
|
+
inputs: []
|
|
2633
|
+
}]
|
|
2634
|
+
}] });
|
|
2635
|
+
|
|
2636
|
+
var phoneBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
2637
|
+
__proto__: null,
|
|
2638
|
+
AXPPhoneBoxWidgetFilterComponent: AXPPhoneBoxWidgetFilterComponent
|
|
2639
|
+
});
|
|
2640
|
+
|
|
2641
|
+
class AXPPhoneBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
2642
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2643
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2644
|
+
}
|
|
2645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetColumnComponent, decorators: [{
|
|
2646
|
+
type: Component,
|
|
2647
|
+
args: [{
|
|
2648
|
+
template: ``,
|
|
2649
|
+
standalone: true,
|
|
2650
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2651
|
+
imports: [CommonModule],
|
|
2652
|
+
inputs: []
|
|
2653
|
+
}]
|
|
2654
|
+
}] });
|
|
2655
|
+
|
|
2656
|
+
var phoneBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
2657
|
+
__proto__: null,
|
|
2658
|
+
AXPPhoneBoxWidgetColumnComponent: AXPPhoneBoxWidgetColumnComponent
|
|
2659
|
+
});
|
|
2660
|
+
|
|
2661
|
+
class AXPPhoneBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
2662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2663
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2664
|
+
}
|
|
2665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetPrintComponent, decorators: [{
|
|
2666
|
+
type: Component,
|
|
2667
|
+
args: [{
|
|
2668
|
+
template: ``,
|
|
2669
|
+
standalone: true,
|
|
2670
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2671
|
+
imports: [CommonModule],
|
|
2672
|
+
inputs: []
|
|
2673
|
+
}]
|
|
2674
|
+
}] });
|
|
2675
|
+
|
|
2676
|
+
var phoneBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2677
|
+
__proto__: null,
|
|
2678
|
+
AXPPhoneBoxWidgetPrintComponent: AXPPhoneBoxWidgetPrintComponent
|
|
2679
|
+
});
|
|
2680
|
+
|
|
2681
|
+
class AXPPhoneBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
2682
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2683
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPPhoneBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2684
|
+
}
|
|
2685
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneBoxWidgetDesignerComponent, decorators: [{
|
|
2686
|
+
type: Component,
|
|
2687
|
+
args: [{
|
|
2688
|
+
template: ``,
|
|
2689
|
+
standalone: true,
|
|
2690
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2691
|
+
imports: [CommonModule],
|
|
2692
|
+
inputs: []
|
|
2693
|
+
}]
|
|
2694
|
+
}] });
|
|
2695
|
+
|
|
2696
|
+
var phoneBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
2697
|
+
__proto__: null,
|
|
2698
|
+
AXPPhoneBoxWidgetDesignerComponent: AXPPhoneBoxWidgetDesignerComponent
|
|
2699
|
+
});
|
|
2700
|
+
|
|
2701
|
+
const AXPPhoneBoxWidget = {
|
|
2702
|
+
name: "phone-box",
|
|
2703
|
+
components: {
|
|
2704
|
+
view: {
|
|
2705
|
+
component: () => Promise.resolve().then(function () { return phoneBoxWidgetView_component; }).then((c) => c.AXPPhoneBoxWidgetViewComponent),
|
|
2706
|
+
},
|
|
2707
|
+
edit: {
|
|
2708
|
+
component: () => Promise.resolve().then(function () { return phoneBoxWidgetEdit_component; }).then((c) => c.AXPPhoneBoxWidgetEditComponent),
|
|
2709
|
+
},
|
|
2710
|
+
filter: {
|
|
2711
|
+
component: () => Promise.resolve().then(function () { return phoneBoxWidgetFilter_component; }).then((c) => c.AXPPhoneBoxWidgetFilterComponent),
|
|
2712
|
+
},
|
|
2713
|
+
column: {
|
|
2714
|
+
component: () => Promise.resolve().then(function () { return phoneBoxWidgetColumn_component; }).then((c) => c.AXPPhoneBoxWidgetColumnComponent),
|
|
2715
|
+
},
|
|
2716
|
+
print: {
|
|
2717
|
+
component: () => Promise.resolve().then(function () { return phoneBoxWidgetPrint_component; }).then((c) => c.AXPPhoneBoxWidgetPrintComponent),
|
|
2718
|
+
},
|
|
2719
|
+
designer: {
|
|
2720
|
+
component: () => Promise.resolve().then(function () { return phoneBoxWidgetDesigner_component; }).then((c) => c.AXPPhoneBoxWidgetDesignerComponent),
|
|
2721
|
+
},
|
|
2722
|
+
}
|
|
2723
|
+
};
|
|
2724
|
+
|
|
2725
|
+
class AXPRichTextWidgetViewComponent extends AXPWidgetBase {
|
|
2726
|
+
constructor() {
|
|
2727
|
+
super(...arguments);
|
|
2728
|
+
this.sanitizer = inject(DomSanitizer);
|
|
2729
|
+
this.innerValue = computed(() => this.getValue());
|
|
2730
|
+
}
|
|
2731
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2732
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2733
|
+
<div class="ax-border ax-p-3 ax-rounded-lg">
|
|
2734
|
+
<div [innerHTML]="innerValue()"></div>
|
|
2735
|
+
</div>
|
|
2736
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2737
|
+
}
|
|
2738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetViewComponent, decorators: [{
|
|
2739
|
+
type: Component,
|
|
2740
|
+
args: [{
|
|
2741
|
+
template: `
|
|
2742
|
+
<div class="ax-border ax-p-3 ax-rounded-lg">
|
|
2743
|
+
<div [innerHTML]="innerValue()"></div>
|
|
2744
|
+
</div>
|
|
2745
|
+
`,
|
|
2746
|
+
standalone: true,
|
|
2747
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2748
|
+
imports: [CommonModule],
|
|
2749
|
+
inputs: [],
|
|
2750
|
+
}]
|
|
2751
|
+
}] });
|
|
2752
|
+
|
|
2753
|
+
var richTextWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2754
|
+
__proto__: null,
|
|
2755
|
+
AXPRichTextWidgetViewComponent: AXPRichTextWidgetViewComponent
|
|
2756
|
+
});
|
|
2757
|
+
|
|
2758
|
+
class AXPRichTextWidgetEditComponent extends AXPWidgetBase {
|
|
2759
|
+
constructor() {
|
|
2760
|
+
super(...arguments);
|
|
2761
|
+
this.placeholder = 'Write a text ...';
|
|
2762
|
+
this.toolbarOptions = [
|
|
2763
|
+
['bold', 'italic', 'underline', 'strike'],
|
|
2764
|
+
['blockquote', 'code-block'],
|
|
2765
|
+
[{ list: 'ordered' }, { list: 'bullet' }],
|
|
2766
|
+
[{ script: 'sub' }, { script: 'super' }],
|
|
2767
|
+
[{ direction: 'rtl' }],
|
|
2768
|
+
[{ size: ['small', false, 'large', 'huge'] }],
|
|
2769
|
+
[{ header: [1, 2, 3, 4, 5, 6, false] }],
|
|
2770
|
+
[{ color: [] }, { background: [] }],
|
|
2771
|
+
[{ font: [] }],
|
|
2772
|
+
[{ align: [] }],
|
|
2773
|
+
['clean'],
|
|
2774
|
+
];
|
|
2775
|
+
}
|
|
2776
|
+
async ngAfterViewInit() {
|
|
2777
|
+
await this.initEditor();
|
|
2778
|
+
if (this.getValue()) {
|
|
2779
|
+
this.editor.disable();
|
|
2780
|
+
this.editor.clipboard.dangerouslyPasteHTML(this.getValue(), 'api');
|
|
2781
|
+
this.editor.enable();
|
|
2782
|
+
}
|
|
2783
|
+
this.editor.on('text-change', () => {
|
|
2784
|
+
this.setValue(this.editor.root.innerHTML);
|
|
2785
|
+
});
|
|
2786
|
+
}
|
|
2787
|
+
async initEditor() {
|
|
2788
|
+
const q = await import('quill');
|
|
2789
|
+
this.editor = new q.default(this.editorEl.nativeElement, {
|
|
2790
|
+
theme: 'snow',
|
|
2791
|
+
modules: {
|
|
2792
|
+
toolbar: this.toolbarOptions,
|
|
2793
|
+
},
|
|
2794
|
+
scrollingContainer: 'ql-editor',
|
|
2795
|
+
placeholder: this.placeholder,
|
|
2796
|
+
});
|
|
2797
|
+
}
|
|
2798
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2799
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "editorEl", first: true, predicate: ["editor"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
2800
|
+
<div class="ax-h-max">
|
|
2801
|
+
<div #editor></div>
|
|
2802
|
+
</div>
|
|
2803
|
+
`, isInline: true, styles: [".ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor ul,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:\"\\2022\"}.ql-editor ul[data-checked=true],.ql-editor ul[data-checked=false]{pointer-events:none}.ql-editor ul[data-checked=true]>li *,.ql-editor ul[data-checked=false]>li *{pointer-events:all}.ql-editor ul[data-checked=true]>li:before,.ql-editor ul[data-checked=false]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:\"\\2611\"}.ql-editor ul[data-checked=false]>li:before{content:\"\\2610\"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) \". \"}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) \". \"}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) \". \"}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) \". \"}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) \". \"}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) \". \"}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) \". \"}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) \". \"}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) \". \"}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) \". \"}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:\"\";display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected{color:#06c}.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter{stroke:#06c}@media (pointer: coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:\"\";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-thin,.ql-snow .ql-stroke.ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=\"\"]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-label:before,.ql-snow .ql-picker.ql-header .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"1\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{content:\"Heading 1\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"2\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{content:\"Heading 2\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"3\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{content:\"Heading 3\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"4\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{content:\"Heading 4\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"5\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{content:\"Heading 5\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"6\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{content:\"Heading 6\"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-label:before,.ql-snow .ql-picker.ql-font .ql-picker-item:before{content:\"Sans Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{content:\"Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{content:\"Monospace\"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-label:before,.ql-snow .ql-picker.ql-size .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{content:\"Small\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{content:\"Large\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{content:\"Huge\"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:rgba(0,0,0,.2) 0 2px 8px}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0px}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:\"Visit URL:\";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:\"Edit\";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:\"Remove\";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0px;content:\"Save\";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:\"Enter link:\"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:\"Enter formula:\"}.ql-snow .ql-tooltip[data-mode=video]:before{content:\"Enter video:\"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}.ql-editor{min-height:100px!important}\n/*! Bundled license information:\n\nquill/dist/quill.snow.css:\n (*!\n * Quill Editor v1.3.7\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n *)\n*/\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
2804
|
+
}
|
|
2805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetEditComponent, decorators: [{
|
|
2806
|
+
type: Component,
|
|
2807
|
+
args: [{ template: `
|
|
2808
|
+
<div class="ax-h-max">
|
|
2809
|
+
<div #editor></div>
|
|
2810
|
+
</div>
|
|
2811
|
+
`, standalone: true, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule], inputs: [], styles: [".ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor ul,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:\"\\2022\"}.ql-editor ul[data-checked=true],.ql-editor ul[data-checked=false]{pointer-events:none}.ql-editor ul[data-checked=true]>li *,.ql-editor ul[data-checked=false]>li *{pointer-events:all}.ql-editor ul[data-checked=true]>li:before,.ql-editor ul[data-checked=false]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:\"\\2611\"}.ql-editor ul[data-checked=false]>li:before{content:\"\\2610\"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) \". \"}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) \". \"}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) \". \"}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) \". \"}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) \". \"}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) \". \"}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) \". \"}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) \". \"}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) \". \"}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) \". \"}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:\"\";display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected{color:#06c}.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter{stroke:#06c}@media (pointer: coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:\"\";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-thin,.ql-snow .ql-stroke.ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=\"\"]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=\"\"]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-label:before,.ql-snow .ql-picker.ql-header .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"1\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{content:\"Heading 1\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"2\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{content:\"Heading 2\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"3\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{content:\"Heading 3\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"4\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{content:\"Heading 4\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"5\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{content:\"Heading 5\"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"6\"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{content:\"Heading 6\"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-label:before,.ql-snow .ql-picker.ql-font .ql-picker-item:before{content:\"Sans Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{content:\"Serif\"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{content:\"Monospace\"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-label:before,.ql-snow .ql-picker.ql-size .ql-picker-item:before{content:\"Normal\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{content:\"Small\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{content:\"Large\"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{content:\"Huge\"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:rgba(0,0,0,.2) 0 2px 8px}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0px}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:\"Visit URL:\";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:\"Edit\";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:\"Remove\";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0px;content:\"Save\";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:\"Enter link:\"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:\"Enter formula:\"}.ql-snow .ql-tooltip[data-mode=video]:before{content:\"Enter video:\"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}.ql-editor{min-height:100px!important}\n/*! Bundled license information:\n\nquill/dist/quill.snow.css:\n (*!\n * Quill Editor v1.3.7\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n *)\n*/\n"] }]
|
|
2812
|
+
}], propDecorators: { editorEl: [{
|
|
2813
|
+
type: ViewChild,
|
|
2814
|
+
args: ['editor']
|
|
2815
|
+
}] } });
|
|
2816
|
+
|
|
2817
|
+
var richTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2818
|
+
__proto__: null,
|
|
2819
|
+
AXPRichTextWidgetEditComponent: AXPRichTextWidgetEditComponent
|
|
2820
|
+
});
|
|
2821
|
+
|
|
2822
|
+
class AXPRichTextWidgetFilterComponent extends AXPWidgetBase {
|
|
2823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2824
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetFilterComponent, 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 }); }
|
|
2825
|
+
}
|
|
2826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetFilterComponent, decorators: [{
|
|
2827
|
+
type: Component,
|
|
2828
|
+
args: [{
|
|
2829
|
+
template: ``,
|
|
2830
|
+
standalone: true,
|
|
2831
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2832
|
+
imports: [CommonModule, FormsModule],
|
|
2833
|
+
inputs: []
|
|
2834
|
+
}]
|
|
2835
|
+
}] });
|
|
2836
|
+
|
|
2837
|
+
var richTextWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
2838
|
+
__proto__: null,
|
|
2839
|
+
AXPRichTextWidgetFilterComponent: AXPRichTextWidgetFilterComponent
|
|
2840
|
+
});
|
|
2841
|
+
|
|
2842
|
+
class AXPRichTextWidgetColumnComponent extends AXPWidgetBase {
|
|
2843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2844
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2845
|
+
}
|
|
2846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetColumnComponent, decorators: [{
|
|
2847
|
+
type: Component,
|
|
2848
|
+
args: [{
|
|
2849
|
+
template: ``,
|
|
2850
|
+
standalone: true,
|
|
2851
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2852
|
+
imports: [CommonModule],
|
|
2853
|
+
inputs: []
|
|
2854
|
+
}]
|
|
2855
|
+
}] });
|
|
2856
|
+
|
|
2857
|
+
var richTextWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
2858
|
+
__proto__: null,
|
|
2859
|
+
AXPRichTextWidgetColumnComponent: AXPRichTextWidgetColumnComponent
|
|
2860
|
+
});
|
|
2861
|
+
|
|
2862
|
+
class AXPRichTextWidgetPrintComponent extends AXPWidgetBase {
|
|
2863
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2864
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2865
|
+
}
|
|
2866
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetPrintComponent, decorators: [{
|
|
2867
|
+
type: Component,
|
|
2868
|
+
args: [{
|
|
2869
|
+
template: ``,
|
|
2870
|
+
standalone: true,
|
|
2871
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2872
|
+
imports: [CommonModule],
|
|
2873
|
+
inputs: []
|
|
2874
|
+
}]
|
|
2875
|
+
}] });
|
|
2876
|
+
|
|
2877
|
+
var richTextWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2878
|
+
__proto__: null,
|
|
2879
|
+
AXPRichTextWidgetPrintComponent: AXPRichTextWidgetPrintComponent
|
|
2880
|
+
});
|
|
2881
|
+
|
|
2882
|
+
class AXPRichTextWidgetDesignerComponent extends AXPWidgetBase {
|
|
2883
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2884
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRichTextWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2885
|
+
}
|
|
2886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRichTextWidgetDesignerComponent, decorators: [{
|
|
2887
|
+
type: Component,
|
|
2888
|
+
args: [{
|
|
2889
|
+
template: ``,
|
|
2890
|
+
standalone: true,
|
|
2891
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2892
|
+
imports: [CommonModule],
|
|
2893
|
+
inputs: []
|
|
2894
|
+
}]
|
|
2895
|
+
}] });
|
|
2896
|
+
|
|
2897
|
+
var richTextWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
2898
|
+
__proto__: null,
|
|
2899
|
+
AXPRichTextWidgetDesignerComponent: AXPRichTextWidgetDesignerComponent
|
|
2900
|
+
});
|
|
2901
|
+
|
|
2902
|
+
const AXPRichTextWidget = {
|
|
2903
|
+
name: "rich-text",
|
|
2904
|
+
components: {
|
|
2905
|
+
view: {
|
|
2906
|
+
component: () => Promise.resolve().then(function () { return richTextWidgetView_component; }).then((c) => c.AXPRichTextWidgetViewComponent),
|
|
2907
|
+
},
|
|
2908
|
+
edit: {
|
|
2909
|
+
component: () => Promise.resolve().then(function () { return richTextWidgetEdit_component; }).then((c) => c.AXPRichTextWidgetEditComponent),
|
|
2910
|
+
},
|
|
2911
|
+
filter: {
|
|
2912
|
+
component: () => Promise.resolve().then(function () { return richTextWidgetFilter_component; }).then((c) => c.AXPRichTextWidgetFilterComponent),
|
|
2913
|
+
},
|
|
2914
|
+
column: {
|
|
2915
|
+
component: () => Promise.resolve().then(function () { return richTextWidgetColumn_component; }).then((c) => c.AXPRichTextWidgetColumnComponent),
|
|
2916
|
+
},
|
|
2917
|
+
print: {
|
|
2918
|
+
component: () => Promise.resolve().then(function () { return richTextWidgetPrint_component; }).then((c) => c.AXPRichTextWidgetPrintComponent),
|
|
2919
|
+
},
|
|
2920
|
+
designer: {
|
|
2921
|
+
component: () => Promise.resolve().then(function () { return richTextWidgetDesigner_component; }).then((c) => c.AXPRichTextWidgetDesignerComponent),
|
|
2922
|
+
},
|
|
2923
|
+
}
|
|
2924
|
+
};
|
|
2925
|
+
|
|
2926
|
+
class AXPSelectBoxWidgetViewComponent extends AXPWidgetBase {
|
|
2927
|
+
constructor() {
|
|
2928
|
+
super(...arguments);
|
|
2929
|
+
this.internalValue = computed(() => Array.isArray(this.getValue()) ? this.getValue().map((item) => this.extractItem(item)) : [this.extractItem(this.getValue())]);
|
|
2930
|
+
this.multiple = false;
|
|
2931
|
+
this.text = null;
|
|
2932
|
+
this.textField = 'title';
|
|
2933
|
+
this.valueField = 'id';
|
|
2934
|
+
}
|
|
2935
|
+
extractItem(item) {
|
|
2936
|
+
return typeof item == 'object'
|
|
2937
|
+
? {
|
|
2938
|
+
id: item[this.valueField],
|
|
2939
|
+
text: item[this.textField],
|
|
2940
|
+
}
|
|
2941
|
+
: {
|
|
2942
|
+
id: item,
|
|
2943
|
+
text: item,
|
|
2944
|
+
};
|
|
2945
|
+
}
|
|
2946
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2947
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2948
|
+
<div>
|
|
2949
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
2950
|
+
<p>{{ item.text }}</p>
|
|
2951
|
+
} }@else {
|
|
2952
|
+
<p>{{ internalValue()[0].text }}</p>
|
|
2953
|
+
}
|
|
2954
|
+
</div>
|
|
2955
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2956
|
+
}
|
|
2957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, decorators: [{
|
|
2958
|
+
type: Component,
|
|
2959
|
+
args: [{
|
|
2960
|
+
template: `
|
|
2961
|
+
<div>
|
|
2962
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
2963
|
+
<p>{{ item.text }}</p>
|
|
2964
|
+
} }@else {
|
|
2965
|
+
<p>{{ internalValue()[0].text }}</p>
|
|
2966
|
+
}
|
|
2967
|
+
</div>
|
|
2968
|
+
`,
|
|
2969
|
+
standalone: true,
|
|
2970
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2971
|
+
imports: [CommonModule],
|
|
2972
|
+
inputs: [],
|
|
2973
|
+
}]
|
|
2974
|
+
}] });
|
|
2975
|
+
|
|
2976
|
+
var selectBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2977
|
+
__proto__: null,
|
|
2978
|
+
AXPSelectBoxWidgetViewComponent: AXPSelectBoxWidgetViewComponent
|
|
2979
|
+
});
|
|
2980
|
+
|
|
2981
|
+
class AXPSelectBoxWidgetEditComponent extends AXPWidgetBase {
|
|
2982
|
+
constructor() {
|
|
2983
|
+
super(...arguments);
|
|
2984
|
+
this.dataSource = [];
|
|
2985
|
+
this.disabled = false;
|
|
2986
|
+
this.valueField = 'id';
|
|
2987
|
+
this.textField = 'title';
|
|
2988
|
+
}
|
|
2989
|
+
handleValueChange(e) {
|
|
2990
|
+
if (e.isUserInteraction) {
|
|
2991
|
+
this.setValue(e.component.selectedItems[0]);
|
|
2992
|
+
}
|
|
2993
|
+
}
|
|
2994
|
+
refresh() {
|
|
2995
|
+
this.selectbox?.refresh();
|
|
2996
|
+
}
|
|
2997
|
+
clear() {
|
|
2998
|
+
this.selectbox?.reset(true);
|
|
2999
|
+
this.selectbox?.refresh();
|
|
3000
|
+
}
|
|
3001
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3002
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", inputs: { dataSource: "dataSource", disabled: "disabled", valueField: "valueField", textField: "textField" }, viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
3003
|
+
<ax-select-box
|
|
3004
|
+
#dd
|
|
3005
|
+
[dataSource]="dataSource"
|
|
3006
|
+
[disabled]="disabled"
|
|
3007
|
+
[valueField]="valueField"
|
|
3008
|
+
[textField]="textField"
|
|
3009
|
+
[ngModel]="getValue()"
|
|
3010
|
+
(onValueChanged)="handleValueChange($event);"
|
|
3011
|
+
>
|
|
3012
|
+
<ax-clear-button></ax-clear-button>
|
|
3013
|
+
</ax-select-box>
|
|
3014
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i5.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "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$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3015
|
+
}
|
|
3016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, decorators: [{
|
|
3017
|
+
type: Component,
|
|
3018
|
+
args: [{
|
|
3019
|
+
selector: "axp-select-box-widget-edit",
|
|
3020
|
+
template: `
|
|
3021
|
+
<ax-select-box
|
|
3022
|
+
#dd
|
|
3023
|
+
[dataSource]="dataSource"
|
|
3024
|
+
[disabled]="disabled"
|
|
3025
|
+
[valueField]="valueField"
|
|
3026
|
+
[textField]="textField"
|
|
3027
|
+
[ngModel]="getValue()"
|
|
3028
|
+
(onValueChanged)="handleValueChange($event);"
|
|
3029
|
+
>
|
|
3030
|
+
<ax-clear-button></ax-clear-button>
|
|
3031
|
+
</ax-select-box>
|
|
3032
|
+
`,
|
|
3033
|
+
standalone: true,
|
|
3034
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3035
|
+
imports: [CommonModule, FormsModule, AXSelectBoxModule, AXDecoratorModule],
|
|
3036
|
+
inputs: []
|
|
3037
|
+
}]
|
|
3038
|
+
}], propDecorators: { selectbox: [{
|
|
3039
|
+
type: ViewChild,
|
|
3040
|
+
args: [AXSelectBoxComponent]
|
|
3041
|
+
}], dataSource: [{
|
|
3042
|
+
type: Input
|
|
3043
|
+
}], disabled: [{
|
|
3044
|
+
type: Input
|
|
3045
|
+
}], valueField: [{
|
|
3046
|
+
type: Input
|
|
3047
|
+
}], textField: [{
|
|
3048
|
+
type: Input
|
|
3049
|
+
}] } });
|
|
3050
|
+
|
|
3051
|
+
var selectBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3052
|
+
__proto__: null,
|
|
3053
|
+
AXPSelectBoxWidgetEditComponent: AXPSelectBoxWidgetEditComponent
|
|
3054
|
+
});
|
|
3055
|
+
|
|
3056
|
+
class AXPSelectBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
3057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3058
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3059
|
+
}
|
|
3060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetFilterComponent, decorators: [{
|
|
3061
|
+
type: Component,
|
|
3062
|
+
args: [{
|
|
3063
|
+
template: ``,
|
|
3064
|
+
standalone: true,
|
|
3065
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3066
|
+
imports: [CommonModule],
|
|
3067
|
+
inputs: []
|
|
3068
|
+
}]
|
|
3069
|
+
}] });
|
|
3070
|
+
|
|
3071
|
+
var selectBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3072
|
+
__proto__: null,
|
|
3073
|
+
AXPSelectBoxWidgetFilterComponent: AXPSelectBoxWidgetFilterComponent
|
|
3074
|
+
});
|
|
3075
|
+
|
|
3076
|
+
class AXPSelectBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
3077
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3078
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3079
|
+
}
|
|
3080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetColumnComponent, decorators: [{
|
|
3081
|
+
type: Component,
|
|
3082
|
+
args: [{
|
|
3083
|
+
template: ``,
|
|
3084
|
+
standalone: true,
|
|
3085
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3086
|
+
imports: [CommonModule],
|
|
3087
|
+
inputs: []
|
|
3088
|
+
}]
|
|
3089
|
+
}] });
|
|
3090
|
+
|
|
3091
|
+
var selectBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3092
|
+
__proto__: null,
|
|
3093
|
+
AXPSelectBoxWidgetColumnComponent: AXPSelectBoxWidgetColumnComponent
|
|
3094
|
+
});
|
|
3095
|
+
|
|
3096
|
+
class AXPSelectBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
3097
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3098
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3099
|
+
}
|
|
3100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetPrintComponent, decorators: [{
|
|
3101
|
+
type: Component,
|
|
3102
|
+
args: [{
|
|
3103
|
+
template: ``,
|
|
3104
|
+
standalone: true,
|
|
3105
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3106
|
+
imports: [CommonModule],
|
|
3107
|
+
inputs: []
|
|
3108
|
+
}]
|
|
3109
|
+
}] });
|
|
3110
|
+
|
|
3111
|
+
var selectBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3112
|
+
__proto__: null,
|
|
3113
|
+
AXPSelectBoxWidgetPrintComponent: AXPSelectBoxWidgetPrintComponent
|
|
3114
|
+
});
|
|
3115
|
+
|
|
3116
|
+
class AXPSelectBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
3117
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3118
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3119
|
+
}
|
|
3120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectBoxWidgetDesignerComponent, decorators: [{
|
|
3121
|
+
type: Component,
|
|
3122
|
+
args: [{
|
|
3123
|
+
template: ``,
|
|
3124
|
+
standalone: true,
|
|
3125
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3126
|
+
imports: [CommonModule],
|
|
3127
|
+
inputs: []
|
|
3128
|
+
}]
|
|
3129
|
+
}] });
|
|
3130
|
+
|
|
3131
|
+
var selectBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
3132
|
+
__proto__: null,
|
|
3133
|
+
AXPSelectBoxWidgetDesignerComponent: AXPSelectBoxWidgetDesignerComponent
|
|
3134
|
+
});
|
|
3135
|
+
|
|
3136
|
+
const AXPSelectBoxWidget = {
|
|
3137
|
+
name: "select-box",
|
|
3138
|
+
components: {
|
|
3139
|
+
view: {
|
|
3140
|
+
component: () => Promise.resolve().then(function () { return selectBoxWidgetView_component; }).then((c) => c.AXPSelectBoxWidgetViewComponent),
|
|
3141
|
+
},
|
|
3142
|
+
edit: {
|
|
3143
|
+
component: () => Promise.resolve().then(function () { return selectBoxWidgetEdit_component; }).then((c) => c.AXPSelectBoxWidgetEditComponent),
|
|
3144
|
+
},
|
|
3145
|
+
filter: {
|
|
3146
|
+
component: () => Promise.resolve().then(function () { return selectBoxWidgetFilter_component; }).then((c) => c.AXPSelectBoxWidgetFilterComponent),
|
|
3147
|
+
},
|
|
3148
|
+
column: {
|
|
3149
|
+
component: () => Promise.resolve().then(function () { return selectBoxWidgetColumn_component; }).then((c) => c.AXPSelectBoxWidgetColumnComponent),
|
|
3150
|
+
},
|
|
3151
|
+
print: {
|
|
3152
|
+
component: () => Promise.resolve().then(function () { return selectBoxWidgetPrint_component; }).then((c) => c.AXPSelectBoxWidgetPrintComponent),
|
|
3153
|
+
},
|
|
3154
|
+
designer: {
|
|
3155
|
+
component: () => Promise.resolve().then(function () { return selectBoxWidgetDesigner_component; }).then((c) => c.AXPSelectBoxWidgetDesignerComponent),
|
|
3156
|
+
},
|
|
3157
|
+
}
|
|
3158
|
+
};
|
|
3159
|
+
|
|
3160
|
+
class AXPSelectionListWidgetViewComponent extends AXPWidgetBase {
|
|
3161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3162
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3163
|
+
}
|
|
3164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetViewComponent, decorators: [{
|
|
3165
|
+
type: Component,
|
|
3166
|
+
args: [{
|
|
3167
|
+
template: ``,
|
|
3168
|
+
standalone: true,
|
|
3169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3170
|
+
imports: [CommonModule],
|
|
3171
|
+
inputs: []
|
|
3172
|
+
}]
|
|
3173
|
+
}] });
|
|
3174
|
+
|
|
3175
|
+
var selectionListWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
3176
|
+
__proto__: null,
|
|
3177
|
+
AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent
|
|
3178
|
+
});
|
|
3179
|
+
|
|
3180
|
+
class AXPSelectionListWidgetEditComponent extends AXPWidgetBase {
|
|
3181
|
+
handleValueChange(e) {
|
|
3182
|
+
if (e.isUserInteraction) {
|
|
3183
|
+
this.setValue(e.value);
|
|
3184
|
+
}
|
|
3185
|
+
}
|
|
3186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3187
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3188
|
+
<ax-selection-list
|
|
3189
|
+
class="ax-w-max"
|
|
3190
|
+
[valueField]="valueField"
|
|
3191
|
+
[textField]="textField"
|
|
3192
|
+
[ngModel]="this.getValue()"
|
|
3193
|
+
(onValueChanged)="handleValueChange($event)"
|
|
3194
|
+
[items]="items"
|
|
3195
|
+
[multiple]="multiple"
|
|
3196
|
+
[direction]="direction"
|
|
3197
|
+
>
|
|
3198
|
+
<!-- @for(vl of validations;track $index) {
|
|
3199
|
+
<ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
|
|
3200
|
+
} -->
|
|
3201
|
+
</ax-selection-list>
|
|
3202
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$5.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3203
|
+
}
|
|
3204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
|
|
3205
|
+
type: Component,
|
|
3206
|
+
args: [{
|
|
3207
|
+
template: `
|
|
3208
|
+
<ax-selection-list
|
|
3209
|
+
class="ax-w-max"
|
|
3210
|
+
[valueField]="valueField"
|
|
3211
|
+
[textField]="textField"
|
|
3212
|
+
[ngModel]="this.getValue()"
|
|
3213
|
+
(onValueChanged)="handleValueChange($event)"
|
|
3214
|
+
[items]="items"
|
|
3215
|
+
[multiple]="multiple"
|
|
3216
|
+
[direction]="direction"
|
|
3217
|
+
>
|
|
3218
|
+
<!-- @for(vl of validations;track $index) {
|
|
3219
|
+
<ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
|
|
3220
|
+
} -->
|
|
3221
|
+
</ax-selection-list>
|
|
3222
|
+
`,
|
|
3223
|
+
standalone: true,
|
|
3224
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3225
|
+
imports: [CommonModule, FormsModule, AXSelectionListModule],
|
|
3226
|
+
inputs: [],
|
|
3227
|
+
}]
|
|
3228
|
+
}] });
|
|
3229
|
+
|
|
3230
|
+
var selectionListWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3231
|
+
__proto__: null,
|
|
3232
|
+
AXPSelectionListWidgetEditComponent: AXPSelectionListWidgetEditComponent
|
|
3233
|
+
});
|
|
3234
|
+
|
|
3235
|
+
class AXPSelectionListWidgetFilterComponent extends AXPWidgetBase {
|
|
3236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3237
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetFilterComponent, 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 }); }
|
|
3238
|
+
}
|
|
3239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetFilterComponent, decorators: [{
|
|
3240
|
+
type: Component,
|
|
3241
|
+
args: [{
|
|
3242
|
+
template: ``,
|
|
3243
|
+
standalone: true,
|
|
3244
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3245
|
+
imports: [CommonModule, FormsModule],
|
|
3246
|
+
inputs: []
|
|
3247
|
+
}]
|
|
3248
|
+
}] });
|
|
3249
|
+
|
|
3250
|
+
var selectionListWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3251
|
+
__proto__: null,
|
|
3252
|
+
AXPSelectionListWidgetFilterComponent: AXPSelectionListWidgetFilterComponent
|
|
3253
|
+
});
|
|
3254
|
+
|
|
3255
|
+
class AXPSelectionListWidgetColumnComponent extends AXPWidgetBase {
|
|
3256
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3257
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3258
|
+
}
|
|
3259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, decorators: [{
|
|
3260
|
+
type: Component,
|
|
3261
|
+
args: [{
|
|
3262
|
+
template: ``,
|
|
3263
|
+
standalone: true,
|
|
3264
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3265
|
+
imports: [CommonModule],
|
|
3266
|
+
inputs: []
|
|
3267
|
+
}]
|
|
3268
|
+
}] });
|
|
3269
|
+
|
|
3270
|
+
var selectionListWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3271
|
+
__proto__: null,
|
|
3272
|
+
AXPSelectionListWidgetColumnComponent: AXPSelectionListWidgetColumnComponent
|
|
3273
|
+
});
|
|
3274
|
+
|
|
3275
|
+
class AXPSelectionListWidgetPrintComponent extends AXPWidgetBase {
|
|
3276
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3277
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3278
|
+
}
|
|
3279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetPrintComponent, decorators: [{
|
|
3280
|
+
type: Component,
|
|
3281
|
+
args: [{
|
|
3282
|
+
template: ``,
|
|
3283
|
+
standalone: true,
|
|
3284
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3285
|
+
imports: [CommonModule],
|
|
3286
|
+
inputs: []
|
|
3287
|
+
}]
|
|
3288
|
+
}] });
|
|
3289
|
+
|
|
3290
|
+
var selectionListWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3291
|
+
__proto__: null,
|
|
3292
|
+
AXPSelectionListWidgetPrintComponent: AXPSelectionListWidgetPrintComponent
|
|
3293
|
+
});
|
|
3294
|
+
|
|
3295
|
+
class AXPSelectionListWidgetDesignerComponent extends AXPWidgetBase {
|
|
3296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3297
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSelectionListWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3298
|
+
}
|
|
3299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSelectionListWidgetDesignerComponent, decorators: [{
|
|
3300
|
+
type: Component,
|
|
3301
|
+
args: [{
|
|
3302
|
+
template: ``,
|
|
3303
|
+
standalone: true,
|
|
3304
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3305
|
+
imports: [CommonModule],
|
|
3306
|
+
inputs: []
|
|
3307
|
+
}]
|
|
3308
|
+
}] });
|
|
3309
|
+
|
|
3310
|
+
var selectionListWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
3311
|
+
__proto__: null,
|
|
3312
|
+
AXPSelectionListWidgetDesignerComponent: AXPSelectionListWidgetDesignerComponent
|
|
3313
|
+
});
|
|
3314
|
+
|
|
3315
|
+
const AXPSelectionListWidget = {
|
|
3316
|
+
name: "selection-list",
|
|
3317
|
+
components: {
|
|
3318
|
+
view: {
|
|
3319
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetView_component; }).then((c) => c.AXPSelectionListWidgetViewComponent),
|
|
3320
|
+
},
|
|
3321
|
+
edit: {
|
|
3322
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetEdit_component; }).then((c) => c.AXPSelectionListWidgetEditComponent),
|
|
3323
|
+
},
|
|
3324
|
+
filter: {
|
|
3325
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetFilter_component; }).then((c) => c.AXPSelectionListWidgetFilterComponent),
|
|
3326
|
+
},
|
|
3327
|
+
column: {
|
|
3328
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetColumn_component; }).then((c) => c.AXPSelectionListWidgetColumnComponent),
|
|
3329
|
+
},
|
|
3330
|
+
print: {
|
|
3331
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetPrint_component; }).then((c) => c.AXPSelectionListWidgetPrintComponent),
|
|
3332
|
+
},
|
|
3333
|
+
designer: {
|
|
3334
|
+
component: () => Promise.resolve().then(function () { return selectionListWidgetDesigner_component; }).then((c) => c.AXPSelectionListWidgetDesignerComponent),
|
|
3335
|
+
},
|
|
3336
|
+
}
|
|
3337
|
+
};
|
|
3338
|
+
|
|
3339
|
+
class AXPSignatureWidgetColumnComponent extends AXPWidgetBase {
|
|
3340
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3341
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSignatureWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3342
|
+
}
|
|
3343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetColumnComponent, decorators: [{
|
|
3344
|
+
type: Component,
|
|
3345
|
+
args: [{
|
|
3346
|
+
template: ``,
|
|
3347
|
+
standalone: true,
|
|
3348
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3349
|
+
imports: [CommonModule],
|
|
3350
|
+
inputs: []
|
|
3351
|
+
}]
|
|
3352
|
+
}] });
|
|
3353
|
+
|
|
3354
|
+
var signaturePadWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3355
|
+
__proto__: null,
|
|
3356
|
+
AXPSignatureWidgetColumnComponent: AXPSignatureWidgetColumnComponent
|
|
3357
|
+
});
|
|
3358
|
+
|
|
3359
|
+
class AXPSignatureWidgetDesignerComponent extends AXPWidgetBase {
|
|
3360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3361
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSignatureWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3362
|
+
}
|
|
3363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetDesignerComponent, decorators: [{
|
|
3364
|
+
type: Component,
|
|
3365
|
+
args: [{
|
|
3366
|
+
template: ``,
|
|
3367
|
+
standalone: true,
|
|
3368
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3369
|
+
imports: [CommonModule],
|
|
3370
|
+
inputs: []
|
|
3371
|
+
}]
|
|
3372
|
+
}] });
|
|
3373
|
+
|
|
3374
|
+
var signaturePadWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
3375
|
+
__proto__: null,
|
|
3376
|
+
AXPSignatureWidgetDesignerComponent: AXPSignatureWidgetDesignerComponent
|
|
3377
|
+
});
|
|
3378
|
+
|
|
3379
|
+
class AXPSignatureWidgetEditComponent extends AXPWidgetBase {
|
|
3380
|
+
constructor() {
|
|
3381
|
+
super(...arguments);
|
|
3382
|
+
this.editMode = signal(false);
|
|
3383
|
+
this.changeModeEffect = effect(() => {
|
|
3384
|
+
if (this.editMode()) {
|
|
3385
|
+
setTimeout(() => {
|
|
3386
|
+
this.initPad();
|
|
3387
|
+
}, 100);
|
|
3388
|
+
}
|
|
3389
|
+
});
|
|
3390
|
+
}
|
|
3391
|
+
async ngOnInit() {
|
|
3392
|
+
super.ngOnInit();
|
|
3393
|
+
this.editMode.set(this.getValue() ? false : true);
|
|
3394
|
+
}
|
|
3395
|
+
async initPad() {
|
|
3396
|
+
const pad = await import('signature_pad');
|
|
3397
|
+
this.signaturePad = new pad.default(this.padCanvas.nativeElement, {});
|
|
3398
|
+
this.signaturePad.addEventListener('afterUpdateStroke', () => {
|
|
3399
|
+
this.setValue(this.getDataURL());
|
|
3400
|
+
});
|
|
3401
|
+
}
|
|
3402
|
+
clear() {
|
|
3403
|
+
this.signaturePad.clear();
|
|
3404
|
+
this.setValue(this.getDataURL());
|
|
3405
|
+
}
|
|
3406
|
+
getDataURL() {
|
|
3407
|
+
return this.signaturePad.toDataURL('image/svg+xml');
|
|
3408
|
+
}
|
|
3409
|
+
downloadSVG() {
|
|
3410
|
+
const link = document.createElement('a');
|
|
3411
|
+
link.href = this.getDataURL();
|
|
3412
|
+
link.target = '_blank';
|
|
3413
|
+
link.download = 'download';
|
|
3414
|
+
link.click();
|
|
3415
|
+
}
|
|
3416
|
+
async switchEditMode() {
|
|
3417
|
+
this.editMode.update((prev) => !prev);
|
|
3418
|
+
}
|
|
3419
|
+
undo() {
|
|
3420
|
+
let data = this.signaturePad.toData();
|
|
3421
|
+
if (data) {
|
|
3422
|
+
data.pop();
|
|
3423
|
+
this.signaturePad.fromData(data);
|
|
3424
|
+
this.setValue(this.getDataURL());
|
|
3425
|
+
}
|
|
3426
|
+
}
|
|
3427
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3428
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSignatureWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "padCanvas", first: true, predicate: ["padCanvas"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
3429
|
+
<div class="ax-flex ax-gap-3">
|
|
3430
|
+
@if(editMode()){
|
|
3431
|
+
<canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
|
|
3432
|
+
<div class="ax-flex ax-flex-col ax-col-span-1 ax-gap-3">
|
|
3433
|
+
<ax-button class="ax-sm" (onClick)="downloadSVG()" look="outline" color="primary">
|
|
3434
|
+
<ax-icon class="fas fa-download"></ax-icon>
|
|
3435
|
+
</ax-button>
|
|
3436
|
+
<ax-button class="ax-sm" (onClick)="undo()" look="outline" color="primary">
|
|
3437
|
+
<ax-icon class="fas fa-rotate-left"></ax-icon>
|
|
3438
|
+
</ax-button>
|
|
3439
|
+
<ax-button class="ax-sm" (onClick)="clear()" look="outline" color="danger">
|
|
3440
|
+
<ax-icon class="fas fa-trash ax-text-danger"></ax-icon>
|
|
3441
|
+
</ax-button>
|
|
3442
|
+
</div>
|
|
3443
|
+
}@else{
|
|
3444
|
+
<div class="ax-border ax-rounded">
|
|
3445
|
+
<ax-image [src]="this.getValue()">
|
|
3446
|
+
<ax-overlay class="ax-flex ax-justify-center">
|
|
3447
|
+
<ax-button look="twotone" color="primary" (onClick)="switchEditMode()">
|
|
3448
|
+
<ax-icon class="far fa-edit"> </ax-icon>
|
|
3449
|
+
</ax-button>
|
|
3450
|
+
</ax-overlay>
|
|
3451
|
+
</ax-image>
|
|
3452
|
+
</div>
|
|
3453
|
+
}
|
|
3454
|
+
</div>
|
|
3455
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3456
|
+
}
|
|
3457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetEditComponent, decorators: [{
|
|
3458
|
+
type: Component,
|
|
3459
|
+
args: [{
|
|
3460
|
+
template: `
|
|
3461
|
+
<div class="ax-flex ax-gap-3">
|
|
3462
|
+
@if(editMode()){
|
|
3463
|
+
<canvas width="300" class="ax-border ax-rounded-md" #padCanvas></canvas>
|
|
3464
|
+
<div class="ax-flex ax-flex-col ax-col-span-1 ax-gap-3">
|
|
3465
|
+
<ax-button class="ax-sm" (onClick)="downloadSVG()" look="outline" color="primary">
|
|
3466
|
+
<ax-icon class="fas fa-download"></ax-icon>
|
|
3467
|
+
</ax-button>
|
|
3468
|
+
<ax-button class="ax-sm" (onClick)="undo()" look="outline" color="primary">
|
|
3469
|
+
<ax-icon class="fas fa-rotate-left"></ax-icon>
|
|
3470
|
+
</ax-button>
|
|
3471
|
+
<ax-button class="ax-sm" (onClick)="clear()" look="outline" color="danger">
|
|
3472
|
+
<ax-icon class="fas fa-trash ax-text-danger"></ax-icon>
|
|
3473
|
+
</ax-button>
|
|
3474
|
+
</div>
|
|
3475
|
+
}@else{
|
|
3476
|
+
<div class="ax-border ax-rounded">
|
|
3477
|
+
<ax-image [src]="this.getValue()">
|
|
3478
|
+
<ax-overlay class="ax-flex ax-justify-center">
|
|
3479
|
+
<ax-button look="twotone" color="primary" (onClick)="switchEditMode()">
|
|
3480
|
+
<ax-icon class="far fa-edit"> </ax-icon>
|
|
3481
|
+
</ax-button>
|
|
3482
|
+
</ax-overlay>
|
|
3483
|
+
</ax-image>
|
|
3484
|
+
</div>
|
|
3485
|
+
}
|
|
3486
|
+
</div>
|
|
3487
|
+
`,
|
|
3488
|
+
standalone: true,
|
|
3489
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3490
|
+
imports: [CommonModule, AXButtonModule, AXDecoratorModule, AXImageModule],
|
|
3491
|
+
inputs: [],
|
|
3492
|
+
}]
|
|
3493
|
+
}], propDecorators: { padCanvas: [{
|
|
3494
|
+
type: ViewChild,
|
|
3495
|
+
args: ['padCanvas']
|
|
3496
|
+
}] } });
|
|
3497
|
+
|
|
3498
|
+
var signaturePadWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3499
|
+
__proto__: null,
|
|
3500
|
+
AXPSignatureWidgetEditComponent: AXPSignatureWidgetEditComponent
|
|
3501
|
+
});
|
|
3502
|
+
|
|
3503
|
+
class AXPSignatureWidgetFilterComponent extends AXPWidgetBase {
|
|
3504
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3505
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSignatureWidgetFilterComponent, 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 }); }
|
|
3506
|
+
}
|
|
3507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetFilterComponent, decorators: [{
|
|
3508
|
+
type: Component,
|
|
3509
|
+
args: [{
|
|
3510
|
+
template: ``,
|
|
3511
|
+
standalone: true,
|
|
3512
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3513
|
+
imports: [CommonModule, FormsModule],
|
|
3514
|
+
inputs: []
|
|
3515
|
+
}]
|
|
3516
|
+
}] });
|
|
3517
|
+
|
|
3518
|
+
var signaturePadWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3519
|
+
__proto__: null,
|
|
3520
|
+
AXPSignatureWidgetFilterComponent: AXPSignatureWidgetFilterComponent
|
|
3521
|
+
});
|
|
3522
|
+
|
|
3523
|
+
class AXPSignatureWidgetPrintComponent extends AXPWidgetBase {
|
|
3524
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3525
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPSignatureWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3526
|
+
}
|
|
3527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetPrintComponent, decorators: [{
|
|
3528
|
+
type: Component,
|
|
3529
|
+
args: [{
|
|
3530
|
+
template: ``,
|
|
3531
|
+
standalone: true,
|
|
3532
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3533
|
+
imports: [CommonModule],
|
|
3534
|
+
inputs: []
|
|
3535
|
+
}]
|
|
3536
|
+
}] });
|
|
3537
|
+
|
|
3538
|
+
var signaturePadWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3539
|
+
__proto__: null,
|
|
3540
|
+
AXPSignatureWidgetPrintComponent: AXPSignatureWidgetPrintComponent
|
|
3541
|
+
});
|
|
3542
|
+
|
|
3543
|
+
class AXPSignatureWidgetViewComponent extends AXPWidgetBase {
|
|
3544
|
+
constructor() {
|
|
3545
|
+
super(...arguments);
|
|
3546
|
+
this.internalValue = computed(() => this.getValue());
|
|
3547
|
+
}
|
|
3548
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3549
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPSignatureWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3550
|
+
<div class="ax-w-72 ax-h-36 ax-border ax-rounded-md ax-flex ax-justify-center ax-items-center">
|
|
3551
|
+
@if(internalValue()){
|
|
3552
|
+
<ax-image [src]="internalValue()"></ax-image>
|
|
3553
|
+
}@else{
|
|
3554
|
+
<span>Not Set!</span>
|
|
3555
|
+
}
|
|
3556
|
+
</div>
|
|
3557
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3558
|
+
}
|
|
3559
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPSignatureWidgetViewComponent, decorators: [{
|
|
3560
|
+
type: Component,
|
|
3561
|
+
args: [{
|
|
3562
|
+
template: `
|
|
3563
|
+
<div class="ax-w-72 ax-h-36 ax-border ax-rounded-md ax-flex ax-justify-center ax-items-center">
|
|
3564
|
+
@if(internalValue()){
|
|
3565
|
+
<ax-image [src]="internalValue()"></ax-image>
|
|
3566
|
+
}@else{
|
|
3567
|
+
<span>Not Set!</span>
|
|
3568
|
+
}
|
|
3569
|
+
</div>
|
|
3570
|
+
`,
|
|
3571
|
+
standalone: true,
|
|
3572
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3573
|
+
imports: [CommonModule, AXImageModule],
|
|
3574
|
+
inputs: [],
|
|
3575
|
+
}]
|
|
3576
|
+
}] });
|
|
3577
|
+
|
|
3578
|
+
var signaturePadWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
3579
|
+
__proto__: null,
|
|
3580
|
+
AXPSignatureWidgetViewComponent: AXPSignatureWidgetViewComponent
|
|
3581
|
+
});
|
|
3582
|
+
|
|
3583
|
+
const AXPSignatureWidget = {
|
|
3584
|
+
name: 'signature',
|
|
3585
|
+
components: {
|
|
3586
|
+
view: {
|
|
3587
|
+
component: () => Promise.resolve().then(function () { return signaturePadWidgetView_component; }).then((c) => c.AXPSignatureWidgetViewComponent),
|
|
3588
|
+
},
|
|
3589
|
+
edit: {
|
|
3590
|
+
component: () => Promise.resolve().then(function () { return signaturePadWidgetEdit_component; }).then((c) => c.AXPSignatureWidgetEditComponent),
|
|
3591
|
+
},
|
|
3592
|
+
filter: {
|
|
3593
|
+
component: () => Promise.resolve().then(function () { return signaturePadWidgetFilter_component; }).then((c) => c.AXPSignatureWidgetFilterComponent),
|
|
3594
|
+
},
|
|
3595
|
+
column: {
|
|
3596
|
+
component: () => Promise.resolve().then(function () { return signaturePadWidgetColumn_component; }).then((c) => c.AXPSignatureWidgetColumnComponent),
|
|
3597
|
+
},
|
|
3598
|
+
print: {
|
|
3599
|
+
component: () => Promise.resolve().then(function () { return signaturePadWidgetPrint_component; }).then((c) => c.AXPSignatureWidgetPrintComponent),
|
|
3600
|
+
},
|
|
3601
|
+
designer: {
|
|
3602
|
+
component: () => Promise.resolve().then(function () { return signaturePadWidgetDesigner_component; }).then((c) => c.AXPSignatureWidgetDesignerComponent),
|
|
3603
|
+
},
|
|
3604
|
+
},
|
|
3605
|
+
};
|
|
3606
|
+
|
|
3607
|
+
class AXPTextBoxWidgetViewComponent extends AXPWidgetBase {
|
|
3608
|
+
constructor() {
|
|
3609
|
+
super(...arguments);
|
|
3610
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
3611
|
+
}
|
|
3612
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3613
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPTextBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3614
|
+
<div>
|
|
3615
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
3616
|
+
<p>{{ item }}</p>
|
|
3617
|
+
} }@else {
|
|
3618
|
+
<p>{{ internalValue()[0] }}</p>
|
|
3619
|
+
}
|
|
3620
|
+
</div>
|
|
3621
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3622
|
+
}
|
|
3623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetViewComponent, decorators: [{
|
|
3624
|
+
type: Component,
|
|
3625
|
+
args: [{
|
|
3626
|
+
template: `
|
|
3627
|
+
<div>
|
|
3628
|
+
@if(multiple){ @for (item of internalValue(); track $index) {
|
|
3629
|
+
<p>{{ item }}</p>
|
|
3630
|
+
} }@else {
|
|
3631
|
+
<p>{{ internalValue()[0] }}</p>
|
|
3632
|
+
}
|
|
3633
|
+
</div>
|
|
3634
|
+
`,
|
|
3635
|
+
standalone: true,
|
|
3636
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3637
|
+
imports: [CommonModule],
|
|
3638
|
+
inputs: [],
|
|
3639
|
+
}]
|
|
3640
|
+
}] });
|
|
3641
|
+
|
|
3642
|
+
var textBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
3643
|
+
__proto__: null,
|
|
3644
|
+
AXPTextBoxWidgetViewComponent: AXPTextBoxWidgetViewComponent
|
|
3645
|
+
});
|
|
3646
|
+
|
|
3647
|
+
class AXPTextBoxWidgetEditComponent extends AXPWidgetBase {
|
|
3648
|
+
constructor() {
|
|
3649
|
+
super(...arguments);
|
|
3650
|
+
this._validationRules = [];
|
|
3651
|
+
this.disabled = false;
|
|
3652
|
+
this.clearButton = true;
|
|
3653
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
3654
|
+
}
|
|
3655
|
+
get validationRules() {
|
|
3656
|
+
return this._validationRules;
|
|
3657
|
+
}
|
|
3658
|
+
set validationRules(v) {
|
|
3659
|
+
this._validationRules = v;
|
|
3660
|
+
}
|
|
3661
|
+
handleValueChange(e, i) {
|
|
3662
|
+
if (e.isUserInteraction) {
|
|
3663
|
+
const newValues = this.internalValue().map((item, index) => (i === index ? e.value : item));
|
|
3664
|
+
if (this.multiple)
|
|
3665
|
+
this.setValue(newValues);
|
|
3666
|
+
else
|
|
3667
|
+
this.setValue(newValues[0]);
|
|
3668
|
+
}
|
|
3669
|
+
}
|
|
3670
|
+
addItem() {
|
|
3671
|
+
const newValues = [...this.internalValue(), ''];
|
|
3672
|
+
this.setValue(newValues);
|
|
3673
|
+
}
|
|
3674
|
+
deleteItem(i) {
|
|
3675
|
+
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
3676
|
+
this.setValue(newValues);
|
|
3677
|
+
}
|
|
3678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3679
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPTextBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3680
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
3681
|
+
@for (text of internalValue(); track $index) {
|
|
3682
|
+
<ax-text-box class="ax-col-span-12" [ngModel]="text" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled" >
|
|
3683
|
+
@for (validation of validationRules; track $index) {
|
|
3684
|
+
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
3685
|
+
}
|
|
3686
|
+
@if(clearButton){
|
|
3687
|
+
<ax-clear-button></ax-clear-button>
|
|
3688
|
+
} @if(multiple){
|
|
3689
|
+
<ax-suffix>
|
|
3690
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
3691
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
3692
|
+
</ax-button>
|
|
3693
|
+
</ax-suffix>
|
|
3694
|
+
}
|
|
3695
|
+
</ax-text-box>
|
|
3696
|
+
} @if(multiple){
|
|
3697
|
+
<ax-button
|
|
3698
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
3699
|
+
look="twotone"
|
|
3700
|
+
(onClick)="addItem()"
|
|
3701
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
3702
|
+
>
|
|
3703
|
+
<ax-prefix>
|
|
3704
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
3705
|
+
</ax-prefix>
|
|
3706
|
+
</ax-button>
|
|
3707
|
+
}
|
|
3708
|
+
</div>
|
|
3709
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i6.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: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3$2.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i3$1.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: i3.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3710
|
+
}
|
|
3711
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetEditComponent, decorators: [{
|
|
3712
|
+
type: Component,
|
|
3713
|
+
args: [{
|
|
3714
|
+
template: `
|
|
3715
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
3716
|
+
@for (text of internalValue(); track $index) {
|
|
3717
|
+
<ax-text-box class="ax-col-span-12" [ngModel]="text" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled" >
|
|
3718
|
+
@for (validation of validationRules; track $index) {
|
|
3719
|
+
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
3720
|
+
}
|
|
3721
|
+
@if(clearButton){
|
|
3722
|
+
<ax-clear-button></ax-clear-button>
|
|
3723
|
+
} @if(multiple){
|
|
3724
|
+
<ax-suffix>
|
|
3725
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
3726
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
3727
|
+
</ax-button>
|
|
3728
|
+
</ax-suffix>
|
|
3729
|
+
}
|
|
3730
|
+
</ax-text-box>
|
|
3731
|
+
} @if(multiple){
|
|
3732
|
+
<ax-button
|
|
3733
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
3734
|
+
look="twotone"
|
|
3735
|
+
(onClick)="addItem()"
|
|
3736
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
3737
|
+
>
|
|
3738
|
+
<ax-prefix>
|
|
3739
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
3740
|
+
</ax-prefix>
|
|
3741
|
+
</ax-button>
|
|
3742
|
+
}
|
|
3743
|
+
</div>
|
|
3744
|
+
`,
|
|
3745
|
+
standalone: true,
|
|
3746
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3747
|
+
imports: [CommonModule, AXTextBoxModule, FormsModule, AXFormModule, AXDecoratorModule, AXValidationModule, AXButtonModule],
|
|
3748
|
+
inputs: [],
|
|
3749
|
+
}]
|
|
3750
|
+
}] });
|
|
3751
|
+
|
|
3752
|
+
var textBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3753
|
+
__proto__: null,
|
|
3754
|
+
AXPTextBoxWidgetEditComponent: AXPTextBoxWidgetEditComponent
|
|
3755
|
+
});
|
|
3756
|
+
|
|
3757
|
+
class AXPTextBoxWidgetFilterComponent extends AXPWidgetBase {
|
|
3758
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3759
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPTextBoxWidgetFilterComponent, 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 }); }
|
|
3760
|
+
}
|
|
3761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetFilterComponent, decorators: [{
|
|
3762
|
+
type: Component,
|
|
3763
|
+
args: [{
|
|
3764
|
+
template: ``,
|
|
3765
|
+
standalone: true,
|
|
3766
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3767
|
+
imports: [CommonModule, FormsModule],
|
|
3768
|
+
inputs: []
|
|
3769
|
+
}]
|
|
3770
|
+
}] });
|
|
3771
|
+
|
|
3772
|
+
var textBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3773
|
+
__proto__: null,
|
|
3774
|
+
AXPTextBoxWidgetFilterComponent: AXPTextBoxWidgetFilterComponent
|
|
3775
|
+
});
|
|
3776
|
+
|
|
3777
|
+
class AXPTextBoxWidgetColumnComponent extends AXPWidgetBase {
|
|
3778
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3779
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPTextBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3780
|
+
}
|
|
3781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetColumnComponent, decorators: [{
|
|
3782
|
+
type: Component,
|
|
3783
|
+
args: [{
|
|
3784
|
+
template: ``,
|
|
3785
|
+
standalone: true,
|
|
3786
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3787
|
+
imports: [CommonModule],
|
|
3788
|
+
inputs: []
|
|
3789
|
+
}]
|
|
3790
|
+
}] });
|
|
3791
|
+
|
|
3792
|
+
var textBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3793
|
+
__proto__: null,
|
|
3794
|
+
AXPTextBoxWidgetColumnComponent: AXPTextBoxWidgetColumnComponent
|
|
3795
|
+
});
|
|
3796
|
+
|
|
3797
|
+
class AXPTextBoxWidgetPrintComponent extends AXPWidgetBase {
|
|
3798
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3799
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPTextBoxWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3800
|
+
}
|
|
3801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetPrintComponent, decorators: [{
|
|
3802
|
+
type: Component,
|
|
3803
|
+
args: [{
|
|
3804
|
+
template: ``,
|
|
3805
|
+
standalone: true,
|
|
3806
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3807
|
+
imports: [CommonModule],
|
|
3808
|
+
inputs: []
|
|
3809
|
+
}]
|
|
3810
|
+
}] });
|
|
3811
|
+
|
|
3812
|
+
var textBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3813
|
+
__proto__: null,
|
|
3814
|
+
AXPTextBoxWidgetPrintComponent: AXPTextBoxWidgetPrintComponent
|
|
3815
|
+
});
|
|
3816
|
+
|
|
3817
|
+
class AXPTextBoxWidgetDesignerComponent extends AXPWidgetBase {
|
|
3818
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3819
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPTextBoxWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3820
|
+
}
|
|
3821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPTextBoxWidgetDesignerComponent, decorators: [{
|
|
3822
|
+
type: Component,
|
|
3823
|
+
args: [{
|
|
3824
|
+
template: ``,
|
|
3825
|
+
standalone: true,
|
|
3826
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3827
|
+
imports: [CommonModule],
|
|
3828
|
+
inputs: []
|
|
3829
|
+
}]
|
|
3830
|
+
}] });
|
|
3831
|
+
|
|
3832
|
+
var textBoxWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
3833
|
+
__proto__: null,
|
|
3834
|
+
AXPTextBoxWidgetDesignerComponent: AXPTextBoxWidgetDesignerComponent
|
|
3835
|
+
});
|
|
3836
|
+
|
|
3837
|
+
const AXPTextBoxWidget = {
|
|
3838
|
+
name: "text-box",
|
|
3839
|
+
components: {
|
|
3840
|
+
view: {
|
|
3841
|
+
component: () => Promise.resolve().then(function () { return textBoxWidgetView_component; }).then((c) => c.AXPTextBoxWidgetViewComponent),
|
|
3842
|
+
},
|
|
3843
|
+
edit: {
|
|
3844
|
+
component: () => Promise.resolve().then(function () { return textBoxWidgetEdit_component; }).then((c) => c.AXPTextBoxWidgetEditComponent),
|
|
3845
|
+
},
|
|
3846
|
+
filter: {
|
|
3847
|
+
component: () => Promise.resolve().then(function () { return textBoxWidgetFilter_component; }).then((c) => c.AXPTextBoxWidgetFilterComponent),
|
|
3848
|
+
},
|
|
3849
|
+
column: {
|
|
3850
|
+
component: () => Promise.resolve().then(function () { return textBoxWidgetColumn_component; }).then((c) => c.AXPTextBoxWidgetColumnComponent),
|
|
3851
|
+
},
|
|
3852
|
+
print: {
|
|
3853
|
+
component: () => Promise.resolve().then(function () { return textBoxWidgetPrint_component; }).then((c) => c.AXPTextBoxWidgetPrintComponent),
|
|
3854
|
+
},
|
|
3855
|
+
designer: {
|
|
3856
|
+
component: () => Promise.resolve().then(function () { return textBoxWidgetDesigner_component; }).then((c) => c.AXPTextBoxWidgetDesignerComponent),
|
|
3857
|
+
},
|
|
3858
|
+
}
|
|
3859
|
+
};
|
|
3860
|
+
|
|
3861
|
+
class AXPBlockWidgetViewComponent extends AXPWidgetBase {
|
|
3862
|
+
get __class() {
|
|
3863
|
+
return this.cssClass;
|
|
3864
|
+
}
|
|
3865
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3866
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPBlockWidgetViewComponent, isStandalone: true, selector: "axp-block-widget-edit", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
3867
|
+
@for (node of children; track $index) {
|
|
3868
|
+
<axp-widget-renderer [node]="node" >
|
|
3869
|
+
</axp-widget-renderer>
|
|
3870
|
+
}
|
|
3871
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$3.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3872
|
+
}
|
|
3873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPBlockWidgetViewComponent, decorators: [{
|
|
3874
|
+
type: Component,
|
|
3875
|
+
args: [{
|
|
3876
|
+
selector: 'axp-block-widget-edit',
|
|
3877
|
+
template: `
|
|
3878
|
+
@for (node of children; track $index) {
|
|
3879
|
+
<axp-widget-renderer [node]="node" >
|
|
3880
|
+
</axp-widget-renderer>
|
|
3881
|
+
}
|
|
3882
|
+
`,
|
|
3883
|
+
standalone: true,
|
|
3884
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3885
|
+
imports: [
|
|
3886
|
+
CommonModule,
|
|
3887
|
+
AXPLayoutBuilderModule
|
|
3888
|
+
],
|
|
3889
|
+
}]
|
|
3890
|
+
}], propDecorators: { __class: [{
|
|
3891
|
+
type: HostBinding,
|
|
3892
|
+
args: ['class']
|
|
3893
|
+
}] } });
|
|
3894
|
+
|
|
3895
|
+
var blockWidget_component = /*#__PURE__*/Object.freeze({
|
|
3896
|
+
__proto__: null,
|
|
3897
|
+
AXPBlockWidgetViewComponent: AXPBlockWidgetViewComponent
|
|
3898
|
+
});
|
|
3899
|
+
|
|
3900
|
+
const AXPBlockWidget = {
|
|
3901
|
+
name: "block",
|
|
3902
|
+
components: {
|
|
3903
|
+
view: {
|
|
3904
|
+
component: () => Promise.resolve().then(function () { return blockWidget_component; }).then((c) => c.AXPBlockWidgetViewComponent),
|
|
3905
|
+
}
|
|
3906
|
+
}
|
|
3907
|
+
};
|
|
3908
|
+
|
|
3909
|
+
class AXPWidgetsModule {
|
|
3910
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWidgetsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3911
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: AXPWidgetsModule, imports: [i1$3.AXPLayoutBuilderModule] }); }
|
|
3912
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWidgetsModule, imports: [AXPLayoutBuilderModule.forChild({
|
|
3913
|
+
widgets: [
|
|
3914
|
+
AXPTextBoxWidget,
|
|
3915
|
+
AXPCheckBoxWidget,
|
|
3916
|
+
AXPBlockWidget,
|
|
3917
|
+
AXPSelectBoxWidget,
|
|
3918
|
+
AXPRichTextWidget,
|
|
3919
|
+
AXPNumberBoxWidget,
|
|
3920
|
+
AXPSignatureWidget,
|
|
3921
|
+
AXPDateTimeBoxWidget,
|
|
3922
|
+
AXPSelectionListWidget,
|
|
3923
|
+
AXPMapBoxWidget,
|
|
3924
|
+
AXPPhoneBoxWidget,
|
|
3925
|
+
AXPEmailBoxWidget,
|
|
3926
|
+
AXPFileBoxWidget,
|
|
3927
|
+
AXPPasswordBoxWidget,
|
|
3928
|
+
AXPGalleryWidget,
|
|
3929
|
+
],
|
|
3930
|
+
})] }); }
|
|
3931
|
+
}
|
|
3932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWidgetsModule, decorators: [{
|
|
3933
|
+
type: NgModule,
|
|
3934
|
+
args: [{
|
|
3935
|
+
imports: [
|
|
3936
|
+
AXPLayoutBuilderModule.forChild({
|
|
3937
|
+
widgets: [
|
|
3938
|
+
AXPTextBoxWidget,
|
|
3939
|
+
AXPCheckBoxWidget,
|
|
3940
|
+
AXPBlockWidget,
|
|
3941
|
+
AXPSelectBoxWidget,
|
|
3942
|
+
AXPRichTextWidget,
|
|
3943
|
+
AXPNumberBoxWidget,
|
|
3944
|
+
AXPSignatureWidget,
|
|
3945
|
+
AXPDateTimeBoxWidget,
|
|
3946
|
+
AXPSelectionListWidget,
|
|
3947
|
+
AXPMapBoxWidget,
|
|
3948
|
+
AXPPhoneBoxWidget,
|
|
3949
|
+
AXPEmailBoxWidget,
|
|
3950
|
+
AXPFileBoxWidget,
|
|
3951
|
+
AXPPasswordBoxWidget,
|
|
3952
|
+
AXPGalleryWidget,
|
|
3953
|
+
],
|
|
3954
|
+
}),
|
|
3955
|
+
],
|
|
3956
|
+
exports: [],
|
|
3957
|
+
declarations: [],
|
|
3958
|
+
}]
|
|
3959
|
+
}] });
|
|
3960
|
+
|
|
3961
|
+
/**
|
|
3962
|
+
* Generated bundle index. Do not edit.
|
|
3963
|
+
*/
|
|
3964
|
+
|
|
3965
|
+
export { AXPWidgetsModule };
|
|
3966
|
+
//# sourceMappingURL=acorex-platform-widgets.mjs.map
|