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,157 @@
|
|
|
1
|
+
import { AxoUtils } from './../../../axo-utils/axo-utils';
|
|
2
|
+
import { SectionType, MetaFieldsIdentifier } from './../../../forms/page/common/widget-enums';
|
|
3
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
4
|
+
import { Section } from '../../../forms/page/data-detail-view/section';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/common";
|
|
7
|
+
import * as i2 from "@angular/material/card";
|
|
8
|
+
import * as i3 from "@angular/flex-layout/flex";
|
|
9
|
+
import * as i4 from "@angular/flex-layout/extended";
|
|
10
|
+
function MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_ng_container_5_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementContainerStart(0);
|
|
12
|
+
i0.ɵɵtext(1);
|
|
13
|
+
i0.ɵɵelementContainerEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const sectionField_r2 = i0.ɵɵnextContext(2).$implicit;
|
|
16
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
17
|
+
i0.ɵɵadvance(1);
|
|
18
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r4.returnStatus(ctx_r4.taskDetailsMap[sectionField_r2.identifier][0]), " ");
|
|
19
|
+
} }
|
|
20
|
+
function MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_ng_container_6_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelementContainerStart(0);
|
|
22
|
+
i0.ɵɵtext(1);
|
|
23
|
+
i0.ɵɵelementContainerEnd();
|
|
24
|
+
} if (rf & 2) {
|
|
25
|
+
const sectionField_r2 = i0.ɵɵnextContext(2).$implicit;
|
|
26
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
27
|
+
i0.ɵɵadvance(1);
|
|
28
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r5.returnFormattedDateValue(ctx_r5.taskDetailsMap[sectionField_r2.identifier][0]), " ");
|
|
29
|
+
} }
|
|
30
|
+
function MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_ng_container_7_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelementContainerStart(0);
|
|
32
|
+
i0.ɵɵtext(1);
|
|
33
|
+
i0.ɵɵelementContainerEnd();
|
|
34
|
+
} if (rf & 2) {
|
|
35
|
+
const sectionField_r2 = i0.ɵɵnextContext(2).$implicit;
|
|
36
|
+
const ctx_r6 = i0.ɵɵnextContext(2);
|
|
37
|
+
i0.ɵɵadvance(1);
|
|
38
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r6.taskDetailsMap[sectionField_r2.identifier][0], " ");
|
|
39
|
+
} }
|
|
40
|
+
function MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
41
|
+
i0.ɵɵelementContainerStart(0, 6);
|
|
42
|
+
i0.ɵɵelementStart(1, "mat-card", 7);
|
|
43
|
+
i0.ɵɵelementStart(2, "div", 8);
|
|
44
|
+
i0.ɵɵtext(3);
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
i0.ɵɵelementStart(4, "div", 9);
|
|
47
|
+
i0.ɵɵtemplate(5, MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_ng_container_5_Template, 2, 1, "ng-container", 0);
|
|
48
|
+
i0.ɵɵtemplate(6, MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_ng_container_6_Template, 2, 1, "ng-container", 0);
|
|
49
|
+
i0.ɵɵtemplate(7, MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_ng_container_7_Template, 2, 1, "ng-container", 0);
|
|
50
|
+
i0.ɵɵelementEnd();
|
|
51
|
+
i0.ɵɵelementEnd();
|
|
52
|
+
i0.ɵɵelementContainerEnd();
|
|
53
|
+
} if (rf & 2) {
|
|
54
|
+
const sectionField_r2 = i0.ɵɵnextContext().$implicit;
|
|
55
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
56
|
+
i0.ɵɵadvance(1);
|
|
57
|
+
i0.ɵɵproperty("fxFlex.gt-md", sectionField_r2.colSpan == 100 ? 100 : sectionField_r2.colSpan == 50 ? 49.75 : 33);
|
|
58
|
+
i0.ɵɵadvance(2);
|
|
59
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r3.taskDetailsMap[sectionField_r2.identifier][1], " ");
|
|
60
|
+
i0.ɵɵadvance(2);
|
|
61
|
+
i0.ɵɵproperty("ngIf", sectionField_r2.identifier == ctx_r3.MetaFieldsIdentifier.status);
|
|
62
|
+
i0.ɵɵadvance(1);
|
|
63
|
+
i0.ɵɵproperty("ngIf", sectionField_r2.identifier == ctx_r3.MetaFieldsIdentifier.date);
|
|
64
|
+
i0.ɵɵadvance(1);
|
|
65
|
+
i0.ɵɵproperty("ngIf", sectionField_r2.identifier != ctx_r3.MetaFieldsIdentifier.status && sectionField_r2.identifier != ctx_r3.MetaFieldsIdentifier.date);
|
|
66
|
+
} }
|
|
67
|
+
function MetaSectionComponent_ng_container_0_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
68
|
+
i0.ɵɵelementContainerStart(0);
|
|
69
|
+
i0.ɵɵtemplate(1, MetaSectionComponent_ng_container_0_ng_container_4_ng_container_1_Template, 8, 5, "ng-container", 5);
|
|
70
|
+
i0.ɵɵelementContainerEnd();
|
|
71
|
+
} if (rf & 2) {
|
|
72
|
+
const sectionField_r2 = ctx.$implicit;
|
|
73
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
74
|
+
i0.ɵɵadvance(1);
|
|
75
|
+
i0.ɵɵproperty("ngIf", sectionField_r2.type === ctx_r1.sectionType.sectionField);
|
|
76
|
+
} }
|
|
77
|
+
const _c0 = function (a0) { return { "border-1 ": a0 }; };
|
|
78
|
+
function MetaSectionComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
79
|
+
i0.ɵɵelementContainerStart(0);
|
|
80
|
+
i0.ɵɵelementStart(1, "mat-card", 1);
|
|
81
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
82
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
83
|
+
i0.ɵɵtemplate(4, MetaSectionComponent_ng_container_0_ng_container_4_Template, 2, 1, "ng-container", 4);
|
|
84
|
+
i0.ɵɵelementEnd();
|
|
85
|
+
i0.ɵɵelementEnd();
|
|
86
|
+
i0.ɵɵelementEnd();
|
|
87
|
+
i0.ɵɵelementContainerEnd();
|
|
88
|
+
} if (rf & 2) {
|
|
89
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
90
|
+
i0.ɵɵadvance(1);
|
|
91
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c0, ctx_r0.section.showBorder));
|
|
92
|
+
i0.ɵɵadvance(3);
|
|
93
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.section == null ? null : ctx_r0.section.sections);
|
|
94
|
+
} }
|
|
95
|
+
export class MetaSectionComponent {
|
|
96
|
+
constructor() { }
|
|
97
|
+
/**
|
|
98
|
+
* section type enum
|
|
99
|
+
*/
|
|
100
|
+
get sectionType() {
|
|
101
|
+
return SectionType;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Meta Fields Identifier enum
|
|
105
|
+
*/
|
|
106
|
+
get MetaFieldsIdentifier() {
|
|
107
|
+
return MetaFieldsIdentifier;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* return the status
|
|
111
|
+
* @param status
|
|
112
|
+
* @returns
|
|
113
|
+
*/
|
|
114
|
+
returnStatus(status) {
|
|
115
|
+
switch (status) {
|
|
116
|
+
case 0:
|
|
117
|
+
return "To do";
|
|
118
|
+
case 1:
|
|
119
|
+
return "Delivered";
|
|
120
|
+
case 2:
|
|
121
|
+
return "Done";
|
|
122
|
+
case 3:
|
|
123
|
+
return "Rejected";
|
|
124
|
+
case 4:
|
|
125
|
+
return "Failed";
|
|
126
|
+
case 5:
|
|
127
|
+
return "Unassigned";
|
|
128
|
+
case 6:
|
|
129
|
+
return "Cancelled";
|
|
130
|
+
default:
|
|
131
|
+
return "-";
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* returns formatted date
|
|
136
|
+
* @param date
|
|
137
|
+
* @returns
|
|
138
|
+
*/
|
|
139
|
+
returnFormattedDateValue(date) {
|
|
140
|
+
return AxoUtils.formatDateFromUTCToLocal(date);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
MetaSectionComponent.ɵfac = function MetaSectionComponent_Factory(t) { return new (t || MetaSectionComponent)(); };
|
|
144
|
+
MetaSectionComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MetaSectionComponent, selectors: [["app-meta-section"]], inputs: { section: "section", taskDetailsMap: "taskDetailsMap" }, decls: 1, vars: 1, consts: [[4, "ngIf"], ["fxLayout", "row wrap", "fxLayoutAlign", "start center", "fxFlex", "100", 1, "flex-row-gap", "customscroll", 3, "ngClass"], [1, "task-details-container"], [1, "mat-card-wrapper"], [4, "ngFor", "ngForOf"], ["class", "border-box ", 4, "ngIf"], [1, "border-box"], ["fxLayout", "row wrap", "fxLayoutAlign", "start center", "fxFlex.lt-md", "100", 1, "flex-row-gap", "border-0", "m-0", 3, "fxFlex.gt-md"], [1, "task-detail-title"], [1, "task-detail-value"]], template: function MetaSectionComponent_Template(rf, ctx) { if (rf & 1) {
|
|
145
|
+
i0.ɵɵtemplate(0, MetaSectionComponent_ng_container_0_Template, 5, 4, "ng-container", 0);
|
|
146
|
+
} if (rf & 2) {
|
|
147
|
+
i0.ɵɵproperty("ngIf", ctx.section.sections.length);
|
|
148
|
+
} }, directives: [i1.NgIf, i2.MatCard, i3.DefaultLayoutDirective, i3.DefaultLayoutAlignDirective, i3.DefaultFlexDirective, i1.NgClass, i4.DefaultClassDirective, i1.NgForOf], styles: ["app-meta-section .task-details-container{border-radius:10px;column-gap:1rem;width:100%;display:flex}app-meta-section .task-details-container .mat-card-wrapper{flex-wrap:wrap;width:100%;column-gap:.5%;row-gap:1rem}app-meta-section .task-details-container .mat-card-wrapper mat-card{column-gap:.5%;flex-wrap:nowrap!important;column-gap:12px!important;min-width:auto!important;padding:0!important;align-items:center}app-meta-section .task-details-container .mat-card-wrapper mat-card .task-detail-title{color:#172b4d;font-family:Roboto,sans-serif;font-style:normal;font-weight:500;font-size:.8rem!important;width:20%;min-width:20%}app-meta-section .task-details-container .mat-card-wrapper mat-card .task-detail-value{color:#6c798f;font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:.8rem!important}app-meta-section .task-details-container .flex-row-gap{row-gap:25px}\n"], encapsulation: 2 });
|
|
149
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MetaSectionComponent, [{
|
|
150
|
+
type: Component,
|
|
151
|
+
args: [{ selector: 'app-meta-section', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"section.sections.length\">\n <mat-card [ngClass]=\"{ 'border-1 ': section.showBorder}\" fxLayout=\"row wrap\" fxLayoutAlign=\"start center\" fxFlex=\"100\" class=\"flex-row-gap customscroll\">\n <div class=\"task-details-container\">\n <div class=\"mat-card-wrapper\">\n <ng-container *ngFor=\"let sectionField of section?.sections\">\n <!-- if its a sectionField type section -->\n <ng-container *ngIf=\"sectionField.type === sectionType.sectionField\" class=\"border-box \">\n <!--\n this condition basically check the colspan and set the width and flex width accordingly (sectionField.colSpan==100?100:sectionField.colSpan==50?49.75:33)\n example:\n - if colSpan is 100% than width is 100%\n - if colSpan is 50% than width is 49.75% . Row will have 2 columns and the column gap can be 0.5%.\n - if colSpan is not 100% or 50% than width is 33% . Row will have 3 columns and the column gap can be 0.5%.\n -->\n <mat-card fxLayout=\"row wrap\" fxLayoutAlign=\"start center\" [fxFlex.gt-md]=\"sectionField.colSpan==100?100:sectionField.colSpan==50?49.75:33\" fxFlex.lt-md=\"100\" class=\"flex-row-gap border-0 m-0\">\n <!-- task detail title -->\n <div class=\"task-detail-title\">\n {{taskDetailsMap[sectionField.identifier][1]}}\n </div>\n <!-- task detail value -->\n <div class=\"task-detail-value\">\n <!-- return after converting integer status to stringified status -->\n <ng-container *ngIf=\"sectionField.identifier == MetaFieldsIdentifier.status\">\n {{returnStatus(taskDetailsMap[sectionField.identifier][0])}}\n </ng-container>\n\n <!-- returns the date after formatting -->\n <ng-container *ngIf=\"sectionField.identifier == MetaFieldsIdentifier.date\">\n {{returnFormattedDateValue(taskDetailsMap[sectionField.identifier][0])}}\n </ng-container>\n\n <ng-container *ngIf=\"sectionField.identifier != MetaFieldsIdentifier.status && sectionField.identifier != MetaFieldsIdentifier.date\">\n {{taskDetailsMap[sectionField.identifier][0]}}\n </ng-container>\n </div>\n </mat-card>\n </ng-container>\n </ng-container>\n </div>\n </div>\n </mat-card>\n</ng-container>\n", styles: ["app-meta-section .task-details-container{border-radius:10px;column-gap:1rem;width:100%;display:flex}app-meta-section .task-details-container .mat-card-wrapper{flex-wrap:wrap;width:100%;column-gap:.5%;row-gap:1rem}app-meta-section .task-details-container .mat-card-wrapper mat-card{column-gap:.5%;flex-wrap:nowrap!important;column-gap:12px!important;min-width:auto!important;padding:0!important;align-items:center}app-meta-section .task-details-container .mat-card-wrapper mat-card .task-detail-title{color:#172b4d;font-family:Roboto,sans-serif;font-style:normal;font-weight:500;font-size:.8rem!important;width:20%;min-width:20%}app-meta-section .task-details-container .mat-card-wrapper mat-card .task-detail-value{color:#6c798f;font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:.8rem!important}app-meta-section .task-details-container .flex-row-gap{row-gap:25px}\n"] }]
|
|
152
|
+
}], function () { return []; }, { section: [{
|
|
153
|
+
type: Input
|
|
154
|
+
}], taskDetailsMap: [{
|
|
155
|
+
type: Input
|
|
156
|
+
}] }); })();
|
|
157
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0YS1zZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvbWV0YS1zZWN0aW9uL21ldGEtc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L21ldGEtc2VjdGlvbi9tZXRhLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBRTFELE9BQU8sRUFBRSxXQUFXLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwyQ0FBMkMsQ0FBQztBQUM5RixPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7SUNrQm5DLDZCQUE2RTtJQUN6RSxZQUNKO0lBQUEsMEJBQWU7Ozs7SUFEWCxlQUNKO0lBREksMEdBQ0o7OztJQUdBLDZCQUEyRTtJQUN2RSxZQUNKO0lBQUEsMEJBQWU7Ozs7SUFEWCxlQUNKO0lBREksc0hBQ0o7OztJQUVBLDZCQUFxSTtJQUNqSSxZQUNKO0lBQUEsMEJBQWU7Ozs7SUFEWCxlQUNKO0lBREkscUZBQ0o7OztJQTNCaEIsZ0NBQTJGO0lBUW5GLG1DQUFvTTtJQUVoTSw4QkFBK0I7SUFDM0IsWUFDSjtJQUFBLGlCQUFNO0lBRU4sOEJBQStCO0lBRTNCLG9JQUVlO0lBR2Ysb0lBRWU7SUFFZixvSUFFZTtJQUNuQixpQkFBTTtJQUNWLGlCQUFXO0lBQ25CLDBCQUFlOzs7O0lBdEJzRCxlQUFnRjtJQUFoRixnSEFBZ0Y7SUFHckksZUFDSjtJQURJLHFGQUNKO0lBSW1CLGVBQTREO0lBQTVELHVGQUE0RDtJQUs1RCxlQUEwRDtJQUExRCxxRkFBMEQ7SUFJMUQsZUFBb0g7SUFBcEgseUpBQW9IOzs7SUEzQnZKLDZCQUE2RDtJQUV6RCxxSEE4QmU7SUFDbkIsMEJBQWU7Ozs7SUEvQkksZUFBb0Q7SUFBcEQsK0VBQW9EOzs7O0lBTnZGLDZCQUE4QztJQUMxQyxtQ0FBMEo7SUFDdEosOEJBQW9DO0lBQ2hDLDhCQUE4QjtJQUMxQixzR0FpQ2U7SUFDbkIsaUJBQU07SUFDVixpQkFBTTtJQUNWLGlCQUFXO0lBQ2YsMEJBQWU7OztJQXhDRCxlQUE4QztJQUE5QywrRUFBOEM7SUFHTCxlQUFvQjtJQUFwQixpRkFBb0I7O0FEUTNFLE1BQU0sT0FBTyxvQkFBb0I7SUFLN0IsZ0JBQWdCLENBQUM7SUFFakI7O09BRUc7SUFDSCxJQUFXLFdBQVc7UUFDbEIsT0FBTyxXQUFXLENBQUM7SUFDdkIsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBVyxvQkFBb0I7UUFDM0IsT0FBTyxvQkFBb0IsQ0FBQztJQUNoQyxDQUFDO0lBRUQ7Ozs7T0FJRztJQUNILFlBQVksQ0FBQyxNQUFrQjtRQUMzQixRQUFRLE1BQU0sRUFBRTtZQUNaLEtBQUssQ0FBQztnQkFDRixPQUFPLE9BQU8sQ0FBQTtZQUNsQixLQUFLLENBQUM7Z0JBQ0YsT0FBTyxXQUFXLENBQUE7WUFDdEIsS0FBSyxDQUFDO2dCQUNGLE9BQU8sTUFBTSxDQUFBO1lBQ2pCLEtBQUssQ0FBQztnQkFDRixPQUFPLFVBQVUsQ0FBQTtZQUNyQixLQUFLLENBQUM7Z0JBQ0YsT0FBTyxRQUFRLENBQUE7WUFDbkIsS0FBSyxDQUFDO2dCQUNGLE9BQU8sWUFBWSxDQUFBO1lBQ3ZCLEtBQUssQ0FBQztnQkFDRixPQUFPLFdBQVcsQ0FBQTtZQUN0QjtnQkFDSSxPQUFPLEdBQUcsQ0FBQztTQUNsQjtJQUNMLENBQUM7SUFFRDs7OztPQUlHO0lBQ0gsd0JBQXdCLENBQUMsSUFBWTtRQUNqQyxPQUFPLFFBQVEsQ0FBQyx3QkFBd0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNuRCxDQUFDOzt3RkF0RFEsb0JBQW9CO3VFQUFwQixvQkFBb0I7UUNaakMsdUZBeUNlOztRQXpDQSxrREFBNkI7O3VGRFkvQixvQkFBb0I7Y0FOaEMsU0FBUzsyQkFDSSxrQkFBa0IsaUJBR2IsaUJBQWlCLENBQUMsSUFBSTtzQ0FJNUIsT0FBTztrQkFBZixLQUFLO1lBQ0csY0FBYztrQkFBdEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEF4b1V0aWxzIH0gZnJvbSAnLi8uLi8uLi8uLi9heG8tdXRpbHMvYXhvLXV0aWxzJztcbmltcG9ydCB7IFRhc2tTdGF0dXMgfSBmcm9tICcuLy4uLy4uLy4uL2RhdGEtdmlldy1saWIvZGF0YS12aWV3L3Rhc2snO1xuaW1wb3J0IHsgU2VjdGlvblR5cGUsIE1ldGFGaWVsZHNJZGVudGlmaWVyIH0gZnJvbSAnLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL2NvbW1vbi93aWRnZXQtZW51bXMnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU2VjdGlvbiB9IGZyb20gJy4uLy4uLy4uL2Zvcm1zL3BhZ2UvZGF0YS1kZXRhaWwtdmlldy9zZWN0aW9uJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdhcHAtbWV0YS1zZWN0aW9uJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vbWV0YS1zZWN0aW9uLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9tZXRhLXNlY3Rpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBNZXRhU2VjdGlvbkNvbXBvbmVudCB7XG5cbiAgICBASW5wdXQoKSBzZWN0aW9uOiBTZWN0aW9uO1xuICAgIEBJbnB1dCgpIHRhc2tEZXRhaWxzTWFwOiBNYXA8c3RyaW5nLCBBcnJheTxzdHJpbmc+PjtcblxuICAgIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgICAvKipcbiAgICAgKiBzZWN0aW9uIHR5cGUgZW51bVxuICAgICAqL1xuICAgIHB1YmxpYyBnZXQgc2VjdGlvblR5cGUoKTogdHlwZW9mIFNlY3Rpb25UeXBlIHtcbiAgICAgICAgcmV0dXJuIFNlY3Rpb25UeXBlO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIE1ldGEgRmllbGRzIElkZW50aWZpZXIgZW51bVxuICAgICAqL1xuICAgIHB1YmxpYyBnZXQgTWV0YUZpZWxkc0lkZW50aWZpZXIoKTogdHlwZW9mIE1ldGFGaWVsZHNJZGVudGlmaWVyIHtcbiAgICAgICAgcmV0dXJuIE1ldGFGaWVsZHNJZGVudGlmaWVyO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIHJldHVybiB0aGUgc3RhdHVzXG4gICAgICogQHBhcmFtIHN0YXR1c1xuICAgICAqIEByZXR1cm5zXG4gICAgICovXG4gICAgcmV0dXJuU3RhdHVzKHN0YXR1czogVGFza1N0YXR1cykgOiBzdHJpbmcge1xuICAgICAgICBzd2l0Y2ggKHN0YXR1cykge1xuICAgICAgICAgICAgY2FzZSAwOlxuICAgICAgICAgICAgICAgIHJldHVybiBcIlRvIGRvXCJcbiAgICAgICAgICAgIGNhc2UgMTpcbiAgICAgICAgICAgICAgICByZXR1cm4gXCJEZWxpdmVyZWRcIlxuICAgICAgICAgICAgY2FzZSAyOlxuICAgICAgICAgICAgICAgIHJldHVybiBcIkRvbmVcIlxuICAgICAgICAgICAgY2FzZSAzOlxuICAgICAgICAgICAgICAgIHJldHVybiBcIlJlamVjdGVkXCJcbiAgICAgICAgICAgIGNhc2UgNDpcbiAgICAgICAgICAgICAgICByZXR1cm4gXCJGYWlsZWRcIlxuICAgICAgICAgICAgY2FzZSA1OlxuICAgICAgICAgICAgICAgIHJldHVybiBcIlVuYXNzaWduZWRcIlxuICAgICAgICAgICAgY2FzZSA2OlxuICAgICAgICAgICAgICAgIHJldHVybiBcIkNhbmNlbGxlZFwiXG4gICAgICAgICAgICBkZWZhdWx0OlxuICAgICAgICAgICAgICAgIHJldHVybiBcIi1cIjtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIC8qKlxuICAgICAqIHJldHVybnMgZm9ybWF0dGVkIGRhdGVcbiAgICAgKiBAcGFyYW0gZGF0ZVxuICAgICAqIEByZXR1cm5zXG4gICAgICovXG4gICAgcmV0dXJuRm9ybWF0dGVkRGF0ZVZhbHVlKGRhdGU6IHN0cmluZykgOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gQXhvVXRpbHMuZm9ybWF0RGF0ZUZyb21VVENUb0xvY2FsKGRhdGUpO1xuICAgIH1cbn1cbiIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJzZWN0aW9uLnNlY3Rpb25zLmxlbmd0aFwiPlxuICAgIDxtYXQtY2FyZCBbbmdDbGFzc109XCJ7ICdib3JkZXItMSAnOiBzZWN0aW9uLnNob3dCb3JkZXJ9XCIgZnhMYXlvdXQ9XCJyb3cgd3JhcFwiICBmeExheW91dEFsaWduPVwic3RhcnQgY2VudGVyXCIgZnhGbGV4PVwiMTAwXCIgY2xhc3M9XCJmbGV4LXJvdy1nYXAgY3VzdG9tc2Nyb2xsXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0YXNrLWRldGFpbHMtY29udGFpbmVyXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwibWF0LWNhcmQtd3JhcHBlclwiPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IHNlY3Rpb25GaWVsZCBvZiBzZWN0aW9uPy5zZWN0aW9uc1wiPlxuICAgICAgICAgICAgICAgICAgICA8IS0tIGlmIGl0cyBhIHNlY3Rpb25GaWVsZCB0eXBlIHNlY3Rpb24gLS0+XG4gICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJzZWN0aW9uRmllbGQudHlwZSA9PT0gc2VjdGlvblR5cGUuc2VjdGlvbkZpZWxkXCIgICBjbGFzcz1cImJvcmRlci1ib3ggXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGlzIGNvbmRpdGlvbiBiYXNpY2FsbHkgY2hlY2sgdGhlIGNvbHNwYW4gYW5kIHNldCB0aGUgd2lkdGggYW5kIGZsZXggd2lkdGggYWNjb3JkaW5nbHkgKHNlY3Rpb25GaWVsZC5jb2xTcGFuPT0xMDA/MTAwOnNlY3Rpb25GaWVsZC5jb2xTcGFuPT01MD80OS43NTozMylcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZXhhbXBsZTpcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgLSBpZiBjb2xTcGFuIGlzIDEwMCUgdGhhbiB3aWR0aCBpcyAxMDAlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC0gaWYgY29sU3BhbiBpcyA1MCUgdGhhbiB3aWR0aCBpcyA0OS43NSUgLiBSb3cgd2lsbCBoYXZlIDIgY29sdW1ucyBhbmQgdGhlIGNvbHVtbiBnYXAgY2FuIGJlIDAuNSUuXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC0gaWYgY29sU3BhbiBpcyBub3QgMTAwJSBvciA1MCUgdGhhbiB3aWR0aCBpcyAzMyUgLiBSb3cgd2lsbCBoYXZlIDMgY29sdW1ucyBhbmQgdGhlIGNvbHVtbiBnYXAgY2FuIGJlIDAuNSUuXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgLS0+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1jYXJkICBmeExheW91dD1cInJvdyB3cmFwXCIgIGZ4TGF5b3V0QWxpZ249XCJzdGFydCBjZW50ZXJcIiBbZnhGbGV4Lmd0LW1kXT1cInNlY3Rpb25GaWVsZC5jb2xTcGFuPT0xMDA/MTAwOnNlY3Rpb25GaWVsZC5jb2xTcGFuPT01MD80OS43NTozM1wiICBmeEZsZXgubHQtbWQ9XCIxMDBcIiBjbGFzcz1cImZsZXgtcm93LWdhcCBib3JkZXItMCBtLTBcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSB0YXNrIGRldGFpbCB0aXRsZSAtLT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRhc2stZGV0YWlsLXRpdGxlXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7e3Rhc2tEZXRhaWxzTWFwW3NlY3Rpb25GaWVsZC5pZGVudGlmaWVyXVsxXX19XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tIHRhc2sgZGV0YWlsIHZhbHVlIC0tPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidGFzay1kZXRhaWwtdmFsdWVcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gcmV0dXJuIGFmdGVyIGNvbnZlcnRpbmcgaW50ZWdlciBzdGF0dXMgdG8gc3RyaW5naWZpZWQgc3RhdHVzIC0tPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInNlY3Rpb25GaWVsZC5pZGVudGlmaWVyID09IE1ldGFGaWVsZHNJZGVudGlmaWVyLnN0YXR1c1wiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7cmV0dXJuU3RhdHVzKHRhc2tEZXRhaWxzTWFwW3NlY3Rpb25GaWVsZC5pZGVudGlmaWVyXVswXSl9fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gcmV0dXJucyB0aGUgZGF0ZSBhZnRlciBmb3JtYXR0aW5nIC0tPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInNlY3Rpb25GaWVsZC5pZGVudGlmaWVyID09IE1ldGFGaWVsZHNJZGVudGlmaWVyLmRhdGVcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7e3JldHVybkZvcm1hdHRlZERhdGVWYWx1ZSh0YXNrRGV0YWlsc01hcFtzZWN0aW9uRmllbGQuaWRlbnRpZmllcl1bMF0pfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwic2VjdGlvbkZpZWxkLmlkZW50aWZpZXIgIT0gTWV0YUZpZWxkc0lkZW50aWZpZXIuc3RhdHVzICYmIHNlY3Rpb25GaWVsZC5pZGVudGlmaWVyICE9IE1ldGFGaWVsZHNJZGVudGlmaWVyLmRhdGVcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7e3Rhc2tEZXRhaWxzTWFwW3NlY3Rpb25GaWVsZC5pZGVudGlmaWVyXVswXX19XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9tYXQtY2FyZD5cbiAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9tYXQtY2FyZD5cbjwvbmctY29udGFpbmVyPlxuIl19
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { Section } from '../../../forms/page/data-detail-view/section';
|
|
3
|
+
import { SectionType } from '../../../forms/page/common/widget-enums';
|
|
4
|
+
import { DetailViewType } from '../../../forms/page/common/detail-view-enums';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
function SectionComponent_ng_container_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
i0.ɵɵelementContainerStart(0, 3);
|
|
8
|
+
i0.ɵɵelement(1, "dynamic-data-view", 4);
|
|
9
|
+
i0.ɵɵelementContainerEnd();
|
|
10
|
+
} if (rf & 2) {
|
|
11
|
+
const sectionField_r1 = i0.ɵɵnextContext().$implicit;
|
|
12
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
13
|
+
i0.ɵɵadvance(1);
|
|
14
|
+
i0.ɵɵproperty("viewType", ctx_r2.detailViewType.SectionField)("fxFlex.gt-md", sectionField_r1.colSpan)("fxFlex.lt-md", 100)("sectionField", sectionField_r1)("baseUrl", ctx_r2.baseUrl)("formObjectId", ctx_r2.formObjectId)("axonatorX1Url", ctx_r2.axonatorX1Url);
|
|
15
|
+
} }
|
|
16
|
+
function SectionComponent_ng_container_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
17
|
+
i0.ɵɵelementContainerStart(0, 3);
|
|
18
|
+
i0.ɵɵelement(1, "dynamic-data-view", 5);
|
|
19
|
+
i0.ɵɵelementContainerEnd();
|
|
20
|
+
} if (rf & 2) {
|
|
21
|
+
const sectionField_r1 = i0.ɵɵnextContext().$implicit;
|
|
22
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
23
|
+
i0.ɵɵadvance(1);
|
|
24
|
+
i0.ɵɵproperty("viewType", ctx_r3.detailViewType.Section)("section", sectionField_r1)("baseUrl", ctx_r3.baseUrl)("axonatorX1Url", ctx_r3.axonatorX1Url)("formObjectId", ctx_r3.formObjectId);
|
|
25
|
+
} }
|
|
26
|
+
function SectionComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
27
|
+
i0.ɵɵelementContainerStart(0);
|
|
28
|
+
i0.ɵɵtemplate(1, SectionComponent_ng_container_1_ng_container_1_Template, 2, 7, "ng-container", 2);
|
|
29
|
+
i0.ɵɵtemplate(2, SectionComponent_ng_container_1_ng_container_2_Template, 2, 5, "ng-container", 2);
|
|
30
|
+
i0.ɵɵelementContainerEnd();
|
|
31
|
+
} if (rf & 2) {
|
|
32
|
+
const sectionField_r1 = ctx.$implicit;
|
|
33
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
34
|
+
i0.ɵɵadvance(1);
|
|
35
|
+
i0.ɵɵproperty("ngIf", sectionField_r1.type === ctx_r0.sectionType.sectionField);
|
|
36
|
+
i0.ɵɵadvance(1);
|
|
37
|
+
i0.ɵɵproperty("ngIf", sectionField_r1.type === ctx_r0.sectionType.section);
|
|
38
|
+
} }
|
|
39
|
+
const _c0 = function (a0) { return { "border-1 ": a0 }; };
|
|
40
|
+
export class SectionComponent {
|
|
41
|
+
constructor() {
|
|
42
|
+
this.sectionType = Object.assign({}, SectionType);
|
|
43
|
+
this.detailViewType = Object.assign({}, DetailViewType);
|
|
44
|
+
}
|
|
45
|
+
ngOnInit() {
|
|
46
|
+
this.section.isCollapsible = this.section.isCollapsible;
|
|
47
|
+
}
|
|
48
|
+
showBorder() {
|
|
49
|
+
this.section.showPrompt = !this.section?.showPrompt;
|
|
50
|
+
this.section.showBorder = !this.section?.showBorder;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
SectionComponent.ɵfac = function SectionComponent_Factory(t) { return new (t || SectionComponent)(); };
|
|
54
|
+
SectionComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SectionComponent, selectors: [["app-section"]], inputs: { section: "section", baseUrl: "baseUrl", formObjectId: "formObjectId", axonatorX1Url: "axonatorX1Url" }, decls: 2, vars: 4, consts: [["fxLayout", "row wrap", "fxLayoutAlign", "start center", "fxFlex", "100", 1, "flex-row-gap", "overflow-hidden", 3, "ngClass"], [4, "ngFor", "ngForOf"], ["class", "border-box", 4, "ngIf"], [1, "border-box"], [1, "flex-width", 3, "viewType", "fxFlex.gt-md", "fxFlex.lt-md", "sectionField", "baseUrl", "formObjectId", "axonatorX1Url"], ["fxFlex", "100", 1, "flex-width", 3, "viewType", "section", "baseUrl", "axonatorX1Url", "formObjectId"]], template: function SectionComponent_Template(rf, ctx) { if (rf & 1) {
|
|
55
|
+
i0.ɵɵelementStart(0, "mat-card", 0);
|
|
56
|
+
i0.ɵɵtemplate(1, SectionComponent_ng_container_1_Template, 3, 2, "ng-container", 1);
|
|
57
|
+
i0.ɵɵelementEnd();
|
|
58
|
+
} if (rf & 2) {
|
|
59
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c0, ctx.section.showBorder));
|
|
60
|
+
i0.ɵɵadvance(1);
|
|
61
|
+
i0.ɵɵproperty("ngForOf", ctx.section == null ? null : ctx.section.sections);
|
|
62
|
+
} }, styles: ["app-section .flex-row-gap{row-gap:25px}app-section mat-card{column-gap:.5%}@media screen and (max-width: 768px){app-section{padding-right:0}}\n"], encapsulation: 2 });
|
|
63
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SectionComponent, [{
|
|
64
|
+
type: Component,
|
|
65
|
+
args: [{ selector: 'app-section', encapsulation: ViewEncapsulation.None, template: "<mat-card [ngClass]=\"{ 'border-1 ': section.showBorder}\" fxLayout=\"row wrap\" fxLayoutAlign=\"start center\" fxFlex=\"100\" class=\"flex-row-gap overflow-hidden\">\n <ng-container *ngFor=\"let sectionField of section?.sections\">\n <ng-container *ngIf=\"sectionField.type === sectionType.sectionField\" class=\"border-box\">\n <dynamic-data-view [viewType]=\"detailViewType.SectionField\" [fxFlex.gt-md]=\"sectionField.colSpan\" [fxFlex.lt-md]=\"100\" [sectionField]= \"sectionField\" [baseUrl] =\"baseUrl\" [formObjectId] = \"formObjectId\" [axonatorX1Url] =\"axonatorX1Url\" class=\"flex-width\" ></dynamic-data-view>\n </ng-container>\n <ng-container *ngIf=\"sectionField.type === sectionType.section\" class=\"border-box\">\n <dynamic-data-view [viewType]=\"detailViewType.Section\" [section]= \"sectionField\" fxFlex=\"100\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\" [formObjectId] = \"formObjectId\" class=\"flex-width\"></dynamic-data-view>\n </ng-container>\n </ng-container>\n</mat-card>\n", styles: ["app-section .flex-row-gap{row-gap:25px}app-section mat-card{column-gap:.5%}@media screen and (max-width: 768px){app-section{padding-right:0}}\n"] }]
|
|
66
|
+
}], function () { return []; }, { section: [{
|
|
67
|
+
type: Input
|
|
68
|
+
}], baseUrl: [{
|
|
69
|
+
type: Input
|
|
70
|
+
}], formObjectId: [{
|
|
71
|
+
type: Input
|
|
72
|
+
}], axonatorX1Url: [{
|
|
73
|
+
type: Input
|
|
74
|
+
}] }); })();
|
|
75
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VjdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L3NlY3Rpb24vc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L3NlY3Rpb24vc2VjdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsT0FBTyxFQUFDLE1BQU0sOENBQThDLENBQUM7QUFDdEUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHlDQUF5QyxDQUFDO0FBQ3RFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSw4Q0FBOEMsQ0FBQzs7O0lDRHhFLGdDQUEwRjtJQUN4Rix1Q0FBeVI7SUFDM1IsMEJBQWU7Ozs7SUFEVyxlQUF3QztJQUF4Qyw2REFBd0MseUNBQUEscUJBQUEsaUNBQUEsMkJBQUEscUNBQUEsdUNBQUE7OztJQUVsRSxnQ0FBc0Y7SUFDcEYsdUNBQTZOO0lBQy9OLDBCQUFlOzs7O0lBRE0sZUFBbUM7SUFBbkMsd0RBQW1DLDRCQUFBLDJCQUFBLHVDQUFBLHFDQUFBOzs7SUFMMUQsNkJBQTZEO0lBQzNELGtHQUVlO0lBQ2Ysa0dBRWU7SUFDakIsMEJBQWU7Ozs7SUFORSxlQUFvRDtJQUFwRCwrRUFBb0Q7SUFHbkQsZUFBK0M7SUFBL0MsMEVBQStDOzs7QURNckUsTUFBTSxPQUFPLGdCQUFnQjtJQVMzQjtRQUpBLGdCQUFXLEdBQU0sTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUMsV0FBVyxDQUFDLENBQUM7UUFDL0MsbUJBQWMsR0FBTSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBQyxjQUFjLENBQUMsQ0FBQztJQUdyQyxDQUFDO0lBRWpCLFFBQVE7UUFDTixJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQztJQUMxRCxDQUFDO0lBRUQsVUFBVTtRQUNSLElBQUksQ0FBQyxPQUFPLENBQUMsVUFBVSxHQUFHLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxVQUFVLENBQUM7UUFDcEQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxVQUFVLEdBQUcsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQztJQUN0RCxDQUFDOztnRkFsQlUsZ0JBQWdCO21FQUFoQixnQkFBZ0I7UUNYN0IsbUNBQTZKO1FBQ3pKLG1GQU9lO1FBQ25CLGlCQUFXOztRQVRELDRFQUE4QztRQUNiLGVBQW9CO1FBQXBCLDJFQUFvQjs7dUZEVWxELGdCQUFnQjtjQU41QixTQUFTOzJCQUNFLGFBQWEsaUJBR1AsaUJBQWlCLENBQUMsSUFBSTtzQ0FJN0IsT0FBTztrQkFBZixLQUFLO1lBQ0csT0FBTztrQkFBZixLQUFLO1lBQ0csWUFBWTtrQkFBcEIsS0FBSztZQUlHLGFBQWE7a0JBQXJCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTZWN0aW9ufSBmcm9tICcuLi8uLi8uLi9mb3Jtcy9wYWdlL2RhdGEtZGV0YWlsLXZpZXcvc2VjdGlvbic7XG5pbXBvcnQgeyBTZWN0aW9uVHlwZSB9IGZyb20gJy4uLy4uLy4uL2Zvcm1zL3BhZ2UvY29tbW9uL3dpZGdldC1lbnVtcyc7XG5pbXBvcnQgeyBEZXRhaWxWaWV3VHlwZSB9IGZyb20gJy4uLy4uLy4uL2Zvcm1zL3BhZ2UvY29tbW9uL2RldGFpbC12aWV3LWVudW1zJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXNlY3Rpb24nLFxuICB0ZW1wbGF0ZVVybDogJy4vc2VjdGlvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlY3Rpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbiA6IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgU2VjdGlvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQElucHV0KCkgc2VjdGlvbjogU2VjdGlvbjtcbiAgQElucHV0KCkgYmFzZVVybCA6IHN0cmluZztcbiAgQElucHV0KCkgZm9ybU9iamVjdElkIDogc3RyaW5nO1xuICBzZWN0aW9uVHlwZTogYW55PU9iamVjdC5hc3NpZ24oe30sU2VjdGlvblR5cGUpO1xuICBkZXRhaWxWaWV3VHlwZTogYW55PU9iamVjdC5hc3NpZ24oe30sRGV0YWlsVmlld1R5cGUpO1xuXG4gIEBJbnB1dCgpIGF4b25hdG9yWDFVcmwgOiBzdHJpbmc7XG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5zZWN0aW9uLmlzQ29sbGFwc2libGUgPSB0aGlzLnNlY3Rpb24uaXNDb2xsYXBzaWJsZTtcbiAgfVxuXG4gIHNob3dCb3JkZXIoKXtcbiAgICB0aGlzLnNlY3Rpb24uc2hvd1Byb21wdCA9ICF0aGlzLnNlY3Rpb24/LnNob3dQcm9tcHQ7XG4gICAgdGhpcy5zZWN0aW9uLnNob3dCb3JkZXIgPSAhdGhpcy5zZWN0aW9uPy5zaG93Qm9yZGVyO1xuICB9XG5cbn1cbiIsIjxtYXQtY2FyZCBbbmdDbGFzc109XCJ7ICdib3JkZXItMSAnOiBzZWN0aW9uLnNob3dCb3JkZXJ9XCIgZnhMYXlvdXQ9XCJyb3cgd3JhcFwiICBmeExheW91dEFsaWduPVwic3RhcnQgY2VudGVyXCIgZnhGbGV4PVwiMTAwXCIgY2xhc3M9XCJmbGV4LXJvdy1nYXAgb3ZlcmZsb3ctaGlkZGVuXCI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgc2VjdGlvbkZpZWxkIG9mIHNlY3Rpb24/LnNlY3Rpb25zXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwic2VjdGlvbkZpZWxkLnR5cGUgPT09IHNlY3Rpb25UeXBlLnNlY3Rpb25GaWVsZFwiICAgY2xhc3M9XCJib3JkZXItYm94XCI+XG4gICAgICAgIDxkeW5hbWljLWRhdGEtdmlldyAgICAgIFt2aWV3VHlwZV09XCJkZXRhaWxWaWV3VHlwZS5TZWN0aW9uRmllbGRcIiBbZnhGbGV4Lmd0LW1kXT1cInNlY3Rpb25GaWVsZC5jb2xTcGFuXCIgW2Z4RmxleC5sdC1tZF09XCIxMDBcIiBbc2VjdGlvbkZpZWxkXT0gXCJzZWN0aW9uRmllbGRcIiBbYmFzZVVybF0gPVwiYmFzZVVybFwiIFtmb3JtT2JqZWN0SWRdID0gXCJmb3JtT2JqZWN0SWRcIiBbYXhvbmF0b3JYMVVybF0gPVwiYXhvbmF0b3JYMVVybFwiIGNsYXNzPVwiZmxleC13aWR0aFwiID48L2R5bmFtaWMtZGF0YS12aWV3PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8bmctY29udGFpbmVyICAqbmdJZj1cInNlY3Rpb25GaWVsZC50eXBlID09PSBzZWN0aW9uVHlwZS5zZWN0aW9uXCIgICBjbGFzcz1cImJvcmRlci1ib3hcIj5cbiAgICAgICAgPGR5bmFtaWMtZGF0YS12aWV3IFt2aWV3VHlwZV09XCJkZXRhaWxWaWV3VHlwZS5TZWN0aW9uXCIgIFtzZWN0aW9uXT0gXCJzZWN0aW9uRmllbGRcIiBmeEZsZXg9XCIxMDBcIiBbYmFzZVVybF0gPVwiYmFzZVVybFwiIFtheG9uYXRvclgxVXJsXSA9XCJheG9uYXRvclgxVXJsXCIgW2Zvcm1PYmplY3RJZF0gPSBcImZvcm1PYmplY3RJZFwiICBjbGFzcz1cImZsZXgtd2lkdGhcIj48L2R5bmFtaWMtZGF0YS12aWV3PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgPC9uZy1jb250YWluZXI+XG48L21hdC1jYXJkPlxuIl19
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { SectionField } from '../../../forms/page/data-detail-view/section-field';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class SectionFieldComponent {
|
|
5
|
+
constructor() { }
|
|
6
|
+
ngOnInit() {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
SectionFieldComponent.ɵfac = function SectionFieldComponent_Factory(t) { return new (t || SectionFieldComponent)(); };
|
|
10
|
+
SectionFieldComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SectionFieldComponent, selectors: [["app-section-field"]], inputs: { sectionField: "sectionField", baseUrl: "baseUrl", axonatorX1Url: "axonatorX1Url", formObjectId: "formObjectId" }, decls: 2, vars: 4, consts: [[1, "column1"], [3, "section", "formObjectId", "baseUrl", "axonatorX1Url"]], template: function SectionFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
12
|
+
i0.ɵɵelement(1, "app-form-object-widgets-view", 1);
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
i0.ɵɵadvance(1);
|
|
16
|
+
i0.ɵɵproperty("section", ctx.sectionField)("formObjectId", ctx.formObjectId)("baseUrl", ctx.baseUrl)("axonatorX1Url", ctx.axonatorX1Url);
|
|
17
|
+
} }, styles: [""] });
|
|
18
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SectionFieldComponent, [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'app-section-field', template: "<div class=\"column1\">\n <app-form-object-widgets-view [section]= \"sectionField\" [formObjectId] = \"formObjectId\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\" ></app-form-object-widgets-view>\n</div>\n\n", styles: [""] }]
|
|
21
|
+
}], function () { return []; }, { sectionField: [{
|
|
22
|
+
type: Input
|
|
23
|
+
}], baseUrl: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], axonatorX1Url: [{
|
|
26
|
+
type: Input
|
|
27
|
+
}], formObjectId: [{
|
|
28
|
+
type: Input
|
|
29
|
+
}] }); })();
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VjdGlvbi1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L3NlY3Rpb24tZmllbGQvc2VjdGlvbi1maWVsZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L3NlY3Rpb24tZmllbGQvc2VjdGlvbi1maWVsZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUN6RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sb0RBQW9ELENBQUM7O0FBU2xGLE1BQU0sT0FBTyxxQkFBcUI7SUFNaEMsZ0JBQWdCLENBQUM7SUFFakIsUUFBUTtJQUNSLENBQUM7OzBGQVRVLHFCQUFxQjt3RUFBckIscUJBQXFCO1FDVmxDLDhCQUFxQjtRQUNuQixrREFBK0s7UUFDakwsaUJBQU07O1FBRDBCLGVBQXlCO1FBQXpCLDBDQUF5QixrQ0FBQSx3QkFBQSxvQ0FBQTs7dUZEUzVDLHFCQUFxQjtjQUxqQyxTQUFTOzJCQUNFLG1CQUFtQjtzQ0FLcEIsWUFBWTtrQkFBcEIsS0FBSztZQUNHLE9BQU87a0JBQWYsS0FBSztZQUNHLGFBQWE7a0JBQXJCLEtBQUs7WUFDRyxZQUFZO2tCQUFwQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTZWN0aW9uRmllbGQgfSBmcm9tICcuLi8uLi8uLi9mb3Jtcy9wYWdlL2RhdGEtZGV0YWlsLXZpZXcvc2VjdGlvbi1maWVsZCc7XG5cblxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtc2VjdGlvbi1maWVsZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWN0aW9uLWZpZWxkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vc2VjdGlvbi1maWVsZC5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFNlY3Rpb25GaWVsZENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIEBJbnB1dCgpIHNlY3Rpb25GaWVsZDogU2VjdGlvbkZpZWxkO1xuICBASW5wdXQoKSBiYXNlVXJsIDogc3RyaW5nO1xuICBASW5wdXQoKSBheG9uYXRvclgxVXJsIDogc3RyaW5nO1xuICBASW5wdXQoKSBmb3JtT2JqZWN0SWQgOiBzdHJpbmc7XG4gIFxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCkge1xuICB9XG5cbn1cbiIsIjxkaXYgY2xhc3M9XCJjb2x1bW4xXCI+XG4gIDxhcHAtZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3IFtzZWN0aW9uXT0gXCJzZWN0aW9uRmllbGRcIiBbZm9ybU9iamVjdElkXSA9IFwiZm9ybU9iamVjdElkXCIgW2Jhc2VVcmxdID1cImJhc2VVcmxcIiBbYXhvbmF0b3JYMVVybF0gPVwiYXhvbmF0b3JYMVVybFwiICA+PC9hcHAtZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3PlxuPC9kaXY+XG5cbiJdfQ==
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { Section } from '../../../forms/page/data-detail-view/section';
|
|
3
|
+
import { SectionType } from '../../../forms/page/common/widget-enums';
|
|
4
|
+
import { DetailViewType } from '../../../forms/page/common/detail-view-enums';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/common";
|
|
7
|
+
import * as i2 from "@angular/material/form-field";
|
|
8
|
+
import * as i3 from "../section/section.component";
|
|
9
|
+
import * as i4 from "@angular/material/expansion";
|
|
10
|
+
function SectionViewComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
12
|
+
i0.ɵɵelementStart(1, "mat-label");
|
|
13
|
+
i0.ɵɵtext(2);
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
} if (rf & 2) {
|
|
17
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
18
|
+
i0.ɵɵadvance(2);
|
|
19
|
+
i0.ɵɵtextInterpolate(ctx_r2.section.title);
|
|
20
|
+
} }
|
|
21
|
+
function SectionViewComponent_div_0_ng_container_3_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementContainerStart(0);
|
|
23
|
+
i0.ɵɵelement(1, "app-section", 4);
|
|
24
|
+
i0.ɵɵelementContainerEnd();
|
|
25
|
+
} if (rf & 2) {
|
|
26
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
27
|
+
i0.ɵɵadvance(1);
|
|
28
|
+
i0.ɵɵproperty("section", ctx_r3.section)("formObjectId", ctx_r3.formObjectId)("baseUrl", ctx_r3.baseUrl)("axonatorX1Url", ctx_r3.axonatorX1Url);
|
|
29
|
+
} }
|
|
30
|
+
function SectionViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelementStart(0, "div");
|
|
32
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
33
|
+
i0.ɵɵtemplate(2, SectionViewComponent_div_0_div_2_Template, 3, 1, "div", 2);
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
i0.ɵɵtemplate(3, SectionViewComponent_div_0_ng_container_3_Template, 2, 4, "ng-container", 0);
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
} if (rf & 2) {
|
|
38
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
39
|
+
i0.ɵɵadvance(2);
|
|
40
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
41
|
+
i0.ɵɵadvance(1);
|
|
42
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.sections.length);
|
|
43
|
+
} }
|
|
44
|
+
function SectionViewComponent_mat_accordion_1_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
45
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
46
|
+
i0.ɵɵelementStart(1, "mat-label");
|
|
47
|
+
i0.ɵɵtext(2);
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
} if (rf & 2) {
|
|
51
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
52
|
+
i0.ɵɵadvance(2);
|
|
53
|
+
i0.ɵɵtextInterpolate(ctx_r4.section.title);
|
|
54
|
+
} }
|
|
55
|
+
function SectionViewComponent_mat_accordion_1_Template(rf, ctx) { if (rf & 1) {
|
|
56
|
+
i0.ɵɵelementStart(0, "mat-accordion");
|
|
57
|
+
i0.ɵɵelementStart(1, "mat-expansion-panel");
|
|
58
|
+
i0.ɵɵelementStart(2, "mat-expansion-panel-header");
|
|
59
|
+
i0.ɵɵelementStart(3, "mat-panel-title");
|
|
60
|
+
i0.ɵɵelementStart(4, "div", 1);
|
|
61
|
+
i0.ɵɵtemplate(5, SectionViewComponent_mat_accordion_1_div_5_Template, 3, 1, "div", 2);
|
|
62
|
+
i0.ɵɵelementEnd();
|
|
63
|
+
i0.ɵɵelementEnd();
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵelement(6, "app-section", 4);
|
|
66
|
+
i0.ɵɵelementEnd();
|
|
67
|
+
i0.ɵɵelement(7, "mat-accordion");
|
|
68
|
+
i0.ɵɵelementEnd();
|
|
69
|
+
} if (rf & 2) {
|
|
70
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
71
|
+
i0.ɵɵadvance(5);
|
|
72
|
+
i0.ɵɵproperty("ngIf", ctx_r1.section.showPrompt);
|
|
73
|
+
i0.ɵɵadvance(1);
|
|
74
|
+
i0.ɵɵproperty("section", ctx_r1.section)("formObjectId", ctx_r1.formObjectId)("baseUrl", ctx_r1.baseUrl)("axonatorX1Url", ctx_r1.axonatorX1Url);
|
|
75
|
+
} }
|
|
76
|
+
export class SectionViewComponent {
|
|
77
|
+
constructor() {
|
|
78
|
+
this.sectionType = Object.assign({}, SectionType);
|
|
79
|
+
this.detailViewType = Object.assign({}, DetailViewType);
|
|
80
|
+
}
|
|
81
|
+
ngOnInit() {
|
|
82
|
+
this.section.isCollapsible = this.section.isCollapsible;
|
|
83
|
+
}
|
|
84
|
+
showBorder() {
|
|
85
|
+
this.section.showPrompt = !this.section?.showPrompt;
|
|
86
|
+
this.section.showBorder = !this.section?.showBorder;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
SectionViewComponent.ɵfac = function SectionViewComponent_Factory(t) { return new (t || SectionViewComponent)(); };
|
|
90
|
+
SectionViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SectionViewComponent, selectors: [["app-section-view"]], inputs: { section: "section", baseUrl: "baseUrl", formObjectId: "formObjectId", axonatorX1Url: "axonatorX1Url" }, decls: 2, vars: 2, consts: [[4, "ngIf"], [1, "data-detail"], ["class", "data-detail-title flex text-sm", 4, "ngIf"], [1, "data-detail-title", "flex", "text-sm"], [3, "section", "formObjectId", "baseUrl", "axonatorX1Url"]], template: function SectionViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
91
|
+
i0.ɵɵtemplate(0, SectionViewComponent_div_0_Template, 4, 2, "div", 0);
|
|
92
|
+
i0.ɵɵtemplate(1, SectionViewComponent_mat_accordion_1_Template, 8, 5, "mat-accordion", 0);
|
|
93
|
+
} if (rf & 2) {
|
|
94
|
+
i0.ɵɵproperty("ngIf", !ctx.section.isCollapsible);
|
|
95
|
+
i0.ɵɵadvance(1);
|
|
96
|
+
i0.ɵɵproperty("ngIf", ctx.section.isCollapsible);
|
|
97
|
+
} }, directives: [i1.NgIf, i2.MatLabel, i3.SectionComponent, i4.MatAccordion, i4.MatExpansionPanel, i4.MatExpansionPanelHeader, i4.MatExpansionPanelTitle], styles: [""] });
|
|
98
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SectionViewComponent, [{
|
|
99
|
+
type: Component,
|
|
100
|
+
args: [{ selector: 'app-section-view', template: "\n<div *ngIf=\"!section.isCollapsible\" >\n <div class=\"data-detail\">\n <div class=\"data-detail-title flex text-sm\" *ngIf=\"section.showPrompt\">\n <mat-label>{{section.title}}</mat-label>\n </div>\n </div>\n <ng-container *ngIf=\"section.sections.length\">\n <app-section [section]=\"section\" [formObjectId] = \"formObjectId\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\"></app-section>\n </ng-container>\n</div>\n<mat-accordion *ngIf=\"section.isCollapsible\">\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>\n\n <div class=\"data-detail\">\n <div class=\"data-detail-title flex text-sm\" *ngIf=\"section.showPrompt\">\n <mat-label>{{section.title}}</mat-label>\n </div>\n </div>\n </mat-panel-title>\n </mat-expansion-panel-header>\n\n <app-section [section]=\"section\" [formObjectId] = \"formObjectId\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\"></app-section>\n </mat-expansion-panel>\n<mat-accordion>\n\n", styles: [""] }]
|
|
101
|
+
}], function () { return []; }, { section: [{
|
|
102
|
+
type: Input
|
|
103
|
+
}], baseUrl: [{
|
|
104
|
+
type: Input
|
|
105
|
+
}], formObjectId: [{
|
|
106
|
+
type: Input
|
|
107
|
+
}], axonatorX1Url: [{
|
|
108
|
+
type: Input
|
|
109
|
+
}] }); })();
|
|
110
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VjdGlvbi12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvc2VjdGlvbi12aWV3L3NlY3Rpb24tdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L3NlY3Rpb24tdmlldy9zZWN0aW9uLXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDekQsT0FBTyxFQUFFLE9BQU8sRUFBQyxNQUFNLDhDQUE4QyxDQUFDO0FBQ3RFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUN0RSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7SUNBdEUsOEJBQXVFO0lBQ25FLGlDQUFXO0lBQUEsWUFBaUI7SUFBQSxpQkFBWTtJQUM1QyxpQkFBTTs7O0lBRFMsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFHcEMsNkJBQThDO0lBQzFDLGlDQUFzSTtJQUMxSSwwQkFBZTs7O0lBREcsZUFBbUI7SUFBbkIsd0NBQW1CLHFDQUFBLDJCQUFBLHVDQUFBOzs7SUFQekMsMkJBQXFDO0lBQ2pDLDhCQUF5QjtJQUNyQiwyRUFFTTtJQUNWLGlCQUFNO0lBQ04sNkZBRWU7SUFDbkIsaUJBQU07OztJQVArQyxlQUF3QjtJQUF4QixnREFBd0I7SUFJMUQsZUFBNkI7SUFBN0IscURBQTZCOzs7SUFVNUIsOEJBQXVFO0lBQ25FLGlDQUFXO0lBQUEsWUFBaUI7SUFBQSxpQkFBWTtJQUM1QyxpQkFBTTs7O0lBRFMsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFQcEQscUNBQTZDO0lBQ3pDLDJDQUFxQjtJQUNqQixrREFBNEI7SUFDeEIsdUNBQWlCO0lBRWIsOEJBQXlCO0lBQ3JCLHFGQUVNO0lBQ1YsaUJBQU07SUFDVixpQkFBa0I7SUFDdEIsaUJBQTZCO0lBRTdCLGlDQUFxSTtJQUN6SSxpQkFBc0I7SUFDMUIsZ0NBQWU7SUFmZixpQkFBNkM7OztJQU1vQixlQUF3QjtJQUF4QixnREFBd0I7SUFPcEUsZUFBbUI7SUFBbkIsd0NBQW1CLHFDQUFBLDJCQUFBLHVDQUFBOztBRGR4QyxNQUFNLE9BQU8sb0JBQW9CO0lBUy9CO1FBSkEsZ0JBQVcsR0FBTSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBQyxXQUFXLENBQUMsQ0FBQztRQUMvQyxtQkFBYyxHQUFNLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFDLGNBQWMsQ0FBQyxDQUFDO0lBR3JDLENBQUM7SUFFakIsUUFBUTtRQUNOLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDO0lBQzFELENBQUM7SUFFRCxVQUFVO1FBQ1IsSUFBSSxDQUFDLE9BQU8sQ0FBQyxVQUFVLEdBQUcsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQztRQUNwRCxJQUFJLENBQUMsT0FBTyxDQUFDLFVBQVUsR0FBRyxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsVUFBVSxDQUFDO0lBQ3RELENBQUM7O3dGQWxCVSxvQkFBb0I7dUVBQXBCLG9CQUFvQjtRQ1RqQyxxRUFTTTtRQUNOLHlGQUE2Qzs7UUFWdkMsaURBQTRCO1FBVWxCLGVBQTJCO1FBQTNCLGdEQUEyQjs7dUZERDlCLG9CQUFvQjtjQUxoQyxTQUFTOzJCQUNFLGtCQUFrQjtzQ0FNbkIsT0FBTztrQkFBZixLQUFLO1lBQ0csT0FBTztrQkFBZixLQUFLO1lBQ0csWUFBWTtrQkFBcEIsS0FBSztZQUlHLGFBQWE7a0JBQXJCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNlY3Rpb259IGZyb20gJy4uLy4uLy4uL2Zvcm1zL3BhZ2UvZGF0YS1kZXRhaWwtdmlldy9zZWN0aW9uJztcbmltcG9ydCB7IFNlY3Rpb25UeXBlIH0gZnJvbSAnLi4vLi4vLi4vZm9ybXMvcGFnZS9jb21tb24vd2lkZ2V0LWVudW1zJztcbmltcG9ydCB7IERldGFpbFZpZXdUeXBlIH0gZnJvbSAnLi4vLi4vLi4vZm9ybXMvcGFnZS9jb21tb24vZGV0YWlsLXZpZXctZW51bXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtc2VjdGlvbi12aWV3JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlY3Rpb24tdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlY3Rpb24tdmlldy5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFNlY3Rpb25WaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBASW5wdXQoKSBzZWN0aW9uOiBTZWN0aW9uO1xuICBASW5wdXQoKSBiYXNlVXJsIDogc3RyaW5nO1xuICBASW5wdXQoKSBmb3JtT2JqZWN0SWQgOiBzdHJpbmc7XG4gIHNlY3Rpb25UeXBlOiBhbnk9T2JqZWN0LmFzc2lnbih7fSxTZWN0aW9uVHlwZSk7XG4gIGRldGFpbFZpZXdUeXBlOiBhbnk9T2JqZWN0LmFzc2lnbih7fSxEZXRhaWxWaWV3VHlwZSk7XG5cbiAgQElucHV0KCkgYXhvbmF0b3JYMVVybCA6IHN0cmluZztcbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLnNlY3Rpb24uaXNDb2xsYXBzaWJsZSA9IHRoaXMuc2VjdGlvbi5pc0NvbGxhcHNpYmxlO1xuICB9XG5cbiAgc2hvd0JvcmRlcigpe1xuICAgIHRoaXMuc2VjdGlvbi5zaG93UHJvbXB0ID0gIXRoaXMuc2VjdGlvbj8uc2hvd1Byb21wdDtcbiAgICB0aGlzLnNlY3Rpb24uc2hvd0JvcmRlciA9ICF0aGlzLnNlY3Rpb24/LnNob3dCb3JkZXI7XG4gIH1cblxufVxuIiwiXG48ZGl2ICpuZ0lmPVwiIXNlY3Rpb24uaXNDb2xsYXBzaWJsZVwiID5cbiAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWxcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+XG4gICAgICAgICAgICA8bWF0LWxhYmVsPnt7c2VjdGlvbi50aXRsZX19PC9tYXQtbGFiZWw+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJzZWN0aW9uLnNlY3Rpb25zLmxlbmd0aFwiPlxuICAgICAgICA8YXBwLXNlY3Rpb24gIFtzZWN0aW9uXT1cInNlY3Rpb25cIiBbZm9ybU9iamVjdElkXSA9IFwiZm9ybU9iamVjdElkXCIgW2Jhc2VVcmxdID1cImJhc2VVcmxcIiBbYXhvbmF0b3JYMVVybF0gPVwiYXhvbmF0b3JYMVVybFwiPjwvYXBwLXNlY3Rpb24+XG4gICAgPC9uZy1jb250YWluZXI+XG48L2Rpdj5cbjxtYXQtYWNjb3JkaW9uICpuZ0lmPVwic2VjdGlvbi5pc0NvbGxhcHNpYmxlXCI+XG4gICAgPG1hdC1leHBhbnNpb24tcGFuZWw+XG4gICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cbiAgICAgICAgICAgIDxtYXQtcGFuZWwtdGl0bGU+XG5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWxcIj5cbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bWF0LWxhYmVsPnt7c2VjdGlvbi50aXRsZX19PC9tYXQtbGFiZWw+XG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9tYXQtcGFuZWwtdGl0bGU+XG4gICAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbC1oZWFkZXI+XG5cbiAgICAgICAgPGFwcC1zZWN0aW9uIFtzZWN0aW9uXT1cInNlY3Rpb25cIiBbZm9ybU9iamVjdElkXSA9IFwiZm9ybU9iamVjdElkXCIgW2Jhc2VVcmxdID1cImJhc2VVcmxcIiBbYXhvbmF0b3JYMVVybF0gPVwiYXhvbmF0b3JYMVVybFwiPjwvYXBwLXNlY3Rpb24+XG4gICAgPC9tYXQtZXhwYW5zaW9uLXBhbmVsPlxuPG1hdC1hY2NvcmRpb24+XG5cbiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto';
|
|
2
|
+
export * from './form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvRkFBb0YsQ0FBQTtBQUNsRyxjQUFjLDBIQUEwSCxDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvaW1hZ2Utd2lkZ2V0LXZpZXcvaW1hZ2UtYW5ub3RhdGlvbi1kYXRhLWR0bydcbmV4cG9ydCAqIGZyb20gJy4vZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2ltYWdlLXdpZGdldC12aWV3L2ltYWdlLXdpZGdldC1saWdodGJveC12aWV3L2ltYWdlLXdpZGdldC1saWdodGJveC12aWV3LmNvbXBvbmVudCciXX0=
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Injectable } from '@angular/core';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/common/http";
|
|
6
|
+
export class FormPermissionService {
|
|
7
|
+
constructor(_httpClient) {
|
|
8
|
+
this._httpClient = _httpClient;
|
|
9
|
+
this.visibleFormsMap = new Map();
|
|
10
|
+
this.formList = new BehaviorSubject(null);
|
|
11
|
+
this._visibleForms = new BehaviorSubject(null);
|
|
12
|
+
this.isChildForm = false;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Getter for visible forms
|
|
16
|
+
*/
|
|
17
|
+
get visibleForms$() {
|
|
18
|
+
return this._visibleForms.asObservable();
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Getter for formList
|
|
22
|
+
*/
|
|
23
|
+
get formsList$() {
|
|
24
|
+
return this.formList.asObservable();
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* setter for formList
|
|
28
|
+
*/
|
|
29
|
+
set formLists(formList) {
|
|
30
|
+
this.formList.next(formList);
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Get visible form list by the app-version id to show only visible forms on container
|
|
34
|
+
*
|
|
35
|
+
* @param appVersionId
|
|
36
|
+
* @returns
|
|
37
|
+
*/
|
|
38
|
+
getVisibleFormList(appVersionId, axonatorX1Url) {
|
|
39
|
+
const formData = new FormData();
|
|
40
|
+
formData.append('appversion', appVersionId);
|
|
41
|
+
formData.append('fetch_asset_and_tracking_forms', 'true');
|
|
42
|
+
formData.append('fetch_child_forms', 'true');
|
|
43
|
+
return new Promise((resolve, reject) => {
|
|
44
|
+
this._httpClient.post(axonatorX1Url + 'getVisibleAssetForms/', formData).subscribe((response) => {
|
|
45
|
+
response.afl.afs.forEach((element) => {
|
|
46
|
+
const data = {
|
|
47
|
+
formId: element.fid,
|
|
48
|
+
type: element.ft,
|
|
49
|
+
formName: element.fn,
|
|
50
|
+
parentId: element.parent_id,
|
|
51
|
+
isChildForm: element.is_child
|
|
52
|
+
};
|
|
53
|
+
this.visibleFormsMap.set(element.fid.toString(), data);
|
|
54
|
+
});
|
|
55
|
+
this._visibleForms.next(response);
|
|
56
|
+
resolve(response);
|
|
57
|
+
}, reject);
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* To check user has permission to access particular form using formId
|
|
62
|
+
* This function will return true if user has access otherwise will return false
|
|
63
|
+
*
|
|
64
|
+
* @param formId
|
|
65
|
+
* @returns
|
|
66
|
+
*/
|
|
67
|
+
hasAccess(formId) {
|
|
68
|
+
if (this.isChildForm) {
|
|
69
|
+
return this.visibleFormsMap.has(formId) && this.visibleFormsMap.get(formId).isChildForm;
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
return this.visibleFormsMap.has(formId) && !this.visibleFormsMap.get(formId).isChildForm;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* to get visible form list
|
|
77
|
+
*
|
|
78
|
+
* @param appVersionId
|
|
79
|
+
* @param axonatorX1Url
|
|
80
|
+
* @param asset
|
|
81
|
+
* @param child
|
|
82
|
+
* @param tracking
|
|
83
|
+
* @returns
|
|
84
|
+
*/
|
|
85
|
+
getForms(appVersionId, axonatorX1Url, asset, child, tracking) {
|
|
86
|
+
const formData = new FormData();
|
|
87
|
+
formData.append('appversion', appVersionId);
|
|
88
|
+
formData.append('fetch_asset_and_tracking_forms', tracking.toString());
|
|
89
|
+
formData.append('fetch_child_forms', child.toString());
|
|
90
|
+
return new Promise((resolve, reject) => {
|
|
91
|
+
this._httpClient.post(axonatorX1Url + 'getVisibleAssetForms/', formData).subscribe((response) => {
|
|
92
|
+
this.formLists = response;
|
|
93
|
+
resolve(true);
|
|
94
|
+
}, reject);
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
FormPermissionService.ɵfac = function FormPermissionService_Factory(t) { return new (t || FormPermissionService)(i0.ɵɵinject(i1.HttpClient)); };
|
|
99
|
+
FormPermissionService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FormPermissionService, factory: FormPermissionService.ɵfac, providedIn: 'root' });
|
|
100
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormPermissionService, [{
|
|
101
|
+
type: Injectable,
|
|
102
|
+
args: [{
|
|
103
|
+
providedIn: 'root'
|
|
104
|
+
}]
|
|
105
|
+
}], function () { return [{ type: i1.HttpClient }]; }, null); })();
|
|
106
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1wZXJtaXNzaW9uLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLXBlcm1pc3Npb24uc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDbEQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsZUFBZSxFQUFjLE1BQU0sTUFBTSxDQUFDOzs7QUFNbkQsTUFBTSxPQUFPLHFCQUFxQjtJQUs5QixZQUFvQixXQUF1QjtRQUF2QixnQkFBVyxHQUFYLFdBQVcsQ0FBWTtRQUozQyxvQkFBZSxHQUFHLElBQUksR0FBRyxFQUFlLENBQUM7UUFDakMsYUFBUSxHQUFrQyxJQUFJLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNwRSxrQkFBYSxHQUFnQyxJQUFJLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUMvRSxnQkFBVyxHQUFZLEtBQUssQ0FBQztJQUNrQixDQUFDO0lBQ2hEOztPQUVHO0lBQ0gsSUFBSSxhQUFhO1FBQ2IsT0FBTyxJQUFJLENBQUMsYUFBYSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQzdDLENBQUM7SUFDRDs7T0FFRztJQUNILElBQUksVUFBVTtRQUNWLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUN0QyxDQUFDO0lBR0g7O09BRUc7SUFDSCxJQUFJLFNBQVMsQ0FBQyxRQUFRO1FBQ2xCLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFHRDs7Ozs7T0FLRztJQUNILGtCQUFrQixDQUFDLFlBQW9CLEVBQUUsYUFBcUI7UUFDMUQsTUFBTSxRQUFRLEdBQUcsSUFBSSxRQUFRLEVBQUUsQ0FBQztRQUNoQyxRQUFRLENBQUMsTUFBTSxDQUFDLFlBQVksRUFBRSxZQUFZLENBQUMsQ0FBQztRQUM1QyxRQUFRLENBQUMsTUFBTSxDQUFDLGdDQUFnQyxFQUFFLE1BQU0sQ0FBQyxDQUFDO1FBQzFELFFBQVEsQ0FBQyxNQUFNLENBQUMsbUJBQW1CLEVBQUUsTUFBTSxDQUFDLENBQUM7UUFDN0MsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsRUFBRTtZQUNuQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBTSxhQUFhLEdBQUcsdUJBQXVCLEVBQUUsUUFBUSxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsUUFBYSxFQUFFLEVBQUU7Z0JBQ3RHLFFBQVEsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFO29CQUNqQyxNQUFNLElBQUksR0FBRzt3QkFDVCxNQUFNLEVBQUUsT0FBTyxDQUFDLEdBQUc7d0JBQ25CLElBQUksRUFBRSxPQUFPLENBQUMsRUFBRTt3QkFDaEIsUUFBUSxFQUFFLE9BQU8sQ0FBQyxFQUFFO3dCQUNwQixRQUFRLEVBQUUsT0FBTyxDQUFDLFNBQVM7d0JBQzNCLFdBQVcsRUFBRSxPQUFPLENBQUMsUUFBUTtxQkFDaEMsQ0FBQztvQkFDRixJQUFJLENBQUMsZUFBZSxDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLFFBQVEsRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO2dCQUMzRCxDQUFDLENBQUMsQ0FBQztnQkFDSCxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztnQkFDbEMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ3RCLENBQUMsRUFBRSxNQUFNLENBQUMsQ0FBQztRQUNmLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUNEOzs7Ozs7T0FNRztJQUNILFNBQVMsQ0FBQyxNQUFjO1FBQ3BCLElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRTtZQUNsQixPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxJQUFJLElBQUksQ0FBQyxlQUFlLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDLFdBQVcsQ0FBQztTQUMzRjthQUNJO1lBQ0QsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDLFdBQVcsQ0FBQztTQUM1RjtJQUNMLENBQUM7SUFDRDs7Ozs7Ozs7O09BU0c7SUFDSCxRQUFRLENBQUMsWUFBb0IsRUFBRSxhQUFxQixFQUFFLEtBQWMsRUFBRSxLQUFjLEVBQUUsUUFBaUI7UUFDbkcsTUFBTSxRQUFRLEdBQUcsSUFBSSxRQUFRLEVBQUUsQ0FBQztRQUNoQyxRQUFRLENBQUMsTUFBTSxDQUFDLFlBQVksRUFBRSxZQUFZLENBQUMsQ0FBQztRQUM1QyxRQUFRLENBQUMsTUFBTSxDQUFDLGdDQUFnQyxFQUFFLFFBQVEsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDO1FBQ3ZFLFFBQVEsQ0FBQyxNQUFNLENBQUMsbUJBQW1CLEVBQUUsS0FBSyxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7UUFDdkQsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBQyxNQUFNLEVBQUMsRUFBRTtZQUNqQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBTSxhQUFhLEdBQUcsdUJBQXVCLEVBQUUsUUFBUSxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsUUFBYSxFQUFFLEVBQUU7Z0JBQ3RHLElBQUksQ0FBQyxTQUFTLEdBQUcsUUFBUSxDQUFDO2dCQUMxQixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDbEIsQ0FBQyxFQUFDLE1BQU0sQ0FBQyxDQUFBO1FBQ2IsQ0FBQyxDQUFDLENBQUE7SUFDTixDQUFDOzswRkE1RlEscUJBQXFCOzJFQUFyQixxQkFBcUIsV0FBckIscUJBQXFCLG1CQUZsQixNQUFNO3VGQUVULHFCQUFxQjtjQUhqQyxVQUFVO2VBQUM7Z0JBQ1IsVUFBVSxFQUFFLE1BQU07YUFDckIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwQ2xpZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uL2h0dHAnO1xuaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyB0YXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgRm9ybVBlcm1pc3Npb25TZXJ2aWNlIHtcbiAgICB2aXNpYmxlRm9ybXNNYXAgPSBuZXcgTWFwPHN0cmluZywgYW55PigpO1xuICAgIHByaXZhdGUgZm9ybUxpc3Q6IEJlaGF2aW9yU3ViamVjdDxhbnlbXSB8IG51bGw+ID0gbmV3IEJlaGF2aW9yU3ViamVjdChudWxsKTtcbiAgICBwcml2YXRlIF92aXNpYmxlRm9ybXM6IEJlaGF2aW9yU3ViamVjdDxhbnkgfCBudWxsPiA9IG5ldyBCZWhhdmlvclN1YmplY3QobnVsbCk7XG4gICAgaXNDaGlsZEZvcm06IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9odHRwQ2xpZW50OiBIdHRwQ2xpZW50KSB7IH1cbiAgICAvKipcbiAgICAgKiBHZXR0ZXIgZm9yIHZpc2libGUgZm9ybXNcbiAgICAgKi9cbiAgICBnZXQgdmlzaWJsZUZvcm1zJCgpOiBPYnNlcnZhYmxlPGFueT4ge1xuICAgICAgICByZXR1cm4gdGhpcy5fdmlzaWJsZUZvcm1zLmFzT2JzZXJ2YWJsZSgpO1xuICAgIH1cbiAgICAvKipcbiAgICAgKiBHZXR0ZXIgZm9yIGZvcm1MaXN0XG4gICAgICovXG4gICAgZ2V0IGZvcm1zTGlzdCQoKTogT2JzZXJ2YWJsZTxhbnlbXT4ge1xuICAgICAgICByZXR1cm4gdGhpcy5mb3JtTGlzdC5hc09ic2VydmFibGUoKTtcbiAgICAgIH1cblxuXG4gICAgLyoqXG4gICAgICogc2V0dGVyIGZvciBmb3JtTGlzdFxuICAgICAqL1xuICAgIHNldCBmb3JtTGlzdHMoZm9ybUxpc3QpIHtcbiAgICAgICAgdGhpcy5mb3JtTGlzdC5uZXh0KGZvcm1MaXN0KTtcbiAgICB9XG5cblxuICAgIC8qKlxuICAgICAqIEdldCB2aXNpYmxlIGZvcm0gbGlzdCAgYnkgdGhlIGFwcC12ZXJzaW9uIGlkIHRvIHNob3cgb25seSB2aXNpYmxlIGZvcm1zIG9uIGNvbnRhaW5lclxuICAgICAqXG4gICAgICogQHBhcmFtIGFwcFZlcnNpb25JZFxuICAgICAqIEByZXR1cm5zXG4gICAgICovXG4gICAgZ2V0VmlzaWJsZUZvcm1MaXN0KGFwcFZlcnNpb25JZDogc3RyaW5nLCBheG9uYXRvclgxVXJsOiBzdHJpbmcpOiBQcm9taXNlPGFueT4ge1xuICAgICAgICBjb25zdCBmb3JtRGF0YSA9IG5ldyBGb3JtRGF0YSgpO1xuICAgICAgICBmb3JtRGF0YS5hcHBlbmQoJ2FwcHZlcnNpb24nLCBhcHBWZXJzaW9uSWQpO1xuICAgICAgICBmb3JtRGF0YS5hcHBlbmQoJ2ZldGNoX2Fzc2V0X2FuZF90cmFja2luZ19mb3JtcycsICd0cnVlJyk7XG4gICAgICAgIGZvcm1EYXRhLmFwcGVuZCgnZmV0Y2hfY2hpbGRfZm9ybXMnLCAndHJ1ZScpO1xuICAgICAgICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5faHR0cENsaWVudC5wb3N0PGFueT4oYXhvbmF0b3JYMVVybCArICdnZXRWaXNpYmxlQXNzZXRGb3Jtcy8nLCBmb3JtRGF0YSkuc3Vic2NyaWJlKChyZXNwb25zZTogYW55KSA9PiB7XG4gICAgICAgICAgICAgICAgcmVzcG9uc2UuYWZsLmFmcy5mb3JFYWNoKChlbGVtZW50KSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IGRhdGEgPSB7XG4gICAgICAgICAgICAgICAgICAgICAgICBmb3JtSWQ6IGVsZW1lbnQuZmlkLFxuICAgICAgICAgICAgICAgICAgICAgICAgdHlwZTogZWxlbWVudC5mdCxcbiAgICAgICAgICAgICAgICAgICAgICAgIGZvcm1OYW1lOiBlbGVtZW50LmZuLFxuICAgICAgICAgICAgICAgICAgICAgICAgcGFyZW50SWQ6IGVsZW1lbnQucGFyZW50X2lkLFxuICAgICAgICAgICAgICAgICAgICAgICAgaXNDaGlsZEZvcm06IGVsZW1lbnQuaXNfY2hpbGRcbiAgICAgICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy52aXNpYmxlRm9ybXNNYXAuc2V0KGVsZW1lbnQuZmlkLnRvU3RyaW5nKCksIGRhdGEpO1xuICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIHRoaXMuX3Zpc2libGVGb3Jtcy5uZXh0KHJlc3BvbnNlKTtcbiAgICAgICAgICAgICAgICByZXNvbHZlKHJlc3BvbnNlKTtcbiAgICAgICAgICAgIH0sIHJlamVjdCk7XG4gICAgICAgIH0pO1xuICAgIH1cbiAgICAvKipcbiAgICAgKiBUbyBjaGVjayB1c2VyIGhhcyBwZXJtaXNzaW9uIHRvIGFjY2VzcyBwYXJ0aWN1bGFyIGZvcm0gdXNpbmcgZm9ybUlkXG4gICAgICogVGhpcyBmdW5jdGlvbiB3aWxsIHJldHVybiB0cnVlIGlmIHVzZXIgaGFzIGFjY2VzcyBvdGhlcndpc2Ugd2lsbCByZXR1cm4gZmFsc2VcbiAgICAgKlxuICAgICAqIEBwYXJhbSBmb3JtSWRcbiAgICAgKiBAcmV0dXJuc1xuICAgICAqL1xuICAgIGhhc0FjY2Vzcyhmb3JtSWQ6IHN0cmluZyk6IGJvb2xlYW4ge1xuICAgICAgICBpZiAodGhpcy5pc0NoaWxkRm9ybSkge1xuICAgICAgICAgICAgcmV0dXJuIHRoaXMudmlzaWJsZUZvcm1zTWFwLmhhcyhmb3JtSWQpICYmIHRoaXMudmlzaWJsZUZvcm1zTWFwLmdldChmb3JtSWQpLmlzQ2hpbGRGb3JtO1xuICAgICAgICB9XG4gICAgICAgIGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIHRoaXMudmlzaWJsZUZvcm1zTWFwLmhhcyhmb3JtSWQpICYmICF0aGlzLnZpc2libGVGb3Jtc01hcC5nZXQoZm9ybUlkKS5pc0NoaWxkRm9ybTtcbiAgICAgICAgfVxuICAgIH1cbiAgICAvKipcbiAgICAgKiB0byBnZXQgdmlzaWJsZSBmb3JtIGxpc3RcbiAgICAgKlxuICAgICAqIEBwYXJhbSBhcHBWZXJzaW9uSWRcbiAgICAgKiBAcGFyYW0gYXhvbmF0b3JYMVVybFxuICAgICAqIEBwYXJhbSBhc3NldFxuICAgICAqIEBwYXJhbSBjaGlsZFxuICAgICAqIEBwYXJhbSB0cmFja2luZ1xuICAgICAqIEByZXR1cm5zXG4gICAgICovXG4gICAgZ2V0Rm9ybXMoYXBwVmVyc2lvbklkOiBzdHJpbmcsIGF4b25hdG9yWDFVcmw6IHN0cmluZywgYXNzZXQ6IGJvb2xlYW4sIGNoaWxkOiBib29sZWFuLCB0cmFja2luZzogYm9vbGVhbik6IFByb21pc2U8YW55PiB7XG4gICAgICAgIGNvbnN0IGZvcm1EYXRhID0gbmV3IEZvcm1EYXRhKCk7XG4gICAgICAgIGZvcm1EYXRhLmFwcGVuZCgnYXBwdmVyc2lvbicsIGFwcFZlcnNpb25JZCk7XG4gICAgICAgIGZvcm1EYXRhLmFwcGVuZCgnZmV0Y2hfYXNzZXRfYW5kX3RyYWNraW5nX2Zvcm1zJywgdHJhY2tpbmcudG9TdHJpbmcoKSk7XG4gICAgICAgIGZvcm1EYXRhLmFwcGVuZCgnZmV0Y2hfY2hpbGRfZm9ybXMnLCBjaGlsZC50b1N0cmluZygpKTtcbiAgICAgICAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLHJlamVjdCk9PntcbiAgICAgICAgICAgIHRoaXMuX2h0dHBDbGllbnQucG9zdDxhbnk+KGF4b25hdG9yWDFVcmwgKyAnZ2V0VmlzaWJsZUFzc2V0Rm9ybXMvJywgZm9ybURhdGEpLnN1YnNjcmliZSgocmVzcG9uc2U6IGFueSkgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMuZm9ybUxpc3RzID0gcmVzcG9uc2U7XG4gICAgICAgICAgICAgICAgcmVzb2x2ZSh0cnVlKTtcbiAgICAgICAgICAgIH0scmVqZWN0KVxuICAgICAgICB9KVxuICAgIH1cbn1cbiJdfQ==
|