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,536 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { DataViewType, TaskGroupTypes, ViewType } from '../data-view/data-view-enums';
|
|
3
|
+
import { AxForm } from '../../forms/ax-form';
|
|
4
|
+
import { DataView } from '../data-view/data-view';
|
|
5
|
+
import { ScreenType } from '../../enlighten-lib/filters/condition-type';
|
|
6
|
+
import { DataViewService } from '../data-view.service';
|
|
7
|
+
import _ from 'lodash';
|
|
8
|
+
import { MAT_SELECT_CONFIG } from '@angular/material/select';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "../data-view.service";
|
|
11
|
+
const _c0 = ["taskViewListDropDown"];
|
|
12
|
+
const _c1 = ["listViewListDropDown"];
|
|
13
|
+
const _c2 = ["mapViewListDropDown"];
|
|
14
|
+
const _c3 = ["boardViewListDropDown"];
|
|
15
|
+
function DataViewHeaderComponent_div_2_div_4_div_3_mat_option_3_Template(rf, ctx) { if (rf & 1) {
|
|
16
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
17
|
+
i0.ɵɵelementStart(0, "mat-option", 25);
|
|
18
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_4_div_3_mat_option_3_Template_mat_option_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r16); const taskView_r14 = restoredCtx.$implicit; const ctx_r15 = i0.ɵɵnextContext(4); return ctx_r15.changeDataView(taskView_r14, ctx_r15.ViewType.TaskView); });
|
|
19
|
+
i0.ɵɵtext(1);
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
} if (rf & 2) {
|
|
22
|
+
const taskView_r14 = ctx.$implicit;
|
|
23
|
+
i0.ɵɵadvance(1);
|
|
24
|
+
i0.ɵɵtextInterpolate1("", taskView_r14.name, " ");
|
|
25
|
+
} }
|
|
26
|
+
function DataViewHeaderComponent_div_2_div_4_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
27
|
+
i0.ɵɵelementStart(0, "div", 21);
|
|
28
|
+
i0.ɵɵelementStart(1, "mat-select", 22, 23);
|
|
29
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_4_div_3_mat_option_3_Template, 2, 1, "mat-option", 24);
|
|
30
|
+
i0.ɵɵelementEnd();
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
} if (rf & 2) {
|
|
33
|
+
const ctx_r11 = i0.ɵɵnextContext(3);
|
|
34
|
+
i0.ɵɵadvance(1);
|
|
35
|
+
i0.ɵɵproperty("disableOptionCentering", true);
|
|
36
|
+
i0.ɵɵadvance(2);
|
|
37
|
+
i0.ɵɵproperty("ngForOf", ctx_r11.dataViews.taskViews);
|
|
38
|
+
} }
|
|
39
|
+
const _c4 = function (a0) { return { "view-selected": a0 }; };
|
|
40
|
+
const _c5 = function (a0) { return { "border-right": a0 }; };
|
|
41
|
+
function DataViewHeaderComponent_div_2_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
42
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
43
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
44
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_4_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r18); const ctx_r17 = i0.ɵɵnextContext(2); return ctx_r17.switchView(ctx_r17.ViewType.TaskView); });
|
|
45
|
+
i0.ɵɵelementStart(1, "div", 18);
|
|
46
|
+
i0.ɵɵelement(2, "mat-icon", 19);
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_4_div_3_Template, 4, 2, "div", 20);
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
} if (rf & 2) {
|
|
51
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
52
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c4, ctx_r1.selectedViewType === ctx_r1.ViewType.TaskView));
|
|
53
|
+
i0.ɵɵadvance(1);
|
|
54
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c5, ctx_r1.selectedViewType === ctx_r1.ViewType.TaskView && ctx_r1.dataViews.taskViews.length > 1));
|
|
55
|
+
i0.ɵɵadvance(1);
|
|
56
|
+
i0.ɵɵproperty("svgIcon", "axo_list");
|
|
57
|
+
i0.ɵɵadvance(1);
|
|
58
|
+
i0.ɵɵproperty("ngIf", ctx_r1.dataViews.listViews.length > 1);
|
|
59
|
+
} }
|
|
60
|
+
function DataViewHeaderComponent_div_2_div_5_div_3_mat_option_3_Template(rf, ctx) { if (rf & 1) {
|
|
61
|
+
const _r24 = i0.ɵɵgetCurrentView();
|
|
62
|
+
i0.ɵɵelementStart(0, "mat-option", 29);
|
|
63
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_5_div_3_mat_option_3_Template_mat_option_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r24); const listView_r22 = restoredCtx.$implicit; const ctx_r23 = i0.ɵɵnextContext(4); return ctx_r23.changeDataView(listView_r22, ctx_r23.ViewType.DataListView); });
|
|
64
|
+
i0.ɵɵtext(1);
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
} if (rf & 2) {
|
|
67
|
+
const listView_r22 = ctx.$implicit;
|
|
68
|
+
i0.ɵɵadvance(1);
|
|
69
|
+
i0.ɵɵtextInterpolate1("", listView_r22.name, " ");
|
|
70
|
+
} }
|
|
71
|
+
function DataViewHeaderComponent_div_2_div_5_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
72
|
+
i0.ɵɵelementStart(0, "div", 21);
|
|
73
|
+
i0.ɵɵelementStart(1, "mat-select", 26, 27);
|
|
74
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_5_div_3_mat_option_3_Template, 2, 1, "mat-option", 28);
|
|
75
|
+
i0.ɵɵelementEnd();
|
|
76
|
+
i0.ɵɵelementEnd();
|
|
77
|
+
} if (rf & 2) {
|
|
78
|
+
const ctx_r19 = i0.ɵɵnextContext(3);
|
|
79
|
+
i0.ɵɵadvance(1);
|
|
80
|
+
i0.ɵɵproperty("disableOptionCentering", true);
|
|
81
|
+
i0.ɵɵadvance(2);
|
|
82
|
+
i0.ɵɵproperty("ngForOf", ctx_r19.dataViews.listViews);
|
|
83
|
+
} }
|
|
84
|
+
function DataViewHeaderComponent_div_2_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
85
|
+
const _r26 = i0.ɵɵgetCurrentView();
|
|
86
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
87
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_5_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r26); const ctx_r25 = i0.ɵɵnextContext(2); return ctx_r25.switchView(ctx_r25.ViewType.DataListView); });
|
|
88
|
+
i0.ɵɵelementStart(1, "div", 18);
|
|
89
|
+
i0.ɵɵelement(2, "mat-icon", 19);
|
|
90
|
+
i0.ɵɵelementEnd();
|
|
91
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_5_div_3_Template, 4, 2, "div", 20);
|
|
92
|
+
i0.ɵɵelementEnd();
|
|
93
|
+
} if (rf & 2) {
|
|
94
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
95
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c4, ctx_r2.selectedViewType === ctx_r2.ViewType.DataListView));
|
|
96
|
+
i0.ɵɵadvance(1);
|
|
97
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c5, ctx_r2.selectedViewType === ctx_r2.ViewType.DataListView && ctx_r2.dataViews.listViews.length > 1));
|
|
98
|
+
i0.ɵɵadvance(1);
|
|
99
|
+
i0.ɵɵproperty("svgIcon", "axo_list");
|
|
100
|
+
i0.ɵɵadvance(1);
|
|
101
|
+
i0.ɵɵproperty("ngIf", ctx_r2.dataViews.listViews.length > 1);
|
|
102
|
+
} }
|
|
103
|
+
function DataViewHeaderComponent_div_2_div_6_div_3_mat_option_3_Template(rf, ctx) { if (rf & 1) {
|
|
104
|
+
const _r32 = i0.ɵɵgetCurrentView();
|
|
105
|
+
i0.ɵɵelementStart(0, "mat-option", 32);
|
|
106
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_6_div_3_mat_option_3_Template_mat_option_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r32); const mapView_r30 = restoredCtx.$implicit; const ctx_r31 = i0.ɵɵnextContext(4); return ctx_r31.changeDataView(mapView_r30, ctx_r31.ViewType.MapView); });
|
|
107
|
+
i0.ɵɵtext(1);
|
|
108
|
+
i0.ɵɵelementEnd();
|
|
109
|
+
} if (rf & 2) {
|
|
110
|
+
const mapView_r30 = ctx.$implicit;
|
|
111
|
+
i0.ɵɵadvance(1);
|
|
112
|
+
i0.ɵɵtextInterpolate(mapView_r30.name);
|
|
113
|
+
} }
|
|
114
|
+
function DataViewHeaderComponent_div_2_div_6_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
115
|
+
i0.ɵɵelementStart(0, "div", 21);
|
|
116
|
+
i0.ɵɵelementStart(1, "mat-select", 26, 30);
|
|
117
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_6_div_3_mat_option_3_Template, 2, 1, "mat-option", 31);
|
|
118
|
+
i0.ɵɵelementEnd();
|
|
119
|
+
i0.ɵɵelementEnd();
|
|
120
|
+
} if (rf & 2) {
|
|
121
|
+
const ctx_r27 = i0.ɵɵnextContext(3);
|
|
122
|
+
i0.ɵɵadvance(1);
|
|
123
|
+
i0.ɵɵproperty("disableOptionCentering", true);
|
|
124
|
+
i0.ɵɵadvance(2);
|
|
125
|
+
i0.ɵɵproperty("ngForOf", ctx_r27.dataViews.mapViews);
|
|
126
|
+
} }
|
|
127
|
+
function DataViewHeaderComponent_div_2_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
128
|
+
const _r34 = i0.ɵɵgetCurrentView();
|
|
129
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
130
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_6_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r34); const ctx_r33 = i0.ɵɵnextContext(2); return ctx_r33.switchView(ctx_r33.ViewType.MapView); });
|
|
131
|
+
i0.ɵɵelementStart(1, "div", 18);
|
|
132
|
+
i0.ɵɵelement(2, "mat-icon", 19);
|
|
133
|
+
i0.ɵɵelementEnd();
|
|
134
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_6_div_3_Template, 4, 2, "div", 20);
|
|
135
|
+
i0.ɵɵelementEnd();
|
|
136
|
+
} if (rf & 2) {
|
|
137
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
138
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c4, ctx_r3.selectedViewType === ctx_r3.ViewType.MapView));
|
|
139
|
+
i0.ɵɵadvance(1);
|
|
140
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c5, ctx_r3.selectedViewType === ctx_r3.ViewType.MapView && ctx_r3.dataViews.mapViews.length > 1));
|
|
141
|
+
i0.ɵɵadvance(1);
|
|
142
|
+
i0.ɵɵproperty("svgIcon", "axo_location");
|
|
143
|
+
i0.ɵɵadvance(1);
|
|
144
|
+
i0.ɵɵproperty("ngIf", ctx_r3.dataViews.mapViews.length > 1);
|
|
145
|
+
} }
|
|
146
|
+
function DataViewHeaderComponent_div_2_div_7_div_3_mat_option_3_Template(rf, ctx) { if (rf & 1) {
|
|
147
|
+
const _r40 = i0.ɵɵgetCurrentView();
|
|
148
|
+
i0.ɵɵelementStart(0, "mat-option", 36);
|
|
149
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_7_div_3_mat_option_3_Template_mat_option_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r40); const boardView_r38 = restoredCtx.$implicit; const ctx_r39 = i0.ɵɵnextContext(4); return ctx_r39.changeDataView(boardView_r38, ctx_r39.ViewType.BoardView); });
|
|
150
|
+
i0.ɵɵtext(1);
|
|
151
|
+
i0.ɵɵelementEnd();
|
|
152
|
+
} if (rf & 2) {
|
|
153
|
+
const boardView_r38 = ctx.$implicit;
|
|
154
|
+
i0.ɵɵadvance(1);
|
|
155
|
+
i0.ɵɵtextInterpolate1("", boardView_r38.name, " ");
|
|
156
|
+
} }
|
|
157
|
+
function DataViewHeaderComponent_div_2_div_7_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
158
|
+
i0.ɵɵelementStart(0, "div", 21);
|
|
159
|
+
i0.ɵɵelementStart(1, "mat-select", 26, 34);
|
|
160
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_7_div_3_mat_option_3_Template, 2, 1, "mat-option", 35);
|
|
161
|
+
i0.ɵɵelementEnd();
|
|
162
|
+
i0.ɵɵelementEnd();
|
|
163
|
+
} if (rf & 2) {
|
|
164
|
+
const ctx_r35 = i0.ɵɵnextContext(3);
|
|
165
|
+
i0.ɵɵadvance(1);
|
|
166
|
+
i0.ɵɵproperty("disableOptionCentering", true);
|
|
167
|
+
i0.ɵɵadvance(2);
|
|
168
|
+
i0.ɵɵproperty("ngForOf", ctx_r35.dataViews.boardViews);
|
|
169
|
+
} }
|
|
170
|
+
function DataViewHeaderComponent_div_2_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
171
|
+
const _r42 = i0.ɵɵgetCurrentView();
|
|
172
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
173
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_7_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r42); const ctx_r41 = i0.ɵɵnextContext(2); return ctx_r41.switchView(ctx_r41.ViewType.BoardView); });
|
|
174
|
+
i0.ɵɵelementStart(1, "div", 18);
|
|
175
|
+
i0.ɵɵelement(2, "mat-icon", 33);
|
|
176
|
+
i0.ɵɵelementEnd();
|
|
177
|
+
i0.ɵɵtemplate(3, DataViewHeaderComponent_div_2_div_7_div_3_Template, 4, 2, "div", 20);
|
|
178
|
+
i0.ɵɵelementEnd();
|
|
179
|
+
} if (rf & 2) {
|
|
180
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
181
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c4, ctx_r4.selectedViewType === ctx_r4.ViewType.BoardView));
|
|
182
|
+
i0.ɵɵadvance(1);
|
|
183
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c5, ctx_r4.selectedViewType === ctx_r4.ViewType.BoardView && ctx_r4.dataViews.boardViews.length > 1));
|
|
184
|
+
i0.ɵɵadvance(1);
|
|
185
|
+
i0.ɵɵproperty("svgIcon", "axo_grid");
|
|
186
|
+
i0.ɵɵadvance(1);
|
|
187
|
+
i0.ɵɵproperty("ngIf", ctx_r4.dataViews.boardViews.length > 1);
|
|
188
|
+
} }
|
|
189
|
+
const _c6 = function (a0) { return { "ml-1": a0 }; };
|
|
190
|
+
const _c7 = function (a0) { return { "w-6 min-w-6 h-6 min-h-6": a0 }; };
|
|
191
|
+
function DataViewHeaderComponent_div_2_button_10_Template(rf, ctx) { if (rf & 1) {
|
|
192
|
+
const _r44 = i0.ɵɵgetCurrentView();
|
|
193
|
+
i0.ɵɵelementStart(0, "button", 37);
|
|
194
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_button_10_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r44); const ctx_r43 = i0.ɵɵnextContext(2); return ctx_r43.showSearchBox(); });
|
|
195
|
+
i0.ɵɵelement(1, "mat-icon", 38);
|
|
196
|
+
i0.ɵɵelementEnd();
|
|
197
|
+
} if (rf & 2) {
|
|
198
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
199
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c6, ctx_r5.showSearch));
|
|
200
|
+
i0.ɵɵadvance(1);
|
|
201
|
+
i0.ɵɵproperty("svgIcon", "heroicons_solid:search")("ngClass", i0.ɵɵpureFunction1(5, _c7, !ctx_r5.showSearch));
|
|
202
|
+
} }
|
|
203
|
+
function DataViewHeaderComponent_div_2_mat_icon_12_Template(rf, ctx) { if (rf & 1) {
|
|
204
|
+
const _r46 = i0.ɵɵgetCurrentView();
|
|
205
|
+
i0.ɵɵelementStart(0, "mat-icon", 39);
|
|
206
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_mat_icon_12_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r46); const ctx_r45 = i0.ɵɵnextContext(2); return ctx_r45.clear(); });
|
|
207
|
+
i0.ɵɵtext(1, "clear");
|
|
208
|
+
i0.ɵɵelementEnd();
|
|
209
|
+
} }
|
|
210
|
+
function DataViewHeaderComponent_div_2_button_13_Template(rf, ctx) { if (rf & 1) {
|
|
211
|
+
const _r48 = i0.ɵɵgetCurrentView();
|
|
212
|
+
i0.ɵɵelementStart(0, "button", 40);
|
|
213
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_button_13_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r48); const ctx_r47 = i0.ɵɵnextContext(2); return ctx_r47.showSearchBox(); });
|
|
214
|
+
i0.ɵɵelement(1, "mat-icon", 38);
|
|
215
|
+
i0.ɵɵelementEnd();
|
|
216
|
+
} if (rf & 2) {
|
|
217
|
+
const ctx_r7 = i0.ɵɵnextContext(2);
|
|
218
|
+
i0.ɵɵadvance(1);
|
|
219
|
+
i0.ɵɵproperty("svgIcon", "heroicons_solid:search")("ngClass", i0.ɵɵpureFunction1(2, _c7, !ctx_r7.showSearch));
|
|
220
|
+
} }
|
|
221
|
+
function DataViewHeaderComponent_div_2_button_14_Template(rf, ctx) { if (rf & 1) {
|
|
222
|
+
const _r50 = i0.ɵɵgetCurrentView();
|
|
223
|
+
i0.ɵɵelementStart(0, "button", 41);
|
|
224
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_button_14_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r50); const ctx_r49 = i0.ɵɵnextContext(2); return ctx_r49.createCache(); });
|
|
225
|
+
i0.ɵɵtext(1, "Configure Info Window");
|
|
226
|
+
i0.ɵɵelementEnd();
|
|
227
|
+
} }
|
|
228
|
+
function DataViewHeaderComponent_div_2_div_15_Template(rf, ctx) { if (rf & 1) {
|
|
229
|
+
const _r52 = i0.ɵɵgetCurrentView();
|
|
230
|
+
i0.ɵɵelementStart(0, "div", 42);
|
|
231
|
+
i0.ɵɵelementStart(1, "mat-select", 43);
|
|
232
|
+
i0.ɵɵelementStart(2, "mat-option", 44);
|
|
233
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_15_Template_mat_option_click_2_listener() { i0.ɵɵrestoreView(_r52); const ctx_r51 = i0.ɵɵnextContext(2); return ctx_r51.taskGroupBy.emit(""); });
|
|
234
|
+
i0.ɵɵtext(3, "None");
|
|
235
|
+
i0.ɵɵelementEnd();
|
|
236
|
+
i0.ɵɵelementStart(4, "mat-option", 45);
|
|
237
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_div_15_Template_mat_option_click_4_listener() { i0.ɵɵrestoreView(_r52); const ctx_r53 = i0.ɵɵnextContext(2); return ctx_r53.taskGroupBy.emit(ctx_r53.TaskGroupType.workflowInstance); });
|
|
238
|
+
i0.ɵɵtext(5, "WorkflowInstance");
|
|
239
|
+
i0.ɵɵelementEnd();
|
|
240
|
+
i0.ɵɵelementEnd();
|
|
241
|
+
i0.ɵɵelementEnd();
|
|
242
|
+
} if (rf & 2) {
|
|
243
|
+
i0.ɵɵadvance(1);
|
|
244
|
+
i0.ɵɵproperty("disableOptionCentering", true);
|
|
245
|
+
} }
|
|
246
|
+
function DataViewHeaderComponent_div_2_button_16_Template(rf, ctx) { if (rf & 1) {
|
|
247
|
+
const _r55 = i0.ɵɵgetCurrentView();
|
|
248
|
+
i0.ɵɵelementStart(0, "button", 41);
|
|
249
|
+
i0.ɵɵlistener("click", function DataViewHeaderComponent_div_2_button_16_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r55); const ctx_r54 = i0.ɵɵnextContext(2); return ctx_r54.createNewView.emit(ctx_r54.selectedViewType); });
|
|
250
|
+
i0.ɵɵtext(1);
|
|
251
|
+
i0.ɵɵelementEnd();
|
|
252
|
+
} if (rf & 2) {
|
|
253
|
+
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
254
|
+
i0.ɵɵadvance(1);
|
|
255
|
+
i0.ɵɵtextInterpolate1(" Create ", ctx_r10.selectedViewType, "");
|
|
256
|
+
} }
|
|
257
|
+
const _c8 = function (a0) { return { "task-view-title": a0 }; };
|
|
258
|
+
const _c9 = function (a0) { return { "search-field-border": a0 }; };
|
|
259
|
+
function DataViewHeaderComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
260
|
+
const _r57 = i0.ɵɵgetCurrentView();
|
|
261
|
+
i0.ɵɵelementStart(0, "div", 5);
|
|
262
|
+
i0.ɵɵelementStart(1, "div", 6);
|
|
263
|
+
i0.ɵɵelementStart(2, "div", 7);
|
|
264
|
+
i0.ɵɵtext(3);
|
|
265
|
+
i0.ɵɵelementEnd();
|
|
266
|
+
i0.ɵɵtemplate(4, DataViewHeaderComponent_div_2_div_4_Template, 4, 8, "div", 8);
|
|
267
|
+
i0.ɵɵtemplate(5, DataViewHeaderComponent_div_2_div_5_Template, 4, 8, "div", 8);
|
|
268
|
+
i0.ɵɵtemplate(6, DataViewHeaderComponent_div_2_div_6_Template, 4, 8, "div", 8);
|
|
269
|
+
i0.ɵɵtemplate(7, DataViewHeaderComponent_div_2_div_7_Template, 4, 8, "div", 8);
|
|
270
|
+
i0.ɵɵelementEnd();
|
|
271
|
+
i0.ɵɵelementStart(8, "div", 9);
|
|
272
|
+
i0.ɵɵelementStart(9, "div", 10);
|
|
273
|
+
i0.ɵɵtemplate(10, DataViewHeaderComponent_div_2_button_10_Template, 2, 7, "button", 11);
|
|
274
|
+
i0.ɵɵelementStart(11, "input", 12);
|
|
275
|
+
i0.ɵɵlistener("keyup", function DataViewHeaderComponent_div_2_Template_input_keyup_11_listener($event) { i0.ɵɵrestoreView(_r57); const ctx_r56 = i0.ɵɵnextContext(); return ctx_r56.getSearchedData($event.target["value"]); });
|
|
276
|
+
i0.ɵɵelementEnd();
|
|
277
|
+
i0.ɵɵtemplate(12, DataViewHeaderComponent_div_2_mat_icon_12_Template, 2, 0, "mat-icon", 13);
|
|
278
|
+
i0.ɵɵtemplate(13, DataViewHeaderComponent_div_2_button_13_Template, 2, 4, "button", 14);
|
|
279
|
+
i0.ɵɵelementEnd();
|
|
280
|
+
i0.ɵɵtemplate(14, DataViewHeaderComponent_div_2_button_14_Template, 2, 0, "button", 15);
|
|
281
|
+
i0.ɵɵtemplate(15, DataViewHeaderComponent_div_2_div_15_Template, 6, 1, "div", 16);
|
|
282
|
+
i0.ɵɵtemplate(16, DataViewHeaderComponent_div_2_button_16_Template, 2, 1, "button", 15);
|
|
283
|
+
i0.ɵɵelementEnd();
|
|
284
|
+
i0.ɵɵelementEnd();
|
|
285
|
+
} if (rf & 2) {
|
|
286
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
287
|
+
i0.ɵɵadvance(2);
|
|
288
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(16, _c8, ctx_r0.selectedViewType === ctx_r0.ViewType.TaskView))("matTooltip", ctx_r0.selectedDataView == null ? null : ctx_r0.selectedDataView.name);
|
|
289
|
+
i0.ɵɵadvance(1);
|
|
290
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.selectedDataView == null ? null : ctx_r0.selectedDataView.name, "");
|
|
291
|
+
i0.ɵɵadvance(1);
|
|
292
|
+
i0.ɵɵproperty("ngIf", ctx_r0.dataViews.taskViews.length > 0 && ctx_r0.dataViews.type !== ctx_r0.DataViewType.genericTaskView);
|
|
293
|
+
i0.ɵɵadvance(1);
|
|
294
|
+
i0.ɵɵproperty("ngIf", ctx_r0.dataViews.taskViews.length === 0 && (ctx_r0.dataViews.listViews.length > 0 || ctx_r0.screenType === ctx_r0.ScreenType.dataViewBuilder));
|
|
295
|
+
i0.ɵɵadvance(1);
|
|
296
|
+
i0.ɵɵproperty("ngIf", ctx_r0.dataViews.mapViews.length > 0 || ctx_r0.screenType === ctx_r0.ScreenType.dataViewBuilder);
|
|
297
|
+
i0.ɵɵadvance(1);
|
|
298
|
+
i0.ɵɵproperty("ngIf", ctx_r0.dataViews.boardViews.length > 0 || ctx_r0.screenType === ctx_r0.ScreenType.dataViewBuilder);
|
|
299
|
+
i0.ɵɵadvance(2);
|
|
300
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(18, _c9, ctx_r0.showSearch));
|
|
301
|
+
i0.ɵɵadvance(1);
|
|
302
|
+
i0.ɵɵproperty("ngIf", ctx_r0.showSearch);
|
|
303
|
+
i0.ɵɵadvance(1);
|
|
304
|
+
i0.ɵɵstyleProp("width", !ctx_r0.showSearch ? "0" : "100%");
|
|
305
|
+
i0.ɵɵadvance(1);
|
|
306
|
+
i0.ɵɵproperty("ngIf", ctx_r0.showSearch);
|
|
307
|
+
i0.ɵɵadvance(1);
|
|
308
|
+
i0.ɵɵproperty("ngIf", !ctx_r0.showSearch);
|
|
309
|
+
i0.ɵɵadvance(1);
|
|
310
|
+
i0.ɵɵproperty("ngIf", ctx_r0.selectedDataView && ctx_r0.screenType === ctx_r0.ScreenType.dataViewBuilder && (ctx_r0.selectedViewType === ctx_r0.ViewType.BoardView || ctx_r0.selectedViewType === ctx_r0.ViewType.MapView) && ctx_r0.selectedDataView.id);
|
|
311
|
+
i0.ɵɵadvance(1);
|
|
312
|
+
i0.ɵɵproperty("ngIf", ctx_r0.dataViews.type === ctx_r0.DataViewType.genericTaskView);
|
|
313
|
+
i0.ɵɵadvance(1);
|
|
314
|
+
i0.ɵɵproperty("ngIf", ctx_r0.screenType === ctx_r0.ScreenType.dataViewBuilder && ctx_r0.ViewType.TaskView !== ctx_r0.selectedViewType);
|
|
315
|
+
} }
|
|
316
|
+
const _c10 = function (a0) { return { "mt-3": a0 }; };
|
|
317
|
+
export class DataViewHeaderComponent {
|
|
318
|
+
constructor(_dataViewService) {
|
|
319
|
+
this._dataViewService = _dataViewService;
|
|
320
|
+
// <-------- Outputs --------------->
|
|
321
|
+
this.switchDataView = new EventEmitter();
|
|
322
|
+
this.createNewView = new EventEmitter();
|
|
323
|
+
this.dataViewChanged = new EventEmitter();
|
|
324
|
+
this.applyFilter = new EventEmitter();
|
|
325
|
+
this.resetFilter = new EventEmitter();
|
|
326
|
+
this.taskGroupBy = new EventEmitter();
|
|
327
|
+
this.searchEvent = new EventEmitter();
|
|
328
|
+
this.addNewRecord = new EventEmitter();
|
|
329
|
+
this.refreshData = new EventEmitter();
|
|
330
|
+
this.exportData = new EventEmitter();
|
|
331
|
+
this.assign = new EventEmitter();
|
|
332
|
+
this.showSearch = false;
|
|
333
|
+
this.searchText = '';
|
|
334
|
+
}
|
|
335
|
+
ngOnInit() {
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* Getter for dataViewType
|
|
339
|
+
*/
|
|
340
|
+
get DataViewType() {
|
|
341
|
+
return DataViewType;
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* Getter for ViewType
|
|
345
|
+
*/
|
|
346
|
+
get ViewType() {
|
|
347
|
+
return ViewType;
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* Getter for screen type
|
|
351
|
+
*/
|
|
352
|
+
get ScreenType() {
|
|
353
|
+
return ScreenType;
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* Getter for task group types
|
|
357
|
+
*/
|
|
358
|
+
get TaskGroupType() {
|
|
359
|
+
return TaskGroupTypes;
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* change selected data view
|
|
363
|
+
*
|
|
364
|
+
* @param event
|
|
365
|
+
*/
|
|
366
|
+
changeDataView(boardView, selectedViewType) {
|
|
367
|
+
this.selectedViewType = selectedViewType;
|
|
368
|
+
this.selectedDataView = boardView;
|
|
369
|
+
this.dataViewChanged.emit(this.selectedDataView);
|
|
370
|
+
}
|
|
371
|
+
/**
|
|
372
|
+
* Switch selected data view
|
|
373
|
+
*
|
|
374
|
+
* @param dataViewType
|
|
375
|
+
*/
|
|
376
|
+
switchView(dataViewType) {
|
|
377
|
+
// Switch data view only if views are greater than 1 else open dropdown
|
|
378
|
+
if ((dataViewType === ViewType.BoardView && this.dataViews.boardViews.length <= 1) ||
|
|
379
|
+
(dataViewType === ViewType.DataListView && this.dataViews.listViews.length <= 1) ||
|
|
380
|
+
(dataViewType === ViewType.MapView && this.dataViews.mapViews.length <= 1) ||
|
|
381
|
+
(dataViewType === ViewType.TaskView && this.dataViews.taskViews.length <= 1)) {
|
|
382
|
+
this.switchDataView.emit(dataViewType);
|
|
383
|
+
}
|
|
384
|
+
else {
|
|
385
|
+
switch (dataViewType) {
|
|
386
|
+
case ViewType.DataListView:
|
|
387
|
+
this.listViewListDropDown.open();
|
|
388
|
+
break;
|
|
389
|
+
case ViewType.MapView:
|
|
390
|
+
this.mapViewListDropDown.open();
|
|
391
|
+
break;
|
|
392
|
+
case ViewType.BoardView:
|
|
393
|
+
this.boardViewListDropDown.open();
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* Create Cache
|
|
399
|
+
*/
|
|
400
|
+
createCache() {
|
|
401
|
+
if (this.selectedViewType === ViewType.BoardView) {
|
|
402
|
+
this._dataViewService.createBoardViewCache(this.selectedDataView.id).then((response) => {
|
|
403
|
+
console.log('Cache Created.');
|
|
404
|
+
}).catch((error) => {
|
|
405
|
+
console.error(error);
|
|
406
|
+
});
|
|
407
|
+
}
|
|
408
|
+
else if (this.selectedViewType === ViewType.MapView) {
|
|
409
|
+
this._dataViewService.createMapViewCache(this.selectedDataView.id).then((response) => {
|
|
410
|
+
console.log('Cache Created.');
|
|
411
|
+
}).catch((error) => {
|
|
412
|
+
console.error(error);
|
|
413
|
+
});
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* this function is for showing the search box
|
|
418
|
+
*/
|
|
419
|
+
showSearchBox() {
|
|
420
|
+
this.showSearch = !this.showSearch;
|
|
421
|
+
document.getElementById('field-search').focus();
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* clear the search box
|
|
425
|
+
*/
|
|
426
|
+
clear() {
|
|
427
|
+
if (_.isEmpty(this.searchText)) {
|
|
428
|
+
this.showSearch = !this.showSearch;
|
|
429
|
+
}
|
|
430
|
+
this.searchText = '';
|
|
431
|
+
this.getSearchedData(this.searchText);
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
*
|
|
435
|
+
* @param searchValue
|
|
436
|
+
*/
|
|
437
|
+
getSearchedData(searchValue) {
|
|
438
|
+
this.searchText = searchValue;
|
|
439
|
+
this.searchEvent.emit(this.searchText);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
DataViewHeaderComponent.ɵfac = function DataViewHeaderComponent_Factory(t) { return new (t || DataViewHeaderComponent)(i0.ɵɵdirectiveInject(i1.DataViewService)); };
|
|
443
|
+
DataViewHeaderComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DataViewHeaderComponent, selectors: [["lib-data-view-header"]], viewQuery: function DataViewHeaderComponent_Query(rf, ctx) { if (rf & 1) {
|
|
444
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
445
|
+
i0.ɵɵviewQuery(_c1, 5);
|
|
446
|
+
i0.ɵɵviewQuery(_c2, 5);
|
|
447
|
+
i0.ɵɵviewQuery(_c3, 5);
|
|
448
|
+
} if (rf & 2) {
|
|
449
|
+
let _t;
|
|
450
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.taskViewListDropDown = _t.first);
|
|
451
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.listViewListDropDown = _t.first);
|
|
452
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.mapViewListDropDown = _t.first);
|
|
453
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.boardViewListDropDown = _t.first);
|
|
454
|
+
} }, inputs: { dataViews: "dataViews", axForm: "axForm", selectedViewType: "selectedViewType", selectedDataView: "selectedDataView", screenType: "screenType", appVersionId: "appVersionId", userEmail: "userEmail", showAssignToButton: "showAssignToButton" }, outputs: { switchDataView: "switchDataView", createNewView: "createNewView", dataViewChanged: "dataViewChanged", applyFilter: "applyFilter", resetFilter: "resetFilter", taskGroupBy: "taskGroupBy", searchEvent: "searchEvent", addNewRecord: "addNewRecord", refreshData: "refreshData", exportData: "exportData", assign: "assign" }, features: [i0.ɵɵProvidersFeature([
|
|
455
|
+
{
|
|
456
|
+
provide: MAT_SELECT_CONFIG,
|
|
457
|
+
useValue: { overlayPanelClass: 'data-view-header-overlay-panel' },
|
|
458
|
+
}
|
|
459
|
+
])], decls: 5, vars: 12, consts: [[1, "sticky", "top-0", "data-list-header", 3, "ngClass"], [1, "flex", "items-center", "justify-between"], ["class", "data-view-header-contianer", 4, "ngIf"], [1, "data-view-filter-container"], [1, "w-full", 3, "screenType", "selectedViewType", "filters", "appVersionId", "showAssignToButton", "dataViews", "form", "userEmail", "applyFilterEmit", "resetFilterEmit", "assign", "addNewRecord", "refreshData", "exportData"], [1, "data-view-header-contianer"], [1, "data-view-dropdown-wrapper"], [1, "data-view-title", "axo-font", 3, "ngClass", "matTooltip"], ["class", "flex items-center cursor-pointer icon-btn", 3, "ngClass", "click", 4, "ngIf"], [1, "searchBox-btton-wrapper"], [1, "items-center", "flex", 3, "ngClass"], ["class", "flex items-center", 3, "ngClass", "click", 4, "ngIf"], ["id", "field-search", "autocomplete", "off", "placeholder", "Search...", "matInput", "", 1, "search-bar", "chart-title", 3, "keyup"], ["class", "clear_icon text-base cursor-pointer", 3, "click", 4, "ngIf"], ["class", "flex items-center icon-btn", 3, "click", 4, "ngIf"], ["class", "primary-btn axo-font", 3, "click", 4, "ngIf"], ["class", "items-center search-field flex", 4, "ngIf"], [1, "flex", "items-center", "cursor-pointer", "icon-btn", 3, "ngClass", "click"], [1, "flex", "items-center", "data-view-btn-icon", 3, "ngClass"], [1, "search-icon", "h-4", "min-w-4", "min-h-4", "w-4", 3, "svgIcon"], ["class", "flex items-center data-view-mat-select", 4, "ngIf"], [1, "flex", "items-center", "data-view-mat-select"], [3, "disableOptionCentering"], ["taskViewListDropDown", ""], [3, "click", 4, "ngFor", "ngForOf"], [3, "click"], [1, "data-view-select", 3, "disableOptionCentering"], ["listViewListDropDown", ""], ["value", "dataViews.listViews", 3, "click", 4, "ngFor", "ngForOf"], ["value", "dataViews.listViews", 3, "click"], ["mapViewListDropDown", ""], ["value", "dataViews.mapViews", 3, "click", 4, "ngFor", "ngForOf"], ["value", "dataViews.mapViews", 3, "click"], [1, "h-4", "min-w-4", "min-h-4", "w-4", 3, "svgIcon"], ["boardViewListDropDown", ""], ["value", "dataViews.boardViews", 3, "click", 4, "ngFor", "ngForOf"], ["value", "dataViews.boardViews", 3, "click"], [1, "flex", "items-center", 3, "ngClass", "click"], [1, "data-view-search-icon", 3, "svgIcon", "ngClass"], [1, "clear_icon", "text-base", "cursor-pointer", 3, "click"], [1, "flex", "items-center", "icon-btn", 3, "click"], [1, "primary-btn", "axo-font", 3, "click"], [1, "items-center", "search-field", "flex"], ["placeholder", "Group By", 1, "task-list-group-selection", "axo-font", 3, "disableOptionCentering"], ["value", "", 1, "task-list-group-selection-option", "axo-font", 3, "click"], ["value", "WorkflowInstance", 1, "task-list-group-selection-option", "axo-font", 3, "click"]], template: function DataViewHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
460
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
461
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
462
|
+
i0.ɵɵtemplate(2, DataViewHeaderComponent_div_2_Template, 17, 20, "div", 2);
|
|
463
|
+
i0.ɵɵelementEnd();
|
|
464
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
465
|
+
i0.ɵɵelementStart(4, "lib-data-view-filters", 4);
|
|
466
|
+
i0.ɵɵlistener("applyFilterEmit", function DataViewHeaderComponent_Template_lib_data_view_filters_applyFilterEmit_4_listener($event) { return ctx.applyFilter.emit($event); })("resetFilterEmit", function DataViewHeaderComponent_Template_lib_data_view_filters_resetFilterEmit_4_listener($event) { return ctx.resetFilter.emit($event); })("assign", function DataViewHeaderComponent_Template_lib_data_view_filters_assign_4_listener() { return ctx.assign.emit(); })("addNewRecord", function DataViewHeaderComponent_Template_lib_data_view_filters_addNewRecord_4_listener() { return ctx.addNewRecord.emit(); })("refreshData", function DataViewHeaderComponent_Template_lib_data_view_filters_refreshData_4_listener() { return ctx.refreshData.emit(); })("exportData", function DataViewHeaderComponent_Template_lib_data_view_filters_exportData_4_listener($event) { return ctx.exportData.emit($event); });
|
|
467
|
+
i0.ɵɵelementEnd();
|
|
468
|
+
i0.ɵɵelementEnd();
|
|
469
|
+
i0.ɵɵelementEnd();
|
|
470
|
+
} if (rf & 2) {
|
|
471
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c10, ctx.dataViews.taskViews.length > 0 || ctx.dataViews.mapViews.length > 0 || ctx.dataViews.boardViews.length > 0 || ctx.dataViews.listViews.length > 0 && ctx.screenType === ctx.ScreenType.dataView));
|
|
472
|
+
i0.ɵɵadvance(2);
|
|
473
|
+
i0.ɵɵproperty("ngIf", ctx.dataViews.listViews.length > 1 || ctx.dataViews.taskViews.length > 1 || ctx.dataViews.mapViews.length > 0 || ctx.dataViews.boardViews.length > 0 || ctx.screenType === ctx.ScreenType.dataViewBuilder);
|
|
474
|
+
i0.ɵɵadvance(2);
|
|
475
|
+
i0.ɵɵproperty("screenType", ctx.screenType)("selectedViewType", ctx.selectedViewType)("filters", ctx.dataViews.filters)("appVersionId", ctx.appVersionId)("showAssignToButton", ctx.showAssignToButton)("dataViews", ctx.dataViews)("form", ctx.axForm)("userEmail", ctx.userEmail);
|
|
476
|
+
} }, styles: ["lib-data-view-header{display:block;width:100%;max-width:100%}lib-data-view-header .data-list-header{margin-top:.5rem;width:100%;max-width:100%}lib-data-view-header .data-list-header .data-view-header-contianer{width:100%;display:flex;align-items:center;justify-content:space-between;margin-right:auto;margin-left:auto;height:3.5rem;padding-left:1.5rem;padding-right:1.5rem;flex-wrap:wrap}@media screen and (max-width: 1024px){lib-data-view-header .data-list-header .data-view-header-contianer{padding-left:1rem;padding-right:1rem;height:6.5rem}}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper{display:flex;column-gap:.75rem;align-items:center;width:calc(100% - 24.875rem)}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper ::ng-deep .mat-select-value{display:none}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .data-view-title{color:#404040;font-size:14px;margin:0;max-width:calc(100% - 7.75rem);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .view-selected{background:#E1E7EF;border-radius:3px}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .data-view-btn-icon{padding:.4rem .2rem}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .border-right{border-right:.5px solid #C0CCDD}lib-data-view-header .data-list-header .data-view-header-contianer .searchBox-btton-wrapper{display:flex;align-items:center;column-gap:1rem}@media screen and (max-width: 1024px){lib-data-view-header .data-list-header .data-view-header-contianer .searchBox-btton-wrapper{width:100%;justify-content:flex-end}}lib-data-view-header .data-list-header .task-list-group-selection{border:1px solid #636E8D;border-radius:38px;width:9rem;padding:5px 12px;color:#636e8d;font-size:12px}lib-data-view-header .search-bar{width:7rem;height:2rem;margin-top:0;color:#292929}lib-data-view-header .data-view-search-icon{height:1.1rem;width:1.1rem;min-width:1.1rem;min-height:1.1rem}lib-data-view-header .data-view-filter-container{display:flex;align-items:center}.task-list-group-selection-option .mat-option-text{color:#636e8d;font-size:12px}.data-view-filter-container{display:flex;justify-content:space-between;flex-wrap:nowrap;padding:0 1.5rem 1rem;width:100%;max-width:100%}@media screen and (max-width: 1024px){.data-view-filter-container{padding:0 1rem .5rem}}.data-view-select{display:inline-flex!important}.data-view-select .mat-select-value-text{display:none!important}.data-view-header-overlay-panel{margin-top:1.8rem;transform:translate(-1.563rem)!important}\n"], encapsulation: 2 });
|
|
477
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DataViewHeaderComponent, [{
|
|
478
|
+
type: Component,
|
|
479
|
+
args: [{ selector: 'lib-data-view-header', encapsulation: ViewEncapsulation.None, providers: [
|
|
480
|
+
{
|
|
481
|
+
provide: MAT_SELECT_CONFIG,
|
|
482
|
+
useValue: { overlayPanelClass: 'data-view-header-overlay-panel' },
|
|
483
|
+
}
|
|
484
|
+
], template: "<div class=\"sticky top-0 data-list-header\" [ngClass]=\"{'mt-3' : dataViews.taskViews.length > 0 || dataViews.mapViews.length > 0 || dataViews.boardViews.length > 0 || (dataViews.listViews.length > 0 && screenType === ScreenType.dataView)}\">\n <div class=\"flex items-center justify-between\">\n <!-- Title header -->\n <div class=\"data-view-header-contianer\" *ngIf=\"dataViews.listViews.length > 1|| dataViews.taskViews.length > 1 || dataViews.mapViews.length > 0 || dataViews.boardViews.length > 0 || screenType === ScreenType.dataViewBuilder\">\n <div class=\"data-view-dropdown-wrapper\">\n <div class=\"data-view-title axo-font\" [ngClass]=\"{'task-view-title' : selectedViewType === ViewType.TaskView}\" [matTooltip]=\"selectedDataView?.name\">\n {{selectedDataView?.name}}</div>\n <!-- Task List view Dropdown -->\n <div class=\"flex items-center cursor-pointer icon-btn\" *ngIf=\"dataViews.taskViews.length > 0 && dataViews.type !== DataViewType.genericTaskView\"\n [ngClass]=\"{'view-selected':selectedViewType === ViewType.TaskView}\" (click)=\"switchView(ViewType.TaskView)\">\n <div class=\"flex items-center data-view-btn-icon\"\n [ngClass]=\"{'border-right':selectedViewType === ViewType.TaskView && dataViews.taskViews.length > 1}\">\n <mat-icon class=\"search-icon h-4 min-w-4 min-h-4 w-4\" [svgIcon]=\"'axo_list'\" ></mat-icon>\n </div>\n <div class=\"flex items-center data-view-mat-select\" *ngIf=\"dataViews.listViews.length > 1 \">\n <mat-select #taskViewListDropDown [disableOptionCentering]=\"true\">\n <mat-option *ngFor=\"let taskView of dataViews.taskViews\" (click)=\"changeDataView(taskView,ViewType.TaskView )\">{{taskView.name}}\n </mat-option>\n </mat-select>\n </div>\n </div>\n\n <!-- Data List view Dropdown -->\n <div class=\"flex items-center cursor-pointer icon-btn\" *ngIf=\"dataViews.taskViews.length === 0 &&(dataViews.listViews.length > 0 || screenType === ScreenType.dataViewBuilder)\"\n [ngClass]=\"{'view-selected':selectedViewType === ViewType.DataListView}\" (click)=\"switchView(ViewType.DataListView)\">\n <div class=\"flex items-center data-view-btn-icon \"\n [ngClass]=\"{'border-right':selectedViewType === ViewType.DataListView && dataViews.listViews.length > 1}\">\n <mat-icon class=\"search-icon h-4 min-w-4 min-h-4 w-4\" [svgIcon]=\"'axo_list'\" ></mat-icon>\n </div>\n <div class=\"flex items-center data-view-mat-select\" *ngIf=\"dataViews.listViews.length > 1 \">\n <mat-select #listViewListDropDown class=\"data-view-select\" [disableOptionCentering]=\"true\">\n <mat-option value=\"dataViews.listViews\" *ngFor=\"let listView of dataViews.listViews\" (click)=\"changeDataView(listView,ViewType.DataListView )\">{{listView.name}}\n </mat-option>\n </mat-select>\n </div>\n </div>\n\n <!-- Data Map view Dropdown -->\n <div class=\"flex items-center cursor-pointer icon-btn\" *ngIf=\"dataViews.mapViews.length > 0 || screenType === ScreenType.dataViewBuilder\"\n [ngClass]=\"{'view-selected':selectedViewType === ViewType.MapView}\" (click)=\"switchView(ViewType.MapView)\">\n <div class=\"flex items-center data-view-btn-icon \"\n [ngClass]=\"{'border-right':selectedViewType === ViewType.MapView && dataViews.mapViews.length > 1}\">\n <mat-icon class=\"search-icon h-4 min-w-4 min-h-4 w-4\" [svgIcon]=\"'axo_location'\" ></mat-icon>\n </div>\n <div class=\"flex items-center data-view-mat-select\" *ngIf=\"dataViews.mapViews.length > 1\">\n <mat-select #mapViewListDropDown class=\"data-view-select\" [disableOptionCentering]=\"true\">\n <mat-option value=\"dataViews.mapViews\" *ngFor=\"let mapView of dataViews.mapViews\" (click)=\"changeDataView(mapView,ViewType.MapView )\">{{mapView.name}}</mat-option>\n </mat-select>\n </div>\n </div>\n\n <!-- Data Board view Dropdown -->\n <div class=\"flex items-center cursor-pointer icon-btn\" *ngIf=\"dataViews.boardViews.length > 0 || screenType === ScreenType.dataViewBuilder\"\n [ngClass]=\"{'view-selected':selectedViewType === ViewType.BoardView}\" (click)=\"switchView(ViewType.BoardView)\">\n <div class=\"flex items-center data-view-btn-icon\"\n [ngClass]=\"{'border-right':selectedViewType === ViewType.BoardView && dataViews.boardViews.length > 1}\">\n <mat-icon class=\"h-4 min-w-4 min-h-4 w-4\" [svgIcon]=\"'axo_grid'\" ></mat-icon>\n </div>\n <div class=\"flex items-center data-view-mat-select\" *ngIf=\"dataViews.boardViews.length > 1\">\n <mat-select #boardViewListDropDown class=\"data-view-select\" [disableOptionCentering]=\"true\">\n <mat-option value=\"dataViews.boardViews\" *ngFor=\"let boardView of dataViews.boardViews\" (click)=\"changeDataView(boardView,ViewType.BoardView)\">{{boardView.name}}\n </mat-option>\n </mat-select>\n </div>\n\n </div>\n </div>\n <div class=\"searchBox-btton-wrapper\" >\n <!-- Search Box Start-->\n <div class=\"items-center flex\" [ngClass]=\"{'search-field-border' : showSearch}\">\n <button (click)=\"showSearchBox()\" class=\"flex items-center\" [ngClass]=\"{'ml-1' : showSearch}\" *ngIf=\"showSearch\">\n <mat-icon class=\"data-view-search-icon\"\n [svgIcon]=\"'heroicons_solid:search'\" [ngClass]=\"{'w-6 min-w-6 h-6 min-h-6' : !showSearch}\"></mat-icon>\n </button>\n <input id=\"field-search\" autocomplete=\"off\" placeholder=\"Search...\" matInput class=\"search-bar chart-title\"\n (keyup)=\"getSearchedData($event.target['value'])\" [style.width]=\"!showSearch ? '0' : '100%'\"/>\n <mat-icon (click)=\"clear()\" *ngIf=\"showSearch\" class=\"clear_icon text-base cursor-pointer\">clear</mat-icon>\n <button (click)=\"showSearchBox()\" class=\"flex items-center icon-btn\" *ngIf=\"!showSearch\">\n <mat-icon class=\"data-view-search-icon\"\n [svgIcon]=\"'heroicons_solid:search'\" [ngClass]=\"{'w-6 min-w-6 h-6 min-h-6' : !showSearch}\"></mat-icon>\n </button>\n </div>\n <!-- Configure Info Window button for map view and board view -->\n <button *ngIf=\"selectedDataView && screenType === ScreenType.dataViewBuilder && (selectedViewType === ViewType.BoardView || selectedViewType === ViewType.MapView) && selectedDataView.id\" class=\"primary-btn axo-font\" (click)=\"createCache()\">Configure Info Window</button>\n <!-- Group by dropdown for Task List -->\n <div class=\"items-center search-field flex\" *ngIf=\"dataViews.type === DataViewType.genericTaskView\">\n <mat-select placeholder=\"Group By\" [disableOptionCentering]=\"true\" class=\"task-list-group-selection axo-font\">\n <mat-option (click)=\"taskGroupBy.emit('')\" value=\"\" class=\"task-list-group-selection-option axo-font\">None</mat-option>\n <mat-option (click)=\"taskGroupBy.emit(TaskGroupType.workflowInstance)\" value=\"WorkflowInstance\" class=\"task-list-group-selection-option axo-font\">WorkflowInstance</mat-option>\n <!-- <mat-option (click)=\"taskGroupBy.emit(TaskGroupType.user) \"value=\"User\" class=\"task-list-group-selection-option axo-font\">User</mat-option> -->\n </mat-select>\n </div>\n\n <button *ngIf=\"screenType === ScreenType.dataViewBuilder && ViewType.TaskView !== selectedViewType\" class=\"primary-btn axo-font\" (click)=\"createNewView.emit(selectedViewType)\"> Create {{selectedViewType}}</button>\n </div>\n\n </div>\n </div>\n <!--Form Objects Filter component -->\n <div class=\"data-view-filter-container\">\n <!-- Dedicated Filters for For Action Task list And Asset list -->\n <lib-data-view-filters class=\"w-full\"\n [screenType]=\"screenType\"\n [selectedViewType]=\"selectedViewType\"\n [filters]=\"dataViews.filters\"\n [appVersionId]=\"appVersionId\"\n [showAssignToButton]=\"showAssignToButton\"\n [dataViews]=\"dataViews\"\n (applyFilterEmit)=\"applyFilter.emit($event)\"\n (resetFilterEmit)=\"resetFilter.emit($event)\"\n [form]=\"axForm\"\n (assign)=\"assign.emit()\"\n (addNewRecord)=\"addNewRecord.emit()\"\n (refreshData)=\"refreshData.emit()\"\n (exportData)=\"exportData.emit($event)\"\n [userEmail]=\"userEmail\">\n </lib-data-view-filters>\n\n <!-- Generic Filter List -->\n <!-- This filter will be used in future for generic task list. -->\n <!-- <axo-filters *ngIf=\"dataViews.type === DataViewType.genericTaskView\" class=\"w-full\"\n [screenType]=\"screenType\"\n [selectedViewType]=\"selectedViewType\"\n [filters]=\"dataViews.filters\"\n (applyFilterEmit)=\"applyFilter.emit($event)\"\n (resetFilterEmit)=\"resetFilter.emit($event)\"\n [form]=\"axForm\"\n [appVersionId]=\"appVersionId\"\n (addNewRecord)=\"addNewRecord.emit()\"\n (refreshData)=\"refreshData.emit()\"\n (exportData)=\"exportData.emit($event)\"\n [userEmail]=\"userEmail\">\n >\n\n </axo-filters> -->\n </div>\n\n </div>\n", styles: ["lib-data-view-header{display:block;width:100%;max-width:100%}lib-data-view-header .data-list-header{margin-top:.5rem;width:100%;max-width:100%}lib-data-view-header .data-list-header .data-view-header-contianer{width:100%;display:flex;align-items:center;justify-content:space-between;margin-right:auto;margin-left:auto;height:3.5rem;padding-left:1.5rem;padding-right:1.5rem;flex-wrap:wrap}@media screen and (max-width: 1024px){lib-data-view-header .data-list-header .data-view-header-contianer{padding-left:1rem;padding-right:1rem;height:6.5rem}}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper{display:flex;column-gap:.75rem;align-items:center;width:calc(100% - 24.875rem)}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper ::ng-deep .mat-select-value{display:none}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .data-view-title{color:#404040;font-size:14px;margin:0;max-width:calc(100% - 7.75rem);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .view-selected{background:#E1E7EF;border-radius:3px}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .data-view-btn-icon{padding:.4rem .2rem}lib-data-view-header .data-list-header .data-view-header-contianer .data-view-dropdown-wrapper .border-right{border-right:.5px solid #C0CCDD}lib-data-view-header .data-list-header .data-view-header-contianer .searchBox-btton-wrapper{display:flex;align-items:center;column-gap:1rem}@media screen and (max-width: 1024px){lib-data-view-header .data-list-header .data-view-header-contianer .searchBox-btton-wrapper{width:100%;justify-content:flex-end}}lib-data-view-header .data-list-header .task-list-group-selection{border:1px solid #636E8D;border-radius:38px;width:9rem;padding:5px 12px;color:#636e8d;font-size:12px}lib-data-view-header .search-bar{width:7rem;height:2rem;margin-top:0;color:#292929}lib-data-view-header .data-view-search-icon{height:1.1rem;width:1.1rem;min-width:1.1rem;min-height:1.1rem}lib-data-view-header .data-view-filter-container{display:flex;align-items:center}.task-list-group-selection-option .mat-option-text{color:#636e8d;font-size:12px}.data-view-filter-container{display:flex;justify-content:space-between;flex-wrap:nowrap;padding:0 1.5rem 1rem;width:100%;max-width:100%}@media screen and (max-width: 1024px){.data-view-filter-container{padding:0 1rem .5rem}}.data-view-select{display:inline-flex!important}.data-view-select .mat-select-value-text{display:none!important}.data-view-header-overlay-panel{margin-top:1.8rem;transform:translate(-1.563rem)!important}\n"] }]
|
|
485
|
+
}], function () { return [{ type: i1.DataViewService }]; }, { taskViewListDropDown: [{
|
|
486
|
+
type: ViewChild,
|
|
487
|
+
args: ['taskViewListDropDown']
|
|
488
|
+
}], listViewListDropDown: [{
|
|
489
|
+
type: ViewChild,
|
|
490
|
+
args: ['listViewListDropDown']
|
|
491
|
+
}], mapViewListDropDown: [{
|
|
492
|
+
type: ViewChild,
|
|
493
|
+
args: ['mapViewListDropDown']
|
|
494
|
+
}], boardViewListDropDown: [{
|
|
495
|
+
type: ViewChild,
|
|
496
|
+
args: ['boardViewListDropDown']
|
|
497
|
+
}], dataViews: [{
|
|
498
|
+
type: Input
|
|
499
|
+
}], axForm: [{
|
|
500
|
+
type: Input
|
|
501
|
+
}], selectedViewType: [{
|
|
502
|
+
type: Input
|
|
503
|
+
}], selectedDataView: [{
|
|
504
|
+
type: Input
|
|
505
|
+
}], screenType: [{
|
|
506
|
+
type: Input
|
|
507
|
+
}], appVersionId: [{
|
|
508
|
+
type: Input
|
|
509
|
+
}], userEmail: [{
|
|
510
|
+
type: Input
|
|
511
|
+
}], showAssignToButton: [{
|
|
512
|
+
type: Input
|
|
513
|
+
}], switchDataView: [{
|
|
514
|
+
type: Output
|
|
515
|
+
}], createNewView: [{
|
|
516
|
+
type: Output
|
|
517
|
+
}], dataViewChanged: [{
|
|
518
|
+
type: Output
|
|
519
|
+
}], applyFilter: [{
|
|
520
|
+
type: Output
|
|
521
|
+
}], resetFilter: [{
|
|
522
|
+
type: Output
|
|
523
|
+
}], taskGroupBy: [{
|
|
524
|
+
type: Output
|
|
525
|
+
}], searchEvent: [{
|
|
526
|
+
type: Output
|
|
527
|
+
}], addNewRecord: [{
|
|
528
|
+
type: Output
|
|
529
|
+
}], refreshData: [{
|
|
530
|
+
type: Output
|
|
531
|
+
}], exportData: [{
|
|
532
|
+
type: Output
|
|
533
|
+
}], assign: [{
|
|
534
|
+
type: Output
|
|
535
|
+
}] }); })();
|
|
536
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS12aWV3LWhlYWRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9kYXRhLXZpZXctbGliL2RhdGEtdmlldy1oZWFkZXIvZGF0YS12aWV3LWhlYWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9kYXRhLXZpZXctbGliL2RhdGEtdmlldy1oZWFkZXIvZGF0YS12aWV3LWhlYWRlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM3RyxPQUFPLEVBQUUsWUFBWSxFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUV0RixPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDN0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2xELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDdkQsT0FBTyxDQUFDLE1BQU0sUUFBUSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDOzs7Ozs7Ozs7SUNRN0Msc0NBQStHO0lBQXRELG9RQUFTLCtEQUEyQyxJQUFDO0lBQUMsWUFDL0c7SUFBQSxpQkFBYTs7O0lBRGtHLGVBQy9HO0lBRCtHLGlEQUMvRzs7O0lBSEosK0JBQTRGO0lBQ3hGLDBDQUFrRTtJQUNsRSx5R0FDYTtJQUNiLGlCQUFhO0lBQ2pCLGlCQUFNOzs7SUFKZ0MsZUFBK0I7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QkFBb0I7a0JBQXRELFNBQVM7bUJBQUMsc0JBQXNCO1lBQ0Usb0JBQW9CO2tCQUF0RCxTQUFTO21CQUFDLHNCQUFzQjtZQUNDLG1CQUFtQjtrQkFBcEQsU0FBUzttQkFBQyxxQkFBcUI7WUFDSSxxQkFBcUI7a0JBQXhELFNBQVM7bUJBQUMsdUJBQXVCO1lBR3pCLFNBQVM7a0JBQWpCLEtBQUs7WUFDRyxNQUFNO2tCQUFkLEtBQUs7WUFDRyxnQkFBZ0I7a0JBQXhCLEtBQUs7WUFDRyxnQkFBZ0I7a0JBQXhCLEtBQUs7WUFDRyxVQUFVO2tCQUFsQixLQUFLO1lBQ0csWUFBWTtrQkFBcEIsS0FBSztZQUNHLFNBQVM7a0JBQWpCLEtBQUs7WUFDRyxrQkFBa0I7a0JBQTFCLEtBQUs7WUFFSSxjQUFjO2tCQUF2QixNQUFNO1lBQ0csYUFBYTtrQkFBdEIsTUFBTTtZQUNHLGVBQWU7a0JBQXhCLE1BQU07WUFDRyxXQUFXO2tCQUFwQixNQUFNO1lBQ0csV0FBVztrQkFBcEIsTUFBTTtZQUNHLFdBQVc7a0JBQXBCLE1BQU07WUFDRyxXQUFXO2tCQUFwQixNQUFNO1lBQ0csWUFBWTtrQkFBckIsTUFBTTtZQUNHLFdBQVc7a0JBQXBCLE1BQU07WUFDRyxVQUFVO2tCQUFuQixNQUFNO1lBQ0csTUFBTTtrQkFBZixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCwgVmlld0NoaWxkLCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRGF0YVZpZXdUeXBlLCBUYXNrR3JvdXBUeXBlcywgVmlld1R5cGUgfSBmcm9tICcuLi9kYXRhLXZpZXcvZGF0YS12aWV3LWVudW1zJztcbmltcG9ydCB7IElEYXRhVmlldyB9IGZyb20gJy4uL2RhdGEtdmlldy9pZGF0YS12aWV3JztcbmltcG9ydCB7IEF4Rm9ybSB9IGZyb20gJy4uLy4uL2Zvcm1zL2F4LWZvcm0nO1xuaW1wb3J0IHsgRGF0YVZpZXcgfSBmcm9tICcuLi9kYXRhLXZpZXcvZGF0YS12aWV3JztcbmltcG9ydCB7IFNjcmVlblR5cGUgfSBmcm9tICcuLi8uLi9lbmxpZ2h0ZW4tbGliL2ZpbHRlcnMvY29uZGl0aW9uLXR5cGUnO1xuaW1wb3J0IHsgRGF0YVZpZXdTZXJ2aWNlIH0gZnJvbSAnLi4vZGF0YS12aWV3LnNlcnZpY2UnO1xuaW1wb3J0IF8gZnJvbSAnbG9kYXNoJztcbmltcG9ydCB7IE1BVF9TRUxFQ1RfQ09ORklHIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc2VsZWN0JztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWRhdGEtdmlldy1oZWFkZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0YS12aWV3LWhlYWRlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2RhdGEtdmlldy1oZWFkZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgICBwcm92aWRlOiBNQVRfU0VMRUNUX0NPTkZJRyxcbiAgICAgICAgdXNlVmFsdWU6IHsgb3ZlcmxheVBhbmVsQ2xhc3M6ICdkYXRhLXZpZXctaGVhZGVyLW92ZXJsYXktcGFuZWwnIH0sXG4gICAgfVxuXVxufSlcbmV4cG9ydCBjbGFzcyBEYXRhVmlld0hlYWRlckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIC8vIDwtLS0tLS0tLS0tLSBWaWV3IENoaWxkIC0tLS0tLS0tLS0+XG4gIEBWaWV3Q2hpbGQoJ3Rhc2tWaWV3TGlzdERyb3BEb3duJykgdGFza1ZpZXdMaXN0RHJvcERvd247XG4gIEBWaWV3Q2hpbGQoJ2xpc3RWaWV3TGlzdERyb3BEb3duJykgbGlzdFZpZXdMaXN0RHJvcERvd247XG4gIEBWaWV3Q2hpbGQoJ21hcFZpZXdMaXN0RHJvcERvd24nKSBtYXBWaWV3TGlzdERyb3BEb3duO1xuICBAVmlld0NoaWxkKCdib2FyZFZpZXdMaXN0RHJvcERvd24nKSBib2FyZFZpZXdMaXN0RHJvcERvd247XG5cbiAgLy88IC0tLS0tLS0gIElucHV0cyAtLS0tLS0tLS0tLS0tLS0tPlxuICBASW5wdXQoKSBkYXRhVmlld3M6IERhdGFWaWV3O1xuICBASW5wdXQoKSBheEZvcm06IEF4Rm9ybTtcbiAgQElucHV0KCkgc2VsZWN0ZWRWaWV3VHlwZTogVmlld1R5cGU7XG4gIEBJbnB1dCgpIHNlbGVjdGVkRGF0YVZpZXc6IElEYXRhVmlldztcbiAgQElucHV0KCkgc2NyZWVuVHlwZTogU2NyZWVuVHlwZTtcbiAgQElucHV0KCkgYXBwVmVyc2lvbklkOiBudW1iZXI7XG4gIEBJbnB1dCgpIHVzZXJFbWFpbDogc3RyaW5nO1xuICBASW5wdXQoKSBzaG93QXNzaWduVG9CdXR0b246IGJvb2xlYW47XG4gIC8vIDwtLS0tLS0tLSBPdXRwdXRzIC0tLS0tLS0tLS0tLS0tLT5cbiAgQE91dHB1dCgpIHN3aXRjaERhdGFWaWV3OiBFdmVudEVtaXR0ZXI8Vmlld1R5cGU+ID0gbmV3IEV2ZW50RW1pdHRlcjxWaWV3VHlwZT4oKTtcbiAgQE91dHB1dCgpIGNyZWF0ZU5ld1ZpZXc6IEV2ZW50RW1pdHRlcjxWaWV3VHlwZT4gPSBuZXcgRXZlbnRFbWl0dGVyPFZpZXdUeXBlPigpO1xuICBAT3V0cHV0KCkgZGF0YVZpZXdDaGFuZ2VkOiBFdmVudEVtaXR0ZXI8SURhdGFWaWV3PiA9IG5ldyBFdmVudEVtaXR0ZXI8SURhdGFWaWV3PigpO1xuICBAT3V0cHV0KCkgYXBwbHlGaWx0ZXIgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcbiAgQE91dHB1dCgpIHJlc2V0RmlsdGVyID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG4gIEBPdXRwdXQoKSB0YXNrR3JvdXBCeSA9IG5ldyBFdmVudEVtaXR0ZXI8VGFza0dyb3VwVHlwZXM+KCk7XG4gIEBPdXRwdXQoKSBzZWFyY2hFdmVudCA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuICBAT3V0cHV0KCkgYWRkTmV3UmVjb3JkID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG4gIEBPdXRwdXQoKSByZWZyZXNoRGF0YSA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuICBAT3V0cHV0KCkgZXhwb3J0RGF0YSA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuICBAT3V0cHV0KCkgYXNzaWduID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG5cblxuICBzaG93U2VhcmNoOiBib29sZWFuID0gZmFsc2U7XG4gIHNlYXJjaFRleHQ6IHN0cmluZyA9ICcnO1xuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIF9kYXRhVmlld1NlcnZpY2U6IERhdGFWaWV3U2VydmljZVxuICApIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbiAgLyoqXG4gICAqIEdldHRlciBmb3IgZGF0YVZpZXdUeXBlXG4gICAqL1xuICAgZ2V0IERhdGFWaWV3VHlwZSgpe1xuICAgIHJldHVybiBEYXRhVmlld1R5cGU7XG4gIH1cbiAgLyoqXG4gICAqIEdldHRlciBmb3IgVmlld1R5cGVcbiAgICovXG4gICBnZXQgVmlld1R5cGUoKXtcbiAgICByZXR1cm4gVmlld1R5cGU7XG4gIH1cblxuICAvKipcbiAgICogR2V0dGVyIGZvciBzY3JlZW4gdHlwZVxuICAgKi9cbiAgZ2V0IFNjcmVlblR5cGUoKXtcbiAgICByZXR1cm4gU2NyZWVuVHlwZTtcbiAgfVxuXG4gIC8qKlxuICAgKiBHZXR0ZXIgZm9yIHRhc2sgZ3JvdXAgdHlwZXNcbiAgICovXG4gIGdldCBUYXNrR3JvdXBUeXBlKCl7XG4gICAgcmV0dXJuIFRhc2tHcm91cFR5cGVzO1xuICB9XG5cbiAgLyoqXG4gICAqIGNoYW5nZSBzZWxlY3RlZCBkYXRhIHZpZXdcbiAgICpcbiAgICogQHBhcmFtIGV2ZW50XG4gICAqL1xuICBjaGFuZ2VEYXRhVmlldyhib2FyZFZpZXc6IElEYXRhVmlldyxzZWxlY3RlZFZpZXdUeXBlOiBWaWV3VHlwZSk6IHZvaWR7XG4gICAgdGhpcy5zZWxlY3RlZFZpZXdUeXBlID0gc2VsZWN0ZWRWaWV3VHlwZTtcbiAgICB0aGlzLnNlbGVjdGVkRGF0YVZpZXcgPSBib2FyZFZpZXc7XG4gICAgdGhpcy5kYXRhVmlld0NoYW5nZWQuZW1pdCh0aGlzLnNlbGVjdGVkRGF0YVZpZXcpO1xuICB9XG5cbiAgLyoqXG4gICAqIFN3aXRjaCBzZWxlY3RlZCBkYXRhIHZpZXdcbiAgICpcbiAgICogQHBhcmFtIGRhdGFWaWV3VHlwZVxuICAgKi9cbiAgc3dpdGNoVmlldyhkYXRhVmlld1R5cGU6IFZpZXdUeXBlKTogdm9pZHtcbiAgICAvLyBTd2l0Y2ggZGF0YSB2aWV3IG9ubHkgaWYgdmlld3MgYXJlIGdyZWF0ZXIgdGhhbiAxIGVsc2Ugb3BlbiBkcm9wZG93blxuICAgIGlmKFxuICAgICAgKGRhdGFWaWV3VHlwZSA9PT0gVmlld1R5cGUuQm9hcmRWaWV3ICYmICB0aGlzLmRhdGFWaWV3cy5ib2FyZFZpZXdzLmxlbmd0aCA8PSAxKSB8fFxuICAgICAgKGRhdGFWaWV3VHlwZSA9PT0gVmlld1R5cGUuRGF0YUxpc3RWaWV3ICYmICB0aGlzLmRhdGFWaWV3cy5saXN0Vmlld3MubGVuZ3RoIDw9IDEpIHx8XG4gICAgICAoZGF0YVZpZXdUeXBlID09PSBWaWV3VHlwZS5NYXBWaWV3ICYmICB0aGlzLmRhdGFWaWV3cy5tYXBWaWV3cy5sZW5ndGggPD0gMSkgfHxcbiAgICAgIChkYXRhVmlld1R5cGUgPT09IFZpZXdUeXBlLlRhc2tWaWV3ICYmICB0aGlzLmRhdGFWaWV3cy50YXNrVmlld3MubGVuZ3RoIDw9IDEpXG4gICAgICApe1xuICAgICAgdGhpcy5zd2l0Y2hEYXRhVmlldy5lbWl0KGRhdGFWaWV3VHlwZSk7XG4gICAgfWVsc2V7XG4gICAgICBzd2l0Y2goZGF0YVZpZXdUeXBlKXtcbiAgICAgICAgY2FzZSBWaWV3VHlwZS5EYXRhTGlzdFZpZXc6XG4gICAgICAgICAgdGhpcy5saXN0Vmlld0xpc3REcm9wRG93bi5vcGVuKCk7XG4gICAgICAgICAgYnJlYWs7XG4gICAgICAgIGNhc2UgVmlld1R5cGUuTWFwVmlldzpcbiAgICAgICAgICB0aGlzLm1hcFZpZXdMaXN0RHJvcERvd24ub3BlbigpO1xuICAgICAgICAgIGJyZWFrO1xuICAgICAgICBjYXNlIFZpZXdUeXBlLkJvYXJkVmlldzpcbiAgICAgICAgICB0aGlzLmJvYXJkVmlld0xpc3REcm9wRG93bi5vcGVuKCk7XG4gICAgICB9XG4gICAgfVxuXG5cbiAgfVxuXG4gIC8qKlxuICAgKiBDcmVhdGUgQ2FjaGVcbiAgICovXG4gIGNyZWF0ZUNhY2hlKCk6IHZvaWQge1xuICAgIGlmKHRoaXMuc2VsZWN0ZWRWaWV3VHlwZSA9PT0gVmlld1R5cGUuQm9hcmRWaWV3KXtcbiAgICAgICAgdGhpcy5fZGF0YVZpZXdTZXJ2aWNlLmNyZWF0ZUJvYXJkVmlld0NhY2hlKHRoaXMuc2VsZWN0ZWREYXRhVmlldy5pZCkudGhlbigocmVzcG9uc2UpPT57XG4gICAgICAgICAgICBjb25zb2xlLmxvZygnQ2FjaGUgQ3JlYXRlZC4nKTtcbiAgICAgICAgfSkuY2F0Y2goKGVycm9yKT0+e1xuICAgICAgICAgICAgY29uc29sZS5lcnJvcihlcnJvcik7XG4gICAgICAgIH0pO1xuICAgIH1lbHNlIGlmKHRoaXMuc2VsZWN0ZWRWaWV3VHlwZSA9PT0gVmlld1R5cGUuTWFwVmlldyl7XG4gICAgICAgIHRoaXMuX2RhdGFWaWV3U2VydmljZS5jcmVhdGVNYXBWaWV3Q2FjaGUodGhpcy5zZWxlY3RlZERhdGFWaWV3LmlkKS50aGVuKChyZXNwb25zZSk9PntcbiAgICAgICAgICAgIGNvbnNvbGUubG9nKCdDYWNoZSBDcmVhdGVkLicpO1xuICAgICAgICB9KS5jYXRjaCgoZXJyb3IpPT57XG4gICAgICAgICAgICBjb25zb2xlLmVycm9yKGVycm9yKTtcbiAgICAgICAgfSk7XG4gICAgfVxuICB9XG5cbiAgLyoqXG4gICAqIHRoaXMgZnVuY3Rpb24gaXMgZm9yIHNob3dpbmcgdGhlIHNlYXJjaCBib3hcbiAgICovXG4gIHNob3dTZWFyY2hCb3goKTogdm9pZCB7XG4gICAgdGhpcy5zaG93U2VhcmNoID0gIXRoaXMuc2hvd1NlYXJjaDtcbiAgICBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgnZmllbGQtc2VhcmNoJykuZm9jdXMoKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBjbGVhciB0aGUgc2VhcmNoIGJveFxuICAgKi9cbiAgY2xlYXIoKTogdm9pZCB7XG4gICAgaWYgKF8uaXNFbXB0eSh0aGlzLnNlYXJjaFRleHQpKSB7XG4gICAgIHRoaXMuc2hvd1NlYXJjaCA9ICF0aGlzLnNob3dTZWFyY2g7XG4gICAgfVxuICAgIHRoaXMuc2VhcmNoVGV4dCA9ICcnO1xuICAgIHRoaXMuZ2V0U2VhcmNoZWREYXRhKHRoaXMuc2VhcmNoVGV4dCk7XG4gIH1cblxuXG4gIC8qKlxuICAgKlxuICAgKiBAcGFyYW0gc2VhcmNoVmFsdWVcbiAgICovXG4gICBnZXRTZWFyY2hlZERhdGEoc2VhcmNoVmFsdWU/OiBzdHJpbmcpOiB2b2lkIHtcbiAgICB0aGlzLnNlYXJjaFRleHQgPSBzZWFyY2hWYWx1ZTtcbiAgICB0aGlzLnNlYXJjaEV2ZW50LmVtaXQodGhpcy5zZWFyY2hUZXh0KTtcbiAgfVxuXG59XG4iLCI8ZGl2IGNsYXNzPVwic3RpY2t5IHRvcC0wIGRhdGEtbGlzdC1oZWFkZXJcIiBbbmdDbGFzc109XCJ7J210LTMnIDogZGF0YVZpZXdzLnRhc2tWaWV3cy5sZW5ndGggPiAwIHx8IGRhdGFWaWV3cy5tYXBWaWV3cy5sZW5ndGggID4gMCB8fCBkYXRhVmlld3MuYm9hcmRWaWV3cy5sZW5ndGggPiAwIHx8IChkYXRhVmlld3MubGlzdFZpZXdzLmxlbmd0aCA+IDAgJiYgc2NyZWVuVHlwZSA9PT0gU2NyZWVuVHlwZS5kYXRhVmlldyl9XCI+XG4gIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWJldHdlZW5cIj5cbiAgICA8IS0tIFRpdGxlIGhlYWRlciAtLT5cbiAgICA8ZGl2IGNsYXNzPVwiZGF0YS12aWV3LWhlYWRlci1jb250aWFuZXJcIiAqbmdJZj1cImRhdGFWaWV3cy5saXN0Vmlld3MubGVuZ3RoID4gMXx8IGRhdGFWaWV3cy50YXNrVmlld3MubGVuZ3RoID4gMSB8fCBkYXRhVmlld3MubWFwVmlld3MubGVuZ3RoICA+IDAgfHwgZGF0YVZpZXdzLmJvYXJkVmlld3MubGVuZ3RoID4gMCB8fCBzY3JlZW5UeXBlID09PSBTY3JlZW5UeXBlLmRhdGFWaWV3QnVpbGRlclwiPlxuICAgICAgPGRpdiBjbGFzcz1cImRhdGEtdmlldy1kcm9wZG93bi13cmFwcGVyXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLXZpZXctdGl0bGUgYXhvLWZvbnRcIiBbbmdDbGFzc109XCJ7J3Rhc2stdmlldy10aXRsZScgOiBzZWxlY3RlZFZpZXdUeXBlID09PSBWaWV3VHlwZS5UYXNrVmlld31cIiBbbWF0VG9vbHRpcF09XCJzZWxlY3RlZERhdGFWaWV3Py5uYW1lXCI+XG4gICAgICAgICAge3tzZWxlY3RlZERhdGFWaWV3Py5uYW1lfX08L2Rpdj5cbiAgICAgICAgPCEtLSBUYXNrIExpc3QgdmlldyBEcm9wZG93biAtLT5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGN1cnNvci1wb2ludGVyIGljb24tYnRuXCIgKm5nSWY9XCJkYXRhVmlld3MudGFza1ZpZXdzLmxlbmd0aCA+IDAgJiYgZGF0YVZpZXdzLnR5cGUgIT09IERhdGFWaWV3VHlwZS5nZW5lcmljVGFza1ZpZXdcIlxuICAgICAgICAgICAgW25nQ2xhc3NdPVwieyd2aWV3LXNlbGVjdGVkJzpzZWxlY3RlZFZpZXdUeXBlID09PSBWaWV3VHlwZS5UYXNrVmlld31cIiAoY2xpY2spPVwic3dpdGNoVmlldyhWaWV3VHlwZS5UYXNrVmlldylcIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBkYXRhLXZpZXctYnRuLWljb25cIlxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnYm9yZGVyLXJpZ2h0JzpzZWxlY3RlZFZpZXdUeXBlID09PSBWaWV3VHlwZS5UYXNrVmlldyAmJiBkYXRhVmlld3MudGFza1ZpZXdzLmxlbmd0aCA+IDF9XCI+XG4gICAgICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwic2VhcmNoLWljb24gaC00IG1pbi13LTQgbWluLWgtNCB3LTRcIiBbc3ZnSWNvbl09XCInYXhvX2xpc3QnXCIgPjwvbWF0LWljb24+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBkYXRhLXZpZXctbWF0LXNlbGVjdFwiICpuZ0lmPVwiZGF0YVZpZXdzLmxpc3RWaWV3cy5sZW5ndGggPiAxIFwiPlxuICAgICAgICAgICAgICAgIDxtYXQtc2VsZWN0ICN0YXNrVmlld0xpc3REcm9wRG93biBbZGlzYWJsZU9wdGlvbkNlbnRlcmluZ109XCJ0cnVlXCI+XG4gICAgICAgICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHRhc2tWaWV3IG9mIGRhdGFWaWV3cy50YXNrVmlld3NcIiAoY2xpY2spPVwiY2hhbmdlRGF0YVZpZXcodGFza1ZpZXcsVmlld1R5cGUuVGFza1ZpZXcgKVwiPnt7dGFza1ZpZXcubmFtZX19XG4gICAgICAgICAgICAgICAgPC9tYXQtb3B0aW9uPlxuICAgICAgICAgICAgICAgIDwvbWF0LXNlbGVjdD5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cblxuICAgICAgICA8IS0tIERhdGEgTGlzdCB2aWV3IERyb3Bkb3duIC0tPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgY3Vyc29yLXBvaW50ZXIgaWNvbi1idG5cIiAqbmdJZj1cImRhdGFWaWV3cy50YXNrVmlld3MubGVuZ3RoID09PSAwICYmKGRhdGFWaWV3cy5saXN0Vmlld3MubGVuZ3RoID4gMCB8fCBzY3JlZW5UeXBlID09PSBTY3JlZW5UeXBlLmRhdGFWaWV3QnVpbGRlcilcIlxuICAgICAgICAgIFtuZ0NsYXNzXT1cInsndmlldy1zZWxlY3RlZCc6c2VsZWN0ZWRWaWV3VHlwZSA9PT0gVmlld1R5cGUuRGF0YUxpc3RWaWV3fVwiIChjbGljayk9XCJzd2l0Y2hWaWV3KFZpZXdUeXBlLkRhdGFMaXN0VmlldylcIj5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgZGF0YS12aWV3LWJ0bi1pY29uIFwiXG4gICAgICAgICAgICBbbmdDbGFzc109XCJ7J2JvcmRlci1yaWdodCc6c2VsZWN0ZWRWaWV3VHlwZSA9PT0gVmlld1R5cGUuRGF0YUxpc3RWaWV3ICYmIGRhdGFWaWV3cy5saXN0Vmlld3MubGVuZ3RoID4gMX1cIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cInNlYXJjaC1pY29uIGgtNCBtaW4tdy00IG1pbi1oLTQgdy00XCIgW3N2Z0ljb25dPVwiJ2F4b19saXN0J1wiID48L21hdC1pY29uPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBkYXRhLXZpZXctbWF0LXNlbGVjdFwiICpuZ0lmPVwiZGF0YVZpZXdzLmxpc3RWaWV3cy5sZW5ndGggPiAxIFwiPlxuICAgICAgICAgICAgPG1hdC1zZWxlY3QgI2xpc3RWaWV3TGlzdERyb3BEb3duIGNsYXNzPVwiZGF0YS12aWV3LXNlbGVjdFwiIFtkaXNhYmxlT3B0aW9uQ2VudGVyaW5nXT1cInRydWVcIj5cbiAgICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJkYXRhVmlld3MubGlzdFZpZXdzXCIgKm5nRm9yPVwibGV0IGxpc3RWaWV3IG9mIGRhdGFWaWV3cy5saXN0Vmlld3NcIiAoY2xpY2spPVwiY2hhbmdlRGF0YVZpZXcobGlzdFZpZXcsVmlld1R5cGUuRGF0YUxpc3RWaWV3IClcIj57e2xpc3RWaWV3Lm5hbWV9fVxuICAgICAgICAgICAgICA8L21hdC1vcHRpb24+XG4gICAgICAgICAgICA8L21hdC1zZWxlY3Q+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuXG4gICAgICAgIDwhLS0gRGF0YSBNYXAgdmlldyBEcm9wZG93biAtLT5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGN1cnNvci1wb2ludGVyIGljb24tYnRuXCIgKm5nSWY9XCJkYXRhVmlld3MubWFwVmlld3MubGVuZ3RoID4gMCB8fCBzY3JlZW5UeXBlID09PSBTY3JlZW5UeXBlLmRhdGFWaWV3QnVpbGRlclwiXG4gICAgICAgICAgW25nQ2xhc3NdPVwieyd2aWV3LXNlbGVjdGVkJzpzZWxlY3RlZFZpZXdUeXBlID09PSBWaWV3VHlwZS5NYXBWaWV3fVwiIChjbGljayk9XCJzd2l0Y2hWaWV3KFZpZXdUeXBlLk1hcFZpZXcpXCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGRhdGEtdmlldy1idG4taWNvbiBcIlxuICAgICAgICAgICAgW25nQ2xhc3NdPVwieydib3JkZXItcmlnaHQnOnNlbGVjdGVkVmlld1R5cGUgPT09IFZpZXdUeXBlLk1hcFZpZXcgJiYgZGF0YVZpZXdzLm1hcFZpZXdzLmxlbmd0aCA+IDF9XCI+XG4gICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJzZWFyY2gtaWNvbiBoLTQgbWluLXctNCBtaW4taC00IHctNFwiIFtzdmdJY29uXT1cIidheG9fbG9jYXRpb24nXCIgPjwvbWF0LWljb24+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGRhdGEtdmlldy1tYXQtc2VsZWN0XCIgKm5nSWY9XCJkYXRhVmlld3MubWFwVmlld3MubGVuZ3RoID4gMVwiPlxuICAgICAgICAgICAgPG1hdC1zZWxlY3QgI21hcFZpZXdMaXN0RHJvcERvd24gY2xhc3M9XCJkYXRhLXZpZXctc2VsZWN0XCIgW2Rpc2FibGVPcHRpb25DZW50ZXJpbmddPVwidHJ1ZVwiPlxuICAgICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cImRhdGFWaWV3cy5tYXBWaWV3c1wiICpuZ0Zvcj1cImxldCBtYXBWaWV3IG9mIGRhdGFWaWV3cy5tYXBWaWV3c1wiIChjbGljayk9XCJjaGFuZ2VEYXRhVmlldyhtYXBWaWV3LFZpZXdUeXBlLk1hcFZpZXcgKVwiPnt7bWFwVmlldy5uYW1lfX08L21hdC1vcHRpb24+XG4gICAgICAgICAgICA8L21hdC1zZWxlY3Q+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuXG4gICAgICAgIDwhLS0gRGF0YSBCb2FyZCB2aWV3IERyb3Bkb3duIC0tPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgY3Vyc29yLXBvaW50ZXIgaWNvbi1idG5cIiAqbmdJZj1cImRhdGFWaWV3cy5ib2FyZFZpZXdzLmxlbmd0aCA+IDAgfHwgc2NyZWVuVHlwZSA9PT0gU2NyZWVuVHlwZS5kYXRhVmlld0J1aWxkZXJcIlxuICAgICAgICAgIFtuZ0NsYXNzXT1cInsndmlldy1zZWxlY3RlZCc6c2VsZWN0ZWRWaWV3VHlwZSA9PT0gVmlld1R5cGUuQm9hcmRWaWV3fVwiIChjbGljayk9XCJzd2l0Y2hWaWV3KFZpZXdUeXBlLkJvYXJkVmlldylcIj5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgZGF0YS12aWV3LWJ0bi1pY29uXCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnYm9yZGVyLXJpZ2h0JzpzZWxlY3RlZFZpZXdUeXBlID09PSBWaWV3VHlwZS5Cb2FyZFZpZXcgJiYgZGF0YVZpZXdzLmJvYXJkVmlld3MubGVuZ3RoID4gMX1cIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImgtNCBtaW4tdy00IG1pbi1oLTQgdy00XCIgW3N2Z0ljb25dPVwiJ2F4b19ncmlkJ1wiID48L21hdC1pY29uPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBkYXRhLXZpZXctbWF0LXNlbGVjdFwiICpuZ0lmPVwiZGF0YVZpZXdzLmJvYXJkVmlld3MubGVuZ3RoID4gMVwiPlxuICAgICAgICAgICAgPG1hdC1zZWxlY3QgI2JvYXJkVmlld0xpc3REcm9wRG93biAgY2xhc3M9XCJkYXRhLXZpZXctc2VsZWN0XCIgW2Rpc2FibGVPcHRpb25DZW50ZXJpbmddPVwidHJ1ZVwiPlxuICAgICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cImRhdGFWaWV3cy5ib2FyZFZpZXdzXCIgICpuZ0Zvcj1cImxldCBib2FyZFZpZXcgb2YgZGF0YVZpZXdzLmJvYXJkVmlld3NcIiAoY2xpY2spPVwiY2hhbmdlRGF0YVZpZXcoYm9hcmRWaWV3LFZpZXdUeXBlLkJvYXJkVmlldylcIj57e2JvYXJkVmlldy5uYW1lfX1cbiAgICAgICAgICAgICAgPC9tYXQtb3B0aW9uPlxuICAgICAgICAgICAgPC9tYXQtc2VsZWN0PlxuICAgICAgICAgIDwvZGl2PlxuXG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwic2VhcmNoQm94LWJ0dG9uLXdyYXBwZXJcIiA+XG4gICAgICAgIDwhLS0gU2VhcmNoIEJveCBTdGFydC0tPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXRlbXMtY2VudGVyIGZsZXhcIiBbbmdDbGFzc109XCJ7J3NlYXJjaC1maWVsZC1ib3JkZXInIDogc2hvd1NlYXJjaH1cIj5cbiAgICAgICAgICA8YnV0dG9uIChjbGljayk9XCJzaG93U2VhcmNoQm94KClcIiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyXCIgW25nQ2xhc3NdPVwieydtbC0xJyA6IHNob3dTZWFyY2h9XCIgKm5nSWY9XCJzaG93U2VhcmNoXCI+XG4gICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJkYXRhLXZpZXctc2VhcmNoLWljb25cIlxuICAgICAgICAgICAgICBbc3ZnSWNvbl09XCInaGVyb2ljb25zX3NvbGlkOnNlYXJjaCdcIiBbbmdDbGFzc109XCJ7J3ctNiBtaW4tdy02IGgtNiBtaW4taC02JyA6ICFzaG93U2VhcmNofVwiPjwvbWF0LWljb24+XG4gICAgICAgICAgPC9idXR0b24+XG4gICAgICAgICAgPGlucHV0IGlkPVwiZmllbGQtc2VhcmNoXCIgYXV0b2NvbXBsZXRlPVwib2ZmXCIgcGxhY2Vob2xkZXI9XCJTZWFyY2guLi5cIiBtYXRJbnB1dCBjbGFzcz1cInNlYXJjaC1iYXIgY2hhcnQtdGl0bGVcIlxuICAgICAgICAgICAgKGtleXVwKT1cImdldFNlYXJjaGVkRGF0YSgkZXZlbnQudGFyZ2V0Wyd2YWx1ZSddKVwiIFtzdHlsZS53aWR0aF09XCIhc2hvd1NlYXJjaCA/ICcwJyA6ICcxMDAlJ1wiLz5cbiAgICAgICAgICA8bWF0LWljb24gKGNsaWNrKT1cImNsZWFyKClcIiAqbmdJZj1cInNob3dTZWFyY2hcIiBjbGFzcz1cImNsZWFyX2ljb24gdGV4dC1iYXNlIGN1cnNvci1wb2ludGVyXCI+Y2xlYXI8L21hdC1pY29uPlxuICAgICAgICAgIDxidXR0b24gKGNsaWNrKT1cInNob3dTZWFyY2hCb3goKVwiIGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgaWNvbi1idG5cIiAqbmdJZj1cIiFzaG93U2VhcmNoXCI+XG4gICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJkYXRhLXZpZXctc2VhcmNoLWljb25cIlxuICAgICAgICAgICAgICBbc3ZnSWNvbl09XCInaGVyb2ljb25zX3NvbGlkOnNlYXJjaCdcIiBbbmdDbGFzc109XCJ7J3ctNiBtaW4tdy02IGgtNiBtaW4taC02JyA6ICFzaG93U2VhcmNofVwiPjwvbWF0LWljb24+XG4gICAgICAgICAgPC9idXR0b24+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8IS0tIENvbmZpZ3VyZSBJbmZvIFdpbmRvdyBidXR0b24gZm9yIG1hcCB2aWV3IGFuZCBib2FyZCB2aWV3IC0tPlxuICAgICAgICA8YnV0dG9uICpuZ0lmPVwic2VsZWN0ZWREYXRhVmlldyAmJiBzY3JlZW5UeXBlID09PSBTY3JlZW5UeXBlLmRhdGFWaWV3QnVpbGRlciAmJiAoc2VsZWN0ZWRWaWV3VHlwZSA9PT0gVmlld1R5cGUuQm9hcmRWaWV3IHx8IHNlbGVjdGVkVmlld1R5cGUgPT09IFZpZXdUeXBlLk1hcFZpZXcpICYmIHNlbGVjdGVkRGF0YVZpZXcuaWRcIiBjbGFzcz1cInByaW1hcnktYnRuIGF4by1mb250XCIgKGNsaWNrKT1cImNyZWF0ZUNhY2hlKClcIj5Db25maWd1cmUgSW5mbyBXaW5kb3c8L2J1dHRvbj5cbiAgICAgICAgPCEtLSBHcm91cCBieSBkcm9wZG93biBmb3IgVGFzayBMaXN0IC0tPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiaXRlbXMtY2VudGVyIHNlYXJjaC1maWVsZCBmbGV4XCIgKm5nSWY9XCJkYXRhVmlld3MudHlwZSA9PT0gRGF0YVZpZXdUeXBlLmdlbmVyaWNUYXNrVmlld1wiPlxuICAgICAgICAgICAgICA8bWF0LXNlbGVjdCBwbGFjZWhvbGRlcj1cIkdyb3VwIEJ5XCIgW2Rpc2FibGVPcHRpb25DZW50ZXJpbmddPVwidHJ1ZVwiIGNsYXNzPVwidGFzay1saXN0LWdyb3VwLXNlbGVjdGlvbiBheG8tZm9udFwiPlxuICAgICAgICAgICAgICAgIDxtYXQtb3B0aW9uIChjbGljayk9XCJ0YXNrR3JvdXBCeS5lbWl0KCcnKVwiICB2YWx1ZT1cIlwiIGNsYXNzPVwidGFzay1saXN0LWdyb3VwLXNlbGVjdGlvbi1vcHRpb24gYXhvLWZvbnRcIj5Ob25lPC9tYXQtb3B0aW9uPlxuICAgICAgICAgICAgICAgIDxtYXQtb3B0aW9uIChjbGljayk9XCJ0YXNrR3JvdXBCeS5lbWl0KFRhc2tHcm91cFR5cGUud29ya2Zsb3dJbnN0YW5jZSlcIiB2YWx1ZT1cIldvcmtmbG93SW5zdGFuY2VcIiBjbGFzcz1cInRhc2stbGlzdC1ncm91cC1zZWxlY3Rpb24tb3B0aW9uIGF4by1mb250XCI+V29ya2Zsb3dJbnN0YW5jZTwvbWF0LW9wdGlvbj5cbiAgICAgICAgICAgICAgICA8IS0tIDxtYXQtb3B0aW9uIChjbGljayk9XCJ0YXNrR3JvdXBCeS5lbWl0KFRhc2tHcm91cFR5cGUudXNlcikgXCJ2YWx1ZT1cIlVzZXJcIiBjbGFzcz1cInRhc2stbGlzdC1ncm91cC1zZWxlY3Rpb24tb3B0aW9uIGF4by1mb250XCI+VXNlcjwvbWF0LW9wdGlvbj4gLS0+XG4gICAgICAgICAgICAgIDwvbWF0LXNlbGVjdD5cbiAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPGJ1dHRvbiAqbmdJZj1cInNjcmVlblR5cGUgPT09IFNjcmVlblR5cGUuZGF0YVZpZXdCdWlsZGVyICYmIFZpZXdUeXBlLlRhc2tWaWV3ICE9PSBzZWxlY3RlZFZpZXdUeXBlXCIgY2xhc3M9XCJwcmltYXJ5LWJ0biBheG8tZm9udFwiIChjbGljayk9XCJjcmVhdGVOZXdWaWV3LmVtaXQoc2VsZWN0ZWRWaWV3VHlwZSlcIj4gQ3JlYXRlIHt7c2VsZWN0ZWRWaWV3VHlwZX19PC9idXR0b24+XG4gICAgICA8L2Rpdj5cblxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbiAgICA8IS0tRm9ybSBPYmplY3RzIEZpbHRlciBjb21wb25lbnQgLS0+XG4gICAgPGRpdiBjbGFzcz1cImRhdGEtdmlldy1maWx0ZXItY29udGFpbmVyXCI+XG4gICAgPCEtLSBEZWRpY2F0ZWQgRmlsdGVycyBmb3IgRm9yIEFjdGlvbiBUYXNrIGxpc3QgQW5kIEFzc2V0IGxpc3QgLS0+XG4gICAgPGxpYi1kYXRhLXZpZXctZmlsdGVycyAgY2xhc3M9XCJ3LWZ1bGxcIlxuICAgICAgICAgIFtzY3JlZW5UeXBlXT1cInNjcmVlblR5cGVcIlxuICAgICAgICAgIFtzZWxlY3RlZFZpZXdUeXBlXT1cInNlbGVjdGVkVmlld1R5cGVcIlxuICAgICAgICAgIFtmaWx0ZXJzXT1cImRhdGFWaWV3cy5maWx0ZXJzXCJcbiAgICAgICAgICBbYXBwVmVyc2lvbklkXT1cImFwcFZlcnNpb25JZFwiXG4gICAgICAgICAgW3Nob3dBc3NpZ25Ub0J1dHRvbl09XCJzaG93QXNzaWduVG9CdXR0b25cIlxuICAgICAgICAgIFtkYXRhVmlld3NdPVwiZGF0YVZpZXdzXCJcbiAgICAgICAgICAoYXBwbHlGaWx0ZXJFbWl0KT1cImFwcGx5RmlsdGVyLmVtaXQoJGV2ZW50KVwiXG4gICAgICAgICAgKHJlc2V0RmlsdGVyRW1pdCk9XCJyZXNldEZpbHRlci5lbWl0KCRldmVudClcIlxuICAgICAgICAgIFtmb3JtXT1cImF4Rm9ybVwiXG4gICAgICAgICAgKGFzc2lnbik9XCJhc3NpZ24uZW1pdCgpXCJcbiAgICAgICAgICAoYWRkTmV3UmVjb3JkKT1cImFkZE5ld1JlY29yZC5lbWl0KClcIlxuICAgICAgICAgIChyZWZyZXNoRGF0YSk9XCJyZWZyZXNoRGF0YS5lbWl0KClcIlxuICAgICAgICAgIChleHBvcnREYXRhKT1cImV4cG9ydERhdGEuZW1pdCgkZXZlbnQpXCJcbiAgICAgICAgICBbdXNlckVtYWlsXT1cInVzZXJFbWFpbFwiPlxuICAgIDwvbGliLWRhdGEtdmlldy1maWx0ZXJzPlxuXG4gICAgPCEtLSBHZW5lcmljIEZpbHRlciBMaXN0IC0tPlxuICAgIDwhLS0gVGhpcyBmaWx0ZXIgd2lsbCBiZSB1c2VkIGluIGZ1dHVyZSBmb3IgZ2VuZXJpYyB0YXNrIGxpc3QuIC0tPlxuICAgIDwhLS0gPGF4by1maWx0ZXJzICpuZ0lmPVwiZGF0YVZpZXdzLnR5cGUgPT09IERhdGFWaWV3VHlwZS5nZW5lcmljVGFza1ZpZXdcIiBjbGFzcz1cInctZnVsbFwiXG4gICAgICAgIFtzY3JlZW5UeXBlXT1cInNjcmVlblR5cGVcIlxuICAgICAgICBbc2VsZWN0ZWRWaWV3VHlwZV09XCJzZWxlY3RlZFZpZXdUeXBlXCJcbiAgICAgICAgW2ZpbHRlcnNdPVwiZGF0YVZpZXdzLmZpbHRlcnNcIlxuICAgICAgICAoYXBwbHlGaWx0ZXJFbWl0KT1cImFwcGx5RmlsdGVyLmVtaXQoJGV2ZW50KVwiXG4gICAgICAgIChyZXNldEZpbHRlckVtaXQpPVwicmVzZXRGaWx0ZXIuZW1pdCgkZXZlbnQpXCJcbiAgICAgICAgW2Zvcm1dPVwiYXhGb3JtXCJcbiAgICAgICAgW2FwcFZlcnNpb25JZF09XCJhcHBWZXJzaW9uSWRcIlxuICAgICAgICAoYWRkTmV3UmVjb3JkKT1cImFkZE5ld1JlY29yZC5lbWl0KClcIlxuICAgICAgICAocmVmcmVzaERhdGEpPVwicmVmcmVzaERhdGEuZW1pdCgpXCJcbiAgICAgICAgKGV4cG9ydERhdGEpPVwiZXhwb3J0RGF0YS5lbWl0KCRldmVudClcIlxuICAgICAgICBbdXNlckVtYWlsXT1cInVzZXJFbWFpbFwiPlxuICAgID5cblxuICAgIDwvYXhvLWZpbHRlcnM+IC0tPlxuICAgIDwvZGl2PlxuXG4gIDwvZGl2PlxuIl19
|