@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
package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.mjs
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { AXButtonModule } from '@acorex/components/button';
|
|
2
|
+
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
3
|
+
import { AXFormModule } from '@acorex/components/form';
|
|
4
|
+
import { AXTextBoxModule } from '@acorex/components/text-box';
|
|
5
|
+
import { AXValidationModule } from '@acorex/core/validation';
|
|
6
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
import { ChangeDetectionStrategy, Component, computed } from '@angular/core';
|
|
9
|
+
import { FormsModule } from '@angular/forms';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
import * as i1 from "@acorex/components/text-box";
|
|
12
|
+
import * as i2 from "@angular/forms";
|
|
13
|
+
import * as i3 from "@acorex/components/form";
|
|
14
|
+
import * as i4 from "@acorex/components/decorators";
|
|
15
|
+
import * as i5 from "@acorex/components/button";
|
|
16
|
+
export class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
this.multiple = computed(() => this.options()["multiple"]);
|
|
20
|
+
this.clearButton = computed(() => this.options()["clearButton"] ?? true);
|
|
21
|
+
this.disabled = computed(() => this.options()["disabled"]);
|
|
22
|
+
this.placeholder = computed(() => this.options()["placeholder"]);
|
|
23
|
+
this.validationRules = computed(() => this.options()["validationRules"] ?? []);
|
|
24
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
25
|
+
}
|
|
26
|
+
handleValueChange(e, i) {
|
|
27
|
+
if (e.isUserInteraction) {
|
|
28
|
+
const newValues = this.internalValue().map((item, index) => (i === index ? e.value : item));
|
|
29
|
+
if (this.multiple())
|
|
30
|
+
this.setValue(newValues);
|
|
31
|
+
else
|
|
32
|
+
this.setValue(newValues[0]);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
addItem() {
|
|
36
|
+
const newValues = [...this.internalValue(), ''];
|
|
37
|
+
this.setValue(newValues);
|
|
38
|
+
}
|
|
39
|
+
deleteItem(i) {
|
|
40
|
+
const newValues = this.internalValue().filter((_, index) => index != i);
|
|
41
|
+
this.setValue(newValues);
|
|
42
|
+
}
|
|
43
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
44
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPTextBoxWidgetEditComponent, isStandalone: true, selector: "axp-text-box-widget", usesInheritance: true, ngImport: i0, template: `
|
|
45
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
46
|
+
@for (text of internalValue(); track $index) {
|
|
47
|
+
<ax-text-box class="ax-col-span-12" [ngModel]="text" [type]="'text'" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled()" [placeholder]="placeholder()">
|
|
48
|
+
@for (validation of validationRules(); track $index) {
|
|
49
|
+
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
50
|
+
}
|
|
51
|
+
@if(clearButton()){
|
|
52
|
+
<ax-clear-button></ax-clear-button>
|
|
53
|
+
} @if(multiple()){
|
|
54
|
+
<ax-suffix>
|
|
55
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
56
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
57
|
+
</ax-button>
|
|
58
|
+
</ax-suffix>
|
|
59
|
+
}
|
|
60
|
+
</ax-text-box>
|
|
61
|
+
} @if(multiple()){
|
|
62
|
+
<ax-button
|
|
63
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
64
|
+
look="twotone"
|
|
65
|
+
[disabled]="disabled()"
|
|
66
|
+
(onClick)="addItem()"
|
|
67
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
68
|
+
>
|
|
69
|
+
<ax-prefix>
|
|
70
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
71
|
+
</ax-prefix>
|
|
72
|
+
</ax-button>
|
|
73
|
+
}
|
|
74
|
+
</div>
|
|
75
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i1.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i4.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i4.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "component", type: i4.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
76
|
+
}
|
|
77
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetEditComponent, decorators: [{
|
|
78
|
+
type: Component,
|
|
79
|
+
args: [{
|
|
80
|
+
selector: 'axp-text-box-widget',
|
|
81
|
+
template: `
|
|
82
|
+
<div class="ax-grid ax-grid-cols-12 ax-gap-4">
|
|
83
|
+
@for (text of internalValue(); track $index) {
|
|
84
|
+
<ax-text-box class="ax-col-span-12" [ngModel]="text" [type]="'text'" (onValueChanged)="handleValueChange($event, $index)" [disabled]="disabled()" [placeholder]="placeholder()">
|
|
85
|
+
@for (validation of validationRules(); track $index) {
|
|
86
|
+
<ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
|
|
87
|
+
}
|
|
88
|
+
@if(clearButton()){
|
|
89
|
+
<ax-clear-button></ax-clear-button>
|
|
90
|
+
} @if(multiple()){
|
|
91
|
+
<ax-suffix>
|
|
92
|
+
<ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
|
|
93
|
+
<ax-icon class="far fa-trash"> </ax-icon>
|
|
94
|
+
</ax-button>
|
|
95
|
+
</ax-suffix>
|
|
96
|
+
}
|
|
97
|
+
</ax-text-box>
|
|
98
|
+
} @if(multiple()){
|
|
99
|
+
<ax-button
|
|
100
|
+
[text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
|
|
101
|
+
look="twotone"
|
|
102
|
+
[disabled]="disabled()"
|
|
103
|
+
(onClick)="addItem()"
|
|
104
|
+
class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
|
|
105
|
+
>
|
|
106
|
+
<ax-prefix>
|
|
107
|
+
<ax-icon class="fa-solid fa-add"></ax-icon>
|
|
108
|
+
</ax-prefix>
|
|
109
|
+
</ax-button>
|
|
110
|
+
}
|
|
111
|
+
</div>
|
|
112
|
+
`,
|
|
113
|
+
standalone: true,
|
|
114
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
115
|
+
imports: [CommonModule, AXTextBoxModule, FormsModule, AXFormModule, AXDecoratorModule, AXValidationModule, AXButtonModule],
|
|
116
|
+
inputs: [],
|
|
117
|
+
}]
|
|
118
|
+
}] });
|
|
119
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ib3gtd2lkZ2V0LWVkaXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL3RleHQtYm94LXdpZGdldC90ZXh0LWJveC13aWRnZXQtZWRpdC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRTNELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDOUQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFN0QsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDckUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQVUsUUFBUSxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzdGLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7OztBQXlDN0MsTUFBTSxPQUFPLDZCQUE4QixTQUFRLGtCQUF1QjtJQXZDMUU7O1FBeUNZLGFBQVEsR0FBRyxRQUFRLENBQVUsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFVBQVUsQ0FBWSxDQUFDLENBQUM7UUFDMUUsZ0JBQVcsR0FBRyxRQUFRLENBQVUsR0FBRyxFQUFFLENBQUUsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLGFBQWEsQ0FBYSxJQUFJLElBQUksQ0FBQyxDQUFDO1FBQzFGLGFBQVEsR0FBRyxRQUFRLENBQVUsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFVBQVUsQ0FBWSxDQUFDLENBQUM7UUFDMUUsZ0JBQVcsR0FBRyxRQUFRLENBQVMsR0FBRyxFQUFFLENBQUUsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLGFBQWEsQ0FBWSxDQUFDLENBQUM7UUFDaEYsb0JBQWUsR0FBRyxRQUFRLENBQXFCLEdBQUcsRUFBRSxDQUFFLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBd0IsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUd0SCxrQkFBYSxHQUFxQixRQUFRLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0tBa0JwSTtJQWhCVyxpQkFBaUIsQ0FBQyxDQUFzQixFQUFFLENBQVM7UUFDM0QsSUFBSSxDQUFDLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztZQUN4QixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO1lBQzVGLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRTtnQkFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDOztnQkFDekMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNuQyxDQUFDO0lBQ0gsQ0FBQztJQUVTLE9BQU87UUFDZixNQUFNLFNBQVMsR0FBRyxDQUFDLEdBQUcsSUFBSSxDQUFDLGFBQWEsRUFBRSxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ2hELElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDM0IsQ0FBQztJQUNTLFVBQVUsQ0FBQyxDQUFTO1FBQzVCLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLElBQUksQ0FBQyxDQUFDLENBQUM7UUFDeEUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUMzQixDQUFDOzhHQTFCVSw2QkFBNkI7a0dBQTdCLDZCQUE2QixzR0FyQzlCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBK0JULDJEQUdTLFlBQVksOEJBQUUsZUFBZSxxYkFBRSxXQUFXLDhWQUFFLFlBQVksaUtBQUUsaUJBQWlCLHVjQUFFLGtCQUFrQiw4QkFBRSxjQUFjOzsyRkFHOUcsNkJBQTZCO2tCQXZDekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUscUJBQXFCO29CQUMvQixRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0ErQlQ7b0JBQ0QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsZUFBZSxFQUFFLFdBQVcsRUFBRSxZQUFZLEVBQUUsaUJBQWlCLEVBQUUsa0JBQWtCLEVBQUUsY0FBYyxDQUFDO29CQUMxSCxNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2J1dHRvbic7XG5pbXBvcnQgeyBBWFZhbHVlQ2hhbmdlZEV2ZW50IH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2NvbW1vbic7XG5pbXBvcnQgeyBBWERlY29yYXRvck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kZWNvcmF0b3JzJztcbmltcG9ydCB7IEFYRm9ybU1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9mb3JtJztcbmltcG9ydCB7IEFYVGV4dEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy90ZXh0LWJveCc7XG5pbXBvcnQgeyBBWFZhbGlkYXRpb25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvcmUvdmFsaWRhdGlvbic7XG5pbXBvcnQgeyBBWFBWYWxpZGF0aW9uUnVsZXMgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvcmUnO1xuaW1wb3J0IHsgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgU2lnbmFsLCBjb21wdXRlZCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLXRleHQtYm94LXdpZGdldCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImF4LWdyaWQgYXgtZ3JpZC1jb2xzLTEyIGF4LWdhcC00XCI+XG4gICAgICBAZm9yICh0ZXh0IG9mIGludGVybmFsVmFsdWUoKTsgdHJhY2sgJGluZGV4KSB7XG4gICAgICA8YXgtdGV4dC1ib3ggY2xhc3M9XCJheC1jb2wtc3Bhbi0xMlwiIFtuZ01vZGVsXT1cInRleHRcIiAgW3R5cGVdPVwiJ3RleHQnXCIgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVZhbHVlQ2hhbmdlKCRldmVudCwgJGluZGV4KVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZCgpXCIgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyKClcIj5cbiAgICAgICAgQGZvciAodmFsaWRhdGlvbiBvZiB2YWxpZGF0aW9uUnVsZXMoKTsgdHJhY2sgJGluZGV4KSB7XG4gICAgICAgICAgPGF4LXZhbGlkYXRpb24tcnVsZSBbcnVsZV09XCJ2YWxpZGF0aW9uLnJ1bGVcIiBbbWVzc2FnZV09XCJ2YWxpZGF0aW9uLm9wdGlvbnM/Lm1lc3NhZ2VcIiBbb3B0aW9uc109XCJ2YWxpZGF0aW9uLm9wdGlvbnNcIj48L2F4LXZhbGlkYXRpb24tcnVsZT5cbiAgICAgICAgfVxuICAgICAgICBAaWYoY2xlYXJCdXR0b24oKSl7XG4gICAgICAgIDxheC1jbGVhci1idXR0b24+PC9heC1jbGVhci1idXR0b24+XG4gICAgICAgIH0gQGlmKG11bHRpcGxlKCkpe1xuICAgICAgICA8YXgtc3VmZml4PlxuICAgICAgICAgIDxheC1idXR0b24gY2xhc3M9XCJheC1ib3JkZXItc1wiIChvbkNsaWNrKT1cImRlbGV0ZUl0ZW0oJGluZGV4KVwiIGxvb2s9XCJibGFua1wiIGNvbG9yPVwiZGFuZ2VyXCI+XG4gICAgICAgICAgICA8YXgtaWNvbiBjbGFzcz1cImZhciBmYS10cmFzaFwiPiA8L2F4LWljb24+XG4gICAgICAgICAgPC9heC1idXR0b24+XG4gICAgICAgIDwvYXgtc3VmZml4PlxuICAgICAgICB9XG4gICAgICA8L2F4LXRleHQtYm94PlxuICAgICAgfSBAaWYobXVsdGlwbGUoKSl7XG4gICAgICA8YXgtYnV0dG9uXG4gICAgICAgIFt0ZXh0XT1cImludGVybmFsVmFsdWUoKS5sZW5ndGggPT0gMCA/ICdBZGQgTmV3JyA6ICdBZGQgQW5vdGhlcidcIlxuICAgICAgICBsb29rPVwidHdvdG9uZVwiXG4gICAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZCgpXCJcbiAgICAgICAgKG9uQ2xpY2spPVwiYWRkSXRlbSgpXCJcbiAgICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtOCBsZzpheC1jb2wtc3RhcnQtMTAgMnhsOmF4LWNvbC1zdGFydC0xMCBheC1jb2wtZW5kLTEzXCJcbiAgICAgID5cbiAgICAgICAgPGF4LXByZWZpeD5cbiAgICAgICAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWFkZFwiPjwvYXgtaWNvbj5cbiAgICAgICAgPC9heC1wcmVmaXg+XG4gICAgICA8L2F4LWJ1dHRvbj5cbiAgICAgIH1cbiAgICA8L2Rpdj5cbiAgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEFYVGV4dEJveE1vZHVsZSwgRm9ybXNNb2R1bGUsIEFYRm9ybU1vZHVsZSwgQVhEZWNvcmF0b3JNb2R1bGUsIEFYVmFsaWRhdGlvbk1vZHVsZSwgQVhCdXR0b25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBUZXh0Qm94V2lkZ2V0RWRpdENvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnk+IHtcblxuICBwcm90ZWN0ZWQgbXVsdGlwbGUgPSBjb21wdXRlZDxib29sZWFuPigoKSA9PiB0aGlzLm9wdGlvbnMoKVtcIm11bHRpcGxlXCJdIGFzIGJvb2xlYW4pO1xuICBwcm90ZWN0ZWQgY2xlYXJCdXR0b24gPSBjb21wdXRlZDxib29sZWFuPigoKSA9PiAodGhpcy5vcHRpb25zKClbXCJjbGVhckJ1dHRvblwiXSBhcyBib29sZWFuKSA/PyB0cnVlKTtcbiAgcHJvdGVjdGVkIGRpc2FibGVkID0gY29tcHV0ZWQ8Ym9vbGVhbj4oKCkgPT4gdGhpcy5vcHRpb25zKClbXCJkaXNhYmxlZFwiXSBhcyBib29sZWFuKTtcbiAgcHJvdGVjdGVkIHBsYWNlaG9sZGVyID0gY29tcHV0ZWQ8c3RyaW5nPigoKSA9PiAodGhpcy5vcHRpb25zKClbXCJwbGFjZWhvbGRlclwiXSBhcyBzdHJpbmcpKTtcbiAgcHJvdGVjdGVkIHZhbGlkYXRpb25SdWxlcyA9IGNvbXB1dGVkPEFYUFZhbGlkYXRpb25SdWxlcz4oKCkgPT4gKHRoaXMub3B0aW9ucygpW1widmFsaWRhdGlvblJ1bGVzXCJdIGFzIEFYUFZhbGlkYXRpb25SdWxlcykgPz8gW10pO1xuXG5cbiAgcHJvdGVjdGVkIGludGVybmFsVmFsdWU6IFNpZ25hbDxzdHJpbmdbXT4gPSBjb21wdXRlZCgoKSA9PiAoQXJyYXkuaXNBcnJheSh0aGlzLmdldFZhbHVlKCkpID8gdGhpcy5nZXRWYWx1ZSgpIDogW3RoaXMuZ2V0VmFsdWUoKV0pKTtcblxuICBwcm90ZWN0ZWQgaGFuZGxlVmFsdWVDaGFuZ2UoZTogQVhWYWx1ZUNoYW5nZWRFdmVudCwgaTogbnVtYmVyKSB7XG4gICAgaWYgKGUuaXNVc2VySW50ZXJhY3Rpb24pIHtcbiAgICAgIGNvbnN0IG5ld1ZhbHVlcyA9IHRoaXMuaW50ZXJuYWxWYWx1ZSgpLm1hcCgoaXRlbSwgaW5kZXgpID0+IChpID09PSBpbmRleCA/IGUudmFsdWUgOiBpdGVtKSk7XG4gICAgICBpZiAodGhpcy5tdWx0aXBsZSgpKSB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlcyk7XG4gICAgICBlbHNlIHRoaXMuc2V0VmFsdWUobmV3VmFsdWVzWzBdKTtcbiAgICB9XG4gIH1cblxuICBwcm90ZWN0ZWQgYWRkSXRlbSgpIHtcbiAgICBjb25zdCBuZXdWYWx1ZXMgPSBbLi4udGhpcy5pbnRlcm5hbFZhbHVlKCksICcnXTtcbiAgICB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlcyk7XG4gIH1cbiAgcHJvdGVjdGVkIGRlbGV0ZUl0ZW0oaTogbnVtYmVyKSB7XG4gICAgY29uc3QgbmV3VmFsdWVzID0gdGhpcy5pbnRlcm5hbFZhbHVlKCkuZmlsdGVyKChfLCBpbmRleCkgPT4gaW5kZXggIT0gaSk7XG4gICAgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXMpO1xuICB9XG59XG4iXX0=
|
package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.mjs
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AXPWidgetComponent } 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 AXPTextBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
7
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBoxWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9
|
+
}
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetFilterComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ib3gtd2lkZ2V0LWZpbHRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvdGV4dC1ib3gtd2lkZ2V0L3RleHQtYm94LXdpZGdldC1maWx0ZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFTN0MsTUFBTSxPQUFPLCtCQUFnQyxTQUFRLGtCQUF1Qjs4R0FBL0QsK0JBQStCO2tHQUEvQiwrQkFBK0IsK0ZBTmhDLEVBQUUsMkRBR0YsWUFBWSw4QkFBRSxXQUFXOzsyRkFHeEIsK0JBQStCO2tCQVAzQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFdBQVcsQ0FBQztvQkFDcEMsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgRm9ybXNNb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUFRleHRCb3hXaWRnZXRGaWx0ZXJDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8YW55PiB7IH0iXX0=
|
package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.mjs
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AXPWidgetComponent } 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 AXPTextBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBoxWidgetPrintComponent, 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.2.0", ngImport: i0, type: AXPTextBoxWidgetPrintComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ib3gtd2lkZ2V0LXByaW50LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvZWRpdG9ycy90ZXh0LWJveC13aWRnZXQvdGV4dC1ib3gtd2lkZ2V0LXByaW50LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFRM0UsTUFBTSxPQUFPLDhCQUErQixTQUFRLGtCQUF1Qjs4R0FBOUQsOEJBQThCO2tHQUE5Qiw4QkFBOEIsK0ZBTi9CLEVBQUUsMkRBR0YsWUFBWTs7MkZBR1gsOEJBQThCO2tCQVAxQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUFRleHRCb3hXaWRnZXRQcmludENvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnk+IHsgfSJdfQ==
|
package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.mjs
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { ChangeDetectionStrategy, Component, computed } from '@angular/core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class AXPTextBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
super(...arguments);
|
|
8
|
+
this.internalValue = computed(() => (Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()]));
|
|
9
|
+
this.multiple = computed(() => this.options()["multiple"]);
|
|
10
|
+
}
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPTextBoxWidgetViewComponent, isStandalone: true, selector: "axp-text-box-widget", usesInheritance: true, ngImport: i0, template: `
|
|
13
|
+
<div>
|
|
14
|
+
@if(multiple())
|
|
15
|
+
{
|
|
16
|
+
@for (item of internalValue(); track $index) {
|
|
17
|
+
<p>{{ item }}</p>
|
|
18
|
+
}
|
|
19
|
+
}@else {
|
|
20
|
+
<p>{{ internalValue()[0] }}</p>
|
|
21
|
+
}
|
|
22
|
+
</div>
|
|
23
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
24
|
+
}
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetViewComponent, decorators: [{
|
|
26
|
+
type: Component,
|
|
27
|
+
args: [{
|
|
28
|
+
selector: 'axp-text-box-widget',
|
|
29
|
+
template: `
|
|
30
|
+
<div>
|
|
31
|
+
@if(multiple())
|
|
32
|
+
{
|
|
33
|
+
@for (item of internalValue(); track $index) {
|
|
34
|
+
<p>{{ item }}</p>
|
|
35
|
+
}
|
|
36
|
+
}@else {
|
|
37
|
+
<p>{{ internalValue()[0] }}</p>
|
|
38
|
+
}
|
|
39
|
+
</div>
|
|
40
|
+
`,
|
|
41
|
+
standalone: true,
|
|
42
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
43
|
+
imports: [CommonModule],
|
|
44
|
+
inputs: [],
|
|
45
|
+
}]
|
|
46
|
+
}] });
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL3RleHQtYm94LXdpZGdldC90ZXh0LWJveC13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDckUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQXFCN0UsTUFBTSxPQUFPLDZCQUE4QixTQUFRLGtCQUF1QjtJQW5CMUU7O1FBb0JZLGtCQUFhLEdBQUcsUUFBUSxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUV2RyxhQUFRLEdBQUcsUUFBUSxDQUFVLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQVksQ0FBQyxDQUFDO0tBQ3JGOzhHQUpZLDZCQUE2QjtrR0FBN0IsNkJBQTZCLHNHQWpCOUI7Ozs7Ozs7Ozs7O0dBV1QsMkRBR1MsWUFBWTs7MkZBR1gsNkJBQTZCO2tCQW5CekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUscUJBQXFCO29CQUMvQixRQUFRLEVBQUU7Ozs7Ozs7Ozs7O0dBV1Q7b0JBQ0QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgY29tcHV0ZWQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLXRleHQtYm94LXdpZGdldCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdj5cbiAgICAgIEBpZihtdWx0aXBsZSgpKVxuICAgICAgeyBcbiAgICAgICAgQGZvciAoaXRlbSBvZiBpbnRlcm5hbFZhbHVlKCk7IHRyYWNrICRpbmRleCkge1xuICAgICAgICAgIDxwPnt7IGl0ZW0gfX08L3A+XG4gICAgICAgIH0gXG4gICAgICB9QGVsc2Uge1xuICAgICAgICA8cD57eyBpbnRlcm5hbFZhbHVlKClbMF0gfX08L3A+XG4gICAgICB9XG4gICAgPC9kaXY+XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgaW5wdXRzOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQVGV4dEJveFdpZGdldFZpZXdDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8YW55PiB7XG4gIHByb3RlY3RlZCBpbnRlcm5hbFZhbHVlID0gY29tcHV0ZWQoKCkgPT4gKEFycmF5LmlzQXJyYXkodGhpcy5nZXRWYWx1ZSgpKSA/IHRoaXMuZ2V0VmFsdWUoKSA6IFt0aGlzLmdldFZhbHVlKCldKSk7XG5cbiAgcHJvdGVjdGVkIG11bHRpcGxlID0gY29tcHV0ZWQ8Ym9vbGVhbj4oKCkgPT4gdGhpcy5vcHRpb25zKClbXCJtdWx0aXBsZVwiXSBhcyBib29sZWFuKTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { cloneProperty } from '@acorex/platform/layout/builder';
|
|
2
|
+
import { AXP_ALLOW_MULTIPLE_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_VALIDATION_PROPERTY, plainTextDefaultProperty, } from '../../../properties';
|
|
3
|
+
export const AXPTextBoxWidget = {
|
|
4
|
+
name: 'text-box',
|
|
5
|
+
title: "Text Box",
|
|
6
|
+
icon: "fa-solid fa-input-text",
|
|
7
|
+
properties: [
|
|
8
|
+
AXP_NAME_PROPERTY,
|
|
9
|
+
AXP_DATA_PATH_PROPERTY,
|
|
10
|
+
AXP_ALLOW_MULTIPLE_PROPERTY,
|
|
11
|
+
AXP_DISABLED_PROPERTY,
|
|
12
|
+
AXP_VALIDATION_PROPERTY,
|
|
13
|
+
AXP_PLACEHOLDER_PROPERTY,
|
|
14
|
+
plainTextDefaultProperty(),
|
|
15
|
+
cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: "200px" } })
|
|
16
|
+
],
|
|
17
|
+
components: {
|
|
18
|
+
view: {
|
|
19
|
+
component: () => import('./text-box-widget-view.component').then((c) => c.AXPTextBoxWidgetViewComponent),
|
|
20
|
+
},
|
|
21
|
+
edit: {
|
|
22
|
+
component: () => import('./text-box-widget-edit.component').then((c) => c.AXPTextBoxWidgetEditComponent),
|
|
23
|
+
},
|
|
24
|
+
filter: {
|
|
25
|
+
component: () => import('./text-box-widget-filter.component').then((c) => c.AXPTextBoxWidgetFilterComponent),
|
|
26
|
+
},
|
|
27
|
+
column: {
|
|
28
|
+
component: () => import('./text-box-widget-column.component').then((c) => c.AXPTextBoxWidgetColumnComponent),
|
|
29
|
+
},
|
|
30
|
+
print: {
|
|
31
|
+
component: () => import('./text-box-widget-print.component').then((c) => c.AXPTextBoxWidgetPrintComponent),
|
|
32
|
+
},
|
|
33
|
+
designer: {
|
|
34
|
+
component: () => import('./text-box-widget-edit.component').then((c) => c.AXPTextBoxWidgetEditComponent),
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ib3gtd2lkZ2V0LmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvZWRpdG9ycy90ZXh0LWJveC13aWRnZXQvdGV4dC1ib3gtd2lkZ2V0LmNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQW1CLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2pGLE9BQU8sRUFDTCwyQkFBMkIsRUFDM0Isc0JBQXNCLEVBQ3RCLHFCQUFxQixFQUNyQixpQkFBaUIsRUFDakIsd0JBQXdCLEVBQ3hCLCtCQUErQixFQUMvQix1QkFBdUIsRUFDdkIsd0JBQXdCLEdBQ3pCLE1BQU0scUJBQXFCLENBQUM7QUFFN0IsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQW9CO0lBQy9DLElBQUksRUFBRSxVQUFVO0lBQ2hCLEtBQUssRUFBRSxVQUFVO0lBQ2pCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsVUFBVSxFQUFFO1FBQ1YsaUJBQWlCO1FBQ2pCLHNCQUFzQjtRQUN0QiwyQkFBMkI7UUFDM0IscUJBQXFCO1FBQ3JCLHVCQUF1QjtRQUN2Qix3QkFBd0I7UUFDeEIsd0JBQXdCLEVBQUU7UUFDMUIsYUFBYSxDQUFDLCtCQUErQixFQUFFLEVBQUUsTUFBTSxFQUFFLEVBQUUsWUFBWSxFQUFFLE9BQU8sRUFBRSxFQUFFLENBQUM7S0FDdEY7SUFDRCxVQUFVLEVBQUU7UUFDVixJQUFJLEVBQUU7WUFDSixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLGtDQUFrQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsNkJBQTZCLENBQUM7U0FDekc7UUFDRCxJQUFJLEVBQUU7WUFDSixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLGtDQUFrQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsNkJBQTZCLENBQUM7U0FDekc7UUFDRCxNQUFNLEVBQUU7WUFDTixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0JBQStCLENBQUM7U0FDN0c7UUFDRCxNQUFNLEVBQUU7WUFDTixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0JBQStCLENBQUM7U0FDN0c7UUFDRCxLQUFLLEVBQUU7WUFDTCxTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG1DQUFtQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsOEJBQThCLENBQUM7U0FDM0c7UUFDRCxRQUFRLEVBQUU7WUFDUixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLGtDQUFrQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsNkJBQTZCLENBQUM7U0FDekc7S0FDRjtDQUNGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb25maWcsIGNsb25lUHJvcGVydHkgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7XG4gIEFYUF9BTExPV19NVUxUSVBMRV9QUk9QRVJUWSxcbiAgQVhQX0RBVEFfUEFUSF9QUk9QRVJUWSxcbiAgQVhQX0RJU0FCTEVEX1BST1BFUlRZLFxuICBBWFBfTkFNRV9QUk9QRVJUWSxcbiAgQVhQX1BMQUNFSE9MREVSX1BST1BFUlRZLFxuICBBWFBfVEFCTEVfQ09MVU1OX1dJRFRIX1BST1BFUlRZLFxuICBBWFBfVkFMSURBVElPTl9QUk9QRVJUWSxcbiAgcGxhaW5UZXh0RGVmYXVsdFByb3BlcnR5LFxufSBmcm9tICcuLi8uLi8uLi9wcm9wZXJ0aWVzJztcblxuZXhwb3J0IGNvbnN0IEFYUFRleHRCb3hXaWRnZXQ6IEFYUFdpZGdldENvbmZpZyA9IHtcbiAgbmFtZTogJ3RleHQtYm94JyxcbiAgdGl0bGU6IFwiVGV4dCBCb3hcIixcbiAgaWNvbjogXCJmYS1zb2xpZCBmYS1pbnB1dC10ZXh0XCIsXG4gIHByb3BlcnRpZXM6IFtcbiAgICBBWFBfTkFNRV9QUk9QRVJUWSxcbiAgICBBWFBfREFUQV9QQVRIX1BST1BFUlRZLFxuICAgIEFYUF9BTExPV19NVUxUSVBMRV9QUk9QRVJUWSxcbiAgICBBWFBfRElTQUJMRURfUFJPUEVSVFksXG4gICAgQVhQX1ZBTElEQVRJT05fUFJPUEVSVFksXG4gICAgQVhQX1BMQUNFSE9MREVSX1BST1BFUlRZLFxuICAgIHBsYWluVGV4dERlZmF1bHRQcm9wZXJ0eSgpLFxuICAgIGNsb25lUHJvcGVydHkoQVhQX1RBQkxFX0NPTFVNTl9XSURUSF9QUk9QRVJUWSwgeyBzY2hlbWE6IHsgZGVmYXVsdFZhbHVlOiBcIjIwMHB4XCIgfSB9KVxuICBdLFxuICBjb21wb25lbnRzOiB7XG4gICAgdmlldzoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vdGV4dC1ib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBUZXh0Qm94V2lkZ2V0Vmlld0NvbXBvbmVudCksXG4gICAgfSxcbiAgICBlZGl0OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90ZXh0LWJveC13aWRnZXQtZWRpdC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRleHRCb3hXaWRnZXRFZGl0Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGZpbHRlcjoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vdGV4dC1ib3gtd2lkZ2V0LWZpbHRlci5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRleHRCb3hXaWRnZXRGaWx0ZXJDb21wb25lbnQpLFxuICAgIH0sXG4gICAgY29sdW1uOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90ZXh0LWJveC13aWRnZXQtY29sdW1uLmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQVGV4dEJveFdpZGdldENvbHVtbkNvbXBvbmVudCksXG4gICAgfSxcbiAgICBwcmludDoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vdGV4dC1ib3gtd2lkZ2V0LXByaW50LmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQVGV4dEJveFdpZGdldFByaW50Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGRlc2lnbmVyOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90ZXh0LWJveC13aWRnZXQtZWRpdC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRleHRCb3hXaWRnZXRFZGl0Q29tcG9uZW50KSxcbiAgICB9LFxuICB9LFxufTtcbiJdfQ==
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './toggle-widget-view.component';
|
|
2
|
+
export * from './toggle-widget-edit.component';
|
|
3
|
+
export * from './toggle-widget-filter.component';
|
|
4
|
+
export * from './toggle-widget-column.component';
|
|
5
|
+
export * from './toggle-widget-print.component';
|
|
6
|
+
export * from './toggle-widget.config';
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvdG9nZ2xlLXdpZGdldC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vdG9nZ2xlLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3RvZ2dsZS13aWRnZXQtZWRpdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90b2dnbGUtd2lkZ2V0LWZpbHRlci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90b2dnbGUtd2lkZ2V0LWNvbHVtbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90b2dnbGUtd2lkZ2V0LXByaW50LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3RvZ2dsZS13aWRnZXQuY29uZmlnJzsiXX0=
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { AXBadgeModule } from '@acorex/components/badge';
|
|
2
|
+
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
3
|
+
import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@acorex/components/decorators";
|
|
8
|
+
import * as i2 from "@acorex/components/badge";
|
|
9
|
+
export class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
this.negative = this.options["negative"];
|
|
13
|
+
this.trulyText = this.options["trulyText"];
|
|
14
|
+
this.falsyText = this.options["falsyText"];
|
|
15
|
+
}
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPToggleWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `@if(rawValue){ @if(trulyText){
|
|
18
|
+
<ax-badge [text]="trulyText" [color]="negative ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
|
|
19
|
+
}@else { @if(negative){
|
|
20
|
+
<ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
|
|
21
|
+
}@else {
|
|
22
|
+
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
23
|
+
} } }@else { @if(falsyText){
|
|
24
|
+
<ax-badge [text]="falsyText" [color]="negative ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
25
|
+
}@else { @if(negative){
|
|
26
|
+
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
27
|
+
}@else {
|
|
28
|
+
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
29
|
+
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
30
|
+
}
|
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetColumnComponent, decorators: [{
|
|
32
|
+
type: Component,
|
|
33
|
+
args: [{
|
|
34
|
+
template: `@if(rawValue){ @if(trulyText){
|
|
35
|
+
<ax-badge [text]="trulyText" [color]="negative ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
|
|
36
|
+
}@else { @if(negative){
|
|
37
|
+
<ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
|
|
38
|
+
}@else {
|
|
39
|
+
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
40
|
+
} } }@else { @if(falsyText){
|
|
41
|
+
<ax-badge [text]="falsyText" [color]="negative ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
42
|
+
}@else { @if(negative){
|
|
43
|
+
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
44
|
+
}@else {
|
|
45
|
+
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
46
|
+
} } }`,
|
|
47
|
+
standalone: true,
|
|
48
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
49
|
+
imports: [CommonModule, AXDecoratorModule, AXBadgeModule],
|
|
50
|
+
inputs: ['rawValue'],
|
|
51
|
+
}]
|
|
52
|
+
}] });
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXdpZGdldC1jb2x1bW4uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL3RvZ2dsZS13aWRnZXQvdG9nZ2xlLXdpZGdldC1jb2x1bW4uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQXFCbkUsTUFBTSxPQUFPLDhCQUErQixTQUFRLHdCQUE2QjtJQXBCakY7O1FBcUJZLGFBQVEsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBWSxDQUFDO1FBQy9DLGNBQVMsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBVyxDQUFDO1FBQ2hELGNBQVMsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBVyxDQUFDO0tBQzNEOzhHQUpZLDhCQUE4QjtrR0FBOUIsOEJBQThCLGlJQW5CL0I7Ozs7Ozs7Ozs7OztVQVlGLDJEQUlFLFlBQVksOEJBQUUsaUJBQWlCLCtIQUFFLGFBQWE7OzJGQUc3Qyw4QkFBOEI7a0JBcEIxQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7O1VBWUY7b0JBRVIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsaUJBQWlCLEVBQUUsYUFBYSxDQUFDO29CQUN6RCxNQUFNLEVBQUUsQ0FBQyxVQUFVLENBQUM7aUJBQ3JCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhCYWRnZU1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9iYWRnZSc7XG5pbXBvcnQgeyBBWERlY29yYXRvck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kZWNvcmF0b3JzJztcbmltcG9ydCB7IEFYUENvbHVtbldpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYEBpZihyYXdWYWx1ZSl7IEBpZih0cnVseVRleHQpe1xuICAgIDxheC1iYWRnZSBbdGV4dF09XCJ0cnVseVRleHRcIiBbY29sb3JdPVwibmVnYXRpdmUgPyAnZGFuZ2VyJyA6ICdzdWNjZXNzJ1wiIFtsb29rXT1cIid0d290b25lJ1wiPjwvYXgtYmFkZ2U+XG4gICAgfUBlbHNlIHsgQGlmKG5lZ2F0aXZlKXtcbiAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWNoZWNrIGF4LXRleHQtc2FuZ2VyXCI+IDwvYXgtaWNvbj5cbiAgICB9QGVsc2Uge1xuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEtY2hlY2sgYXgtdGV4dC1zdWNjZXNzXCI+IDwvYXgtaWNvbj5cbiAgICB9IH0gfUBlbHNlIHsgQGlmKGZhbHN5VGV4dCl7XG4gICAgPGF4LWJhZGdlIFt0ZXh0XT1cImZhbHN5VGV4dFwiIFtjb2xvcl09XCJuZWdhdGl2ZSA/ICdzdWNjZXNzJyA6ICdkYW5nZXInXCIgW2xvb2tdPVwiJ3R3b3RvbmUnXCI+PC9heC1iYWRnZT5cbiAgICB9QGVsc2UgeyBAaWYobmVnYXRpdmUpe1xuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEteG1hcmsgYXgtdGV4dC1zdWNjZXNzXCI+IDwvYXgtaWNvbj5cbiAgICB9QGVsc2Uge1xuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEteG1hcmsgYXgtdGV4dC1kYW5nZXJcIj4gPC9heC1pY29uPlxuICAgIH0gfSB9YCxcblxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQVhEZWNvcmF0b3JNb2R1bGUsIEFYQmFkZ2VNb2R1bGVdLFxuICBpbnB1dHM6IFsncmF3VmFsdWUnXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQVG9nZ2xlV2lkZ2V0Q29sdW1uQ29tcG9uZW50IGV4dGVuZHMgQVhQQ29sdW1uV2lkZ2V0Q29tcG9uZW50PGFueT4ge1xuICBwcm90ZWN0ZWQgbmVnYXRpdmUgPSB0aGlzLm9wdGlvbnNbXCJuZWdhdGl2ZVwiXSBhcyBib29sZWFuO1xuICBwcm90ZWN0ZWQgdHJ1bHlUZXh0ID0gdGhpcy5vcHRpb25zW1widHJ1bHlUZXh0XCJdIGFzIHN0cmluZztcbiAgcHJvdGVjdGVkIGZhbHN5VGV4dCA9IHRoaXMub3B0aW9uc1tcImZhbHN5VGV4dFwiXSBhcyBzdHJpbmc7XG59XG4iXX0=
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AXSwitchModule } from '@acorex/components/switch';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import { ChangeDetectionStrategy, Component, computed } from '@angular/core';
|
|
5
|
+
import { FormsModule } from '@angular/forms';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/forms";
|
|
8
|
+
import * as i2 from "@acorex/components/switch";
|
|
9
|
+
export class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
this.disabled = computed(() => this.options()['disabled']);
|
|
13
|
+
this.color = computed(() => this.options()['color']?.id ?? 'primary');
|
|
14
|
+
}
|
|
15
|
+
onModelChange(e) {
|
|
16
|
+
this.setValue(e);
|
|
17
|
+
}
|
|
18
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
19
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<ax-switch [ngModel]="this.getValue()" [disabled]="disabled()" [color]="color()" (ngModelChange)="onModelChange($event)"></ax-switch>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSwitchModule }, { kind: "component", type: i2.AXSwitchComponent, selector: "ax-switch", inputs: ["disabled", "readonly", "color", "tabIndex", "value", "name", "isLoading"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
20
|
+
}
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetEditComponent, decorators: [{
|
|
22
|
+
type: Component,
|
|
23
|
+
args: [{
|
|
24
|
+
template: `<ax-switch [ngModel]="this.getValue()" [disabled]="disabled()" [color]="color()" (ngModelChange)="onModelChange($event)"></ax-switch>`,
|
|
25
|
+
standalone: true,
|
|
26
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
27
|
+
imports: [CommonModule, FormsModule, AXSwitchModule],
|
|
28
|
+
inputs: [],
|
|
29
|
+
}]
|
|
30
|
+
}] });
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXdpZGdldC1lZGl0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvZWRpdG9ycy90b2dnbGUtd2lkZ2V0L3RvZ2dsZS13aWRnZXQtZWRpdC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM3RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7QUFTN0MsTUFBTSxPQUFPLDRCQUE2QixTQUFRLGtCQUF1QjtJQVB6RTs7UUFRWSxhQUFRLEdBQUcsUUFBUSxDQUFVLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1FBQy9ELFVBQUssR0FBRyxRQUFRLENBQW1CLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUMsRUFBRSxFQUFFLElBQUksU0FBUyxDQUFDLENBQUM7S0FLOUY7SUFIVyxhQUFhLENBQUMsQ0FBVTtRQUNoQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ25CLENBQUM7OEdBTlUsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsK0ZBTjdCLHVJQUF1SSwyREFHdkksWUFBWSw4QkFBRSxXQUFXLDhWQUFFLGNBQWM7OzJGQUd4Qyw0QkFBNEI7a0JBUHhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHVJQUF1STtvQkFDakosVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsV0FBVyxFQUFFLGNBQWMsQ0FBQztvQkFDcEQsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFN0eWxlQ29sb3JUeXBlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2NvbW1vbic7XG5pbXBvcnQgeyBBWFN3aXRjaE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9zd2l0Y2gnO1xuaW1wb3J0IHsgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgY29tcHV0ZWQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGA8YXgtc3dpdGNoIFtuZ01vZGVsXT1cInRoaXMuZ2V0VmFsdWUoKVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZCgpXCIgW2NvbG9yXT1cImNvbG9yKClcIiAobmdNb2RlbENoYW5nZSk9XCJvbk1vZGVsQ2hhbmdlKCRldmVudClcIj48L2F4LXN3aXRjaD5gLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgRm9ybXNNb2R1bGUsIEFYU3dpdGNoTW9kdWxlXSxcbiAgaW5wdXRzOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQVG9nZ2xlV2lkZ2V0RWRpdENvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnk+IHtcbiAgcHJvdGVjdGVkIGRpc2FibGVkID0gY29tcHV0ZWQ8Ym9vbGVhbj4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2Rpc2FibGVkJ10pO1xuICBwcm90ZWN0ZWQgY29sb3IgPSBjb21wdXRlZDxBWFN0eWxlQ29sb3JUeXBlPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnY29sb3InXT8uaWQgPz8gJ3ByaW1hcnknKTtcblxuICBwcm90ZWN0ZWQgb25Nb2RlbENoYW5nZShlOiBib29sZWFuKSB7XG4gICAgdGhpcy5zZXRWYWx1ZShlKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AXPWidgetComponent } 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 AXPToggleWidgetFilterComponent extends AXPWidgetComponent {
|
|
7
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetFilterComponent, 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.2.0", ngImport: i0, type: AXPToggleWidgetFilterComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXdpZGdldC1maWx0ZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL3RvZ2dsZS13aWRnZXQvdG9nZ2xlLXdpZGdldC1maWx0ZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFTN0MsTUFBTSxPQUFPLDhCQUErQixTQUFRLGtCQUF1Qjs4R0FBOUQsOEJBQThCO2tHQUE5Qiw4QkFBOEIsK0ZBTi9CLEVBQUUsMkRBR0YsWUFBWSw4QkFBRSxXQUFXOzsyRkFHeEIsOEJBQThCO2tCQVAxQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFdBQVcsQ0FBQztvQkFDcEMsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgRm9ybXNNb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUFRvZ2dsZVdpZGdldEZpbHRlckNvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnk+IHsgfSJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AXPWidgetComponent } 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 AXPToggleWidgetPrintComponent extends AXPWidgetComponent {
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPToggleWidgetPrintComponent, 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.2.0", ngImport: i0, type: AXPToggleWidgetPrintComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXdpZGdldC1wcmludC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvdG9nZ2xlLXdpZGdldC90b2dnbGUtd2lkZ2V0LXByaW50LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFRM0UsTUFBTSxPQUFPLDZCQUE4QixTQUFRLGtCQUF1Qjs4R0FBN0QsNkJBQTZCO2tHQUE3Qiw2QkFBNkIsK0ZBTjlCLEVBQUUsMkRBR0YsWUFBWTs7MkZBR1gsNkJBQTZCO2tCQVB6QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUFRvZ2dsZVdpZGdldFByaW50Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0Q29tcG9uZW50PGFueT4geyB9Il19
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { AXBadgeModule } from '@acorex/components/badge';
|
|
2
|
+
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
3
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import { ChangeDetectionStrategy, Component, computed } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@acorex/components/decorators";
|
|
8
|
+
import * as i2 from "@acorex/components/badge";
|
|
9
|
+
export class AXPToggleWidgetViewComponent extends AXPWidgetComponent {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
this.negative = computed(() => this.options()['negative']);
|
|
13
|
+
this.falsyText = computed(() => this.options()['falsyText']);
|
|
14
|
+
this.trulyText = computed(() => this.options()['trulyText']);
|
|
15
|
+
}
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPToggleWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` @if(getValue()){ @if(trulyText()){
|
|
18
|
+
<ax-badge [text]="trulyText()" [color]="negative() ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
|
|
19
|
+
}@else { @if(negative()){
|
|
20
|
+
<ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
|
|
21
|
+
}@else {
|
|
22
|
+
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
23
|
+
} } }@else { @if(falsyText()){
|
|
24
|
+
<ax-badge [text]="falsyText()" [color]="negative() ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
25
|
+
}@else { @if(negative()){
|
|
26
|
+
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
27
|
+
}@else {
|
|
28
|
+
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
29
|
+
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
30
|
+
}
|
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPToggleWidgetViewComponent, decorators: [{
|
|
32
|
+
type: Component,
|
|
33
|
+
args: [{
|
|
34
|
+
template: ` @if(getValue()){ @if(trulyText()){
|
|
35
|
+
<ax-badge [text]="trulyText()" [color]="negative() ? 'danger' : 'success'" [look]="'twotone'"></ax-badge>
|
|
36
|
+
}@else { @if(negative()){
|
|
37
|
+
<ax-icon class="fa-solid fa-check ax-text-sanger"> </ax-icon>
|
|
38
|
+
}@else {
|
|
39
|
+
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
40
|
+
} } }@else { @if(falsyText()){
|
|
41
|
+
<ax-badge [text]="falsyText()" [color]="negative() ? 'success' : 'danger'" [look]="'twotone'"></ax-badge>
|
|
42
|
+
}@else { @if(negative()){
|
|
43
|
+
<ax-icon class="fa-solid fa-xmark ax-text-success"> </ax-icon>
|
|
44
|
+
}@else {
|
|
45
|
+
<ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
|
|
46
|
+
} } }`,
|
|
47
|
+
standalone: true,
|
|
48
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
49
|
+
imports: [CommonModule, AXDecoratorModule, AXBadgeModule],
|
|
50
|
+
inputs: [],
|
|
51
|
+
}]
|
|
52
|
+
}] });
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvZWRpdG9ycy90b2dnbGUtd2lkZ2V0L3RvZ2dsZS13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQXFCN0UsTUFBTSxPQUFPLDRCQUE2QixTQUFRLGtCQUF1QjtJQW5CekU7O1FBb0JZLGFBQVEsR0FBRyxRQUFRLENBQVUsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUM7UUFDL0QsY0FBUyxHQUFHLFFBQVEsQ0FBUyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQztRQUNoRSxjQUFTLEdBQUcsUUFBUSxDQUFTLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDO0tBQzNFOzhHQUpZLDRCQUE0QjtrR0FBNUIsNEJBQTRCLCtGQWxCN0I7Ozs7Ozs7Ozs7OztVQVlGLDJEQUdFLFlBQVksOEJBQUUsaUJBQWlCLCtIQUFFLGFBQWE7OzJGQUc3Qyw0QkFBNEI7a0JBbkJ4QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7O1VBWUY7b0JBQ1IsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsaUJBQWlCLEVBQUUsYUFBYSxDQUFDO29CQUN6RCxNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQmFkZ2VNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYmFkZ2UnO1xuaW1wb3J0IHsgQVhEZWNvcmF0b3JNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZGVjb3JhdG9ycyc7XG5pbXBvcnQgeyBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBjb21wdXRlZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGAgQGlmKGdldFZhbHVlKCkpeyBAaWYodHJ1bHlUZXh0KCkpe1xuICAgIDxheC1iYWRnZSBbdGV4dF09XCJ0cnVseVRleHQoKVwiIFtjb2xvcl09XCJuZWdhdGl2ZSgpID8gJ2RhbmdlcicgOiAnc3VjY2VzcydcIiBbbG9va109XCIndHdvdG9uZSdcIj48L2F4LWJhZGdlPlxuICAgIH1AZWxzZSB7IEBpZihuZWdhdGl2ZSgpKXtcbiAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWNoZWNrIGF4LXRleHQtc2FuZ2VyXCI+IDwvYXgtaWNvbj5cbiAgICB9QGVsc2Uge1xuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEtY2hlY2sgYXgtdGV4dC1zdWNjZXNzXCI+IDwvYXgtaWNvbj5cbiAgICB9IH0gfUBlbHNlIHsgQGlmKGZhbHN5VGV4dCgpKXtcbiAgICA8YXgtYmFkZ2UgW3RleHRdPVwiZmFsc3lUZXh0KClcIiBbY29sb3JdPVwibmVnYXRpdmUoKSA/ICdzdWNjZXNzJyA6ICdkYW5nZXInXCIgW2xvb2tdPVwiJ3R3b3RvbmUnXCI+PC9heC1iYWRnZT5cbiAgICB9QGVsc2UgeyBAaWYobmVnYXRpdmUoKSl7XG4gICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS14bWFyayBheC10ZXh0LXN1Y2Nlc3NcIj4gPC9heC1pY29uPlxuICAgIH1AZWxzZSB7XG4gICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS14bWFyayBheC10ZXh0LWRhbmdlclwiPiA8L2F4LWljb24+XG4gICAgfSB9IH1gLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQVhEZWNvcmF0b3JNb2R1bGUsIEFYQmFkZ2VNb2R1bGVdLFxuICBpbnB1dHM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBUb2dnbGVXaWRnZXRWaWV3Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0Q29tcG9uZW50PGFueT4ge1xuICBwcm90ZWN0ZWQgbmVnYXRpdmUgPSBjb21wdXRlZDxib29sZWFuPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnbmVnYXRpdmUnXSk7XG4gIHByb3RlY3RlZCBmYWxzeVRleHQgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpWydmYWxzeVRleHQnXSk7XG4gIHByb3RlY3RlZCB0cnVseVRleHQgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpWyd0cnVseVRleHQnXSk7XG59XG4iXX0=
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_NAME_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, booleanDefaultProperty, } from '../../../properties';
|
|
2
|
+
export const AXPToggleWidget = {
|
|
3
|
+
name: 'toggle',
|
|
4
|
+
title: 'Toggle',
|
|
5
|
+
properties: [
|
|
6
|
+
AXP_NAME_PROPERTY,
|
|
7
|
+
AXP_DATA_PATH_PROPERTY,
|
|
8
|
+
AXP_DISABLED_PROPERTY,
|
|
9
|
+
AXP_STYLE_COLOR_PROPERTY,
|
|
10
|
+
AXP_VALIDATION_PROPERTY,
|
|
11
|
+
AXP_FALSY_TEXT_PROPERTY,
|
|
12
|
+
AXP_TRULY_TEXT_PROPERTY,
|
|
13
|
+
booleanDefaultProperty(),
|
|
14
|
+
],
|
|
15
|
+
components: {
|
|
16
|
+
view: {
|
|
17
|
+
component: () => import('./toggle-widget-view.component').then((c) => c.AXPToggleWidgetViewComponent),
|
|
18
|
+
},
|
|
19
|
+
edit: {
|
|
20
|
+
component: () => import('./toggle-widget-edit.component').then((c) => c.AXPToggleWidgetEditComponent),
|
|
21
|
+
},
|
|
22
|
+
filter: {
|
|
23
|
+
component: () => import('./toggle-widget-filter.component').then((c) => c.AXPToggleWidgetFilterComponent),
|
|
24
|
+
},
|
|
25
|
+
column: {
|
|
26
|
+
component: () => import('./toggle-widget-column.component').then((c) => c.AXPToggleWidgetColumnComponent),
|
|
27
|
+
},
|
|
28
|
+
print: {
|
|
29
|
+
component: () => import('./toggle-widget-print.component').then((c) => c.AXPToggleWidgetPrintComponent),
|
|
30
|
+
},
|
|
31
|
+
designer: {
|
|
32
|
+
component: () => import('./toggle-widget-edit.component').then((c) => c.AXPToggleWidgetEditComponent),
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXdpZGdldC5jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvdG9nZ2xlLXdpZGdldC90b2dnbGUtd2lkZ2V0LmNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQ0wsc0JBQXNCLEVBQ3RCLHFCQUFxQixFQUNyQix1QkFBdUIsRUFDdkIsaUJBQWlCLEVBQ2pCLHdCQUF3QixFQUN4Qix1QkFBdUIsRUFDdkIsdUJBQXVCLEVBQ3ZCLHNCQUFzQixHQUN2QixNQUFNLHFCQUFxQixDQUFDO0FBQzdCLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBb0I7SUFDOUMsSUFBSSxFQUFFLFFBQVE7SUFDZCxLQUFLLEVBQUUsUUFBUTtJQUNmLFVBQVUsRUFBRTtRQUNWLGlCQUFpQjtRQUNqQixzQkFBc0I7UUFDdEIscUJBQXFCO1FBQ3JCLHdCQUF3QjtRQUN4Qix1QkFBdUI7UUFDdkIsdUJBQXVCO1FBQ3ZCLHVCQUF1QjtRQUN2QixzQkFBc0IsRUFBRTtLQUN6QjtJQUNELFVBQVUsRUFBRTtRQUNWLElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsZ0NBQWdDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw0QkFBNEIsQ0FBQztTQUN0RztRQUNELElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsZ0NBQWdDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw0QkFBNEIsQ0FBQztTQUN0RztRQUNELE1BQU0sRUFBRTtZQUNOLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsa0NBQWtDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw4QkFBOEIsQ0FBQztTQUMxRztRQUNELE1BQU0sRUFBRTtZQUNOLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsa0NBQWtDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw4QkFBOEIsQ0FBQztTQUMxRztRQUNELEtBQUssRUFBRTtZQUNMLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsaUNBQWlDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw2QkFBNkIsQ0FBQztTQUN4RztRQUNELFFBQVEsRUFBRTtZQUNSLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsZ0NBQWdDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw0QkFBNEIsQ0FBQztTQUN0RztLQUNGO0NBQ0YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbmZpZyB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHtcbiAgQVhQX0RBVEFfUEFUSF9QUk9QRVJUWSxcbiAgQVhQX0RJU0FCTEVEX1BST1BFUlRZLFxuICBBWFBfRkFMU1lfVEVYVF9QUk9QRVJUWSxcbiAgQVhQX05BTUVfUFJPUEVSVFksXG4gIEFYUF9TVFlMRV9DT0xPUl9QUk9QRVJUWSxcbiAgQVhQX1RSVUxZX1RFWFRfUFJPUEVSVFksXG4gIEFYUF9WQUxJREFUSU9OX1BST1BFUlRZLFxuICBib29sZWFuRGVmYXVsdFByb3BlcnR5LFxufSBmcm9tICcuLi8uLi8uLi9wcm9wZXJ0aWVzJztcbmV4cG9ydCBjb25zdCBBWFBUb2dnbGVXaWRnZXQ6IEFYUFdpZGdldENvbmZpZyA9IHtcbiAgbmFtZTogJ3RvZ2dsZScsXG4gIHRpdGxlOiAnVG9nZ2xlJyxcbiAgcHJvcGVydGllczogW1xuICAgIEFYUF9OQU1FX1BST1BFUlRZLFxuICAgIEFYUF9EQVRBX1BBVEhfUFJPUEVSVFksXG4gICAgQVhQX0RJU0FCTEVEX1BST1BFUlRZLFxuICAgIEFYUF9TVFlMRV9DT0xPUl9QUk9QRVJUWSxcbiAgICBBWFBfVkFMSURBVElPTl9QUk9QRVJUWSxcbiAgICBBWFBfRkFMU1lfVEVYVF9QUk9QRVJUWSxcbiAgICBBWFBfVFJVTFlfVEVYVF9QUk9QRVJUWSxcbiAgICBib29sZWFuRGVmYXVsdFByb3BlcnR5KCksXG4gIF0sXG4gIGNvbXBvbmVudHM6IHtcbiAgICB2aWV3OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90b2dnbGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBUb2dnbGVXaWRnZXRWaWV3Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGVkaXQ6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3RvZ2dsZS13aWRnZXQtZWRpdC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRvZ2dsZVdpZGdldEVkaXRDb21wb25lbnQpLFxuICAgIH0sXG4gICAgZmlsdGVyOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90b2dnbGUtd2lkZ2V0LWZpbHRlci5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRvZ2dsZVdpZGdldEZpbHRlckNvbXBvbmVudCksXG4gICAgfSxcbiAgICBjb2x1bW46IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3RvZ2dsZS13aWRnZXQtY29sdW1uLmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQVG9nZ2xlV2lkZ2V0Q29sdW1uQ29tcG9uZW50KSxcbiAgICB9LFxuICAgIHByaW50OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90b2dnbGUtd2lkZ2V0LXByaW50LmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQVG9nZ2xlV2lkZ2V0UHJpbnRDb21wb25lbnQpLFxuICAgIH0sXG4gICAgZGVzaWduZXI6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3RvZ2dsZS13aWRnZXQtZWRpdC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRvZ2dsZVdpZGdldEVkaXRDb21wb25lbnQpLFxuICAgIH0sXG4gIH0sXG59O1xuIl19
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export * from './actions/button-widget';
|
|
2
|
+
//
|
|
3
|
+
export * from './editors/checkbox';
|
|
4
|
+
export * from './editors/contact-widget';
|
|
5
|
+
export * from './editors/date-time-box-widget';
|
|
6
|
+
export * from './editors/email-box-widget';
|
|
7
|
+
export * from './editors/file-box-widget';
|
|
8
|
+
export * from './editors/gallery-widget';
|
|
9
|
+
export * from './editors/large-text-widget';
|
|
10
|
+
export * from './editors/link-widget';
|
|
11
|
+
export * from './editors/map-box-widget';
|
|
12
|
+
export * from './editors/number-box-widget';
|
|
13
|
+
export * from './editors/password-box-widget';
|
|
14
|
+
export * from './editors/phone-box-widget';
|
|
15
|
+
export * from './editors/rich-text-widget';
|
|
16
|
+
export * from './editors/select-box-widget';
|
|
17
|
+
export * from './editors/selection-list-widget';
|
|
18
|
+
export * from './editors/signature-pad-widget';
|
|
19
|
+
export * from './editors/text-box-widget';
|
|
20
|
+
export * from './editors/toggle-widget';
|
|
21
|
+
//
|
|
22
|
+
export * from './layout/page-widget';
|
|
23
|
+
export * from './layout/block-widget';
|
|
24
|
+
export * from './layout/repeater-widget';
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsRUFBRTtBQUNGLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLEVBQUU7QUFDRixjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWN0aW9ucy9idXR0b24td2lkZ2V0Jztcbi8vXG5leHBvcnQgKiBmcm9tICcuL2VkaXRvcnMvY2hlY2tib3gnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL2NvbnRhY3Qtd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdG9ycy9kYXRlLXRpbWUtYm94LXdpZGdldCc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRvcnMvZW1haWwtYm94LXdpZGdldCc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRvcnMvZmlsZS1ib3gtd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdG9ycy9nYWxsZXJ5LXdpZGdldCc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRvcnMvbGFyZ2UtdGV4dC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL2xpbmstd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdG9ycy9tYXAtYm94LXdpZGdldCc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRvcnMvbnVtYmVyLWJveC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL3Bhc3N3b3JkLWJveC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL3Bob25lLWJveC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL3JpY2gtdGV4dC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL3NlbGVjdC1ib3gtd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdG9ycy9zZWxlY3Rpb24tbGlzdC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL3NpZ25hdHVyZS1wYWQtd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdG9ycy90ZXh0LWJveC13aWRnZXQnO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0b3JzL3RvZ2dsZS13aWRnZXQnO1xuLy9cbmV4cG9ydCAqIGZyb20gJy4vbGF5b3V0L3BhZ2Utd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vbGF5b3V0L2Jsb2NrLXdpZGdldCc7XG5leHBvcnQgKiBmcm9tICcuL2xheW91dC9yZXBlYXRlci13aWRnZXQnO1xuIl19
|