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,661 @@
|
|
|
1
|
+
import { UnhandledWIdgetsInFilters, UnhandledWIdgetSubTypesInFilters } from './../../enlighten-lib/filters/static-widget';
|
|
2
|
+
import { FormType } from './../../forms/page/common/widget-enums';
|
|
3
|
+
import { FiltersService } from './../../filters/filters.service';
|
|
4
|
+
import { DataView } from './../data-view/data-view';
|
|
5
|
+
import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
6
|
+
import { FormBuilder, Validators } from '@angular/forms';
|
|
7
|
+
import { MatMenuTrigger } from '@angular/material/menu';
|
|
8
|
+
import { ScopeType, ScreenType } from '../../enlighten-lib/filters/condition-type';
|
|
9
|
+
import { GeneralFilterType } from '../../enlighten-lib/filters/general-filter-type';
|
|
10
|
+
import { MetaColumnTypes } from '../../filters/metaColumnTypes';
|
|
11
|
+
import { AxForm } from '../../forms/ax-form';
|
|
12
|
+
import { DataViewService } from '../data-view.service';
|
|
13
|
+
import { DataViewType, ViewType } from '../data-view/data-view-enums';
|
|
14
|
+
import { DataViewFiltersService } from './data-view-filters.service';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
16
|
+
import * as i1 from "./data-view-filters.service";
|
|
17
|
+
import * as i2 from "../data-view.service";
|
|
18
|
+
import * as i3 from "@angular/forms";
|
|
19
|
+
import * as i4 from "./../../filters/filters.service";
|
|
20
|
+
import * as i5 from "@angular/common";
|
|
21
|
+
import * as i6 from "@angular/material/menu";
|
|
22
|
+
import * as i7 from "@angular/material/slide-toggle";
|
|
23
|
+
import * as i8 from "@angular/material/icon";
|
|
24
|
+
import * as i9 from "../../filters/filters.component";
|
|
25
|
+
import * as i10 from "@angular/material/list";
|
|
26
|
+
import * as i11 from "@angular/material/tooltip";
|
|
27
|
+
import * as i12 from "../../axo-utils/search-pipe";
|
|
28
|
+
const _c0 = ["propertyMenuTrigger"];
|
|
29
|
+
function DataViewFiltersComponent_button_3_Template(rf, ctx) { if (rf & 1) {
|
|
30
|
+
const _r17 = i0.ɵɵgetCurrentView();
|
|
31
|
+
i0.ɵɵelementStart(0, "button", 39);
|
|
32
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_button_3_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r17); i0.ɵɵnextContext(); const _r3 = i0.ɵɵreference(14); return _r3.openMenu(); })("contextmenu", function DataViewFiltersComponent_button_3_Template_button_contextmenu_0_listener($event) { i0.ɵɵrestoreView(_r17); const ctx_r18 = i0.ɵɵnextContext(); return ctx_r18.openPropertyMenu($event); });
|
|
33
|
+
i0.ɵɵtext(1, " + Add Filter ");
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
} }
|
|
36
|
+
function DataViewFiltersComponent_span_19_Template(rf, ctx) { if (rf & 1) {
|
|
37
|
+
i0.ɵɵelementStart(0, "span", 40);
|
|
38
|
+
i0.ɵɵtext(1, "Fields");
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
} }
|
|
41
|
+
function DataViewFiltersComponent_mat_icon_23_Template(rf, ctx) { if (rf & 1) {
|
|
42
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
43
|
+
i0.ɵɵelementStart(0, "mat-icon", 41);
|
|
44
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_mat_icon_23_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r20); const ctx_r19 = i0.ɵɵnextContext(); return ctx_r19.clear(); });
|
|
45
|
+
i0.ɵɵtext(1, "clear ");
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
} }
|
|
48
|
+
function DataViewFiltersComponent_ng_container_24_div_1_label_1_Template(rf, ctx) { if (rf & 1) {
|
|
49
|
+
i0.ɵɵelementStart(0, "label", 47);
|
|
50
|
+
i0.ɵɵtext(1, "Category");
|
|
51
|
+
i0.ɵɵelementEnd();
|
|
52
|
+
} }
|
|
53
|
+
function DataViewFiltersComponent_ng_container_24_div_1_mat_list_option_5_Template(rf, ctx) { if (rf & 1) {
|
|
54
|
+
const _r28 = i0.ɵɵgetCurrentView();
|
|
55
|
+
i0.ɵɵelementStart(0, "mat-list-option", 48);
|
|
56
|
+
i0.ɵɵlistener("selectedChange", function DataViewFiltersComponent_ng_container_24_div_1_mat_list_option_5_Template_mat_list_option_selectedChange_0_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r28); const category_r25 = restoredCtx.$implicit; return category_r25.isSelected = $event; });
|
|
57
|
+
i0.ɵɵelementStart(1, "span", 49);
|
|
58
|
+
i0.ɵɵtext(2);
|
|
59
|
+
i0.ɵɵelementEnd();
|
|
60
|
+
i0.ɵɵelementEnd();
|
|
61
|
+
} if (rf & 2) {
|
|
62
|
+
const category_r25 = ctx.$implicit;
|
|
63
|
+
i0.ɵɵproperty("value", category_r25)("selected", category_r25.isSelected);
|
|
64
|
+
i0.ɵɵadvance(1);
|
|
65
|
+
i0.ɵɵproperty("matTooltip", category_r25.name);
|
|
66
|
+
i0.ɵɵadvance(1);
|
|
67
|
+
i0.ɵɵtextInterpolate1(" ", category_r25.name, "");
|
|
68
|
+
} }
|
|
69
|
+
const _c1 = function (a0) { return { "field-container": a0 }; };
|
|
70
|
+
function DataViewFiltersComponent_ng_container_24_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
71
|
+
i0.ɵɵelementStart(0, "div", 43);
|
|
72
|
+
i0.ɵɵtemplate(1, DataViewFiltersComponent_ng_container_24_div_1_label_1_Template, 2, 0, "label", 44);
|
|
73
|
+
i0.ɵɵpipe(2, "search");
|
|
74
|
+
i0.ɵɵelementStart(3, "mat-selection-list", null, 45);
|
|
75
|
+
i0.ɵɵtemplate(5, DataViewFiltersComponent_ng_container_24_div_1_mat_list_option_5_Template, 3, 4, "mat-list-option", 46);
|
|
76
|
+
i0.ɵɵpipe(6, "search");
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
} if (rf & 2) {
|
|
80
|
+
const ctx_r21 = i0.ɵɵnextContext(2);
|
|
81
|
+
let tmp_1_0;
|
|
82
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c1, ctx_r21.showSearchBox));
|
|
83
|
+
i0.ɵɵadvance(1);
|
|
84
|
+
i0.ɵɵproperty("ngIf", (tmp_1_0 = i0.ɵɵpipeBind2(2, 3, ctx_r21.categories, ctx_r21.searchedTerm)) == null ? null : tmp_1_0.length);
|
|
85
|
+
i0.ɵɵadvance(4);
|
|
86
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind2(6, 6, ctx_r21.categories, ctx_r21.searchedTerm));
|
|
87
|
+
} }
|
|
88
|
+
function DataViewFiltersComponent_ng_container_24_Template(rf, ctx) { if (rf & 1) {
|
|
89
|
+
i0.ɵɵelementContainerStart(0);
|
|
90
|
+
i0.ɵɵtemplate(1, DataViewFiltersComponent_ng_container_24_div_1_Template, 7, 11, "div", 42);
|
|
91
|
+
i0.ɵɵpipe(2, "search");
|
|
92
|
+
i0.ɵɵelementContainerEnd();
|
|
93
|
+
} if (rf & 2) {
|
|
94
|
+
const ctx_r7 = i0.ɵɵnextContext();
|
|
95
|
+
let tmp_0_0;
|
|
96
|
+
i0.ɵɵadvance(1);
|
|
97
|
+
i0.ɵɵproperty("ngIf", (tmp_0_0 = i0.ɵɵpipeBind2(2, 1, ctx_r7.categories, ctx_r7.searchedTerm)) == null ? null : tmp_0_0.length);
|
|
98
|
+
} }
|
|
99
|
+
function DataViewFiltersComponent_div_25_ng_container_4_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
100
|
+
i0.ɵɵelementContainerStart(0);
|
|
101
|
+
i0.ɵɵelementStart(1, "mat-list-option", 53);
|
|
102
|
+
i0.ɵɵelementStart(2, "span", 49);
|
|
103
|
+
i0.ɵɵelement(3, "mat-icon", 54);
|
|
104
|
+
i0.ɵɵtext(4);
|
|
105
|
+
i0.ɵɵelementEnd();
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
i0.ɵɵelementContainerEnd();
|
|
108
|
+
} if (rf & 2) {
|
|
109
|
+
const widget_r31 = i0.ɵɵnextContext().$implicit;
|
|
110
|
+
const ctx_r32 = i0.ɵɵnextContext(2);
|
|
111
|
+
i0.ɵɵadvance(1);
|
|
112
|
+
i0.ɵɵproperty("value", widget_r31)("selected", ctx_r32.selectedWidget.indexOf(widget_r31.identifier) !== -1);
|
|
113
|
+
i0.ɵɵadvance(1);
|
|
114
|
+
i0.ɵɵproperty("matTooltip", widget_r31.prompt);
|
|
115
|
+
i0.ɵɵadvance(1);
|
|
116
|
+
i0.ɵɵproperty("svgIcon", widget_r31.widgetIcon);
|
|
117
|
+
i0.ɵɵadvance(1);
|
|
118
|
+
i0.ɵɵtextInterpolate1(" ", widget_r31.prompt, " ");
|
|
119
|
+
} }
|
|
120
|
+
function DataViewFiltersComponent_div_25_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
121
|
+
i0.ɵɵelementContainerStart(0);
|
|
122
|
+
i0.ɵɵtemplate(1, DataViewFiltersComponent_div_25_ng_container_4_ng_container_1_Template, 5, 5, "ng-container", 20);
|
|
123
|
+
i0.ɵɵelementContainerEnd();
|
|
124
|
+
} if (rf & 2) {
|
|
125
|
+
const widget_r31 = ctx.$implicit;
|
|
126
|
+
const ctx_r30 = i0.ɵɵnextContext(2);
|
|
127
|
+
i0.ɵɵadvance(1);
|
|
128
|
+
i0.ɵɵproperty("ngIf", !ctx_r30.unhandledWIdgetsInFilters.includes(widget_r31.type) && !ctx_r30.unhandledWIdgetSubTypesInFilters.includes(widget_r31.subType));
|
|
129
|
+
} }
|
|
130
|
+
function DataViewFiltersComponent_div_25_Template(rf, ctx) { if (rf & 1) {
|
|
131
|
+
const _r35 = i0.ɵɵgetCurrentView();
|
|
132
|
+
i0.ɵɵelementStart(0, "div", 50);
|
|
133
|
+
i0.ɵɵelementStart(1, "label", 47);
|
|
134
|
+
i0.ɵɵtext(2);
|
|
135
|
+
i0.ɵɵelementEnd();
|
|
136
|
+
i0.ɵɵelementStart(3, "mat-selection-list", 51);
|
|
137
|
+
i0.ɵɵlistener("selectionChange", function DataViewFiltersComponent_div_25_Template_mat_selection_list_selectionChange_3_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r35); const _form_r29 = restoredCtx.$implicit; const ctx_r34 = i0.ɵɵnextContext(); return ctx_r34.addBasicFilter($event, _form_r29); });
|
|
138
|
+
i0.ɵɵtemplate(4, DataViewFiltersComponent_div_25_ng_container_4_Template, 2, 1, "ng-container", 52);
|
|
139
|
+
i0.ɵɵpipe(5, "search");
|
|
140
|
+
i0.ɵɵelementEnd();
|
|
141
|
+
i0.ɵɵelementEnd();
|
|
142
|
+
} if (rf & 2) {
|
|
143
|
+
const _form_r29 = ctx.$implicit;
|
|
144
|
+
const ctx_r8 = i0.ɵɵnextContext();
|
|
145
|
+
i0.ɵɵadvance(2);
|
|
146
|
+
i0.ɵɵtextInterpolate(_form_r29 == null ? null : _form_r29.name);
|
|
147
|
+
i0.ɵɵadvance(2);
|
|
148
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind2(5, 2, _form_r29 == null ? null : _form_r29.widgets, ctx_r8.searchedTerm));
|
|
149
|
+
} }
|
|
150
|
+
function DataViewFiltersComponent_div_26_mat_list_option_4_Template(rf, ctx) { if (rf & 1) {
|
|
151
|
+
i0.ɵɵelementStart(0, "mat-list-option", 53);
|
|
152
|
+
i0.ɵɵelementStart(1, "span", 49);
|
|
153
|
+
i0.ɵɵelement(2, "mat-icon", 54);
|
|
154
|
+
i0.ɵɵtext(3);
|
|
155
|
+
i0.ɵɵelementEnd();
|
|
156
|
+
i0.ɵɵelementEnd();
|
|
157
|
+
} if (rf & 2) {
|
|
158
|
+
const metaColumn_r37 = ctx.$implicit;
|
|
159
|
+
const ctx_r36 = i0.ɵɵnextContext(2);
|
|
160
|
+
i0.ɵɵproperty("value", metaColumn_r37)("selected", ctx_r36.selectedWidget.indexOf(metaColumn_r37) !== -1);
|
|
161
|
+
i0.ɵɵadvance(1);
|
|
162
|
+
i0.ɵɵproperty("matTooltip", metaColumn_r37);
|
|
163
|
+
i0.ɵɵadvance(1);
|
|
164
|
+
i0.ɵɵproperty("svgIcon", "axo_square_text");
|
|
165
|
+
i0.ɵɵadvance(1);
|
|
166
|
+
i0.ɵɵtextInterpolate1(" ", metaColumn_r37, " ");
|
|
167
|
+
} }
|
|
168
|
+
function DataViewFiltersComponent_div_26_Template(rf, ctx) { if (rf & 1) {
|
|
169
|
+
const _r39 = i0.ɵɵgetCurrentView();
|
|
170
|
+
i0.ɵɵelementStart(0, "div", 50);
|
|
171
|
+
i0.ɵɵelementStart(1, "label", 47);
|
|
172
|
+
i0.ɵɵtext(2, "Meta Columns");
|
|
173
|
+
i0.ɵɵelementEnd();
|
|
174
|
+
i0.ɵɵelementStart(3, "mat-selection-list", 51);
|
|
175
|
+
i0.ɵɵlistener("selectionChange", function DataViewFiltersComponent_div_26_Template_mat_selection_list_selectionChange_3_listener($event) { i0.ɵɵrestoreView(_r39); const ctx_r38 = i0.ɵɵnextContext(); return ctx_r38.addMetaColumnFilter($event); });
|
|
176
|
+
i0.ɵɵtemplate(4, DataViewFiltersComponent_div_26_mat_list_option_4_Template, 4, 5, "mat-list-option", 55);
|
|
177
|
+
i0.ɵɵelementEnd();
|
|
178
|
+
i0.ɵɵelementEnd();
|
|
179
|
+
} if (rf & 2) {
|
|
180
|
+
const ctx_r9 = i0.ɵɵnextContext();
|
|
181
|
+
i0.ɵɵadvance(4);
|
|
182
|
+
i0.ɵɵproperty("ngForOf", ctx_r9.metaColumns);
|
|
183
|
+
} }
|
|
184
|
+
function DataViewFiltersComponent_button_29_Template(rf, ctx) { if (rf & 1) {
|
|
185
|
+
const _r41 = i0.ɵɵgetCurrentView();
|
|
186
|
+
i0.ɵɵelementStart(0, "button", 56);
|
|
187
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_button_29_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r41); const ctx_r40 = i0.ɵɵnextContext(); return ctx_r40.addNewRecord.emit(); });
|
|
188
|
+
i0.ɵɵtext(1, " Add New Record");
|
|
189
|
+
i0.ɵɵelementEnd();
|
|
190
|
+
} }
|
|
191
|
+
function DataViewFiltersComponent_button_30_Template(rf, ctx) { if (rf & 1) {
|
|
192
|
+
const _r43 = i0.ɵɵgetCurrentView();
|
|
193
|
+
i0.ɵɵelementStart(0, "button", 27);
|
|
194
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_button_30_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r43); const ctx_r42 = i0.ɵɵnextContext(); return ctx_r42.assign.emit(); });
|
|
195
|
+
i0.ɵɵtext(1, "Assign ");
|
|
196
|
+
i0.ɵɵelementEnd();
|
|
197
|
+
} }
|
|
198
|
+
function DataViewFiltersComponent_button_33_Template(rf, ctx) { if (rf & 1) {
|
|
199
|
+
i0.ɵɵelementStart(0, "button", 57);
|
|
200
|
+
i0.ɵɵelement(1, "mat-icon", 58);
|
|
201
|
+
i0.ɵɵelementEnd();
|
|
202
|
+
} if (rf & 2) {
|
|
203
|
+
i0.ɵɵnextContext();
|
|
204
|
+
const _r13 = i0.ɵɵreference(35);
|
|
205
|
+
i0.ɵɵproperty("matMenuTriggerFor", _r13);
|
|
206
|
+
} }
|
|
207
|
+
function DataViewFiltersComponent_p_41_Template(rf, ctx) { if (rf & 1) {
|
|
208
|
+
i0.ɵɵelementStart(0, "p", 59);
|
|
209
|
+
i0.ɵɵtext(1, "Please provide a valid email ID");
|
|
210
|
+
i0.ɵɵelementEnd();
|
|
211
|
+
} }
|
|
212
|
+
function DataViewFiltersComponent_p_42_Template(rf, ctx) { if (rf & 1) {
|
|
213
|
+
i0.ɵɵelementStart(0, "p", 60);
|
|
214
|
+
i0.ɵɵtext(1, "Export is in progress. You will receive the report on your email once completed.");
|
|
215
|
+
i0.ɵɵelementEnd();
|
|
216
|
+
} }
|
|
217
|
+
const _c2 = function (a0, a1) { return { "width-after-hide-button": a0, "no-filter": a1 }; };
|
|
218
|
+
const _c3 = function (a0) { return { "border-seperator": a0 }; };
|
|
219
|
+
const _c4 = function (a0) { return { "justify-between px-2.5": a0 }; };
|
|
220
|
+
const _c5 = function (a0) { return { "global-border px-2.5": a0 }; };
|
|
221
|
+
const _c6 = function (a0) { return { "search-icon": a0 }; };
|
|
222
|
+
const _c7 = function (a0) { return { "container-filter-witdh": a0 }; };
|
|
223
|
+
export class DataViewFiltersComponent {
|
|
224
|
+
/**
|
|
225
|
+
* Constructor
|
|
226
|
+
*
|
|
227
|
+
* @param _dataVIewFilterService
|
|
228
|
+
* @param _formBuilder
|
|
229
|
+
*/
|
|
230
|
+
constructor(_dataVIewFilterService, _dataViewService, _formBuilder, _filterService) {
|
|
231
|
+
this._dataVIewFilterService = _dataVIewFilterService;
|
|
232
|
+
this._dataViewService = _dataViewService;
|
|
233
|
+
this._formBuilder = _formBuilder;
|
|
234
|
+
this._filterService = _filterService;
|
|
235
|
+
this.categories = [];
|
|
236
|
+
this.showAssignToButton = false;
|
|
237
|
+
//<-------------(outputs) ----------------------------
|
|
238
|
+
this.dirtyFlowCheckEvent = new EventEmitter();
|
|
239
|
+
this.applyFilterEmit = new EventEmitter();
|
|
240
|
+
this.resetFilterEmit = new EventEmitter();
|
|
241
|
+
this.clearFilterEmit = new EventEmitter();
|
|
242
|
+
this.addNewRecord = new EventEmitter();
|
|
243
|
+
this.refreshData = new EventEmitter();
|
|
244
|
+
this.assign = new EventEmitter();
|
|
245
|
+
this.exportData = new EventEmitter();
|
|
246
|
+
//<----------------( Component Variables)------------->
|
|
247
|
+
this.scopeType = 2;
|
|
248
|
+
this.showSearchBox = false;
|
|
249
|
+
this.showField = true;
|
|
250
|
+
this.titleValue = '';
|
|
251
|
+
this.searchedTerm = '';
|
|
252
|
+
this.showApplyFilterEvent = true;
|
|
253
|
+
this.selectedWidget = [];
|
|
254
|
+
this.commonFilterArray = [];
|
|
255
|
+
this.displayNotification = false;
|
|
256
|
+
this.emailPattern = '^[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$';
|
|
257
|
+
this.displayEmailValidationError = false;
|
|
258
|
+
this.forms = [];
|
|
259
|
+
this.metaColumns = [MetaColumnTypes.taskStatus, MetaColumnTypes.taskAssignedTo, MetaColumnTypes.taskCreatedDate];
|
|
260
|
+
this.unhandledWIdgetsInFilters = UnhandledWIdgetsInFilters;
|
|
261
|
+
this.unhandledWIdgetSubTypesInFilters = UnhandledWIdgetSubTypesInFilters;
|
|
262
|
+
}
|
|
263
|
+
;
|
|
264
|
+
get formTypes() {
|
|
265
|
+
return FormType;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* On init life cycle hook
|
|
269
|
+
*/
|
|
270
|
+
ngOnInit() {
|
|
271
|
+
this.exportFormBuilder = this._formBuilder.group({
|
|
272
|
+
email: [this.userEmail, [Validators.required, Validators.email]]
|
|
273
|
+
});
|
|
274
|
+
}
|
|
275
|
+
ngAfterViewInit() {
|
|
276
|
+
this.obs = new ResizeObserver(() => {
|
|
277
|
+
/** get width of filter buttons wrraper */
|
|
278
|
+
const number = document.getElementById('data-view-header-button')?.clientWidth + 'px';
|
|
279
|
+
/**Set width of css variable */
|
|
280
|
+
if (number) {
|
|
281
|
+
document.documentElement.style.setProperty('--buttonsWarraperWidth', number);
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
this.obs.observe(document.getElementById('data-view-header-button'));
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* On changes life cycle hook.
|
|
288
|
+
*/
|
|
289
|
+
ngOnChanges(changes) {
|
|
290
|
+
/** get width of filter buttons wrraper */
|
|
291
|
+
if (this.obs) {
|
|
292
|
+
const number = document.getElementById('data-view-header-button').clientWidth + 'px';
|
|
293
|
+
/**Set width of css variable */
|
|
294
|
+
document.documentElement.style.setProperty('--buttonsWarraperWidth', number);
|
|
295
|
+
this.obs.observe(document.getElementById('data-view-header-button'));
|
|
296
|
+
}
|
|
297
|
+
if (changes.dataViews) {
|
|
298
|
+
this.forms = [];
|
|
299
|
+
this.commonFilterArray = [];
|
|
300
|
+
this.generateCommonFilterList();
|
|
301
|
+
this.selectedWidget = [];
|
|
302
|
+
if (this.dataViews.type !== DataViewType.genericTaskView) {
|
|
303
|
+
this.forms.push(this.form);
|
|
304
|
+
if (this.form.trackedAssetId) {
|
|
305
|
+
this._dataViewService.getFormDetails(this.form.trackedAssetId).then((_form) => {
|
|
306
|
+
this.forms.push(_form);
|
|
307
|
+
});
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Getter for dataViewType
|
|
314
|
+
*/
|
|
315
|
+
get dataViewType() {
|
|
316
|
+
return DataViewType;
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* Getter for View Type
|
|
320
|
+
*/
|
|
321
|
+
get ViewType() {
|
|
322
|
+
return ViewType;
|
|
323
|
+
}
|
|
324
|
+
/*
|
|
325
|
+
* getter for screenTypes
|
|
326
|
+
*/
|
|
327
|
+
get screenTypes() {
|
|
328
|
+
return ScreenType;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* Generate common filter list from existing filters and cotegories.
|
|
332
|
+
*/
|
|
333
|
+
generateCommonFilterList() {
|
|
334
|
+
//Add filters in the common filters list
|
|
335
|
+
this.filters.forEach((filter) => {
|
|
336
|
+
// filter.generalFilterType = GeneralFilterType.filters;
|
|
337
|
+
if (!this.commonFilterArray.includes(filter)) {
|
|
338
|
+
this.commonFilterArray.push(filter);
|
|
339
|
+
}
|
|
340
|
+
});
|
|
341
|
+
//Add Categories in the common filters list
|
|
342
|
+
this.categories.forEach((category) => {
|
|
343
|
+
category.generalFilterType = GeneralFilterType.category;
|
|
344
|
+
if (!this.commonFilterArray.includes(category)) {
|
|
345
|
+
this.commonFilterArray.push(category);
|
|
346
|
+
}
|
|
347
|
+
});
|
|
348
|
+
// sort the filter by order.
|
|
349
|
+
this.commonFilterArray.sort((a, b) => (a.gridProperties.x > b.gridProperties.x) ? 1 : ((b.gridProperties.x > a.gridProperties.x) ? -1 : 0));
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* This will get called on MatSelection Change
|
|
353
|
+
* We delete filter if if deselect widget or we create new filter if select widget.
|
|
354
|
+
*
|
|
355
|
+
* @param event
|
|
356
|
+
*/
|
|
357
|
+
addBasicFilter(event, form) {
|
|
358
|
+
// Add new filter
|
|
359
|
+
if (event.option.selected) {
|
|
360
|
+
const widget = event.option.value;
|
|
361
|
+
this.selectedWidget.push(widget.identifier);
|
|
362
|
+
this.showApplyFilterEvent = !this.showApplyFilterEvent;
|
|
363
|
+
//created new filter by widget
|
|
364
|
+
const filter = this._dataVIewFilterService.generateBasicFilter(this.appVersionId, event, this.filters, ScopeType.global, this.filters.length, form?.formId);
|
|
365
|
+
filter.formType = form.type;
|
|
366
|
+
filter.searchNodes[0].expression.field.choices = widget.choices;
|
|
367
|
+
this.filters.push(filter);
|
|
368
|
+
this.commonFilterArray.push(filter);
|
|
369
|
+
}
|
|
370
|
+
else {
|
|
371
|
+
//remove selected filter
|
|
372
|
+
this.selectedWidget.splice(this.selectedWidget.indexOf(event.option.value.identifier), 1);
|
|
373
|
+
const filter = this.getFilterFromList(event.option.value.identifier);
|
|
374
|
+
this.removeBasicFilter(filter);
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* Add Meta Column Filter
|
|
379
|
+
*
|
|
380
|
+
* @param event
|
|
381
|
+
*/
|
|
382
|
+
addMetaColumnFilter(event) {
|
|
383
|
+
if (event.option.selected) {
|
|
384
|
+
const value = event.option.value;
|
|
385
|
+
const filter = this._filterService.generateMetaColumnFilter(value, this.appVersionId);
|
|
386
|
+
this.filters.push(filter);
|
|
387
|
+
this.commonFilterArray.push(filter);
|
|
388
|
+
// filter.formType = value;
|
|
389
|
+
}
|
|
390
|
+
else {
|
|
391
|
+
//remove selected filter
|
|
392
|
+
this.selectedWidget.splice(this.selectedWidget.indexOf(event.option.value), 1);
|
|
393
|
+
const filter = this.getFilterFromList(event.option.value.identifier);
|
|
394
|
+
this.removeBasicFilter(filter);
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* Remove filter from filter array if filter is not saved or mark as deleted if it's saved.
|
|
399
|
+
*
|
|
400
|
+
* @param filter
|
|
401
|
+
*/
|
|
402
|
+
removeBasicFilter(filter) {
|
|
403
|
+
if (filter.id === 0) {
|
|
404
|
+
this.filters.splice(this.filters.indexOf(filter), 1);
|
|
405
|
+
this.commonFilterArray.splice(this.commonFilterArray.indexOf(filter), 1);
|
|
406
|
+
}
|
|
407
|
+
else {
|
|
408
|
+
filter.isDeleted = true;
|
|
409
|
+
filter.isSelected = false;
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* Get filter by widget identifier.
|
|
414
|
+
*
|
|
415
|
+
* @param identifier
|
|
416
|
+
* @returns
|
|
417
|
+
*/
|
|
418
|
+
getFilterFromList(identifier) {
|
|
419
|
+
for (const filter of this.commonFilterArray) {
|
|
420
|
+
if (filter.searchNodes[0].expression.field.name === identifier) {
|
|
421
|
+
return filter;
|
|
422
|
+
}
|
|
423
|
+
;
|
|
424
|
+
}
|
|
425
|
+
return null;
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* This will get called from filter commonent on filter delete.
|
|
429
|
+
*
|
|
430
|
+
* @param index
|
|
431
|
+
*/
|
|
432
|
+
deleteFilter(index) {
|
|
433
|
+
const filter = this.commonFilterArray[index];
|
|
434
|
+
this.selectedWidget.splice(this.selectedWidget.indexOf(filter.searchNodes[0].expression.field.name), 1);
|
|
435
|
+
this.removeBasicFilter(filter);
|
|
436
|
+
}
|
|
437
|
+
getFiltersCount() {
|
|
438
|
+
return this.filters.filter(fl => !fl.isDeleted).length > 0;
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* Validation of email id for export of tabular report
|
|
442
|
+
*/
|
|
443
|
+
emailValidate() {
|
|
444
|
+
const regex = new RegExp(this.emailPattern);
|
|
445
|
+
this.displayEmailValidationError = !regex.test(this.exportFormBuilder.value['email']);
|
|
446
|
+
if (this.displayEmailValidationError) {
|
|
447
|
+
this.displayNotification = false;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* close the export to email menu on click of cancel
|
|
452
|
+
*/
|
|
453
|
+
closeExportMenu() {
|
|
454
|
+
this.contextMenu.closeMenu();
|
|
455
|
+
this.displayNotification = false;
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* call this function for send email with excel report as attachment
|
|
459
|
+
*/
|
|
460
|
+
sendEmail() {
|
|
461
|
+
this.displayNotification = false;
|
|
462
|
+
if (!this.displayEmailValidationError) {
|
|
463
|
+
this.exportData.emit(this.exportFormBuilder.value['email']);
|
|
464
|
+
this.displayNotification = true;
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
/**
|
|
468
|
+
* Open Mat menu on right click on add filter button.
|
|
469
|
+
* @param event
|
|
470
|
+
*/
|
|
471
|
+
openPropertyMenu(event) {
|
|
472
|
+
if (this.screenType === ScreenType.dataViewBuilder) {
|
|
473
|
+
this.propertyMenuTrigger.openMenu();
|
|
474
|
+
event.stopPropagation();
|
|
475
|
+
event.preventDefault();
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
DataViewFiltersComponent.ɵfac = function DataViewFiltersComponent_Factory(t) { return new (t || DataViewFiltersComponent)(i0.ɵɵdirectiveInject(i1.DataViewFiltersService), i0.ɵɵdirectiveInject(i2.DataViewService), i0.ɵɵdirectiveInject(i3.FormBuilder), i0.ɵɵdirectiveInject(i4.FiltersService)); };
|
|
480
|
+
DataViewFiltersComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DataViewFiltersComponent, selectors: [["lib-data-view-filters"]], viewQuery: function DataViewFiltersComponent_Query(rf, ctx) { if (rf & 1) {
|
|
481
|
+
i0.ɵɵviewQuery(MatMenuTrigger, 5);
|
|
482
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
483
|
+
} if (rf & 2) {
|
|
484
|
+
let _t;
|
|
485
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.contextMenu = _t.first);
|
|
486
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.propertyMenuTrigger = _t.first);
|
|
487
|
+
} }, inputs: { form: "form", filters: "filters", categories: "categories", isEditable: "isEditable", screenType: "screenType", appVersionId: "appVersionId", selectedViewType: "selectedViewType", userEmail: "userEmail", dataViews: "dataViews", showAssignToButton: "showAssignToButton" }, outputs: { dirtyFlowCheckEvent: "dirtyFlowCheckEvent", applyFilterEmit: "applyFilterEmit", resetFilterEmit: "resetFilterEmit", clearFilterEmit: "clearFilterEmit", addNewRecord: "addNewRecord", refreshData: "refreshData", assign: "assign", exportData: "exportData" }, features: [i0.ɵɵNgOnChangesFeature], decls: 50, vars: 44, consts: [[1, "sticky", "data-list-filter"], [1, "data-view-filter-wrapper", 3, "ngClass"], [1, "add-icon-btn", 3, "ngClass"], ["class", "light-blue-btn axo-font", 3, "click", "contextmenu", 4, "ngIf"], [3, "matMenuTriggerFor"], ["propertyMenuTrigger", "matMenuTrigger"], ["propertyMenu", "matMenu"], ["mat-menu-item", "", 1, "filter-properties", "menu-btn", 3, "click"], [1, "filter-property"], [1, "style-title"], [3, "ngModel", "ngModelChange"], ["filtersMenuTrigger", "matMenuTrigger"], ["yPosition", "below", 1, "filter-field-list"], ["filtersMenu", "matMenu"], [3, "click"], [1, "group", "flex", "items-center", "justify-center", "mb-3", 3, "ngClass"], ["class", "text-f font-medium", 4, "ngIf"], [1, "flex", "items-center", "search-field", 3, "ngClass"], [1, "mt-2", "text-xs", "search-icons", 3, "ngClass", "svgIcon"], ["class", "clear_icon cursor-pointer text-base", 3, "click", 4, "ngIf"], [4, "ngIf"], ["class", "fields-div", 4, "ngFor", "ngForOf"], ["class", "fields-div", 4, "ngIf"], [1, "data-list-filter-container", 3, "filters", "formId", "commonFilterArray", "screenType", "categories", "appVersionId", "scopeType", "showApplyFilterEvent", "ngClass", "applyFilterEmit", "resetFilterEmit", "deleteFilterEmit"], ["id", "data-view-header-button", 1, "data-view-header-button"], ["class", "primary-btn axo-font", 3, "click", 4, "ngIf"], ["class", "link-btn axo-font refresh-btn", 3, "click", 4, "ngIf"], [1, "link-btn", "axo-font", "refresh-btn", 3, "click"], ["class", "flex items-center icon-btn", 3, "matMenuTriggerFor", 4, "ngIf"], ["xPosition", "before"], ["beforeMenu", "matMenu"], [1, "send-excel-report-form"], [3, "formGroup"], ["mat-menu-item", "", "type", "text", "formControlName", "email", 1, "report-xslx-email", 3, "ngModelChange"], ["class", "email-send-email-error", 4, "ngIf"], ["class", "email-send-notification", 4, "ngIf"], [1, "send-excel-report-form-btn"], [1, "cancel-btn", "btn", 3, "click"], [1, "send-btn", "btn", 3, "disabled", "click"], [1, "light-blue-btn", "axo-font", 3, "click", "contextmenu"], [1, "text-f", "font-medium"], [1, "clear_icon", "cursor-pointer", "text-base", 3, "click"], [3, "ngClass", 4, "ngIf"], [3, "ngClass"], ["class", "px-2.5", 4, "ngIf"], ["category", ""], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", "selectedChange", 4, "ngFor", "ngForOf"], [1, "px-2.5"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", "selectedChange"], [1, "list-field", 3, "matTooltip"], [1, "fields-div"], [3, "selectionChange"], [4, "ngFor", "ngForOf"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected"], [1, "svg-icon", "mr-2", "align-middle", 3, "svgIcon"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", 4, "ngFor", "ngForOf"], [1, "primary-btn", "axo-font", 3, "click"], [1, "flex", "items-center", "icon-btn", 3, "matMenuTriggerFor"], ["matTooltip", "Export Data", "svgIcon", "axo_export"], [1, "email-send-email-error"], [1, "email-send-notification"]], template: function DataViewFiltersComponent_Template(rf, ctx) { if (rf & 1) {
|
|
488
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
489
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
490
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
491
|
+
i0.ɵɵtemplate(3, DataViewFiltersComponent_button_3_Template, 2, 0, "button", 3);
|
|
492
|
+
i0.ɵɵelement(4, "div", 4, 5);
|
|
493
|
+
i0.ɵɵelementStart(6, "mat-menu", null, 6);
|
|
494
|
+
i0.ɵɵelementStart(8, "div", 7);
|
|
495
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_Template_div_click_8_listener($event) { return $event.stopPropagation(); });
|
|
496
|
+
i0.ɵɵelementStart(9, "div", 8);
|
|
497
|
+
i0.ɵɵelementStart(10, "span", 9);
|
|
498
|
+
i0.ɵɵtext(11, "Show On Container");
|
|
499
|
+
i0.ɵɵelementEnd();
|
|
500
|
+
i0.ɵɵelementStart(12, "mat-slide-toggle", 10);
|
|
501
|
+
i0.ɵɵlistener("ngModelChange", function DataViewFiltersComponent_Template_mat_slide_toggle_ngModelChange_12_listener($event) { return ctx.dataViews.properties.showAddFilterButton = $event; });
|
|
502
|
+
i0.ɵɵelementEnd();
|
|
503
|
+
i0.ɵɵelementEnd();
|
|
504
|
+
i0.ɵɵelementEnd();
|
|
505
|
+
i0.ɵɵelementEnd();
|
|
506
|
+
i0.ɵɵelement(13, "div", 4, 11);
|
|
507
|
+
i0.ɵɵelementStart(15, "mat-menu", 12, 13);
|
|
508
|
+
i0.ɵɵelementStart(17, "div", 14);
|
|
509
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_Template_div_click_17_listener($event) { return $event.stopPropagation(); });
|
|
510
|
+
i0.ɵɵelementStart(18, "div", 15);
|
|
511
|
+
i0.ɵɵtemplate(19, DataViewFiltersComponent_span_19_Template, 2, 0, "span", 16);
|
|
512
|
+
i0.ɵɵelementStart(20, "div", 17);
|
|
513
|
+
i0.ɵɵelementStart(21, "button", 14);
|
|
514
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_Template_button_click_21_listener() { return "showFilterDiv()"; });
|
|
515
|
+
i0.ɵɵelement(22, "mat-icon", 18);
|
|
516
|
+
i0.ɵɵelementEnd();
|
|
517
|
+
i0.ɵɵtemplate(23, DataViewFiltersComponent_mat_icon_23_Template, 2, 0, "mat-icon", 19);
|
|
518
|
+
i0.ɵɵelementEnd();
|
|
519
|
+
i0.ɵɵelementEnd();
|
|
520
|
+
i0.ɵɵtemplate(24, DataViewFiltersComponent_ng_container_24_Template, 3, 4, "ng-container", 20);
|
|
521
|
+
i0.ɵɵtemplate(25, DataViewFiltersComponent_div_25_Template, 6, 5, "div", 21);
|
|
522
|
+
i0.ɵɵtemplate(26, DataViewFiltersComponent_div_26_Template, 5, 1, "div", 22);
|
|
523
|
+
i0.ɵɵelementEnd();
|
|
524
|
+
i0.ɵɵelementEnd();
|
|
525
|
+
i0.ɵɵelementEnd();
|
|
526
|
+
i0.ɵɵelementStart(27, "filters", 23);
|
|
527
|
+
i0.ɵɵlistener("applyFilterEmit", function DataViewFiltersComponent_Template_filters_applyFilterEmit_27_listener($event) { return ctx.applyFilterEmit.emit($event); })("resetFilterEmit", function DataViewFiltersComponent_Template_filters_resetFilterEmit_27_listener($event) { return ctx.resetFilterEmit.emit($event); })("deleteFilterEmit", function DataViewFiltersComponent_Template_filters_deleteFilterEmit_27_listener($event) { return ctx.deleteFilter($event); });
|
|
528
|
+
i0.ɵɵelementEnd();
|
|
529
|
+
i0.ɵɵelementEnd();
|
|
530
|
+
i0.ɵɵelementStart(28, "div", 24);
|
|
531
|
+
i0.ɵɵtemplate(29, DataViewFiltersComponent_button_29_Template, 2, 0, "button", 25);
|
|
532
|
+
i0.ɵɵtemplate(30, DataViewFiltersComponent_button_30_Template, 2, 0, "button", 26);
|
|
533
|
+
i0.ɵɵelementStart(31, "button", 27);
|
|
534
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_Template_button_click_31_listener() { return ctx.refreshData.emit(); });
|
|
535
|
+
i0.ɵɵtext(32, "Refresh Data");
|
|
536
|
+
i0.ɵɵelementEnd();
|
|
537
|
+
i0.ɵɵtemplate(33, DataViewFiltersComponent_button_33_Template, 2, 1, "button", 28);
|
|
538
|
+
i0.ɵɵelementStart(34, "mat-menu", 29, 30);
|
|
539
|
+
i0.ɵɵelementStart(36, "div", 31);
|
|
540
|
+
i0.ɵɵelementStart(37, "form", 32);
|
|
541
|
+
i0.ɵɵelementStart(38, "div");
|
|
542
|
+
i0.ɵɵtext(39, "XLSX");
|
|
543
|
+
i0.ɵɵelementEnd();
|
|
544
|
+
i0.ɵɵelementStart(40, "input", 33);
|
|
545
|
+
i0.ɵɵlistener("ngModelChange", function DataViewFiltersComponent_Template_input_ngModelChange_40_listener() { return ctx.emailValidate(); });
|
|
546
|
+
i0.ɵɵelementEnd();
|
|
547
|
+
i0.ɵɵtemplate(41, DataViewFiltersComponent_p_41_Template, 2, 0, "p", 34);
|
|
548
|
+
i0.ɵɵtemplate(42, DataViewFiltersComponent_p_42_Template, 2, 0, "p", 35);
|
|
549
|
+
i0.ɵɵelementStart(43, "div", 36);
|
|
550
|
+
i0.ɵɵelementStart(44, "button", 37);
|
|
551
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_Template_button_click_44_listener() { return ctx.closeExportMenu(); });
|
|
552
|
+
i0.ɵɵtext(45, "Cancel");
|
|
553
|
+
i0.ɵɵelementEnd();
|
|
554
|
+
i0.ɵɵelementStart(46, "button", 38);
|
|
555
|
+
i0.ɵɵlistener("click", function DataViewFiltersComponent_Template_button_click_46_listener($event) { ctx.sendEmail(); return $event.stopPropagation(); });
|
|
556
|
+
i0.ɵɵtext(47, "Export ");
|
|
557
|
+
i0.ɵɵelementStart(48, "mat-icon");
|
|
558
|
+
i0.ɵɵtext(49, "send");
|
|
559
|
+
i0.ɵɵelementEnd();
|
|
560
|
+
i0.ɵɵelementEnd();
|
|
561
|
+
i0.ɵɵelementEnd();
|
|
562
|
+
i0.ɵɵelementEnd();
|
|
563
|
+
i0.ɵɵelementEnd();
|
|
564
|
+
i0.ɵɵelementEnd();
|
|
565
|
+
i0.ɵɵelementEnd();
|
|
566
|
+
i0.ɵɵelementEnd();
|
|
567
|
+
} if (rf & 2) {
|
|
568
|
+
const _r2 = i0.ɵɵreference(7);
|
|
569
|
+
const _r4 = i0.ɵɵreference(16);
|
|
570
|
+
i0.ɵɵadvance(1);
|
|
571
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(31, _c2, ctx.selectedViewType === ctx.ViewType.MapView || ctx.selectedViewType === ctx.ViewType.BoardView, ctx.filters.length <= 0));
|
|
572
|
+
i0.ɵɵadvance(1);
|
|
573
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(34, _c3, ctx.getFiltersCount()));
|
|
574
|
+
i0.ɵɵadvance(1);
|
|
575
|
+
i0.ɵɵproperty("ngIf", ctx.screenType === ctx.screenTypes.dataViewBuilder || ctx.dataViews.properties.showAddFilterButton);
|
|
576
|
+
i0.ɵɵadvance(1);
|
|
577
|
+
i0.ɵɵproperty("matMenuTriggerFor", _r2);
|
|
578
|
+
i0.ɵɵadvance(8);
|
|
579
|
+
i0.ɵɵproperty("ngModel", ctx.dataViews.properties.showAddFilterButton);
|
|
580
|
+
i0.ɵɵadvance(1);
|
|
581
|
+
i0.ɵɵproperty("matMenuTriggerFor", _r4);
|
|
582
|
+
i0.ɵɵadvance(5);
|
|
583
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(36, _c4, !ctx.showSearchBox));
|
|
584
|
+
i0.ɵɵadvance(1);
|
|
585
|
+
i0.ɵɵproperty("ngIf", ctx.showField);
|
|
586
|
+
i0.ɵɵadvance(1);
|
|
587
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(38, _c5, ctx.showSearchBox));
|
|
588
|
+
i0.ɵɵadvance(2);
|
|
589
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(40, _c6, ctx.showSearchBox))("svgIcon", "heroicons_solid:search");
|
|
590
|
+
i0.ɵɵadvance(1);
|
|
591
|
+
i0.ɵɵproperty("ngIf", ctx.showSearchBox);
|
|
592
|
+
i0.ɵɵadvance(1);
|
|
593
|
+
i0.ɵɵproperty("ngIf", ctx.categories.length);
|
|
594
|
+
i0.ɵɵadvance(1);
|
|
595
|
+
i0.ɵɵproperty("ngForOf", ctx.forms);
|
|
596
|
+
i0.ɵɵadvance(1);
|
|
597
|
+
i0.ɵɵproperty("ngIf", ctx.dataViews.type !== ctx.dataViewType.formDataView);
|
|
598
|
+
i0.ɵɵadvance(1);
|
|
599
|
+
i0.ɵɵproperty("filters", ctx.filters)("formId", ctx.form == null ? null : ctx.form.formId)("commonFilterArray", ctx.commonFilterArray)("screenType", ctx.screenType)("categories", ctx.categories)("appVersionId", ctx.appVersionId)("scopeType", ctx.scopeType)("showApplyFilterEvent", ctx.showApplyFilterEvent)("ngClass", i0.ɵɵpureFunction1(42, _c7, !ctx.dataViews.properties.showAddFilterButton));
|
|
600
|
+
i0.ɵɵadvance(2);
|
|
601
|
+
i0.ɵɵproperty("ngIf", ctx.form && ctx.form.type === ctx.formTypes.asset && ctx.selectedViewType === ctx.ViewType.DataListView);
|
|
602
|
+
i0.ɵɵadvance(1);
|
|
603
|
+
i0.ɵɵproperty("ngIf", ctx.showAssignToButton);
|
|
604
|
+
i0.ɵɵadvance(3);
|
|
605
|
+
i0.ɵɵproperty("ngIf", ctx.selectedViewType === ctx.ViewType.DataListView);
|
|
606
|
+
i0.ɵɵadvance(4);
|
|
607
|
+
i0.ɵɵproperty("formGroup", ctx.exportFormBuilder);
|
|
608
|
+
i0.ɵɵadvance(4);
|
|
609
|
+
i0.ɵɵproperty("ngIf", ctx.displayEmailValidationError);
|
|
610
|
+
i0.ɵɵadvance(1);
|
|
611
|
+
i0.ɵɵproperty("ngIf", ctx.displayNotification);
|
|
612
|
+
i0.ɵɵadvance(4);
|
|
613
|
+
i0.ɵɵproperty("disabled", ctx.displayEmailValidationError);
|
|
614
|
+
} }, directives: [i5.NgClass, i5.NgIf, i6.MatMenuTrigger, i6.MatMenu, i6.MatMenuItem, i7.MatSlideToggle, i3.NgControlStatus, i3.NgModel, i8.MatIcon, i5.NgForOf, i9.FiltersComponent, i3.ɵNgNoValidate, i3.NgControlStatusGroup, i3.FormGroupDirective, i3.DefaultValueAccessor, i3.FormControlName, i10.MatSelectionList, i10.MatListOption, i11.MatTooltip], pipes: [i12.SearchPipe], styles: ["lib-data-view-filters{display:flex;align-items:center;width:100%;max-width:100% 1392}lib-data-view-filters .data-list-filter{display:flex;align-items:center;justify-content:space-between;flex-wrap:nowrap;row-gap:.8rem;width:100%}@media screen and (max-width: 1024px){lib-data-view-filters .data-list-filter{flex-wrap:wrap;margin-bottom:.8rem}}lib-data-view-filters .data-list-filter .data-view-filter-wrapper{display:flex;align-items:start;column-gap:10px;margin-left:auto;margin-right:auto}@media screen and (min-width: 1024px){lib-data-view-filters .data-list-filter .data-view-filter-wrapper{width:calc(100% - (var(--buttonsWarraperWidth) + 12px))!important;max-width:calc(100% - (var(--buttonsWarraperWidth) + 12px))!important;min-width:calc(100% - (var(--buttonsWarraperWidth) + 12px))!important}}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container{display:flex;column-gap:.5rem!important;width:calc(100% - 6.6rem);min-width:calc(100% - 6.6rem);max-width:calc(100% - 6.6rem)}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .dash-reset,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-section,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-btn{border-left:1px solid #c9c9c9c9;white-space:nowrap;width:144px;display:flex;height:2rem;align-items:center;align-self:center;padding-left:.4rem}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .dash-reset .reset,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-section .reset,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-btn .reset{margin:0;font-size:11px}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .local-filter{width:auto;max-width:calc(100% - 15rem);height:2.5rem;align-items:center!important;margin-top:4px}@media screen and (max-width: 1024px){lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .local-filter{width:calc(100vw - 10.125rem)!important;max-width:calc(100% - 10.125rem)}}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .add-icon-btn{margin-top:9px}@media screen and (min-width: 1024px){lib-data-view-filters .data-list-filter .width-after-hide-button{width:calc(100% - 6.688rem)!important}}lib-data-view-filters .data-list-filter .data-view-header-button{display:flex;column-gap:12px}@media screen and (max-width: 1024px){lib-data-view-filters .data-list-filter .data-view-header-button{justify-content:flex-end;width:100%}}lib-data-view-filters .data-list-filter .outer-filterDiv{background-color:#fcfdff;border-color:#fcfdff}.filter-field-list{width:227px!important;min-width:280px!important}.list-field{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;display:inline-block}.list-field .mat-icon{vertical-align:middle}.global-border{border-bottom:1px solid #dcdcdc}.global-border .search-icon{margin-right:16px}.mat-menu-panel .mat-menu-content .mat-menu-item{font-size:13px}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{font-size:12px;display:flex!important}.mat-checkbox-ripple .mat-ripple-element,.mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#6454c0!important}.send-excel-report-form{padding:8px 18px;height:auto;background-color:#fff!important}.send-excel-report-form form{display:flex;flex-direction:column;row-gap:1rem}.send-excel-report-form .email-send-notification{font-size:10px;color:green;text-align:center;width:200px;margin:0 auto}.send-excel-report-form .email-send-email-error{font-size:10px;color:red;text-align:left;width:200px}.send-excel-report-form .report-xslx-email{border:1px solid #8080802e;height:34px;width:100%}.send-excel-report-form .report-xslx-email:hover{background:rgba(0,0,0,.04)!important;color:#172b4d!important}.send-excel-report-form .send-excel-report-form-btn{display:flex;justify-content:center;align-items:center;column-gap:1rem}.send-excel-report-form .send-excel-report-form-btn .btn{height:34px;line-height:34px;flex:50;border-radius:5px}.send-excel-report-form .send-excel-report-form-btn .cancel-btn{border:1px solid #80808059;display:flex;justify-content:center;align-items:center;color:#172b4d!important}.send-excel-report-form .send-excel-report-form-btn .cancel-btn:hover{background:rgba(0,0,0,.04)!important}.send-excel-report-form .send-excel-report-form-btn .send-btn{border:1px solid #7963ED;background-color:#7963ed!important;color:#fff;display:flex;align-items:center;justify-content:center;column-gap:.5rem}.send-excel-report-form .send-excel-report-form-btn .send-btn mat-icon{color:#fff;font-size:19px;height:1.188rem;min-height:1.188rem;width:1.188rem;min-width:1.188rem}.border-seperator{border-right:1px solid #c9c9c9c9;padding-right:12px}\n"], encapsulation: 2 });
|
|
615
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DataViewFiltersComponent, [{
|
|
616
|
+
type: Component,
|
|
617
|
+
args: [{ selector: 'lib-data-view-filters', encapsulation: ViewEncapsulation.None, template: "<div class=\"sticky data-list-filter\">\n <div class=\"data-view-filter-wrapper\" [ngClass]=\"{'width-after-hide-button':selectedViewType === ViewType.MapView || selectedViewType === ViewType.BoardView,'no-filter':filters.length <= 0}\">\n <div class=\"add-icon-btn\" [ngClass]=\"{'border-seperator': getFiltersCount()}\">\n <!-- Show hide condition for container. -->\n <button *ngIf=\"screenType === screenTypes.dataViewBuilder || dataViews.properties.showAddFilterButton\" class=\"light-blue-btn axo-font\"\n (click)=\"filtersMenuTrigger.openMenu()\" (contextmenu)=\"openPropertyMenu($event)\" >\n + Add Filter\n </button>\n\n <!-- Add Filter property Menu. this will get opened on right click -->\n <div #propertyMenuTrigger=\"matMenuTrigger\" [matMenuTriggerFor]=\"propertyMenu\"> </div>\n\n\n <mat-menu #propertyMenu=\"matMenu\">\n <div\n (click)=\"$event.stopPropagation();\"\n mat-menu-item\n class=\"filter-properties menu-btn\">\n <div class=\"filter-property\">\n <span class=\"style-title\">Show On Container</span>\n <mat-slide-toggle [(ngModel)]=\"dataViews.properties.showAddFilterButton\"></mat-slide-toggle>\n </div>\n </div>\n </mat-menu>\n\n <!-- Filter list menu -->\n <div #filtersMenuTrigger=\"matMenuTrigger\" [matMenuTriggerFor]=\"filtersMenu\"> </div>\n <mat-menu #filtersMenu=\"matMenu\" yPosition=\"below\" class=\"filter-field-list\" >\n <div (click)=\"$event.stopPropagation();\">\n <div class=\"group flex items-center justify-center mb-3\"\n [ngClass]=\"{'justify-between px-2.5': !showSearchBox}\">\n <span *ngIf=\"showField\" class=\"text-f font-medium\">Fields</span>\n\n <div class=\"flex items-center search-field\" [ngClass]=\"{'global-border px-2.5' : showSearchBox}\">\n <button (click)=\"'showFilterDiv()'\">\n <mat-icon [ngClass]=\"{'search-icon' : showSearchBox}\" class=\"mt-2 text-xs search-icons\"\n [svgIcon]=\"'heroicons_solid:search'\"></mat-icon>\n </button>\n\n <!-- <input id=\"global-field-search\" autocomplete=\"off\" placeholder=\"Search...\" [(ngModel)]=\"searchedTerm\" matInput class=\"search-bar chart-title\" [style.width]=\"!showSearchBox ? '0' : '100%'\" /> -->\n <mat-icon (click)=\"clear()\" *ngIf=\"showSearchBox\" class=\"clear_icon cursor-pointer text-base\">clear\n </mat-icon>\n </div>\n </div>\n <ng-container *ngIf=\"categories.length\">\n <div [ngClass]=\"{'field-container' : showSearchBox}\" *ngIf=\"(categories | search: searchedTerm)?.length\">\n <label class=\"px-2.5\" *ngIf=\"(categories | search: searchedTerm)?.length\">Category</label>\n <mat-selection-list #category>\n <mat-list-option checkboxPosition=\"after\"\n *ngFor=\"let category of categories| search: searchedTerm;let i=index \" [value]='category'\n [(selected)]=\"category.isSelected\" color=\"primary\">\n <span class=\"list-field\" [matTooltip]=\"category.name\"> {{category.name}}</span>\n </mat-list-option>\n </mat-selection-list>\n </div>\n </ng-container>\n <!-- Form filters. -->\n <div class=\"fields-div\" *ngFor=\"let _form of forms\">\n <label class=\"px-2.5\">{{_form?.name}}</label>\n <mat-selection-list (selectionChange)=\"addBasicFilter($event,_form)\">\n <ng-container *ngFor=\"let widget of _form?.widgets| search: searchedTerm\" >\n <ng-container *ngIf=\"!unhandledWIdgetsInFilters.includes(widget.type) && !unhandledWIdgetSubTypesInFilters.includes(widget.subType) \">\n <mat-list-option checkboxPosition=\"after\" [value]='widget' [selected]=\"this.selectedWidget.indexOf(widget.identifier) !== -1\" color=\"primary\">\n <span class=\"list-field\" [matTooltip]=\"widget.prompt\">\n <mat-icon class=\"svg-icon mr-2 align-middle\" [svgIcon]=\"widget.widgetIcon\"></mat-icon>\n {{widget.prompt}}\n </span>\n </mat-list-option>\n </ng-container>\n </ng-container>\n </mat-selection-list>\n </div>\n\n <!-- Meta Column Filters -->\n <div class=\"fields-div\" *ngIf=\"dataViews.type !== dataViewType.formDataView\" >\n <label class=\"px-2.5\">Meta Columns</label>\n <mat-selection-list (selectionChange)=\"addMetaColumnFilter($event)\">\n <mat-list-option checkboxPosition=\"after\" *ngFor=\"let metaColumn of metaColumns\"\n [value]='metaColumn' [selected]=\"this.selectedWidget.indexOf(metaColumn) !== -1\" color=\"primary\">\n <span class=\"list-field\" [matTooltip]=\"metaColumn\">\n <mat-icon class=\"svg-icon mr-2 align-middle\" [svgIcon]=\"'axo_square_text'\"></mat-icon>\n {{metaColumn}}\n </span>\n </mat-list-option>\n </mat-selection-list>\n </div>\n </div>\n </mat-menu>\n </div>\n\n <filters class=\"data-list-filter-container\" [filters]=\"filters\" [formId]=\"form?.formId\"\n [commonFilterArray]=\"commonFilterArray\" [screenType]=\"screenType\" [categories]='categories' [appVersionId]=\"appVersionId\"\n [scopeType]=\"scopeType\"\n (applyFilterEmit)=\"applyFilterEmit.emit($event)\" (resetFilterEmit)=\"resetFilterEmit.emit($event)\"\n (deleteFilterEmit)=\"deleteFilter($event)\"\n [showApplyFilterEvent]=\"showApplyFilterEvent\"\n [ngClass]=\"{'container-filter-witdh': !dataViews.properties.showAddFilterButton}\">\n </filters>\n\n </div>\n\n <div class=\"data-view-header-button\" id=\"data-view-header-button\">\n <button *ngIf=\" form && form.type === formTypes.asset && selectedViewType === ViewType.DataListView\" class=\"primary-btn axo-font\" (click)=\"addNewRecord.emit()\"> Add New Record</button>\n <button class=\"link-btn axo-font refresh-btn\" *ngIf=\"showAssignToButton\"(click)=\"assign.emit()\">Assign </button>\n <button class=\"link-btn axo-font refresh-btn\" (click)=\"refreshData.emit()\">Refresh Data</button>\n <button *ngIf=\"selectedViewType === ViewType.DataListView\" class=\"flex items-center icon-btn\" [matMenuTriggerFor]=\"beforeMenu\"><mat-icon matTooltip=\"Export Data\" svgIcon=\"axo_export\"></mat-icon></button>\n\n <!------------------------------------------------->\n\n <!-- context menu to show form to get userEmail Id to get userEmail for excel Export -->\n <mat-menu #beforeMenu=\"matMenu\" xPosition=\"before\">\n <div class=\"send-excel-report-form\">\n <form [formGroup]=\"exportFormBuilder\">\n <div >XLSX</div>\n <input mat-menu-item type=\"text\" class=\"report-xslx-email\" formControlName=\"email\" (ngModelChange)=\"emailValidate()\">\n <p *ngIf=\"displayEmailValidationError\" class=\"email-send-email-error\">Please provide a valid email ID</p>\n <p *ngIf=\"displayNotification\" class=\"email-send-notification\">Export is in progress. You will receive the report on your email once completed.</p>\n <div class=\"send-excel-report-form-btn\">\n <button class=\"cancel-btn btn\"(click)=\"closeExportMenu();\" >Cancel</button>\n <button class=\"send-btn btn\" (click)=\"sendEmail();$event.stopPropagation()\" [disabled]=\"displayEmailValidationError\">Export <mat-icon>send</mat-icon></button>\n </div>\n </form>\n </div>\n </mat-menu>\n </div>\n</div>\n", styles: ["lib-data-view-filters{display:flex;align-items:center;width:100%;max-width:100% 1392}lib-data-view-filters .data-list-filter{display:flex;align-items:center;justify-content:space-between;flex-wrap:nowrap;row-gap:.8rem;width:100%}@media screen and (max-width: 1024px){lib-data-view-filters .data-list-filter{flex-wrap:wrap;margin-bottom:.8rem}}lib-data-view-filters .data-list-filter .data-view-filter-wrapper{display:flex;align-items:start;column-gap:10px;margin-left:auto;margin-right:auto}@media screen and (min-width: 1024px){lib-data-view-filters .data-list-filter .data-view-filter-wrapper{width:calc(100% - (var(--buttonsWarraperWidth) + 12px))!important;max-width:calc(100% - (var(--buttonsWarraperWidth) + 12px))!important;min-width:calc(100% - (var(--buttonsWarraperWidth) + 12px))!important}}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container{display:flex;column-gap:.5rem!important;width:calc(100% - 6.6rem);min-width:calc(100% - 6.6rem);max-width:calc(100% - 6.6rem)}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .dash-reset,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-section,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-btn{border-left:1px solid #c9c9c9c9;white-space:nowrap;width:144px;display:flex;height:2rem;align-items:center;align-self:center;padding-left:.4rem}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .dash-reset .reset,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-section .reset,lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .reset-btn .reset{margin:0;font-size:11px}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .local-filter{width:auto;max-width:calc(100% - 15rem);height:2.5rem;align-items:center!important;margin-top:4px}@media screen and (max-width: 1024px){lib-data-view-filters .data-list-filter .data-view-filter-wrapper .data-list-filter-container .local-filter{width:calc(100vw - 10.125rem)!important;max-width:calc(100% - 10.125rem)}}lib-data-view-filters .data-list-filter .data-view-filter-wrapper .add-icon-btn{margin-top:9px}@media screen and (min-width: 1024px){lib-data-view-filters .data-list-filter .width-after-hide-button{width:calc(100% - 6.688rem)!important}}lib-data-view-filters .data-list-filter .data-view-header-button{display:flex;column-gap:12px}@media screen and (max-width: 1024px){lib-data-view-filters .data-list-filter .data-view-header-button{justify-content:flex-end;width:100%}}lib-data-view-filters .data-list-filter .outer-filterDiv{background-color:#fcfdff;border-color:#fcfdff}.filter-field-list{width:227px!important;min-width:280px!important}.list-field{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;display:inline-block}.list-field .mat-icon{vertical-align:middle}.global-border{border-bottom:1px solid #dcdcdc}.global-border .search-icon{margin-right:16px}.mat-menu-panel .mat-menu-content .mat-menu-item{font-size:13px}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{font-size:12px;display:flex!important}.mat-checkbox-ripple .mat-ripple-element,.mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#6454c0!important}.send-excel-report-form{padding:8px 18px;height:auto;background-color:#fff!important}.send-excel-report-form form{display:flex;flex-direction:column;row-gap:1rem}.send-excel-report-form .email-send-notification{font-size:10px;color:green;text-align:center;width:200px;margin:0 auto}.send-excel-report-form .email-send-email-error{font-size:10px;color:red;text-align:left;width:200px}.send-excel-report-form .report-xslx-email{border:1px solid #8080802e;height:34px;width:100%}.send-excel-report-form .report-xslx-email:hover{background:rgba(0,0,0,.04)!important;color:#172b4d!important}.send-excel-report-form .send-excel-report-form-btn{display:flex;justify-content:center;align-items:center;column-gap:1rem}.send-excel-report-form .send-excel-report-form-btn .btn{height:34px;line-height:34px;flex:50;border-radius:5px}.send-excel-report-form .send-excel-report-form-btn .cancel-btn{border:1px solid #80808059;display:flex;justify-content:center;align-items:center;color:#172b4d!important}.send-excel-report-form .send-excel-report-form-btn .cancel-btn:hover{background:rgba(0,0,0,.04)!important}.send-excel-report-form .send-excel-report-form-btn .send-btn{border:1px solid #7963ED;background-color:#7963ed!important;color:#fff;display:flex;align-items:center;justify-content:center;column-gap:.5rem}.send-excel-report-form .send-excel-report-form-btn .send-btn mat-icon{color:#fff;font-size:19px;height:1.188rem;min-height:1.188rem;width:1.188rem;min-width:1.188rem}.border-seperator{border-right:1px solid #c9c9c9c9;padding-right:12px}\n"] }]
|
|
618
|
+
}], function () { return [{ type: i1.DataViewFiltersService }, { type: i2.DataViewService }, { type: i3.FormBuilder }, { type: i4.FiltersService }]; }, { form: [{
|
|
619
|
+
type: Input
|
|
620
|
+
}], filters: [{
|
|
621
|
+
type: Input
|
|
622
|
+
}], categories: [{
|
|
623
|
+
type: Input
|
|
624
|
+
}], isEditable: [{
|
|
625
|
+
type: Input
|
|
626
|
+
}], screenType: [{
|
|
627
|
+
type: Input
|
|
628
|
+
}], appVersionId: [{
|
|
629
|
+
type: Input
|
|
630
|
+
}], selectedViewType: [{
|
|
631
|
+
type: Input
|
|
632
|
+
}], userEmail: [{
|
|
633
|
+
type: Input
|
|
634
|
+
}], dataViews: [{
|
|
635
|
+
type: Input
|
|
636
|
+
}], showAssignToButton: [{
|
|
637
|
+
type: Input
|
|
638
|
+
}], dirtyFlowCheckEvent: [{
|
|
639
|
+
type: Output
|
|
640
|
+
}], applyFilterEmit: [{
|
|
641
|
+
type: Output
|
|
642
|
+
}], resetFilterEmit: [{
|
|
643
|
+
type: Output
|
|
644
|
+
}], clearFilterEmit: [{
|
|
645
|
+
type: Output
|
|
646
|
+
}], addNewRecord: [{
|
|
647
|
+
type: Output
|
|
648
|
+
}], refreshData: [{
|
|
649
|
+
type: Output
|
|
650
|
+
}], assign: [{
|
|
651
|
+
type: Output
|
|
652
|
+
}], exportData: [{
|
|
653
|
+
type: Output
|
|
654
|
+
}], contextMenu: [{
|
|
655
|
+
type: ViewChild,
|
|
656
|
+
args: [MatMenuTrigger]
|
|
657
|
+
}], propertyMenuTrigger: [{
|
|
658
|
+
type: ViewChild,
|
|
659
|
+
args: ['propertyMenuTrigger']
|
|
660
|
+
}] }); })();
|
|
661
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS12aWV3LWZpbHRlcnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZGF0YS12aWV3LWxpYi9kYXRhLXZpZXctZmlsdGVycy9kYXRhLXZpZXctZmlsdGVycy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9kYXRhLXZpZXctbGliL2RhdGEtdmlldy1maWx0ZXJzL2RhdGEtdmlldy1maWx0ZXJzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxnQ0FBZ0MsRUFBRSxNQUFNLDZDQUE2QyxDQUFDO0FBRTFILE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUNsRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDakUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3BELE9BQU8sRUFBaUIsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFpQixTQUFTLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0ksT0FBTyxFQUFFLFdBQVcsRUFBYSxVQUFVLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUVwRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFeEQsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUVuRixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUNwRixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDaEUsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQzdDLE9B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QUFLO1lBQ0csU0FBUztrQkFBakIsS0FBSztZQUNHLGtCQUFrQjtrQkFBMUIsS0FBSztZQUVJLG1CQUFtQjtrQkFBNUIsTUFBTTtZQUNHLGVBQWU7a0JBQXhCLE1BQU07WUFDRyxlQUFlO2tCQUF4QixNQUFNO1lBQ0csZUFBZTtrQkFBeEIsTUFBTTtZQUNHLFlBQVk7a0JBQXJCLE1BQU07WUFDRyxXQUFXO2tCQUFwQixNQUFNO1lBQ0csTUFBTTtrQkFBZixNQUFNO1lBQ0csVUFBVTtrQkFBbkIsTUFBTTtZQUVvQixXQUFXO2tCQUFyQyxTQUFTO21CQUFDLGNBQWM7WUFDUyxtQkFBbUI7a0JBQXBELFNBQVM7bUJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVW5oYW5kbGVkV0lkZ2V0c0luRmlsdGVycywgVW5oYW5kbGVkV0lkZ2V0U3ViVHlwZXNJbkZpbHRlcnMgfSBmcm9tICcuLy4uLy4uL2VubGlnaHRlbi1saWIvZmlsdGVycy9zdGF0aWMtd2lkZ2V0JztcbmltcG9ydCB7IERhdGFWaWV3RmlsdGVyIH0gZnJvbSAnLi8uLi9kYXRhLXZpZXcvZGF0YS12aWV3LWZpbHRlcic7XG5pbXBvcnQgeyBGb3JtVHlwZSB9IGZyb20gJy4vLi4vLi4vZm9ybXMvcGFnZS9jb21tb24vd2lkZ2V0LWVudW1zJztcbmltcG9ydCB7IEZpbHRlcnNTZXJ2aWNlIH0gZnJvbSAnLi8uLi8uLi9maWx0ZXJzL2ZpbHRlcnMuc2VydmljZSc7XG5pbXBvcnQgeyBEYXRhVmlldyB9IGZyb20gJy4vLi4vZGF0YS12aWV3L2RhdGEtdmlldyc7XG5pbXBvcnQgeyBBZnRlclZpZXdJbml0LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBTaW1wbGVDaGFuZ2VzLCBWaWV3Q2hpbGQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgRm9ybUdyb3VwLCBWYWxpZGF0b3JzIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgTWF0U2VsZWN0aW9uTGlzdENoYW5nZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2xpc3QnO1xuaW1wb3J0IHsgTWF0TWVudVRyaWdnZXIgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9tZW51JztcbmltcG9ydCB7IEF4RmlsdGVyIH0gZnJvbSAnLi4vLi4vZW5saWdodGVuLWxpYi9maWx0ZXJzL2F4LWZpbHRlcic7XG5pbXBvcnQgeyBTY29wZVR5cGUsIFNjcmVlblR5cGUgfSBmcm9tICcuLi8uLi9lbmxpZ2h0ZW4tbGliL2ZpbHRlcnMvY29uZGl0aW9uLXR5cGUnO1xuaW1wb3J0IHsgRmlsdGVyQ2F0ZWdvcnkgfSBmcm9tICcuLi8uLi9lbmxpZ2h0ZW4tbGliL2ZpbHRlcnMvZmlsdGVyLWNhdGVnb3J5JztcbmltcG9ydCB7IEdlbmVyYWxGaWx0ZXJUeXBlIH0gZnJvbSAnLi4vLi4vZW5saWdodGVuLWxpYi9maWx0ZXJzL2dlbmVyYWwtZmlsdGVyLXR5cGUnO1xuaW1wb3J0IHsgTWV0YUNvbHVtblR5cGVzIH0gZnJvbSAnLi4vLi4vZmlsdGVycy9tZXRhQ29sdW1uVHlwZXMnO1xuaW1wb3J0IHsgQXhGb3JtIH0gZnJvbSAnLi4vLi4vZm9ybXMvYXgtZm9ybSc7XG5pbXBvcnQgeyBEYXRhVmlld1NlcnZpY2UgfSBmcm9tICcuLi9kYXRhLXZpZXcuc2VydmljZSc7XG5pbXBvcnQgeyBEYXRhVmlld1R5cGUsIFZpZXdUeXBlIH0gZnJvbSAnLi4vZGF0YS12aWV3L2RhdGEtdmlldy1lbnVtcyc7XG5pbXBvcnQgeyBEYXRhVmlld0ZpbHRlcnNTZXJ2aWNlIH0gZnJvbSAnLi9kYXRhLXZpZXctZmlsdGVycy5zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWRhdGEtdmlldy1maWx0ZXJzJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGEtdmlldy1maWx0ZXJzLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGF0YS12aWV3LWZpbHRlcnMuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBEYXRhVmlld0ZpbHRlcnNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsQWZ0ZXJWaWV3SW5pdCB7XG4gIC8vPC0tLS0tLSggSW5wdXRzICkgLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLT5cbiAgQElucHV0KCkgZm9ybTogQXhGb3JtO1xuICBASW5wdXQoKSBmaWx0ZXJzOiBBcnJheTxBeEZpbHRlcj47XG4gIEBJbnB1dCgpIGNhdGVnb3JpZXM6IEFycmF5PEZpbHRlckNhdGVnb3J5PiA9IFtdO1xuICBASW5wdXQoKSBpc0VkaXRhYmxlOiBib29sZWFuO1xuICBASW5wdXQoKSBzY3JlZW5UeXBlOiBTY3JlZW5UeXBlO1xuICBASW5wdXQoKSBhcHBWZXJzaW9uSWQ6IG51bWJlcjtcbiAgQElucHV0KCkgc2VsZWN0ZWRWaWV3VHlwZTogVmlld1R5cGU7XG4gIEBJbnB1dCgpIHVzZXJFbWFpbDogc3RyaW5nO1xuICBASW5wdXQoKSBkYXRhVmlld3M6IERhdGFWaWV3O1xuICBASW5wdXQoKSBzaG93QXNzaWduVG9CdXR0b246IGJvb2xlYW4gPSBmYWxzZTtcbiAgLy88LS0tLS0tLS0tLS0tLShvdXRwdXRzKSAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIEBPdXRwdXQoKSBkaXJ0eUZsb3dDaGVja0V2ZW50ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG4gIEBPdXRwdXQoKSBhcHBseUZpbHRlckVtaXQgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcbiAgQE91dHB1dCgpIHJlc2V0RmlsdGVyRW1pdCA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuICBAT3V0cHV0KCkgY2xlYXJGaWx0ZXJFbWl0ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG4gIEBPdXRwdXQoKSBhZGROZXdSZWNvcmQgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcbiAgQE91dHB1dCgpIHJlZnJlc2hEYXRhID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG4gIEBPdXRwdXQoKSBhc3NpZ24gPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcbiAgQE91dHB1dCgpIGV4cG9ydERhdGEgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcbiAgLy88LS0tLS0tLS0tLS0tLS0oQ2hpbGQgZWxlbWVudCBhY2Nlc3MpLS0tLS0tLS0tLS0tLT5cbiAgQFZpZXdDaGlsZChNYXRNZW51VHJpZ2dlcikgY29udGV4dE1lbnU6IE1hdE1lbnVUcmlnZ2VyO1xuICBAVmlld0NoaWxkKCdwcm9wZXJ0eU1lbnVUcmlnZ2VyJykgcHJvcGVydHlNZW51VHJpZ2dlcjogTWF0TWVudVRyaWdnZXI7XG4gIC8vPC0tLS0tLS0tLS0tLS0tLS0oIENvbXBvbmVudCBWYXJpYWJsZXMpLS0tLS0tLS0tLS0tLT5cbiAgc2NvcGVUeXBlID0gMjtcbiAgc2hvd1NlYXJjaEJveDogYm9vbGVhbiA9IGZhbHNlO1xuICBzaG93RmllbGQ6IGJvb2xlYW4gPSB0cnVlO1xuICB0aXRsZVZhbHVlOiBzdHJpbmcgPSAnJztcbiAgc2VhcmNoZWRUZXJtOiBzdHJpbmcgPSAnJzs7XG4gIHNob3dBcHBseUZpbHRlckV2ZW50OiBib29sZWFuID0gdHJ1ZTtcbiAgZm9ybUlkOiBzdHJpbmc7XG4gIHNlbGVjdGVkV2lkZ2V0OiBBcnJheTxzdHJpbmc+ID0gW107XG4gIGNvbW1vbkZpbHRlckFycmF5OiBBcnJheTxhbnk+ID0gW107XG4gIGV4cG9ydEZvcm1CdWlsZGVyOiBGb3JtR3JvdXA7XG4gIGRpc3BsYXlOb3RpZmljYXRpb246IGJvb2xlYW4gPSBmYWxzZTtcbiAgZW1haWxQYXR0ZXJuOiBzdHJpbmcgPSAnXlthLXowLTkuXyUrLV0rQFthLXowLTkuLV0rXFwuW2Etel17Miw0fSQnO1xuICBkaXNwbGF5RW1haWxWYWxpZGF0aW9uRXJyb3I6IGJvb2xlYW4gPSBmYWxzZTtcbiAgZm9ybXM6IEFycmF5PEF4Rm9ybT4gPSBbXTtcbiAgb2JzOiBSZXNpemVPYnNlcnZlcjtcbiAgbWV0YUNvbHVtbnM6IEFycmF5PE1ldGFDb2x1bW5UeXBlcz4gPSBbTWV0YUNvbHVtblR5cGVzLnRhc2tTdGF0dXMsTWV0YUNvbHVtblR5cGVzLnRhc2tBc3NpZ25lZFRvLE1ldGFDb2x1bW5UeXBlcy50YXNrQ3JlYXRlZERhdGVdO1xuICB1bmhhbmRsZWRXSWRnZXRzSW5GaWx0ZXJzPSBVbmhhbmRsZWRXSWRnZXRzSW5GaWx0ZXJzO1xuICB1bmhhbmRsZWRXSWRnZXRTdWJUeXBlc0luRmlsdGVycyA9IFVuaGFuZGxlZFdJZGdldFN1YlR5cGVzSW5GaWx0ZXJzO1xuICAvKipcbiAgICogQ29uc3RydWN0b3JcbiAgICpcbiAgICogQHBhcmFtIF9kYXRhVklld0ZpbHRlclNlcnZpY2VcbiAgICogQHBhcmFtIF9mb3JtQnVpbGRlclxuICAgKi9cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBfZGF0YVZJZXdGaWx0ZXJTZXJ2aWNlOiBEYXRhVmlld0ZpbHRlcnNTZXJ2aWNlLFxuICAgIHByaXZhdGUgX2RhdGFWaWV3U2VydmljZTogRGF0YVZpZXdTZXJ2aWNlLFxuICAgIHByaXZhdGUgX2Zvcm1CdWlsZGVyOiBGb3JtQnVpbGRlcixcbiAgICBwcml2YXRlIF9maWx0ZXJTZXJ2aWNlOiBGaWx0ZXJzU2VydmljZVxuICApIHsgfVxuXG4gIGdldCBmb3JtVHlwZXMoKTogdHlwZW9mIEZvcm1UeXBlIHtcbiAgICByZXR1cm4gRm9ybVR5cGU7XG4gIH1cbiAgLyoqXG4gICAqIE9uIGluaXQgbGlmZSBjeWNsZSBob29rXG4gICAqL1xuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmV4cG9ydEZvcm1CdWlsZGVyID0gdGhpcy5fZm9ybUJ1aWxkZXIuZ3JvdXAoe1xuICAgICAgZW1haWw6IFt0aGlzLnVzZXJFbWFpbCwgW1ZhbGlkYXRvcnMucmVxdWlyZWQsIFZhbGlkYXRvcnMuZW1haWxdXVxuICAgIH0pO1xuICB9XG4gIG5nQWZ0ZXJWaWV3SW5pdCgpe1xuICAgIHRoaXMub2JzID0gbmV3IFJlc2l6ZU9ic2VydmVyKCgpID0+IHtcbiAgICAgIC8qKiBnZXQgd2lkdGggb2YgZmlsdGVyIGJ1dHRvbnMgd3JyYXBlciAqL1xuICAgICAgY29uc3QgbnVtYmVyID0gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoJ2RhdGEtdmlldy1oZWFkZXItYnV0dG9uJyk/LmNsaWVudFdpZHRoKydweCc7XG4gICAgICAvKipTZXQgd2lkdGggb2YgY3NzIHZhcmlhYmxlICovXG4gICAgICBpZihudW1iZXIpXG4gICAgICAgICAge2RvY3VtZW50LmRvY3VtZW50RWxlbWVudC5zdHlsZS5zZXRQcm9wZXJ0eSgnLS1idXR0b25zV2FycmFwZXJXaWR0aCcsIG51bWJlcik7fVxuICAgIH0pO1xuICAgIHRoaXMub2JzLm9ic2VydmUoZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoJ2RhdGEtdmlldy1oZWFkZXItYnV0dG9uJykpO1xuICB9XG5cbiAgLyoqXG4gICAqIE9uIGNoYW5nZXMgbGlmZSBjeWNsZSBob29rLlxuICAgKi9cbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgIC8qKiBnZXQgd2lkdGggb2YgZmlsdGVyIGJ1dHRvbnMgd3JyYXBlciAqL1xuICAgIGlmICh0aGlzLm9icykge1xuICAgICAgY29uc3QgbnVtYmVyID0gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoJ2RhdGEtdmlldy1oZWFkZXItYnV0dG9uJykuY2xpZW50V2lkdGgrJ3B4JztcbiAgICAgIC8qKlNldCB3aWR0aCBvZiBjc3MgdmFyaWFibGUgKi9cbiAgICAgIGRvY3VtZW50LmRvY3VtZW50RWxlbWVudC5zdHlsZS5zZXRQcm9wZXJ0eSgnLS1idXR0b25zV2FycmFwZXJXaWR0aCcsIG51bWJlcik7XG4gICAgICB0aGlzLm9icy5vYnNlcnZlKGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKCdkYXRhLXZpZXctaGVhZGVyLWJ1dHRvbicpKTtcbiAgICAgIH1cbiAgICBpZiAoY2hhbmdlcy5kYXRhVmlld3MpIHtcbiAgICAgIHRoaXMuZm9ybXMgPSBbXTtcbiAgICAgIHRoaXMuY29tbW9uRmlsdGVyQXJyYXkgPSBbXTtcbiAgICAgIHRoaXMuZ2VuZXJhdGVDb21tb25GaWx0ZXJMaXN0KCk7XG4gICAgICB0aGlzLnNlbGVjdGVkV2lkZ2V0ID0gW107XG4gICAgICBpZih0aGlzLmRhdGFWaWV3cy50eXBlICE9PSBEYXRhVmlld1R5cGUuZ2VuZXJpY1Rhc2tWaWV3KXtcbiAgICAgICAgdGhpcy5mb3Jtcy5wdXNoKHRoaXMuZm9ybSk7XG4gICAgICAgIGlmKHRoaXMuZm9ybS50cmFja2VkQXNzZXRJZCl7XG4gICAgICAgICAgICB0aGlzLl9kYXRhVmlld1NlcnZpY2UuZ2V0Rm9ybURldGFpbHModGhpcy5mb3JtLnRyYWNrZWRBc3NldElkKS50aGVuKChfZm9ybSk9PntcbiAgICAgICAgICAgICAgICB0aGlzLmZvcm1zLnB1c2goX2Zvcm0pO1xuICAgICAgICAgICAgfSk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICAvKipcbiAgICogR2V0dGVyIGZvciBkYXRhVmlld1R5cGVcbiAgICovXG4gICBnZXQgZGF0YVZpZXdUeXBlKCl7XG4gICAgcmV0dXJuIERhdGFWaWV3VHlwZTtcbiAgfVxuXG4gIC8qKlxuICAgKiBHZXR0ZXIgZm9yIFZpZXcgVHlwZVxuICAgKi9cbiAgIGdldCBWaWV3VHlwZSgpe1xuICAgIHJldHVybiBWaWV3VHlwZTtcbiAgICB9XG4gICAvKlxuICAgICogZ2V0dGVyIGZvciBzY3JlZW5UeXBlc1xuICAgICovXG4gIHB1YmxpYyBnZXQgc2NyZWVuVHlwZXMoKTogdHlwZW9mIFNjcmVlblR5cGV7XG4gICAgcmV0dXJuIFNjcmVlblR5cGU7XG4gIH1cblxuICAvKipcbiAgICogR2VuZXJhdGUgY29tbW9uIGZpbHRlciBsaXN0IGZyb20gZXhpc3RpbmcgZmlsdGVycyBhbmQgY290ZWdvcmllcy5cbiAgICovXG4gIGdlbmVyYXRlQ29tbW9uRmlsdGVyTGlzdCgpOiB2b2lkIHtcbiAgICAvL0FkZCBmaWx0ZXJzIGluIHRoZSBjb21tb24gZmlsdGVycyBsaXN0XG4gICAgdGhpcy5maWx0ZXJzLmZvckVhY2goKGZpbHRlcikgPT4ge1xuICAgIC8vICAgZmlsdGVyLmdlbmVyYWxGaWx0ZXJUeXBlID0gR2VuZXJhbEZpbHRlclR5cGUuZmlsdGVycztcbiAgICAgIGlmICghdGhpcy5jb21tb25GaWx0ZXJBcnJheS5pbmNsdWRlcyhmaWx0ZXIpKSB7XG4gICAgICAgIHRoaXMuY29tbW9uRmlsdGVyQXJyYXkucHVzaChmaWx0ZXIpO1xuICAgICAgfVxuICAgIH0pO1xuXG4gICAgLy9BZGQgQ2F0ZWdvcmllcyBpbiB0aGUgY29tbW9uIGZpbHRlcnMgbGlzdFxuICAgIHRoaXMuY2F0ZWdvcmllcy5mb3JFYWNoKChjYXRlZ29yeSkgPT4ge1xuICAgICAgY2F0ZWdvcnkuZ2VuZXJhbEZpbHRlclR5cGUgPSBHZW5lcmFsRmlsdGVyVHlwZS5jYXRlZ29yeTtcbiAgICAgIGlmICghdGhpcy5jb21tb25GaWx0ZXJBcnJheS5pbmNsdWRlcyhjYXRlZ29yeSkpIHtcbiAgICAgICAgdGhpcy5jb21tb25GaWx0ZXJBcnJheS5wdXNoKGNhdGVnb3J5KTtcbiAgICAgIH1cbiAgICB9KTtcblxuICAgIC8vIHNvcnQgdGhlIGZpbHRlciBieSBvcmRlci5cbiAgICB0aGlzLmNvbW1vbkZpbHRlckFycmF5LnNvcnQoKGEsIGIpID0+IChhLmdyaWRQcm9wZXJ0aWVzLnggPiBiLmdyaWRQcm9wZXJ0aWVzLngpID8gMSA6ICgoYi5ncmlkUHJvcGVydGllcy54ID4gYS5ncmlkUHJvcGVydGllcy54KSA/IC0xIDogMCkpO1xuICB9XG5cbiAgLyoqXG4gICAqIFRoaXMgd2lsbCBnZXQgY2FsbGVkIG9uIE1hdFNlbGVjdGlvbiBDaGFuZ2VcbiAgICogV2UgZGVsZXRlIGZpbHRlciBpZiBpZiBkZXNlbGVjdCB3aWRnZXQgb3Igd2UgY3JlYXRlIG5ldyBmaWx0ZXIgaWYgc2VsZWN0IHdpZGdldC5cbiAgICpcbiAgICogQHBhcmFtIGV2ZW50XG4gICAqL1xuICBhZGRCYXNpY0ZpbHRlcihldmVudDogTWF0U2VsZWN0aW9uTGlzdENoYW5nZSxmb3JtOiBBeEZvcm0pOiB2b2lkIHtcbiAgICAvLyBBZGQgbmV3IGZpbHRlclxuICAgIGlmIChldmVudC5vcHRpb24uc2VsZWN0ZWQpIHtcbiAgICAgIGNvbnN0IHdpZGdldCA9IGV2ZW50Lm9wdGlvbi52YWx1ZTtcbiAgICAgIHRoaXMuc2VsZWN0ZWRXaWRnZXQucHVzaCh3aWRnZXQuaWRlbnRpZmllcik7XG4gICAgICB0aGlzLnNob3dBcHBseUZpbHRlckV2ZW50ID0gIXRoaXMuc2hvd0FwcGx5RmlsdGVyRXZlbnQ7XG4gICAgICAvL2NyZWF0ZWQgbmV3IGZpbHRlciBieSB3aWRnZXRcbiAgICAgIGNvbnN0IGZpbHRlciA9IHRoaXMuX2RhdGFWSWV3RmlsdGVyU2VydmljZS5nZW5lcmF0ZUJhc2ljRmlsdGVyKFxuICAgICAgICB0aGlzLmFwcFZlcnNpb25JZCxcbiAgICAgICAgZXZlbnQsXG4gICAgICAgIHRoaXMuZmlsdGVycyxcbiAgICAgICAgU2NvcGVUeXBlLmdsb2JhbCxcbiAgICAgICAgdGhpcy5maWx0ZXJzLmxlbmd0aCxcbiAgICAgICAgZm9ybT8uZm9ybUlkXG4gICAgICApIGFzIERhdGFWaWV3RmlsdGVyO1xuICAgICAgICBmaWx0ZXIuZm9ybVR5cGUgPSBmb3JtLnR5cGU7XG4gICAgICBmaWx0ZXIuc2VhcmNoTm9kZXNbMF0uZXhwcmVzc2lvbi5maWVsZC5jaG9pY2VzID0gd2lkZ2V0LmNob2ljZXM7XG4gICAgICB0aGlzLmZpbHRlcnMucHVzaChmaWx0ZXIpO1xuICAgICAgdGhpcy5jb21tb25GaWx0ZXJBcnJheS5wdXNoKGZpbHRlcik7XG4gICAgfSBlbHNlIHtcbiAgICAgIC8vcmVtb3ZlIHNlbGVjdGVkIGZpbHRlclxuICAgICAgdGhpcy5zZWxlY3RlZFdpZGdldC5zcGxpY2UodGhpcy5zZWxlY3RlZFdpZGdldC5pbmRleE9mKGV2ZW50Lm9wdGlvbi52YWx1ZS5pZGVudGlmaWVyKSwxKTtcbiAgICAgIGNvbnN0IGZpbHRlciA9IHRoaXMuZ2V0RmlsdGVyRnJvbUxpc3QoZXZlbnQub3B0aW9uLnZhbHVlLmlkZW50aWZpZXIpO1xuICAgICAgdGhpcy5yZW1vdmVCYXNpY0ZpbHRlcihmaWx0ZXIpO1xuICAgIH1cblxuICB9XG4gIC8qKlxuICAgKiBBZGQgTWV0YSBDb2x1bW4gRmlsdGVyXG4gICAqXG4gICAqIEBwYXJhbSBldmVudFxuICAgKi9cbiAgYWRkTWV0YUNvbHVtbkZpbHRlcihldmVudDogTWF0U2VsZWN0aW9uTGlzdENoYW5nZSk6IHZvaWR7XG4gICAgaWYgKGV2ZW50Lm9wdGlvbi5zZWxlY3RlZCkge1xuICAgICAgY29uc3QgdmFsdWUgPSBldmVudC5vcHRpb24udmFsdWU7XG5cbiAgICAgIGNvbnN0IGZpbHRlciA9IHRoaXMuX2ZpbHRlclNlcnZpY2UuZ2VuZXJhdGVNZXRhQ29sdW1uRmlsdGVyKHZhbHVlLHRoaXMuYXBwVmVyc2lvbklkKSBhcyBEYXRhVmlld0ZpbHRlcjtcbiAgICAgIHRoaXMuZmlsdGVycy5wdXNoKGZpbHRlcik7XG4gICAgICB0aGlzLmNvbW1vbkZpbHRlckFycmF5LnB1c2goZmlsdGVyKTtcbiAgICAvLyAgIGZpbHRlci5mb3JtVHlwZSA9IHZhbHVlO1xuICAgIH1lbHNle1xuICAgICAgLy9yZW1vdmUgc2VsZWN0ZWQgZmlsdGVyXG4gICAgICB0aGlzLnNlbGVjdGVkV2lkZ2V0LnNwbGljZSh0aGlzLnNlbGVjdGVkV2lkZ2V0LmluZGV4T2YoZXZlbnQub3B0aW9uLnZhbHVlKSwxKTtcbiAgICAgIGNvbnN0IGZpbHRlciA9IHRoaXMuZ2V0RmlsdGVyRnJvbUxpc3QoZXZlbnQub3B0aW9uLnZhbHVlLmlkZW50aWZpZXIpO1xuICAgICAgdGhpcy5yZW1vdmVCYXNpY0ZpbHRlcihmaWx0ZXIpO1xuICAgIH1cbiAgfVxuXG4gIC8qKlxuICAgKiBSZW1vdmUgZmlsdGVyIGZyb20gZmlsdGVyIGFycmF5IGlmIGZpbHRlciBpcyBub3Qgc2F2ZWQgb3IgbWFyayBhcyBkZWxldGVkIGlmIGl0J3Mgc2F2ZWQuXG4gICAqXG4gICAqIEBwYXJhbSBmaWx0ZXJcbiAgICovXG4gIHJlbW92ZUJhc2ljRmlsdGVyKGZpbHRlcjogQXhGaWx0ZXIpOiB2b2lkIHtcbiAgICBpZihmaWx0ZXIuaWQgPT09IDApe1xuICAgICAgdGhpcy5maWx0ZXJzLnNwbGljZSh0aGlzLmZpbHRlcnMuaW5kZXhPZihmaWx0ZXIpLCAxKTtcbiAgICAgIHRoaXMuY29tbW9uRmlsdGVyQXJyYXkuc3BsaWNlKHRoaXMuY29tbW9uRmlsdGVyQXJyYXkuaW5kZXhPZihmaWx0ZXIpLCAxKTtcbiAgICB9ZWxzZXtcbiAgICAgIGZpbHRlci5pc0RlbGV0ZWQgPSB0cnVlO1xuICAgICAgZmlsdGVyLmlzU2VsZWN0ZWQgPSBmYWxzZTtcbiAgICB9XG5cbiAgfVxuXG4gIC8qKlxuICAgKiBHZXQgZmlsdGVyIGJ5IHdpZGdldCBpZGVudGlmaWVyLlxuICAgKlxuICAgKiBAcGFyYW0gaWRlbnRpZmllclxuICAgKiBAcmV0dXJuc1xuICAgKi9cbiAgZ2V0RmlsdGVyRnJvbUxpc3QoaWRlbnRpZmllcjogc3RyaW5nKTogQXhGaWx0ZXIge1xuICAgIGZvciAoY29uc3QgZmlsdGVyIG9mIHRoaXMuY29tbW9uRmlsdGVyQXJyYXkpIHtcbiAgICAgIGlmIChmaWx0ZXIuc2VhcmNoTm9kZXNbMF0uZXhwcmVzc2lvbi5maWVsZC5uYW1lID09PSBpZGVudGlmaWVyKVxuICAgICAgICB7cmV0dXJuIGZpbHRlcjt9O1xuICAgIH1cbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuXG5cbiAgLyoqXG4gICAqIFRoaXMgd2lsbCBnZXQgY2FsbGVkIGZyb20gZmlsdGVyIGNvbW1vbmVudCBvbiBmaWx0ZXIgZGVsZXRlLlxuICAgKlxuICAgKiBAcGFyYW0gaW5kZXhcbiAgICovXG4gIGRlbGV0ZUZpbHRlcihpbmRleDogbnVtYmVyKTogdm9pZHtcbiAgICBjb25zdCBmaWx0ZXIgPSB0aGlzLmNvbW1vbkZpbHRlckFycmF5W2luZGV4XTtcbiAgICB0aGlzLnNlbGVjdGVkV2lkZ2V0LnNwbGljZSh0aGlzLnNlbGVjdGVkV2lkZ2V0LmluZGV4T2YoZmlsdGVyLnNlYXJjaE5vZGVzWzBdLmV4cHJlc3Npb24uZmllbGQubmFtZSksMSk7XG4gICAgdGhpcy5yZW1vdmVCYXNpY0ZpbHRlcihmaWx0ZXIpO1xuICB9XG4gIGdldEZpbHRlcnNDb3VudCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5maWx0ZXJzLmZpbHRlcihmbCA9PiAhZmwuaXNEZWxldGVkKS5sZW5ndGggPiAwO1xuICB9XG5cbiAgICAvKipcbiAgICAgKiAgVmFsaWRhdGlvbiBvZiBlbWFpbCBpZCBmb3IgZXhwb3J0IG9mIHRhYnVsYXIgcmVwb3J0XG4gICAgICovXG5cbiAgICAgZW1haWxWYWxpZGF0ZSgpOiB2b2lkIHtcbiAgICAgIGNvbnN0IHJlZ2V4ID0gbmV3IFJlZ0V4cCh0aGlzLmVtYWlsUGF0dGVybik7XG4gICAgICB0aGlzLmRpc3BsYXlFbWFpbFZhbGlkYXRpb25FcnJvciA9ICFyZWdleC50ZXN0KHRoaXMuZXhwb3J0Rm9ybUJ1aWxkZXIudmFsdWVbJ2VtYWlsJ10pO1xuICAgICAgaWYgKHRoaXMuZGlzcGxheUVtYWlsVmFsaWRhdGlvbkVycm9yKSB7XG4gICAgICAgIHRoaXMuZGlzcGxheU5vdGlmaWNhdGlvbiA9IGZhbHNlO1xuICAgICAgfVxuICAgIH1cblxuICAgICAgLyoqXG4gICAgICAgKiAgY2xvc2UgdGhlIGV4cG9ydCB0byBlbWFpbCBtZW51IG9uIGNsaWNrIG9mIGNhbmNlbFxuICAgICAgICovXG4gIGNsb3NlRXhwb3J0TWVudSgpOiB2b2lkIHtcbiAgICB0aGlzLmNvbnRleHRNZW51LmNsb3NlTWVudSgpO1xuICAgIHRoaXMuZGlzcGxheU5vdGlmaWNhdGlvbiA9IGZhbHNlO1xuICB9XG5cbiAgIC8qKlxuICAgICogIGNhbGwgdGhpcyBmdW5jdGlvbiBmb3Igc2VuZCBlbWFpbCB3aXRoIGV4Y2VsIHJlcG9ydCBhcyBhdHRhY2htZW50XG4gICAgKi9cblxuICAgIHNlbmRFbWFpbCgpOiB2b2lkIHtcbiAgICAgIHRoaXMuZGlzcGxheU5vdGlmaWNhdGlvbiA9IGZhbHNlO1xuICAgICAgaWYgKCF0aGlzLmRpc3BsYXlFbWFpbFZhbGlkYXRpb25FcnJvcikge1xuICAgICAgICB0aGlzLmV4cG9ydERhdGEuZW1pdCh0aGlzLmV4cG9ydEZvcm1CdWlsZGVyLnZhbHVlWydlbWFpbCddKTtcbiAgICAgICAgdGhpcy5kaXNwbGF5Tm90aWZpY2F0aW9uPXRydWU7XG4gICAgICB9XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogT3BlbiBNYXQgbWVudSBvbiByaWdodCBjbGljayBvbiBhZGQgZmlsdGVyICBidXR0b24uXG4gICAgICogQHBhcmFtIGV2ZW50XG4gICAgICovXG4gICAgb3BlblByb3BlcnR5TWVudShldmVudDogUG9pbnRlckV2ZW50KTogdm9pZHtcbiAgICAgICAgaWYodGhpcy5zY3JlZW5UeXBlID09PSBTY3JlZW5UeXBlLmRhdGFWaWV3QnVpbGRlcil7XG4gICAgICAgICAgICB0aGlzLnByb3BlcnR5TWVudVRyaWdnZXIub3Blbk1lbnUoKTtcbiAgICAgICAgICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuICAgICAgICAgICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcbiAgICAgICAgfVxuICAgIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJzdGlja3kgZGF0YS1saXN0LWZpbHRlclwiPlxuICAgIDxkaXYgY2xhc3M9XCJkYXRhLXZpZXctZmlsdGVyLXdyYXBwZXJcIiBbbmdDbGFzc109XCJ7J3dpZHRoLWFmdGVyLWhpZGUtYnV0dG9uJzpzZWxlY3RlZFZpZXdUeXBlID09PSBWaWV3VHlwZS5NYXBWaWV3IHx8IHNlbGVjdGVkVmlld1R5cGUgPT09IFZpZXdUeXBlLkJvYXJkVmlldywnbm8tZmlsdGVyJzpmaWx0ZXJzLmxlbmd0aCA8PSAwfVwiPlxuICAgICAgPGRpdiBjbGFzcz1cImFkZC1pY29uLWJ0blwiIFtuZ0NsYXNzXT1cInsnYm9yZGVyLXNlcGVyYXRvcic6IGdldEZpbHRlcnNDb3VudCgpfVwiPlxuICAgICAgICA8IS0tIFNob3cgaGlkZSBjb25kaXRpb24gZm9yIGNvbnRhaW5lci4gLS0+XG4gICAgICAgIDxidXR0b24gICpuZ0lmPVwic2NyZWVuVHlwZSA9PT0gc2NyZWVuVHlwZXMuZGF0YVZpZXdCdWlsZGVyIHx8IGRhdGFWaWV3cy5wcm9wZXJ0aWVzLnNob3dBZGRGaWx0ZXJCdXR0b25cIiAgY2xhc3M9XCJsaWdodC1ibHVlLWJ0biBheG8tZm9udFwiXG4gICAgICAgICAgIChjbGljayk9XCJmaWx0ZXJzTWVudVRyaWdnZXIub3Blbk1lbnUoKVwiIChjb250ZXh0bWVudSk9XCJvcGVuUHJvcGVydHlNZW51KCRldmVudClcIiA+XG4gICAgICAgICAgICArIEFkZCBGaWx0ZXJcbiAgICAgICAgPC9idXR0b24+XG5cbiAgICAgICAgPCEtLSBBZGQgRmlsdGVyIHByb3BlcnR5IE1lbnUuIHRoaXMgd2lsbCBnZXQgb3BlbmVkIG9uIHJpZ2h0IGNsaWNrICAtLT5cbiAgICAgICAgPGRpdiAjcHJvcGVydHlNZW51VHJpZ2dlcj1cIm1hdE1lbnVUcmlnZ2VyXCIgIFttYXRNZW51VHJpZ2dlckZvcl09XCJwcm9wZXJ0eU1lbnVcIj4gPC9kaXY+XG5cblxuICAgICAgICA8bWF0LW1lbnUgI3Byb3BlcnR5TWVudT1cIm1hdE1lbnVcIj5cbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgIChjbGljayk9XCIkZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XCJcbiAgICAgICAgICAgIG1hdC1tZW51LWl0ZW1cbiAgICAgICAgICAgIGNsYXNzPVwiZmlsdGVyLXByb3BlcnRpZXMgbWVudS1idG5cIj5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmlsdGVyLXByb3BlcnR5XCI+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwic3R5bGUtdGl0bGVcIj5TaG93IE9uIENvbnRhaW5lcjwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgPG1hdC1zbGlkZS10b2dnbGUgWyhuZ01vZGVsKV09XCJkYXRhVmlld3MucHJvcGVydGllcy5zaG93QWRkRmlsdGVyQnV0dG9uXCI+PC9tYXQtc2xpZGUtdG9nZ2xlPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvbWF0LW1lbnU+XG5cbiAgICAgICAgPCEtLSBGaWx0ZXIgbGlzdCBtZW51IC0tPlxuICAgICAgICA8ZGl2ICNmaWx0ZXJzTWVudVRyaWdnZXI9XCJtYXRNZW51VHJpZ2dlclwiICBbbWF0TWVudVRyaWdnZXJGb3JdPVwiZmlsdGVyc01lbnVcIj4gPC9kaXY+XG4gICAgICAgIDxtYXQtbWVudSAjZmlsdGVyc01lbnU9XCJtYXRNZW51XCIgeVBvc2l0aW9uPVwiYmVsb3dcIiBjbGFzcz1cImZpbHRlci1maWVsZC1saXN0XCIgPlxuICAgICAgICAgIDxkaXYgKGNsaWNrKT1cIiRldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJncm91cCBmbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNlbnRlciBtYi0zXCJcbiAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieydqdXN0aWZ5LWJldHdlZW4gcHgtMi41JzogIXNob3dTZWFyY2hCb3h9XCI+XG4gICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwic2hvd0ZpZWxkXCIgY2xhc3M9XCJ0ZXh0LWYgZm9udC1tZWRpdW1cIj5GaWVsZHM8L3NwYW4+XG5cbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIHNlYXJjaC1maWVsZFwiIFtuZ0NsYXNzXT1cInsnZ2xvYmFsLWJvcmRlciBweC0yLjUnIDogc2hvd1NlYXJjaEJveH1cIj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIChjbGljayk9XCInc2hvd0ZpbHRlckRpdigpJ1wiPlxuICAgICAgICAgICAgICAgICAgPG1hdC1pY29uIFtuZ0NsYXNzXT1cInsnc2VhcmNoLWljb24nIDogc2hvd1NlYXJjaEJveH1cIiBjbGFzcz1cIm10LTIgdGV4dC14cyBzZWFyY2gtaWNvbnNcIlxuICAgICAgICAgICAgICAgICAgICBbc3ZnSWNvbl09XCInaGVyb2ljb25zX3NvbGlkOnNlYXJjaCdcIj48L21hdC1pY29uPlxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuXG4gICAgICAgICAgICAgICAgPCEtLSA8aW5wdXQgaWQ9XCJnbG9iYWwtZmllbGQtc2VhcmNoXCIgYXV0b2NvbXBsZXRlPVwib2ZmXCIgcGxhY2Vob2xkZXI9XCJTZWFyY2guLi5cIiBbKG5nTW9kZWwpXT1cInNlYXJjaGVkVGVybVwiIG1hdElucHV0IGNsYXNzPVwic2VhcmNoLWJhciBjaGFydC10aXRsZVwiICBbc3R5bGUud2lkdGhdPVwiIXNob3dTZWFyY2hCb3ggPyAnMCcgOiAnMTAwJSdcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8bWF0LWljb24gKGNsaWNrKT1cImNsZWFyKClcIiAqbmdJZj1cInNob3dTZWFyY2hCb3hcIiBjbGFzcz1cImNsZWFyX2ljb24gY3Vyc29yLXBvaW50ZXIgdGV4dC1iYXNlXCI+Y2xlYXJcbiAgICAgICAgICAgICAgICA8L21hdC1pY29uPlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImNhdGVnb3JpZXMubGVuZ3RoXCI+XG4gICAgICAgICAgICAgIDxkaXYgW25nQ2xhc3NdPVwieydmaWVsZC1jb250YWluZXInIDogc2hvd1NlYXJjaEJveH1cIiAqbmdJZj1cIihjYXRlZ29yaWVzIHwgc2VhcmNoOiBzZWFyY2hlZFRlcm0pPy5sZW5ndGhcIj5cbiAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9XCJweC0yLjVcIiAqbmdJZj1cIihjYXRlZ29yaWVzIHwgc2VhcmNoOiBzZWFyY2hlZFRlcm0pPy5sZW5ndGhcIj5DYXRlZ29yeTwvbGFiZWw+XG4gICAgICAgICAgICAgICAgPG1hdC1zZWxlY3Rpb24tbGlzdCAjY2F0ZWdvcnk+XG4gICAgICAgICAgICAgICAgICA8bWF0LWxpc3Qtb3B0aW9uIGNoZWNrYm94UG9zaXRpb249XCJhZnRlclwiXG4gICAgICAgICAgICAgICAgICAgICpuZ0Zvcj1cImxldCBjYXRlZ29yeSBvZiBjYXRlZ29yaWVzfCBzZWFyY2g6IHNlYXJjaGVkVGVybTtsZXQgaT1pbmRleCBcIiBbdmFsdWVdPSdjYXRlZ29yeSdcbiAgICAgICAgICAgICAgICAgICAgWyhzZWxlY3RlZCldPVwiY2F0ZWdvcnkuaXNTZWxlY3RlZFwiIGNvbG9yPVwicHJpbWFyeVwiPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImxpc3QtZmllbGRcIiBbbWF0VG9vbHRpcF09XCJjYXRlZ29yeS5uYW1lXCI+IHt7Y2F0ZWdvcnkubmFtZX19PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgPC9tYXQtbGlzdC1vcHRpb24+XG4gICAgICAgICAgICAgICAgPC9tYXQtc2VsZWN0aW9uLWxpc3Q+XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8IS0tIEZvcm0gZmlsdGVycy4gLS0+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmllbGRzLWRpdlwiICpuZ0Zvcj1cImxldCBfZm9ybSBvZiBmb3Jtc1wiPlxuICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9XCJweC0yLjVcIj57e19mb3JtPy5uYW1lfX08L2xhYmVsPlxuICAgICAgICAgICAgICA8bWF0LXNlbGVjdGlvbi1saXN0IChzZWxlY3Rpb25DaGFuZ2UpPVwiYWRkQmFzaWNGaWx0ZXIoJGV2ZW50LF9mb3JtKVwiPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IHdpZGdldCBvZiBfZm9ybT8ud2lkZ2V0c3wgc2VhcmNoOiBzZWFyY2hlZFRlcm1cIiA+XG4gICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhdW5oYW5kbGVkV0lkZ2V0c0luRmlsdGVycy5pbmNsdWRlcyh3aWRnZXQudHlwZSkgJiYgIXVuaGFuZGxlZFdJZGdldFN1YlR5cGVzSW5GaWx0ZXJzLmluY2x1ZGVzKHdpZGdldC5zdWJUeXBlKSBcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxtYXQtbGlzdC1vcHRpb24gY2hlY2tib3hQb3NpdGlvbj1cImFmdGVyXCIgW3ZhbHVlXT0nd2lkZ2V0JyBbc2VsZWN0ZWRdPVwidGhpcy5zZWxlY3RlZFdpZGdldC5pbmRleE9mKHdpZGdldC5pZGVudGlmaWVyKSAhPT0gLTFcIiBjb2xvcj1cInByaW1hcnlcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJsaXN0LWZpZWxkXCIgW21hdFRvb2x0aXBdPVwid2lkZ2V0LnByb21wdFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cInN2Zy1pY29uIG1yLTIgYWxpZ24tbWlkZGxlXCIgW3N2Z0ljb25dPVwid2lkZ2V0LndpZGdldEljb25cIj48L21hdC1pY29uPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7d2lkZ2V0LnByb21wdH19XG4gICAgICAgICAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbWF0LWxpc3Qtb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgPC9tYXQtc2VsZWN0aW9uLWxpc3Q+XG4gICAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICAgICAgPCEtLSBNZXRhIENvbHVtbiBGaWx0ZXJzIC0tPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZpZWxkcy1kaXZcIiAqbmdJZj1cImRhdGFWaWV3cy50eXBlICE9PSBkYXRhVmlld1R5cGUuZm9ybURhdGFWaWV3XCIgPlxuICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz1cInB4LTIuNVwiPk1ldGEgQ29sdW1uczwvbGFiZWw+XG4gICAgICAgICAgICAgICAgPG1hdC1zZWxlY3Rpb24tbGlzdCAoc2VsZWN0aW9uQ2hhbmdlKT1cImFkZE1ldGFDb2x1bW5GaWx0ZXIoJGV2ZW50KVwiPlxuICAgICAgICAgICAgICAgICAgPG1hdC1saXN0LW9wdGlvbiBjaGVja2JveFBvc2l0aW9uPVwiYWZ0ZXJcIiAqbmdGb3I9XCJsZXQgbWV0YUNvbHVtbiBvZiBtZXRhQ29sdW1uc1wiXG4gICAgICAgICAgICAgICAgICAgIFt2YWx1ZV09J21ldGFDb2x1bW4nIFtzZWxlY3RlZF09XCJ0aGlzLnNlbGVjdGVkV2lkZ2V0LmluZGV4T2YobWV0YUNvbHVtbikgIT09IC0xXCIgY29sb3I9XCJwcmltYXJ5XCI+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibGlzdC1maWVsZFwiIFttYXRUb29sdGlwXT1cIm1ldGFDb2x1bW5cIj5cbiAgICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJzdmctaWNvbiBtci0yIGFsaWduLW1pZGRsZVwiIFtzdmdJY29uXT1cIidheG9fc3F1YXJlX3RleHQnXCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgICB7e21ldGFDb2x1bW59fVxuICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgICA8L21hdC1saXN0LW9wdGlvbj5cbiAgICAgICAgICAgICAgICA8L21hdC1zZWxlY3Rpb24tbGlzdD5cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvbWF0LW1lbnU+XG4gICAgICA8L2Rpdj5cblxuICAgICAgPGZpbHRlcnMgY2xhc3M9XCJkYXRhLWxpc3QtZmlsdGVyLWNvbnRhaW5lclwiICBbZmlsdGVyc109XCJmaWx0ZXJzXCIgW2Zvcm1JZF09XCJmb3JtPy5mb3JtSWRcIlxuICAgICAgICBbY29tbW9uRmlsdGVyQXJyYXldPVwiY29tbW9uRmlsdGVyQXJyYXlcIiBbc2NyZWVuVHlwZV09XCJzY3JlZW5UeXBlXCIgW2NhdGVnb3JpZXNdPSdjYXRlZ29yaWVzJyBbYXBwVmVyc2lvbklkXT1cImFwcFZlcnNpb25JZFwiXG4gICAgICAgIFtzY29wZVR5cGVdPVwic2NvcGVUeXBlXCJcbiAgICAgICAgKGFwcGx5RmlsdGVyRW1pdCk9XCJhcHBseUZpbHRlckVtaXQuZW1pdCgkZXZlbnQpXCIgKHJlc2V0RmlsdGVyRW1pdCk9XCJyZXNldEZpbHRlckVtaXQuZW1pdCgkZXZlbnQpXCJcbiAgICAgICAgKGRlbGV0ZUZpbHRlckVtaXQpPVwiZGVsZXRlRmlsdGVyKCRldmVudClcIlxuICAgICAgICBbc2hvd0FwcGx5RmlsdGVyRXZlbnRdPVwic2hvd0FwcGx5RmlsdGVyRXZlbnRcIlxuICAgICAgICBbbmdDbGFzc109XCJ7J2NvbnRhaW5lci1maWx0ZXItd2l0ZGgnOiAhZGF0YVZpZXdzLnByb3BlcnRpZXMuc2hvd0FkZEZpbHRlckJ1dHRvbn1cIj5cbiAgICAgIDwvZmlsdGVycz5cblxuICAgIDwvZGl2PlxuXG4gICAgPGRpdiBjbGFzcz1cImRhdGEtdmlldy1oZWFkZXItYnV0dG9uXCIgaWQ9XCJkYXRhLXZpZXctaGVhZGVyLWJ1dHRvblwiPlxuICAgICAgPGJ1dHRvbiAqbmdJZj1cIiBmb3JtICYmIGZvcm0udHlwZSA9PT0gZm9ybVR5cGVzLmFzc2V0ICYmIHNlbGVjdGVkVmlld1R5cGUgPT09IFZpZXdUeXBlLkRhdGFMaXN0Vmlld1wiIGNsYXNzPVwicHJpbWFyeS1idG4gYXhvLWZvbnRcIiAoY2xpY2spPVwiYWRkTmV3UmVjb3JkLmVtaXQoKVwiPiBBZGQgTmV3IFJlY29yZDwvYnV0dG9uPlxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImxpbmstYnRuIGF4by1mb250IHJlZnJlc2gtYnRuXCIgKm5nSWY9XCJzaG93QXNzaWduVG9CdXR0b25cIihjbGljayk9XCJhc3NpZ24uZW1pdCgpXCI+QXNzaWduIDwvYnV0dG9uPlxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImxpbmstYnRuIGF4by1mb250IHJlZnJlc2gtYnRuXCIgKGNsaWNrKT1cInJlZnJlc2hEYXRhLmVtaXQoKVwiPlJlZnJlc2ggRGF0YTwvYnV0dG9uPlxuICAgICAgPGJ1dHRvbiAqbmdJZj1cInNlbGVjdGVkVmlld1R5cGUgPT09IFZpZXdUeXBlLkRhdGFMaXN0Vmlld1wiIGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIgaWNvbi1idG5cIiBbbWF0TWVudVRyaWdnZXJGb3JdPVwiYmVmb3JlTWVudVwiPjxtYXQtaWNvbiBtYXRUb29sdGlwPVwiRXhwb3J0IERhdGFcIiBzdmdJY29uPVwiYXhvX2V4cG9ydFwiPjwvbWF0LWljb24+PC9idXR0b24+XG5cbiAgICAgIDwhLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLT5cblxuICAgICAgPCEtLSBjb250ZXh0IG1lbnUgdG8gc2hvdyBmb3JtIHRvIGdldCB1c2VyRW1haWwgSWQgdG8gZ2V0IHVzZXJFbWFpbCBmb3IgZXhjZWwgRXhwb3J0IC0tPlxuICAgICAgPG1hdC1tZW51ICNiZWZvcmVNZW51PVwibWF0TWVudVwiIHhQb3NpdGlvbj1cImJlZm9yZVwiPlxuICAgICAgICA8ZGl2ICBjbGFzcz1cInNlbmQtZXhjZWwtcmVwb3J0LWZvcm1cIj5cbiAgICAgICAgICA8Zm9ybSBbZm9ybUdyb3VwXT1cImV4cG9ydEZvcm1CdWlsZGVyXCI+XG4gICAgICAgICAgICA8ZGl2ID5YTFNYPC9kaXY+XG4gICAgICAgICAgICA8aW5wdXQgbWF0LW1lbnUtaXRlbSAgdHlwZT1cInRleHRcIiBjbGFzcz1cInJlcG9ydC14c2x4LWVtYWlsXCIgZm9ybUNvbnRyb2xOYW1lPVwiZW1haWxcIiAgKG5nTW9kZWxDaGFuZ2UpPVwiZW1haWxWYWxpZGF0ZSgpXCI+XG4gICAgICAgICAgICA8cCAqbmdJZj1cImRpc3BsYXlFbWFpbFZhbGlkYXRpb25FcnJvclwiIGNsYXNzPVwiZW1haWwtc2VuZC1lbWFpbC1lcnJvclwiPlBsZWFzZSBwcm92aWRlIGEgdmFsaWQgZW1haWwgSUQ8L3A+XG4gICAgICAgICAgICA8cCAqbmdJZj1cImRpc3BsYXlOb3RpZmljYXRpb25cIiBjbGFzcz1cImVtYWlsLXNlbmQtbm90aWZpY2F0aW9uXCI+RXhwb3J0IGlzIGluIHByb2dyZXNzLiBZb3Ugd2lsbCByZWNlaXZlIHRoZSByZXBvcnQgb24geW91ciBlbWFpbCBvbmNlIGNvbXBsZXRlZC48L3A+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic2VuZC1leGNlbC1yZXBvcnQtZm9ybS1idG5cIj5cbiAgICAgICAgICAgICAgPGJ1dHRvbiBjbGFzcz1cImNhbmNlbC1idG4gYnRuXCIoY2xpY2spPVwiY2xvc2VFeHBvcnRNZW51KCk7XCIgPkNhbmNlbDwvYnV0dG9uPlxuICAgICAgICAgICAgICA8YnV0dG9uIGNsYXNzPVwic2VuZC1idG4gYnRuXCIgKGNsaWNrKT1cInNlbmRFbWFpbCgpOyRldmVudC5zdG9wUHJvcGFnYXRpb24oKVwiIFtkaXNhYmxlZF09XCJkaXNwbGF5RW1haWxWYWxpZGF0aW9uRXJyb3JcIj5FeHBvcnQgPG1hdC1pY29uPnNlbmQ8L21hdC1pY29uPjwvYnV0dG9uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9mb3JtPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbWF0LW1lbnU+XG4gICAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
|