ax-common-ui-lib 1.0.0-qa.0
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/README.md +24 -0
- package/ax-common-ui-lib.d.ts +5 -0
- package/esm2020/ax-common-ui-lib.mjs +5 -0
- package/esm2020/lib/app-list/app-list-dto.mjs +29 -0
- package/esm2020/lib/app-list/app-list.component.mjs +421 -0
- package/esm2020/lib/app-list/my-app-list.service.mjs +142 -0
- package/esm2020/lib/app-list/organization-list-dto.mjs +29 -0
- package/esm2020/lib/ax-app-common-lib.component.mjs +26 -0
- package/esm2020/lib/ax-app-common-lib.module.mjs +147 -0
- package/esm2020/lib/ax-app-common-lib.service.mjs +14 -0
- package/esm2020/lib/axo-filters/axo-filters.component.mjs +422 -0
- package/esm2020/lib/axo-filters/axo-filters.module.mjs +59 -0
- package/esm2020/lib/axo-filters/axo-filters.service.mjs +85 -0
- package/esm2020/lib/axo-map/axo-map.component.mjs +40 -0
- package/esm2020/lib/axo-map/axo-map.mjs +37 -0
- package/esm2020/lib/axo-map/axo-map.module.mjs +41 -0
- package/esm2020/lib/axo-map/public-api.mjs +7 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.component.mjs +84 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.module.mjs +38 -0
- package/esm2020/lib/axo-search-bar/public.api.mjs +3 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.component.mjs +155 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.module.mjs +34 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.service.mjs +29 -0
- package/esm2020/lib/axo-snack-bar/public-api.mjs +3 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.module.mjs +27 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.service.mjs +37 -0
- package/esm2020/lib/axo-state-manager/public-api.mjs +3 -0
- package/esm2020/lib/axo-utils/axo-utils.mjs +149 -0
- package/esm2020/lib/axo-utils/axo-utils.module.mjs +25 -0
- package/esm2020/lib/axo-utils/constants.mjs +3 -0
- package/esm2020/lib/axo-utils/data-source-types.mjs +12 -0
- package/esm2020/lib/axo-utils/field-list-search-pipe.mjs +32 -0
- package/esm2020/lib/axo-utils/filter-search-pipe.mjs +16 -0
- package/esm2020/lib/axo-utils/public-api.mjs +2 -0
- package/esm2020/lib/axo-utils/search-pipe/choice-search.pipe.mjs +33 -0
- package/esm2020/lib/axo-utils/search-pipe.mjs +36 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.component.mjs +196 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.module.mjs +29 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.service.mjs +122 -0
- package/esm2020/lib/code-editor/code-editor-modes.mjs +11 -0
- package/esm2020/lib/code-editor/code-editor-themes.mjs +8 -0
- package/esm2020/lib/code-editor/code-editor.component.mjs +60 -0
- package/esm2020/lib/code-editor/code-editor.module.mjs +36 -0
- package/esm2020/lib/code-editor/icode-editor-options.mjs +2 -0
- package/esm2020/lib/code-editor/public-api.mjs +3 -0
- package/esm2020/lib/common-dto/attributes-dto.mjs +39 -0
- package/esm2020/lib/common-dto/dashboard-dto.mjs +12 -0
- package/esm2020/lib/common-dto/dataListFilter-dto.mjs +13 -0
- package/esm2020/lib/common-dto/elements-dto.mjs +61 -0
- package/esm2020/lib/common-dto/form-dto.mjs +48 -0
- package/esm2020/lib/common-lib-configuration.service.mjs +21 -0
- package/esm2020/lib/common-property-panel/properties/properties.service.mjs +30 -0
- package/esm2020/lib/common-utils/entity-base.mjs +12 -0
- package/esm2020/lib/common-utils/iFlatten.mjs +2 -0
- package/esm2020/lib/common-utils/report.mjs +45 -0
- package/esm2020/lib/common.service.mjs +78 -0
- package/esm2020/lib/converters/convert-to-new-service.mjs +11 -0
- package/esm2020/lib/converters/convert-to-old-service.mjs +168 -0
- package/esm2020/lib/core/auth/auth.service.mjs +146 -0
- package/esm2020/lib/core/core.module.mjs +37 -0
- package/esm2020/lib/core/icons/icons.module.mjs +255 -0
- package/esm2020/lib/core/transloco/transloco.http-loader.mjs +32 -0
- package/esm2020/lib/core/transloco/transloco.module.mjs +94 -0
- package/esm2020/lib/core/user/axo-user.mjs +46 -0
- package/esm2020/lib/core/user/user-data.service.mjs +46 -0
- package/esm2020/lib/core/user/user.service.mjs +87 -0
- package/esm2020/lib/core/user/user.types.mjs +2 -0
- package/esm2020/lib/dashboard-lib/dashboard-builder.service.mjs +56 -0
- package/esm2020/lib/dashboard-lib/dashboard-control.service.mjs +92 -0
- package/esm2020/lib/dashboard-lib/dashboard-element/dashboard-element.mjs +11 -0
- package/esm2020/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.mjs +9 -0
- package/esm2020/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.mjs +107 -0
- package/esm2020/lib/dashboard-lib/dashboard-lib.module.mjs +111 -0
- package/esm2020/lib/dashboard-lib/dashboard-list.service.mjs +73 -0
- package/esm2020/lib/dashboard-lib/dashboard.mjs +15 -0
- package/esm2020/lib/dashboard-lib/send-to-dashboard.service.mjs +96 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.component.mjs +241 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.service.mjs +32 -0
- package/esm2020/lib/data-view-lib/data-view/axo-card.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/axo-tag.mjs +48 -0
- package/esm2020/lib/data-view-lib/data-view/board-column.mjs +24 -0
- package/esm2020/lib/data-view-lib/data-view/board-view.mjs +45 -0
- package/esm2020/lib/data-view-lib/data-view/cardConfig.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/conditional-formatting.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view/coordinate.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-enums.mjs +68 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-filter.mjs +47 -0
- package/esm2020/lib/data-view-lib/data-view/data-view.mjs +66 -0
- package/esm2020/lib/data-view-lib/data-view/idata-view.mjs +2 -0
- package/esm2020/lib/data-view-lib/data-view/image-style.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/info-window.mjs +23 -0
- package/esm2020/lib/data-view-lib/data-view/location.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/map-view.mjs +41 -0
- package/esm2020/lib/data-view-lib/data-view/prefix-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tag-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tagConfig.mjs +63 -0
- package/esm2020/lib/data-view-lib/data-view/task-asset-form-object-dto.mjs +72 -0
- package/esm2020/lib/data-view-lib/data-view/task-column-value.mjs +43 -0
- package/esm2020/lib/data-view-lib/data-view/task-view.mjs +31 -0
- package/esm2020/lib/data-view-lib/data-view/task.mjs +199 -0
- package/esm2020/lib/data-view-lib/data-view/value-style.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.component.mjs +661 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.service.mjs +102 -0
- package/esm2020/lib/data-view-lib/data-view-header/data-view-header.component.mjs +536 -0
- package/esm2020/lib/data-view-lib/data-view-lib.module.mjs +88 -0
- package/esm2020/lib/data-view-lib/data-view.service.mjs +211 -0
- package/esm2020/lib/data-view-lib/public-api.mjs +28 -0
- package/esm2020/lib/directive/adjust-font-size.mjs +49 -0
- package/esm2020/lib/drill-through/drill-through.component.mjs +153 -0
- package/esm2020/lib/drill-through/drill-through.module.mjs +33 -0
- package/esm2020/lib/drill-through/drill-through.resolver.mjs +80 -0
- package/esm2020/lib/drill-through/drill-through.service.mjs +218 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-column.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-list.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range.mjs +38 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-toggle.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression-value.mjs +32 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression.mjs +415 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-number-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/exp-sub-type.mjs +29 -0
- package/esm2020/lib/enlighten-lib/ax-expression/public-api.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/attribute.mjs +247 -0
- package/esm2020/lib/enlighten-lib/data-model/data-model.mjs +52 -0
- package/esm2020/lib/enlighten-lib/data-model/dependee.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/dependent.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/entity.mjs +71 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs +113 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree-enums.mjs +6 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.component.mjs +301 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.module.mjs +67 -0
- package/esm2020/lib/enlighten-lib/elements/Property.mjs +3 -0
- package/esm2020/lib/enlighten-lib/elements/ax-element.mjs +55 -0
- package/esm2020/lib/enlighten-lib/elements/element-factory.mjs +38 -0
- package/esm2020/lib/enlighten-lib/enlighten-lib.module.mjs +308 -0
- package/esm2020/lib/enlighten-lib/enums/bread-crumbs-style.mjs +6 -0
- package/esm2020/lib/enlighten-lib/enums/operator-text-enum.mjs +11 -0
- package/esm2020/lib/enlighten-lib/fields/attribute-data.mjs +167 -0
- package/esm2020/lib/enlighten-lib/fields/entity.mjs +16 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-audio.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-barcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-childrecord.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-counter.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-date.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-decimal.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-document.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-file.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-image.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-location.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-number.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-qrcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-signature.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-staticmedia.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-text.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-time.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-uniqueid.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/axo-timestamp.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/choicelist.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/datetime.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/hyperlink.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ienlighten-type.mjs +2 -0
- package/esm2020/lib/enlighten-lib/fields/types/toggle.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/video.mjs +6 -0
- package/esm2020/lib/enlighten-lib/filters/ax-filter.mjs +74 -0
- package/esm2020/lib/enlighten-lib/filters/ax-operator.mjs +88 -0
- package/esm2020/lib/enlighten-lib/filters/chart-filter-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/filters/condition-type.mjs +49 -0
- package/esm2020/lib/enlighten-lib/filters/dataList-searchNode.mjs +48 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterExpression.mjs +32 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterOperator.mjs +43 -0
- package/esm2020/lib/enlighten-lib/filters/dataListSeachQueryTree.mjs +25 -0
- package/esm2020/lib/enlighten-lib/filters/filter-category.mjs +78 -0
- package/esm2020/lib/enlighten-lib/filters/general-filter-type.mjs +13 -0
- package/esm2020/lib/enlighten-lib/filters/gridster-properties.mjs +31 -0
- package/esm2020/lib/enlighten-lib/filters/iax-filter.mjs +2 -0
- package/esm2020/lib/enlighten-lib/filters/search-node.mjs +50 -0
- package/esm2020/lib/enlighten-lib/filters/static-widget.mjs +24 -0
- package/esm2020/lib/enlighten-lib/property/element-property.mjs +11 -0
- package/esm2020/lib/enlighten-lib/property/filter-category-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/property/filter-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report/chart-filter/chart-filter.component.mjs +393 -0
- package/esm2020/lib/enlighten-lib/report/element.service.mjs +115 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.mjs +1002 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.mjs +144 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.mjs +576 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.mjs +66 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/border.mjs +18 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-factory.mjs +80 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-property.mjs +4 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-type.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart.mjs +123 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/dimension.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/font.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/fontStyle.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/label.mjs +6 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/legend.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/matrix.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/shadow.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/style.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/text-style.mjs +34 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/title.mjs +12 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.component.mjs +357 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.directive.mjs +16 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/ichart-component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/igraphical-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.mjs +856 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.mjs +97 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/page/page.mjs +48 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.mjs +934 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.mjs +103 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text-chart.mjs +56 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.component.mjs +302 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/iproperty.component.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/ireport.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/report-builder-master.service.mjs +83 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.component.mjs +313 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.module.mjs +71 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.service.mjs +246 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/aggregate.mjs +10 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/column-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/itabular-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/orderby-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/row-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/table-style.mjs +47 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.mjs +4464 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.mjs +1583 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.mjs +70 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.mjs +1837 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.mjs +756 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.component.mjs +156 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.mjs +245 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.service.mjs +960 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular.mjs +196 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/value-formatting.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report-control.service.mjs +41 -0
- package/esm2020/lib/enlighten-lib/utils/utils.mjs +26 -0
- package/esm2020/lib/field-list-lib/fields-list.service.mjs +299 -0
- package/esm2020/lib/filters/calender-filter/calender-filter.component.mjs +351 -0
- package/esm2020/lib/filters/category-filter/category-filter.component.mjs +207 -0
- package/esm2020/lib/filters/category-filter/category-filter.service.mjs +31 -0
- package/esm2020/lib/filters/category-filter/category.service.mjs +45 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.component.mjs +178 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.service.mjs +53 -0
- package/esm2020/lib/filters/common-filter/common-filter.component.mjs +310 -0
- package/esm2020/lib/filters/common-filter/common-filter.service.mjs +106 -0
- package/esm2020/lib/filters/custom-scroll-directives.mjs +45 -0
- package/esm2020/lib/filters/date-time-filter/date-time-filter.component.mjs +345 -0
- package/esm2020/lib/filters/filter-footer/filter-footer.component.mjs +62 -0
- package/esm2020/lib/filters/filters.component.mjs +688 -0
- package/esm2020/lib/filters/filters.module.mjs +196 -0
- package/esm2020/lib/filters/filters.service.mjs +147 -0
- package/esm2020/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.mjs +202 -0
- package/esm2020/lib/filters/metaColumnTypes.mjs +36 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.component.mjs +211 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.service.mjs +214 -0
- package/esm2020/lib/filters/number-filter/number-filter.component.mjs +321 -0
- package/esm2020/lib/filters/public-api.mjs +15 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.component.mjs +180 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.service.mjs +151 -0
- package/esm2020/lib/filters/single-select-filter/single-select-filter.component.mjs +177 -0
- package/esm2020/lib/filters/time-filter/time-filter.component.mjs +301 -0
- package/esm2020/lib/filters/user-filter/user-filter.component.mjs +178 -0
- package/esm2020/lib/filters/user-filter/user-filter.service.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.mjs +346 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.mjs +105 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.mjs +41 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.mjs +10 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.component.mjs +823 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.mjs +211 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.module.mjs +224 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.service.mjs +171 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.mjs +94 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.mjs +40 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.mjs +31 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.mjs +86 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.mjs +180 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.mjs +54 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.mjs +163 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.mjs +61 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.mjs +64 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.mjs +119 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.mjs +37 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.mjs +24 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.mjs +19 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.mjs +49 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.mjs +50 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.mjs +25 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.mjs +65 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.mjs +28 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/data-detail-view-dto.mjs +55 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.mjs +85 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.component.mjs +209 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.module.mjs +273 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.service.mjs +268 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.mjs +68 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.mjs +155 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.mjs +158 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.mjs +248 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.mjs +179 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.mjs +210 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.mjs +58 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.mjs +76 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.mjs +263 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.mjs +17 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.mjs +335 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.mjs +270 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.mjs +498 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.mjs +203 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.mjs +70 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.mjs +146 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.mjs +84 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.mjs +144 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.mjs +95 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.mjs +79 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.mjs +113 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/meta-section/meta-section.component.mjs +157 -0
- package/esm2020/lib/form-object/form-object-view/section/section.component.mjs +75 -0
- package/esm2020/lib/form-object/form-object-view/section-field/section-field.component.mjs +30 -0
- package/esm2020/lib/form-object/form-object-view/section-view/section-view.component.mjs +110 -0
- package/esm2020/lib/form-object/public-api.mjs +3 -0
- package/esm2020/lib/form-permission.service.mjs +106 -0
- package/esm2020/lib/forms/ax-form.mjs +212 -0
- package/esm2020/lib/forms/iform.mjs +2 -0
- package/esm2020/lib/forms/page/common/axo-response-status.mjs +6 -0
- package/esm2020/lib/forms/page/common/constants.mjs +399 -0
- package/esm2020/lib/forms/page/common/detail-view-enums.mjs +8 -0
- package/esm2020/lib/forms/page/common/flatten-status-enum.mjs +10 -0
- package/esm2020/lib/forms/page/common/form.constant.mjs +87 -0
- package/esm2020/lib/forms/page/common/property-panel-field.mjs +5 -0
- package/esm2020/lib/forms/page/common/widget-enums.mjs +269 -0
- package/esm2020/lib/forms/page/common/widget-value-handler.mjs +321 -0
- package/esm2020/lib/forms/page/data-detail-view/ax-section.mjs +51 -0
- package/esm2020/lib/forms/page/data-detail-view/collection-view.mjs +30 -0
- package/esm2020/lib/forms/page/data-detail-view/data-details.mjs +60 -0
- package/esm2020/lib/forms/page/data-detail-view/section-field.mjs +32 -0
- package/esm2020/lib/forms/page/data-detail-view/section.mjs +33 -0
- package/esm2020/lib/forms/page/data-list/data-list-column.mjs +45 -0
- package/esm2020/lib/forms/page/data-list/data-list.mjs +64 -0
- package/esm2020/lib/forms/page/form-object.mjs +17 -0
- package/esm2020/lib/forms/page/form-page.mjs +28 -0
- package/esm2020/lib/forms/page/value-converters/displayMode-to-bool.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/form-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/geo-fence-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/image-annotation-value-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/language-source-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/list-view-title-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-float-converter.mjs +15 -0
- package/esm2020/lib/forms/page/value-converters/parse-int-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-string-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/publicUrls-string-to-array.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/record-limit-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/restriction-mode-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-value-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-date-time-converter.mjs +19 -0
- package/esm2020/lib/forms/page/value-converters/string-to-number -converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/textBox-mask-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/validate-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/value-without-mask-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/widget-concrete-class-converter.mjs +22 -0
- package/esm2020/lib/forms/page/value-converters/widget-deserializer.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/apply-geofences.mjs +65 -0
- package/esm2020/lib/forms/page/widgets/auto-number.mjs +87 -0
- package/esm2020/lib/forms/page/widgets/ax-audio.mjs +154 -0
- package/esm2020/lib/forms/page/widgets/ax-document.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/ax-image.mjs +183 -0
- package/esm2020/lib/forms/page/widgets/bar-code.mjs +212 -0
- package/esm2020/lib/forms/page/widgets/child-record.mjs +193 -0
- package/esm2020/lib/forms/page/widgets/choicelist.mjs +375 -0
- package/esm2020/lib/forms/page/widgets/counter.mjs +69 -0
- package/esm2020/lib/forms/page/widgets/datetime.mjs +247 -0
- package/esm2020/lib/forms/page/widgets/formula.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/geofence.mjs +127 -0
- package/esm2020/lib/forms/page/widgets/gps.mjs +192 -0
- package/esm2020/lib/forms/page/widgets/group-header.mjs +200 -0
- package/esm2020/lib/forms/page/widgets/languages.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/link.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/payment.mjs +104 -0
- package/esm2020/lib/forms/page/widgets/qr-code.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/script-condition.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/signature.mjs +81 -0
- package/esm2020/lib/forms/page/widgets/static-media.mjs +130 -0
- package/esm2020/lib/forms/page/widgets/stopwatch.mjs +117 -0
- package/esm2020/lib/forms/page/widgets/sub-form.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/textbox.mjs +338 -0
- package/esm2020/lib/forms/page/widgets/timestamp.mjs +155 -0
- package/esm2020/lib/forms/page/widgets/toggle.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/unique-id.mjs +75 -0
- package/esm2020/lib/forms/page/widgets/verification.mjs +207 -0
- package/esm2020/lib/forms/page/widgets/video.mjs +151 -0
- package/esm2020/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.mjs +74 -0
- package/esm2020/lib/forms/page/widgets/widget-value/audio-video-widget-value.mjs +36 -0
- package/esm2020/lib/forms/page/widgets/widget-value/child-record-value.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choice-list-options.mjs +84 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choices-ml.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/widget-value/dateRangeValue.mjs +38 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfileParams.mjs +9 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfilesTemp.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/document-widget-value.mjs +56 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-location-value.mjs +54 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-widget-value.mjs +50 -0
- package/esm2020/lib/forms/page/widgets/widget-value/gps-widget-value.mjs +58 -0
- package/esm2020/lib/forms/page/widgets/widget-value/image-widget-value.mjs +99 -0
- package/esm2020/lib/forms/page/widgets/widget-value/language-widget-value.mjs +43 -0
- package/esm2020/lib/forms/page/widgets/widget-value/location-object-value.mjs +44 -0
- package/esm2020/lib/forms/page/widgets/widget-value/multiple-languages.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/widget-value/reference-list-object-value.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/verification-widget-value.mjs +126 -0
- package/esm2020/lib/forms/page/widgets/widget.mjs +429 -0
- package/esm2020/lib/ghost-loader/ghost-loader.component.mjs +708 -0
- package/esm2020/lib/ghost-loader/ghost-loader.module.mjs +27 -0
- package/esm2020/lib/ghost-loader/public-api.mjs +3 -0
- package/esm2020/lib/map-dialog/map-dialog.component.mjs +46 -0
- package/esm2020/lib/map-dialog/map-dialog.module.mjs +39 -0
- package/esm2020/lib/map-dialog/public-api.mjs +6 -0
- package/esm2020/lib/reports-container/public-api.mjs +8 -0
- package/esm2020/lib/reports-container/report-group/report-group.component.mjs +77 -0
- package/esm2020/lib/reports-container/reports-container-models/report-group.mjs +42 -0
- package/esm2020/lib/reports-container/reports-container-models/report-property.mjs +30 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container-enums.mjs +16 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container.mjs +29 -0
- package/esm2020/lib/reports-container/reports-container.component.mjs +60 -0
- package/esm2020/lib/reports-container/reports-container.module.mjs +52 -0
- package/esm2020/lib/reports-container/reports-container.service.mjs +29 -0
- package/esm2020/lib/scrollbar/index.mjs +3 -0
- package/esm2020/lib/scrollbar/public-api.mjs +3 -0
- package/esm2020/lib/scrollbar/scrollbar.directive.mjs +351 -0
- package/esm2020/lib/scrollbar/scrollbar.module.mjs +21 -0
- package/esm2020/lib/scrollbar/scrollbar.types.mjs +15 -0
- package/esm2020/lib/sculptor-lib/widgets/audio/audio.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/barcode/barcode.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/child-record/child-record.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/choice-list/choice-list.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/date-time/date-time.component.mjs +136 -0
- package/esm2020/lib/sculptor-lib/widgets/document/document.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/geofence/geofence.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/gps/gps.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/group-header/group-header.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/image/image.component.mjs +131 -0
- package/esm2020/lib/sculptor-lib/widgets/language/language.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/link/link.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/qr-code/qr-code.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/subform/subform.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/textbox/textbox.component.mjs +177 -0
- package/esm2020/lib/sculptor-lib/widgets/timestamp/timestamp.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/toggle/toggle.component.mjs +112 -0
- package/esm2020/lib/sculptor-lib/widgets/video/video.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/widgets.service.mjs +58 -0
- package/esm2020/lib/shared/comfirmation-modal/confirmation-modal.component.mjs +63 -0
- package/esm2020/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.mjs +83 -0
- package/esm2020/lib/shared/shared.module.mjs +51 -0
- package/esm2020/public-api.mjs +138 -0
- package/fesm2015/ax-common-ui-lib.mjs +56598 -0
- package/fesm2015/ax-common-ui-lib.mjs.map +1 -0
- package/fesm2020/ax-common-ui-lib.mjs +52373 -0
- package/fesm2020/ax-common-ui-lib.mjs.map +1 -0
- package/lib/app-list/app-list-dto.d.ts +15 -0
- package/lib/app-list/app-list.component.d.ts +62 -0
- package/lib/app-list/my-app-list.service.d.ts +69 -0
- package/lib/app-list/organization-list-dto.d.ts +15 -0
- package/lib/ax-app-common-lib.component.d.ts +8 -0
- package/lib/ax-app-common-lib.module.d.ts +24 -0
- package/lib/ax-app-common-lib.service.d.ts +6 -0
- package/lib/axo-filters/axo-filters.component.d.ts +86 -0
- package/lib/axo-filters/axo-filters.module.d.ts +16 -0
- package/lib/axo-filters/axo-filters.service.d.ts +36 -0
- package/lib/axo-map/axo-map.component.d.ts +9 -0
- package/lib/axo-map/axo-map.d.ts +14 -0
- package/lib/axo-map/axo-map.module.d.ts +10 -0
- package/lib/axo-map/public-api.d.ts +6 -0
- package/lib/axo-search-bar/axo-search-bar.component.d.ts +21 -0
- package/lib/axo-search-bar/axo-search-bar.module.d.ts +10 -0
- package/lib/axo-search-bar/public.api.d.ts +2 -0
- package/lib/axo-snack-bar/axo-snack-bar.component.d.ts +20 -0
- package/lib/axo-snack-bar/axo-snack-bar.module.d.ts +9 -0
- package/lib/axo-snack-bar/axo-snack-bar.service.d.ts +16 -0
- package/lib/axo-snack-bar/public-api.d.ts +2 -0
- package/lib/axo-state-manager/axo-state-manager.module.d.ts +7 -0
- package/lib/axo-state-manager/axo-state-manager.service.d.ts +15 -0
- package/lib/axo-state-manager/public-api.d.ts +2 -0
- package/lib/axo-utils/axo-utils.d.ts +72 -0
- package/lib/axo-utils/axo-utils.module.d.ts +10 -0
- package/lib/axo-utils/constants.d.ts +2 -0
- package/lib/axo-utils/data-source-types.d.ts +10 -0
- package/lib/axo-utils/field-list-search-pipe.d.ts +7 -0
- package/lib/axo-utils/filter-search-pipe.d.ts +7 -0
- package/lib/axo-utils/public-api.d.ts +1 -0
- package/lib/axo-utils/search-pipe/choice-search.pipe.d.ts +7 -0
- package/lib/axo-utils/search-pipe.d.ts +7 -0
- package/lib/bread-crumbs/bread-crumbs.component.d.ts +48 -0
- package/lib/bread-crumbs/bread-crumbs.module.d.ts +9 -0
- package/lib/bread-crumbs/bread-crumbs.service.d.ts +76 -0
- package/lib/code-editor/code-editor-modes.d.ts +9 -0
- package/lib/code-editor/code-editor-themes.d.ts +6 -0
- package/lib/code-editor/code-editor.component.d.ts +20 -0
- package/lib/code-editor/code-editor.module.d.ts +10 -0
- package/lib/code-editor/icode-editor-options.d.ts +51 -0
- package/lib/code-editor/public-api.d.ts +2 -0
- package/lib/common-dto/attributes-dto.d.ts +24 -0
- package/lib/common-dto/dashboard-dto.d.ts +10 -0
- package/lib/common-dto/dataListFilter-dto.d.ts +10 -0
- package/lib/common-dto/elements-dto.d.ts +51 -0
- package/lib/common-dto/form-dto.d.ts +17 -0
- package/lib/common-lib-configuration.service.d.ts +13 -0
- package/lib/common-property-panel/properties/properties.service.d.ts +18 -0
- package/lib/common-utils/entity-base.d.ts +10 -0
- package/lib/common-utils/iFlatten.d.ts +13 -0
- package/lib/common-utils/report.d.ts +26 -0
- package/lib/common.service.d.ts +50 -0
- package/lib/converters/convert-to-new-service.d.ts +6 -0
- package/lib/converters/convert-to-old-service.d.ts +26 -0
- package/lib/core/auth/auth.service.d.ts +75 -0
- package/lib/core/core.module.d.ts +12 -0
- package/lib/core/icons/icons.module.d.ts +14 -0
- package/lib/core/transloco/transloco.http-loader.d.ts +19 -0
- package/lib/core/transloco/transloco.module.d.ts +7 -0
- package/lib/core/user/axo-user.d.ts +9 -0
- package/lib/core/user/user-data.service.d.ts +25 -0
- package/lib/core/user/user.service.d.ts +45 -0
- package/lib/core/user/user.types.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-builder.service.d.ts +27 -0
- package/lib/dashboard-lib/dashboard-control.service.d.ts +31 -0
- package/lib/dashboard-lib/dashboard-element/dashboard-element.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.d.ts +7 -0
- package/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.d.ts +37 -0
- package/lib/dashboard-lib/dashboard-lib.module.d.ts +26 -0
- package/lib/dashboard-lib/dashboard-list.service.d.ts +24 -0
- package/lib/dashboard-lib/dashboard.d.ts +14 -0
- package/lib/dashboard-lib/send-to-dashboard.service.d.ts +39 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.component.d.ts +53 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.service.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-card.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-tag.d.ts +26 -0
- package/lib/data-view-lib/data-view/board-column.d.ts +12 -0
- package/lib/data-view-lib/data-view/board-view.d.ts +23 -0
- package/lib/data-view-lib/data-view/cardConfig.d.ts +11 -0
- package/lib/data-view-lib/data-view/conditional-formatting.d.ts +11 -0
- package/lib/data-view-lib/data-view/coordinate.d.ts +8 -0
- package/lib/data-view-lib/data-view/data-view-enums.d.ts +58 -0
- package/lib/data-view-lib/data-view/data-view-filter.d.ts +25 -0
- package/lib/data-view-lib/data-view/data-view.d.ts +33 -0
- package/lib/data-view-lib/data-view/idata-view.d.ts +7 -0
- package/lib/data-view-lib/data-view/image-style.d.ts +8 -0
- package/lib/data-view-lib/data-view/info-window.d.ts +10 -0
- package/lib/data-view-lib/data-view/location.d.ts +8 -0
- package/lib/data-view-lib/data-view/map-view.d.ts +21 -0
- package/lib/data-view-lib/data-view/prefix-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tag-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tagConfig.d.ts +34 -0
- package/lib/data-view-lib/data-view/task-asset-form-object-dto.d.ts +19 -0
- package/lib/data-view-lib/data-view/task-column-value.d.ts +48 -0
- package/lib/data-view-lib/data-view/task-view.d.ts +15 -0
- package/lib/data-view-lib/data-view/task.d.ts +57 -0
- package/lib/data-view-lib/data-view/value-style.d.ts +10 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.component.d.ts +142 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.service.d.ts +28 -0
- package/lib/data-view-lib/data-view-header/data-view-header.component.d.ts +85 -0
- package/lib/data-view-lib/data-view-lib.module.d.ts +19 -0
- package/lib/data-view-lib/data-view.service.d.ts +94 -0
- package/lib/data-view-lib/public-api.d.ts +27 -0
- package/lib/directive/adjust-font-size.d.ts +13 -0
- package/lib/drill-through/drill-through.component.d.ts +53 -0
- package/lib/drill-through/drill-through.module.d.ts +10 -0
- package/lib/drill-through/drill-through.resolver.d.ts +30 -0
- package/lib/drill-through/drill-through.service.d.ts +100 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-column.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-toggle.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-expression-value.d.ts +19 -0
- package/lib/enlighten-lib/ax-expression/ax-expression.d.ts +66 -0
- package/lib/enlighten-lib/ax-expression/ax-number-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/exp-sub-type.d.ts +26 -0
- package/lib/enlighten-lib/ax-expression/public-api.d.ts +23 -0
- package/lib/enlighten-lib/data-model/attribute.d.ts +60 -0
- package/lib/enlighten-lib/data-model/data-model.d.ts +32 -0
- package/lib/enlighten-lib/data-model/dependee.d.ts +11 -0
- package/lib/enlighten-lib/data-model/dependent.d.ts +11 -0
- package/lib/enlighten-lib/data-model/entity.d.ts +31 -0
- package/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.d.ts +23 -0
- package/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.d.ts +24 -0
- package/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.d.ts +25 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree-enums.d.ts +4 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.component.d.ts +67 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.module.d.ts +18 -0
- package/lib/enlighten-lib/elements/Property.d.ts +3 -0
- package/lib/enlighten-lib/elements/ax-element.d.ts +31 -0
- package/lib/enlighten-lib/elements/element-factory.d.ts +13 -0
- package/lib/enlighten-lib/enlighten-lib.module.d.ts +53 -0
- package/lib/enlighten-lib/enums/bread-crumbs-style.d.ts +4 -0
- package/lib/enlighten-lib/enums/operator-text-enum.d.ts +9 -0
- package/lib/enlighten-lib/fields/attribute-data.d.ts +55 -0
- package/lib/enlighten-lib/fields/entity.d.ts +15 -0
- package/lib/enlighten-lib/fields/types/ax-audio.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-barcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-childrecord.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-counter.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-date.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-decimal.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-document.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-file.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-image.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-location.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-number.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-qrcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-signature.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-staticmedia.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-text.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-time.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-uniqueid.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/axo-timestamp.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/choicelist.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/datetime.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/hyperlink.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ienlighten-type.d.ts +3 -0
- package/lib/enlighten-lib/fields/types/toggle.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/video.d.ts +4 -0
- package/lib/enlighten-lib/filters/ax-filter.d.ts +38 -0
- package/lib/enlighten-lib/filters/ax-operator.d.ts +40 -0
- package/lib/enlighten-lib/filters/chart-filter-type.d.ts +5 -0
- package/lib/enlighten-lib/filters/condition-type.d.ts +43 -0
- package/lib/enlighten-lib/filters/dataList-searchNode.d.ts +27 -0
- package/lib/enlighten-lib/filters/dataListFilterExpression.d.ts +20 -0
- package/lib/enlighten-lib/filters/dataListFilterOperator.d.ts +29 -0
- package/lib/enlighten-lib/filters/dataListSeachQueryTree.d.ts +15 -0
- package/lib/enlighten-lib/filters/filter-category.d.ts +43 -0
- package/lib/enlighten-lib/filters/general-filter-type.d.ts +10 -0
- package/lib/enlighten-lib/filters/gridster-properties.d.ts +17 -0
- package/lib/enlighten-lib/filters/iax-filter.d.ts +7 -0
- package/lib/enlighten-lib/filters/search-node.d.ts +27 -0
- package/lib/enlighten-lib/filters/static-widget.d.ts +2 -0
- package/lib/enlighten-lib/property/element-property.d.ts +8 -0
- package/lib/enlighten-lib/property/filter-category-property.d.ts +6 -0
- package/lib/enlighten-lib/property/filter-property.d.ts +6 -0
- package/lib/enlighten-lib/report/chart-filter/chart-filter.component.d.ts +78 -0
- package/lib/enlighten-lib/report/element.service.d.ts +61 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.d.ts +259 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.d.ts +52 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.d.ts +177 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.d.ts +29 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/chart/border.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-factory.d.ts +7 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-property.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-type.d.ts +16 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart.d.ts +41 -0
- package/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/dimension.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/font.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/fontStyle.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/label.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/legend.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/matrix.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/chart/shadow.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/style.d.ts +12 -0
- package/lib/enlighten-lib/report/graphical-report/chart/text-style.d.ts +17 -0
- package/lib/enlighten-lib/report/graphical-report/chart/title.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.component.d.ts +130 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.directive.d.ts +8 -0
- package/lib/enlighten-lib/report/graphical-report/ichart-component.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/igraphical-report.component.d.ts +21 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.d.ts +215 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.d.ts +34 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/page/page.d.ts +25 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.d.ts +220 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.d.ts +38 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/text/text-chart.d.ts +19 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.component.d.ts +72 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.service.d.ts +9 -0
- package/lib/enlighten-lib/report/iproperty.component.d.ts +14 -0
- package/lib/enlighten-lib/report/ireport.d.ts +14 -0
- package/lib/enlighten-lib/report/report-builder-master.service.d.ts +42 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.component.d.ts +117 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.module.d.ts +19 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.service.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/aggregate.d.ts +8 -0
- package/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.d.ts +7 -0
- package/lib/enlighten-lib/report/tabular-report/column-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/itabular-report.component.d.ts +16 -0
- package/lib/enlighten-lib/report/tabular-report/orderby-type.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/row-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/table-style.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.d.ts +124 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.d.ts +242 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.d.ts +190 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.d.ts +177 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.component.d.ts +53 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.service.d.ts +173 -0
- package/lib/enlighten-lib/report/tabular-report/tabular.d.ts +92 -0
- package/lib/enlighten-lib/report/tabular-report/value-formatting.d.ts +7 -0
- package/lib/enlighten-lib/report-control.service.d.ts +15 -0
- package/lib/enlighten-lib/utils/utils.d.ts +16 -0
- package/lib/field-list-lib/fields-list.service.d.ts +71 -0
- package/lib/filters/calender-filter/calender-filter.component.d.ts +70 -0
- package/lib/filters/category-filter/category-filter.component.d.ts +65 -0
- package/lib/filters/category-filter/category-filter.service.d.ts +16 -0
- package/lib/filters/category-filter/category.service.d.ts +23 -0
- package/lib/filters/choice-list-filter/choice-list-filter.component.d.ts +64 -0
- package/lib/filters/choice-list-filter/choice-list-filter.service.d.ts +36 -0
- package/lib/filters/common-filter/common-filter.component.d.ts +135 -0
- package/lib/filters/common-filter/common-filter.service.d.ts +42 -0
- package/lib/filters/custom-scroll-directives.d.ts +14 -0
- package/lib/filters/date-time-filter/date-time-filter.component.d.ts +83 -0
- package/lib/filters/filter-footer/filter-footer.component.d.ts +12 -0
- package/lib/filters/filters.component.d.ts +139 -0
- package/lib/filters/filters.module.d.ts +43 -0
- package/lib/filters/filters.service.d.ts +83 -0
- package/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.d.ts +70 -0
- package/lib/filters/metaColumnTypes.d.ts +18 -0
- package/lib/filters/multi-select-filter/multi-select-filter.component.d.ts +68 -0
- package/lib/filters/multi-select-filter/multi-select-filter.service.d.ts +77 -0
- package/lib/filters/number-filter/number-filter.component.d.ts +70 -0
- package/lib/filters/public-api.d.ts +14 -0
- package/lib/filters/reference-list-filter/reference-list-filter.component.d.ts +59 -0
- package/lib/filters/reference-list-filter/reference-list-filter.service.d.ts +62 -0
- package/lib/filters/single-select-filter/single-select-filter.component.d.ts +59 -0
- package/lib/filters/time-filter/time-filter.component.d.ts +62 -0
- package/lib/filters/user-filter/user-filter.component.d.ts +61 -0
- package/lib/filters/user-filter/user-filter.service.d.ts +26 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.d.ts +87 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.d.ts +33 -0
- package/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.d.ts +13 -0
- package/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.d.ts +10 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/form-object-list.component.d.ts +200 -0
- package/lib/form-object/form-object-list/form-object-list.d.ts +42 -0
- package/lib/form-object/form-object-list/form-object-list.module.d.ts +59 -0
- package/lib/form-object/form-object-list/form-object-list.service.d.ts +69 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.d.ts +22 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.d.ts +20 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.d.ts +21 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.d.ts +23 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.d.ts +34 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.d.ts +17 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.d.ts +14 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.d.ts +13 -0
- package/lib/form-object/form-object-view/data-detail-view-dto.d.ts +16 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-view.component.d.ts +45 -0
- package/lib/form-object/form-object-view/form-object-view.module.d.ts +70 -0
- package/lib/form-object/form-object-view/form-object-view.service.d.ts +49 -0
- package/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.d.ts +31 -0
- package/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.d.ts +22 -0
- package/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.d.ts +37 -0
- package/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.d.ts +91 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.d.ts +71 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.d.ts +40 -0
- package/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.d.ts +26 -0
- package/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.d.ts +11 -0
- package/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/meta-section/meta-section.component.d.ts +31 -0
- package/lib/form-object/form-object-view/section/section.component.d.ts +16 -0
- package/lib/form-object/form-object-view/section-field/section-field.component.d.ts +13 -0
- package/lib/form-object/form-object-view/section-view/section-view.component.d.ts +16 -0
- package/lib/form-object/public-api.d.ts +2 -0
- package/lib/form-permission.service.d.ts +51 -0
- package/lib/forms/ax-form.d.ts +47 -0
- package/lib/forms/iform.d.ts +18 -0
- package/lib/forms/page/common/axo-response-status.d.ts +4 -0
- package/lib/forms/page/common/constants.d.ts +371 -0
- package/lib/forms/page/common/detail-view-enums.d.ts +5 -0
- package/lib/forms/page/common/flatten-status-enum.d.ts +7 -0
- package/lib/forms/page/common/form.constant.d.ts +85 -0
- package/lib/forms/page/common/property-panel-field.d.ts +21 -0
- package/lib/forms/page/common/widget-enums.d.ts +236 -0
- package/lib/forms/page/common/widget-value-handler.d.ts +4 -0
- package/lib/forms/page/data-detail-view/ax-section.d.ts +22 -0
- package/lib/forms/page/data-detail-view/collection-view.d.ts +11 -0
- package/lib/forms/page/data-detail-view/data-details.d.ts +17 -0
- package/lib/forms/page/data-detail-view/section-field.d.ts +13 -0
- package/lib/forms/page/data-detail-view/section.d.ts +13 -0
- package/lib/forms/page/data-list/data-list-column.d.ts +24 -0
- package/lib/forms/page/data-list/data-list.d.ts +24 -0
- package/lib/forms/page/form-object.d.ts +6 -0
- package/lib/forms/page/form-page.d.ts +19 -0
- package/lib/forms/page/value-converters/displayMode-to-bool.d.ts +5 -0
- package/lib/forms/page/value-converters/form-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/geo-fence-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/image-annotation-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/language-source-value-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/list-view-title-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-float-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-int-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-string-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/publicUrls-string-to-array.d.ts +5 -0
- package/lib/forms/page/value-converters/record-limit-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/restriction-mode-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-date-time-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-number -converter.d.ts +5 -0
- package/lib/forms/page/value-converters/textBox-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/validate-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/value-without-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/widget-concrete-class-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/widget-deserializer.d.ts +3 -0
- package/lib/forms/page/widgets/apply-geofences.d.ts +25 -0
- package/lib/forms/page/widgets/auto-number.d.ts +28 -0
- package/lib/forms/page/widgets/ax-audio.d.ts +43 -0
- package/lib/forms/page/widgets/ax-document.d.ts +44 -0
- package/lib/forms/page/widgets/ax-image.d.ts +46 -0
- package/lib/forms/page/widgets/bar-code.d.ts +52 -0
- package/lib/forms/page/widgets/child-record.d.ts +50 -0
- package/lib/forms/page/widgets/choicelist.d.ts +70 -0
- package/lib/forms/page/widgets/counter.d.ts +36 -0
- package/lib/forms/page/widgets/datetime.d.ts +53 -0
- package/lib/forms/page/widgets/formula.d.ts +38 -0
- package/lib/forms/page/widgets/geofence.d.ts +41 -0
- package/lib/forms/page/widgets/gps.d.ts +49 -0
- package/lib/forms/page/widgets/group-header.d.ts +51 -0
- package/lib/forms/page/widgets/languages.d.ts +41 -0
- package/lib/forms/page/widgets/link.d.ts +36 -0
- package/lib/forms/page/widgets/payment.d.ts +37 -0
- package/lib/forms/page/widgets/qr-code.d.ts +39 -0
- package/lib/forms/page/widgets/script-condition.d.ts +33 -0
- package/lib/forms/page/widgets/signature.d.ts +34 -0
- package/lib/forms/page/widgets/static-media.d.ts +40 -0
- package/lib/forms/page/widgets/stopwatch.d.ts +37 -0
- package/lib/forms/page/widgets/sub-form.d.ts +39 -0
- package/lib/forms/page/widgets/textbox.d.ts +63 -0
- package/lib/forms/page/widgets/timestamp.d.ts +42 -0
- package/lib/forms/page/widgets/toggle.d.ts +36 -0
- package/lib/forms/page/widgets/unique-id.d.ts +33 -0
- package/lib/forms/page/widgets/verification.d.ts +55 -0
- package/lib/forms/page/widgets/video.d.ts +44 -0
- package/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.d.ts +18 -0
- package/lib/forms/page/widgets/widget-value/audio-video-widget-value.d.ts +11 -0
- package/lib/forms/page/widgets/widget-value/child-record-value.d.ts +26 -0
- package/lib/forms/page/widgets/widget-value/choice-list-options.d.ts +27 -0
- package/lib/forms/page/widgets/widget-value/choices-ml.d.ts +22 -0
- package/lib/forms/page/widgets/widget-value/dateRangeValue.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/deviceProfileParams.d.ts +4 -0
- package/lib/forms/page/widgets/widget-value/deviceProfilesTemp.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/document-widget-value.d.ts +15 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-location-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-widget-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/gps-widget-value.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/image-widget-value.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/language-widget-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/location-object-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/multiple-languages.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/reference-list-object-value.d.ts +17 -0
- package/lib/forms/page/widgets/widget-value/verification-widget-value.d.ts +31 -0
- package/lib/forms/page/widgets/widget.d.ts +75 -0
- package/lib/ghost-loader/ghost-loader.component.d.ts +41 -0
- package/lib/ghost-loader/ghost-loader.module.d.ts +8 -0
- package/lib/ghost-loader/public-api.d.ts +2 -0
- package/lib/map-dialog/map-dialog.component.d.ts +16 -0
- package/lib/map-dialog/map-dialog.module.d.ts +11 -0
- package/lib/map-dialog/public-api.d.ts +5 -0
- package/lib/reports-container/public-api.d.ts +7 -0
- package/lib/reports-container/report-group/report-group.component.d.ts +17 -0
- package/lib/reports-container/reports-container-models/report-group.d.ts +20 -0
- package/lib/reports-container/reports-container-models/report-property.d.ts +19 -0
- package/lib/reports-container/reports-container-models/reports-container-enums.d.ts +13 -0
- package/lib/reports-container/reports-container-models/reports-container.d.ts +16 -0
- package/lib/reports-container/reports-container.component.d.ts +16 -0
- package/lib/reports-container/reports-container.module.d.ts +13 -0
- package/lib/reports-container/reports-container.service.d.ts +18 -0
- package/lib/scrollbar/index.d.ts +2 -0
- package/lib/scrollbar/public-api.d.ts +2 -0
- package/lib/scrollbar/scrollbar.directive.d.ts +153 -0
- package/lib/scrollbar/scrollbar.module.d.ts +7 -0
- package/lib/scrollbar/scrollbar.types.d.ts +12 -0
- package/lib/sculptor-lib/widgets/audio/audio.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/barcode/barcode.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/child-record/child-record.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/choice-list/choice-list.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/date-time/date-time.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/document/document.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/geofence/geofence.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/gps/gps.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/group-header/group-header.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/image/image.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/language/language.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/link/link.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/qr-code/qr-code.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/subform/subform.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/textbox/textbox.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/timestamp/timestamp.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/toggle/toggle.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/video/video.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/widgets.service.d.ts +30 -0
- package/lib/shared/comfirmation-modal/confirmation-modal.component.d.ts +18 -0
- package/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.d.ts +29 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/package.json +64 -0
- package/public-api.d.ts +130 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import { Component, Injector, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { AxImage } from '../../../../forms/page/widgets/ax-image';
|
|
3
|
+
import { AxoUtils } from '../../../../axo-utils/axo-utils';
|
|
4
|
+
import { FormObjectViewService } from '../../form-object-view.service';
|
|
5
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
6
|
+
import { ImageWidgetLightboxViewComponent } from './image-widget-lightbox-view/image-widget-lightbox-view.component';
|
|
7
|
+
import { ImageAnnotationDataDto } from './image-annotation-data-dto';
|
|
8
|
+
import { ImageMapViewComponent } from './image-map-view/image-map-view.component';
|
|
9
|
+
import { ActivatedRoute } from '@angular/router';
|
|
10
|
+
import { Subject } from 'rxjs';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
import * as i1 from "../../form-object-view.service";
|
|
13
|
+
import * as i2 from "@angular/router";
|
|
14
|
+
import * as i3 from "@angular/common";
|
|
15
|
+
import * as i4 from "@angular/material/icon";
|
|
16
|
+
function ImageWidgetViewComponent_ng_container_0_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
17
|
+
i0.ɵɵelementStart(0, "div", 4);
|
|
18
|
+
i0.ɵɵelement(1, "mat-icon", 5);
|
|
19
|
+
i0.ɵɵelementStart(2, "span");
|
|
20
|
+
i0.ɵɵtext(3);
|
|
21
|
+
i0.ɵɵelementStart(4, "span", 6);
|
|
22
|
+
i0.ɵɵtext(5, " :");
|
|
23
|
+
i0.ɵɵelementEnd();
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
} if (rf & 2) {
|
|
27
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
28
|
+
i0.ɵɵadvance(3);
|
|
29
|
+
i0.ɵɵtextInterpolate(ctx_r3.widget.prompt);
|
|
30
|
+
} }
|
|
31
|
+
function ImageWidgetViewComponent_ng_container_0_div_2_div_1_a_4_Template(rf, ctx) { if (rf & 1) {
|
|
32
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
|
33
|
+
i0.ɵɵelementStart(0, "a", 14);
|
|
34
|
+
i0.ɵɵelementStart(1, "mat-icon", 16);
|
|
35
|
+
i0.ɵɵlistener("click", function ImageWidgetViewComponent_ng_container_0_div_2_div_1_a_4_Template_mat_icon_click_1_listener() { i0.ɵɵrestoreView(_r11); const imageWidget_r6 = i0.ɵɵnextContext().$implicit; const ctx_r9 = i0.ɵɵnextContext(3); return ctx_r9.showImageMapView(imageWidget_r6); });
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
} }
|
|
39
|
+
function ImageWidgetViewComponent_ng_container_0_div_2_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
41
|
+
i0.ɵɵelementStart(0, "div", 9);
|
|
42
|
+
i0.ɵɵelementStart(1, "div", 10);
|
|
43
|
+
i0.ɵɵelement(2, "img", 11);
|
|
44
|
+
i0.ɵɵelementStart(3, "div", 12);
|
|
45
|
+
i0.ɵɵtemplate(4, ImageWidgetViewComponent_ng_container_0_div_2_div_1_a_4_Template, 2, 0, "a", 13);
|
|
46
|
+
i0.ɵɵelementStart(5, "a", 14);
|
|
47
|
+
i0.ɵɵelementStart(6, "mat-icon", 15);
|
|
48
|
+
i0.ɵɵlistener("click", function ImageWidgetViewComponent_ng_container_0_div_2_div_1_Template_mat_icon_click_6_listener() { const restoredCtx = i0.ɵɵrestoreView(_r13); const i_r7 = restoredCtx.index; const ctx_r12 = i0.ɵɵnextContext(3); return ctx_r12.showAnnotationImage(ctx_r12.widget.identifier, i_r7); });
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
i0.ɵɵelementEnd();
|
|
51
|
+
i0.ɵɵelementEnd();
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
const imageWidget_r6 = ctx.$implicit;
|
|
56
|
+
const ctx_r5 = i0.ɵɵnextContext(3);
|
|
57
|
+
i0.ɵɵadvance(2);
|
|
58
|
+
i0.ɵɵproperty("src", ctx_r5.baseUrl + imageWidget_r6.thumbnail, i0.ɵɵsanitizeUrl);
|
|
59
|
+
i0.ɵɵadvance(2);
|
|
60
|
+
i0.ɵɵproperty("ngIf", ctx_r5.widgetValue.longitude !== null && ctx_r5.widgetValue.latitude !== null);
|
|
61
|
+
} }
|
|
62
|
+
function ImageWidgetViewComponent_ng_container_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
63
|
+
i0.ɵɵelementStart(0, "div", 7);
|
|
64
|
+
i0.ɵɵtemplate(1, ImageWidgetViewComponent_ng_container_0_div_2_div_1_Template, 7, 2, "div", 8);
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
} if (rf & 2) {
|
|
67
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
68
|
+
i0.ɵɵadvance(1);
|
|
69
|
+
i0.ɵɵproperty("ngForOf", ctx_r4.widgetValue);
|
|
70
|
+
} }
|
|
71
|
+
function ImageWidgetViewComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
72
|
+
i0.ɵɵelementContainerStart(0);
|
|
73
|
+
i0.ɵɵtemplate(1, ImageWidgetViewComponent_ng_container_0_div_1_Template, 6, 1, "div", 2);
|
|
74
|
+
i0.ɵɵtemplate(2, ImageWidgetViewComponent_ng_container_0_div_2_Template, 2, 1, "div", 3);
|
|
75
|
+
i0.ɵɵelementContainerEnd();
|
|
76
|
+
} if (rf & 2) {
|
|
77
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
78
|
+
i0.ɵɵadvance(1);
|
|
79
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
80
|
+
i0.ɵɵadvance(1);
|
|
81
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widgetValue.length > 0);
|
|
82
|
+
} }
|
|
83
|
+
function ImageWidgetViewComponent_ng_template_1_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
84
|
+
i0.ɵɵelementStart(0, "span");
|
|
85
|
+
i0.ɵɵtext(1);
|
|
86
|
+
i0.ɵɵelementStart(2, "span", 6);
|
|
87
|
+
i0.ɵɵtext(3, ":");
|
|
88
|
+
i0.ɵɵelementEnd();
|
|
89
|
+
i0.ɵɵelementEnd();
|
|
90
|
+
} if (rf & 2) {
|
|
91
|
+
const ctx_r14 = i0.ɵɵnextContext(2);
|
|
92
|
+
i0.ɵɵadvance(1);
|
|
93
|
+
i0.ɵɵtextInterpolate(ctx_r14.widget.prompt);
|
|
94
|
+
} }
|
|
95
|
+
function ImageWidgetViewComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
96
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
97
|
+
i0.ɵɵelement(1, "mat-icon", 5);
|
|
98
|
+
i0.ɵɵtemplate(2, ImageWidgetViewComponent_ng_template_1_span_2_Template, 4, 1, "span", 18);
|
|
99
|
+
i0.ɵɵelementStart(3, "span", 19);
|
|
100
|
+
i0.ɵɵtext(4, "-");
|
|
101
|
+
i0.ɵɵelementEnd();
|
|
102
|
+
i0.ɵɵelementEnd();
|
|
103
|
+
} if (rf & 2) {
|
|
104
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
105
|
+
i0.ɵɵadvance(2);
|
|
106
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
107
|
+
} }
|
|
108
|
+
export class ImageWidgetViewComponent {
|
|
109
|
+
constructor(_formObjectViewService, _injector, _route) {
|
|
110
|
+
this._formObjectViewService = _formObjectViewService;
|
|
111
|
+
this._injector = _injector;
|
|
112
|
+
this._route = _route;
|
|
113
|
+
this._unsubscribeAll = new Subject();
|
|
114
|
+
}
|
|
115
|
+
ngOnInit() {
|
|
116
|
+
this.widgetValue = this.widget.getWidgetValue();
|
|
117
|
+
if (this.widgetValue && this.widgetValue.length > 0) {
|
|
118
|
+
this.widgetValue = this.widgetValue.map((imageValue) => {
|
|
119
|
+
imageValue.thumbnail = AxoUtils.removeSlashFromImageUrl(imageValue.thumbnail);
|
|
120
|
+
return imageValue;
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Get Image Annotation Data using widget identifier
|
|
126
|
+
*/
|
|
127
|
+
showAnnotationImage(imgIdentifier, index) {
|
|
128
|
+
const formData = new FormData();
|
|
129
|
+
this.annotationData = new ImageAnnotationDataDto();
|
|
130
|
+
this.annotationData.baseUrl = this.baseUrl;
|
|
131
|
+
this.annotationData.widget = this.widget;
|
|
132
|
+
this.annotationData.widgetProperties = this.widgetProperties;
|
|
133
|
+
this.annotationData.selectedImageId = index;
|
|
134
|
+
formData.append('foid', this.formObjectId);
|
|
135
|
+
formData.append('img_identifier', imgIdentifier);
|
|
136
|
+
this._formObjectViewService.getImageFieldWithAnnotations(formData, this.axonatorX1Url).then((data) => {
|
|
137
|
+
data.baseUrl = this.annotationData.baseUrl;
|
|
138
|
+
data.selectedImageId = this.annotationData.selectedImageId;
|
|
139
|
+
this.annotationData = data;
|
|
140
|
+
this.showAnnotationView = true;
|
|
141
|
+
this.showImageViewWithAnnotation();
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Open Image view dialog
|
|
146
|
+
*/
|
|
147
|
+
showImageViewWithAnnotation() {
|
|
148
|
+
this.dialog = this._injector.get(MatDialog);
|
|
149
|
+
this.dialog.open(ImageWidgetLightboxViewComponent, {
|
|
150
|
+
height: '80vh',
|
|
151
|
+
width: '80vw',
|
|
152
|
+
maxWidth: '100vw',
|
|
153
|
+
panelClass: 'imagelightbox-container',
|
|
154
|
+
data: this.annotationData
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* Open Image map location dialog
|
|
159
|
+
*/
|
|
160
|
+
showImageMapView(imageWidget) {
|
|
161
|
+
this.dialog = this._injector.get(MatDialog);
|
|
162
|
+
this.dialog.open(ImageMapViewComponent, {
|
|
163
|
+
maxWidth: '100vw',
|
|
164
|
+
maxHeight: '100vh',
|
|
165
|
+
height: '100%',
|
|
166
|
+
width: '100%',
|
|
167
|
+
panelClass: 'image-map-box-container',
|
|
168
|
+
data: {
|
|
169
|
+
latitude: imageWidget.latitude,
|
|
170
|
+
longitude: imageWidget.longitude,
|
|
171
|
+
zoom: 12
|
|
172
|
+
},
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
ngOnDestroy() {
|
|
176
|
+
// Unsubscribe from all subscriptions
|
|
177
|
+
this._unsubscribeAll.next();
|
|
178
|
+
this._unsubscribeAll.complete();
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
ImageWidgetViewComponent.ɵfac = function ImageWidgetViewComponent_Factory(t) { return new (t || ImageWidgetViewComponent)(i0.ɵɵdirectiveInject(i1.FormObjectViewService), i0.ɵɵdirectiveInject(i0.Injector), i0.ɵɵdirectiveInject(i2.ActivatedRoute)); };
|
|
182
|
+
ImageWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ImageWidgetViewComponent, selectors: [["lib-image-widget-view"]], inputs: { widget: "widget", widgetProperties: "widgetProperties", baseUrl: "baseUrl", axonatorX1Url: "axonatorX1Url", formObjectId: "formObjectId" }, decls: 3, vars: 2, consts: [[4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], ["class", "data-detail-title flex text-sm m-0", 4, "ngIf"], ["class", "w-full customscroll capture-container py-2 pr-2", 4, "ngIf"], [1, "data-detail-title", "flex", "text-sm", "m-0"], ["svgIcon", "axo_image", 1, "add-text"], [1, "colon"], [1, "w-full", "customscroll", "capture-container", "py-2", "pr-2"], ["class", "data-detail", 4, "ngFor", "ngForOf"], [1, "data-detail"], [1, "capture-data-container", "relative", "text-center", "rounded"], ["alt", "...", 1, "capture-image", 3, "src"], [1, "image-overlay"], ["target", "_blank", 4, "ngIf"], ["target", "_blank"], ["svgIcon", "axo_eye_outline", 3, "click"], ["svgIcon", "axo_location_outline", 3, "click"], [1, "data-detail-info", "capture-container"], [4, "ngIf"], [1, "flex", "justify-start"]], template: function ImageWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
183
|
+
i0.ɵɵtemplate(0, ImageWidgetViewComponent_ng_container_0_Template, 3, 2, "ng-container", 0);
|
|
184
|
+
i0.ɵɵtemplate(1, ImageWidgetViewComponent_ng_template_1_Template, 5, 1, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
|
185
|
+
} if (rf & 2) {
|
|
186
|
+
const _r1 = i0.ɵɵreference(2);
|
|
187
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
188
|
+
} }, directives: [i3.NgIf, i4.MatIcon, i3.NgForOf], styles: ["lib-image-widget-view .capture-data-container{height:5rem;width:5rem;display:flex;justify-content:center;align-items:center;background-color:#ececec}lib-image-widget-view .capture-data-container .capture-image{width:auto!important;max-width:100%;max-height:100%}lib-image-widget-view .image-overlay{display:flex;justify-content:center;align-items:center;position:absolute;column-gap:.8rem;top:0;background:rgba(0,0,0,.5);transition:.5s ease;opacity:0;color:#fff;font-size:20px;width:100%;height:100%;border-radius:.25rem}lib-image-widget-view .image-overlay a{cursor:pointer}lib-image-widget-view .image-overlay a mat-icon{height:1.6rem;width:1.6rem;min-width:1.6rem;min-height:1.6rem}lib-image-widget-view .image-overlay:hover{opacity:1}lib-image-widget-view .mat-icon{height:18px;width:18px;min-width:18px;min-height:18px}\n"], encapsulation: 2 });
|
|
189
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ImageWidgetViewComponent, [{
|
|
190
|
+
type: Component,
|
|
191
|
+
args: [{ selector: 'lib-image-widget-view', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm m-0\" *ngIf=\"section.showPrompt\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_image\"></mat-icon> \n <span>{{widget.prompt}}<span class=\"colon\"> :</span></span>\n</div>\n<div class=\"w-full customscroll capture-container py-2 pr-2\" *ngIf=\"widgetValue.length>0\">\n <div class=\"data-detail\" *ngFor=\"let imageWidget of widgetValue; let i=index\">\n <div class=\"capture-data-container relative text-center rounded\">\n <img [src]=\"baseUrl + imageWidget.thumbnail\" class=\"capture-image\" alt=\"...\" />\n <div class=\"image-overlay\">\n <a *ngIf=\"widgetValue.longitude !== null && widgetValue.latitude !==null\" target=\"_blank\"> \n <mat-icon svgIcon=\"axo_location_outline\" (click)=\"showImageMapView(imageWidget)\" ></mat-icon>\n </a>\n <a target=\"_blank\"> \n <mat-icon svgIcon=\"axo_eye_outline\" (click)=\"showAnnotationImage(widget.identifier,i)\"></mat-icon>\n </a>\n </div>\n </div>\n </div></div>\n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-info capture-container\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_image\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n <span class=\"flex justify-start\">-</span>\n </div>\n </ng-template>\n \n \n \n\n\n \n", styles: ["lib-image-widget-view .capture-data-container{height:5rem;width:5rem;display:flex;justify-content:center;align-items:center;background-color:#ececec}lib-image-widget-view .capture-data-container .capture-image{width:auto!important;max-width:100%;max-height:100%}lib-image-widget-view .image-overlay{display:flex;justify-content:center;align-items:center;position:absolute;column-gap:.8rem;top:0;background:rgba(0,0,0,.5);transition:.5s ease;opacity:0;color:#fff;font-size:20px;width:100%;height:100%;border-radius:.25rem}lib-image-widget-view .image-overlay a{cursor:pointer}lib-image-widget-view .image-overlay a mat-icon{height:1.6rem;width:1.6rem;min-width:1.6rem;min-height:1.6rem}lib-image-widget-view .image-overlay:hover{opacity:1}lib-image-widget-view .mat-icon{height:18px;width:18px;min-width:18px;min-height:18px}\n"] }]
|
|
192
|
+
}], function () { return [{ type: i1.FormObjectViewService }, { type: i0.Injector }, { type: i2.ActivatedRoute }]; }, { widget: [{
|
|
193
|
+
type: Input
|
|
194
|
+
}], widgetProperties: [{
|
|
195
|
+
type: Input
|
|
196
|
+
}], baseUrl: [{
|
|
197
|
+
type: Input
|
|
198
|
+
}], axonatorX1Url: [{
|
|
199
|
+
type: Input
|
|
200
|
+
}], formObjectId: [{
|
|
201
|
+
type: Input
|
|
202
|
+
}] }); })();
|
|
203
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1hZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2ltYWdlLXdpZGdldC12aWV3L2ltYWdlLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9pbWFnZS13aWRnZXQtdmlldy9pbWFnZS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxLQUFLLEVBQVUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdEYsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHlDQUF5QyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUUzRCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDckQsT0FBTyxFQUFFLGdDQUFnQyxFQUFFLE1BQU0sbUVBQW1FLENBQUM7QUFDckgsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDckUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMkNBQTJDLENBQUM7QUFFbEYsT0FBTyxFQUFFLGNBQWMsRUFBWSxNQUFNLGlCQUFpQixDQUFDO0FBRTNELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7Ozs7SUNYN0IsOEJBQTJFO0lBQ3pFLDhCQUEwRDtJQUMxRCw0QkFBTTtJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUMsa0JBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPO0lBQy9ELGlCQUFNOzs7SUFESSxlQUFpQjtJQUFqQiwwQ0FBaUI7Ozs7SUFPbkIsNkJBQTJGO0lBQzNGLG9DQUFrRjtJQUF6Qyx1UEFBUyx1Q0FBNkIsSUFBQztJQUFFLGlCQUFXO0lBQzdGLGlCQUFJOzs7O0lBTlYsOEJBQThFO0lBQzVFLCtCQUFpRTtJQUMvRCwwQkFBK0U7SUFDL0UsK0JBQTJCO0lBQ3pCLGlHQUVJO0lBQ0osNkJBQW1CO0lBQ2xCLG9DQUF1RjtJQUFuRCxtUEFBUyw0REFBd0MsSUFBQztJQUFDLGlCQUFXO0lBQ25HLGlCQUFJO0lBQ04saUJBQU07SUFDUixpQkFBTTtJQUNOLGlCQUFNOzs7O0lBVkMsZUFBdUM7SUFBdkMsaUZBQXVDO0lBRXRDLGVBQW9FO0lBQXBFLG9HQUFvRTs7O0lBTGhGLDhCQUEwRjtJQUN4Riw4RkFZUTtJQUFBLGlCQUFNOzs7SUFabUMsZUFBZ0I7SUFBaEIsNENBQWdCOzs7SUFObkUsNkJBQTZEO0lBQzNELHdGQUdJO0lBQ04sd0ZBYWdCO0lBQ2QsMEJBQWU7OztJQWxCa0MsZUFBd0I7SUFBeEIsZ0RBQXdCO0lBSWIsZUFBMEI7SUFBMUIsb0RBQTBCOzs7SUFrQmxGLDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMkNBQWlCOzs7SUFGcEQsK0JBQWdEO0lBQzlDLDhCQUEwRDtJQUMxRCwwRkFBcUY7SUFDckYsZ0NBQWlDO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUMzQyxpQkFBTTs7O0lBRkcsZUFBd0I7SUFBeEIsZ0RBQXdCOztBREZyQyxNQUFNLE9BQU8sd0JBQXdCO0lBWW5DLFlBQW9CLHNCQUE2QyxFQUN2RCxTQUFtQixFQUFVLE1BQXNCO1FBRHpDLDJCQUFzQixHQUF0QixzQkFBc0IsQ0FBdUI7UUFDdkQsY0FBUyxHQUFULFNBQVMsQ0FBVTtRQUFVLFdBQU0sR0FBTixNQUFNLENBQWdCO1FBRnJELG9CQUFlLEdBQWlCLElBQUksT0FBTyxFQUFPLENBQUM7SUFFTSxDQUFDO0lBRWxFLFFBQVE7UUFDTixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDaEQsSUFBSSxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBRTtZQUNuRCxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsR0FBRyxDQUFDLENBQUMsVUFBVSxFQUFFLEVBQUU7Z0JBQ3JELFVBQVUsQ0FBQyxTQUFTLEdBQUcsUUFBUSxDQUFDLHVCQUF1QixDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUMsQ0FBQztnQkFDOUUsT0FBTyxVQUFVLENBQUM7WUFDcEIsQ0FBQyxDQUFDLENBQUM7U0FDSjtJQUNILENBQUM7SUFFRjs7UUFFSTtJQUNILG1CQUFtQixDQUFDLGFBQWEsRUFBRSxLQUFLO1FBQ3RDLE1BQU0sUUFBUSxHQUFHLElBQUksUUFBUSxFQUFFLENBQUM7UUFDaEMsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLHNCQUFzQixFQUFFLENBQUM7UUFDbkQsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztRQUMzQyxJQUFJLENBQUMsY0FBYyxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDO1FBQ3pDLElBQUksQ0FBQyxjQUFjLENBQUMsZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDO1FBQzdELElBQUksQ0FBQyxjQUFjLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQztRQUM1QyxRQUFRLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDM0MsUUFBUSxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsRUFBRSxhQUFhLENBQUMsQ0FBQztRQUNqRCxJQUFJLENBQUMsc0JBQXNCLENBQUMsNEJBQTRCLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUNuRyxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDO1lBQzNDLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLGNBQWMsQ0FBQyxlQUFlLENBQUM7WUFDM0QsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUM7WUFDM0IsSUFBSSxDQUFDLGtCQUFrQixHQUFHLElBQUksQ0FBQztZQUMvQixJQUFJLENBQUMsMkJBQTJCLEVBQUUsQ0FBQztRQUNyQyxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFHRDs7T0FFRztJQUNILDJCQUEyQjtRQUN6QixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBQzVDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLGdDQUFnQyxFQUFFO1lBQ2pELE1BQU0sRUFBRSxNQUFNO1lBQ2QsS0FBSyxFQUFFLE1BQU07WUFDYixRQUFRLEVBQUMsT0FBTztZQUNoQixVQUFVLEVBQUUseUJBQXlCO1lBQ3JDLElBQUksRUFBRSxJQUFJLENBQUMsY0FBYztTQUMxQixDQUFDLENBQUE7SUFDSixDQUFDO0lBRUQ7O09BRUc7SUFDSCxnQkFBZ0IsQ0FBQyxXQUE2QjtRQUM1QyxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBQzVDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHFCQUFxQixFQUFFO1lBQ3RDLFFBQVEsRUFBRSxPQUFPO1lBQ2pCLFNBQVMsRUFBRSxPQUFPO1lBQ2xCLE1BQU0sRUFBRSxNQUFNO1lBQ2QsS0FBSyxFQUFFLE1BQU07WUFDYixVQUFVLEVBQUUseUJBQXlCO1lBQ3JDLElBQUksRUFBRTtnQkFDSixRQUFRLEVBQUUsV0FBVyxDQUFDLFFBQVE7Z0JBQzlCLFNBQVMsRUFBRSxXQUFXLENBQUMsU0FBUztnQkFDaEMsSUFBSSxFQUFFLEVBQUU7YUFDVDtTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxXQUFXO1FBRVAscUNBQXFDO1FBQ3JDLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDNUIsSUFBSSxDQUFDLGVBQWUsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUNwQyxDQUFDOztnR0FyRlUsd0JBQXdCOzJFQUF4Qix3QkFBd0I7UUNyQnJDLDJGQW1CaUI7UUFDZiwwSEFNYzs7O1FBMUJELHVDQUFvQixpQkFBQTs7dUZEcUJ0Qix3QkFBd0I7Y0FOcEMsU0FBUzsyQkFDRSx1QkFBdUIsaUJBR2xCLGlCQUFpQixDQUFDLElBQUk7NEhBRzVCLE1BQU07a0JBQWQsS0FBSztZQUNHLGdCQUFnQjtrQkFBeEIsS0FBSztZQUNHLE9BQU87a0JBQWYsS0FBSztZQUNHLGFBQWE7a0JBQXJCLEtBQUs7WUFDRyxZQUFZO2tCQUFwQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbmplY3RvciwgSW5wdXQsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEF4SW1hZ2UgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvYXgtaW1hZ2UnO1xuaW1wb3J0IHsgQXhvVXRpbHMgfSBmcm9tICcuLi8uLi8uLi8uLi9heG8tdXRpbHMvYXhvLXV0aWxzJztcbmltcG9ydCBfIGZyb20gJ2xvZGFzaCc7XG5pbXBvcnQgeyBGb3JtT2JqZWN0Vmlld1NlcnZpY2UgfSBmcm9tICcuLi8uLi9mb3JtLW9iamVjdC12aWV3LnNlcnZpY2UnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IEltYWdlV2lkZ2V0TGlnaHRib3hWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9pbWFnZS13aWRnZXQtbGlnaHRib3gtdmlldy9pbWFnZS13aWRnZXQtbGlnaHRib3gtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgSW1hZ2VBbm5vdGF0aW9uRGF0YUR0byB9IGZyb20gJy4vaW1hZ2UtYW5ub3RhdGlvbi1kYXRhLWR0byc7XG5pbXBvcnQgeyBJbWFnZU1hcFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2ltYWdlLW1hcC12aWV3L2ltYWdlLW1hcC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBJbWFnZVdpZGdldFZhbHVlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL3dpZGdldC12YWx1ZS9pbWFnZS13aWRnZXQtdmFsdWUnO1xuaW1wb3J0IHsgQWN0aXZhdGVkUm91dGUsIFBhcmFtTWFwIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IHRha2VVbnRpbCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItaW1hZ2Utd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vaW1hZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9pbWFnZS13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXG59KVxuZXhwb3J0IGNsYXNzIEltYWdlV2lkZ2V0Vmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIEBJbnB1dCgpIHdpZGdldDogQXhJbWFnZTtcbiAgQElucHV0KCkgd2lkZ2V0UHJvcGVydGllczogQXhJbWFnZTtcbiAgQElucHV0KCkgYmFzZVVybDogc3RyaW5nO1xuICBASW5wdXQoKSBheG9uYXRvclgxVXJsOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGZvcm1PYmplY3RJZDogc3RyaW5nO1xuICBkaWFsb2c6IE1hdERpYWxvZztcblxuICB3aWRnZXRWYWx1ZTogQXJyYXk8SW1hZ2VXaWRnZXRWYWx1ZT47XG4gIGFubm90YXRpb25EYXRhOiBJbWFnZUFubm90YXRpb25EYXRhRHRvO1xuICBzaG93QW5ub3RhdGlvblZpZXc6IGJvb2xlYW47XG4gIHByaXZhdGUgX3Vuc3Vic2NyaWJlQWxsOiBTdWJqZWN0PGFueT4gPSBuZXcgU3ViamVjdDxhbnk+KCk7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2Zvcm1PYmplY3RWaWV3U2VydmljZTogRm9ybU9iamVjdFZpZXdTZXJ2aWNlLFxuICAgIHByaXZhdGUgX2luamVjdG9yOiBJbmplY3RvciwgcHJpdmF0ZSBfcm91dGU6IEFjdGl2YXRlZFJvdXRlKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLndpZGdldFZhbHVlID0gdGhpcy53aWRnZXQuZ2V0V2lkZ2V0VmFsdWUoKTtcbiAgICBpZiAodGhpcy53aWRnZXRWYWx1ZSAmJiB0aGlzLndpZGdldFZhbHVlLmxlbmd0aCA+IDApIHtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUgPSB0aGlzLndpZGdldFZhbHVlLm1hcCgoaW1hZ2VWYWx1ZSkgPT4ge1xuICAgICAgICBpbWFnZVZhbHVlLnRodW1ibmFpbCA9IEF4b1V0aWxzLnJlbW92ZVNsYXNoRnJvbUltYWdlVXJsKGltYWdlVmFsdWUudGh1bWJuYWlsKTtcbiAgICAgICAgcmV0dXJuIGltYWdlVmFsdWU7XG4gICAgICB9KTtcbiAgICB9XG4gIH1cblxuIC8qKlxuICAgKiBHZXQgSW1hZ2UgQW5ub3RhdGlvbiBEYXRhIHVzaW5nIHdpZGdldCBpZGVudGlmaWVyXG4gICAqL1xuICBzaG93QW5ub3RhdGlvbkltYWdlKGltZ0lkZW50aWZpZXIsIGluZGV4KTogdm9pZCB7XG4gICAgY29uc3QgZm9ybURhdGEgPSBuZXcgRm9ybURhdGEoKTtcbiAgICB0aGlzLmFubm90YXRpb25EYXRhID0gbmV3IEltYWdlQW5ub3RhdGlvbkRhdGFEdG8oKTtcbiAgICB0aGlzLmFubm90YXRpb25EYXRhLmJhc2VVcmwgPSB0aGlzLmJhc2VVcmw7XG4gICAgdGhpcy5hbm5vdGF0aW9uRGF0YS53aWRnZXQgPSB0aGlzLndpZGdldDtcbiAgICB0aGlzLmFubm90YXRpb25EYXRhLndpZGdldFByb3BlcnRpZXMgPSB0aGlzLndpZGdldFByb3BlcnRpZXM7XG4gICAgdGhpcy5hbm5vdGF0aW9uRGF0YS5zZWxlY3RlZEltYWdlSWQgPSBpbmRleDtcbiAgICBmb3JtRGF0YS5hcHBlbmQoJ2ZvaWQnLCB0aGlzLmZvcm1PYmplY3RJZCk7XG4gICAgZm9ybURhdGEuYXBwZW5kKCdpbWdfaWRlbnRpZmllcicsIGltZ0lkZW50aWZpZXIpO1xuICAgIHRoaXMuX2Zvcm1PYmplY3RWaWV3U2VydmljZS5nZXRJbWFnZUZpZWxkV2l0aEFubm90YXRpb25zKGZvcm1EYXRhLCB0aGlzLmF4b25hdG9yWDFVcmwpLnRoZW4oKGRhdGEpID0+IHtcbiAgICAgIGRhdGEuYmFzZVVybCA9IHRoaXMuYW5ub3RhdGlvbkRhdGEuYmFzZVVybDtcbiAgICAgIGRhdGEuc2VsZWN0ZWRJbWFnZUlkID0gdGhpcy5hbm5vdGF0aW9uRGF0YS5zZWxlY3RlZEltYWdlSWQ7XG4gICAgICB0aGlzLmFubm90YXRpb25EYXRhID0gZGF0YTtcbiAgICAgIHRoaXMuc2hvd0Fubm90YXRpb25WaWV3ID0gdHJ1ZTtcbiAgICAgIHRoaXMuc2hvd0ltYWdlVmlld1dpdGhBbm5vdGF0aW9uKCk7XG4gICAgfSk7XG4gIH1cblxuXG4gIC8qKlxuICAgKiBPcGVuIEltYWdlIHZpZXcgIGRpYWxvZ1xuICAgKi9cbiAgc2hvd0ltYWdlVmlld1dpdGhBbm5vdGF0aW9uKCk6IHZvaWQge1xuICAgIHRoaXMuZGlhbG9nID0gdGhpcy5faW5qZWN0b3IuZ2V0KE1hdERpYWxvZyk7XG4gICAgdGhpcy5kaWFsb2cub3BlbihJbWFnZVdpZGdldExpZ2h0Ym94Vmlld0NvbXBvbmVudCwge1xuICAgICAgaGVpZ2h0OiAnODB2aCcsXG4gICAgICB3aWR0aDogJzgwdncnLFxuICAgICAgbWF4V2lkdGg6JzEwMHZ3JyxcbiAgICAgIHBhbmVsQ2xhc3M6ICdpbWFnZWxpZ2h0Ym94LWNvbnRhaW5lcicsXG4gICAgICBkYXRhOiB0aGlzLmFubm90YXRpb25EYXRhXG4gICAgfSlcbiAgfVxuXG4gIC8qKlxuICAgKiBPcGVuIEltYWdlIG1hcCBsb2NhdGlvbiBkaWFsb2dcbiAgICovXG4gIHNob3dJbWFnZU1hcFZpZXcoaW1hZ2VXaWRnZXQ6IEltYWdlV2lkZ2V0VmFsdWUpOiB2b2lkIHtcbiAgICB0aGlzLmRpYWxvZyA9IHRoaXMuX2luamVjdG9yLmdldChNYXREaWFsb2cpO1xuICAgIHRoaXMuZGlhbG9nLm9wZW4oSW1hZ2VNYXBWaWV3Q29tcG9uZW50LCB7XG4gICAgICBtYXhXaWR0aDogJzEwMHZ3JyxcbiAgICAgIG1heEhlaWdodDogJzEwMHZoJyxcbiAgICAgIGhlaWdodDogJzEwMCUnLFxuICAgICAgd2lkdGg6ICcxMDAlJyxcbiAgICAgIHBhbmVsQ2xhc3M6ICdpbWFnZS1tYXAtYm94LWNvbnRhaW5lcicsXG4gICAgICBkYXRhOiB7XG4gICAgICAgIGxhdGl0dWRlOiBpbWFnZVdpZGdldC5sYXRpdHVkZSxcbiAgICAgICAgbG9uZ2l0dWRlOiBpbWFnZVdpZGdldC5sb25naXR1ZGUsXG4gICAgICAgIHpvb206IDEyXG4gICAgICB9LFxuICAgIH0pO1xuICB9XG5cbiAgbmdPbkRlc3Ryb3koKTogdm9pZFxuICB7XG4gICAgICAvLyBVbnN1YnNjcmliZSBmcm9tIGFsbCBzdWJzY3JpcHRpb25zXG4gICAgICB0aGlzLl91bnN1YnNjcmliZUFsbC5uZXh0KCk7XG4gICAgICB0aGlzLl91bnN1YnNjcmliZUFsbC5jb21wbGV0ZSgpO1xuICB9XG5cbn1cbiIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJ3aWRnZXQudmFsdWU7IGVsc2UgaXNXaWRnZXRWYWx1ZUVtcHR5XCIgPlxuICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCB0ZXh0LXNtIG0tMFwiICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+XG4gICAgPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2ltYWdlXCI+PC9tYXQtaWNvbj4gXG4gICAgPHNwYW4+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+IDo8L3NwYW4+PC9zcGFuPlxuPC9kaXY+XG48ZGl2IGNsYXNzPVwidy1mdWxsIGN1c3RvbXNjcm9sbCBjYXB0dXJlLWNvbnRhaW5lciBweS0yIHByLTJcIiAqbmdJZj1cIndpZGdldFZhbHVlLmxlbmd0aD4wXCI+XG4gIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbFwiICpuZ0Zvcj1cImxldCBpbWFnZVdpZGdldCBvZiB3aWRnZXRWYWx1ZTsgbGV0IGk9aW5kZXhcIj5cbiAgICA8ZGl2IGNsYXNzPVwiY2FwdHVyZS1kYXRhLWNvbnRhaW5lciByZWxhdGl2ZSB0ZXh0LWNlbnRlciByb3VuZGVkXCI+XG4gICAgICA8aW1nIFtzcmNdPVwiYmFzZVVybCArIGltYWdlV2lkZ2V0LnRodW1ibmFpbFwiIGNsYXNzPVwiY2FwdHVyZS1pbWFnZVwiIGFsdD1cIi4uLlwiIC8+XG4gICAgICA8ZGl2IGNsYXNzPVwiaW1hZ2Utb3ZlcmxheVwiPlxuICAgICAgICA8YSAqbmdJZj1cIndpZGdldFZhbHVlLmxvbmdpdHVkZSAhPT0gbnVsbCAmJiB3aWRnZXRWYWx1ZS5sYXRpdHVkZSAhPT1udWxsXCIgIHRhcmdldD1cIl9ibGFua1wiPiAgXG4gICAgICAgIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX2xvY2F0aW9uX291dGxpbmVcIiAoY2xpY2spPVwic2hvd0ltYWdlTWFwVmlldyhpbWFnZVdpZGdldClcIiA+PC9tYXQtaWNvbj5cbiAgICAgICAgPC9hPlxuICAgICAgICA8YSB0YXJnZXQ9XCJfYmxhbmtcIj4gXG4gICAgICAgICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19leWVfb3V0bGluZVwiIChjbGljayk9XCJzaG93QW5ub3RhdGlvbkltYWdlKHdpZGdldC5pZGVudGlmaWVyLGkpXCI+PC9tYXQtaWNvbj5cbiAgICAgICAgPC9hPlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gICAgPC9kaXY+PC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuICA8bmctdGVtcGxhdGUgI2lzV2lkZ2V0VmFsdWVFbXB0eT5cbiAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtaW5mbyBjYXB0dXJlLWNvbnRhaW5lclwiPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2ltYWdlXCI+PC9tYXQtaWNvbj4gXG4gICAgICA8c3BhbiAqbmdJZj1cInNlY3Rpb24uc2hvd1Byb21wdFwiPnt7d2lkZ2V0LnByb21wdH19PHNwYW4gY2xhc3M9XCJjb2xvblwiPjo8L3NwYW4+PC9zcGFuPlxuICAgICAgPHNwYW4gY2xhc3M9XCJmbGV4IGp1c3RpZnktc3RhcnRcIj4tPC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L25nLXRlbXBsYXRlPlxuICAgICAgXG4gIFxuICAgICAgXG5cblxuICBcbiJdfQ==
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { Language } from '../../../../forms/page/widgets/languages';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/material/icon";
|
|
6
|
+
function LanguageWidgetViewComponent_ng_container_0_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
i0.ɵɵelementStart(0, "span");
|
|
8
|
+
i0.ɵɵtext(1);
|
|
9
|
+
i0.ɵɵelementStart(2, "span", 5);
|
|
10
|
+
i0.ɵɵtext(3, ":");
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
} if (rf & 2) {
|
|
14
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
15
|
+
i0.ɵɵadvance(1);
|
|
16
|
+
i0.ɵɵtextInterpolate(ctx_r1.widget.prompt);
|
|
17
|
+
} }
|
|
18
|
+
function LanguageWidgetViewComponent_ng_container_0_ng_container_7_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelementContainerStart(0);
|
|
20
|
+
i0.ɵɵelementStart(1, "span", 6);
|
|
21
|
+
i0.ɵɵtext(2, "-");
|
|
22
|
+
i0.ɵɵelementEnd();
|
|
23
|
+
i0.ɵɵelementContainerEnd();
|
|
24
|
+
} }
|
|
25
|
+
function LanguageWidgetViewComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
26
|
+
i0.ɵɵelementContainerStart(0);
|
|
27
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
28
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
29
|
+
i0.ɵɵelement(3, "mat-icon", 3);
|
|
30
|
+
i0.ɵɵtemplate(4, LanguageWidgetViewComponent_ng_container_0_span_4_Template, 4, 1, "span", 0);
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
i0.ɵɵelementStart(5, "div", 4);
|
|
33
|
+
i0.ɵɵtext(6);
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
i0.ɵɵelementEnd();
|
|
36
|
+
i0.ɵɵtemplate(7, LanguageWidgetViewComponent_ng_container_0_ng_container_7_Template, 3, 0, "ng-container", 0);
|
|
37
|
+
i0.ɵɵelementContainerEnd();
|
|
38
|
+
} if (rf & 2) {
|
|
39
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
40
|
+
i0.ɵɵadvance(4);
|
|
41
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
42
|
+
i0.ɵɵadvance(2);
|
|
43
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.widgetValue, "");
|
|
44
|
+
i0.ɵɵadvance(1);
|
|
45
|
+
i0.ɵɵproperty("ngIf", !ctx_r0.widgetValue);
|
|
46
|
+
} }
|
|
47
|
+
export class LanguageWidgetViewComponent {
|
|
48
|
+
constructor() { }
|
|
49
|
+
ngOnInit() {
|
|
50
|
+
this.ChangeValueToLanguageName();
|
|
51
|
+
}
|
|
52
|
+
ChangeValueToLanguageName() {
|
|
53
|
+
if (this.widget.value) {
|
|
54
|
+
this.widgetValue = ((typeof this.widget.value) === "object") ? this.widget.value["name"] : this.widget.value[0].name;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
LanguageWidgetViewComponent.ɵfac = function LanguageWidgetViewComponent_Factory(t) { return new (t || LanguageWidgetViewComponent)(); };
|
|
59
|
+
LanguageWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LanguageWidgetViewComponent, selectors: [["lib-language-widget-view"]], inputs: { widget: "widget" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "data-detail-info"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_text", 1, "add-text"], [1, "data-detail-text", "text-sm"], [1, "colon"], [1, "flex", "justify-start"]], template: function LanguageWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
+
i0.ɵɵtemplate(0, LanguageWidgetViewComponent_ng_container_0_Template, 8, 3, "ng-container", 0);
|
|
61
|
+
} if (rf & 2) {
|
|
62
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value);
|
|
63
|
+
} }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
|
|
64
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LanguageWidgetViewComponent, [{
|
|
65
|
+
type: Component,
|
|
66
|
+
args: [{ selector: 'lib-language-widget-view', template: "\n<ng-container *ngIf=\"widget.value\" >\n <div class=\"data-detail-info\">\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_text\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\"> {{widgetValue}}</div> \n </div>\n\n<ng-container *ngIf=\"!widgetValue\" >\n <span class=\"flex justify-start\">-</span>\n </ng-container>\n\n", styles: [""] }]
|
|
67
|
+
}], function () { return []; }, { widget: [{
|
|
68
|
+
type: Input
|
|
69
|
+
}] }); })();
|
|
70
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFuZ3VhZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2xhbmd1YWdlLXdpZGdldC12aWV3L2xhbmd1YWdlLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9sYW5ndWFnZS13aWRnZXQtdmlldy9sYW5ndWFnZS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUN6RCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sMENBQTBDLENBQUM7Ozs7O0lDRXdDLDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFLOUosNkJBQW9DO0lBQ2hDLCtCQUFpQztJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFDM0MsMEJBQWU7OztJQVRqQiw2QkFBb0M7SUFDbEMsOEJBQThCO0lBQzFCLDhCQUE0QztJQUFBLDhCQUF5RDtJQUFDLDZGQUFxRjtJQUMzTCxpQkFBTTtJQUNOLDhCQUFzQztJQUFDLFlBQWU7SUFBQSxpQkFBTTtJQUNoRSxpQkFBTTtJQUVSLDZHQUVpQjtJQVRqQiwwQkFBb0M7OztJQUUrRSxlQUF3QjtJQUF4QixnREFBd0I7SUFFOUYsZUFBZTtJQUFmLGtEQUFlO0lBRzdDLGVBQWtCO0lBQWxCLDBDQUFrQjs7QURBakMsTUFBTSxPQUFPLDJCQUEyQjtJQVF0QyxnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO1FBQ04sSUFBSSxDQUFDLHlCQUF5QixFQUFFLENBQUM7SUFDbkMsQ0FBQztJQUNELHlCQUF5QjtRQUN2QixJQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFDO1lBQ25CLElBQUksQ0FBQyxXQUFXLEdBQUksQ0FBQyxDQUFDLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUUsS0FBSSxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQztTQUN4SDtJQUVILENBQUM7O3NHQWxCVSwyQkFBMkI7OEVBQTNCLDJCQUEyQjtRQ1B4Qyw4RkFBb0M7O1FBQXJCLHVDQUFrQjs7dUZET3BCLDJCQUEyQjtjQUx2QyxTQUFTOzJCQUNFLDBCQUEwQjtzQ0FTMUIsTUFBTTtrQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBMYW5ndWFnZSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9sYW5ndWFnZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItbGFuZ3VhZ2Utd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vbGFuZ3VhZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9sYW5ndWFnZS13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIExhbmd1YWdlV2lkZ2V0Vmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgIC8qXG4gICogd2lkZ2V0IG9iamVjdFxuICAqL1xuICAgQElucHV0KCkgd2lkZ2V0OiBMYW5ndWFnZTtcbiAgIHdpZGdldFZhbHVlIDogc3RyaW5nO1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5DaGFuZ2VWYWx1ZVRvTGFuZ3VhZ2VOYW1lKCk7XG4gIH1cbiAgQ2hhbmdlVmFsdWVUb0xhbmd1YWdlTmFtZSgpe1xuICAgIGlmKHRoaXMud2lkZ2V0LnZhbHVlKXtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUgPSAgKCh0eXBlb2YgdGhpcy53aWRnZXQudmFsdWUgKT09PSBcIm9iamVjdFwiKSA/IHRoaXMud2lkZ2V0LnZhbHVlW1wibmFtZVwiXSA6ICB0aGlzLndpZGdldC52YWx1ZVswXS5uYW1lO1xuICAgIH1cbiAgICBcbiAgfVxuICBcblxufVxuIiwiXG48bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LnZhbHVlXCIgPlxuICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtaW5mb1wiPlxuICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b190ZXh0XCI+PC9tYXQtaWNvbj4gPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgIDwvZGl2PlxuICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRleHQgdGV4dC1zbVwiPiB7e3dpZGdldFZhbHVlfX08L2Rpdj4gXG4gIDwvZGl2PlxuXG48bmctY29udGFpbmVyICpuZ0lmPVwiIXdpZGdldFZhbHVlXCIgPlxuICAgIDxzcGFuIGNsYXNzPVwiZmxleCBqdXN0aWZ5LXN0YXJ0XCI+LTwvc3Bhbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiJdfQ==
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { Payment } from '../../../../forms/page/widgets/payment';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class PaymentWidgetViewComponent {
|
|
5
|
+
constructor() { }
|
|
6
|
+
ngOnInit() {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
PaymentWidgetViewComponent.ɵfac = function PaymentWidgetViewComponent_Factory(t) { return new (t || PaymentWidgetViewComponent)(); };
|
|
10
|
+
PaymentWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PaymentWidgetViewComponent, selectors: [["lib-payment-widget-view"]], inputs: { widget: "widget" }, decls: 2, vars: 0, template: function PaymentWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "p");
|
|
12
|
+
i0.ɵɵtext(1, "payment-widget-view works!");
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} }, styles: [""] });
|
|
15
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaymentWidgetViewComponent, [{
|
|
16
|
+
type: Component,
|
|
17
|
+
args: [{ selector: 'lib-payment-widget-view', template: "<p>payment-widget-view works!</p>\n", styles: [""] }]
|
|
18
|
+
}], function () { return []; }, { widget: [{
|
|
19
|
+
type: Input
|
|
20
|
+
}] }); })();
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF5bWVudC13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvcGF5bWVudC13aWRnZXQtdmlldy9wYXltZW50LXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9wYXltZW50LXdpZGdldC12aWV3L3BheW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDekQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHdDQUF3QyxDQUFDOztBQU9qRSxNQUFNLE9BQU8sMEJBQTBCO0lBT3JDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOztvR0FWVSwwQkFBMEI7NkVBQTFCLDBCQUEwQjtRQ1J2Qyx5QkFBRztRQUFBLDBDQUEwQjtRQUFBLGlCQUFJOzt1RkRRcEIsMEJBQTBCO2NBTHRDLFNBQVM7MkJBQ0UseUJBQXlCO3NDQVN2QixNQUFNO2tCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFBheW1lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvcGF5bWVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1wYXltZW50LXdpZGdldC12aWV3JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3BheW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wYXltZW50LXdpZGdldC12aWV3LmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgUGF5bWVudFdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gICAgIC8qXG4gICogd2lkZ2V0IG9iamVjdFxuICAqL1xuICAgICBASW5wdXQoKSB3aWRnZXQ6IFBheW1lbnQ7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG59XG4iLCI8cD5wYXltZW50LXdpZGdldC12aWV3IHdvcmtzITwvcD5cbiJdfQ==
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { Component, Injector, Input } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { WidgetSubType } from '../../../../../lib/forms/page/common/widget-enums';
|
|
4
|
+
import { AxoMap } from '../../../../axo-map/axo-map';
|
|
5
|
+
import { QrCode } from '../../../../forms/page/widgets/qr-code';
|
|
6
|
+
import { MapDialogComponent } from '../../../../../lib/map-dialog/map-dialog.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "@angular/common";
|
|
9
|
+
import * as i2 from "@angular/material/icon";
|
|
10
|
+
function QrCodeWidgetViewComponent_ng_container_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "span");
|
|
12
|
+
i0.ɵɵtext(1);
|
|
13
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
14
|
+
i0.ɵɵtext(3, ":");
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
i0.ɵɵelementEnd();
|
|
17
|
+
} if (rf & 2) {
|
|
18
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
19
|
+
i0.ɵɵadvance(1);
|
|
20
|
+
i0.ɵɵtextInterpolate(ctx_r4.widget.prompt);
|
|
21
|
+
} }
|
|
22
|
+
function QrCodeWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
23
|
+
i0.ɵɵelementContainerStart(0);
|
|
24
|
+
i0.ɵɵelementStart(1, "div", 5);
|
|
25
|
+
i0.ɵɵelement(2, "mat-icon", 6);
|
|
26
|
+
i0.ɵɵtemplate(3, QrCodeWidgetViewComponent_ng_container_1_span_3_Template, 4, 1, "span", 7);
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
i0.ɵɵelementStart(4, "div", 8);
|
|
29
|
+
i0.ɵɵtext(5);
|
|
30
|
+
i0.ɵɵelementEnd();
|
|
31
|
+
i0.ɵɵelementContainerEnd();
|
|
32
|
+
} if (rf & 2) {
|
|
33
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
34
|
+
i0.ɵɵadvance(3);
|
|
35
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
36
|
+
i0.ɵɵadvance(2);
|
|
37
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.widgetValue, "");
|
|
38
|
+
} }
|
|
39
|
+
function QrCodeWidgetViewComponent_ng_template_2_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
i0.ɵɵelementStart(0, "span");
|
|
41
|
+
i0.ɵɵtext(1);
|
|
42
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
43
|
+
i0.ɵɵtext(3, ":");
|
|
44
|
+
i0.ɵɵelementEnd();
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
} if (rf & 2) {
|
|
47
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
48
|
+
i0.ɵɵadvance(1);
|
|
49
|
+
i0.ɵɵtextInterpolate(ctx_r5.widget.prompt);
|
|
50
|
+
} }
|
|
51
|
+
function QrCodeWidgetViewComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
52
|
+
i0.ɵɵelementStart(0, "div", 5);
|
|
53
|
+
i0.ɵɵelement(1, "mat-icon", 6);
|
|
54
|
+
i0.ɵɵtemplate(2, QrCodeWidgetViewComponent_ng_template_2_span_2_Template, 4, 1, "span", 7);
|
|
55
|
+
i0.ɵɵelementEnd();
|
|
56
|
+
i0.ɵɵelementStart(3, "span", 10);
|
|
57
|
+
i0.ɵɵtext(4, "-");
|
|
58
|
+
i0.ɵɵelementEnd();
|
|
59
|
+
} if (rf & 2) {
|
|
60
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
61
|
+
i0.ɵɵadvance(2);
|
|
62
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
63
|
+
} }
|
|
64
|
+
function QrCodeWidgetViewComponent_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
65
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
66
|
+
i0.ɵɵelementStart(0, "div", 11);
|
|
67
|
+
i0.ɵɵlistener("click", function QrCodeWidgetViewComponent_div_5_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(); ctx_r6.showLocationView($event); return $event.stopPropagation(); });
|
|
68
|
+
i0.ɵɵelement(1, "mat-icon", 12);
|
|
69
|
+
i0.ɵɵelementEnd();
|
|
70
|
+
} if (rf & 2) {
|
|
71
|
+
i0.ɵɵadvance(1);
|
|
72
|
+
i0.ɵɵproperty("svgIcon", "axo_location_red");
|
|
73
|
+
} }
|
|
74
|
+
export class QrCodeWidgetViewComponent {
|
|
75
|
+
constructor(_injector) {
|
|
76
|
+
this._injector = _injector;
|
|
77
|
+
this.widgetValue = '';
|
|
78
|
+
this.locations = new Array();
|
|
79
|
+
this.showMap = false;
|
|
80
|
+
}
|
|
81
|
+
ngOnInit() {
|
|
82
|
+
this.widgetValue = this.widget.getWidgetValue();
|
|
83
|
+
if (this.widget.subType == WidgetSubType.scan_with_location) {
|
|
84
|
+
const value = JSON.parse(this.widgetValue);
|
|
85
|
+
this.widgetValue = value[0].data;
|
|
86
|
+
const latitude = value[0]?.location?.lat;
|
|
87
|
+
const longitude = value[0]?.location?.long;
|
|
88
|
+
//checks the lat and long value and set showMap value.
|
|
89
|
+
if ((latitude == 0 && longitude == 0) || !latitude || !longitude) {
|
|
90
|
+
this.showMap = false;
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
const axoMap = new AxoMap();
|
|
94
|
+
axoMap.latitude = latitude;
|
|
95
|
+
axoMap.longitude = longitude;
|
|
96
|
+
this.locations.push(axoMap);
|
|
97
|
+
this.showMap = true;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Open location dialog
|
|
103
|
+
*/
|
|
104
|
+
showLocationView(event) {
|
|
105
|
+
this.dialog = this._injector.get(MatDialog);
|
|
106
|
+
this.dialog.open(MapDialogComponent, {
|
|
107
|
+
maxWidth: '100vw',
|
|
108
|
+
maxHeight: '100vh',
|
|
109
|
+
height: '100%',
|
|
110
|
+
width: '100%',
|
|
111
|
+
panelClass: 'location-box-container',
|
|
112
|
+
data: {
|
|
113
|
+
locations: this.locations
|
|
114
|
+
},
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* enum of widget subType
|
|
119
|
+
*/
|
|
120
|
+
get WidgetSubType() {
|
|
121
|
+
return WidgetSubType;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
QrCodeWidgetViewComponent.ɵfac = function QrCodeWidgetViewComponent_Factory(t) { return new (t || QrCodeWidgetViewComponent)(i0.ɵɵdirectiveInject(i0.Injector)); };
|
|
125
|
+
QrCodeWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: QrCodeWidgetViewComponent, selectors: [["lib-qr-code-widget-view"]], inputs: { widget: "widget" }, decls: 6, vars: 3, consts: [[1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "icon-container"], ["class", "flex items-center location-btn-icon rounded-md", 3, "click", 4, "ngIf"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_qrcode", 1, "add-text"], [4, "ngIf"], [1, "data-detail-text", "text-sm"], [1, "colon"], [1, "flex", "justify-start"], [1, "flex", "items-center", "location-btn-icon", "rounded-md", 3, "click"], [3, "svgIcon"]], template: function QrCodeWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
126
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
127
|
+
i0.ɵɵtemplate(1, QrCodeWidgetViewComponent_ng_container_1_Template, 6, 2, "ng-container", 1);
|
|
128
|
+
i0.ɵɵtemplate(2, QrCodeWidgetViewComponent_ng_template_2_Template, 5, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
|
|
129
|
+
i0.ɵɵelementStart(4, "div", 3);
|
|
130
|
+
i0.ɵɵtemplate(5, QrCodeWidgetViewComponent_div_5_Template, 2, 1, "div", 4);
|
|
131
|
+
i0.ɵɵelementEnd();
|
|
132
|
+
i0.ɵɵelementEnd();
|
|
133
|
+
} if (rf & 2) {
|
|
134
|
+
const _r1 = i0.ɵɵreference(3);
|
|
135
|
+
i0.ɵɵadvance(1);
|
|
136
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
137
|
+
i0.ɵɵadvance(4);
|
|
138
|
+
i0.ɵɵproperty("ngIf", ctx.widget.subType === ctx.WidgetSubType.scan_with_location && ctx.widget.captureLocation && ctx.showMap);
|
|
139
|
+
} }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
|
|
140
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(QrCodeWidgetViewComponent, [{
|
|
141
|
+
type: Component,
|
|
142
|
+
args: [{ selector: 'lib-qr-code-widget-view', template: "\n <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\" ><mat-icon class=\"add-text\" svgIcon=\"axo_qrcode\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\"> {{widgetValue}}</div> \n \n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_qrcode\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n </ng-template>\n <!-- If location is enabled icon for triggering map-dialog get visible-->\n <div class=\"icon-container\">\n <div *ngIf=\"widget.subType === WidgetSubType.scan_with_location && widget.captureLocation && showMap\" class=\"flex items-center location-btn-icon rounded-md\" (click)=\"showLocationView($event); $event.stopPropagation();\">\n <mat-icon [svgIcon]=\"'axo_location_red'\" ></mat-icon>\n </div> \n </div>\n </div>\n<!-- If location is enabled map with marker get visible-->\n <!-- <div *ngIf=\"widget.subType == 'scan_with_location' && widget.captureLocation && showMap\" class=\"location-container items-center rounded-md mt-4\">\n <axo-map [locations]=\"locations\"></axo-map>\n </div> -->\n \n ", styles: [""] }]
|
|
143
|
+
}], function () { return [{ type: i0.Injector }]; }, { widget: [{
|
|
144
|
+
type: Input
|
|
145
|
+
}] }); })();
|
|
146
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXItY29kZS13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvcXItY29kZS13aWRnZXQtdmlldy9xci1jb2RlLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9xci1jb2RlLXdpZGdldC12aWV3L3FyLWNvZGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ25FLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUNyRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDbEYsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUNoRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxvREFBb0QsQ0FBQzs7Ozs7SUNGeUIsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSwrQkFBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwwQ0FBaUI7OztJQUQvSiw2QkFBNkQ7SUFDM0QsOEJBQStDO0lBQUEsOEJBQTJEO0lBQUMsMkZBQXFGO0lBQ2hNLGlCQUFNO0lBQ04sOEJBQXNDO0lBQUMsWUFBZTtJQUFBLGlCQUFNO0lBRTlELDBCQUFlOzs7SUFKcUcsZUFBd0I7SUFBeEIsZ0RBQXdCO0lBRW5HLGVBQWU7SUFBZixrREFBZTs7O0lBTWhELDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFGdEQsOEJBQTRDO0lBQ3hDLDhCQUEyRDtJQUMzRCwwRkFBcUY7SUFDekYsaUJBQU07SUFDTixnQ0FBaUM7SUFBQSxpQkFBQztJQUFBLGlCQUFPOzs7SUFGOUIsZUFBd0I7SUFBeEIsZ0RBQXdCOzs7O0lBTW5DLCtCQUEyTjtJQUE5RCxrS0FBUywrQkFBd0IsU0FBRSx3QkFBd0IsSUFBRTtJQUN0TiwrQkFBcUQ7SUFDekQsaUJBQU07O0lBRFEsZUFBOEI7SUFBOUIsNENBQThCOztBRE5wRCxNQUFNLE9BQU8seUJBQXlCO0lBWXBDLFlBQW9CLFNBQW1CO1FBQW5CLGNBQVMsR0FBVCxTQUFTLENBQVU7UUFIdkMsZ0JBQVcsR0FBVyxFQUFFLENBQUM7UUFDekIsY0FBUyxHQUFHLElBQUksS0FBSyxFQUFVLENBQUM7UUFDaEMsWUFBTyxHQUFZLEtBQUssQ0FBQztJQUNrQixDQUFDO0lBRTVDLFFBQVE7UUFDTixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDaEQsSUFBRyxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sSUFBSSxhQUFhLENBQUMsa0JBQWtCLEVBQUM7WUFDekQsTUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDM0MsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1lBQ2pDLE1BQU0sUUFBUSxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxRQUFRLEVBQUUsR0FBRyxDQUFDO1lBQ3pDLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxDQUFDO1lBQzNDLHNEQUFzRDtZQUN0RCxJQUFHLENBQUMsUUFBUSxJQUFJLENBQUMsSUFBSSxTQUFTLElBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLElBQUksQ0FBQyxTQUFTLEVBQUM7Z0JBQzVELElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO2FBQ3RCO2lCQUNHO2dCQUNGLE1BQU0sTUFBTSxHQUFHLElBQUksTUFBTSxFQUFFLENBQUM7Z0JBQzVCLE1BQU0sQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO2dCQUMzQixNQUFNLENBQUMsU0FBUyxHQUFHLFNBQVMsQ0FBQztnQkFDN0IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQzVCLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDO2FBQ3JCO1NBRUY7SUFDSCxDQUFDO0lBQ0Q7O09BRUc7SUFDRixnQkFBZ0IsQ0FBQyxLQUFLO1FBQ3JCLElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLENBQUM7UUFDNUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsa0JBQWtCLEVBQUU7WUFDbkMsUUFBUSxFQUFFLE9BQU87WUFDakIsU0FBUyxFQUFFLE9BQU87WUFDbEIsTUFBTSxFQUFFLE1BQU07WUFDZCxLQUFLLEVBQUUsTUFBTTtZQUNiLFVBQVUsRUFBRSx3QkFBd0I7WUFDcEMsSUFBSSxFQUFFO2dCQUNKLFNBQVMsRUFBRyxJQUFJLENBQUMsU0FBUzthQUMzQjtTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRDs7T0FFRztJQUNILElBQVcsYUFBYTtRQUN0QixPQUFPLGFBQWEsQ0FBQztJQUN2QixDQUFDOztrR0F6RFUseUJBQXlCOzRFQUF6Qix5QkFBeUI7UUNYcEMsOEJBQThCO1FBQzVCLDRGQUtlO1FBQ2YsMkhBTWM7UUFFWiw4QkFBNEI7UUFDMUIsMEVBRU07UUFDVixpQkFBTTtRQUNSLGlCQUFNOzs7UUFuQlcsZUFBb0I7UUFBcEIsdUNBQW9CLGlCQUFBO1FBZXpCLGVBQThGO1FBQTlGLCtIQUE4Rjs7dUZETC9GLHlCQUF5QjtjQUxyQyxTQUFTOzJCQUNFLHlCQUF5QjsyREFTMUIsTUFBTTtrQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbmplY3RvciwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IFdpZGdldFN1YlR5cGUgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9saWIvZm9ybXMvcGFnZS9jb21tb24vd2lkZ2V0LWVudW1zJztcbmltcG9ydCB7IEF4b01hcCB9IGZyb20gJy4uLy4uLy4uLy4uL2F4by1tYXAvYXhvLW1hcCc7XG5pbXBvcnQgeyBRckNvZGUgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvcXItY29kZSc7XG5pbXBvcnQgeyBNYXBEaWFsb2dDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9saWIvbWFwLWRpYWxvZy9tYXAtZGlhbG9nLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1xci1jb2RlLXdpZGdldC12aWV3JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3FyLWNvZGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9xci1jb2RlLXdpZGdldC12aWV3LmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgUXJDb2RlV2lkZ2V0Vmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbi8qXG4gICogd2lkZ2V0IG9iamVjdFxuICAqL1xuICBASW5wdXQoKSB3aWRnZXQ6IFFyQ29kZTtcbiAgZGlhbG9nOiBNYXREaWFsb2c7XG5cblxuICB3aWRnZXRWYWx1ZTogc3RyaW5nID0gJyc7XG4gIGxvY2F0aW9ucyA9IG5ldyBBcnJheTxBeG9NYXA+KCk7XG4gIHNob3dNYXA6IGJvb2xlYW4gPSBmYWxzZTtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBfaW5qZWN0b3I6IEluamVjdG9yKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLndpZGdldFZhbHVlID0gdGhpcy53aWRnZXQuZ2V0V2lkZ2V0VmFsdWUoKTtcbiAgICBpZih0aGlzLndpZGdldC5zdWJUeXBlID09IFdpZGdldFN1YlR5cGUuc2Nhbl93aXRoX2xvY2F0aW9uKXtcbiAgICAgIGNvbnN0IHZhbHVlID0gSlNPTi5wYXJzZSh0aGlzLndpZGdldFZhbHVlKTtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUgPSB2YWx1ZVswXS5kYXRhO1xuICAgICAgY29uc3QgbGF0aXR1ZGUgPSB2YWx1ZVswXT8ubG9jYXRpb24/LmxhdDtcbiAgICAgIGNvbnN0IGxvbmdpdHVkZSA9IHZhbHVlWzBdPy5sb2NhdGlvbj8ubG9uZztcbiAgICAgIC8vY2hlY2tzIHRoZSBsYXQgYW5kIGxvbmcgdmFsdWUgYW5kIHNldCBzaG93TWFwIHZhbHVlLlxuICAgICAgaWYoKGxhdGl0dWRlID09IDAgJiYgbG9uZ2l0dWRlPT0wKSB8fCAhbGF0aXR1ZGUgfHwgIWxvbmdpdHVkZSl7XG4gICAgICAgIHRoaXMuc2hvd01hcCA9IGZhbHNlO1xuICAgICAgfVxuICAgICAgZWxzZXtcbiAgICAgICAgY29uc3QgYXhvTWFwID0gbmV3IEF4b01hcCgpO1xuICAgICAgICBheG9NYXAubGF0aXR1ZGUgPSBsYXRpdHVkZTtcbiAgICAgICAgYXhvTWFwLmxvbmdpdHVkZSA9IGxvbmdpdHVkZTtcbiAgICAgICAgdGhpcy5sb2NhdGlvbnMucHVzaChheG9NYXApO1xuICAgICAgICB0aGlzLnNob3dNYXAgPSB0cnVlO1xuICAgICAgfVxuXG4gICAgfVxuICB9XG4gIC8qKlxuICAgKiBPcGVuIGxvY2F0aW9uIGRpYWxvZ1xuICAgKi9cbiAgIHNob3dMb2NhdGlvblZpZXcoZXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmRpYWxvZyA9IHRoaXMuX2luamVjdG9yLmdldChNYXREaWFsb2cpO1xuICAgIHRoaXMuZGlhbG9nLm9wZW4oTWFwRGlhbG9nQ29tcG9uZW50LCB7XG4gICAgICBtYXhXaWR0aDogJzEwMHZ3JyxcbiAgICAgIG1heEhlaWdodDogJzEwMHZoJyxcbiAgICAgIGhlaWdodDogJzEwMCUnLFxuICAgICAgd2lkdGg6ICcxMDAlJyxcbiAgICAgIHBhbmVsQ2xhc3M6ICdsb2NhdGlvbi1ib3gtY29udGFpbmVyJyxcbiAgICAgIGRhdGE6IHtcbiAgICAgICAgbG9jYXRpb25zIDogdGhpcy5sb2NhdGlvbnNcbiAgICAgIH0sXG4gICAgfSk7XG4gIH1cblxuICAvKipcbiAgICogZW51bSBvZiB3aWRnZXQgc3ViVHlwZVxuICAgKi9cbiAgcHVibGljIGdldCBXaWRnZXRTdWJUeXBlKCk6IHR5cGVvZiBXaWRnZXRTdWJUeXBlIHtcbiAgICByZXR1cm4gV2lkZ2V0U3ViVHlwZTtcbiAgfVxufVxuIiwiXG4gIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC1pbmZvXCI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIndpZGdldC52YWx1ZTsgZWxzZSBpc1dpZGdldFZhbHVlRW1wdHlcIiA+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCB0ZXh0LXNtXCIgICA+PG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX3FyY29kZVwiPjwvbWF0LWljb24+IDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10ZXh0IHRleHQtc21cIj4ge3t3aWRnZXRWYWx1ZX19PC9kaXY+IFxuICAgICAgICAgXG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLXRlbXBsYXRlICNpc1dpZGdldFZhbHVlRW1wdHk+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10aXRsZSBmbGV4IHRleHQtc21cIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19xcmNvZGVcIj48L21hdC1pY29uPiBcbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgIDwhLS0gSWYgbG9jYXRpb24gaXMgZW5hYmxlZCBpY29uIGZvciB0cmlnZ2VyaW5nIG1hcC1kaWFsb2cgZ2V0IHZpc2libGUtLT5cbiAgICAgIDxkaXYgY2xhc3M9XCJpY29uLWNvbnRhaW5lclwiPlxuICAgICAgICA8ZGl2ICpuZ0lmPVwid2lkZ2V0LnN1YlR5cGUgPT09IFdpZGdldFN1YlR5cGUuc2Nhbl93aXRoX2xvY2F0aW9uICYmIHdpZGdldC5jYXB0dXJlTG9jYXRpb24gJiYgc2hvd01hcFwiIGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgbG9jYXRpb24tYnRuLWljb24gcm91bmRlZC1tZFwiIChjbGljayk9XCJzaG93TG9jYXRpb25WaWV3KCRldmVudCk7ICRldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBbc3ZnSWNvbl09XCInYXhvX2xvY2F0aW9uX3JlZCdcIiA+PC9tYXQtaWNvbj5cbiAgICAgICAgPC9kaXY+ICAgICAgIFxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbjwhLS0gSWYgbG9jYXRpb24gaXMgZW5hYmxlZCBtYXAgd2l0aCBtYXJrZXIgZ2V0IHZpc2libGUtLT5cbiAgPCEtLSA8ZGl2ICpuZ0lmPVwid2lkZ2V0LnN1YlR5cGUgPT0gJ3NjYW5fd2l0aF9sb2NhdGlvbicgJiYgd2lkZ2V0LmNhcHR1cmVMb2NhdGlvbiAmJiBzaG93TWFwXCIgY2xhc3M9XCJsb2NhdGlvbi1jb250YWluZXIgaXRlbXMtY2VudGVyIHJvdW5kZWQtbWQgIG10LTRcIj5cbiAgICA8YXhvLW1hcCBbbG9jYXRpb25zXT1cImxvY2F0aW9uc1wiPjwvYXhvLW1hcD5cbiAgPC9kaXY+IC0tPlxuICBcbiAgIl19
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { AxoUtils } from '../../../../axo-utils/axo-utils';
|
|
3
|
+
import { Signature } from '../../../../forms/page/widgets/signature';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/common";
|
|
6
|
+
import * as i2 from "@angular/flex-layout/flex";
|
|
7
|
+
import * as i3 from "@angular/material/icon";
|
|
8
|
+
function SignatureWidgetViewComponent_ng_container_0_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
i0.ɵɵelementStart(0, "span");
|
|
10
|
+
i0.ɵɵtext(1);
|
|
11
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
12
|
+
i0.ɵɵtext(3, ":");
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
} if (rf & 2) {
|
|
16
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
17
|
+
i0.ɵɵadvance(1);
|
|
18
|
+
i0.ɵɵtextInterpolate(ctx_r3.widget.prompt);
|
|
19
|
+
} }
|
|
20
|
+
function SignatureWidgetViewComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelementContainerStart(0);
|
|
22
|
+
i0.ɵɵelementStart(1, "div", 2);
|
|
23
|
+
i0.ɵɵelementStart(2, "div", 3);
|
|
24
|
+
i0.ɵɵelementStart(3, "div", 4);
|
|
25
|
+
i0.ɵɵelement(4, "mat-icon", 5);
|
|
26
|
+
i0.ɵɵtemplate(5, SignatureWidgetViewComponent_ng_container_0_span_5_Template, 4, 1, "span", 6);
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
i0.ɵɵelementStart(6, "div", 7);
|
|
29
|
+
i0.ɵɵelement(7, "img", 8);
|
|
30
|
+
i0.ɵɵelementEnd();
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
i0.ɵɵelementContainerEnd();
|
|
34
|
+
} if (rf & 2) {
|
|
35
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
36
|
+
i0.ɵɵadvance(5);
|
|
37
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
38
|
+
i0.ɵɵadvance(2);
|
|
39
|
+
i0.ɵɵproperty("src", ctx_r0.baseUrl + "/images/media/app_data/" + ctx_r0.widgetValue, i0.ɵɵsanitizeUrl);
|
|
40
|
+
} }
|
|
41
|
+
function SignatureWidgetViewComponent_ng_template_1_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
42
|
+
i0.ɵɵelementStart(0, "span");
|
|
43
|
+
i0.ɵɵtext(1);
|
|
44
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
45
|
+
i0.ɵɵtext(3, ":");
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
} if (rf & 2) {
|
|
49
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
50
|
+
i0.ɵɵadvance(1);
|
|
51
|
+
i0.ɵɵtextInterpolate(ctx_r4.widget.prompt);
|
|
52
|
+
} }
|
|
53
|
+
function SignatureWidgetViewComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
54
|
+
i0.ɵɵelementStart(0, "div", 10);
|
|
55
|
+
i0.ɵɵelement(1, "mat-icon", 5);
|
|
56
|
+
i0.ɵɵtemplate(2, SignatureWidgetViewComponent_ng_template_1_span_2_Template, 4, 1, "span", 6);
|
|
57
|
+
i0.ɵɵelementStart(3, "span", 11);
|
|
58
|
+
i0.ɵɵtext(4, "-");
|
|
59
|
+
i0.ɵɵelementEnd();
|
|
60
|
+
i0.ɵɵelementEnd();
|
|
61
|
+
} if (rf & 2) {
|
|
62
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
63
|
+
i0.ɵɵadvance(2);
|
|
64
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
65
|
+
} }
|
|
66
|
+
export class SignatureWidgetViewComponent {
|
|
67
|
+
constructor() {
|
|
68
|
+
this.widgetValue = null;
|
|
69
|
+
}
|
|
70
|
+
ngOnInit() {
|
|
71
|
+
if (this.widget.value) {
|
|
72
|
+
this.widgetValue = AxoUtils.removeSlashFromImageUrl(this.widget.value);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
SignatureWidgetViewComponent.ɵfac = function SignatureWidgetViewComponent_Factory(t) { return new (t || SignatureWidgetViewComponent)(); };
|
|
77
|
+
SignatureWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignatureWidgetViewComponent, selectors: [["lib-signature-widget-view"]], inputs: { widget: "widget", baseUrl: "baseUrl" }, decls: 3, vars: 2, consts: [[4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], ["fxLayoutAlign", "end start", 1, "data-detail-info"], [1, "flex", "justify-between", "w-full", "gap-4"], [1, "flex", "gap-4"], ["svgIcon", "axo_signature", 1, "add-text"], [4, "ngIf"], [1, "capture-data-container", "text-center"], ["alt", "...", 1, "capture-image", "rounded", 3, "src"], [1, "colon"], [1, "data-detail-title", "m-0"], [1, "flex", "justify-start"]], template: function SignatureWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
78
|
+
i0.ɵɵtemplate(0, SignatureWidgetViewComponent_ng_container_0_Template, 8, 2, "ng-container", 0);
|
|
79
|
+
i0.ɵɵtemplate(1, SignatureWidgetViewComponent_ng_template_1_Template, 5, 1, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
|
80
|
+
} if (rf & 2) {
|
|
81
|
+
const _r1 = i0.ɵɵreference(2);
|
|
82
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
83
|
+
} }, directives: [i1.NgIf, i2.DefaultLayoutAlignDirective, i3.MatIcon], styles: ["lib-signature-widget-view .capture-data-container{max-width:10rem;width:10rem}lib-signature-widget-view .capture-image{display:block;height:auto;background:rgba(0,0,0,0);border:1px solid #8080807a}lib-signature-widget-view .image-overlay{display:flex;justify-content:center;align-items:center;position:absolute;column-gap:5px;top:18px;background:rgba(0,0,0,.5);transition:.5s ease;opacity:0;color:#fff;font-size:20px;height:8rem;width:8rem}lib-signature-widget-view .image-overlay a{border:1px solid #ffffff;border-radius:100%;width:28px;height:28px;line-height:28px}lib-signature-widget-view .image-overlay a mat-icon{color:#fff!important;height:12px;width:12px;min-width:12px;font-size:18px}lib-signature-widget-view .image-overlay:hover{opacity:1}\n"], encapsulation: 2 });
|
|
84
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignatureWidgetViewComponent, [{
|
|
85
|
+
type: Component,
|
|
86
|
+
args: [{ selector: 'lib-signature-widget-view', encapsulation: ViewEncapsulation.None, template: "\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-info\" fxLayoutAlign=\"end start\">\n <div class=\"flex justify-between w-full gap-4\">\n <div class=\"flex gap-4\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_signature\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"capture-data-container text-center\" >\n <img [src]=\"baseUrl + '/images/media/app_data/' +widgetValue\" class=\"capture-image rounded\" alt=\"...\" />\n </div>\n </div>\n </div>\n\n</ng-container>\n \n \n<ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title m-0\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_signature\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n <span class=\"flex justify-start\">-</span>\n </div>\n</ng-template>", styles: ["lib-signature-widget-view .capture-data-container{max-width:10rem;width:10rem}lib-signature-widget-view .capture-image{display:block;height:auto;background:rgba(0,0,0,0);border:1px solid #8080807a}lib-signature-widget-view .image-overlay{display:flex;justify-content:center;align-items:center;position:absolute;column-gap:5px;top:18px;background:rgba(0,0,0,.5);transition:.5s ease;opacity:0;color:#fff;font-size:20px;height:8rem;width:8rem}lib-signature-widget-view .image-overlay a{border:1px solid #ffffff;border-radius:100%;width:28px;height:28px;line-height:28px}lib-signature-widget-view .image-overlay a mat-icon{color:#fff!important;height:12px;width:12px;min-width:12px;font-size:18px}lib-signature-widget-view .image-overlay:hover{opacity:1}\n"] }]
|
|
87
|
+
}], function () { return []; }, { widget: [{
|
|
88
|
+
type: Input
|
|
89
|
+
}], baseUrl: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}] }); })();
|
|
92
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lnbmF0dXJlLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9zaWduYXR1cmUtd2lkZ2V0LXZpZXcvc2lnbmF0dXJlLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9zaWduYXR1cmUtd2lkZ2V0LXZpZXcvc2lnbmF0dXJlLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTVFLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sMENBQTBDLENBQUM7Ozs7OztJQ0c3RCw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLCtCQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBTHRELDZCQUE2RDtJQUM3RCw4QkFBd0Q7SUFDdEQsOEJBQStDO0lBQzdDLDhCQUF3QjtJQUN4Qiw4QkFBOEQ7SUFDOUQsOEZBQXFGO0lBQ3ZGLGlCQUFNO0lBQ0YsOEJBQWlEO0lBQy9DLHlCQUF3RztJQUMxRyxpQkFBTTtJQUNWLGlCQUFNO0lBQ1YsaUJBQU07SUFFUiwwQkFBZTs7O0lBUkEsZUFBd0I7SUFBeEIsZ0RBQXdCO0lBR3RCLGVBQXdEO0lBQXhELHVHQUF3RDs7O0lBV25FLDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFGdEQsK0JBQW1DO0lBQy9CLDhCQUE4RDtJQUM5RCw2RkFBcUY7SUFDckYsZ0NBQWlDO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUM3QyxpQkFBTTs7O0lBRkssZUFBd0I7SUFBeEIsZ0RBQXdCOztBRFRyQyxNQUFNLE9BQU8sNEJBQTRCO0lBS3RDO1FBREQsZ0JBQVcsR0FBUSxJQUFJLENBQUM7SUFDUCxDQUFDO0lBRWpCLFFBQVE7UUFDUCxJQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFO1lBQ3BCLElBQUksQ0FBQyxXQUFXLEdBQUcsUUFBUSxDQUFDLHVCQUF1QixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDeEU7SUFDRixDQUFDOzt3R0FYUyw0QkFBNEI7K0VBQTVCLDRCQUE0QjtRQ1ZyQywrRkFhVztRQUdmLDhIQU1jOzs7UUF0QkssdUNBQW9CLGlCQUFBOzt1RkRVMUIsNEJBQTRCO2NBTnhDLFNBQVM7MkJBQ0UsMkJBQTJCLGlCQUdyQixpQkFBaUIsQ0FBQyxJQUFJO3NDQUc3QixNQUFNO2tCQUFkLEtBQUs7WUFDRyxPQUFPO2tCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgXyBmcm9tICdsb2Rhc2gnO1xuaW1wb3J0IHsgQXhvVXRpbHMgfSBmcm9tICcuLi8uLi8uLi8uLi9heG8tdXRpbHMvYXhvLXV0aWxzJztcbmltcG9ydCB7IFNpZ25hdHVyZSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9zaWduYXR1cmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItc2lnbmF0dXJlLXdpZGdldC12aWV3JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NpZ25hdHVyZS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NpZ25hdHVyZS13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uIDogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBTaWduYXR1cmVXaWRnZXRWaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgQElucHV0KCkgd2lkZ2V0OiBTaWduYXR1cmU7XG4gIEBJbnB1dCgpIGJhc2VVcmw6IHN0cmluZztcbiAgc2lnbmF0dXJlVmFsdWU6IHN0cmluZztcbiAgd2lkZ2V0VmFsdWU6IGFueSA9IG51bGw7XG4gICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gICBuZ09uSW5pdCgpOiB2b2lke1xuICAgIGlmKHRoaXMud2lkZ2V0LnZhbHVlICl7XG4gICAgICB0aGlzLndpZGdldFZhbHVlID0gQXhvVXRpbHMucmVtb3ZlU2xhc2hGcm9tSW1hZ2VVcmwodGhpcy53aWRnZXQudmFsdWUpO1xuICAgIH1cbiAgIH1cblxufVxuIiwiXG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIndpZGdldC52YWx1ZTsgZWxzZSBpc1dpZGdldFZhbHVlRW1wdHlcIiA+XG4gICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLWluZm9cIiBmeExheW91dEFsaWduPVwiZW5kIHN0YXJ0XCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiZmxleCBqdXN0aWZ5LWJldHdlZW4gdy1mdWxsIGdhcC00XCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGdhcC00XCI+XG4gICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19zaWduYXR1cmVcIj48L21hdC1pY29uPiBcbiAgICAgICAgPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgIDwvZGl2PlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJjYXB0dXJlLWRhdGEtY29udGFpbmVyIHRleHQtY2VudGVyXCIgPlxuICAgICAgICAgICAgPGltZyBbc3JjXT1cImJhc2VVcmwgKyAnL2ltYWdlcy9tZWRpYS9hcHBfZGF0YS8nICt3aWRnZXRWYWx1ZVwiIGNsYXNzPVwiY2FwdHVyZS1pbWFnZSByb3VuZGVkXCIgYWx0PVwiLi4uXCIgLz5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuICA8L2Rpdj5cblxuPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICBcbiAgICAgIFxuPG5nLXRlbXBsYXRlICNpc1dpZGdldFZhbHVlRW1wdHk+XG4gIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10aXRsZSBtLTBcIj5cbiAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19zaWduYXR1cmVcIj48L21hdC1pY29uPiBcbiAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gIDwvZGl2PlxuPC9uZy10ZW1wbGF0ZT4iXX0=
|