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,321 @@
|
|
|
1
|
+
import { CommonFilterService } from './../common-filter/common-filter.service';
|
|
2
|
+
import { Component, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { AxOperator } from '../../enlighten-lib/filters/ax-operator';
|
|
4
|
+
import { AxExpNumberRangeValue } from '../../enlighten-lib/ax-expression/ax-exp-number-range-value';
|
|
5
|
+
import { AxExpNumberValue } from '../../enlighten-lib/ax-expression/ax-exp-number-value';
|
|
6
|
+
import { NumberOperatorIndex } from '../../enlighten-lib/filters/general-filter-type';
|
|
7
|
+
import { CommonFilterComponent } from '../common-filter/common-filter.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "./../common-filter/common-filter.service";
|
|
10
|
+
import * as i2 from "@angular/material/form-field";
|
|
11
|
+
import * as i3 from "@angular/material/select";
|
|
12
|
+
import * as i4 from "@angular/material/tooltip";
|
|
13
|
+
import * as i5 from "@angular/material/menu";
|
|
14
|
+
import * as i6 from "@angular/material/radio";
|
|
15
|
+
import * as i7 from "@angular/common";
|
|
16
|
+
import * as i8 from "../filter-footer/filter-footer.component";
|
|
17
|
+
import * as i9 from "@angular/material/icon";
|
|
18
|
+
import * as i10 from "@angular/material/input";
|
|
19
|
+
import * as i11 from "@angular/forms";
|
|
20
|
+
function NumberFilterComponent_div_11_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
22
|
+
i0.ɵɵelementStart(0, "div");
|
|
23
|
+
i0.ɵɵelementStart(1, "mat-form-field", 16);
|
|
24
|
+
i0.ɵɵelementStart(2, "input", 17);
|
|
25
|
+
i0.ɵɵlistener("ngModelChange", function NumberFilterComponent_div_11_Template_input_ngModelChange_2_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(); return ctx_r6.expression.value.value = $event; })("change", function NumberFilterComponent_div_11_Template_input_change_2_listener() { i0.ɵɵrestoreView(_r7); const ctx_r8 = i0.ɵɵnextContext(); return ctx_r8.filterValueChanged(); });
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
} if (rf & 2) {
|
|
30
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
31
|
+
i0.ɵɵadvance(2);
|
|
32
|
+
i0.ɵɵproperty("ngModel", ctx_r2.expression.value.value);
|
|
33
|
+
} }
|
|
34
|
+
function NumberFilterComponent_div_16_Template(rf, ctx) { if (rf & 1) {
|
|
35
|
+
const _r10 = i0.ɵɵgetCurrentView();
|
|
36
|
+
i0.ɵɵelementStart(0, "div");
|
|
37
|
+
i0.ɵɵelementStart(1, "mat-form-field", 16);
|
|
38
|
+
i0.ɵɵelementStart(2, "input", 18);
|
|
39
|
+
i0.ɵɵlistener("ngModelChange", function NumberFilterComponent_div_16_Template_input_ngModelChange_2_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(); return ctx_r9.expression.value.value = $event; })("change", function NumberFilterComponent_div_16_Template_input_change_2_listener() { i0.ɵɵrestoreView(_r10); const ctx_r11 = i0.ɵɵnextContext(); return ctx_r11.filterValueChanged(); });
|
|
40
|
+
i0.ɵɵelementEnd();
|
|
41
|
+
i0.ɵɵelementEnd();
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
} if (rf & 2) {
|
|
44
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
45
|
+
i0.ɵɵadvance(2);
|
|
46
|
+
i0.ɵɵproperty("ngModel", ctx_r3.expression.value.value);
|
|
47
|
+
} }
|
|
48
|
+
function NumberFilterComponent_div_21_Template(rf, ctx) { if (rf & 1) {
|
|
49
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
50
|
+
i0.ɵɵelementStart(0, "div");
|
|
51
|
+
i0.ɵɵelementStart(1, "mat-form-field", 16);
|
|
52
|
+
i0.ɵɵelementStart(2, "input", 19);
|
|
53
|
+
i0.ɵɵlistener("ngModelChange", function NumberFilterComponent_div_21_Template_input_ngModelChange_2_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r12 = i0.ɵɵnextContext(); return ctx_r12.expression.value.value = $event; })("change", function NumberFilterComponent_div_21_Template_input_change_2_listener() { i0.ɵɵrestoreView(_r13); const ctx_r14 = i0.ɵɵnextContext(); return ctx_r14.filterValueChanged(); });
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
i0.ɵɵelementEnd();
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
} if (rf & 2) {
|
|
58
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
59
|
+
i0.ɵɵadvance(2);
|
|
60
|
+
i0.ɵɵproperty("ngModel", ctx_r4.expression.value.value);
|
|
61
|
+
} }
|
|
62
|
+
function NumberFilterComponent_div_26_mat_form_field_1_Template(rf, ctx) { if (rf & 1) {
|
|
63
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
64
|
+
i0.ɵɵelementStart(0, "mat-form-field", 16);
|
|
65
|
+
i0.ɵɵelementStart(1, "input", 23);
|
|
66
|
+
i0.ɵɵlistener("ngModelChange", function NumberFilterComponent_div_26_mat_form_field_1_Template_input_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r18); const ctx_r17 = i0.ɵɵnextContext(2); return ctx_r17.expression.value.value.from = $event; })("change", function NumberFilterComponent_div_26_mat_form_field_1_Template_input_change_1_listener() { i0.ɵɵrestoreView(_r18); const ctx_r19 = i0.ɵɵnextContext(2); return ctx_r19.filterValueChanged(); });
|
|
67
|
+
i0.ɵɵelementEnd();
|
|
68
|
+
i0.ɵɵelementEnd();
|
|
69
|
+
} if (rf & 2) {
|
|
70
|
+
const ctx_r15 = i0.ɵɵnextContext(2);
|
|
71
|
+
i0.ɵɵadvance(1);
|
|
72
|
+
i0.ɵɵproperty("ngModel", ctx_r15.expression.value.value.from);
|
|
73
|
+
} }
|
|
74
|
+
function NumberFilterComponent_div_26_mat_form_field_4_Template(rf, ctx) { if (rf & 1) {
|
|
75
|
+
const _r21 = i0.ɵɵgetCurrentView();
|
|
76
|
+
i0.ɵɵelementStart(0, "mat-form-field", 16);
|
|
77
|
+
i0.ɵɵelementStart(1, "input", 24);
|
|
78
|
+
i0.ɵɵlistener("ngModelChange", function NumberFilterComponent_div_26_mat_form_field_4_Template_input_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r21); const ctx_r20 = i0.ɵɵnextContext(2); return ctx_r20.expression.value.value.to = $event; })("change", function NumberFilterComponent_div_26_mat_form_field_4_Template_input_change_1_listener() { i0.ɵɵrestoreView(_r21); const ctx_r22 = i0.ɵɵnextContext(2); return ctx_r22.filterValueChanged(); });
|
|
79
|
+
i0.ɵɵelementEnd();
|
|
80
|
+
i0.ɵɵelementEnd();
|
|
81
|
+
} if (rf & 2) {
|
|
82
|
+
const ctx_r16 = i0.ɵɵnextContext(2);
|
|
83
|
+
i0.ɵɵadvance(1);
|
|
84
|
+
i0.ɵɵproperty("ngModel", ctx_r16.expression.value.value.to);
|
|
85
|
+
} }
|
|
86
|
+
function NumberFilterComponent_div_26_Template(rf, ctx) { if (rf & 1) {
|
|
87
|
+
i0.ɵɵelementStart(0, "div", 20);
|
|
88
|
+
i0.ɵɵtemplate(1, NumberFilterComponent_div_26_mat_form_field_1_Template, 2, 1, "mat-form-field", 21);
|
|
89
|
+
i0.ɵɵelementStart(2, "span", 22);
|
|
90
|
+
i0.ɵɵtext(3, " - ");
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵtemplate(4, NumberFilterComponent_div_26_mat_form_field_4_Template, 2, 1, "mat-form-field", 21);
|
|
93
|
+
i0.ɵɵelementEnd();
|
|
94
|
+
} if (rf & 2) {
|
|
95
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
|
96
|
+
i0.ɵɵadvance(1);
|
|
97
|
+
i0.ɵɵproperty("ngIf", ctx_r5.expression == null ? null : ctx_r5.expression.value == null ? null : ctx_r5.expression.value.value);
|
|
98
|
+
i0.ɵɵadvance(3);
|
|
99
|
+
i0.ɵɵproperty("ngIf", ctx_r5.expression == null ? null : ctx_r5.expression.value == null ? null : ctx_r5.expression.value.value);
|
|
100
|
+
} }
|
|
101
|
+
const _c0 = function (a0) { return { "between_date_active": a0 }; };
|
|
102
|
+
export class NumberFilterComponent extends CommonFilterComponent {
|
|
103
|
+
constructor(_commonFilterService) {
|
|
104
|
+
super(_commonFilterService);
|
|
105
|
+
//<----------< Inputs >---------------------------->
|
|
106
|
+
//<-----------<Outputs >--------------------------->
|
|
107
|
+
//<-------------(Enums )--------------------------->
|
|
108
|
+
this.numberOperatorIndex = NumberOperatorIndex;
|
|
109
|
+
this.selectedOperator = null;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* On change Life cycle hook.
|
|
113
|
+
*
|
|
114
|
+
* @param changes
|
|
115
|
+
*/
|
|
116
|
+
// eslint-disable-next-line @angular-eslint/use-lifecycle-interface
|
|
117
|
+
ngOnChanges(changes) {
|
|
118
|
+
super.ngOnChanges(changes);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* On Init life cycle hook.
|
|
122
|
+
*/
|
|
123
|
+
ngOnInit() {
|
|
124
|
+
super.ngOnInit();
|
|
125
|
+
this.numberOperators = AxOperator.getNumericOperator();
|
|
126
|
+
this.setDisplayValue();
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* Set the operator wise expression value object
|
|
130
|
+
*
|
|
131
|
+
* @param operatorIndex
|
|
132
|
+
*/
|
|
133
|
+
setNumericOperator(operatorIndex) {
|
|
134
|
+
this.expression.comparisonOperator = this.numberOperators[operatorIndex];
|
|
135
|
+
if (operatorIndex === NumberOperatorIndex.between) {
|
|
136
|
+
this.expression.value = new AxExpNumberRangeValue();
|
|
137
|
+
}
|
|
138
|
+
else {
|
|
139
|
+
this.expression.value = new AxExpNumberValue();
|
|
140
|
+
}
|
|
141
|
+
this.expression.value.isInputVisible = this.selectedOperator;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* set field select value
|
|
145
|
+
*/
|
|
146
|
+
setDisplayValue() {
|
|
147
|
+
this.displayValue = this.expression.field.label;
|
|
148
|
+
if (this.expression.value instanceof AxExpNumberRangeValue) {
|
|
149
|
+
const expressionValue = new AxExpNumberRangeValue(this.expression.value);
|
|
150
|
+
if (expressionValue.value.from !== null && expressionValue.value.to !== 0) {
|
|
151
|
+
this.displayValue = this.expression.field.label + ' Between ' + expressionValue.value.from + ' To ' + expressionValue.value.to;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
else {
|
|
155
|
+
const expressionValue = new AxExpNumberValue(this.expression.value);
|
|
156
|
+
if (expressionValue.value !== null) {
|
|
157
|
+
this.displayValue = this.expression.field.label + ' ' + this.expression.comparisonOperator.text + ' ' + expressionValue.value;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
this.addEllipsesToDisplayValue(this.displayValue);
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Clear select value into expression value
|
|
164
|
+
*/
|
|
165
|
+
clearAllValue() {
|
|
166
|
+
this.setNumericOperator(this.selectedOperator);
|
|
167
|
+
this.selectedOperator = null;
|
|
168
|
+
this.displayValue = this.expression.field.label;
|
|
169
|
+
this.filterValueChanged();
|
|
170
|
+
this.applyFilterEvent.emit();
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* set the number input visible value
|
|
174
|
+
*
|
|
175
|
+
* @param dateOperatorType
|
|
176
|
+
*/
|
|
177
|
+
onNumberFilterOptionChange(numberOperatorType) {
|
|
178
|
+
this.selectedOperator = numberOperatorType;
|
|
179
|
+
this.expression.value.isInputVisible = numberOperatorType;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Filter value Change Event
|
|
183
|
+
*
|
|
184
|
+
* @Overridden
|
|
185
|
+
*/
|
|
186
|
+
filterValueChanged() {
|
|
187
|
+
this.setDisplayValue();
|
|
188
|
+
this.filterValueChange.emit(this.filter);
|
|
189
|
+
this._commonFilterService.filterValueChange.emit(this.filter);
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* THis will reset Filter value.
|
|
193
|
+
*
|
|
194
|
+
* @overridden
|
|
195
|
+
*/
|
|
196
|
+
resetFilter() {
|
|
197
|
+
if (this.defaultValue && this.defaultValue.isInputVisible === NumberOperatorIndex.between) {
|
|
198
|
+
this.expression.value = new AxExpNumberRangeValue(this.defaultValue);
|
|
199
|
+
}
|
|
200
|
+
else {
|
|
201
|
+
this.expression.value = new AxExpNumberValue(this.defaultValue);
|
|
202
|
+
}
|
|
203
|
+
this.expression.comparisonOperator = this.defaultComparisonOperator;
|
|
204
|
+
this.expression.value.isInputVisible = this.defaultOperatorIndex;
|
|
205
|
+
this.selectedOperator = this.defaultOperatorIndex;
|
|
206
|
+
this.setDisplayValue();
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* Set Default Value
|
|
210
|
+
*
|
|
211
|
+
* @overridden
|
|
212
|
+
*/
|
|
213
|
+
setDefaultValue() {
|
|
214
|
+
if (this.expression.value.isInputVisible === NumberOperatorIndex.between) {
|
|
215
|
+
this.defaultValue = new AxExpNumberRangeValue(this.expression.value);
|
|
216
|
+
}
|
|
217
|
+
else {
|
|
218
|
+
this.defaultValue = new AxExpNumberValue(this.expression.value);
|
|
219
|
+
}
|
|
220
|
+
this.defaultComparisonOperator = this.expression.comparisonOperator;
|
|
221
|
+
this.defaultOperatorIndex = this.expression.value.isInputVisible;
|
|
222
|
+
this.selectedOperator = this.expression.value.isInputVisible;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* This function clear the filter value.
|
|
226
|
+
*
|
|
227
|
+
* @overridden
|
|
228
|
+
*/
|
|
229
|
+
clearValue() {
|
|
230
|
+
this.expression.value = new AxExpNumberValue();
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
NumberFilterComponent.ɵfac = function NumberFilterComponent_Factory(t) { return new (t || NumberFilterComponent)(i0.ɵɵdirectiveInject(i1.CommonFilterService)); };
|
|
234
|
+
NumberFilterComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NumberFilterComponent, selectors: [["lib-number-filter"]], features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls: 29, vars: 20, consts: [[1, "fields"], ["appearance", "none"], [1, "number-filter-dropdown", 3, "placeholder", "matTooltip", "matMenuTriggerFor", "selectionChange"], ["numberSelectList", ""], ["yPosition", "below", "backdropClass", "number-filter-backdrop-class", 1, "paneltest"], ["belowMenu", "matMenu"], [1, "radio-group", 3, "ngClass", "click"], [1, "equal-to"], ["name", "selectedOperator", "type", "radio", 3, "value", "checked", "change", "click"], [4, "ngIf"], [1, "more-than"], [1, "less-than"], [1, "between-range"], ["class", "between-dates flex items-center", 4, "ngIf"], [3, "isFilterValue", "clearAllValue", "applyFilter", "closeFilter"], [1, "down-arrow", 3, "svgIcon", "click"], ["appearance", "standard"], ["matInput", "", "type", "number", "placeholder", "Equals To", 3, "ngModel", "ngModelChange", "change"], ["matInput", "", "placeholder", "More Than", "type", "number", 3, "ngModel", "ngModelChange", "change"], ["matInput", "", "placeholder", "Less Than", "type", "number", 3, "ngModel", "ngModelChange", "change"], [1, "between-dates", "flex", "items-center"], ["appearance", "standard", 4, "ngIf"], [1, "range"], ["matInput", "", "placeholder", "From", "type", "number", 3, "ngModel", "ngModelChange", "change"], ["matInput", "", "placeholder", "TO", "type", "number", 3, "ngModel", "ngModelChange", "change"]], template: function NumberFilterComponent_Template(rf, ctx) { if (rf & 1) {
|
|
235
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
|
236
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
237
|
+
i0.ɵɵelementStart(1, "mat-form-field", 1);
|
|
238
|
+
i0.ɵɵelementStart(2, "mat-select", 2, 3);
|
|
239
|
+
i0.ɵɵlistener("selectionChange", function NumberFilterComponent_Template_mat_select_selectionChange_2_listener() { return ctx.filterValueChanged(); });
|
|
240
|
+
i0.ɵɵelementEnd();
|
|
241
|
+
i0.ɵɵelementEnd();
|
|
242
|
+
i0.ɵɵelementStart(4, "mat-menu", 4, 5);
|
|
243
|
+
i0.ɵɵelementStart(6, "mat-radio-group", 6);
|
|
244
|
+
i0.ɵɵlistener("click", function NumberFilterComponent_Template_mat_radio_group_click_6_listener($event) { return $event.stopPropagation(); });
|
|
245
|
+
i0.ɵɵelementStart(7, "div", 7);
|
|
246
|
+
i0.ɵɵelementStart(8, "label");
|
|
247
|
+
i0.ɵɵelementStart(9, "input", 8);
|
|
248
|
+
i0.ɵɵlistener("change", function NumberFilterComponent_Template_input_change_9_listener() { return ctx.onNumberFilterOptionChange(ctx.numberOperatorIndex.equalTo); })("click", function NumberFilterComponent_Template_input_click_9_listener() { return ctx.setNumericOperator(ctx.numberOperatorIndex.equalTo); });
|
|
249
|
+
i0.ɵɵelementEnd();
|
|
250
|
+
i0.ɵɵtext(10, " Equals To ");
|
|
251
|
+
i0.ɵɵtemplate(11, NumberFilterComponent_div_11_Template, 3, 1, "div", 9);
|
|
252
|
+
i0.ɵɵelementEnd();
|
|
253
|
+
i0.ɵɵelementEnd();
|
|
254
|
+
i0.ɵɵelementStart(12, "div", 10);
|
|
255
|
+
i0.ɵɵelementStart(13, "label");
|
|
256
|
+
i0.ɵɵelementStart(14, "input", 8);
|
|
257
|
+
i0.ɵɵlistener("change", function NumberFilterComponent_Template_input_change_14_listener() { return ctx.onNumberFilterOptionChange(ctx.numberOperatorIndex.moreThan); })("click", function NumberFilterComponent_Template_input_click_14_listener() { return ctx.setNumericOperator(ctx.numberOperatorIndex.moreThan); });
|
|
258
|
+
i0.ɵɵelementEnd();
|
|
259
|
+
i0.ɵɵtext(15, " More Than Or Equals To ");
|
|
260
|
+
i0.ɵɵtemplate(16, NumberFilterComponent_div_16_Template, 3, 1, "div", 9);
|
|
261
|
+
i0.ɵɵelementEnd();
|
|
262
|
+
i0.ɵɵelementEnd();
|
|
263
|
+
i0.ɵɵelementStart(17, "div", 11);
|
|
264
|
+
i0.ɵɵelementStart(18, "label");
|
|
265
|
+
i0.ɵɵelementStart(19, "input", 8);
|
|
266
|
+
i0.ɵɵlistener("change", function NumberFilterComponent_Template_input_change_19_listener() { return ctx.onNumberFilterOptionChange(ctx.numberOperatorIndex.lessThan); })("click", function NumberFilterComponent_Template_input_click_19_listener() { return ctx.setNumericOperator(ctx.numberOperatorIndex.lessThan); });
|
|
267
|
+
i0.ɵɵelementEnd();
|
|
268
|
+
i0.ɵɵtext(20, " Less Than Or Equals To ");
|
|
269
|
+
i0.ɵɵtemplate(21, NumberFilterComponent_div_21_Template, 3, 1, "div", 9);
|
|
270
|
+
i0.ɵɵelementEnd();
|
|
271
|
+
i0.ɵɵelementEnd();
|
|
272
|
+
i0.ɵɵelementStart(22, "div", 12);
|
|
273
|
+
i0.ɵɵelementStart(23, "label");
|
|
274
|
+
i0.ɵɵelementStart(24, "input", 8);
|
|
275
|
+
i0.ɵɵlistener("change", function NumberFilterComponent_Template_input_change_24_listener() { return ctx.onNumberFilterOptionChange(ctx.numberOperatorIndex.between); })("click", function NumberFilterComponent_Template_input_click_24_listener() { return ctx.setNumericOperator(ctx.numberOperatorIndex.between); });
|
|
276
|
+
i0.ɵɵelementEnd();
|
|
277
|
+
i0.ɵɵtext(25, " Between ");
|
|
278
|
+
i0.ɵɵtemplate(26, NumberFilterComponent_div_26_Template, 5, 2, "div", 13);
|
|
279
|
+
i0.ɵɵelementEnd();
|
|
280
|
+
i0.ɵɵelementEnd();
|
|
281
|
+
i0.ɵɵelementEnd();
|
|
282
|
+
i0.ɵɵelementStart(27, "lib-filter-footer", 14);
|
|
283
|
+
i0.ɵɵlistener("clearAllValue", function NumberFilterComponent_Template_lib_filter_footer_clearAllValue_27_listener() { return ctx.clearAllValue(); })("applyFilter", function NumberFilterComponent_Template_lib_filter_footer_applyFilter_27_listener() { return ctx.applyFilter(); })("closeFilter", function NumberFilterComponent_Template_lib_filter_footer_closeFilter_27_listener() { i0.ɵɵrestoreView(_r23); const _r1 = i0.ɵɵreference(5); return _r1 == null ? null : _r1.close(); });
|
|
284
|
+
i0.ɵɵelementEnd();
|
|
285
|
+
i0.ɵɵelementEnd();
|
|
286
|
+
i0.ɵɵelementStart(28, "mat-icon", 15);
|
|
287
|
+
i0.ɵɵlistener("click", function NumberFilterComponent_Template_mat_icon_click_28_listener() { i0.ɵɵrestoreView(_r23); const _r0 = i0.ɵɵreference(3); return _r0.open(); });
|
|
288
|
+
i0.ɵɵelementEnd();
|
|
289
|
+
i0.ɵɵelementEnd();
|
|
290
|
+
} if (rf & 2) {
|
|
291
|
+
const _r1 = i0.ɵɵreference(5);
|
|
292
|
+
i0.ɵɵadvance(2);
|
|
293
|
+
i0.ɵɵproperty("placeholder", ctx.displayValue)("matTooltip", ctx.toolTipValue)("matMenuTriggerFor", _r1);
|
|
294
|
+
i0.ɵɵadvance(4);
|
|
295
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(18, _c0, ctx.selectedOperator === ctx.numberOperatorIndex.between));
|
|
296
|
+
i0.ɵɵadvance(3);
|
|
297
|
+
i0.ɵɵproperty("value", ctx.numberOperatorIndex.equalTo)("checked", ctx.selectedOperator === ctx.numberOperatorIndex.equalTo);
|
|
298
|
+
i0.ɵɵadvance(2);
|
|
299
|
+
i0.ɵɵproperty("ngIf", ctx.selectedOperator === ctx.numberOperatorIndex.equalTo);
|
|
300
|
+
i0.ɵɵadvance(3);
|
|
301
|
+
i0.ɵɵproperty("value", ctx.numberOperatorIndex.moreThan)("checked", ctx.selectedOperator === ctx.numberOperatorIndex.moreThan);
|
|
302
|
+
i0.ɵɵadvance(2);
|
|
303
|
+
i0.ɵɵproperty("ngIf", ctx.selectedOperator === ctx.numberOperatorIndex.moreThan);
|
|
304
|
+
i0.ɵɵadvance(3);
|
|
305
|
+
i0.ɵɵproperty("value", ctx.numberOperatorIndex.lessThan)("checked", ctx.selectedOperator === ctx.numberOperatorIndex.lessThan);
|
|
306
|
+
i0.ɵɵadvance(2);
|
|
307
|
+
i0.ɵɵproperty("ngIf", ctx.selectedOperator === ctx.numberOperatorIndex.lessThan);
|
|
308
|
+
i0.ɵɵadvance(3);
|
|
309
|
+
i0.ɵɵproperty("value", ctx.numberOperatorIndex.between)("checked", ctx.selectedOperator === ctx.numberOperatorIndex.between);
|
|
310
|
+
i0.ɵɵadvance(2);
|
|
311
|
+
i0.ɵɵproperty("ngIf", ctx.selectedOperator === ctx.numberOperatorIndex.between);
|
|
312
|
+
i0.ɵɵadvance(1);
|
|
313
|
+
i0.ɵɵproperty("isFilterValue", true);
|
|
314
|
+
i0.ɵɵadvance(1);
|
|
315
|
+
i0.ɵɵproperty("svgIcon", "axo_arrow");
|
|
316
|
+
} }, directives: [i2.MatFormField, i3.MatSelect, i4.MatTooltip, i5.MatMenuTrigger, i5.MatMenu, i6.MatRadioGroup, i7.NgClass, i7.NgIf, i8.FilterFooterComponent, i9.MatIcon, i10.MatInput, i11.NumberValueAccessor, i11.DefaultValueAccessor, i11.NgControlStatus, i11.NgModel], styles: [""], encapsulation: 2 });
|
|
317
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NumberFilterComponent, [{
|
|
318
|
+
type: Component,
|
|
319
|
+
args: [{ selector: 'lib-number-filter', encapsulation: ViewEncapsulation.None, template: "<div class=\"fields\" >\n <mat-form-field appearance=\"none\">\n <mat-select\n [placeholder]=\"displayValue\"\n [matTooltip]=\"toolTipValue\"\n class=\"number-filter-dropdown\"\n [matMenuTriggerFor]=\"belowMenu\"\n (selectionChange)=\"filterValueChanged()\" \n #numberSelectList>\n </mat-select>\n </mat-form-field>\n\n<mat-menu #belowMenu=\"matMenu\" class=\"paneltest\" yPosition=\"below\" backdropClass=\"number-filter-backdrop-class\">\n <mat-radio-group class=\"radio-group\" (click)=\"$event.stopPropagation()\" [ngClass]=\"{'between_date_active': selectedOperator === numberOperatorIndex.between}\">\n <div class=\"equal-to\">\n <label>\n <input\n [value]=\"numberOperatorIndex.equalTo\"\n name=\"selectedOperator\"\n type=\"radio\"\n (change)=\"onNumberFilterOptionChange(numberOperatorIndex.equalTo)\"\n [checked]=\"selectedOperator === numberOperatorIndex.equalTo\"\n (click)=\"setNumericOperator(numberOperatorIndex.equalTo)\"\n\n />\n Equals To\n <div *ngIf=\"selectedOperator === numberOperatorIndex.equalTo\">\n <mat-form-field appearance=\"standard\" >\n <input\n matInput\n type=\"number\"\n placeholder=\"Equals To\"\n [(ngModel)]=\"expression.value.value\"\n (change)=\"filterValueChanged()\"\n />\n </mat-form-field>\n </div>\n </label>\n </div>\n <div class=\"more-than\">\n <label>\n <input\n [value]=\"numberOperatorIndex.moreThan\"\n name=\"selectedOperator\"\n type=\"radio\"\n (change)=\"onNumberFilterOptionChange(numberOperatorIndex.moreThan)\"\n [checked]=\"selectedOperator === numberOperatorIndex.moreThan\"\n (click)=\"setNumericOperator(numberOperatorIndex.moreThan)\"\n />\n More Than Or Equals To\n <div *ngIf=\"selectedOperator === numberOperatorIndex.moreThan\">\n <mat-form-field appearance=\"standard\" >\n <input\n matInput\n placeholder=\"More Than\"\n type=\"number\"\n [(ngModel)]=\"expression.value.value\"\n (change)=\"filterValueChanged()\"\n />\n </mat-form-field>\n </div>\n </label>\n </div>\n <div class=\"less-than\">\n <label>\n <input\n [value]=\"numberOperatorIndex.lessThan\"\n name=\"selectedOperator\"\n type=\"radio\"\n (change)=\"onNumberFilterOptionChange(numberOperatorIndex.lessThan)\"\n [checked]=\"selectedOperator === numberOperatorIndex.lessThan\"\n (click)=\"setNumericOperator(numberOperatorIndex.lessThan)\"\n />\n Less Than Or Equals To\n <div *ngIf=\"selectedOperator === numberOperatorIndex.lessThan\">\n <mat-form-field appearance=\"standard\" >\n <input\n matInput\n placeholder=\"Less Than\"\n type=\"number\"\n [(ngModel)]=\"expression.value.value\"\n (change)=\"filterValueChanged()\"\n />\n </mat-form-field>\n </div>\n </label>\n </div>\n <div class=\"between-range\">\n <label>\n <input\n [value]=\"numberOperatorIndex.between\"\n name=\"selectedOperator\"\n type=\"radio\"\n (change)=\"onNumberFilterOptionChange(numberOperatorIndex.between)\"\n [checked]=\"selectedOperator === numberOperatorIndex.between\"\n (click)=\"setNumericOperator(numberOperatorIndex.between)\"\n />\n Between\n <div class=\"between-dates flex items-center\" *ngIf=\"selectedOperator === numberOperatorIndex.between\">\n <mat-form-field appearance=\"standard\" *ngIf=\"expression?.value?.value\">\n <input\n matInput\n placeholder=\"From\"\n type=\"number\"\n [(ngModel)]=\"expression.value.value.from\"\n (change)=\"filterValueChanged()\"\n />\n </mat-form-field>\n <span class=\"range\"> - </span>\n <mat-form-field appearance=\"standard\" *ngIf=\"expression?.value?.value\">\n <input\n matInput\n placeholder=\"TO\"\n type=\"number\"\n [(ngModel)]=\"expression.value.value.to\"\n (change)=\"filterValueChanged()\"\n />\n </mat-form-field>\n </div>\n </label>\n </div>\n </mat-radio-group>\n <lib-filter-footer\n [isFilterValue]=\"true\"\n (clearAllValue)=\"clearAllValue()\"\n (applyFilter)=\"applyFilter()\"\n (closeFilter)=\"belowMenu?.close()\"\n ></lib-filter-footer>\n</mat-menu>\n<mat-icon class=\"down-arrow\" [svgIcon]=\"'axo_arrow'\" (click)=\"numberSelectList.open()\"></mat-icon>\n</div>\n", styles: [""] }]
|
|
320
|
+
}], function () { return [{ type: i1.CommonFilterService }]; }, null); })();
|
|
321
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWZpbHRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9maWx0ZXJzL251bWJlci1maWx0ZXIvbnVtYmVyLWZpbHRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9maWx0ZXJzL251bWJlci1maWx0ZXIvbnVtYmVyLWZpbHRlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsU0FBUyxFQUF5QixpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRixPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDckUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sNkRBQTZELENBQUM7QUFDcEcsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDekYsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDdEYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMENBQTBDLENBQUM7Ozs7Ozs7Ozs7Ozs7OztJQ29CekUsMkJBQStEO0lBQzdELDBDQUF1QztJQUNyQyxpQ0FNRTtJQUZBLGtPQUFvQyx1SkFDMUIsMkJBQW9CLElBRE07SUFKdEMsaUJBTUU7SUFDSixpQkFBaUI7SUFDbkIsaUJBQU07OztJQUpBLGVBQW9DO0lBQXBDLHVEQUFvQzs7OztJQWtCMUMsMkJBQWdFO0lBQzlELDBDQUF1QztJQUNyQyxpQ0FNRTtJQUZBLG1PQUFvQyx5SkFDMUIsNEJBQW9CLElBRE07SUFKdEMsaUJBTUU7SUFDSixpQkFBaUI7SUFDbkIsaUJBQU07OztJQUpBLGVBQW9DO0lBQXBDLHVEQUFv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QUNsQiw4Q0FLRztRQUhELDhIQUFpQixtQkFBZSxJQUFDLDZHQUNsQixpQkFBYSxJQURLLHlMQUVsQixXQUFrQixJQUZBO1FBR2hDLGlCQUFvQjtRQUN6QixpQkFBVztRQUNYLHFDQUF1RjtRQUFsQyw0SkFBUyxVQUF1QixJQUFDO1FBQUMsaUJBQVc7UUFDbEcsaUJBQU07OztRQS9IRSxlQUE0QjtRQUE1Qiw4Q0FBNEIsZ0NBQUEsMEJBQUE7UUFVc0MsZUFBc0Y7UUFBdEYsK0dBQXNGO1FBSXRKLGVBQXFDO1FBQXJDLHVEQUFxQyxxRUFBQTtRQVNoQyxlQUFzRDtRQUF0RCwrRUFBc0Q7UUFnQjNELGVBQXNDO1FBQXRDLHdEQUFzQyxzRUFBQTtRQVFqQyxlQUF1RDtRQUF2RCxnRkFBdUQ7UUFnQjlELGVBQXNDO1FBQXRDLHdEQUFzQyxzRUFBQTtRQVFqQyxlQUF1RDtRQUF2RCxnRkFBdUQ7UUFnQjVELGVBQXFDO1FBQXJDLHVEQUFxQyxxRUFBQTtRQVFNLGVBQXNEO1FBQXRELCtFQUFzRDtRQXlCckcsZUFBc0I7UUFBdEIsb0NBQXNCO1FBTUcsZUFBdUI7UUFBdkIscUNBQXVCOzt1RkRuSHZDLHFCQUFxQjtjQU5qQyxTQUFTOzJCQUNFLG1CQUFtQixpQkFHZCxpQkFBaUIsQ0FBQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uRmlsdGVyU2VydmljZSB9IGZyb20gJy4vLi4vY29tbW9uLWZpbHRlci9jb21tb24tZmlsdGVyLnNlcnZpY2UnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIFNpbXBsZUNoYW5nZXMsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBeE9wZXJhdG9yIH0gZnJvbSAnLi4vLi4vZW5saWdodGVuLWxpYi9maWx0ZXJzL2F4LW9wZXJhdG9yJztcbmltcG9ydCB7IEF4RXhwTnVtYmVyUmFuZ2VWYWx1ZSB9IGZyb20gJy4uLy4uL2VubGlnaHRlbi1saWIvYXgtZXhwcmVzc2lvbi9heC1leHAtbnVtYmVyLXJhbmdlLXZhbHVlJztcbmltcG9ydCB7IEF4RXhwTnVtYmVyVmFsdWUgfSBmcm9tICcuLi8uLi9lbmxpZ2h0ZW4tbGliL2F4LWV4cHJlc3Npb24vYXgtZXhwLW51bWJlci12YWx1ZSc7XG5pbXBvcnQgeyBOdW1iZXJPcGVyYXRvckluZGV4IH0gZnJvbSAnLi4vLi4vZW5saWdodGVuLWxpYi9maWx0ZXJzL2dlbmVyYWwtZmlsdGVyLXR5cGUnO1xuaW1wb3J0IHsgQ29tbW9uRmlsdGVyQ29tcG9uZW50IH0gZnJvbSAnLi4vY29tbW9uLWZpbHRlci9jb21tb24tZmlsdGVyLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1udW1iZXItZmlsdGVyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL251bWJlci1maWx0ZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9udW1iZXItZmlsdGVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgTnVtYmVyRmlsdGVyQ29tcG9uZW50IGV4dGVuZHMgQ29tbW9uRmlsdGVyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgICAvLzwtLS0tLS0tLS0tPCBJbnB1dHMgPi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG5cbiAgICAvLzwtLS0tLS0tLS0tLTxPdXRwdXRzID4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG5cbiAgICAvLzwtLS0tLS0tLS0tLS0tKEVudW1zICktLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG4gICAgbnVtYmVyT3BlcmF0b3JJbmRleCA9IE51bWJlck9wZXJhdG9ySW5kZXg7XG4gICAgLy88LS0tLS0tLS0tLS0tLShDb21wb25lbnQgVmFyaWFibGVzICktLS0tLS0tLS0tLS0tPlxuICAgIG51bWJlck9wZXJhdG9yczogQXJyYXk8QXhPcGVyYXRvcj47XG4gICAgc2VsZWN0ZWRPcGVyYXRvcjogTnVtYmVyT3BlcmF0b3JJbmRleCA9IG51bGw7XG4gICAgZGVmYXVsdENvbXBhcmlzb25PcGVyYXRvcjogQXhPcGVyYXRvcjtcbiAgICBkZWZhdWx0T3BlcmF0b3JJbmRleDogTnVtYmVyT3BlcmF0b3JJbmRleDtcblxuICAgIGNvbnN0cnVjdG9yKF9jb21tb25GaWx0ZXJTZXJ2aWNlOiBDb21tb25GaWx0ZXJTZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKF9jb21tb25GaWx0ZXJTZXJ2aWNlKTtcblxuICAgIH1cbiAgICAvKipcbiAgICAgKiBPbiBjaGFuZ2UgTGlmZSBjeWNsZSBob29rLlxuICAgICAqXG4gICAgICogQHBhcmFtIGNoYW5nZXNcbiAgICAgKi9cbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L3VzZS1saWZlY3ljbGUtaW50ZXJmYWNlXG4gICAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgICAgICBzdXBlci5uZ09uQ2hhbmdlcyhjaGFuZ2VzKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBPbiBJbml0IGxpZmUgY3ljbGUgaG9vay5cbiAgICAgKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgc3VwZXIubmdPbkluaXQoKTtcbiAgICAgICAgdGhpcy5udW1iZXJPcGVyYXRvcnMgPSBBeE9wZXJhdG9yLmdldE51bWVyaWNPcGVyYXRvcigpO1xuICAgICAgICB0aGlzLnNldERpc3BsYXlWYWx1ZSgpO1xuICAgIH1cbiAgLyoqXG4gICAqICBTZXQgdGhlIG9wZXJhdG9yIHdpc2UgZXhwcmVzc2lvbiB2YWx1ZSBvYmplY3RcbiAgICpcbiAgICogQHBhcmFtIG9wZXJhdG9ySW5kZXhcbiAgICovXG4gIHNldE51bWVyaWNPcGVyYXRvcihvcGVyYXRvckluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICB0aGlzLmV4cHJlc3Npb24uY29tcGFyaXNvbk9wZXJhdG9yID0gdGhpcy5udW1iZXJPcGVyYXRvcnNbb3BlcmF0b3JJbmRleF07XG4gICAgaWYob3BlcmF0b3JJbmRleCA9PT0gTnVtYmVyT3BlcmF0b3JJbmRleC5iZXR3ZWVuKXtcbiAgICAgIHRoaXMuZXhwcmVzc2lvbi52YWx1ZSA9IG5ldyBBeEV4cE51bWJlclJhbmdlVmFsdWUoKTtcbiAgICB9ZWxzZXtcbiAgICAgIHRoaXMuZXhwcmVzc2lvbi52YWx1ZSA9IG5ldyBBeEV4cE51bWJlclZhbHVlKCk7XG4gICAgfVxuICAgIHRoaXMuZXhwcmVzc2lvbi52YWx1ZS5pc0lucHV0VmlzaWJsZSA9IHRoaXMuc2VsZWN0ZWRPcGVyYXRvcjtcbiAgfVxuXG5cbiAgLyoqXG4gICAqIHNldCBmaWVsZCBzZWxlY3QgdmFsdWVcbiAgICovXG4gIHNldERpc3BsYXlWYWx1ZSgpOiB2b2lke1xuICAgIHRoaXMuZGlzcGxheVZhbHVlID0gdGhpcy5leHByZXNzaW9uLmZpZWxkLmxhYmVsO1xuICAgIGlmKHRoaXMuZXhwcmVzc2lvbi52YWx1ZSBpbnN0YW5jZW9mIEF4RXhwTnVtYmVyUmFuZ2VWYWx1ZSl7XG4gICAgICAgIGNvbnN0IGV4cHJlc3Npb25WYWx1ZSA9IG5ldyBBeEV4cE51bWJlclJhbmdlVmFsdWUodGhpcy5leHByZXNzaW9uLnZhbHVlIGFzIEF4RXhwTnVtYmVyUmFuZ2VWYWx1ZSk7XG4gICAgICAgIGlmKGV4cHJlc3Npb25WYWx1ZS52YWx1ZS5mcm9tICE9PSBudWxsICYmIGV4cHJlc3Npb25WYWx1ZS52YWx1ZS50byAhPT0gMCl7XG4gICAgICAgICAgICB0aGlzLmRpc3BsYXlWYWx1ZSA9IHRoaXMuZXhwcmVzc2lvbi5maWVsZC5sYWJlbCsnIEJldHdlZW4gJytleHByZXNzaW9uVmFsdWUudmFsdWUuZnJvbSArICcgVG8gJyArIGV4cHJlc3Npb25WYWx1ZS52YWx1ZS50bztcbiAgICAgICAgfVxuICAgIH1lbHNle1xuICAgICAgICBjb25zdCBleHByZXNzaW9uVmFsdWUgPSBuZXcgQXhFeHBOdW1iZXJWYWx1ZSh0aGlzLmV4cHJlc3Npb24udmFsdWUgYXMgQXhFeHBOdW1iZXJWYWx1ZSk7XG4gICAgICAgIGlmKGV4cHJlc3Npb25WYWx1ZS52YWx1ZSAhPT0gbnVsbClcbiAgICAgICAgICAgIHt0aGlzLmRpc3BsYXlWYWx1ZSA9IHRoaXMuZXhwcmVzc2lvbi5maWVsZC5sYWJlbCsnICcrdGhpcy5leHByZXNzaW9uLmNvbXBhcmlzb25PcGVyYXRvci50ZXh0KycgJytleHByZXNzaW9uVmFsdWUudmFsdWU7fVxuICAgIH1cblxuICAgIHRoaXMuYWRkRWxsaXBzZXNUb0Rpc3BsYXlWYWx1ZSh0aGlzLmRpc3BsYXlWYWx1ZSk7XG4gIH1cblxuICAvKipcbiAgICogQ2xlYXIgc2VsZWN0IHZhbHVlIGludG8gZXhwcmVzc2lvbiB2YWx1ZVxuICAgKi9cbiAgIGNsZWFyQWxsVmFsdWUoKTogdm9pZHtcbiAgICAgICAgdGhpcy5zZXROdW1lcmljT3BlcmF0b3IodGhpcy5zZWxlY3RlZE9wZXJhdG9yKTtcbiAgICAgICAgdGhpcy5zZWxlY3RlZE9wZXJhdG9yID0gbnVsbDtcbiAgICAgICAgdGhpcy5kaXNwbGF5VmFsdWUgPSB0aGlzLmV4cHJlc3Npb24uZmllbGQubGFiZWw7XG4gICAgICAgIHRoaXMuZmlsdGVyVmFsdWVDaGFuZ2VkKCk7XG4gICAgICAgIHRoaXMuYXBwbHlGaWx0ZXJFdmVudC5lbWl0KCk7XG4gICB9XG5cbiAgIC8qKlxuICAgICogc2V0IHRoZSBudW1iZXIgaW5wdXQgdmlzaWJsZSB2YWx1ZVxuICAgICpcbiAgICAqIEBwYXJhbSBkYXRlT3BlcmF0b3JUeXBlXG4gICAgKi9cbiAgICBvbk51bWJlckZpbHRlck9wdGlvbkNoYW5nZShudW1iZXJPcGVyYXRvclR5cGU6IG51bWJlcik6IHZvaWQge1xuICAgICAgdGhpcy5zZWxlY3RlZE9wZXJhdG9yID0gbnVtYmVyT3BlcmF0b3JUeXBlO1xuICAgICAgdGhpcy5leHByZXNzaW9uLnZhbHVlLmlzSW5wdXRWaXNpYmxlID0gbnVtYmVyT3BlcmF0b3JUeXBlO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEZpbHRlciB2YWx1ZSBDaGFuZ2UgRXZlbnRcbiAgICAgKlxuICAgICAqIEBPdmVycmlkZGVuXG4gICAgICovXG4gICAgZmlsdGVyVmFsdWVDaGFuZ2VkKCk6IHZvaWR7XG4gICAgICAgIHRoaXMuc2V0RGlzcGxheVZhbHVlKCk7XG4gICAgICAgIHRoaXMuZmlsdGVyVmFsdWVDaGFuZ2UuZW1pdCh0aGlzLmZpbHRlcik7XG4gICAgICAgIHRoaXMuX2NvbW1vbkZpbHRlclNlcnZpY2UuZmlsdGVyVmFsdWVDaGFuZ2UuZW1pdCh0aGlzLmZpbHRlcik7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogVEhpcyB3aWxsIHJlc2V0IEZpbHRlciB2YWx1ZS5cbiAgICAgKlxuICAgICAqIEBvdmVycmlkZGVuXG4gICAgICovXG4gICAgcmVzZXRGaWx0ZXIoKTogdm9pZCB7XG4gICAgICAgIGlmKCB0aGlzLmRlZmF1bHRWYWx1ZSAmJiB0aGlzLmRlZmF1bHRWYWx1ZS5pc0lucHV0VmlzaWJsZSA9PT0gIE51bWJlck9wZXJhdG9ySW5kZXguYmV0d2Vlbil7XG4gICAgICAgICAgICB0aGlzLmV4cHJlc3Npb24udmFsdWUgPSBuZXcgQXhFeHBOdW1iZXJSYW5nZVZhbHVlKHRoaXMuZGVmYXVsdFZhbHVlKTtcbiAgICAgICAgfWVsc2V7XG4gICAgICAgICAgICB0aGlzLmV4cHJlc3Npb24udmFsdWUgPSAgbmV3IEF4RXhwTnVtYmVyVmFsdWUodGhpcy5kZWZhdWx0VmFsdWUpO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuZXhwcmVzc2lvbi5jb21wYXJpc29uT3BlcmF0b3IgPSB0aGlzLmRlZmF1bHRDb21wYXJpc29uT3BlcmF0b3I7XG4gICAgICAgIHRoaXMuZXhwcmVzc2lvbi52YWx1ZS5pc0lucHV0VmlzaWJsZSA9IHRoaXMuZGVmYXVsdE9wZXJhdG9ySW5kZXg7XG4gICAgICAgIHRoaXMuc2VsZWN0ZWRPcGVyYXRvciA9IHRoaXMuZGVmYXVsdE9wZXJhdG9ySW5kZXg7XG5cbiAgICAgICAgdGhpcy5zZXREaXNwbGF5VmFsdWUoKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBTZXQgRGVmYXVsdCBWYWx1ZVxuICAgICAqXG4gICAgICogQG92ZXJyaWRkZW5cbiAgICAgKi9cbiAgICBzZXREZWZhdWx0VmFsdWUoKTogdm9pZCB7XG4gICAgICAgIGlmKHRoaXMuZXhwcmVzc2lvbi52YWx1ZS5pc0lucHV0VmlzaWJsZSA9PT0gTnVtYmVyT3BlcmF0b3JJbmRleC5iZXR3ZWVuKXtcbiAgICAgICAgICAgIHRoaXMuZGVmYXVsdFZhbHVlID0gbmV3IEF4RXhwTnVtYmVyUmFuZ2VWYWx1ZSh0aGlzLmV4cHJlc3Npb24udmFsdWUgYXMgQXhFeHBOdW1iZXJSYW5nZVZhbHVlKTtcbiAgICAgICAgfWVsc2V7XG4gICAgICAgICAgICB0aGlzLmRlZmF1bHRWYWx1ZSA9IG5ldyBBeEV4cE51bWJlclZhbHVlKHRoaXMuZXhwcmVzc2lvbi52YWx1ZSBhcyBBeEV4cE51bWJlclZhbHVlKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLmRlZmF1bHRDb21wYXJpc29uT3BlcmF0b3IgPSB0aGlzLmV4cHJlc3Npb24uY29tcGFyaXNvbk9wZXJhdG9yO1xuICAgICAgICB0aGlzLmRlZmF1bHRPcGVyYXRvckluZGV4ID0gdGhpcy5leHByZXNzaW9uLnZhbHVlLmlzSW5wdXRWaXNpYmxlO1xuICAgICAgICB0aGlzLnNlbGVjdGVkT3BlcmF0b3IgPSB0aGlzLmV4cHJlc3Npb24udmFsdWUuaXNJbnB1dFZpc2libGU7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogVGhpcyBmdW5jdGlvbiBjbGVhciB0aGUgZmlsdGVyIHZhbHVlLlxuICAgICAqXG4gICAgICogQG92ZXJyaWRkZW5cbiAgICAgKi9cbiAgICAgY2xlYXJWYWx1ZSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5leHByZXNzaW9uLnZhbHVlID0gbmV3IEF4RXhwTnVtYmVyVmFsdWUoKTtcbiAgICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZmllbGRzXCIgPlxuICA8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cIm5vbmVcIj5cbiAgICA8bWF0LXNlbGVjdFxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiZGlzcGxheVZhbHVlXCJcbiAgICAgICAgW21hdFRvb2x0aXBdPVwidG9vbFRpcFZhbHVlXCJcbiAgICAgICAgY2xhc3M9XCJudW1iZXItZmlsdGVyLWRyb3Bkb3duXCJcbiAgICAgICAgW21hdE1lbnVUcmlnZ2VyRm9yXT1cImJlbG93TWVudVwiXG4gICAgICAgIChzZWxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyVmFsdWVDaGFuZ2VkKClcIiBcbiAgICAgICAgI251bWJlclNlbGVjdExpc3Q+XG4gICAgPC9tYXQtc2VsZWN0PlxuICA8L21hdC1mb3JtLWZpZWxkPlxuXG48bWF0LW1lbnUgI2JlbG93TWVudT1cIm1hdE1lbnVcIiBjbGFzcz1cInBhbmVsdGVzdFwiICAgeVBvc2l0aW9uPVwiYmVsb3dcIiAgYmFja2Ryb3BDbGFzcz1cIm51bWJlci1maWx0ZXItYmFja2Ryb3AtY2xhc3NcIj5cbiAgPG1hdC1yYWRpby1ncm91cCBjbGFzcz1cInJhZGlvLWdyb3VwXCIgKGNsaWNrKT1cIiRldmVudC5zdG9wUHJvcGFnYXRpb24oKVwiIFtuZ0NsYXNzXT1cInsnYmV0d2Vlbl9kYXRlX2FjdGl2ZSc6ICBzZWxlY3RlZE9wZXJhdG9yID09PSBudW1iZXJPcGVyYXRvckluZGV4LmJldHdlZW59XCI+XG4gICAgPGRpdiBjbGFzcz1cImVxdWFsLXRvXCI+XG4gICAgICA8bGFiZWw+XG4gICAgICAgIDxpbnB1dFxuICAgICAgICAgIFt2YWx1ZV09XCJudW1iZXJPcGVyYXRvckluZGV4LmVxdWFsVG9cIlxuICAgICAgICAgIG5hbWU9XCJzZWxlY3RlZE9wZXJhdG9yXCJcbiAgICAgICAgICB0eXBlPVwicmFkaW9cIlxuICAgICAgICAgIChjaGFuZ2UpPVwib25OdW1iZXJGaWx0ZXJPcHRpb25DaGFuZ2UobnVtYmVyT3BlcmF0b3JJbmRleC5lcXVhbFRvKVwiXG4gICAgICAgICAgW2NoZWNrZWRdPVwic2VsZWN0ZWRPcGVyYXRvciA9PT0gbnVtYmVyT3BlcmF0b3JJbmRleC5lcXVhbFRvXCJcbiAgICAgICAgICAoY2xpY2spPVwic2V0TnVtZXJpY09wZXJhdG9yKG51bWJlck9wZXJhdG9ySW5kZXguZXF1YWxUbylcIlxuXG4gICAgICAgIC8+XG4gICAgICAgIEVxdWFscyBUb1xuICAgICAgICA8ZGl2ICAqbmdJZj1cInNlbGVjdGVkT3BlcmF0b3IgPT09IG51bWJlck9wZXJhdG9ySW5kZXguZXF1YWxUb1wiPlxuICAgICAgICAgIDxtYXQtZm9ybS1maWVsZCBhcHBlYXJhbmNlPVwic3RhbmRhcmRcIiA+XG4gICAgICAgICAgICA8aW5wdXRcbiAgICAgICAgICAgICAgbWF0SW5wdXRcbiAgICAgICAgICAgICAgdHlwZT1cIm51bWJlclwiXG4gICAgICAgICAgICAgIHBsYWNlaG9sZGVyPVwiRXF1YWxzIFRvXCJcbiAgICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJleHByZXNzaW9uLnZhbHVlLnZhbHVlXCJcbiAgICAgICAgICAgICAgKGNoYW5nZSk9XCJmaWx0ZXJWYWx1ZUNoYW5nZWQoKVwiXG4gICAgICAgICAgICAvPlxuICAgICAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9sYWJlbD5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwibW9yZS10aGFuXCI+XG4gICAgICA8bGFiZWw+XG4gICAgICAgIDxpbnB1dFxuICAgICAgICAgIFt2YWx1ZV09XCJudW1iZXJPcGVyYXRvckluZGV4Lm1vcmVUaGFuXCJcbiAgICAgICAgICBuYW1lPVwic2VsZWN0ZWRPcGVyYXRvclwiXG4gICAgICAgICAgdHlwZT1cInJhZGlvXCJcbiAgICAgICAgICAoY2hhbmdlKT1cIm9uTnVtYmVyRmlsdGVyT3B0aW9uQ2hhbmdlKG51bWJlck9wZXJhdG9ySW5kZXgubW9yZVRoYW4pXCJcbiAgICAgICAgICBbY2hlY2tlZF09XCJzZWxlY3RlZE9wZXJhdG9yID09PSBudW1iZXJPcGVyYXRvckluZGV4Lm1vcmVUaGFuXCJcbiAgICAgICAgICAoY2xpY2spPVwic2V0TnVtZXJpY09wZXJhdG9yKG51bWJlck9wZXJhdG9ySW5kZXgubW9yZVRoYW4pXCJcbiAgICAgICAgLz5cbiAgICAgICAgTW9yZSBUaGFuIE9yIEVxdWFscyBUb1xuICAgICAgICA8ZGl2ICAqbmdJZj1cInNlbGVjdGVkT3BlcmF0b3IgPT09IG51bWJlck9wZXJhdG9ySW5kZXgubW9yZVRoYW5cIj5cbiAgICAgICAgICA8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cInN0YW5kYXJkXCIgPlxuICAgICAgICAgICAgPGlucHV0XG4gICAgICAgICAgICAgIG1hdElucHV0XG4gICAgICAgICAgICAgIHBsYWNlaG9sZGVyPVwiTW9yZSBUaGFuXCJcbiAgICAgICAgICAgICAgdHlwZT1cIm51bWJlclwiXG4gICAgICAgICAgICAgIFsobmdNb2RlbCldPVwiZXhwcmVzc2lvbi52YWx1ZS52YWx1ZVwiXG4gICAgICAgICAgICAgIChjaGFuZ2UpPVwiZmlsdGVyVmFsdWVDaGFuZ2VkKClcIlxuICAgICAgICAgICAgLz5cbiAgICAgICAgICA8L21hdC1mb3JtLWZpZWxkPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbGFiZWw+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImxlc3MtdGhhblwiPlxuICAgIDxsYWJlbD5cbiAgICAgIDxpbnB1dFxuICAgICAgICBbdmFsdWVdPVwibnVtYmVyT3BlcmF0b3JJbmRleC5sZXNzVGhhblwiXG4gICAgICAgIG5hbWU9XCJzZWxlY3RlZE9wZXJhdG9yXCJcbiAgICAgICAgdHlwZT1cInJhZGlvXCJcbiAgICAgICAgKGNoYW5nZSk9XCJvbk51bWJlckZpbHRlck9wdGlvbkNoYW5nZShudW1iZXJPcGVyYXRvckluZGV4Lmxlc3NUaGFuKVwiXG4gICAgICAgIFtjaGVja2VkXT1cInNlbGVjdGVkT3BlcmF0b3IgPT09IG51bWJlck9wZXJhdG9ySW5kZXgubGVzc1RoYW5cIlxuICAgICAgICAoY2xpY2spPVwic2V0TnVtZXJpY09wZXJhdG9yKG51bWJlck9wZXJhdG9ySW5kZXgubGVzc1RoYW4pXCJcbiAgICAgIC8+XG4gICAgTGVzcyBUaGFuIE9yIEVxdWFscyBUb1xuICAgICAgPGRpdiAgKm5nSWY9XCJzZWxlY3RlZE9wZXJhdG9yID09PSBudW1iZXJPcGVyYXRvckluZGV4Lmxlc3NUaGFuXCI+XG4gICAgICAgIDxtYXQtZm9ybS1maWVsZCBhcHBlYXJhbmNlPVwic3RhbmRhcmRcIiA+XG4gICAgICAgICAgPGlucHV0XG4gICAgICAgICAgICBtYXRJbnB1dFxuICAgICAgICAgICAgcGxhY2Vob2xkZXI9XCJMZXNzIFRoYW5cIlxuICAgICAgICAgICAgdHlwZT1cIm51bWJlclwiXG4gICAgICAgICAgICBbKG5nTW9kZWwpXT1cImV4cHJlc3Npb24udmFsdWUudmFsdWVcIlxuICAgICAgICAgICAgKGNoYW5nZSk9XCJmaWx0ZXJWYWx1ZUNoYW5nZWQoKVwiXG4gICAgICAgICAgLz5cbiAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cbiAgICAgIDwvZGl2PlxuICAgIDwvbGFiZWw+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImJldHdlZW4tcmFuZ2VcIj5cbiAgICA8bGFiZWw+XG4gICAgICA8aW5wdXRcbiAgICAgICAgW3ZhbHVlXT1cIm51bWJlck9wZXJhdG9ySW5kZXguYmV0d2VlblwiXG4gICAgICAgIG5hbWU9XCJzZWxlY3RlZE9wZXJhdG9yXCJcbiAgICAgICAgdHlwZT1cInJhZGlvXCJcbiAgICAgICAgKGNoYW5nZSk9XCJvbk51bWJlckZpbHRlck9wdGlvbkNoYW5nZShudW1iZXJPcGVyYXRvckluZGV4LmJldHdlZW4pXCJcbiAgICAgICAgW2NoZWNrZWRdPVwic2VsZWN0ZWRPcGVyYXRvciA9PT0gbnVtYmVyT3BlcmF0b3JJbmRleC5iZXR3ZWVuXCJcbiAgICAgICAgKGNsaWNrKT1cInNldE51bWVyaWNPcGVyYXRvcihudW1iZXJPcGVyYXRvckluZGV4LmJldHdlZW4pXCJcbiAgICAgIC8+XG4gICAgICBCZXR3ZWVuXG4gICAgPGRpdiBjbGFzcz1cImJldHdlZW4tZGF0ZXMgZmxleCBpdGVtcy1jZW50ZXJcIiAgKm5nSWY9XCJzZWxlY3RlZE9wZXJhdG9yID09PSBudW1iZXJPcGVyYXRvckluZGV4LmJldHdlZW5cIj5cbiAgICAgICAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJzdGFuZGFyZFwiICpuZ0lmPVwiZXhwcmVzc2lvbj8udmFsdWU/LnZhbHVlXCI+XG4gICAgICAgICAgPGlucHV0XG4gICAgICAgICAgICBtYXRJbnB1dFxuICAgICAgICAgICAgcGxhY2Vob2xkZXI9XCJGcm9tXCJcbiAgICAgICAgICAgIHR5cGU9XCJudW1iZXJcIlxuICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJleHByZXNzaW9uLnZhbHVlLnZhbHVlLmZyb21cIlxuICAgICAgICAgICAgKGNoYW5nZSk9XCJmaWx0ZXJWYWx1ZUNoYW5nZWQoKVwiXG4gICAgICAgICAgLz5cbiAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJyYW5nZVwiPiAtIDwvc3Bhbj5cbiAgICAgICAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJzdGFuZGFyZFwiICpuZ0lmPVwiZXhwcmVzc2lvbj8udmFsdWU/LnZhbHVlXCI+XG4gICAgICAgICAgPGlucHV0XG4gICAgICAgICAgICBtYXRJbnB1dFxuICAgICAgICAgICAgcGxhY2Vob2xkZXI9XCJUT1wiXG4gICAgICAgICAgICB0eXBlPVwibnVtYmVyXCJcbiAgICAgICAgICAgIFsobmdNb2RlbCldPVwiZXhwcmVzc2lvbi52YWx1ZS52YWx1ZS50b1wiXG4gICAgICAgICAgICAoY2hhbmdlKT1cImZpbHRlclZhbHVlQ2hhbmdlZCgpXCJcbiAgICAgICAgICAvPlxuICAgICAgICA8L21hdC1mb3JtLWZpZWxkPlxuICAgICAgPC9kaXY+XG4gICAgPC9sYWJlbD5cbiAgICA8L2Rpdj5cbiAgPC9tYXQtcmFkaW8tZ3JvdXA+XG4gIDxsaWItZmlsdGVyLWZvb3RlclxuICAgIFtpc0ZpbHRlclZhbHVlXT1cInRydWVcIlxuICAgIChjbGVhckFsbFZhbHVlKT1cImNsZWFyQWxsVmFsdWUoKVwiXG4gICAgKGFwcGx5RmlsdGVyKT1cImFwcGx5RmlsdGVyKClcIlxuICAgIChjbG9zZUZpbHRlcik9XCJiZWxvd01lbnU/LmNsb3NlKClcIlxuICAgID48L2xpYi1maWx0ZXItZm9vdGVyPlxuPC9tYXQtbWVudT5cbjxtYXQtaWNvbiBjbGFzcz1cImRvd24tYXJyb3dcIiBbc3ZnSWNvbl09XCInYXhvX2Fycm93J1wiIChjbGljayk9XCJudW1iZXJTZWxlY3RMaXN0Lm9wZW4oKVwiPjwvbWF0LWljb24+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* We will export all dataview modules and classes from here.
|
|
3
|
+
*/
|
|
4
|
+
export * from './filters.component';
|
|
5
|
+
export * from './metaColumnTypes';
|
|
6
|
+
export * from './filters.module';
|
|
7
|
+
export * from './number-filter/number-filter.component';
|
|
8
|
+
export * from './multi-select-filter/multi-select-filter.component';
|
|
9
|
+
export * from './choice-list-filter/choice-list-filter.component';
|
|
10
|
+
export * from './reference-list-filter/reference-list-filter.component';
|
|
11
|
+
export * from './calender-filter/calender-filter.component';
|
|
12
|
+
export * from './time-filter/time-filter.component';
|
|
13
|
+
export * from './category-filter/category-filter.component';
|
|
14
|
+
export * from './filters.service';
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2ZpbHRlcnMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyxxREFBcUQsQ0FBQztBQUNwRSxjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMseURBQXlELENBQUM7QUFDeEUsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMsNkNBQTZDLENBQUM7QUFDNUQsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogV2Ugd2lsbCBleHBvcnQgYWxsIGRhdGF2aWV3IG1vZHVsZXMgYW5kIGNsYXNzZXMgZnJvbSBoZXJlLlxuICovXG5leHBvcnQgKiBmcm9tICcuL2ZpbHRlcnMuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbWV0YUNvbHVtblR5cGVzJztcbmV4cG9ydCAqIGZyb20gJy4vZmlsdGVycy5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9udW1iZXItZmlsdGVyL251bWJlci1maWx0ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbXVsdGktc2VsZWN0LWZpbHRlci9tdWx0aS1zZWxlY3QtZmlsdGVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2Nob2ljZS1saXN0LWZpbHRlci9jaG9pY2UtbGlzdC1maWx0ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcmVmZXJlbmNlLWxpc3QtZmlsdGVyL3JlZmVyZW5jZS1saXN0LWZpbHRlci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9jYWxlbmRlci1maWx0ZXIvY2FsZW5kZXItZmlsdGVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3RpbWUtZmlsdGVyL3RpbWUtZmlsdGVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2NhdGVnb3J5LWZpbHRlci9jYXRlZ29yeS1maWx0ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vZmlsdGVycy5zZXJ2aWNlJztcbiJdfQ==
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import { Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { MAT_SELECT_CONFIG } from '@angular/material/select';
|
|
3
|
+
import { CommonFilterService } from './../common-filter/common-filter.service';
|
|
4
|
+
import { CommonFilterComponent } from './../common-filter/common-filter.component';
|
|
5
|
+
import { AxExpTextList } from '../../enlighten-lib/ax-expression/ax-exp-text-list';
|
|
6
|
+
import { AxOperator } from '../../enlighten-lib/filters/ax-operator';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "./../common-filter/common-filter.service";
|
|
9
|
+
import * as i2 from "@angular/material/form-field";
|
|
10
|
+
import * as i3 from "@angular/material/select";
|
|
11
|
+
import * as i4 from "@angular/material/tooltip";
|
|
12
|
+
import * as i5 from "@angular/forms";
|
|
13
|
+
import * as i6 from "../../axo-search-bar/axo-search-bar.component";
|
|
14
|
+
import * as i7 from "@angular/common";
|
|
15
|
+
import * as i8 from "@angular/material/core";
|
|
16
|
+
import * as i9 from "../filter-footer/filter-footer.component";
|
|
17
|
+
import * as i10 from "@angular/material/icon";
|
|
18
|
+
function ReferenceListFilterComponent_ng_container_5_mat_option_1_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelementStart(0, "mat-option", 10, 11);
|
|
20
|
+
i0.ɵɵtext(2);
|
|
21
|
+
i0.ɵɵelementEnd();
|
|
22
|
+
} if (rf & 2) {
|
|
23
|
+
const series_r2 = i0.ɵɵnextContext().$implicit;
|
|
24
|
+
i0.ɵɵproperty("matTooltip", series_r2.label)("value", series_r2.id);
|
|
25
|
+
i0.ɵɵadvance(2);
|
|
26
|
+
i0.ɵɵtextInterpolate1(" ", series_r2.title, " ");
|
|
27
|
+
} }
|
|
28
|
+
function ReferenceListFilterComponent_ng_container_5_mat_option_2_Template(rf, ctx) { if (rf & 1) {
|
|
29
|
+
i0.ɵɵelementStart(0, "mat-option", 10, 11);
|
|
30
|
+
i0.ɵɵtext(2);
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
} if (rf & 2) {
|
|
33
|
+
const series_r2 = i0.ɵɵnextContext().$implicit;
|
|
34
|
+
i0.ɵɵproperty("matTooltip", series_r2)("value", series_r2);
|
|
35
|
+
i0.ɵɵadvance(2);
|
|
36
|
+
i0.ɵɵtextInterpolate1(" ", series_r2, " ");
|
|
37
|
+
} }
|
|
38
|
+
function ReferenceListFilterComponent_ng_container_5_Template(rf, ctx) { if (rf & 1) {
|
|
39
|
+
i0.ɵɵelementContainerStart(0);
|
|
40
|
+
i0.ɵɵtemplate(1, ReferenceListFilterComponent_ng_container_5_mat_option_1_Template, 3, 3, "mat-option", 9);
|
|
41
|
+
i0.ɵɵtemplate(2, ReferenceListFilterComponent_ng_container_5_mat_option_2_Template, 3, 3, "mat-option", 9);
|
|
42
|
+
i0.ɵɵelementContainerEnd();
|
|
43
|
+
} if (rf & 2) {
|
|
44
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
45
|
+
i0.ɵɵadvance(1);
|
|
46
|
+
i0.ɵɵproperty("ngIf", ctx_r1.screenType === ctx_r1.screenTypes.dataViewBuilder || ctx_r1.screenType === ctx_r1.screenTypes.dataView);
|
|
47
|
+
i0.ɵɵadvance(1);
|
|
48
|
+
i0.ɵɵproperty("ngIf", ctx_r1.screenType !== ctx_r1.screenTypes.dataViewBuilder && ctx_r1.screenType !== ctx_r1.screenTypes.dataView);
|
|
49
|
+
} }
|
|
50
|
+
export class ReferenceListFilterComponent extends CommonFilterComponent {
|
|
51
|
+
constructor(_commonFilterService) {
|
|
52
|
+
super(_commonFilterService);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* ngOnChanges use to change the current page object
|
|
56
|
+
*/
|
|
57
|
+
// eslint-disable-next-line @angular-eslint/use-lifecycle-interface
|
|
58
|
+
ngOnChanges(changes) {
|
|
59
|
+
super.ngOnChanges(changes);
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* On init life cycle hook
|
|
63
|
+
*/
|
|
64
|
+
ngOnInit() {
|
|
65
|
+
super.ngOnInit();
|
|
66
|
+
this.setDisplayValue();
|
|
67
|
+
this.expression.comparisonOperator = new AxOperator({ text: 'In', value: 'IN' });
|
|
68
|
+
this.stringOperators = AxOperator.getStringOperator();
|
|
69
|
+
this.getSeriesList();
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Get called after view render
|
|
73
|
+
*/
|
|
74
|
+
ngAfterViewInit() {
|
|
75
|
+
super.ngAfterViewInit();
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* THis will reset Filter value.
|
|
79
|
+
*/
|
|
80
|
+
resetFilter() {
|
|
81
|
+
this.expressionValue = new AxExpTextList(this.defaultValue);
|
|
82
|
+
this.expression.value = this.expressionValue;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Set Expression value
|
|
86
|
+
*
|
|
87
|
+
* @overridden
|
|
88
|
+
*/
|
|
89
|
+
setExpressionValue() {
|
|
90
|
+
this.expressionValue = this.expression.value ? this.expression.value : new AxExpTextList();
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* This function clear the filter value.
|
|
94
|
+
*
|
|
95
|
+
* @overridden
|
|
96
|
+
*/
|
|
97
|
+
clearValue() {
|
|
98
|
+
this.expressionValue = new AxExpTextList();
|
|
99
|
+
this.expression.value = this.expressionValue;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Set Default Value
|
|
103
|
+
*
|
|
104
|
+
* @overridden
|
|
105
|
+
*/
|
|
106
|
+
setDefaultValue() {
|
|
107
|
+
this.defaultValue = new AxExpTextList(this.expressionValue);
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* Apply parent value parent value change
|
|
111
|
+
*
|
|
112
|
+
*
|
|
113
|
+
*/
|
|
114
|
+
applyParentFilter() {
|
|
115
|
+
this.expressionValue.value = [];
|
|
116
|
+
this.pageIndex = 0;
|
|
117
|
+
this.seriesList = [];
|
|
118
|
+
this.getSeriesList();
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Clear Values
|
|
122
|
+
*
|
|
123
|
+
*/
|
|
124
|
+
clearAllValue() {
|
|
125
|
+
this.expressionValue.value = [];
|
|
126
|
+
this.filterValueChanged();
|
|
127
|
+
this.applyFilterEvent.emit();
|
|
128
|
+
}
|
|
129
|
+
setDisplayValue() {
|
|
130
|
+
this.addEllipsesToDisplayValue(this.expression.field.label);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
ReferenceListFilterComponent.ɵfac = function ReferenceListFilterComponent_Factory(t) { return new (t || ReferenceListFilterComponent)(i0.ɵɵdirectiveInject(i1.CommonFilterService)); };
|
|
134
|
+
ReferenceListFilterComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReferenceListFilterComponent, selectors: [["lib-reference-list-filter"]], features: [i0.ɵɵProvidersFeature([
|
|
135
|
+
{
|
|
136
|
+
provide: MAT_SELECT_CONFIG,
|
|
137
|
+
useValue: { overlayPanelClass: 'custom-multi-select-overlay-panel' },
|
|
138
|
+
},
|
|
139
|
+
]), i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls: 9, vars: 7, consts: [[1, "fields", "flex"], ["appearance", "none"], ["panelClass", "multi-select-panel", "multiple", "", 1, "multi-select-dropdown", 3, "placeholder", "matTooltip", "ngModel", "ngModelChange", "selectionChange"], ["multiSelectList", ""], [3, "searchText", "searchTextChanged"], [4, "ngFor", "ngForOf"], [1, "hidden"], [3, "isFilterValue", "clearAllValue", "applyFilter", "closeFilter"], [1, "down-arrow", 3, "svgIcon", "click"], ["class", "radio-button filter-mat-option", 3, "matTooltip", "value", 4, "ngIf"], [1, "radio-button", "filter-mat-option", 3, "matTooltip", "value"], ["matOption", ""]], template: function ReferenceListFilterComponent_Template(rf, ctx) { if (rf & 1) {
|
|
140
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
141
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
142
|
+
i0.ɵɵelementStart(1, "mat-form-field", 1);
|
|
143
|
+
i0.ɵɵelementStart(2, "mat-select", 2, 3);
|
|
144
|
+
i0.ɵɵlistener("ngModelChange", function ReferenceListFilterComponent_Template_mat_select_ngModelChange_2_listener($event) { return ctx.expressionValue.value = $event; })("selectionChange", function ReferenceListFilterComponent_Template_mat_select_selectionChange_2_listener() { return ctx.filterValueChanged(); });
|
|
145
|
+
i0.ɵɵelementStart(4, "axo-search-bar", 4);
|
|
146
|
+
i0.ɵɵlistener("searchTextChanged", function ReferenceListFilterComponent_Template_axo_search_bar_searchTextChanged_4_listener($event) { return ctx.searchTextChanged($event); });
|
|
147
|
+
i0.ɵɵelementEnd();
|
|
148
|
+
i0.ɵɵtemplate(5, ReferenceListFilterComponent_ng_container_5_Template, 3, 2, "ng-container", 5);
|
|
149
|
+
i0.ɵɵelement(6, "mat-option", 6);
|
|
150
|
+
i0.ɵɵelementStart(7, "lib-filter-footer", 7);
|
|
151
|
+
i0.ɵɵlistener("clearAllValue", function ReferenceListFilterComponent_Template_lib_filter_footer_clearAllValue_7_listener() { return ctx.clearAllValue(); })("applyFilter", function ReferenceListFilterComponent_Template_lib_filter_footer_applyFilter_7_listener() { return ctx.applyFilter(); })("closeFilter", function ReferenceListFilterComponent_Template_lib_filter_footer_closeFilter_7_listener() { i0.ɵɵrestoreView(_r9); const _r0 = i0.ɵɵreference(3); return _r0.close(); });
|
|
152
|
+
i0.ɵɵelementEnd();
|
|
153
|
+
i0.ɵɵelementEnd();
|
|
154
|
+
i0.ɵɵelementEnd();
|
|
155
|
+
i0.ɵɵelementStart(8, "mat-icon", 8);
|
|
156
|
+
i0.ɵɵlistener("click", function ReferenceListFilterComponent_Template_mat_icon_click_8_listener() { i0.ɵɵrestoreView(_r9); const _r0 = i0.ɵɵreference(3); return _r0.open(); });
|
|
157
|
+
i0.ɵɵelementEnd();
|
|
158
|
+
i0.ɵɵelementEnd();
|
|
159
|
+
} if (rf & 2) {
|
|
160
|
+
i0.ɵɵadvance(2);
|
|
161
|
+
i0.ɵɵproperty("placeholder", ctx.displayValue)("matTooltip", ctx.toolTipValue)("ngModel", ctx.expressionValue.value);
|
|
162
|
+
i0.ɵɵadvance(2);
|
|
163
|
+
i0.ɵɵproperty("searchText", ctx.searchText);
|
|
164
|
+
i0.ɵɵadvance(1);
|
|
165
|
+
i0.ɵɵproperty("ngForOf", ctx.seriesList);
|
|
166
|
+
i0.ɵɵadvance(2);
|
|
167
|
+
i0.ɵɵproperty("isFilterValue", ctx.seriesList && ctx.seriesList.length);
|
|
168
|
+
i0.ɵɵadvance(1);
|
|
169
|
+
i0.ɵɵproperty("svgIcon", "axo_arrow");
|
|
170
|
+
} }, directives: [i2.MatFormField, i3.MatSelect, i4.MatTooltip, i5.NgControlStatus, i5.NgModel, i6.AxoSearchBarComponent, i7.NgForOf, i8.MatOption, i9.FilterFooterComponent, i10.MatIcon, i7.NgIf], styles: [".custom-multi-select-overlay-panel .calender-filter-option{justify-content:space-between;display:flex;position:sticky;bottom:0;background:#fff}.custom-multi-select-overlay-panel .calender-filter{position:relative;top:13px;padding:2px 10px 1px;width:400px}.custom-multi-select-overlay-panel .apply-filters{color:#7963ed!important;font-size:11px!important;font-weight:700;vertical-align:middle}.custom-multi-select-overlay-panel .apply-clear-button{cursor:pointer}\n"], encapsulation: 2 });
|
|
171
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReferenceListFilterComponent, [{
|
|
172
|
+
type: Component,
|
|
173
|
+
args: [{ selector: 'lib-reference-list-filter', encapsulation: ViewEncapsulation.None, providers: [
|
|
174
|
+
{
|
|
175
|
+
provide: MAT_SELECT_CONFIG,
|
|
176
|
+
useValue: { overlayPanelClass: 'custom-multi-select-overlay-panel' },
|
|
177
|
+
},
|
|
178
|
+
], template: "<div class=\"fields flex\" >\n <mat-form-field appearance=\"none\">\n <mat-select class=\"multi-select-dropdown\"\n [placeholder]=\"displayValue\"\n [matTooltip]=\"toolTipValue\"\n [(ngModel)]=\"expressionValue.value\"\n (selectionChange)=\"filterValueChanged()\"\n panelClass=\"multi-select-panel\"\n multiple\n #multiSelectList >\n <!-- Search bar for filter value -->\n <axo-search-bar [searchText]=\"searchText\" (searchTextChanged)=\"searchTextChanged($event)\"></axo-search-bar>\n\n <ng-container *ngFor=\"let series of seriesList\">\n <mat-option *ngIf=\"screenType === screenTypes.dataViewBuilder || screenType === screenTypes.dataView\" class=\"radio-button filter-mat-option\" [matTooltip]=\"series.label\"\n #matOption\n [value]=\"series.id\">\n {{series.title}}\n </mat-option>\n <!-- For Enlighten reporting -->\n <mat-option *ngIf=\"this.screenType !== screenTypes.dataViewBuilder && this.screenType !== screenTypes.dataView\" class=\"radio-button filter-mat-option\" [matTooltip]=\"series\" [value]=\"series\"\n #matOption >\n {{series}}\n </mat-option>\n </ng-container>\n <!-- this option is for opening the dropdown even if series is empty -->\n <mat-option class=\"hidden\"></mat-option>\n <!-- Filter dropdown footer -->\n <lib-filter-footer\n [isFilterValue]=\"(seriesList && seriesList.length)\"\n (clearAllValue)=\"clearAllValue()\"\n (applyFilter)=\"applyFilter()\"\n (closeFilter)=\"multiSelectList.close()\"\n >\n </lib-filter-footer>\n </mat-select>\n \n </mat-form-field>\n <mat-icon class=\"down-arrow\" [svgIcon]=\"'axo_arrow'\" (click)=\"multiSelectList.open()\"></mat-icon>\n </div>\n", styles: [".custom-multi-select-overlay-panel .calender-filter-option{justify-content:space-between;display:flex;position:sticky;bottom:0;background:#fff}.custom-multi-select-overlay-panel .calender-filter{position:relative;top:13px;padding:2px 10px 1px;width:400px}.custom-multi-select-overlay-panel .apply-filters{color:#7963ed!important;font-size:11px!important;font-weight:700;vertical-align:middle}.custom-multi-select-overlay-panel .apply-clear-button{cursor:pointer}\n"] }]
|
|
179
|
+
}], function () { return [{ type: i1.CommonFilterService }]; }, null); })();
|
|
180
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVmZXJlbmNlLWxpc3QtZmlsdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2ZpbHRlcnMvcmVmZXJlbmNlLWxpc3QtZmlsdGVyL3JlZmVyZW5jZS1saXN0LWZpbHRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9maWx0ZXJzL3JlZmVyZW5jZS1saXN0LWZpbHRlci9yZWZlcmVuY2UtbGlzdC1maWx0ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFpQixTQUFTLEVBQXlCLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ25HLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzdELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDBDQUEwQyxDQUFDO0FBQy9FLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDRDQUE0QyxDQUFDO0FBQ25GLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUNuRixPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0seUNBQXlDLENBQUM7Ozs7Ozs7Ozs7Ozs7SUNTL0QsMENBRXdCO0lBQ3BCLFlBQ0o7SUFBQSxpQkFBYTs7O0lBSmtJLDRDQUEyQix1QkFBQTtJQUd0SyxlQUNKO0lBREksZ0RBQ0o7OztJQUVDLDBDQUNZO0lBQ1gsWUFDRjtJQUFBLGlCQUFhOzs7SUFINEksc0NBQXFCLG9CQUFBO0lBRTVLLGVBQ0Y7SUFERSwwQ0FDRjs7O0lBVkYsNkJBQWdEO0lBQzlDLDBHQUlhO0lBRVosMEdBR1k7SUFDZiwwQkFBZTs7O0lBVkEsZUFBdUY7SUFBdkYsb0lBQXVGO0lBTXRGLGVBQWlHO0lBQWpHLG9JQUFpRzs7QUREckgsTUFBTSxPQUFPLDRCQUE2QixTQUFRLHFCQUFxQjtJQVluRSxZQUFZLG9CQUF5QztRQUVqRCxLQUFLLENBQUMsb0JBQW9CLENBQUMsQ0FBQztJQUNoQyxDQUFDO0lBQ0Q7O09BRUc7SUFFSCxtRUFBbUU7SUFDbkUsV0FBVyxDQUFDLE9BQXNCO1FBQzlCLEtBQUssQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUVEOztPQUVHO0lBQ0gsUUFBUTtRQUNKLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUNqQixJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7UUFDdkIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxrQkFBa0IsR0FBRyxJQUFJLFVBQVUsQ0FBQyxFQUFFLElBQUksRUFBRSxJQUFJLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7UUFDakYsSUFBSSxDQUFDLGVBQWUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztRQUN0RCxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVEOztPQUVHO0lBQ0gsZUFBZTtRQUNYLEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBQ0Q7O09BRUc7SUFDSCxXQUFXO1FBQ1AsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLGFBQWEsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUU7UUFDN0QsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQztJQUNqRCxDQUFDO0lBQ0Q7Ozs7T0FJRztJQUNILGtCQUFrQjtRQUNkLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBc0IsQ0FBQyxDQUFDLENBQUMsSUFBSSxhQUFhLEVBQUUsQ0FBQztJQUNoSCxDQUFDO0lBRUQ7Ozs7T0FJRztJQUNILFVBQVU7UUFDTixJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksYUFBYSxFQUFFLENBQUM7UUFDM0MsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQztJQUNqRCxDQUFDO0lBQ0Q7Ozs7T0FJRztJQUNILGVBQWU7UUFDWCxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksYUFBYSxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsQ0FBQztJQUNoRSxDQUFDO0lBQ0Q7Ozs7T0FJRztJQUNILGlCQUFpQjtRQUNiLElBQUksQ0FBQyxlQUFlLENBQUMsS0FBSyxHQUFHLEVBQUUsQ0FBQztRQUNoQyxJQUFJLENBQUMsU0FBUyxHQUFHLENBQUMsQ0FBQztRQUNuQixJQUFJLENBQUMsVUFBVSxHQUFHLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUNEOzs7T0FHRztJQUNILGFBQWE7UUFDVCxJQUFJLENBQUMsZUFBZSxDQUFDLEtBQUssR0FBRyxFQUFFLENBQUM7UUFDaEMsSUFBSSxDQUFDLGtCQUFrQixFQUFFLENBQUM7UUFDMUIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2pDLENBQUM7SUFFRCxlQUFlO1FBQ1gsSUFBSSxDQUFDLHlCQUF5QixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2hFLENBQUM7O3dHQWxHUSw0QkFBNEI7K0VBQTVCLDRCQUE0QiwrRUFQMUI7WUFDUDtnQkFDSSxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixRQUFRLEVBQUUsRUFBRSxpQkFBaUIsRUFBRSxtQ0FBbUMsRUFBRTthQUN2RTtTQUNKOztRQ2pCTCw4QkFBMEI7UUFDeEIseUNBQWtDO1FBQ2hDLHdDQU9rQjtRQUpsQix5S0FBbUMsb0hBQ2hCLHdCQUFvQixJQURKO1FBTW5DLHlDQUEwRjtRQUFoRCwrSUFBcUIsNkJBQXlCLElBQUM7UUFBQyxpQkFBaUI7UUFFM0csK0ZBV2U7UUFFZixnQ0FBd0M7UUFFeEMsNENBS0c7UUFIRCxvSUFBaUIsbUJBQWUsSUFBQyxtSEFDbEIsaUJBQWEsSUFESyx5S0FFbEIsV0FBdUIsSUFGTDtRQUluQyxpQkFBb0I7UUFDdEIsaUJBQWE7UUFFYixpQkFBaUI7UUFDakIsbUNBQXNGO1FBQWpDLGlLQUFTLFVBQXNCLElBQUM7UUFBQyxpQkFBVztRQUNqRyxpQkFBTTs7UUFwQ0osZUFBNEI7UUFBNUIsOENBQTRCLGdDQUFBLHNDQUFBO1FBUVosZUFBeUI7UUFBekIsMkNBQXlCO1FBRVIsZUFBYTtRQUFiLHdDQUFhO1FBZ0I1QyxlQUFtRDtRQUFuRCx1RUFBbUQ7UUFTMUIsZUFBdUI7UUFBdkIscUNBQXVCOzt1RkRuQnpDLDRCQUE0QjtjQVp4QyxTQUFTOzJCQUNJLDJCQUEyQixpQkFHdEIsaUJBQWlCLENBQUMsSUFBSSxhQUMxQjtvQkFDUDt3QkFDSSxPQUFPLEVBQUUsaUJBQWlCO3dCQUMxQixRQUFRLEVBQUUsRUFBRSxpQkFBaUIsRUFBRSxtQ0FBbUMsRUFBRTtxQkFDdkU7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBZnRlclZpZXdJbml0LCBDb21wb25lbnQsIE9uSW5pdCwgU2ltcGxlQ2hhbmdlcywgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1BVF9TRUxFQ1RfQ09ORklHIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc2VsZWN0JztcbmltcG9ydCB7IENvbW1vbkZpbHRlclNlcnZpY2UgfSBmcm9tICcuLy4uL2NvbW1vbi1maWx0ZXIvY29tbW9uLWZpbHRlci5zZXJ2aWNlJztcbmltcG9ydCB7IENvbW1vbkZpbHRlckNvbXBvbmVudCB9IGZyb20gJy4vLi4vY29tbW9uLWZpbHRlci9jb21tb24tZmlsdGVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBeEV4cFRleHRMaXN0IH0gZnJvbSAnLi4vLi4vZW5saWdodGVuLWxpYi9heC1leHByZXNzaW9uL2F4LWV4cC10ZXh0LWxpc3QnO1xuaW1wb3J0IHsgQXhPcGVyYXRvciB9IGZyb20gJy4uLy4uL2VubGlnaHRlbi1saWIvZmlsdGVycy9heC1vcGVyYXRvcic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbGliLXJlZmVyZW5jZS1saXN0LWZpbHRlcicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3JlZmVyZW5jZS1saXN0LWZpbHRlci5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vcmVmZXJlbmNlLWxpc3QtZmlsdGVyLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogTUFUX1NFTEVDVF9DT05GSUcsXG4gICAgICAgICAgICB1c2VWYWx1ZTogeyBvdmVybGF5UGFuZWxDbGFzczogJ2N1c3RvbS1tdWx0aS1zZWxlY3Qtb3ZlcmxheS1wYW5lbCcgfSxcbiAgICAgICAgfSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBSZWZlcmVuY2VMaXN0RmlsdGVyQ29tcG9uZW50IGV4dGVuZHMgQ29tbW9uRmlsdGVyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBBZnRlclZpZXdJbml0IHtcbiAgICAvLzwtLS0tLS0tLS0tPCBJbnB1dHMgPi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG5cbiAgICAvLzwtLS0tLS0tLS0tLTxPdXRwdXRzID4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG5cbiAgICAvLzwtLS0tLS0tLS0tLS0tKEVudW1zICktLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG5cbiAgICAvLzwtLS0tLS0tLS0tLS0tKENvbXBvbmVudCBWYXJpYWJsZXMgKS0tLS0tLS0tLS0tLS0+XG4gICAgZXhwcmVzc2lvblZhbHVlOiBBeEV4cFRleHRMaXN0O1xuICAgIHN0cmluZ09wZXJhdG9yczogQXJyYXk8QXhPcGVyYXRvcj47XG5cblxuICAgIGNvbnN0cnVjdG9yKF9jb21tb25GaWx0ZXJTZXJ2aWNlOiBDb21tb25GaWx0ZXJTZXJ2aWNlXG4gICAgKSB7XG4gICAgICAgIHN1cGVyKF9jb21tb25GaWx0ZXJTZXJ2aWNlKTtcbiAgICB9XG4gICAgLyoqXG4gICAgICogbmdPbkNoYW5nZXMgdXNlIHRvIGNoYW5nZSB0aGUgY3VycmVudCBwYWdlIG9iamVjdFxuICAgICAqL1xuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC91c2UtbGlmZWN5Y2xlLWludGVyZmFjZVxuICAgIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICAgICAgc3VwZXIubmdPbkNoYW5nZXMoY2hhbmdlcyk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogT24gaW5pdCBsaWZlIGN5Y2xlIGhvb2tcbiAgICAgKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgc3VwZXIubmdPbkluaXQoKTtcbiAgICAgICAgdGhpcy5zZXREaXNwbGF5VmFsdWUoKTtcbiAgICAgICAgdGhpcy5leHByZXNzaW9uLmNvbXBhcmlzb25PcGVyYXRvciA9IG5ldyBBeE9wZXJhdG9yKHsgdGV4dDogJ0luJywgdmFsdWU6ICdJTicgfSk7XG4gICAgICAgIHRoaXMuc3RyaW5nT3BlcmF0b3JzID0gQXhPcGVyYXRvci5nZXRTdHJpbmdPcGVyYXRvcigpO1xuICAgICAgICB0aGlzLmdldFNlcmllc0xpc3QoKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBHZXQgY2FsbGVkIGFmdGVyIHZpZXcgcmVuZGVyXG4gICAgICovXG4gICAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgICAgICBzdXBlci5uZ0FmdGVyVmlld0luaXQoKTtcbiAgICB9XG4gICAgLyoqXG4gICAgICogVEhpcyB3aWxsIHJlc2V0IEZpbHRlciB2YWx1ZS5cbiAgICAgKi9cbiAgICByZXNldEZpbHRlcigpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5leHByZXNzaW9uVmFsdWUgPSBuZXcgQXhFeHBUZXh0TGlzdCh0aGlzLmRlZmF1bHRWYWx1ZSkgO1xuICAgICAgICB0aGlzLmV4cHJlc3Npb24udmFsdWUgPSB0aGlzLmV4cHJlc3Npb25WYWx1ZTtcbiAgICB9XG4gICAgLyoqXG4gICAgICogU2V0IEV4cHJlc3Npb24gdmFsdWVcbiAgICAgKlxuICAgICAqIEBvdmVycmlkZGVuXG4gICAgICovXG4gICAgc2V0RXhwcmVzc2lvblZhbHVlKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmV4cHJlc3Npb25WYWx1ZSA9IHRoaXMuZXhwcmVzc2lvbi52YWx1ZSA/IHRoaXMuZXhwcmVzc2lvbi52YWx1ZSBhcyBBeEV4cFRleHRMaXN0IDogbmV3IEF4RXhwVGV4dExpc3QoKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBUaGlzIGZ1bmN0aW9uIGNsZWFyIHRoZSBmaWx0ZXIgdmFsdWUuXG4gICAgICpcbiAgICAgKiBAb3ZlcnJpZGRlblxuICAgICAqL1xuICAgIGNsZWFyVmFsdWUoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZXhwcmVzc2lvblZhbHVlID0gbmV3IEF4RXhwVGV4dExpc3QoKTtcbiAgICAgICAgdGhpcy5leHByZXNzaW9uLnZhbHVlID0gdGhpcy5leHByZXNzaW9uVmFsdWU7XG4gICAgfVxuICAgIC8qKlxuICAgICAqIFNldCBEZWZhdWx0IFZhbHVlXG4gICAgICpcbiAgICAgKiBAb3ZlcnJpZGRlblxuICAgICAqL1xuICAgIHNldERlZmF1bHRWYWx1ZSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kZWZhdWx0VmFsdWUgPSBuZXcgQXhFeHBUZXh0TGlzdCh0aGlzLmV4cHJlc3Npb25WYWx1ZSk7XG4gICAgfVxuICAgIC8qKlxuICAgICAqIEFwcGx5IHBhcmVudCB2YWx1ZSBwYXJlbnQgdmFsdWUgY2hhbmdlXG4gICAgICpcbiAgICAgKlxuICAgICAqL1xuICAgIGFwcGx5UGFyZW50RmlsdGVyKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmV4cHJlc3Npb25WYWx1ZS52YWx1ZSA9IFtdO1xuICAgICAgICB0aGlzLnBhZ2VJbmRleCA9IDA7XG4gICAgICAgIHRoaXMuc2VyaWVzTGlzdCA9IFtdO1xuICAgICAgICB0aGlzLmdldFNlcmllc0xpc3QoKTtcbiAgICB9XG4gICAgLyoqXG4gICAgICogQ2xlYXIgVmFsdWVzXG4gICAgICpcbiAgICAgKi9cbiAgICBjbGVhckFsbFZhbHVlKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmV4cHJlc3Npb25WYWx1ZS52YWx1ZSA9IFtdO1xuICAgICAgICB0aGlzLmZpbHRlclZhbHVlQ2hhbmdlZCgpO1xuICAgICAgICB0aGlzLmFwcGx5RmlsdGVyRXZlbnQuZW1pdCgpO1xuICAgIH1cblxuICAgIHNldERpc3BsYXlWYWx1ZSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5hZGRFbGxpcHNlc1RvRGlzcGxheVZhbHVlKHRoaXMuZXhwcmVzc2lvbi5maWVsZC5sYWJlbCk7XG4gICAgfVxuXG59XG4iLCI8ZGl2IGNsYXNzPVwiZmllbGRzIGZsZXhcIiA+XG4gIDxtYXQtZm9ybS1maWVsZCBhcHBlYXJhbmNlPVwibm9uZVwiPlxuICAgIDxtYXQtc2VsZWN0IGNsYXNzPVwibXVsdGktc2VsZWN0LWRyb3Bkb3duXCJcbiAgICBbcGxhY2Vob2xkZXJdPVwiZGlzcGxheVZhbHVlXCJcbiAgICBbbWF0VG9vbHRpcF09XCJ0b29sVGlwVmFsdWVcIlxuICAgIFsobmdNb2RlbCldPVwiZXhwcmVzc2lvblZhbHVlLnZhbHVlXCJcbiAgICAoc2VsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclZhbHVlQ2hhbmdlZCgpXCJcbiAgICBwYW5lbENsYXNzPVwibXVsdGktc2VsZWN0LXBhbmVsXCJcbiAgICBtdWx0aXBsZVxuICAgICNtdWx0aVNlbGVjdExpc3QgPlxuICAgIDwhLS0gU2VhcmNoIGJhciBmb3IgZmlsdGVyIHZhbHVlICAgLS0+XG4gICAgPGF4by1zZWFyY2gtYmFyIFtzZWFyY2hUZXh0XT1cInNlYXJjaFRleHRcIiAoc2VhcmNoVGV4dENoYW5nZWQpPVwic2VhcmNoVGV4dENoYW5nZWQoJGV2ZW50KVwiPjwvYXhvLXNlYXJjaC1iYXI+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBzZXJpZXMgb2Ygc2VyaWVzTGlzdFwiPlxuICAgICAgPG1hdC1vcHRpb24gKm5nSWY9XCJzY3JlZW5UeXBlID09PSBzY3JlZW5UeXBlcy5kYXRhVmlld0J1aWxkZXIgfHwgc2NyZWVuVHlwZSA9PT0gc2NyZWVuVHlwZXMuZGF0YVZpZXdcIiAgY2xhc3M9XCJyYWRpby1idXR0b24gIGZpbHRlci1tYXQtb3B0aW9uXCIgW21hdFRvb2x0aXBdPVwic2VyaWVzLmxhYmVsXCJcbiAgICAgICAgICAjbWF0T3B0aW9uXG4gICAgICAgICAgW3ZhbHVlXT1cInNlcmllcy5pZFwiPlxuICAgICAgICAgIHt7c2VyaWVzLnRpdGxlfX1cbiAgICAgIDwvbWF0LW9wdGlvbj5cbiAgICAgICA8IS0tIEZvciBFbmxpZ2h0ZW4gcmVwb3J0aW5nIC0tPlxuICAgICAgIDxtYXQtb3B0aW9uICpuZ0lmPVwidGhpcy5zY3JlZW5UeXBlICE9PSBzY3JlZW5UeXBlcy5kYXRhVmlld0J1aWxkZXIgJiYgdGhpcy5zY3JlZW5UeXBlICE9PSBzY3JlZW5UeXBlcy5kYXRhVmlld1wiIGNsYXNzPVwicmFkaW8tYnV0dG9uICBmaWx0ZXItbWF0LW9wdGlvblwiIFttYXRUb29sdGlwXT1cInNlcmllc1wiIFt2YWx1ZV09XCJzZXJpZXNcIlxuICAgICAgICNtYXRPcHRpb24gPlxuICAgICAgICB7e3Nlcmllc319XG4gICAgICA8L21hdC1vcHRpb24+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPCEtLSB0aGlzIG9wdGlvbiBpcyBmb3Igb3BlbmluZyB0aGUgZHJvcGRvd24gZXZlbiBpZiBzZXJpZXMgaXMgZW1wdHkgLS0+XG4gICAgPG1hdC1vcHRpb24gY2xhc3M9XCJoaWRkZW5cIj48L21hdC1vcHRpb24+XG4gICAgPCEtLSBGaWx0ZXIgZHJvcGRvd24gZm9vdGVyIC0tPlxuICAgIDxsaWItZmlsdGVyLWZvb3RlclxuICAgICAgW2lzRmlsdGVyVmFsdWVdPVwiKHNlcmllc0xpc3QgJiYgc2VyaWVzTGlzdC5sZW5ndGgpXCJcbiAgICAgIChjbGVhckFsbFZhbHVlKT1cImNsZWFyQWxsVmFsdWUoKVwiXG4gICAgICAoYXBwbHlGaWx0ZXIpPVwiYXBwbHlGaWx0ZXIoKVwiXG4gICAgICAoY2xvc2VGaWx0ZXIpPVwibXVsdGlTZWxlY3RMaXN0LmNsb3NlKClcIlxuICAgICAgPlxuICAgIDwvbGliLWZpbHRlci1mb290ZXI+XG4gIDwvbWF0LXNlbGVjdD5cbiBcbiAgPC9tYXQtZm9ybS1maWVsZD5cbiAgPG1hdC1pY29uIGNsYXNzPVwiZG93bi1hcnJvd1wiIFtzdmdJY29uXT1cIidheG9fYXJyb3cnXCIgKGNsaWNrKT1cIm11bHRpU2VsZWN0TGlzdC5vcGVuKClcIj48L21hdC1pY29uPlxuICA8L2Rpdj5cbiJdfQ==
|