@acorex/platform 18.0.9 → 18.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auth/lib/application/application.types.d.ts +3 -3
- package/auth/lib/auth.strategy.d.ts +5 -0
- package/auth/lib/errors.types.d.ts +4 -4
- package/auth/lib/session.service.d.ts +4 -3
- package/common/lib/app/application.types.d.ts +6 -12
- package/common/lib/schema/entity/entity.class.d.ts +2 -1
- package/common/lib/schema/schema.types.d.ts +2 -1
- package/common/lib/schema/widget/widget-base.d.ts +1 -1
- package/common/lib/schema/widget/widget-token.d.ts +1 -1
- package/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.d.ts +1 -1
- package/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.d.ts +2 -2
- package/common/lib/schema/widgets/text/text-widget-column.component.d.ts +1 -1
- package/common/lib/schema/widgets/text/text-widget-view.component.d.ts +1 -1
- package/core/README.md +4 -0
- package/core/index.d.ts +3 -0
- package/core/lib/types.d.ts +13 -0
- package/core/utils/countdown-timer.d.ts +12 -0
- package/core/utils/html-utils.d.ts +9 -0
- package/esm2022/auth/lib/application/application.types.mjs +1 -1
- package/esm2022/auth/lib/auth-registry.service.mjs +3 -3
- package/esm2022/auth/lib/auth.module.mjs +4 -4
- package/esm2022/auth/lib/auth.strategy.mjs +1 -1
- package/esm2022/auth/lib/feature/feature.directive.mjs +3 -3
- package/esm2022/auth/lib/permission/permission.directive.mjs +3 -3
- package/esm2022/auth/lib/session.service.mjs +58 -16
- package/esm2022/common/lib/app/application.types.mjs +1 -1
- package/esm2022/common/lib/common.module.mjs +4 -4
- package/esm2022/common/lib/errors/error-handler-registry.service.mjs +3 -3
- package/esm2022/common/lib/errors/global-error-handler.mjs +5 -5
- package/esm2022/common/lib/layout/component-slot/component-slot-loader.service.mjs +3 -3
- package/esm2022/common/lib/layout/component-slot/component-slot-registery.service.mjs +3 -3
- package/esm2022/common/lib/layout/component-slot/component-slot.directive.mjs +3 -3
- package/esm2022/common/lib/layout/component-slot/component-slot.module.mjs +4 -4
- package/esm2022/common/lib/layout/grid-layout/grid-layout.directive.mjs +3 -3
- package/esm2022/common/lib/layout/layout.service.mjs +3 -3
- package/esm2022/common/lib/layout/logo/logo.component.mjs +3 -3
- package/esm2022/common/lib/layout/sticky.directive.mjs +3 -3
- package/esm2022/common/lib/layout/theme/components/slots/footer-text-slot.component.mjs +3 -3
- package/esm2022/common/lib/layout/theme/components/slots/navbar-slot.component.mjs +3 -3
- package/esm2022/common/lib/layout/theme/components/slots/theme-slot.component.mjs +5 -5
- package/esm2022/common/lib/layout/theme/store/admin-layout.effects.mjs +3 -3
- package/esm2022/common/lib/schema/entity/entity-registery.service.mjs +3 -3
- package/esm2022/common/lib/schema/entity/entity.class.mjs +1 -1
- package/esm2022/common/lib/schema/schema-registery.service.mjs +3 -3
- package/esm2022/common/lib/schema/schema.module.mjs +4 -4
- package/esm2022/common/lib/schema/schema.types.mjs +1 -1
- package/esm2022/common/lib/schema/widget/widget-base.mjs +10 -10
- package/esm2022/common/lib/schema/widget/widget-column-renderer.mjs +3 -3
- package/esm2022/common/lib/schema/widget/widget-filter-renderer.mjs +3 -3
- package/esm2022/common/lib/schema/widget/widget-renderer.mjs +3 -3
- package/esm2022/common/lib/schema/widget/widget-token.mjs +1 -1
- package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/common-widgets.module.mjs +4 -4
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.mjs +4 -4
- package/esm2022/common/lib/schema/widgets/email/email-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/email/email-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/email/email-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/file/file-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/file/file-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/file/file-widget-filter.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/file/file-widget-view.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-edit.component.mjs +4 -4
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-filter.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/map/map-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/map/map-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/number/number-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/number/number-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/password/change-password.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/password/password-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/password/password-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/password/password-widget-view.component.mjs +4 -4
- package/esm2022/common/lib/schema/widgets/phone/phone-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/phone/phone-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/phone/phone-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-edit.component.mjs +5 -5
- package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/text/largetext-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/text/text-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/text/text-widget-edit.component.mjs +4 -4
- package/esm2022/common/lib/schema/widgets/text/text-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-column.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/settings/settings.service.mjs +3 -3
- 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/pdf.service.mjs +3 -3
- package/esm2022/common/lib/utils/router-util.service.mjs +3 -3
- package/esm2022/common/lib/workflows/common.workflow.mjs +9 -9
- package/esm2022/common/lib/workflows/error-handler.mjs +3 -3
- package/esm2022/core/acorex-platform-core.mjs +5 -0
- package/esm2022/core/index.mjs +4 -0
- package/esm2022/core/lib/types.mjs +13 -0
- package/esm2022/core/utils/countdown-timer.mjs +42 -0
- package/esm2022/core/utils/html-utils.mjs +27 -0
- package/esm2022/layout/builder/lib/builder/builder.module.mjs +4 -4
- package/esm2022/layout/builder/lib/builder/builder.service.mjs +18 -4
- package/esm2022/layout/builder/lib/builder/layout.types.mjs +29 -1
- package/esm2022/layout/builder/lib/builder/widget-column-renderer.mjs +12 -5
- package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +14 -20
- package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +7 -4
- package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +40 -15
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +98 -42
- package/esm2022/layout/designer/acorex-platform-layout-designer.mjs +5 -0
- package/esm2022/layout/designer/index.mjs +8 -0
- package/esm2022/layout/designer/lib/board/board.component.mjs +68 -0
- package/esm2022/layout/designer/lib/breadcrumbs/breadcrumbs.component.mjs +64 -0
- package/esm2022/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.mjs +37 -0
- package/esm2022/layout/designer/lib/designer/designer.component.mjs +77 -0
- package/esm2022/layout/designer/lib/designer.module.mjs +16 -0
- package/esm2022/layout/designer/lib/designer.service.mjs +370 -0
- package/esm2022/layout/designer/lib/outline/outline.component.mjs +56 -0
- package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +103 -0
- package/esm2022/layout/designer/lib/widget-designer-renderer.component.mjs +243 -0
- package/esm2022/layout/designer/lib/widget-picker/widget-picker.component.mjs +23 -0
- package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +3 -3
- package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +4 -5
- package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +5 -7
- package/esm2022/layout/entity/lib/entity-master-update.viewmodel.mjs +3 -3
- package/esm2022/layout/entity/lib/entity-registery.service.mjs +3 -3
- package/esm2022/layout/entity/lib/entity.module.mjs +4 -4
- package/esm2022/layout/entity/lib/entity.viewmodel.mjs +2 -3
- package/esm2022/layout/entity/lib/widgets/lookup-widget/index.mjs +1 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.mjs +6 -6
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +21 -20
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.mjs +6 -6
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.mjs +6 -6
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +5 -5
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +59 -10
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +39 -4
- package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +4 -5
- package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +3 -3
- package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +6 -6
- package/esm2022/layout/entity/lib/workflows/show-details.workflow.mjs +3 -3
- package/esm2022/layout/entity/lib/workflows/show-list.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/admin.module.mjs +4 -4
- 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 +5 -5
- package/esm2022/layouts/lib/admin/entity-layout/entity-import-view/entity-import-view.component.mjs +4 -4
- 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 +3 -3
- 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 +5 -5
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.mjs +4 -4
- 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 +3 -3
- 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 +6 -6
- package/esm2022/layouts/lib/admin/entity-layout/workflows/import-entity.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-section.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/show-details.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/show-list.workflow.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.mjs +3 -3
- package/esm2022/layouts/lib/layout.module.mjs +4 -4
- package/esm2022/mocks/lib/mocks.module.mjs +4 -4
- package/esm2022/mocks/lib/services/mocker.service.mjs +3 -3
- package/esm2022/mocks/lib/storage/storage.mock.service.mjs +4 -4
- package/esm2022/native/lib/native.module.mjs +4 -4
- package/esm2022/native/lib/native.service.mjs +3 -3
- package/esm2022/themes/default/lib/default.module.mjs +4 -4
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +7 -6
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.mjs +5 -5
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.mjs +4 -4
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.mjs +4 -4
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +6 -6
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +6 -6
- package/esm2022/themes/default/lib/layouts/root-layout/components/footer/footer.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/root-layout/components/header/header.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +4 -4
- package/esm2022/themes/default/lib/pages/errors/error-401/error-401.component.mjs +4 -4
- package/esm2022/themes/default/lib/pages/errors/error-404/error-404.component.mjs +3 -3
- package/esm2022/themes/default/lib/pages/errors/error-offline/error-offline.component.mjs +3 -3
- package/esm2022/widgets/index.mjs +3 -1
- package/esm2022/widgets/lib/properties/editors.props.mjs +389 -0
- package/esm2022/widgets/lib/properties/groups.mjs +21 -0
- package/esm2022/widgets/lib/properties/index.mjs +4 -0
- package/esm2022/widgets/lib/properties/table-column.props.mjs +17 -0
- package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget-view.component.mjs +37 -0
- package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget.config.mjs +25 -0
- package/esm2022/widgets/lib/widgets/actions/button-widget/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.mjs +51 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.mjs +48 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.mjs +55 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget.config.mjs +34 -0
- package/esm2022/widgets/lib/widgets/editors/checkbox/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.mjs +54 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-view.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget.config.mjs +34 -0
- package/esm2022/widgets/lib/widgets/editors/color-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-column.component.mjs +36 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.mjs +297 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-view.component.mjs +122 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget.config.mjs +78 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/contact.type.mjs +2 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/contact-widget/popup-component.mjs +78 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +44 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +133 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +54 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget.config.mjs +38 -0
- package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-column.component.mjs +66 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-edit.component.mjs +249 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-view.component.mjs +115 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget.config.mjs +36 -0
- package/esm2022/widgets/lib/widgets/editors/email-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-edit.component.mjs +122 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-view.component.mjs +215 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget.config.mjs +48 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget.service.mjs +3 -0
- package/esm2022/widgets/lib/widgets/editors/file-box-widget/index.mjs +8 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-edit.component.mjs +173 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-types.mjs +2 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-view.component.mjs +160 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget.config.mjs +26 -0
- package/esm2022/widgets/lib/widgets/editors/gallery-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-column.component.mjs +23 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-edit.component.mjs +60 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-view.component.mjs +31 -0
- package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget.config.mjs +37 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-edit.component.mjs +391 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-view.component.mjs +120 -0
- package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget.config.mjs +26 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-edit.component.mjs +96 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-view.component.mjs +65 -0
- package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget.config.mjs +28 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-column.component.mjs +38 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-edit.component.mjs +151 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-view.component.mjs +56 -0
- package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget.config.mjs +37 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-edit.component.mjs +52 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-view.component.mjs +76 -0
- package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget.config.mjs +35 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-column.component.mjs +66 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-edit.component.mjs +221 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-view.component.mjs +115 -0
- package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget.config.mjs +29 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-popup.component.mjs +38 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-column.component.mjs +46 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.mjs +67 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-view.component.mjs +45 -0
- package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget.config.mjs +37 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.mjs +75 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-filter.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-view.component.mjs +60 -0
- package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget.config.mjs +28 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-column.component.mjs +41 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-edit.component.mjs +72 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-view.component.mjs +44 -0
- package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget.config.mjs +25 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +142 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +43 -0
- package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget.config.mjs +34 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-column.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.mjs +119 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.mjs +47 -0
- package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget.config.mjs +38 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/index.mjs +7 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-column.component.mjs +53 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-edit.component.mjs +31 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-filter.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-view.component.mjs +53 -0
- package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget.config.mjs +36 -0
- package/esm2022/widgets/lib/widgets/index.mjs +25 -0
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget-designer.component.mjs +65 -0
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget-view.component.mjs +48 -0
- package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget.config.mjs +27 -0
- package/esm2022/widgets/lib/widgets/layout/block-widget/index.mjs +4 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.mjs +55 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-view.component.mjs +42 -0
- package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget.config.mjs +27 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/index.mjs +6 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-designer.component.mjs +50 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-edit.component.mjs +20 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-print.component.mjs +19 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-view.component.mjs +52 -0
- package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget.config.mjs +20 -0
- package/esm2022/widgets/lib/widgets/layout/text-block-widget/index.mjs +3 -0
- package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget-view.component.mjs +29 -0
- package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.mjs +39 -0
- package/esm2022/widgets/lib/widgets.module.mjs +24 -26
- package/esm2022/workflow/lib/actions/start-workflow.action.mjs +3 -3
- 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 +6 -6
- package/fesm2022/acorex-platform-auth.mjs +70 -28
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-CfqY7kKi.mjs +179 -0
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-CfqY7kKi.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-DXC7INdQ.mjs +86 -0
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-DXC7INdQ.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DLGnsXy4.mjs +170 -0
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DLGnsXy4.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-change-password.component-BBPFxmB6.mjs +177 -0
- package/fesm2022/acorex-platform-common-change-password.component-BBPFxmB6.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-checkbox-widget-column.component-Ch2bdAjo.mjs +77 -0
- package/fesm2022/acorex-platform-common-checkbox-widget-column.component-Ch2bdAjo.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-DOGMfGby.mjs +47 -0
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-DOGMfGby.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BhGOtblX.mjs +71 -0
- package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BhGOtblX.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BkUDt0Kj.mjs +67 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BkUDt0Kj.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DEqsapFH.mjs +199 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DEqsapFH.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-CqddjYjP.mjs +234 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-CqddjYjP.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-view.component-BKUPKE9M.mjs +94 -0
- package/fesm2022/acorex-platform-common-dateTime-widget-view.component-BKUPKE9M.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-email-widget-column.component-BOer2nZi.mjs +98 -0
- package/fesm2022/acorex-platform-common-email-widget-column.component-BOer2nZi.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-email-widget-edit.component-BoKsGiEI.mjs +270 -0
- package/fesm2022/acorex-platform-common-email-widget-edit.component-BoKsGiEI.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-email-widget-view.component-BZtK5dMd.mjs +131 -0
- package/fesm2022/acorex-platform-common-email-widget-view.component-BZtK5dMd.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-file-widget-column.component-DpcUmwAT.mjs +50 -0
- package/fesm2022/acorex-platform-common-file-widget-column.component-DpcUmwAT.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-file-widget-edit.component-CNLXguLn.mjs +222 -0
- package/fesm2022/acorex-platform-common-file-widget-edit.component-CNLXguLn.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-file-widget-filter.component-Dwt-LYWG.mjs +52 -0
- package/fesm2022/acorex-platform-common-file-widget-filter.component-Dwt-LYWG.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-file-widget-view.component-CjDhjHQR.mjs +175 -0
- package/fesm2022/acorex-platform-common-file-widget-view.component-CjDhjHQR.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CzKFKaPH.mjs +210 -0
- package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CzKFKaPH.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-B-KxKtY4.mjs +51 -0
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-B-KxKtY4.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-gallery-widget-view.component-ca-JB8qW.mjs +194 -0
- package/fesm2022/acorex-platform-common-gallery-widget-view.component-ca-JB8qW.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-CrqPJ58V.mjs +61 -0
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-CrqPJ58V.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-BEZNLQZi.mjs +67 -0
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-BEZNLQZi.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-D50jPeKP.mjs +118 -0
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-D50jPeKP.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-CZHDDnR3.mjs +153 -0
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-CZHDDnR3.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-CQCvJxgi.mjs +78 -0
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-CQCvJxgi.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-map-widget-edit.component-OanYRQ3B.mjs +115 -0
- package/fesm2022/acorex-platform-common-map-widget-edit.component-OanYRQ3B.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-map-widget-view.component-BWdndMYJ.mjs +87 -0
- package/fesm2022/acorex-platform-common-map-widget-view.component-BWdndMYJ.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BHP6R3OI.mjs +96 -0
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BHP6R3OI.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-B7ycb6tX.mjs +158 -0
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-B7ycb6tX.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-messenger-widget-view.component-Dz5X-FS5.mjs +155 -0
- package/fesm2022/acorex-platform-common-messenger-widget-view.component-Dz5X-FS5.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-number-widget-edit.component-XSWI6466.mjs +69 -0
- package/fesm2022/acorex-platform-common-number-widget-edit.component-XSWI6466.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs +158 -0
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-number-widget-view.component-CP5aboLU.mjs +55 -0
- package/fesm2022/acorex-platform-common-number-widget-view.component-CP5aboLU.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-password-widget-column.component-CGxTbd_S.mjs +90 -0
- package/fesm2022/acorex-platform-common-password-widget-column.component-CGxTbd_S.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-password-widget-edit.component-CHQ_Kp4t.mjs +65 -0
- package/fesm2022/acorex-platform-common-password-widget-edit.component-CHQ_Kp4t.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-password-widget-view.component-BQ9jlt6g.mjs +129 -0
- package/fesm2022/acorex-platform-common-password-widget-view.component-BQ9jlt6g.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-phone-widget-column.component-RJp6wHul.mjs +116 -0
- package/fesm2022/acorex-platform-common-phone-widget-column.component-RJp6wHul.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-phone-widget-edit.component-BB5wTbjd.mjs +270 -0
- package/fesm2022/acorex-platform-common-phone-widget-edit.component-BB5wTbjd.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-phone-widget-view.component-SIzFWfjV.mjs +146 -0
- package/fesm2022/acorex-platform-common-phone-widget-view.component-SIzFWfjV.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-rich-text-widget-column.component-Ced0WqvI.mjs +86 -0
- package/fesm2022/acorex-platform-common-rich-text-widget-column.component-Ced0WqvI.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CnH3MjYz.mjs +90 -0
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CnH3MjYz.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-BIRyPRtw.mjs +59 -0
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-BIRyPRtw.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-column.component-DxeK2RPc.mjs +70 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-column.component-DxeK2RPc.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-CBLEeILz.mjs +77 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-CBLEeILz.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-B01t7mso.mjs +66 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-B01t7mso.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-QJMp11dd.mjs +70 -0
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-QJMp11dd.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-BQiY7RIp.mjs +149 -0
- package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-BQiY7RIp.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEhRqgEn.mjs +64 -0
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEhRqgEn.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-string-widget-filter.component--L4PeRCB.mjs +148 -0
- package/fesm2022/acorex-platform-common-string-widget-filter.component--L4PeRCB.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-text-widget-column.component-D-mLfzKJ.mjs +71 -0
- package/fesm2022/acorex-platform-common-text-widget-column.component-D-mLfzKJ.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-text-widget-edit.component-CN7OyTfJ.mjs +184 -0
- package/fesm2022/acorex-platform-common-text-widget-edit.component-CN7OyTfJ.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-text-widget-view.component-B-R4-5Ra.mjs +91 -0
- package/fesm2022/acorex-platform-common-text-widget-view.component-B-R4-5Ra.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-toggle-widget-column.component-B5NFRPgX.mjs +81 -0
- package/fesm2022/acorex-platform-common-toggle-widget-column.component-B5NFRPgX.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CLWHwf8V.mjs +47 -0
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CLWHwf8V.mjs.map +1 -0
- package/fesm2022/acorex-platform-common-toggle-widget-view.component-Di2S7vub.mjs +73 -0
- package/fesm2022/acorex-platform-common-toggle-widget-view.component-Di2S7vub.mjs.map +1 -0
- package/fesm2022/acorex-platform-common.mjs +168 -168
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +87 -0
- package/fesm2022/acorex-platform-core.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-builder.mjs +213 -85
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DkZGbnkz.mjs +26 -0
- package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DkZGbnkz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-designer.mjs +984 -0
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-entity.mjs +170 -114
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-B2XtNJo1.mjs +110 -0
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-B2XtNJo1.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs +93 -0
- package/fesm2022/acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs +91 -0
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts.mjs +82 -82
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/acorex-platform-mocks.mjs +10 -10
- package/fesm2022/acorex-platform-mocks.mjs.map +1 -1
- package/fesm2022/acorex-platform-native.mjs +7 -7
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Cv0mt0pU.mjs +100 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Cv0mt0pU.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs +88 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs +31 -0
- package/fesm2022/acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs +25 -0
- package/fesm2022/acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs +19 -0
- package/fesm2022/acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +42 -42
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs +54 -0
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs +58 -0
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs +58 -0
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs +41 -0
- package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +2920 -1714
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +22 -22
- package/layout/builder/lib/builder/builder.service.d.ts +10 -0
- package/layout/builder/lib/builder/layout.types.d.ts +1 -30
- package/layout/builder/lib/builder/widget-container.component.d.ts +5 -5
- package/layout/builder/lib/builder/widget-registery.service.d.ts +1 -0
- package/layout/builder/lib/builder/widget-renderer.component.d.ts +7 -2
- package/layout/builder/lib/builder/widget.types.d.ts +99 -43
- package/layout/designer/README.md +4 -0
- package/layout/designer/index.d.ts +7 -0
- package/layout/designer/lib/board/board.component.d.ts +10 -0
- package/layout/designer/lib/breadcrumbs/breadcrumbs.component.d.ts +11 -0
- package/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.d.ts +9 -0
- package/layout/designer/lib/designer/designer.component.d.ts +18 -0
- package/layout/designer/lib/designer.module.d.ts +6 -0
- package/layout/designer/lib/designer.service.d.ts +103 -0
- package/layout/designer/lib/outline/outline.component.d.ts +17 -0
- package/layout/designer/lib/property-viewer/widget-property-viewer.component.d.ts +41 -0
- package/layout/designer/lib/widget-designer-renderer.component.d.ts +38 -0
- package/layout/designer/lib/widget-picker/widget-picker.component.d.ts +9 -0
- package/layout/entity/lib/widgets/lookup-widget/index.d.ts +0 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.d.ts +2 -2
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +10 -9
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.d.ts +2 -2
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.d.ts +2 -2
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +14 -2
- package/package.json +13 -2
- package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +3 -3
- package/widgets/index.d.ts +2 -0
- package/widgets/lib/properties/editors.props.d.ts +26 -0
- package/widgets/lib/properties/groups.d.ts +5 -0
- package/widgets/lib/properties/index.d.ts +3 -0
- package/widgets/lib/properties/table-column.props.d.ts +2 -0
- package/widgets/lib/widgets/actions/button-widget/button-widget-view.component.d.ts +15 -0
- package/widgets/lib/widgets/actions/button-widget/button-widget.config.d.ts +2 -0
- package/widgets/lib/widgets/actions/button-widget/index.d.ts +2 -0
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.d.ts +9 -0
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.d.ts +15 -0
- package/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.d.ts +9 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.d.ts +12 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-view.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/color-box-widget/color-box-widget.config.d.ts +2 -0
- package/widgets/lib/widgets/editors/color-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-column.component.d.ts +8 -0
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.d.ts +32 -0
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/contact-widget/contact-widget-view.component.d.ts +19 -0
- package/widgets/lib/widgets/editors/contact-widget/contact.type.d.ts +5 -0
- package/widgets/lib/widgets/editors/contact-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +14 -0
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +24 -0
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +11 -0
- package/widgets/lib/widgets/editors/date-time-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-column.component.d.ts +16 -0
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-edit.component.d.ts +32 -0
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/widgets/editors/email-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-edit.component.d.ts +24 -0
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-view.component.d.ts +29 -0
- package/widgets/lib/widgets/editors/file-box-widget/file-box-widget.service.d.ts +12 -0
- package/widgets/lib/widgets/editors/file-box-widget/index.d.ts +7 -0
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-edit.component.d.ts +15 -0
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-view.component.d.ts +15 -0
- package/widgets/lib/widgets/editors/gallery-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/large-text-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-edit.component.d.ts +14 -0
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-view.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/link-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/link-widget/link-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/link-widget/link-widget-edit.component.d.ts +38 -0
- package/widgets/lib/widgets/editors/link-widget/link-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/link-widget/link-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/link-widget/link-widget-view.component.d.ts +13 -0
- package/widgets/lib/widgets/editors/map-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-edit.component.d.ts +15 -0
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-view.component.d.ts +16 -0
- package/widgets/lib/widgets/editors/number-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-column.component.d.ts +8 -0
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-edit.component.d.ts +25 -0
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/widgets/editors/password-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-edit.component.d.ts +10 -0
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-view.component.d.ts +14 -0
- package/widgets/lib/widgets/editors/phone-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-column.component.d.ts +16 -0
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +29 -0
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/widgets/editors/rich-text-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-popup.component.d.ts +9 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-column.component.d.ts +14 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +11 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-view.component.d.ts +14 -0
- package/widgets/lib/widgets/editors/select-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.d.ts +16 -0
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-view.component.d.ts +12 -0
- package/widgets/lib/widgets/editors/selection-list-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-column.component.d.ts +14 -0
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +16 -0
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-view.component.d.ts +11 -0
- package/widgets/lib/widgets/editors/signature-pad-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +23 -0
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +8 -0
- package/widgets/lib/widgets/editors/text-box-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-column.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.d.ts +18 -0
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.d.ts +8 -0
- package/widgets/lib/widgets/editors/toggle-widget/index.d.ts +6 -0
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-column.component.d.ts +9 -0
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-edit.component.d.ts +10 -0
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-filter.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-view.component.d.ts +9 -0
- package/widgets/lib/widgets/index.d.ts +22 -0
- package/widgets/lib/widgets/layout/block-widget/block-widget-designer.component.d.ts +11 -0
- package/widgets/lib/widgets/layout/block-widget/block-widget-view.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/block-widget/index.d.ts +3 -0
- package/widgets/lib/widgets/layout/page-widget/index.d.ts +2 -0
- package/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.d.ts +8 -0
- package/widgets/lib/widgets/layout/page-widget/page-widget-view.component.d.ts +8 -0
- package/widgets/lib/widgets/layout/page-widget/page-widget.config.d.ts +2 -0
- package/widgets/lib/widgets/layout/repeater-widget/index.d.ts +5 -0
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-designer.component.d.ts +8 -0
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-edit.component.d.ts +6 -0
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-print.component.d.ts +6 -0
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-view.component.d.ts +11 -0
- package/widgets/lib/widgets/layout/repeater-widget/repeater-widget.config.d.ts +2 -0
- package/widgets/lib/widgets/layout/text-block-widget/index.d.ts +2 -0
- package/widgets/lib/widgets/layout/text-block-widget/text-block-widget-view.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.d.ts +2 -0
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-column.component.mjs +0 -45
- package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-edit.component.mjs +0 -45
- package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-view.component.mjs +0 -54
- package/esm2022/widgets/lib/editors/checkbox/checkbox-widget.config.mjs +0 -15
- package/esm2022/widgets/lib/editors/checkbox/index.mjs +0 -3
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget-edit.component.mjs +0 -267
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget-view.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/contact-widget/contact-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/contact-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/contact-widget/popup-component.mjs +0 -78
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +0 -44
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +0 -122
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +0 -45
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/date-time-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-column.component.mjs +0 -66
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.mjs +0 -228
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-view.component.mjs +0 -111
- package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/email-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.mjs +0 -189
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-view.component.mjs +0 -147
- package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/file-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.mjs +0 -172
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-types.mjs +0 -2
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-view.component.mjs +0 -159
- package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/gallery-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/large-text-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-column.component.mjs +0 -23
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-edit.component.mjs +0 -47
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-view.component.mjs +0 -31
- package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/link-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/link-widget/link-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/link-widget/link-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/link-widget/link-widget-edit.component.mjs +0 -391
- package/esm2022/widgets/lib/editors/link-widget/link-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/link-widget/link-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/link-widget/link-widget-view.component.mjs +0 -120
- package/esm2022/widgets/lib/editors/link-widget/link-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/map-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.mjs +0 -92
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-view.component.mjs +0 -65
- package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/number-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-column.component.mjs +0 -38
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.mjs +0 -138
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-view.component.mjs +0 -53
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget.config.mjs +0 -27
- package/esm2022/widgets/lib/editors/password-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.mjs +0 -39
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-view.component.mjs +0 -73
- package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/phone-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.mjs +0 -66
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.mjs +0 -220
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.mjs +0 -113
- package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/rich-text-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.mjs +0 -23
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.mjs +0 -63
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.mjs +0 -39
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/select-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.mjs +0 -80
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-view.component.mjs +0 -60
- package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/selection-list-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.mjs +0 -41
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.mjs +0 -58
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.mjs +0 -41
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/signature-pad-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +0 -140
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +0 -42
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/editors/text-box-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-column.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.mjs +0 -121
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-view.component.mjs +0 -40
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget.config.mjs +0 -25
- package/esm2022/widgets/lib/editors/toggle-widget/index.mjs +0 -8
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-column.component.mjs +0 -47
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.mjs +0 -27
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.mjs +0 -20
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-print.component.mjs +0 -19
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-view.component.mjs +0 -47
- package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget.config.mjs +0 -24
- package/esm2022/widgets/lib/layout/block-widget/block-widget.component.mjs +0 -39
- package/esm2022/widgets/lib/layout/block-widget/block-widget.config.mjs +0 -9
- package/esm2022/widgets/lib/layout/block-widget/index.mjs +0 -3
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-BtnVjoMi.mjs +0 -179
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-BtnVjoMi.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-0-hGLYLK.mjs +0 -86
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-0-hGLYLK.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CMkjO_x1.mjs +0 -170
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CMkjO_x1.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-change-password.component-CULJjn0l.mjs +0 -177
- package/fesm2022/acorex-platform-common-change-password.component-CULJjn0l.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-column.component-C91gG8nm.mjs +0 -77
- package/fesm2022/acorex-platform-common-checkbox-widget-column.component-C91gG8nm.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs +0 -47
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BDAtJB1B.mjs +0 -71
- package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BDAtJB1B.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs +0 -67
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DdqtbOY1.mjs +0 -199
- package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DdqtbOY1.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-BjtIJkeC.mjs +0 -234
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-BjtIJkeC.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dxmnor_-.mjs +0 -94
- package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dxmnor_-.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-column.component-DlPoexcx.mjs +0 -98
- package/fesm2022/acorex-platform-common-email-widget-column.component-DlPoexcx.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-edit.component-CLl0gmdM.mjs +0 -270
- package/fesm2022/acorex-platform-common-email-widget-edit.component-CLl0gmdM.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-view.component-C4M7KGUS.mjs +0 -131
- package/fesm2022/acorex-platform-common-email-widget-view.component-C4M7KGUS.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs +0 -50
- package/fesm2022/acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-edit.component-ZXhaXwWN.mjs +0 -222
- package/fesm2022/acorex-platform-common-file-widget-edit.component-ZXhaXwWN.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-filter.component-DqYmxdx_.mjs +0 -52
- package/fesm2022/acorex-platform-common-file-widget-filter.component-DqYmxdx_.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-view.component-B0C9oJLT.mjs +0 -175
- package/fesm2022/acorex-platform-common-file-widget-view.component-B0C9oJLT.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-edit.component-DB0-6pik.mjs +0 -210
- package/fesm2022/acorex-platform-common-gallery-widget-edit.component-DB0-6pik.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-Btrq4HP9.mjs +0 -51
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-Btrq4HP9.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-view.component-Bp5cEEiY.mjs +0 -194
- package/fesm2022/acorex-platform-common-gallery-widget-view.component-Bp5cEEiY.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DJhPlQ0G.mjs +0 -61
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DJhPlQ0G.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-CtvP7V_w.mjs +0 -67
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-CtvP7V_w.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-JjtWsg2g.mjs +0 -118
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-JjtWsg2g.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-B4C5JB_p.mjs +0 -153
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-B4C5JB_p.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs +0 -78
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-edit.component-BjrRrklq.mjs +0 -115
- package/fesm2022/acorex-platform-common-map-widget-edit.component-BjrRrklq.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-view.component-C5gL9-oB.mjs +0 -87
- package/fesm2022/acorex-platform-common-map-widget-view.component-C5gL9-oB.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BQSYcyso.mjs +0 -96
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BQSYcyso.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-BjqtP0ls.mjs +0 -158
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-BjqtP0ls.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-view.component-B4Yt68Vn.mjs +0 -155
- package/fesm2022/acorex-platform-common-messenger-widget-view.component-B4Yt68Vn.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-edit.component-D9dC514F.mjs +0 -69
- package/fesm2022/acorex-platform-common-number-widget-edit.component-D9dC514F.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BkKeBL6p.mjs +0 -158
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BkKeBL6p.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs +0 -55
- package/fesm2022/acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-column.component-C0-x1_Np.mjs +0 -90
- package/fesm2022/acorex-platform-common-password-widget-column.component-C0-x1_Np.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-edit.component-BbYqIGEP.mjs +0 -65
- package/fesm2022/acorex-platform-common-password-widget-edit.component-BbYqIGEP.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-view.component-B6vGWi9I.mjs +0 -129
- package/fesm2022/acorex-platform-common-password-widget-view.component-B6vGWi9I.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-phone-widget-column.component-uAeAPCog.mjs +0 -116
- package/fesm2022/acorex-platform-common-phone-widget-column.component-uAeAPCog.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-phone-widget-edit.component-Dj_tdhZw.mjs +0 -270
- package/fesm2022/acorex-platform-common-phone-widget-edit.component-Dj_tdhZw.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-phone-widget-view.component-D_A5NXzA.mjs +0 -146
- package/fesm2022/acorex-platform-common-phone-widget-view.component-D_A5NXzA.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-column.component-DDJn1WqG.mjs +0 -86
- package/fesm2022/acorex-platform-common-rich-text-widget-column.component-DDJn1WqG.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-f30-VPMJ.mjs +0 -90
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-f30-VPMJ.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-Y214kMe4.mjs +0 -59
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-Y214kMe4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-column.component-4uQzk7WQ.mjs +0 -70
- package/fesm2022/acorex-platform-common-selection-list-widget-column.component-4uQzk7WQ.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-BY7A969M.mjs +0 -77
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-BY7A969M.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-hbxBcirf.mjs +0 -66
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-hbxBcirf.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-HzxEiWgp.mjs +0 -70
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-HzxEiWgp.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-C6VI3F_S.mjs +0 -149
- package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-C6VI3F_S.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEiBtv9t.mjs +0 -64
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEiBtv9t.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-string-widget-filter.component-BZiyRHfg.mjs +0 -148
- package/fesm2022/acorex-platform-common-string-widget-filter.component-BZiyRHfg.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-column.component-qXusAevm.mjs +0 -71
- package/fesm2022/acorex-platform-common-text-widget-column.component-qXusAevm.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-edit.component-DSwPteMX.mjs +0 -184
- package/fesm2022/acorex-platform-common-text-widget-edit.component-DSwPteMX.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-view.component-CKg9nvbY.mjs +0 -91
- package/fesm2022/acorex-platform-common-text-widget-view.component-CKg9nvbY.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-column.component-_IrciAj-.mjs +0 -81
- package/fesm2022/acorex-platform-common-toggle-widget-column.component-_IrciAj-.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs +0 -47
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-view.component-B5JwQ8X-.mjs +0 -73
- package/fesm2022/acorex-platform-common-toggle-widget-view.component-B5JwQ8X-.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-DgPPnU8S.mjs +0 -110
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-DgPPnU8S.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-entity-import-view.component-V50y5Jjs.mjs +0 -93
- package/fesm2022/acorex-platform-layouts-entity-import-view.component-V50y5Jjs.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-Bwz4yVpK.mjs +0 -91
- package/fesm2022/acorex-platform-layouts-entity-modify-view.component-Bwz4yVpK.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-qOxuoK6c.mjs +0 -99
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-qOxuoK6c.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BJcpG94Q.mjs +0 -88
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BJcpG94Q.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-error-401.component-BeQ4_BgW.mjs +0 -31
- package/fesm2022/acorex-platform-themes-default-error-401.component-BeQ4_BgW.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-error-404.component-BYDiT6Ns.mjs +0 -25
- package/fesm2022/acorex-platform-themes-default-error-404.component-BYDiT6Ns.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-error-offline.component-DUtW3w_g.mjs +0 -19
- package/fesm2022/acorex-platform-themes-default-error-offline.component-DUtW3w_g.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-CFCwedxX.mjs +0 -48
- package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-CFCwedxX.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-CCTIjDb0.mjs +0 -57
- package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-CCTIjDb0.mjs.map +0 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/checkbox/checkbox-widget-column.component.d.ts +0 -9
- package/widgets/lib/editors/checkbox/checkbox-widget-edit.component.d.ts +0 -13
- package/widgets/lib/editors/checkbox/checkbox-widget-view.component.d.ts +0 -9
- package/widgets/lib/editors/contact-widget/contact-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/contact-widget/contact-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/contact-widget/contact-widget-edit.component.d.ts +0 -36
- package/widgets/lib/editors/contact-widget/contact-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/contact-widget/contact-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/contact-widget/contact-widget-view.component.d.ts +0 -6
- package/widgets/lib/editors/contact-widget/index.d.ts +0 -7
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +0 -14
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +0 -24
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +0 -11
- package/widgets/lib/editors/date-time-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/email-box-widget/email-box-widget-column.component.d.ts +0 -16
- package/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.d.ts +0 -31
- package/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/email-box-widget/email-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/email-box-widget/email-box-widget-view.component.d.ts +0 -12
- package/widgets/lib/editors/email-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/file-box-widget/file-box-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.d.ts +0 -18
- package/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/file-box-widget/file-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/file-box-widget/file-box-widget-view.component.d.ts +0 -17
- package/widgets/lib/editors/file-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/gallery-widget/gallery-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.d.ts +0 -15
- package/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/gallery-widget/gallery-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/gallery-widget/gallery-widget-view.component.d.ts +0 -15
- package/widgets/lib/editors/gallery-widget/index.d.ts +0 -7
- package/widgets/lib/editors/large-text-widget/index.d.ts +0 -7
- package/widgets/lib/editors/large-text-widget/large-text-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/large-text-widget/large-text-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/large-text-widget/large-text-widget-edit.component.d.ts +0 -10
- package/widgets/lib/editors/large-text-widget/large-text-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/large-text-widget/large-text-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/large-text-widget/large-text-widget-view.component.d.ts +0 -6
- package/widgets/lib/editors/link-widget/index.d.ts +0 -7
- package/widgets/lib/editors/link-widget/link-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/link-widget/link-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/link-widget/link-widget-edit.component.d.ts +0 -38
- package/widgets/lib/editors/link-widget/link-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/link-widget/link-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/link-widget/link-widget-view.component.d.ts +0 -13
- package/widgets/lib/editors/map-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/map-box-widget/map-box-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.d.ts +0 -15
- package/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/map-box-widget/map-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/map-box-widget/map-box-widget-view.component.d.ts +0 -16
- package/widgets/lib/editors/number-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/number-box-widget/number-box-widget-column.component.d.ts +0 -8
- package/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.d.ts +0 -28
- package/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/number-box-widget/number-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/number-box-widget/number-box-widget-view.component.d.ts +0 -14
- package/widgets/lib/editors/password-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/password-box-widget/password-box-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.d.ts +0 -8
- package/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/password-box-widget/password-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/password-box-widget/password-box-widget-view.component.d.ts +0 -13
- package/widgets/lib/editors/phone-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.d.ts +0 -16
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +0 -30
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.d.ts +0 -12
- package/widgets/lib/editors/rich-text-widget/index.d.ts +0 -7
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +0 -33
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.d.ts +0 -10
- package/widgets/lib/editors/select-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/select-box-widget/select-box-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.d.ts +0 -15
- package/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/select-box-widget/select-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/select-box-widget/select-box-widget-view.component.d.ts +0 -12
- package/widgets/lib/editors/selection-list-widget/index.d.ts +0 -7
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.d.ts +0 -14
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +0 -13
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.d.ts +0 -11
- package/widgets/lib/editors/signature-pad-widget/index.d.ts +0 -7
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +0 -21
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +0 -7
- package/widgets/lib/editors/text-box-widget/index.d.ts +0 -7
- package/widgets/lib/editors/text-box-widget/text-box-widget-column.component.d.ts +0 -6
- package/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.d.ts +0 -19
- package/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/text-box-widget/text-box-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/text-box-widget/text-box-widget-view.component.d.ts +0 -8
- package/widgets/lib/editors/toggle-widget/index.d.ts +0 -7
- package/widgets/lib/editors/toggle-widget/toggle-widget-column.component.d.ts +0 -9
- package/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.d.ts +0 -6
- package/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.d.ts +0 -7
- package/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.d.ts +0 -6
- package/widgets/lib/editors/toggle-widget/toggle-widget-print.component.d.ts +0 -6
- package/widgets/lib/editors/toggle-widget/toggle-widget-view.component.d.ts +0 -9
- package/widgets/lib/layout/block-widget/block-widget.component.d.ts +0 -8
- package/widgets/lib/layout/block-widget/index.d.ts +0 -2
- /package/widgets/lib/{editors → widgets/editors}/checkbox/checkbox-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/checkbox/index.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/contact-widget/contact-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/contact-widget/popup-component.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/date-time-box-widget/date-time-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/email-box-widget/email-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/file-box-widget/file-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/gallery-widget/gallery-widget-types.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/gallery-widget/gallery-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/large-text-widget/large-text-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/link-widget/link-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/map-box-widget/map-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/number-box-widget/number-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/password-box-widget/password-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/phone-box-widget/phone-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/rich-text-widget/rich-text-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/select-box-widget/select-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/selection-list-widget/selection-list-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/signature-pad-widget/signature-pad-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/text-box-widget/text-box-widget.config.d.ts +0 -0
- /package/widgets/lib/{editors → widgets/editors}/toggle-widget/toggle-widget.config.d.ts +0 -0
- /package/widgets/lib/{layout → widgets/layout}/block-widget/block-widget.config.d.ts +0 -0
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AXPLargeTextWidgetPrintComponent extends AXPWidgetBase {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLargeTextWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLargeTextWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLargeTextWidgetPrintComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{
|
|
12
|
-
template: ``,
|
|
13
|
-
standalone: true,
|
|
14
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
15
|
-
imports: [CommonModule],
|
|
16
|
-
inputs: []
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFyZ2UtdGV4dC13aWRnZXQtcHJpbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9sYXJnZS10ZXh0LXdpZGdldC9sYXJnZS10ZXh0LXdpZGdldC1wcmludC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8sZ0NBQWlDLFNBQVEsYUFBa0I7OEdBQTNELGdDQUFnQztrR0FBaEMsZ0NBQWdDLCtGQU5qQyxFQUFFLDJEQUdGLFlBQVk7OzJGQUdYLGdDQUFnQztrQkFQNUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQTGFyZ2VUZXh0V2lkZ2V0UHJpbnRDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRCYXNlPGFueT4ge30iXX0=
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AXPLargeTextWidgetViewComponent extends AXPWidgetBase {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLargeTextWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLargeTextWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
8
|
-
<div class="ax-border ax-p-3 ax-rounded-lg ax-max-w-full">
|
|
9
|
-
<span>
|
|
10
|
-
{{ getValue() }}
|
|
11
|
-
</span>
|
|
12
|
-
</div>
|
|
13
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
14
|
-
}
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLargeTextWidgetViewComponent, decorators: [{
|
|
16
|
-
type: Component,
|
|
17
|
-
args: [{
|
|
18
|
-
template: `
|
|
19
|
-
<div class="ax-border ax-p-3 ax-rounded-lg ax-max-w-full">
|
|
20
|
-
<span>
|
|
21
|
-
{{ getValue() }}
|
|
22
|
-
</span>
|
|
23
|
-
</div>
|
|
24
|
-
`,
|
|
25
|
-
standalone: true,
|
|
26
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
27
|
-
imports: [CommonModule],
|
|
28
|
-
inputs: [],
|
|
29
|
-
}]
|
|
30
|
-
}] });
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFyZ2UtdGV4dC13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9lZGl0b3JzL2xhcmdlLXRleHQtd2lkZ2V0L2xhcmdlLXRleHQtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNoRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFlbkUsTUFBTSxPQUFPLCtCQUFnQyxTQUFRLGFBQWtCOzhHQUExRCwrQkFBK0I7a0dBQS9CLCtCQUErQiwrRkFaaEM7Ozs7OztHQU1ULDJEQUdTLFlBQVk7OzJGQUdYLCtCQUErQjtrQkFiM0MsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7OztHQU1UO29CQUNELFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldEJhc2UgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJheC1ib3JkZXIgYXgtcC0zIGF4LXJvdW5kZWQtbGcgYXgtbWF4LXctZnVsbFwiPlxuICAgICAgPHNwYW4+XG4gICAgICAgIHt7IGdldFZhbHVlKCkgfX1cbiAgICAgIDwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBMYXJnZVRleHRXaWRnZXRWaWV3Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZTxhbnk+IHt9XG4iXX0=
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export const AXPLargeTextWidget = {
|
|
2
|
-
name: "large-text",
|
|
3
|
-
components: {
|
|
4
|
-
view: {
|
|
5
|
-
component: () => import('./large-text-widget-view.component').then((c) => c.AXPLargeTextWidgetViewComponent),
|
|
6
|
-
},
|
|
7
|
-
edit: {
|
|
8
|
-
component: () => import('./large-text-widget-edit.component').then((c) => c.AXPLargeTextWidgetEditComponent),
|
|
9
|
-
},
|
|
10
|
-
filter: {
|
|
11
|
-
component: () => import('./large-text-widget-filter.component').then((c) => c.AXPLargeTextWidgetFilterComponent),
|
|
12
|
-
},
|
|
13
|
-
column: {
|
|
14
|
-
component: () => import('./large-text-widget-column.component').then((c) => c.AXPLargeTextWidgetColumnComponent),
|
|
15
|
-
},
|
|
16
|
-
print: {
|
|
17
|
-
component: () => import('./large-text-widget-print.component').then((c) => c.AXPLargeTextWidgetPrintComponent),
|
|
18
|
-
},
|
|
19
|
-
designer: {
|
|
20
|
-
component: () => import('./large-text-widget-designer.component').then((c) => c.AXPLargeTextWidgetDesignerComponent),
|
|
21
|
-
},
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFyZ2UtdGV4dC13aWRnZXQuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9sYXJnZS10ZXh0LXdpZGdldC9sYXJnZS10ZXh0LXdpZGdldC5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsTUFBTSxDQUFDLE1BQU0sa0JBQWtCLEdBQW9CO0lBQ2pELElBQUksRUFBRSxZQUFZO0lBQ2xCLFVBQVUsRUFBRTtRQUNWLElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsb0NBQW9DLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywrQkFBK0IsQ0FBQztTQUM3RztRQUNELElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsb0NBQW9DLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywrQkFBK0IsQ0FBQztTQUM3RztRQUNELE1BQU0sRUFBRTtZQUNOLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsc0NBQXNDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxpQ0FBaUMsQ0FBQztTQUNqSDtRQUNELE1BQU0sRUFBRTtZQUNOLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsc0NBQXNDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxpQ0FBaUMsQ0FBQztTQUNqSDtRQUNELEtBQUssRUFBRTtZQUNMLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMscUNBQXFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxnQ0FBZ0MsQ0FBQztTQUMvRztRQUNELFFBQVEsRUFBRTtZQUNSLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsd0NBQXdDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxtQ0FBbUMsQ0FBQztTQUNySDtLQUNGO0NBQ0YsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbmZpZyB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuZXhwb3J0IGNvbnN0IEFYUExhcmdlVGV4dFdpZGdldDogQVhQV2lkZ2V0Q29uZmlnID0ge1xuICBuYW1lOiBcImxhcmdlLXRleHRcIixcbiAgY29tcG9uZW50czoge1xuICAgIHZpZXc6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL2xhcmdlLXRleHQtd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBMYXJnZVRleHRXaWRnZXRWaWV3Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGVkaXQ6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL2xhcmdlLXRleHQtd2lkZ2V0LWVkaXQuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBMYXJnZVRleHRXaWRnZXRFZGl0Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGZpbHRlcjoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vbGFyZ2UtdGV4dC13aWRnZXQtZmlsdGVyLmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQTGFyZ2VUZXh0V2lkZ2V0RmlsdGVyQ29tcG9uZW50KSxcbiAgICB9LFxuICAgIGNvbHVtbjoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vbGFyZ2UtdGV4dC13aWRnZXQtY29sdW1uLmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQTGFyZ2VUZXh0V2lkZ2V0Q29sdW1uQ29tcG9uZW50KSxcbiAgICB9LFxuICAgIHByaW50OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9sYXJnZS10ZXh0LXdpZGdldC1wcmludC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUExhcmdlVGV4dFdpZGdldFByaW50Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGRlc2lnbmVyOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9sYXJnZS10ZXh0LXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUExhcmdlVGV4dFdpZGdldERlc2lnbmVyQ29tcG9uZW50KSxcbiAgICB9LFxuICB9XG59Il19
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from './link-widget-view.component';
|
|
2
|
-
export * from './link-widget-edit.component';
|
|
3
|
-
export * from './link-widget-filter.component';
|
|
4
|
-
export * from './link-widget-column.component';
|
|
5
|
-
export * from './link-widget-print.component';
|
|
6
|
-
export * from './link-widget-designer.component';
|
|
7
|
-
export * from './link-widget.config';
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9lZGl0b3JzL2xpbmstd2lkZ2V0L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGluay13aWRnZXQtZWRpdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saW5rLXdpZGdldC1maWx0ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGluay13aWRnZXQtY29sdW1uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LXByaW50LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LWRlc2lnbmVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LmNvbmZpZyc7Il19
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { AXPColumnWidgetBase } from '@acorex/platform/layout/builder';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AXPLinkWidgetColumnComponent extends AXPColumnWidgetBase {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLinkWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `{{rawValue}}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetColumnComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{
|
|
12
|
-
template: `{{rawValue}}`,
|
|
13
|
-
standalone: true,
|
|
14
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
15
|
-
imports: [CommonModule],
|
|
16
|
-
inputs: ['rawValue']
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtY29sdW1uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL2VkaXRvcnMvbGluay13aWRnZXQvbGluay13aWRnZXQtY29sdW1uLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN0RSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFRbkUsTUFBTSxPQUFPLDRCQUE2QixTQUFRLG1CQUF3Qjs4R0FBN0QsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsaUlBTjdCLGNBQWMsMkRBR2QsWUFBWTs7MkZBR1gsNEJBQTRCO2tCQVB4QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxjQUFjO29CQUN4QixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLENBQUMsVUFBVSxDQUFDO2lCQUNyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUENvbHVtbldpZGdldEJhc2UgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGB7e3Jhd1ZhbHVlfX1gLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogWydyYXdWYWx1ZSddXG59KVxuZXhwb3J0IGNsYXNzIEFYUExpbmtXaWRnZXRDb2x1bW5Db21wb25lbnQgZXh0ZW5kcyBBWFBDb2x1bW5XaWRnZXRCYXNlPGFueT4ge30iXX0=
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AXPLinkWidgetDesignerComponent extends AXPWidgetBase {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLinkWidgetDesignerComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetDesignerComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{
|
|
12
|
-
template: ``,
|
|
13
|
-
standalone: true,
|
|
14
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
15
|
-
imports: [CommonModule],
|
|
16
|
-
inputs: []
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9saW5rLXdpZGdldC9saW5rLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8sOEJBQStCLFNBQVEsYUFBa0I7OEdBQXpELDhCQUE4QjtrR0FBOUIsOEJBQThCLCtGQU4vQixFQUFFLDJEQUdGLFlBQVk7OzJGQUdYLDhCQUE4QjtrQkFQMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQTGlua1dpZGdldERlc2lnbmVyQ29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZTxhbnk+IHt9Il19
|
|
@@ -1,391 +0,0 @@
|
|
|
1
|
-
import { AXButtonModule } from '@acorex/components/button';
|
|
2
|
-
import { AXDataSource } from '@acorex/components/common';
|
|
3
|
-
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
4
|
-
import { AXFormModule } from '@acorex/components/form';
|
|
5
|
-
import { AXSelectBoxModule } from '@acorex/components/select-box';
|
|
6
|
-
import { AXTextBoxModule } from '@acorex/components/text-box';
|
|
7
|
-
import { AXTranslationService } from '@acorex/core/translation';
|
|
8
|
-
import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
|
|
9
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
10
|
-
import { CommonModule } from '@angular/common';
|
|
11
|
-
import { ChangeDetectionStrategy, Component, computed, inject } from '@angular/core';
|
|
12
|
-
import { FormsModule } from '@angular/forms';
|
|
13
|
-
import * as i0 from "@angular/core";
|
|
14
|
-
import * as i1 from "@angular/common";
|
|
15
|
-
import * as i2 from "@angular/forms";
|
|
16
|
-
import * as i3 from "@acorex/components/select-box";
|
|
17
|
-
import * as i4 from "@acorex/components/form";
|
|
18
|
-
import * as i5 from "@acorex/components/button";
|
|
19
|
-
import * as i6 from "@acorex/components/decorators";
|
|
20
|
-
import * as i7 from "@acorex/components/text-box";
|
|
21
|
-
export class AXPLinkWidgetEditComponent extends AXPWidgetBase {
|
|
22
|
-
constructor() {
|
|
23
|
-
super(...arguments);
|
|
24
|
-
this.validationService = inject(AXValidationService);
|
|
25
|
-
this.translateService = inject(AXTranslationService);
|
|
26
|
-
this.disabled = false;
|
|
27
|
-
this.clearButton = true;
|
|
28
|
-
this.hasLabel = true;
|
|
29
|
-
this.hasTitle = true;
|
|
30
|
-
this.labelTypes = ['Primary', 'Secondary'];
|
|
31
|
-
this.linkTypes = ['http', 'https', 'related'];
|
|
32
|
-
this.dataSource = new AXDataSource({
|
|
33
|
-
pageSize: 10,
|
|
34
|
-
key: 'id',
|
|
35
|
-
load: (e) => {
|
|
36
|
-
return new Promise((resolve) => {
|
|
37
|
-
setTimeout(() => {
|
|
38
|
-
const list = this.linkTypes;
|
|
39
|
-
const result = e.filter ? list.filter((item) => item.includes(e.filter?.value)) : list;
|
|
40
|
-
resolve({
|
|
41
|
-
items: result.slice(e.skip, e.skip + e.take),
|
|
42
|
-
total: result.length,
|
|
43
|
-
});
|
|
44
|
-
}, e.skip == 0 ? 100 : 300);
|
|
45
|
-
});
|
|
46
|
-
},
|
|
47
|
-
});
|
|
48
|
-
this.internalValue = computed(() => this.getValueAsArrayOfObjects());
|
|
49
|
-
this._validationRules = [];
|
|
50
|
-
this.convertItem = (item, e) => {
|
|
51
|
-
if (typeof item === 'object')
|
|
52
|
-
return { ...item, value: e.value };
|
|
53
|
-
else
|
|
54
|
-
return e.value;
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
ngOnInit() {
|
|
58
|
-
super.ngOnInit();
|
|
59
|
-
this.getValueAsArrayOfObjects();
|
|
60
|
-
}
|
|
61
|
-
get validationRules() {
|
|
62
|
-
return this._validationRules;
|
|
63
|
-
}
|
|
64
|
-
set validationRules(v) {
|
|
65
|
-
this._validationRules = v;
|
|
66
|
-
}
|
|
67
|
-
getValueAsArrayOfObjects() {
|
|
68
|
-
const value = this.getValue();
|
|
69
|
-
if (Array.isArray(value)) {
|
|
70
|
-
return value.map((item) => {
|
|
71
|
-
return typeof item === 'object'
|
|
72
|
-
? {
|
|
73
|
-
value: item.value ?? '-',
|
|
74
|
-
title: item.title,
|
|
75
|
-
label: this.hasLabel ? item.label || 'primary' : undefined,
|
|
76
|
-
icon: item.icon,
|
|
77
|
-
}
|
|
78
|
-
: {
|
|
79
|
-
value: item,
|
|
80
|
-
title: '',
|
|
81
|
-
icon: '',
|
|
82
|
-
label: this.hasLabel ? 'Primary' : undefined,
|
|
83
|
-
};
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
else {
|
|
87
|
-
return typeof value === 'object' ? [value] : [{ value: value || '' }];
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
handleValueChange(e, selectedIndex) {
|
|
91
|
-
const { name, value, isUserInteraction } = e;
|
|
92
|
-
if (isUserInteraction) {
|
|
93
|
-
console.log(e);
|
|
94
|
-
const newValues = this.internalValue().map((item, index) => selectedIndex === index ? (name === 'value' ? this.convertItem(item, e) : { ...item, [name]: value }) : item);
|
|
95
|
-
console.log(newValues);
|
|
96
|
-
if (this.multiple)
|
|
97
|
-
this.setValue(newValues);
|
|
98
|
-
else
|
|
99
|
-
this.setValue(newValues[0]);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
// protected handleLabelChange(e: AXValueChangedEvent, selectedIndex: number) {
|
|
103
|
-
// if (e.isUserInteraction) {
|
|
104
|
-
// const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, label: e.value } : item));
|
|
105
|
-
// if (this.multiple) this.setValue(newValues);
|
|
106
|
-
// else this.setValue(newValues[0]);
|
|
107
|
-
// }
|
|
108
|
-
// }
|
|
109
|
-
addItem() {
|
|
110
|
-
const newValues = [
|
|
111
|
-
...this.internalValue(),
|
|
112
|
-
{
|
|
113
|
-
value: '',
|
|
114
|
-
title: '',
|
|
115
|
-
label: 'primary',
|
|
116
|
-
icon: '',
|
|
117
|
-
},
|
|
118
|
-
];
|
|
119
|
-
this.setValue(newValues);
|
|
120
|
-
}
|
|
121
|
-
deleteItem(deletedIndex) {
|
|
122
|
-
const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
|
|
123
|
-
this.setValue(newValues);
|
|
124
|
-
}
|
|
125
|
-
generateClasses(elementName, type = 'single') {
|
|
126
|
-
if (type === 'multiple') {
|
|
127
|
-
switch (elementName) {
|
|
128
|
-
case 'url':
|
|
129
|
-
if (this.hasTitle || this.hasLabel) {
|
|
130
|
-
//already has ax-col-start-1 ax-col-end-13
|
|
131
|
-
return ['lg:ax-col-end-7'];
|
|
132
|
-
}
|
|
133
|
-
else {
|
|
134
|
-
return ['lg:ax-col-end-12'];
|
|
135
|
-
}
|
|
136
|
-
case 'title':
|
|
137
|
-
if (this.hasLabel) {
|
|
138
|
-
return ['ax-col-start-1 ax-col-end-7 lg:ax-col-start-7 lg:ax-col-end-10'];
|
|
139
|
-
}
|
|
140
|
-
else {
|
|
141
|
-
return ['ax-col-start-1 ax-col-end-11 lg:ax-col-start-7 lg:ax-col-end-12'];
|
|
142
|
-
}
|
|
143
|
-
case 'label':
|
|
144
|
-
if (this.hasTitle) {
|
|
145
|
-
return ['ax-col-start-7 ax-col-end-11 lg:ax-col-start-10 lg:ax-col-end-12'];
|
|
146
|
-
}
|
|
147
|
-
else {
|
|
148
|
-
return ['ax-col-start-1 ax-col-end-11 lg:ax-col-start-7 lg:ax-col-end-12'];
|
|
149
|
-
}
|
|
150
|
-
default:
|
|
151
|
-
return [''];
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
else if (type === 'single') {
|
|
155
|
-
switch (elementName) {
|
|
156
|
-
case 'url':
|
|
157
|
-
if (this.hasTitle || this.hasLabel) {
|
|
158
|
-
//already has ax-col-start-1 ax-col-end-13
|
|
159
|
-
return ['lg:ax-col-end-7'];
|
|
160
|
-
}
|
|
161
|
-
else {
|
|
162
|
-
return ['lg:ax-col-end-13'];
|
|
163
|
-
}
|
|
164
|
-
case 'title':
|
|
165
|
-
if (this.hasLabel) {
|
|
166
|
-
return ['ax-col-start-1 ax-col-end-7 lg:ax-col-start-7 lg:ax-col-end-10'];
|
|
167
|
-
}
|
|
168
|
-
else {
|
|
169
|
-
return ['ax-col-start-1 ax-col-end-13 lg:ax-col-start-7 lg:ax-col-end-13'];
|
|
170
|
-
}
|
|
171
|
-
case 'label':
|
|
172
|
-
if (this.hasTitle) {
|
|
173
|
-
return ['ax-col-start-7 ax-col-end-13 lg:ax-col-start-10 lg:ax-col-end-13'];
|
|
174
|
-
}
|
|
175
|
-
else {
|
|
176
|
-
return ['ax-col-start-1 ax-col-end-13 lg:ax-col-start-7 lg:ax-col-end-13'];
|
|
177
|
-
}
|
|
178
|
-
default:
|
|
179
|
-
return [''];
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
else {
|
|
183
|
-
return [''];
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
187
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPLinkWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
188
|
-
@if(multiple){ @for(item of internalValue();track $index) { @if(item){
|
|
189
|
-
<!-- TODO need to fix multiple -->
|
|
190
|
-
<ax-text-box
|
|
191
|
-
[ngModel]="item.value"
|
|
192
|
-
(onValueChanged)="handleValueChange($event, $index)"
|
|
193
|
-
type="text"
|
|
194
|
-
placeholder="Enter Link"
|
|
195
|
-
class="ax-col-start-1 ax-col-end-13"
|
|
196
|
-
[ngClass]="generateClasses('url', 'multiple')"
|
|
197
|
-
>
|
|
198
|
-
@for (validation of validationRules; track $index) {
|
|
199
|
-
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
200
|
-
}
|
|
201
|
-
<ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
|
|
202
|
-
</ax-text-box>
|
|
203
|
-
@if(hasTitle){
|
|
204
|
-
<ax-text-box
|
|
205
|
-
[ngModel]="item.title"
|
|
206
|
-
(onValueChanged)="handleValueChange($event, $index)"
|
|
207
|
-
placeholder="Choose Title..."
|
|
208
|
-
name="title"
|
|
209
|
-
[ngClass]="generateClasses('title', 'multiple')"
|
|
210
|
-
>
|
|
211
|
-
</ax-text-box>
|
|
212
|
-
} @if(hasLabel){
|
|
213
|
-
<ax-select-box
|
|
214
|
-
[dataSource]="labelTypes"
|
|
215
|
-
[ngModel]="item.label"
|
|
216
|
-
(onValueChanged)="handleValueChange($event, $index)"
|
|
217
|
-
placeholder="Choose Label..."
|
|
218
|
-
name="label"
|
|
219
|
-
[ngClass]="generateClasses('label', 'multiple')"
|
|
220
|
-
>
|
|
221
|
-
</ax-select-box>
|
|
222
|
-
}}
|
|
223
|
-
<ax-button
|
|
224
|
-
look="twotone"
|
|
225
|
-
color="danger"
|
|
226
|
-
(onClick)="deleteItem($index)"
|
|
227
|
-
class="ax-col-start-12 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end !ax-h-full"
|
|
228
|
-
>
|
|
229
|
-
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
230
|
-
</ax-button>
|
|
231
|
-
}
|
|
232
|
-
<ax-button
|
|
233
|
-
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
234
|
-
look="twotone"
|
|
235
|
-
(onClick)="addItem()"
|
|
236
|
-
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
237
|
-
>
|
|
238
|
-
<ax-prefix>
|
|
239
|
-
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
240
|
-
</ax-prefix>
|
|
241
|
-
</ax-button>
|
|
242
|
-
} @else{
|
|
243
|
-
<ax-text-box
|
|
244
|
-
[ngClass]="generateClasses('url', 'single')"
|
|
245
|
-
[ngModel]="internalValue()[0].value"
|
|
246
|
-
(onValueChanged)="handleValueChange($event, 0)"
|
|
247
|
-
type="text"
|
|
248
|
-
name="value"
|
|
249
|
-
placeholder="Link"
|
|
250
|
-
class="ax-col-start-1 ax-col-end-13"
|
|
251
|
-
>
|
|
252
|
-
@for (validation of validationRules; track $index) {
|
|
253
|
-
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
254
|
-
}
|
|
255
|
-
<ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
|
|
256
|
-
</ax-text-box>
|
|
257
|
-
@if(hasTitle){
|
|
258
|
-
<ax-text-box
|
|
259
|
-
[ngClass]="generateClasses('title', 'single')"
|
|
260
|
-
[ngModel]="internalValue()[0].title"
|
|
261
|
-
(onValueChanged)="handleValueChange($event, 0)"
|
|
262
|
-
type="text"
|
|
263
|
-
name="title"
|
|
264
|
-
placeholder="Title"
|
|
265
|
-
>
|
|
266
|
-
</ax-text-box>
|
|
267
|
-
} @if(hasLabel){
|
|
268
|
-
<ax-select-box
|
|
269
|
-
[ngClass]="generateClasses('label', 'single')"
|
|
270
|
-
[dataSource]="labelTypes"
|
|
271
|
-
[ngModel]="internalValue()[0].label"
|
|
272
|
-
(onValueChanged)="handleValueChange($event, 0)"
|
|
273
|
-
name="label"
|
|
274
|
-
placeholder="Label"
|
|
275
|
-
>
|
|
276
|
-
</ax-select-box>
|
|
277
|
-
} }
|
|
278
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { 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: i3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i6.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i6.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
279
|
-
}
|
|
280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetEditComponent, decorators: [{
|
|
281
|
-
type: Component,
|
|
282
|
-
args: [{
|
|
283
|
-
template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
284
|
-
@if(multiple){ @for(item of internalValue();track $index) { @if(item){
|
|
285
|
-
<!-- TODO need to fix multiple -->
|
|
286
|
-
<ax-text-box
|
|
287
|
-
[ngModel]="item.value"
|
|
288
|
-
(onValueChanged)="handleValueChange($event, $index)"
|
|
289
|
-
type="text"
|
|
290
|
-
placeholder="Enter Link"
|
|
291
|
-
class="ax-col-start-1 ax-col-end-13"
|
|
292
|
-
[ngClass]="generateClasses('url', 'multiple')"
|
|
293
|
-
>
|
|
294
|
-
@for (validation of validationRules; track $index) {
|
|
295
|
-
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
296
|
-
}
|
|
297
|
-
<ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
|
|
298
|
-
</ax-text-box>
|
|
299
|
-
@if(hasTitle){
|
|
300
|
-
<ax-text-box
|
|
301
|
-
[ngModel]="item.title"
|
|
302
|
-
(onValueChanged)="handleValueChange($event, $index)"
|
|
303
|
-
placeholder="Choose Title..."
|
|
304
|
-
name="title"
|
|
305
|
-
[ngClass]="generateClasses('title', 'multiple')"
|
|
306
|
-
>
|
|
307
|
-
</ax-text-box>
|
|
308
|
-
} @if(hasLabel){
|
|
309
|
-
<ax-select-box
|
|
310
|
-
[dataSource]="labelTypes"
|
|
311
|
-
[ngModel]="item.label"
|
|
312
|
-
(onValueChanged)="handleValueChange($event, $index)"
|
|
313
|
-
placeholder="Choose Label..."
|
|
314
|
-
name="label"
|
|
315
|
-
[ngClass]="generateClasses('label', 'multiple')"
|
|
316
|
-
>
|
|
317
|
-
</ax-select-box>
|
|
318
|
-
}}
|
|
319
|
-
<ax-button
|
|
320
|
-
look="twotone"
|
|
321
|
-
color="danger"
|
|
322
|
-
(onClick)="deleteItem($index)"
|
|
323
|
-
class="ax-col-start-12 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end !ax-h-full"
|
|
324
|
-
>
|
|
325
|
-
<ax-icon icon="fa-regular fa-xmark"></ax-icon>
|
|
326
|
-
</ax-button>
|
|
327
|
-
}
|
|
328
|
-
<ax-button
|
|
329
|
-
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
330
|
-
look="twotone"
|
|
331
|
-
(onClick)="addItem()"
|
|
332
|
-
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
333
|
-
>
|
|
334
|
-
<ax-prefix>
|
|
335
|
-
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
336
|
-
</ax-prefix>
|
|
337
|
-
</ax-button>
|
|
338
|
-
} @else{
|
|
339
|
-
<ax-text-box
|
|
340
|
-
[ngClass]="generateClasses('url', 'single')"
|
|
341
|
-
[ngModel]="internalValue()[0].value"
|
|
342
|
-
(onValueChanged)="handleValueChange($event, 0)"
|
|
343
|
-
type="text"
|
|
344
|
-
name="value"
|
|
345
|
-
placeholder="Link"
|
|
346
|
-
class="ax-col-start-1 ax-col-end-13"
|
|
347
|
-
>
|
|
348
|
-
@for (validation of validationRules; track $index) {
|
|
349
|
-
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
350
|
-
}
|
|
351
|
-
<ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
|
|
352
|
-
</ax-text-box>
|
|
353
|
-
@if(hasTitle){
|
|
354
|
-
<ax-text-box
|
|
355
|
-
[ngClass]="generateClasses('title', 'single')"
|
|
356
|
-
[ngModel]="internalValue()[0].title"
|
|
357
|
-
(onValueChanged)="handleValueChange($event, 0)"
|
|
358
|
-
type="text"
|
|
359
|
-
name="title"
|
|
360
|
-
placeholder="Title"
|
|
361
|
-
>
|
|
362
|
-
</ax-text-box>
|
|
363
|
-
} @if(hasLabel){
|
|
364
|
-
<ax-select-box
|
|
365
|
-
[ngClass]="generateClasses('label', 'single')"
|
|
366
|
-
[dataSource]="labelTypes"
|
|
367
|
-
[ngModel]="internalValue()[0].label"
|
|
368
|
-
(onValueChanged)="handleValueChange($event, 0)"
|
|
369
|
-
name="label"
|
|
370
|
-
placeholder="Label"
|
|
371
|
-
>
|
|
372
|
-
</ax-select-box>
|
|
373
|
-
} }
|
|
374
|
-
</div>`,
|
|
375
|
-
standalone: true,
|
|
376
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
377
|
-
imports: [
|
|
378
|
-
CommonModule,
|
|
379
|
-
FormsModule,
|
|
380
|
-
AXSelectBoxModule,
|
|
381
|
-
AXFormModule,
|
|
382
|
-
AXButtonModule,
|
|
383
|
-
AXDecoratorModule,
|
|
384
|
-
AXSelectBoxModule,
|
|
385
|
-
AXTextBoxModule,
|
|
386
|
-
AXValidationModule,
|
|
387
|
-
],
|
|
388
|
-
inputs: [],
|
|
389
|
-
}]
|
|
390
|
-
}] });
|
|
391
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtZWRpdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9lZGl0b3JzL2xpbmstd2lkZ2V0L2xpbmstd2lkZ2V0LWVkaXQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsWUFBWSxFQUF1QixNQUFNLDJCQUEyQixDQUFDO0FBQzlFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDOUQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDaEUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLG1CQUFtQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFbEYsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLFFBQVEsRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDN0YsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7Ozs7Ozs7QUE4RzdDLE1BQU0sT0FBTywwQkFBMkIsU0FBUSxhQUFrQjtJQTVHbEU7O1FBNkdZLHNCQUFpQixHQUFHLE1BQU0sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1FBQ2hELHFCQUFnQixHQUFHLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1FBS2hELGFBQVEsR0FBWSxLQUFLLENBQUM7UUFDMUIsZ0JBQVcsR0FBWSxJQUFJLENBQUM7UUFDNUIsYUFBUSxHQUFZLElBQUksQ0FBQztRQUN6QixhQUFRLEdBQVksSUFBSSxDQUFDO1FBRXpCLGVBQVUsR0FBYSxDQUFDLFNBQVMsRUFBRSxXQUFXLENBQUMsQ0FBQztRQUNoRCxjQUFTLEdBQWEsQ0FBQyxNQUFNLEVBQUUsT0FBTyxFQUFFLFNBQVMsQ0FBQyxDQUFDO1FBRW5ELGVBQVUsR0FBRyxJQUFJLFlBQVksQ0FBTTtZQUMzQyxRQUFRLEVBQUUsRUFBRTtZQUNaLEdBQUcsRUFBRSxJQUFJO1lBQ1QsSUFBSSxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7Z0JBQ1YsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFO29CQUM3QixVQUFVLENBQ1IsR0FBRyxFQUFFO3dCQUNILE1BQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUM7d0JBQzVCLE1BQU0sTUFBTSxHQUFHLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE1BQU0sRUFBRSxLQUFlLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7d0JBQ2pHLE9BQU8sQ0FBQzs0QkFDTixLQUFLLEVBQUUsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQzs0QkFDNUMsS0FBSyxFQUFFLE1BQU0sQ0FBQyxNQUFNO3lCQUNyQixDQUFDLENBQUM7b0JBQ0wsQ0FBQyxFQUNELENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FDeEIsQ0FBQztnQkFDSixDQUFDLENBQUMsQ0FBQztZQUNMLENBQUM7U0FDRixDQUFDLENBQUM7UUFFTyxrQkFBYSxHQUE4RSxRQUFRLENBQUMsR0FBRyxFQUFFLENBQ2pILElBQUksQ0FBQyx3QkFBd0IsRUFBRSxDQUNoQyxDQUFDO1FBT00scUJBQWdCLEdBQXVCLEVBQUUsQ0FBQztRQTRDeEMsZ0JBQVcsR0FBRyxDQUFDLElBQVMsRUFBRSxDQUFNLEVBQUUsRUFBRTtZQUM1QyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVE7Z0JBQUUsT0FBTyxFQUFFLEdBQUcsSUFBSSxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUM7O2dCQUM1RCxPQUFPLENBQUMsQ0FBQyxLQUFLLENBQUM7UUFDdEIsQ0FBQyxDQUFDO0tBZ0ZIO0lBcElVLFFBQVE7UUFDZixLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7UUFDakIsSUFBSSxDQUFDLHdCQUF3QixFQUFFLENBQUM7SUFDbEMsQ0FBQztJQUdELElBQVcsZUFBZTtRQUN4QixPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUMvQixDQUFDO0lBQ0QsSUFBVyxlQUFlLENBQUMsQ0FBcUI7UUFDOUMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLENBQUMsQ0FBQztJQUM1QixDQUFDO0lBRU8sd0JBQXdCO1FBQzlCLE1BQU0sS0FBSyxHQUFHLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUM5QixJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQztZQUN6QixPQUFPLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtnQkFDeEIsT0FBTyxPQUFPLElBQUksS0FBSyxRQUFRO29CQUM3QixDQUFDLENBQUM7d0JBQ0UsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLElBQUksR0FBRzt3QkFDeEIsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO3dCQUNqQixLQUFLLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssSUFBSSxTQUFTLENBQUMsQ0FBQyxDQUFDLFNBQVM7d0JBQzFELElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtxQkFDaEI7b0JBQ0gsQ0FBQyxDQUFDO3dCQUNFLEtBQUssRUFBRSxJQUFJO3dCQUNYLEtBQUssRUFBRSxFQUFFO3dCQUNULElBQUksRUFBRSxFQUFFO3dCQUNSLEtBQUssRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLFNBQVM7cUJBQzdDLENBQUM7WUFDUixDQUFDLENBQUMsQ0FBQztRQUNMLENBQUM7YUFBTSxDQUFDO1lBQ04sT0FBTyxPQUFPLEtBQUssS0FBSyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLEVBQUUsS0FBSyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDeEUsQ0FBQztJQUNILENBQUM7SUFFUyxpQkFBaUIsQ0FBQyxDQUFzQixFQUFFLGFBQXFCO1FBQ3ZFLE1BQU0sRUFBRSxJQUFJLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQzdDLElBQUksaUJBQWlCLEVBQUUsQ0FBQztZQUN0QixPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ2YsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxLQUFLLEVBQUUsRUFBRSxDQUN6RCxhQUFhLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxPQUFPLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsSUFBSSxFQUFFLENBQUMsSUFBYyxDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUN2SCxDQUFDO1lBQ0YsT0FBTyxDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUMsQ0FBQztZQUN2QixJQUFJLElBQUksQ0FBQyxRQUFRO2dCQUFFLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUM7O2dCQUN2QyxJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ25DLENBQUM7SUFDSCxDQUFDO0lBT0QsK0VBQStFO0lBQy9FLCtCQUErQjtJQUMvQixtSUFBbUk7SUFDbkksbURBQW1EO0lBQ25ELHdDQUF3QztJQUN4QyxNQUFNO0lBQ04sSUFBSTtJQUVNLE9BQU87UUFDZixNQUFNLFNBQVMsR0FBRztZQUNoQixHQUFHLElBQUksQ0FBQyxhQUFhLEVBQUU7WUFDdkI7Z0JBQ0UsS0FBSyxFQUFFLEVBQUU7Z0JBQ1QsS0FBSyxFQUFFLEVBQUU7Z0JBQ1QsS0FBSyxFQUFFLFNBQVM7Z0JBQ2hCLElBQUksRUFBRSxFQUFFO2FBQ1Q7U0FDRixDQUFDO1FBQ0YsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBQ1MsVUFBVSxDQUFDLFlBQW9CO1FBQ3ZDLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLElBQUksWUFBWSxDQUFDLENBQUM7UUFDbkYsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBRVMsZUFBZSxDQUFDLFdBQXNDLEVBQUUsT0FBOEIsUUFBUTtRQUN0RyxJQUFJLElBQUksS0FBSyxVQUFVLEVBQUUsQ0FBQztZQUN4QixRQUFRLFdBQVcsRUFBRSxDQUFDO2dCQUNwQixLQUFLLEtBQUs7b0JBQ1IsSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQzt3QkFDbkMsMENBQTBDO3dCQUMxQyxPQUFPLENBQUMsaUJBQWlCLENBQUMsQ0FBQztvQkFDN0IsQ0FBQzt5QkFBTSxDQUFDO3dCQUNOLE9BQU8sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO29CQUM5QixDQUFDO2dCQUNILEtBQUssT0FBTztvQkFDVixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQzt3QkFDbEIsT0FBTyxDQUFDLGdFQUFnRSxDQUFDLENBQUM7b0JBQzVFLENBQUM7eUJBQU0sQ0FBQzt3QkFDTixPQUFPLENBQUMsaUVBQWlFLENBQUMsQ0FBQztvQkFDN0UsQ0FBQztnQkFDSCxLQUFLLE9BQU87b0JBQ1YsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7d0JBQ2xCLE9BQU8sQ0FBQyxrRUFBa0UsQ0FBQyxDQUFDO29CQUM5RSxDQUFDO3lCQUFNLENBQUM7d0JBQ04sT0FBTyxDQUFDLGlFQUFpRSxDQUFDLENBQUM7b0JBQzdFLENBQUM7Z0JBQ0g7b0JBQ0UsT0FBTyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1lBQ2hCLENBQUM7UUFDSCxDQUFDO2FBQU0sSUFBSSxJQUFJLEtBQUssUUFBUSxFQUFFLENBQUM7WUFDN0IsUUFBUSxXQUFXLEVBQUUsQ0FBQztnQkFDcEIsS0FBSyxLQUFLO29CQUNSLElBQUksSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7d0JBQ25DLDBDQUEwQzt3QkFDMUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLENBQUM7b0JBQzdCLENBQUM7eUJBQU0sQ0FBQzt3QkFDTixPQUFPLENBQUMsa0JBQWtCLENBQUMsQ0FBQztvQkFDOUIsQ0FBQztnQkFDSCxLQUFLLE9BQU87b0JBQ1YsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7d0JBQ2xCLE9BQU8sQ0FBQyxnRUFBZ0UsQ0FBQyxDQUFDO29CQUM1RSxDQUFDO3lCQUFNLENBQUM7d0JBQ04sT0FBTyxDQUFDLGlFQUFpRSxDQUFDLENBQUM7b0JBQzdFLENBQUM7Z0JBQ0gsS0FBSyxPQUFPO29CQUNWLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO3dCQUNsQixPQUFPLENBQUMsa0VBQWtFLENBQUMsQ0FBQztvQkFDOUUsQ0FBQzt5QkFBTSxDQUFDO3dCQUNOLE9BQU8sQ0FBQyxpRUFBaUUsQ0FBQyxDQUFDO29CQUM3RSxDQUFDO2dCQUNIO29CQUNFLE9BQU8sQ0FBQyxFQUFFLENBQUMsQ0FBQztZQUNoQixDQUFDO1FBQ0gsQ0FBQzthQUFNLENBQUM7WUFDTixPQUFPLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDZCxDQUFDO0lBQ0gsQ0FBQzs4R0ExS1UsMEJBQTBCO2tHQUExQiwwQkFBMEIsK0ZBM0czQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztTQTJGSCwyREFJTCxZQUFZLDRIQUNaLFdBQVcsOFZBQ1gsaUJBQWlCLHlpQkFDakIsWUFBWSxpS0FDWixjQUFjLGlYQUNkLGlCQUFpQix1VkFFakIsZUFBZSxxYkFDZixrQkFBa0I7OzJGQUlULDBCQUEwQjtrQkE1R3RDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O1NBMkZIO29CQUNQLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osV0FBVzt3QkFDWCxpQkFBaUI7d0JBQ2pCLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxpQkFBaUI7d0JBQ2pCLGlCQUFpQjt3QkFDakIsZUFBZTt3QkFDZixrQkFBa0I7cUJBQ25CO29CQUNELE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhCdXR0b25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYnV0dG9uJztcbmltcG9ydCB7IEFYRGF0YVNvdXJjZSwgQVhWYWx1ZUNoYW5nZWRFdmVudCB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jb21tb24nO1xuaW1wb3J0IHsgQVhEZWNvcmF0b3JNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZGVjb3JhdG9ycyc7XG5pbXBvcnQgeyBBWEZvcm1Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZm9ybSc7XG5pbXBvcnQgeyBBWFNlbGVjdEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9zZWxlY3QtYm94JztcbmltcG9ydCB7IEFYVGV4dEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy90ZXh0LWJveCc7XG5pbXBvcnQgeyBBWFRyYW5zbGF0aW9uU2VydmljZSB9IGZyb20gJ0BhY29yZXgvY29yZS90cmFuc2xhdGlvbic7XG5pbXBvcnQgeyBBWFZhbGlkYXRpb25Nb2R1bGUsIEFYVmFsaWRhdGlvblNlcnZpY2UgfSBmcm9tICdAYWNvcmV4L2NvcmUvdmFsaWRhdGlvbic7XG5pbXBvcnQgeyBBWFBWYWxpZGF0aW9uUnVsZXMgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgU2lnbmFsLCBjb21wdXRlZCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgPGRpdiBjbGFzcz1cImF4LWdyaWQgYXgtZ3JpZC1jb2xzLTEyIGF4LWdhcC00XCI+XG4gICAgQGlmKG11bHRpcGxlKXsgQGZvcihpdGVtIG9mIGludGVybmFsVmFsdWUoKTt0cmFjayAkaW5kZXgpIHsgQGlmKGl0ZW0pe1xuICAgIDwhLS0gVE9ETyBuZWVkIHRvIGZpeCBtdWx0aXBsZSAtLT5cbiAgICA8YXgtdGV4dC1ib3hcbiAgICAgIFtuZ01vZGVsXT1cIml0ZW0udmFsdWVcIlxuICAgICAgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVZhbHVlQ2hhbmdlKCRldmVudCwgJGluZGV4KVwiXG4gICAgICB0eXBlPVwidGV4dFwiXG4gICAgICBwbGFjZWhvbGRlcj1cIkVudGVyIExpbmtcIlxuICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzXCJcbiAgICAgIFtuZ0NsYXNzXT1cImdlbmVyYXRlQ2xhc3NlcygndXJsJywgJ211bHRpcGxlJylcIlxuICAgID5cbiAgICAgIEBmb3IgKHZhbGlkYXRpb24gb2YgdmFsaWRhdGlvblJ1bGVzOyB0cmFjayAkaW5kZXgpIHtcbiAgICAgIDxheC12YWxpZGF0aW9uLXJ1bGUgW3J1bGVdPVwidmFsaWRhdGlvbi5ydWxlXCIgW21lc3NhZ2VdPVwidmFsaWRhdGlvbi5vcHRpb25zPy5tZXNzYWdlXCIgW29wdGlvbnNdPVwidmFsaWRhdGlvbi5vcHRpb25zXCI+PC9heC12YWxpZGF0aW9uLXJ1bGU+XG4gICAgICB9XG4gICAgICA8YXgtdmFsaWRhdGlvbi1ydWxlIG1lc3NhZ2U9XCJmaWVsZCBjYW4ndCBiZSBlbXB0eVwiIHJ1bGU9XCJyZXF1aXJlZFwiPiA8L2F4LXZhbGlkYXRpb24tcnVsZT5cbiAgICA8L2F4LXRleHQtYm94PlxuICAgIEBpZihoYXNUaXRsZSl7XG4gICAgPGF4LXRleHQtYm94XG4gICAgICBbbmdNb2RlbF09XCJpdGVtLnRpdGxlXCJcbiAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVWYWx1ZUNoYW5nZSgkZXZlbnQsICRpbmRleClcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJDaG9vc2UgVGl0bGUuLi5cIlxuICAgICAgbmFtZT1cInRpdGxlXCJcbiAgICAgIFtuZ0NsYXNzXT1cImdlbmVyYXRlQ2xhc3NlcygndGl0bGUnLCAnbXVsdGlwbGUnKVwiXG4gICAgPlxuICAgIDwvYXgtdGV4dC1ib3g+XG4gICAgfSBAaWYoaGFzTGFiZWwpe1xuICAgIDxheC1zZWxlY3QtYm94XG4gICAgICBbZGF0YVNvdXJjZV09XCJsYWJlbFR5cGVzXCJcbiAgICAgIFtuZ01vZGVsXT1cIml0ZW0ubGFiZWxcIlxuICAgICAgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVZhbHVlQ2hhbmdlKCRldmVudCwgJGluZGV4KVwiXG4gICAgICBwbGFjZWhvbGRlcj1cIkNob29zZSBMYWJlbC4uLlwiXG4gICAgICBuYW1lPVwibGFiZWxcIlxuICAgICAgW25nQ2xhc3NdPVwiZ2VuZXJhdGVDbGFzc2VzKCdsYWJlbCcsICdtdWx0aXBsZScpXCJcbiAgICA+XG4gICAgPC9heC1zZWxlY3QtYm94PlxuICAgIH19XG4gICAgPGF4LWJ1dHRvblxuICAgICAgbG9vaz1cInR3b3RvbmVcIlxuICAgICAgY29sb3I9XCJkYW5nZXJcIlxuICAgICAgKG9uQ2xpY2spPVwiZGVsZXRlSXRlbSgkaW5kZXgpXCJcbiAgICAgIGNsYXNzPVwiYXgtY29sLXN0YXJ0LTEyIGF4LWNvbC1lbmQtMTMgbGc6YXgtY29sLXN0YXJ0LTEyIGxnOmF4LWNvbC1lbmQtMTMgYXgtanVzdGlmeS1zZWxmLWVuZCAhYXgtaC1mdWxsXCJcbiAgICA+XG4gICAgICA8YXgtaWNvbiBpY29uPVwiZmEtcmVndWxhciBmYS14bWFya1wiPjwvYXgtaWNvbj5cbiAgICA8L2F4LWJ1dHRvbj5cbiAgICB9XG4gICAgPGF4LWJ1dHRvblxuICAgICAgW3RleHRdPVwiaW50ZXJuYWxWYWx1ZSgpLmxlbmd0aCA9PSAwID8gJ0FkZCBOZXcnIDogJ0FkZCBBbm90aGVyJ1wiXG4gICAgICBsb29rPVwidHdvdG9uZVwiXG4gICAgICAob25DbGljayk9XCJhZGRJdGVtKClcIlxuICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtOCBsZzpheC1jb2wtc3RhcnQtMTAgMnhsOmF4LWNvbC1zdGFydC0xMCBheC1jb2wtZW5kLTEzXCJcbiAgICA+XG4gICAgICA8YXgtcHJlZml4PlxuICAgICAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWFkZFwiPjwvYXgtaWNvbj5cbiAgICAgIDwvYXgtcHJlZml4PlxuICAgIDwvYXgtYnV0dG9uPlxuICAgIH0gQGVsc2V7XG4gICAgPGF4LXRleHQtYm94XG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ3VybCcsICdzaW5nbGUnKVwiXG4gICAgICBbbmdNb2RlbF09XCJpbnRlcm5hbFZhbHVlKClbMF0udmFsdWVcIlxuICAgICAgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVZhbHVlQ2hhbmdlKCRldmVudCwgMClcIlxuICAgICAgdHlwZT1cInRleHRcIlxuICAgICAgbmFtZT1cInZhbHVlXCJcbiAgICAgIHBsYWNlaG9sZGVyPVwiTGlua1wiXG4gICAgICBjbGFzcz1cImF4LWNvbC1zdGFydC0xIGF4LWNvbC1lbmQtMTNcIlxuICAgID5cbiAgICAgIEBmb3IgKHZhbGlkYXRpb24gb2YgdmFsaWRhdGlvblJ1bGVzOyB0cmFjayAkaW5kZXgpIHtcbiAgICAgIDxheC12YWxpZGF0aW9uLXJ1bGUgW3J1bGVdPVwidmFsaWRhdGlvbi5ydWxlXCIgW21lc3NhZ2VdPVwidmFsaWRhdGlvbi5vcHRpb25zPy5tZXNzYWdlXCIgW29wdGlvbnNdPVwidmFsaWRhdGlvbi5vcHRpb25zXCI+PC9heC12YWxpZGF0aW9uLXJ1bGU+XG4gICAgICB9XG4gICAgICA8YXgtdmFsaWRhdGlvbi1ydWxlIG1lc3NhZ2U9XCJmaWVsZCBjYW4ndCBiZSBlbXB0eVwiIHJ1bGU9XCJyZXF1aXJlZFwiPiA8L2F4LXZhbGlkYXRpb24tcnVsZT5cbiAgICA8L2F4LXRleHQtYm94PlxuICAgIEBpZihoYXNUaXRsZSl7XG4gICAgPGF4LXRleHQtYm94XG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ3RpdGxlJywgJ3NpbmdsZScpXCJcbiAgICAgIFtuZ01vZGVsXT1cImludGVybmFsVmFsdWUoKVswXS50aXRsZVwiXG4gICAgICAob25WYWx1ZUNoYW5nZWQpPVwiaGFuZGxlVmFsdWVDaGFuZ2UoJGV2ZW50LCAwKVwiXG4gICAgICB0eXBlPVwidGV4dFwiXG4gICAgICBuYW1lPVwidGl0bGVcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJUaXRsZVwiXG4gICAgPlxuICAgIDwvYXgtdGV4dC1ib3g+XG4gICAgfSBAaWYoaGFzTGFiZWwpe1xuICAgIDxheC1zZWxlY3QtYm94XG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ2xhYmVsJywgJ3NpbmdsZScpXCJcbiAgICAgIFtkYXRhU291cmNlXT1cImxhYmVsVHlwZXNcIlxuICAgICAgW25nTW9kZWxdPVwiaW50ZXJuYWxWYWx1ZSgpWzBdLmxhYmVsXCJcbiAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVWYWx1ZUNoYW5nZSgkZXZlbnQsIDApXCJcbiAgICAgIG5hbWU9XCJsYWJlbFwiXG4gICAgICBwbGFjZWhvbGRlcj1cIkxhYmVsXCJcbiAgICA+XG4gICAgPC9heC1zZWxlY3QtYm94PlxuICAgIH0gfVxuICA8L2Rpdj5gLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBGb3Jtc01vZHVsZSxcbiAgICBBWFNlbGVjdEJveE1vZHVsZSxcbiAgICBBWEZvcm1Nb2R1bGUsXG4gICAgQVhCdXR0b25Nb2R1bGUsXG4gICAgQVhEZWNvcmF0b3JNb2R1bGUsXG4gICAgQVhTZWxlY3RCb3hNb2R1bGUsXG4gICAgQVhUZXh0Qm94TW9kdWxlLFxuICAgIEFYVmFsaWRhdGlvbk1vZHVsZSxcbiAgXSxcbiAgaW5wdXRzOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQTGlua1dpZGdldEVkaXRDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRCYXNlPGFueT4ge1xuICBwcm90ZWN0ZWQgdmFsaWRhdGlvblNlcnZpY2UgPSBpbmplY3QoQVhWYWxpZGF0aW9uU2VydmljZSk7XG4gIHByb3RlY3RlZCB0cmFuc2xhdGVTZXJ2aWNlID0gaW5qZWN0KEFYVHJhbnNsYXRpb25TZXJ2aWNlKTtcblxuICBwcm90ZWN0ZWQgbXVsdGlwbGUhOiBib29sZWFuO1xuICBwcm90ZWN0ZWQgdmFsaWRhdGlvbk1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xuXG4gIHByb3RlY3RlZCBkaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBwcm90ZWN0ZWQgY2xlYXJCdXR0b246IGJvb2xlYW4gPSB0cnVlO1xuICBwcm90ZWN0ZWQgaGFzTGFiZWw6IGJvb2xlYW4gPSB0cnVlO1xuICBwcm90ZWN0ZWQgaGFzVGl0bGU6IGJvb2xlYW4gPSB0cnVlO1xuXG4gIHByb3RlY3RlZCBsYWJlbFR5cGVzOiBzdHJpbmdbXSA9IFsnUHJpbWFyeScsICdTZWNvbmRhcnknXTtcbiAgcHJvdGVjdGVkIGxpbmtUeXBlczogc3RyaW5nW10gPSBbJ2h0dHAnLCAnaHR0cHMnLCAncmVsYXRlZCddO1xuXG4gIHByb3RlY3RlZCBkYXRhU291cmNlID0gbmV3IEFYRGF0YVNvdXJjZTxhbnk+KHtcbiAgICBwYWdlU2l6ZTogMTAsXG4gICAga2V5OiAnaWQnLFxuICAgIGxvYWQ6IChlKSA9PiB7XG4gICAgICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUpID0+IHtcbiAgICAgICAgc2V0VGltZW91dChcbiAgICAgICAgICAoKSA9PiB7XG4gICAgICAgICAgICBjb25zdCBsaXN0ID0gdGhpcy5saW5rVHlwZXM7XG4gICAgICAgICAgICBjb25zdCByZXN1bHQgPSBlLmZpbHRlciA/IGxpc3QuZmlsdGVyKChpdGVtKSA9PiBpdGVtLmluY2x1ZGVzKGUuZmlsdGVyPy52YWx1ZSBhcyBzdHJpbmcpKSA6IGxpc3Q7XG4gICAgICAgICAgICByZXNvbHZlKHtcbiAgICAgICAgICAgICAgaXRlbXM6IHJlc3VsdC5zbGljZShlLnNraXAsIGUuc2tpcCArIGUudGFrZSksXG4gICAgICAgICAgICAgIHRvdGFsOiByZXN1bHQubGVuZ3RoLFxuICAgICAgICAgICAgfSk7XG4gICAgICAgICAgfSxcbiAgICAgICAgICBlLnNraXAgPT0gMCA/IDEwMCA6IDMwMFxuICAgICAgICApO1xuICAgICAgfSk7XG4gICAgfSxcbiAgfSk7XG5cbiAgcHJvdGVjdGVkIGludGVybmFsVmFsdWU6IFNpZ25hbDx7IHZhbHVlOiBzdHJpbmc7IGxhYmVsPzogc3RyaW5nOyB0aXRsZTogc3RyaW5nOyBpY29uPzogc3RyaW5nIH1bXT4gPSBjb21wdXRlZCgoKSA9PlxuICAgIHRoaXMuZ2V0VmFsdWVBc0FycmF5T2ZPYmplY3RzKClcbiAgKTtcblxuICBvdmVycmlkZSBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBzdXBlci5uZ09uSW5pdCgpO1xuICAgIHRoaXMuZ2V0VmFsdWVBc0FycmF5T2ZPYmplY3RzKCk7XG4gIH1cblxuICBwcml2YXRlIF92YWxpZGF0aW9uUnVsZXM6IEFYUFZhbGlkYXRpb25SdWxlcyA9IFtdO1xuICBwdWJsaWMgZ2V0IHZhbGlkYXRpb25SdWxlcygpOiBBWFBWYWxpZGF0aW9uUnVsZXMge1xuICAgIHJldHVybiB0aGlzLl92YWxpZGF0aW9uUnVsZXM7XG4gIH1cbiAgcHVibGljIHNldCB2YWxpZGF0aW9uUnVsZXModjogQVhQVmFsaWRhdGlvblJ1bGVzKSB7XG4gICAgdGhpcy5fdmFsaWRhdGlvblJ1bGVzID0gdjtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0VmFsdWVBc0FycmF5T2ZPYmplY3RzKCk6IGFueVtdIHtcbiAgICBjb25zdCB2YWx1ZSA9IHRoaXMuZ2V0VmFsdWUoKTtcbiAgICBpZiAoQXJyYXkuaXNBcnJheSh2YWx1ZSkpIHtcbiAgICAgIHJldHVybiB2YWx1ZS5tYXAoKGl0ZW0pID0+IHtcbiAgICAgICAgcmV0dXJuIHR5cGVvZiBpdGVtID09PSAnb2JqZWN0J1xuICAgICAgICAgID8ge1xuICAgICAgICAgICAgICB2YWx1ZTogaXRlbS52YWx1ZSA/PyAnLScsXG4gICAgICAgICAgICAgIHRpdGxlOiBpdGVtLnRpdGxlLFxuICAgICAgICAgICAgICBsYWJlbDogdGhpcy5oYXNMYWJlbCA/IGl0ZW0ubGFiZWwgfHwgJ3ByaW1hcnknIDogdW5kZWZpbmVkLFxuICAgICAgICAgICAgICBpY29uOiBpdGVtLmljb24sXG4gICAgICAgICAgICB9XG4gICAgICAgICAgOiB7XG4gICAgICAgICAgICAgIHZhbHVlOiBpdGVtLFxuICAgICAgICAgICAgICB0aXRsZTogJycsXG4gICAgICAgICAgICAgIGljb246ICcnLFxuICAgICAgICAgICAgICBsYWJlbDogdGhpcy5oYXNMYWJlbCA/ICdQcmltYXJ5JyA6IHVuZGVmaW5lZCxcbiAgICAgICAgICAgIH07XG4gICAgICB9KTtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIHR5cGVvZiB2YWx1ZSA9PT0gJ29iamVjdCcgPyBbdmFsdWVdIDogW3sgdmFsdWU6IHZhbHVlIHx8ICcnIH1dO1xuICAgIH1cbiAgfVxuXG4gIHByb3RlY3RlZCBoYW5kbGVWYWx1ZUNoYW5nZShlOiBBWFZhbHVlQ2hhbmdlZEV2ZW50LCBzZWxlY3RlZEluZGV4OiBudW1iZXIpIHtcbiAgICBjb25zdCB7IG5hbWUsIHZhbHVlLCBpc1VzZXJJbnRlcmFjdGlvbiB9ID0gZTtcbiAgICBpZiAoaXNVc2VySW50ZXJhY3Rpb24pIHtcbiAgICAgIGNvbnNvbGUubG9nKGUpO1xuICAgICAgY29uc3QgbmV3VmFsdWVzID0gdGhpcy5pbnRlcm5hbFZhbHVlKCkubWFwKChpdGVtLCBpbmRleCkgPT5cbiAgICAgICAgc2VsZWN0ZWRJbmRleCA9PT0gaW5kZXggPyAobmFtZSA9PT0gJ3ZhbHVlJyA/IHRoaXMuY29udmVydEl0ZW0oaXRlbSwgZSkgOiB7IC4uLml0ZW0sIFtuYW1lIGFzIHN0cmluZ106IHZhbHVlIH0pIDogaXRlbVxuICAgICAgKTtcbiAgICAgIGNvbnNvbGUubG9nKG5ld1ZhbHVlcyk7XG4gICAgICBpZiAodGhpcy5tdWx0aXBsZSkgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXMpO1xuICAgICAgZWxzZSB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlc1swXSk7XG4gICAgfVxuICB9XG5cbiAgcHJvdGVjdGVkIGNvbnZlcnRJdGVtID0gKGl0ZW06IGFueSwgZTogYW55KSA9PiB7XG4gICAgaWYgKHR5cGVvZiBpdGVtID09PSAnb2JqZWN0JykgcmV0dXJuIHsgLi4uaXRlbSwgdmFsdWU6IGUudmFsdWUgfTtcbiAgICBlbHNlIHJldHVybiBlLnZhbHVlO1xuICB9O1xuXG4gIC8vIHByb3RlY3RlZCBoYW5kbGVMYWJlbENoYW5nZShlOiBBWFZhbHVlQ2hhbmdlZEV2ZW50LCBzZWxlY3RlZEluZGV4OiBudW1iZXIpIHtcbiAgLy8gICBpZiAoZS5pc1VzZXJJbnRlcmFjdGlvbikge1xuICAvLyAgICAgY29uc3QgbmV3VmFsdWVzID0gdGhpcy5pbnRlcm5hbFZhbHVlKCkubWFwKChpdGVtLCBpbmRleCkgPT4gKHNlbGVjdGVkSW5kZXggPT09IGluZGV4ID8geyAuLi5pdGVtLCBsYWJlbDogZS52YWx1ZSB9IDogaXRlbSkpO1xuICAvLyAgICAgaWYgKHRoaXMubXVsdGlwbGUpIHRoaXMuc2V0VmFsdWUobmV3VmFsdWVzKTtcbiAgLy8gICAgIGVsc2UgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXNbMF0pO1xuICAvLyAgIH1cbiAgLy8gfVxuXG4gIHByb3RlY3RlZCBhZGRJdGVtKCkge1xuICAgIGNvbnN0IG5ld1ZhbHVlcyA9IFtcbiAgICAgIC4uLnRoaXMuaW50ZXJuYWxWYWx1ZSgpLFxuICAgICAge1xuICAgICAgICB2YWx1ZTogJycsXG4gICAgICAgIHRpdGxlOiAnJyxcbiAgICAgICAgbGFiZWw6ICdwcmltYXJ5JyxcbiAgICAgICAgaWNvbjogJycsXG4gICAgICB9LFxuICAgIF07XG4gICAgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXMpO1xuICB9XG4gIHByb3RlY3RlZCBkZWxldGVJdGVtKGRlbGV0ZWRJbmRleDogbnVtYmVyKSB7XG4gICAgY29uc3QgbmV3VmFsdWVzID0gdGhpcy5pbnRlcm5hbFZhbHVlKCkuZmlsdGVyKChfLCBpbmRleCkgPT4gaW5kZXggIT0gZGVsZXRlZEluZGV4KTtcbiAgICB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlcyk7XG4gIH1cblxuICBwcm90ZWN0ZWQgZ2VuZXJhdGVDbGFzc2VzKGVsZW1lbnROYW1lOiAndXJsJyB8ICd0aXRsZScgfCAnbGFiZWwnLCB0eXBlOiAnc2luZ2xlJyB8ICdtdWx0aXBsZScgPSAnc2luZ2xlJyk6IEFycmF5PHN0cmluZz4ge1xuICAgIGlmICh0eXBlID09PSAnbXVsdGlwbGUnKSB7XG4gICAgICBzd2l0Y2ggKGVsZW1lbnROYW1lKSB7XG4gICAgICAgIGNhc2UgJ3VybCc6XG4gICAgICAgICAgaWYgKHRoaXMuaGFzVGl0bGUgfHwgdGhpcy5oYXNMYWJlbCkge1xuICAgICAgICAgICAgLy9hbHJlYWR5IGhhcyBheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzXG4gICAgICAgICAgICByZXR1cm4gWydsZzpheC1jb2wtZW5kLTcnXTtcbiAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIFsnbGc6YXgtY29sLWVuZC0xMiddO1xuICAgICAgICAgIH1cbiAgICAgICAgY2FzZSAndGl0bGUnOlxuICAgICAgICAgIGlmICh0aGlzLmhhc0xhYmVsKSB7XG4gICAgICAgICAgICByZXR1cm4gWydheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTcgbGc6YXgtY29sLXN0YXJ0LTcgbGc6YXgtY29sLWVuZC0xMCddO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gWydheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTExIGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTInXTtcbiAgICAgICAgICB9XG4gICAgICAgIGNhc2UgJ2xhYmVsJzpcbiAgICAgICAgICBpZiAodGhpcy5oYXNUaXRsZSkge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTcgYXgtY29sLWVuZC0xMSBsZzpheC1jb2wtc3RhcnQtMTAgbGc6YXgtY29sLWVuZC0xMiddO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gWydheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTExIGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTInXTtcbiAgICAgICAgICB9XG4gICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgcmV0dXJuIFsnJ107XG4gICAgICB9XG4gICAgfSBlbHNlIGlmICh0eXBlID09PSAnc2luZ2xlJykge1xuICAgICAgc3dpdGNoIChlbGVtZW50TmFtZSkge1xuICAgICAgICBjYXNlICd1cmwnOlxuICAgICAgICAgIGlmICh0aGlzLmhhc1RpdGxlIHx8IHRoaXMuaGFzTGFiZWwpIHtcbiAgICAgICAgICAgIC8vYWxyZWFkeSBoYXMgYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xM1xuICAgICAgICAgICAgcmV0dXJuIFsnbGc6YXgtY29sLWVuZC03J107XG4gICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHJldHVybiBbJ2xnOmF4LWNvbC1lbmQtMTMnXTtcbiAgICAgICAgICB9XG4gICAgICAgIGNhc2UgJ3RpdGxlJzpcbiAgICAgICAgICBpZiAodGhpcy5oYXNMYWJlbCkge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC03IGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTAnXTtcbiAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMyBsZzpheC1jb2wtc3RhcnQtNyBsZzpheC1jb2wtZW5kLTEzJ107XG4gICAgICAgICAgfVxuICAgICAgICBjYXNlICdsYWJlbCc6XG4gICAgICAgICAgaWYgKHRoaXMuaGFzVGl0bGUpIHtcbiAgICAgICAgICAgIHJldHVybiBbJ2F4LWNvbC1zdGFydC03IGF4LWNvbC1lbmQtMTMgbGc6YXgtY29sLXN0YXJ0LTEwIGxnOmF4LWNvbC1lbmQtMTMnXTtcbiAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMyBsZzpheC1jb2wtc3RhcnQtNyBsZzpheC1jb2wtZW5kLTEzJ107XG4gICAgICAgICAgfVxuICAgICAgICBkZWZhdWx0OlxuICAgICAgICAgIHJldHVybiBbJyddO1xuICAgICAgfVxuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gWycnXTtcbiAgICB9XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import { FormsModule } from '@angular/forms';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class AXPLinkWidgetFilterComponent extends AXPWidgetBase {
|
|
7
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLinkWidgetFilterComponent, 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 }); }
|
|
9
|
-
}
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetFilterComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{
|
|
13
|
-
template: ``,
|
|
14
|
-
standalone: true,
|
|
15
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
16
|
-
imports: [CommonModule, FormsModule],
|
|
17
|
-
inputs: []
|
|
18
|
-
}]
|
|
19
|
-
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtZmlsdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL2VkaXRvcnMvbGluay13aWRnZXQvbGluay13aWRnZXQtZmlsdGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQVM3QyxNQUFNLE9BQU8sNEJBQTZCLFNBQVEsYUFBa0I7OEdBQXZELDRCQUE0QjtrR0FBNUIsNEJBQTRCLCtGQU43QixFQUFFLDJEQUdGLFlBQVksOEJBQUUsV0FBVzs7MkZBR3hCLDRCQUE0QjtrQkFQeEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxXQUFXLENBQUM7b0JBQ3BDLE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0QmFzZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3Jtc01vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQTGlua1dpZGdldEZpbHRlckNvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldEJhc2U8YW55PiB7fSJdfQ==
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { AXPWidgetBase } from '@acorex/platform/layout/builder';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AXPLinkWidgetPrintComponent extends AXPWidgetBase {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLinkWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLinkWidgetPrintComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{
|
|
12
|
-
template: ``,
|
|
13
|
-
standalone: true,
|
|
14
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
15
|
-
imports: [CommonModule],
|
|
16
|
-
inputs: []
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtcHJpbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9saW5rLXdpZGdldC9saW5rLXdpZGdldC1wcmludC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8sMkJBQTRCLFNBQVEsYUFBa0I7OEdBQXRELDJCQUEyQjtrR0FBM0IsMkJBQTJCLCtGQU41QixFQUFFLDJEQUdGLFlBQVk7OzJGQUdYLDJCQUEyQjtrQkFQdkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQTGlua1dpZGdldFByaW50Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZTxhbnk+IHt9Il19
|