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,100 @@
|
|
|
1
|
+
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "@angular/material/list";
|
|
5
|
+
import * as i3 from "@angular/material/tooltip";
|
|
6
|
+
import * as i4 from "@angular/material/icon";
|
|
7
|
+
import * as i5 from "../../../axo-utils/search-pipe";
|
|
8
|
+
function AttributesSelectionLayoutComponent_mat_selection_list_1_ng_container_2_mat_list_option_1_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
10
|
+
i0.ɵɵelementStart(0, "mat-list-option", 5);
|
|
11
|
+
i0.ɵɵlistener("selectedChange", function AttributesSelectionLayoutComponent_mat_selection_list_1_ng_container_2_mat_list_option_1_Template_mat_list_option_selectedChange_0_listener($event) { i0.ɵɵrestoreView(_r7); const attribute_r3 = i0.ɵɵnextContext().$implicit; return attribute_r3.isSelected = $event; });
|
|
12
|
+
i0.ɵɵelementStart(1, "span", 6);
|
|
13
|
+
i0.ɵɵelement(2, "mat-icon", 7);
|
|
14
|
+
i0.ɵɵtext(3);
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
i0.ɵɵelementEnd();
|
|
17
|
+
} if (rf & 2) {
|
|
18
|
+
const attribute_r3 = i0.ɵɵnextContext().$implicit;
|
|
19
|
+
i0.ɵɵproperty("value", attribute_r3)("selected", attribute_r3.isSelected);
|
|
20
|
+
i0.ɵɵadvance(1);
|
|
21
|
+
i0.ɵɵproperty("matTooltip", attribute_r3.label);
|
|
22
|
+
i0.ɵɵadvance(1);
|
|
23
|
+
i0.ɵɵproperty("svgIcon", attribute_r3.enlightenType.matIcon);
|
|
24
|
+
i0.ɵɵadvance(1);
|
|
25
|
+
i0.ɵɵtextInterpolate1(" ", attribute_r3.label, "");
|
|
26
|
+
} }
|
|
27
|
+
function AttributesSelectionLayoutComponent_mat_selection_list_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
i0.ɵɵelementContainerStart(0);
|
|
29
|
+
i0.ɵɵtemplate(1, AttributesSelectionLayoutComponent_mat_selection_list_1_ng_container_2_mat_list_option_1_Template, 4, 5, "mat-list-option", 4);
|
|
30
|
+
i0.ɵɵelementContainerEnd();
|
|
31
|
+
} if (rf & 2) {
|
|
32
|
+
const attribute_r3 = ctx.$implicit;
|
|
33
|
+
i0.ɵɵadvance(1);
|
|
34
|
+
i0.ɵɵproperty("ngIf", !attribute_r3.isHidden);
|
|
35
|
+
} }
|
|
36
|
+
function AttributesSelectionLayoutComponent_mat_selection_list_1_Template(rf, ctx) { if (rf & 1) {
|
|
37
|
+
const _r10 = i0.ɵɵgetCurrentView();
|
|
38
|
+
i0.ɵɵelementStart(0, "mat-selection-list", 1, 2);
|
|
39
|
+
i0.ɵɵlistener("selectionChange", function AttributesSelectionLayoutComponent_mat_selection_list_1_Template_mat_selection_list_selectionChange_0_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(); return ctx_r9.attributeSelectionChange($event); });
|
|
40
|
+
i0.ɵɵtemplate(2, AttributesSelectionLayoutComponent_mat_selection_list_1_ng_container_2_Template, 2, 1, "ng-container", 3);
|
|
41
|
+
i0.ɵɵpipe(3, "search");
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
} if (rf & 2) {
|
|
44
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
45
|
+
i0.ɵɵadvance(2);
|
|
46
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind2(3, 1, ctx_r0.attributes, ctx_r0.searchedTerm));
|
|
47
|
+
} }
|
|
48
|
+
export class AttributesSelectionLayoutComponent {
|
|
49
|
+
// **------------< Component Variables >----------*>
|
|
50
|
+
/**
|
|
51
|
+
* Constructor
|
|
52
|
+
*/
|
|
53
|
+
constructor() {
|
|
54
|
+
this.searchedTerm = '';
|
|
55
|
+
// <----------< Output Emitter>-------------------->
|
|
56
|
+
this.attributeSelected = new EventEmitter();
|
|
57
|
+
this.attributeDeselected = new EventEmitter();
|
|
58
|
+
}
|
|
59
|
+
// On Init Life cycle hook
|
|
60
|
+
ngOnInit() {
|
|
61
|
+
}
|
|
62
|
+
/***
|
|
63
|
+
* attributeSelectionChange get called on checkbox selection change.
|
|
64
|
+
* @param event
|
|
65
|
+
*/
|
|
66
|
+
attributeSelectionChange(event) {
|
|
67
|
+
if (event.option.selected) {
|
|
68
|
+
this.attributeSelected.emit(event.option.value);
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
this.attributeDeselected.emit(event.option.value);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
AttributesSelectionLayoutComponent.ɵfac = function AttributesSelectionLayoutComponent_Factory(t) { return new (t || AttributesSelectionLayoutComponent)(); };
|
|
76
|
+
AttributesSelectionLayoutComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AttributesSelectionLayoutComponent, selectors: [["lib-attributes-selection-layout"]], inputs: { attributes: "attributes", searchedTerm: "searchedTerm", selectedAttribute: "selectedAttribute" }, outputs: { attributeSelected: "attributeSelected", attributeDeselected: "attributeDeselected" }, decls: 3, vars: 4, consts: [[3, "selectionChange", 4, "ngIf"], [3, "selectionChange"], ["filters", ""], [4, "ngFor", "ngForOf"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", "selectedChange", 4, "ngIf"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", "selectedChange"], [1, "list-field", 3, "matTooltip"], [1, "svg-icon", "mr-2", 3, "svgIcon"]], template: function AttributesSelectionLayoutComponent_Template(rf, ctx) { if (rf & 1) {
|
|
77
|
+
i0.ɵɵelementStart(0, "div");
|
|
78
|
+
i0.ɵɵtemplate(1, AttributesSelectionLayoutComponent_mat_selection_list_1_Template, 4, 4, "mat-selection-list", 0);
|
|
79
|
+
i0.ɵɵpipe(2, "search");
|
|
80
|
+
i0.ɵɵelementEnd();
|
|
81
|
+
} if (rf & 2) {
|
|
82
|
+
let tmp_0_0;
|
|
83
|
+
i0.ɵɵadvance(1);
|
|
84
|
+
i0.ɵɵproperty("ngIf", ((tmp_0_0 = i0.ɵɵpipeBind2(2, 1, ctx.attributes, ctx.searchedTerm)) == null ? null : tmp_0_0.length) > 0);
|
|
85
|
+
} }, directives: [i1.NgIf, i2.MatSelectionList, i1.NgForOf, i2.MatListOption, i3.MatTooltip, i4.MatIcon], pipes: [i5.SearchPipe], styles: [""] });
|
|
86
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AttributesSelectionLayoutComponent, [{
|
|
87
|
+
type: Component,
|
|
88
|
+
args: [{ selector: 'lib-attributes-selection-layout', template: "<div>\n <mat-selection-list #filters *ngIf=\"(attributes | search: searchedTerm)?.length > 0\"\n (selectionChange)=\"attributeSelectionChange($event)\">\n <ng-container *ngFor=\"let attribute of attributes| search: searchedTerm\">\n <mat-list-option *ngIf=\"!attribute.isHidden\" checkboxPosition=\"after\" [value]='attribute' [(selected)]=\"attribute.isSelected\" color=\"primary\">\n <span class=\"list-field\" [matTooltip]=\"attribute.label\" ><mat-icon class=\"svg-icon mr-2\" [svgIcon]=\"attribute.enlightenType.matIcon\"></mat-icon> {{attribute.label}}</span>\n </mat-list-option>\n </ng-container>\n </mat-selection-list>\n</div>\n", styles: [""] }]
|
|
89
|
+
}], function () { return []; }, { attributes: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], searchedTerm: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}], selectedAttribute: [{
|
|
94
|
+
type: Input
|
|
95
|
+
}], attributeSelected: [{
|
|
96
|
+
type: Output
|
|
97
|
+
}], attributeDeselected: [{
|
|
98
|
+
type: Output
|
|
99
|
+
}] }); })();
|
|
100
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXR0cmlidXRlcy1zZWxlY3Rpb24tbGF5b3V0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2VubGlnaHRlbi1saWIvZGF0YS1tb2RlbC10cmVlL2F0dHJpYnV0ZXMtc2VsZWN0aW9uLWxheW91dC9hdHRyaWJ1dGVzLXNlbGVjdGlvbi1sYXlvdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZW5saWdodGVuLWxpYi9kYXRhLW1vZGVsLXRyZWUvYXR0cmlidXRlcy1zZWxlY3Rpb24tbGF5b3V0L2F0dHJpYnV0ZXMtc2VsZWN0aW9uLWxheW91dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBb0MsTUFBTSxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7Ozs7O0lDSTdGLDBDQUFnSjtJQUFwRCxvVEFBbUM7SUFDM0gsK0JBQXlEO0lBQUEsOEJBQXVGO0lBQUMsWUFBbUI7SUFBQSxpQkFBTztJQUMvSyxpQkFBa0I7OztJQUZzRCxvQ0FBbUIscUNBQUE7SUFDOUQsZUFBOEI7SUFBOUIsK0NBQThCO0lBQWtDLGVBQTJDO0lBQTNDLDREQUEyQztJQUFhLGVBQW1CO0lBQW5CLGtEQUFtQjs7O0lBRjVLLDZCQUF5RTtJQUNyRSwrSUFFa0I7SUFDdEIsMEJBQWU7OztJQUhPLGVBQXlCO0lBQXpCLDZDQUF5Qjs7OztJQUhuRCxnREFDcUQ7SUFBckQscU9BQW1CLHVDQUFnQyxJQUFDO0lBQ2hELDBIQUllOztJQUNuQixpQkFBcUI7OztJQUxtQixlQUFtQztJQUFuQyxzRkFBbUM7O0FETS9FLE1BQU0sT0FBTyxrQ0FBa0M7SUFTM0Msb0RBQW9EO0lBRXBEOztPQUVHO0lBQ0g7UUFWUyxpQkFBWSxHQUFXLEVBQUUsQ0FBQztRQUVuQyxvREFBb0Q7UUFDMUMsc0JBQWlCLEdBQTRCLElBQUksWUFBWSxFQUFhLENBQUM7UUFDM0Usd0JBQW1CLEdBQTRCLElBQUksWUFBWSxFQUFhLENBQUM7SUFNdkUsQ0FBQztJQUVqQiwwQkFBMEI7SUFDMUIsUUFBUTtJQUNSLENBQUM7SUFFRDs7O09BR0c7SUFDSCx3QkFBd0IsQ0FBQyxLQUE2QjtRQUNsRCxJQUFHLEtBQUssQ0FBQyxNQUFNLENBQUMsUUFBUSxFQUFDO1lBQ3JCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNuRDthQUFJO1lBQ0QsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ3JEO0lBQ0wsQ0FBQzs7b0hBOUJRLGtDQUFrQztxRkFBbEMsa0NBQWtDO1FDVC9DLDJCQUFLO1FBQ0QsaUhBT3FCOztRQUN6QixpQkFBTTs7O1FBUjRCLGVBQXFEO1FBQXJELCtIQUFxRDs7dUZEUTFFLGtDQUFrQztjQUw5QyxTQUFTOzJCQUNFLGlDQUFpQztzQ0FPaEMsVUFBVTtrQkFBbEIsS0FBSztZQUNHLFlBQVk7a0JBQXBCLEtBQUs7WUFDRyxpQkFBaUI7a0JBQXpCLEtBQUs7WUFFSSxpQkFBaUI7a0JBQTFCLE1BQU07WUFDRyxtQkFBbUI7a0JBQTVCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIE9uQ2hhbmdlcywgU2ltcGxlQ2hhbmdlcywgT3V0cHV0LCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1hdFNlbGVjdGlvbkxpc3RDaGFuZ2UgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9saXN0JztcbmltcG9ydCB7IEF0dHJpYnV0ZSB9IGZyb20gJy4uLy4uL2RhdGEtbW9kZWwvYXR0cmlidXRlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWF0dHJpYnV0ZXMtc2VsZWN0aW9uLWxheW91dCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9hdHRyaWJ1dGVzLXNlbGVjdGlvbi1sYXlvdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hdHRyaWJ1dGVzLXNlbGVjdGlvbi1sYXlvdXQuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBBdHRyaWJ1dGVzU2VsZWN0aW9uTGF5b3V0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICAgIC8qKi0tLS0tLS0tLS0gSW5wdXRzIC0tLS0tLS0tLS0qL1xuICAgIEBJbnB1dCgpIGF0dHJpYnV0ZXM6IEFycmF5PEF0dHJpYnV0ZT47XG4gICAgQElucHV0KCkgc2VhcmNoZWRUZXJtOiBzdHJpbmcgPSAnJztcbiAgICBASW5wdXQoKSBzZWxlY3RlZEF0dHJpYnV0ZTogQXJyYXk8QXR0cmlidXRlPjtcbiAgICAvLyA8LS0tLS0tLS0tLTwgT3V0cHV0IEVtaXR0ZXI+LS0tLS0tLS0tLS0tLS0tLS0tLS0+XG4gICAgQE91dHB1dCgpIGF0dHJpYnV0ZVNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPiA9IG5ldyBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPigpO1xuICAgIEBPdXRwdXQoKSBhdHRyaWJ1dGVEZXNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPiA9IG5ldyBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPigpO1xuICAgIC8vICoqLS0tLS0tLS0tLS0tPCBDb21wb25lbnQgVmFyaWFibGVzID4tLS0tLS0tLS0tKj5cblxuICAgIC8qKlxuICAgICAqIENvbnN0cnVjdG9yXG4gICAgICovXG4gICAgY29uc3RydWN0b3IoKSB7IH1cblxuICAgIC8vIE9uIEluaXQgTGlmZSBjeWNsZSBob29rXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgfVxuXG4gICAgLyoqKlxuICAgICAqIGF0dHJpYnV0ZVNlbGVjdGlvbkNoYW5nZSBnZXQgY2FsbGVkIG9uIGNoZWNrYm94IHNlbGVjdGlvbiBjaGFuZ2UuXG4gICAgICogQHBhcmFtIGV2ZW50XG4gICAgICovXG4gICAgYXR0cmlidXRlU2VsZWN0aW9uQ2hhbmdlKGV2ZW50OiBNYXRTZWxlY3Rpb25MaXN0Q2hhbmdlKTogdm9pZCB7XG4gICAgICAgIGlmKGV2ZW50Lm9wdGlvbi5zZWxlY3RlZCl7XG4gICAgICAgICAgICB0aGlzLmF0dHJpYnV0ZVNlbGVjdGVkLmVtaXQoZXZlbnQub3B0aW9uLnZhbHVlKTtcbiAgICAgICAgfWVsc2V7XG4gICAgICAgICAgICB0aGlzLmF0dHJpYnV0ZURlc2VsZWN0ZWQuZW1pdChldmVudC5vcHRpb24udmFsdWUpO1xuICAgICAgICB9XG4gICAgfVxuXG5cbn1cbiIsIjxkaXY+XG4gICAgPG1hdC1zZWxlY3Rpb24tbGlzdCAjZmlsdGVycyAqbmdJZj1cIihhdHRyaWJ1dGVzIHwgc2VhcmNoOiBzZWFyY2hlZFRlcm0pPy5sZW5ndGggPiAwXCJcbiAgICAoc2VsZWN0aW9uQ2hhbmdlKT1cImF0dHJpYnV0ZVNlbGVjdGlvbkNoYW5nZSgkZXZlbnQpXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGF0dHJpYnV0ZSBvZiBhdHRyaWJ1dGVzfCBzZWFyY2g6IHNlYXJjaGVkVGVybVwiPlxuICAgICAgICAgICAgPG1hdC1saXN0LW9wdGlvbiAqbmdJZj1cIiFhdHRyaWJ1dGUuaXNIaWRkZW5cIiBjaGVja2JveFBvc2l0aW9uPVwiYWZ0ZXJcIiAgIFt2YWx1ZV09J2F0dHJpYnV0ZScgWyhzZWxlY3RlZCldPVwiYXR0cmlidXRlLmlzU2VsZWN0ZWRcIiBjb2xvcj1cInByaW1hcnlcIj5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImxpc3QtZmllbGRcIiBbbWF0VG9vbHRpcF09XCJhdHRyaWJ1dGUubGFiZWxcIiA+PG1hdC1pY29uIGNsYXNzPVwic3ZnLWljb24gbXItMlwiIFtzdmdJY29uXT1cImF0dHJpYnV0ZS5lbmxpZ2h0ZW5UeXBlLm1hdEljb25cIj48L21hdC1pY29uPiB7e2F0dHJpYnV0ZS5sYWJlbH19PC9zcGFuPlxuICAgICAgICAgICAgPC9tYXQtbGlzdC1vcHRpb24+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgIDwvbWF0LXNlbGVjdGlvbi1saXN0PlxuPC9kaXY+XG4iXX0=
|
package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "@angular/material/expansion";
|
|
5
|
+
import * as i3 from "@angular/material/list";
|
|
6
|
+
import * as i4 from "@angular/material/tooltip";
|
|
7
|
+
import * as i5 from "../../../axo-utils/search-pipe";
|
|
8
|
+
function CategoriesTreeComponent_div_0_label_3_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
i0.ɵɵelementStart(0, "label", 7);
|
|
10
|
+
i0.ɵɵtext(1, "Category");
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
} }
|
|
13
|
+
function CategoriesTreeComponent_div_0_ng_container_7_mat_list_option_1_Template(rf, ctx) { if (rf & 1) {
|
|
14
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
15
|
+
i0.ɵɵelementStart(0, "mat-list-option", 9);
|
|
16
|
+
i0.ɵɵlistener("selectedChange", function CategoriesTreeComponent_div_0_ng_container_7_mat_list_option_1_Template_mat_list_option_selectedChange_0_listener($event) { i0.ɵɵrestoreView(_r9); const category_r4 = i0.ɵɵnextContext().$implicit; return category_r4.isSelected = $event; });
|
|
17
|
+
i0.ɵɵelementStart(1, "span", 10);
|
|
18
|
+
i0.ɵɵtext(2);
|
|
19
|
+
i0.ɵɵelementEnd();
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
} if (rf & 2) {
|
|
22
|
+
const category_r4 = i0.ɵɵnextContext().$implicit;
|
|
23
|
+
i0.ɵɵproperty("value", category_r4)("selected", category_r4.isSelected);
|
|
24
|
+
i0.ɵɵadvance(1);
|
|
25
|
+
i0.ɵɵproperty("matTooltip", category_r4.name);
|
|
26
|
+
i0.ɵɵadvance(1);
|
|
27
|
+
i0.ɵɵtextInterpolate1(" ", category_r4.name, "");
|
|
28
|
+
} }
|
|
29
|
+
function CategoriesTreeComponent_div_0_ng_container_7_Template(rf, ctx) { if (rf & 1) {
|
|
30
|
+
i0.ɵɵelementContainerStart(0);
|
|
31
|
+
i0.ɵɵtemplate(1, CategoriesTreeComponent_div_0_ng_container_7_mat_list_option_1_Template, 3, 4, "mat-list-option", 8);
|
|
32
|
+
i0.ɵɵelementContainerEnd();
|
|
33
|
+
} if (rf & 2) {
|
|
34
|
+
const category_r4 = ctx.$implicit;
|
|
35
|
+
i0.ɵɵadvance(1);
|
|
36
|
+
i0.ɵɵproperty("ngIf", !category_r4.isHidden);
|
|
37
|
+
} }
|
|
38
|
+
const _c0 = function (a0) { return { "field-container": a0 }; };
|
|
39
|
+
function CategoriesTreeComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
41
|
+
i0.ɵɵelementStart(0, "div", 1);
|
|
42
|
+
i0.ɵɵelementStart(1, "mat-expansion-panel", 2);
|
|
43
|
+
i0.ɵɵelementStart(2, "mat-expansion-panel-header");
|
|
44
|
+
i0.ɵɵtemplate(3, CategoriesTreeComponent_div_0_label_3_Template, 2, 0, "label", 3);
|
|
45
|
+
i0.ɵɵpipe(4, "search");
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
i0.ɵɵelementStart(5, "mat-selection-list", 4, 5);
|
|
48
|
+
i0.ɵɵlistener("selectionChange", function CategoriesTreeComponent_div_0_Template_mat_selection_list_selectionChange_5_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r11 = i0.ɵɵnextContext(); return ctx_r11.categorySelectionChange($event); });
|
|
49
|
+
i0.ɵɵtemplate(7, CategoriesTreeComponent_div_0_ng_container_7_Template, 2, 1, "ng-container", 6);
|
|
50
|
+
i0.ɵɵpipe(8, "search");
|
|
51
|
+
i0.ɵɵelementEnd();
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
56
|
+
let tmp_1_0;
|
|
57
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0, ctx_r0.showSearchBox));
|
|
58
|
+
i0.ɵɵadvance(3);
|
|
59
|
+
i0.ɵɵproperty("ngIf", (tmp_1_0 = i0.ɵɵpipeBind2(4, 3, ctx_r0.categories, ctx_r0.searchedTerm)) == null ? null : tmp_1_0.length);
|
|
60
|
+
i0.ɵɵadvance(4);
|
|
61
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind2(8, 6, ctx_r0.categories, ctx_r0.searchedTerm));
|
|
62
|
+
} }
|
|
63
|
+
export class CategoriesTreeComponent {
|
|
64
|
+
/**
|
|
65
|
+
* Constructor
|
|
66
|
+
*/
|
|
67
|
+
constructor() {
|
|
68
|
+
// <----------(Inputs)---------------------------->
|
|
69
|
+
this.categories = [];
|
|
70
|
+
this.searchedTerm = ''; // Search Text
|
|
71
|
+
//<----------------(Outputs) --------------------->
|
|
72
|
+
this.categorySelected = new EventEmitter();
|
|
73
|
+
this.categoryDeselected = new EventEmitter();
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* On init life cycle hook.
|
|
77
|
+
*/
|
|
78
|
+
ngOnInit() {
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* categorySelectionChange get called on category selection box changed
|
|
82
|
+
* @param event
|
|
83
|
+
*/
|
|
84
|
+
categorySelectionChange(event) {
|
|
85
|
+
if (event.option.selected) {
|
|
86
|
+
this.categorySelected.emit(event.option.value);
|
|
87
|
+
}
|
|
88
|
+
else {
|
|
89
|
+
this.categoryDeselected.emit(event.option.value);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
CategoriesTreeComponent.ɵfac = function CategoriesTreeComponent_Factory(t) { return new (t || CategoriesTreeComponent)(); };
|
|
94
|
+
CategoriesTreeComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CategoriesTreeComponent, selectors: [["lib-categories-tree"]], inputs: { categories: "categories", searchedTerm: "searchedTerm" }, outputs: { categorySelected: "categorySelected", categoryDeselected: "categoryDeselected" }, decls: 2, vars: 4, consts: [[3, "ngClass", 4, "ngIf"], [3, "ngClass"], [1, "mb-6"], ["class", "axo-font font-normal", 4, "ngIf"], [3, "selectionChange"], ["category", ""], [4, "ngFor", "ngForOf"], [1, "axo-font", "font-normal"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", "selectedChange", 4, "ngIf"], ["checkboxPosition", "after", "color", "primary", 3, "value", "selected", "selectedChange"], [1, "list-field", 3, "matTooltip"]], template: function CategoriesTreeComponent_Template(rf, ctx) { if (rf & 1) {
|
|
95
|
+
i0.ɵɵtemplate(0, CategoriesTreeComponent_div_0_Template, 9, 11, "div", 0);
|
|
96
|
+
i0.ɵɵpipe(1, "search");
|
|
97
|
+
} if (rf & 2) {
|
|
98
|
+
let tmp_0_0;
|
|
99
|
+
i0.ɵɵproperty("ngIf", (tmp_0_0 = i0.ɵɵpipeBind2(1, 1, ctx.categories, ctx.searchedTerm)) == null ? null : tmp_0_0.length);
|
|
100
|
+
} }, directives: [i1.NgIf, i1.NgClass, i2.MatExpansionPanel, i2.MatExpansionPanelHeader, i3.MatSelectionList, i1.NgForOf, i3.MatListOption, i4.MatTooltip], pipes: [i5.SearchPipe], styles: [""] });
|
|
101
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CategoriesTreeComponent, [{
|
|
102
|
+
type: Component,
|
|
103
|
+
args: [{ selector: 'lib-categories-tree', template: "<div [ngClass]=\"{'field-container' : showSearchBox}\"*ngIf=\"(categories | search: searchedTerm)?.length\" >\n <mat-expansion-panel class=\"mb-6\">\n <mat-expansion-panel-header>\n <label class=\"axo-font font-normal\" *ngIf=\"(categories | search: searchedTerm)?.length\">Category</label>\n </mat-expansion-panel-header>\n <mat-selection-list #category\n (selectionChange)=\"categorySelectionChange($event)\">\n <ng-container *ngFor=\"let category of categories| search: searchedTerm;let i=index \">\n <mat-list-option *ngIf=\"!category.isHidden\" checkboxPosition=\"after\" [value]='category' [(selected)]=\"category.isSelected\" color=\"primary\">\n <span class=\"list-field\" [matTooltip]=\"category.name\"> {{category.name}}</span>\n </mat-list-option>\n </ng-container>\n </mat-selection-list>\n </mat-expansion-panel>\n</div>\n", styles: [""] }]
|
|
104
|
+
}], function () { return []; }, { categories: [{
|
|
105
|
+
type: Input
|
|
106
|
+
}], searchedTerm: [{
|
|
107
|
+
type: Input
|
|
108
|
+
}], categorySelected: [{
|
|
109
|
+
type: Output
|
|
110
|
+
}], categoryDeselected: [{
|
|
111
|
+
type: Output
|
|
112
|
+
}] }); })();
|
|
113
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0ZWdvcmllcy10cmVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2VubGlnaHRlbi1saWIvZGF0YS1tb2RlbC10cmVlL2NhdGVnb3JpZXMtdHJlZS9jYXRlZ29yaWVzLXRyZWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZW5saWdodGVuLWxpYi9kYXRhLW1vZGVsLXRyZWUvY2F0ZWdvcmllcy10cmVlL2NhdGVnb3JpZXMtdHJlZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7OztJQ0VuRSxnQ0FBd0Y7SUFBQSx3QkFBUTtJQUFBLGlCQUFROzs7O0lBS3BHLDBDQUE2STtJQUFuRCx3UkFBa0M7SUFDeEgsZ0NBQXVEO0lBQUMsWUFBaUI7SUFBQSxpQkFBTztJQUNwRixpQkFBa0I7OztJQUZxRCxtQ0FBa0Isb0NBQUE7SUFDM0QsZUFBNEI7SUFBNUIsNkNBQTRCO0lBQUUsZUFBaUI7SUFBakIsZ0RBQWlCOzs7SUFGakYsNkJBQXFGO0lBQ2pGLHFIQUVrQjtJQUN0QiwwQkFBZTs7O0lBSE8sZUFBd0I7SUFBeEIsNENBQXdCOzs7OztJQVIxRCw4QkFBeUc7SUFDckcsOENBQWtDO0lBQzlCLGtEQUE0QjtJQUN4QixrRkFBd0c7O0lBQzVHLGlCQUE2QjtJQUM3QixnREFDb0Q7SUFBcEQsNE1BQW1CLHVDQUErQixJQUFDO0lBQy9DLGdHQUllOztJQUNuQixpQkFBcUI7SUFDekIsaUJBQXNCO0lBQzFCLGlCQUFNOzs7O0lBZEQsMEVBQStDO0lBR0gsZUFBaUQ7SUFBakQsK0hBQWlEO0lBSW5ELGVBQW9DO0lBQXBDLHNGQUFvQzs7QURFbkYsTUFBTSxPQUFPLHVCQUF1QjtJQU9oQzs7T0FFRztJQUNIO1FBVEEsbURBQW1EO1FBQzFDLGVBQVUsR0FBMEIsRUFBRSxDQUFBO1FBQ3RDLGlCQUFZLEdBQVcsRUFBRSxDQUFBLENBQUUsY0FBYztRQUNsRCxtREFBbUQ7UUFDekMscUJBQWdCLEdBQWlDLElBQUksWUFBWSxFQUFrQixDQUFDO1FBQ3BGLHVCQUFrQixHQUFpQyxJQUFJLFlBQVksRUFBa0IsQ0FBQztJQUloRixDQUFDO0lBRWpCOztPQUVHO0lBQ0gsUUFBUTtJQUNSLENBQUM7SUFFRDs7O09BR0c7SUFDSCx1QkFBdUIsQ0FBQyxLQUE2QjtRQUNqRCxJQUFHLEtBQUssQ0FBQyxNQUFNLENBQUMsUUFBUSxFQUFDO1lBQ3JCLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNsRDthQUFJO1lBQ0QsSUFBSSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ3BEO0lBQ0wsQ0FBQzs7OEZBNUJRLHVCQUF1QjswRUFBdkIsdUJBQXVCO1FDVHBDLHlFQWNNOzs7O1FBZCtDLHlIQUFpRDs7dUZEU3pGLHVCQUF1QjtjQUxuQyxTQUFTOzJCQUNJLHFCQUFxQjtzQ0FNdEIsVUFBVTtrQkFBbEIsS0FBSztZQUNHLFlBQVk7a0JBQXBCLEtBQUs7WUFFSSxnQkFBZ0I7a0JBQXpCLE1BQU07WUFDRyxrQkFBa0I7a0JBQTNCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGaWx0ZXJDYXRlZ29yeSB9IGZyb20gJy4uLy4uL2ZpbHRlcnMvZmlsdGVyLWNhdGVnb3J5JztcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1hdFNlbGVjdGlvbkxpc3RDaGFuZ2UgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9saXN0JztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdsaWItY2F0ZWdvcmllcy10cmVlJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vY2F0ZWdvcmllcy10cmVlLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9jYXRlZ29yaWVzLXRyZWUuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDYXRlZ29yaWVzVHJlZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgLy8gPC0tLS0tLS0tLS0oSW5wdXRzKS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XG4gICAgQElucHV0KCkgY2F0ZWdvcmllczogQXJyYXk8RmlsdGVyQ2F0ZWdvcnk+ID0gW11cbiAgICBASW5wdXQoKSBzZWFyY2hlZFRlcm06IHN0cmluZyA9ICcnICAvLyBTZWFyY2ggVGV4dFxuICAgIC8vPC0tLS0tLS0tLS0tLS0tLS0oT3V0cHV0cykgLS0tLS0tLS0tLS0tLS0tLS0tLS0tPlxuICAgIEBPdXRwdXQoKSBjYXRlZ29yeVNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8RmlsdGVyQ2F0ZWdvcnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxGaWx0ZXJDYXRlZ29yeT4oKTtcbiAgICBAT3V0cHV0KCkgY2F0ZWdvcnlEZXNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8RmlsdGVyQ2F0ZWdvcnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxGaWx0ZXJDYXRlZ29yeT4oKTtcbiAgICAvKipcbiAgICAgKiBDb25zdHJ1Y3RvclxuICAgICAqL1xuICAgIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgICAvKipcbiAgICAgKiBPbiBpbml0IGxpZmUgY3ljbGUgaG9vay5cbiAgICAgKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBjYXRlZ29yeVNlbGVjdGlvbkNoYW5nZSBnZXQgY2FsbGVkIG9uIGNhdGVnb3J5IHNlbGVjdGlvbiBib3ggY2hhbmdlZFxuICAgICAqIEBwYXJhbSBldmVudFxuICAgICAqL1xuICAgIGNhdGVnb3J5U2VsZWN0aW9uQ2hhbmdlKGV2ZW50OiBNYXRTZWxlY3Rpb25MaXN0Q2hhbmdlKTogdm9pZHtcbiAgICAgICAgaWYoZXZlbnQub3B0aW9uLnNlbGVjdGVkKXtcbiAgICAgICAgICAgIHRoaXMuY2F0ZWdvcnlTZWxlY3RlZC5lbWl0KGV2ZW50Lm9wdGlvbi52YWx1ZSk7XG4gICAgICAgIH1lbHNle1xuICAgICAgICAgICAgdGhpcy5jYXRlZ29yeURlc2VsZWN0ZWQuZW1pdChldmVudC5vcHRpb24udmFsdWUpO1xuICAgICAgICB9XG4gICAgfVxuXG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cInsnZmllbGQtY29udGFpbmVyJyA6IHNob3dTZWFyY2hCb3h9XCIqbmdJZj1cIihjYXRlZ29yaWVzIHwgc2VhcmNoOiBzZWFyY2hlZFRlcm0pPy5sZW5ndGhcIiA+XG4gICAgPG1hdC1leHBhbnNpb24tcGFuZWwgY2xhc3M9XCJtYi02XCI+XG4gICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cbiAgICAgICAgICAgIDxsYWJlbCBjbGFzcz1cImF4by1mb250IGZvbnQtbm9ybWFsXCIgKm5nSWY9XCIoY2F0ZWdvcmllcyB8IHNlYXJjaDogc2VhcmNoZWRUZXJtKT8ubGVuZ3RoXCI+Q2F0ZWdvcnk8L2xhYmVsPlxuICAgICAgICA8L21hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyPlxuICAgICAgICA8bWF0LXNlbGVjdGlvbi1saXN0ICNjYXRlZ29yeVxuICAgICAgICAoc2VsZWN0aW9uQ2hhbmdlKT1cImNhdGVnb3J5U2VsZWN0aW9uQ2hhbmdlKCRldmVudClcIj5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGNhdGVnb3J5IG9mIGNhdGVnb3JpZXN8IHNlYXJjaDogc2VhcmNoZWRUZXJtO2xldCBpPWluZGV4IFwiPlxuICAgICAgICAgICAgICAgIDxtYXQtbGlzdC1vcHRpb24gKm5nSWY9XCIhY2F0ZWdvcnkuaXNIaWRkZW5cIiBjaGVja2JveFBvc2l0aW9uPVwiYWZ0ZXJcIiAgIFt2YWx1ZV09J2NhdGVnb3J5JyBbKHNlbGVjdGVkKV09XCJjYXRlZ29yeS5pc1NlbGVjdGVkXCIgY29sb3I9XCJwcmltYXJ5XCI+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibGlzdC1maWVsZFwiICBbbWF0VG9vbHRpcF09XCJjYXRlZ29yeS5uYW1lXCI+IHt7Y2F0ZWdvcnkubmFtZX19PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvbWF0LWxpc3Qtb3B0aW9uPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvbWF0LXNlbGVjdGlvbi1saXN0PlxuICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbD5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var DataModelTreeDisplayType;
|
|
2
|
+
(function (DataModelTreeDisplayType) {
|
|
3
|
+
DataModelTreeDisplayType[DataModelTreeDisplayType["dragDropList"] = 0] = "dragDropList";
|
|
4
|
+
DataModelTreeDisplayType[DataModelTreeDisplayType["selectionList"] = 1] = "selectionList";
|
|
5
|
+
})(DataModelTreeDisplayType || (DataModelTreeDisplayType = {}));
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1tb2RlbC10cmVlLWVudW1zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZW5saWdodGVuLWxpYi9kYXRhLW1vZGVsLXRyZWUvZGF0YS1tb2RlbC10cmVlLWVudW1zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLHdCQUdYO0FBSEQsV0FBWSx3QkFBd0I7SUFDaEMsdUZBQVksQ0FBQTtJQUNaLHlGQUFhLENBQUE7QUFDakIsQ0FBQyxFQUhXLHdCQUF3QixLQUF4Qix3QkFBd0IsUUFHbkMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBEYXRhTW9kZWxUcmVlRGlzcGxheVR5cGV7XG4gICAgZHJhZ0Ryb3BMaXN0LFxuICAgIHNlbGVjdGlvbkxpc3Rcbn1cblxuIl19
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
import { DataModelTreeDisplayType } from './data-model-tree-enums';
|
|
2
|
+
import { Component, Input, ViewChild, ViewEncapsulation, Output, EventEmitter } from '@angular/core';
|
|
3
|
+
import { MatAccordion } from '@angular/material/expansion';
|
|
4
|
+
import { DataModel } from '../data-model/data-model';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
|
+
import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "@angular/common";
|
|
9
|
+
import * as i2 from "@angular/forms";
|
|
10
|
+
import * as i3 from "@angular/material/expansion";
|
|
11
|
+
import * as i4 from "@angular/material/icon";
|
|
12
|
+
import * as i5 from "./categories-tree/categories-tree.component";
|
|
13
|
+
import * as i6 from "@angular/cdk/drag-drop";
|
|
14
|
+
import * as i7 from "./attributes-dragdrop-layout/attributes-dragdrop-layout.component";
|
|
15
|
+
import * as i8 from "./attributes-selection-layout/attributes-selection-layout.component";
|
|
16
|
+
import * as i9 from "../../axo-utils/field-list-search-pipe";
|
|
17
|
+
function DataModelTreeComponent_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
+
i0.ɵɵelementStart(0, "div", 12);
|
|
19
|
+
i0.ɵɵtext(1, "Fields");
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
} }
|
|
22
|
+
const _c0 = function (a0) { return { "search-icon": a0 }; };
|
|
23
|
+
function DataModelTreeComponent_button_5_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
25
|
+
i0.ɵɵelementStart(0, "button", 13);
|
|
26
|
+
i0.ɵɵlistener("click", function DataModelTreeComponent_button_5_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(); return ctx_r6.enableSearch(); });
|
|
27
|
+
i0.ɵɵelement(1, "mat-icon", 14);
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
} if (rf & 2) {
|
|
30
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
31
|
+
i0.ɵɵadvance(1);
|
|
32
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c0, ctx_r1.showSearchBox))("svgIcon", "heroicons_solid:search");
|
|
33
|
+
} }
|
|
34
|
+
function DataModelTreeComponent_mat_icon_7_Template(rf, ctx) { if (rf & 1) {
|
|
35
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
36
|
+
i0.ɵɵelementStart(0, "mat-icon", 15);
|
|
37
|
+
i0.ɵɵlistener("click", function DataModelTreeComponent_mat_icon_7_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r8 = i0.ɵɵnextContext(); return ctx_r8.clear(); });
|
|
38
|
+
i0.ɵɵtext(1, "clear");
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
} }
|
|
41
|
+
function DataModelTreeComponent_button_8_Template(rf, ctx) { if (rf & 1) {
|
|
42
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
|
43
|
+
i0.ɵɵelementStart(0, "button", 16);
|
|
44
|
+
i0.ɵɵlistener("click", function DataModelTreeComponent_button_8_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r10 = i0.ɵɵnextContext(); return ctx_r10.enableSearch(); });
|
|
45
|
+
i0.ɵɵelement(1, "mat-icon", 17);
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
} if (rf & 2) {
|
|
48
|
+
i0.ɵɵadvance(1);
|
|
49
|
+
i0.ɵɵproperty("svgIcon", "heroicons_solid:search");
|
|
50
|
+
} }
|
|
51
|
+
function DataModelTreeComponent_ng_container_11_Template(rf, ctx) { if (rf & 1) {
|
|
52
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
53
|
+
i0.ɵɵelementContainerStart(0);
|
|
54
|
+
i0.ɵɵelementStart(1, "lib-categories-tree", 18);
|
|
55
|
+
i0.ɵɵlistener("categorySelected", function DataModelTreeComponent_ng_container_11_Template_lib_categories_tree_categorySelected_1_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r12 = i0.ɵɵnextContext(); return ctx_r12.categorySelected.emit($event); })("categoryDeselected", function DataModelTreeComponent_ng_container_11_Template_lib_categories_tree_categoryDeselected_1_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r14 = i0.ɵɵnextContext(); return ctx_r14.categoryDeselected.emit($event); });
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
i0.ɵɵelementContainerEnd();
|
|
58
|
+
} if (rf & 2) {
|
|
59
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
60
|
+
i0.ɵɵadvance(1);
|
|
61
|
+
i0.ɵɵproperty("categories", ctx_r4.categories)("searchedTerm", ctx_r4.searchedTerm);
|
|
62
|
+
} }
|
|
63
|
+
function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
64
|
+
i0.ɵɵelementContainerStart(0);
|
|
65
|
+
i0.ɵɵelement(1, "lib-attributes-dragdrop-layout", 24);
|
|
66
|
+
i0.ɵɵelementContainerEnd();
|
|
67
|
+
} if (rf & 2) {
|
|
68
|
+
const entity_r15 = i0.ɵɵnextContext(4).$implicit;
|
|
69
|
+
const ctx_r19 = i0.ɵɵnextContext();
|
|
70
|
+
i0.ɵɵadvance(1);
|
|
71
|
+
i0.ɵɵproperty("attributes", entity_r15.columns)("searchedTerm", ctx_r19.searchedTerm);
|
|
72
|
+
} }
|
|
73
|
+
function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_ng_container_3_Template(rf, ctx) { if (rf & 1) {
|
|
74
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
|
75
|
+
i0.ɵɵelementContainerStart(0);
|
|
76
|
+
i0.ɵɵelementStart(1, "lib-attributes-selection-layout", 25);
|
|
77
|
+
i0.ɵɵlistener("attributeSelected", function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_ng_container_3_Template_lib_attributes_selection_layout_attributeSelected_1_listener($event) { i0.ɵɵrestoreView(_r23); const ctx_r22 = i0.ɵɵnextContext(5); return ctx_r22.attributeSelected.emit($event); })("attributeDeselected", function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_ng_container_3_Template_lib_attributes_selection_layout_attributeDeselected_1_listener($event) { i0.ɵɵrestoreView(_r23); const ctx_r24 = i0.ɵɵnextContext(5); return ctx_r24.attributeDeselected.emit($event); });
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
i0.ɵɵelementContainerEnd();
|
|
80
|
+
} if (rf & 2) {
|
|
81
|
+
const entity_r15 = i0.ɵɵnextContext(4).$implicit;
|
|
82
|
+
const ctx_r20 = i0.ɵɵnextContext();
|
|
83
|
+
i0.ɵɵadvance(1);
|
|
84
|
+
i0.ɵɵproperty("attributes", entity_r15.columns)("searchedTerm", ctx_r20.searchedTerm);
|
|
85
|
+
} }
|
|
86
|
+
function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
87
|
+
i0.ɵɵelementContainerStart(0);
|
|
88
|
+
i0.ɵɵelementContainerStart(1, 22);
|
|
89
|
+
i0.ɵɵtemplate(2, DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_ng_container_2_Template, 2, 2, "ng-container", 23);
|
|
90
|
+
i0.ɵɵtemplate(3, DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_ng_container_3_Template, 2, 2, "ng-container", 23);
|
|
91
|
+
i0.ɵɵelementContainerEnd();
|
|
92
|
+
i0.ɵɵelementContainerEnd();
|
|
93
|
+
} if (rf & 2) {
|
|
94
|
+
const ctx_r18 = i0.ɵɵnextContext(4);
|
|
95
|
+
i0.ɵɵadvance(1);
|
|
96
|
+
i0.ɵɵproperty("ngSwitch", ctx_r18.displayMode);
|
|
97
|
+
i0.ɵɵadvance(1);
|
|
98
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r18.dataModelTreeDisplayType.dragDropList);
|
|
99
|
+
i0.ɵɵadvance(1);
|
|
100
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r18.dataModelTreeDisplayType.selectionList);
|
|
101
|
+
} }
|
|
102
|
+
function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_Template(rf, ctx) { if (rf & 1) {
|
|
103
|
+
const _r28 = i0.ɵɵgetCurrentView();
|
|
104
|
+
i0.ɵɵelementStart(0, "mat-expansion-panel", 20);
|
|
105
|
+
i0.ɵɵlistener("closed", function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_Template_mat_expansion_panel_closed_0_listener() { i0.ɵɵrestoreView(_r28); const entity_r15 = i0.ɵɵnextContext(2).$implicit; return entity_r15.expanded = false; })("opened", function DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_Template_mat_expansion_panel_opened_0_listener() { i0.ɵɵrestoreView(_r28); const entity_r15 = i0.ɵɵnextContext(2).$implicit; return entity_r15.expanded = true; });
|
|
106
|
+
i0.ɵɵelementStart(1, "mat-expansion-panel-header");
|
|
107
|
+
i0.ɵɵelementStart(2, "label", 21);
|
|
108
|
+
i0.ɵɵtext(3);
|
|
109
|
+
i0.ɵɵelementEnd();
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
i0.ɵɵtemplate(4, DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_ng_container_4_Template, 4, 3, "ng-container", 10);
|
|
112
|
+
i0.ɵɵelementEnd();
|
|
113
|
+
} if (rf & 2) {
|
|
114
|
+
const entity_r15 = i0.ɵɵnextContext(2).$implicit;
|
|
115
|
+
const ctx_r17 = i0.ɵɵnextContext();
|
|
116
|
+
i0.ɵɵproperty("cdkDropListDisabled", ctx_r17.displayMode === ctx_r17.dataModelTreeDisplayType.dragDropList)("cdkDropListData", entity_r15.attributes)("cdkDropListConnectedTo", ctx_r17.arrtributeDropZoneList);
|
|
117
|
+
i0.ɵɵadvance(3);
|
|
118
|
+
i0.ɵɵtextInterpolate1(" ", entity_r15.formName, " ");
|
|
119
|
+
i0.ɵɵadvance(1);
|
|
120
|
+
i0.ɵɵproperty("ngIf", entity_r15.expanded);
|
|
121
|
+
} }
|
|
122
|
+
function DataModelTreeComponent_ng_container_12_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
123
|
+
i0.ɵɵelementContainerStart(0);
|
|
124
|
+
i0.ɵɵtemplate(1, DataModelTreeComponent_ng_container_12_ng_container_1_mat_expansion_panel_1_Template, 5, 5, "mat-expansion-panel", 19);
|
|
125
|
+
i0.ɵɵelementContainerEnd();
|
|
126
|
+
} if (rf & 2) {
|
|
127
|
+
const entity_r15 = i0.ɵɵnextContext().$implicit;
|
|
128
|
+
i0.ɵɵadvance(1);
|
|
129
|
+
i0.ɵɵproperty("ngIf", (entity_r15.columns == null ? null : entity_r15.columns.length) && !entity_r15.isManyToManyTable);
|
|
130
|
+
} }
|
|
131
|
+
function DataModelTreeComponent_ng_container_12_Template(rf, ctx) { if (rf & 1) {
|
|
132
|
+
i0.ɵɵelementContainerStart(0);
|
|
133
|
+
i0.ɵɵtemplate(1, DataModelTreeComponent_ng_container_12_ng_container_1_Template, 2, 1, "ng-container", 10);
|
|
134
|
+
i0.ɵɵelementContainerEnd();
|
|
135
|
+
} if (rf & 2) {
|
|
136
|
+
const entity_r15 = ctx.$implicit;
|
|
137
|
+
i0.ɵɵadvance(1);
|
|
138
|
+
i0.ɵɵproperty("ngIf", !entity_r15.isManyToManyTable && !entity_r15.hidden);
|
|
139
|
+
} }
|
|
140
|
+
const _c1 = function (a0) { return { "pb-2": a0 }; };
|
|
141
|
+
const _c2 = function (a0) { return { "search-field-border": a0 }; };
|
|
142
|
+
export class DataModelTreeComponent {
|
|
143
|
+
/**
|
|
144
|
+
* Constructor
|
|
145
|
+
*/
|
|
146
|
+
constructor() {
|
|
147
|
+
this.displayMode = DataModelTreeDisplayType.dragDropList;
|
|
148
|
+
//---------------<Outputs>------------------------
|
|
149
|
+
this.attributeSelected = new EventEmitter();
|
|
150
|
+
this.attributeDeselected = new EventEmitter();
|
|
151
|
+
this.categorySelected = new EventEmitter();
|
|
152
|
+
this.categoryDeselected = new EventEmitter();
|
|
153
|
+
// ----------------<Component Variables>----------
|
|
154
|
+
this.showSearchBox = false;
|
|
155
|
+
this.searchInputText = '';
|
|
156
|
+
this.searchedTerm = '';
|
|
157
|
+
this.dataModelTreeDisplayType = DataModelTreeDisplayType;
|
|
158
|
+
this.searchSubscriber = new Subject();
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* OnChange
|
|
162
|
+
*
|
|
163
|
+
* @param changes
|
|
164
|
+
*/
|
|
165
|
+
ngOnChanges(changes) {
|
|
166
|
+
this.dataModelProcess = new DataModel(this.dataModel);
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* On Init Life cycle hook.
|
|
170
|
+
*/
|
|
171
|
+
ngOnInit() {
|
|
172
|
+
this.subscribers();
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* Subscribers Should be implemented here
|
|
176
|
+
*/
|
|
177
|
+
subscribers() {
|
|
178
|
+
this.searchSubscriber
|
|
179
|
+
.pipe(debounceTime(700))
|
|
180
|
+
.pipe(distinctUntilChanged())
|
|
181
|
+
.subscribe((text) => {
|
|
182
|
+
this.dataModel.entities = (new DataModel(this.dataModelProcess)).entities;
|
|
183
|
+
this.searchedTerm = text;
|
|
184
|
+
this.applyFilter();
|
|
185
|
+
});
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* OnDestroy life cycle hook.
|
|
189
|
+
*/
|
|
190
|
+
ngOnDestroy() {
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* enableSearch() - enables the search input for the user
|
|
194
|
+
*/
|
|
195
|
+
enableSearch() {
|
|
196
|
+
this.showSearchBox = !this.showSearchBox;
|
|
197
|
+
document.getElementById('data-model-tree-field-search').focus();
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Show search bar
|
|
201
|
+
*/
|
|
202
|
+
search() {
|
|
203
|
+
this.searchSubscriber.next(this.searchInputText);
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* Apply Search On Fields
|
|
207
|
+
*
|
|
208
|
+
* @param filterText
|
|
209
|
+
*/
|
|
210
|
+
applyFilter() {
|
|
211
|
+
setTimeout(() => {
|
|
212
|
+
if (this.searchedTerm === '') {
|
|
213
|
+
this.accordion.closeAll();
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
this.accordion.openAll();
|
|
217
|
+
}
|
|
218
|
+
});
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Clear and Hide search Bar
|
|
222
|
+
*/
|
|
223
|
+
clear() {
|
|
224
|
+
this.searchSubscriber.next("");
|
|
225
|
+
this.showSearchBox = !this.showSearchBox;
|
|
226
|
+
this.searchInputText = "";
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
DataModelTreeComponent.ɵfac = function DataModelTreeComponent_Factory(t) { return new (t || DataModelTreeComponent)(); };
|
|
230
|
+
DataModelTreeComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DataModelTreeComponent, selectors: [["lib-data-model-tree"]], viewQuery: function DataModelTreeComponent_Query(rf, ctx) { if (rf & 1) {
|
|
231
|
+
i0.ɵɵviewQuery(MatAccordion, 5);
|
|
232
|
+
} if (rf & 2) {
|
|
233
|
+
let _t;
|
|
234
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.accordion = _t.first);
|
|
235
|
+
} }, inputs: { dataModel: "dataModel", categories: "categories", displayMode: "displayMode", attributeDropZoneList: "attributeDropZoneList" }, outputs: { attributeSelected: "attributeSelected", attributeDeselected: "attributeDeselected", categorySelected: "categorySelected", categoryDeselected: "categoryDeselected" }, features: [i0.ɵɵNgOnChangesFeature], decls: 14, vars: 18, consts: [[1, "add-filter-title", "axo-font"], [1, "flex", "items-center", "sticky", "justify-end", "top-0", "pt-4", "gap-3", "bg-white", "px-6", "z-10", 3, "ngClass"], ["class", "axo-font text-f fields-title", 4, "ngIf"], [1, "search-field", 3, "ngClass"], [3, "click", 4, "ngIf"], ["id", "data-model-tree-field-search", "autocomplete", "off", "placeholder", "Search...", "matInput", "", 1, "search-bar", "chart-title", "h-8", 3, "ngModel", "input", "ngModelChange"], ["class", "clear_icon", 3, "click", 4, "ngIf"], ["class", "flex items-center pr-1 icon-btn", 3, "click", 4, "ngIf"], [1, "px-6", "pt-2", "pb-8", "fields-max-vh", "customscroll"], ["multi", "", 1, "left-menu-mat-tree"], [4, "ngIf"], [4, "ngFor", "ngForOf"], [1, "axo-font", "text-f", "fields-title"], [3, "click"], [1, "search-icon", "text-base", "flex", "justify-center", "aligned", "items-center", 3, "ngClass", "svgIcon"], [1, "clear_icon", 3, "click"], [1, "flex", "items-center", "pr-1", "icon-btn", 3, "click"], [1, "search-icon", 3, "svgIcon"], [3, "categories", "searchedTerm", "categorySelected", "categoryDeselected"], ["cdkDropList", "", "cdkDropListSortingDisabled", "", 3, "cdkDropListDisabled", "cdkDropListData", "cdkDropListConnectedTo", "closed", "opened", 4, "ngIf"], ["cdkDropList", "", "cdkDropListSortingDisabled", "", 3, "cdkDropListDisabled", "cdkDropListData", "cdkDropListConnectedTo", "closed", "opened"], [1, "axo-font", "font-normal"], [3, "ngSwitch"], [4, "ngSwitchCase"], [3, "attributes", "searchedTerm"], [3, "attributes", "searchedTerm", "attributeSelected", "attributeDeselected"]], template: function DataModelTreeComponent_Template(rf, ctx) { if (rf & 1) {
|
|
236
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
237
|
+
i0.ɵɵtext(1, "Add Filters");
|
|
238
|
+
i0.ɵɵelementEnd();
|
|
239
|
+
i0.ɵɵelementStart(2, "div", 1);
|
|
240
|
+
i0.ɵɵtemplate(3, DataModelTreeComponent_div_3_Template, 2, 0, "div", 2);
|
|
241
|
+
i0.ɵɵelementStart(4, "div", 3);
|
|
242
|
+
i0.ɵɵtemplate(5, DataModelTreeComponent_button_5_Template, 2, 4, "button", 4);
|
|
243
|
+
i0.ɵɵelementStart(6, "input", 5);
|
|
244
|
+
i0.ɵɵlistener("input", function DataModelTreeComponent_Template_input_input_6_listener() { return ctx.search(); })("ngModelChange", function DataModelTreeComponent_Template_input_ngModelChange_6_listener($event) { return ctx.searchInputText = $event; });
|
|
245
|
+
i0.ɵɵelementEnd();
|
|
246
|
+
i0.ɵɵtemplate(7, DataModelTreeComponent_mat_icon_7_Template, 2, 0, "mat-icon", 6);
|
|
247
|
+
i0.ɵɵtemplate(8, DataModelTreeComponent_button_8_Template, 2, 1, "button", 7);
|
|
248
|
+
i0.ɵɵelementEnd();
|
|
249
|
+
i0.ɵɵelementEnd();
|
|
250
|
+
i0.ɵɵelementStart(9, "div", 8);
|
|
251
|
+
i0.ɵɵelementStart(10, "mat-accordion", 9);
|
|
252
|
+
i0.ɵɵtemplate(11, DataModelTreeComponent_ng_container_11_Template, 2, 2, "ng-container", 10);
|
|
253
|
+
i0.ɵɵtemplate(12, DataModelTreeComponent_ng_container_12_Template, 2, 1, "ng-container", 11);
|
|
254
|
+
i0.ɵɵpipe(13, "fieldListSearch");
|
|
255
|
+
i0.ɵɵelementEnd();
|
|
256
|
+
i0.ɵɵelementEnd();
|
|
257
|
+
} if (rf & 2) {
|
|
258
|
+
i0.ɵɵadvance(2);
|
|
259
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(14, _c1, ctx.showSearchBox));
|
|
260
|
+
i0.ɵɵadvance(1);
|
|
261
|
+
i0.ɵɵproperty("ngIf", !ctx.showSearchBox);
|
|
262
|
+
i0.ɵɵadvance(1);
|
|
263
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(16, _c2, ctx.showSearchBox));
|
|
264
|
+
i0.ɵɵadvance(1);
|
|
265
|
+
i0.ɵɵproperty("ngIf", ctx.showSearchBox);
|
|
266
|
+
i0.ɵɵadvance(1);
|
|
267
|
+
i0.ɵɵstyleProp("width", !ctx.showSearchBox ? "0" : "100%");
|
|
268
|
+
i0.ɵɵproperty("ngModel", ctx.searchInputText);
|
|
269
|
+
i0.ɵɵadvance(1);
|
|
270
|
+
i0.ɵɵproperty("ngIf", ctx.showSearchBox);
|
|
271
|
+
i0.ɵɵadvance(1);
|
|
272
|
+
i0.ɵɵproperty("ngIf", !ctx.showSearchBox);
|
|
273
|
+
i0.ɵɵadvance(3);
|
|
274
|
+
i0.ɵɵproperty("ngIf", ctx.categories.length);
|
|
275
|
+
i0.ɵɵadvance(1);
|
|
276
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind2(13, 11, ctx.dataModel.entities, ctx.searchedTerm));
|
|
277
|
+
} }, directives: [i1.NgClass, i1.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgModel, i3.MatAccordion, i1.NgForOf, i4.MatIcon, i5.CategoriesTreeComponent, i3.MatExpansionPanel, i6.CdkDropList, i3.MatExpansionPanelHeader, i1.NgSwitch, i1.NgSwitchCase, i7.AttributesDragdropLayoutComponent, i8.AttributesSelectionLayoutComponent], pipes: [i9.FieldListSearchPipe], styles: ["lib-data-model-tree{height:100%;display:flex;flex-direction:column}lib-data-model-tree .ax-mat-tree-draggable-invisible{display:none}lib-data-model-tree .ax-mat-tree-draggable ul,lib-data-model-tree .ax-mat-tree-draggable li{margin-top:0;margin-bottom:0;list-style-type:none}lib-data-model-tree .ax-mat-tree-draggable .mat-nested-tree-node div[role=group]{padding-left:20px}lib-data-model-tree .ax-mat-tree-draggable div[role=group]>.mat-tree-node{padding-left:20px}lib-data-model-tree .ax-mat-tree-draggable div[role=group]>.mat-tree-node .dragBackG{left:40px!important}lib-data-model-tree .cdk-drop-list-dragging .cdk-drag{transition:transform .25s cubic-bezier(0,0,.2,1)}lib-data-model-tree .cdk-drag-animating{transition:transform .3s cubic-bezier(0,0,.2,1)}lib-data-model-tree .field-placeholder{display:inline;position:absolute}lib-data-model-tree .dragBackG{position:absolute;left:80px}lib-data-model-tree .ax-cdk-draggable{z-index:100;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}lib-data-model-tree .sg-icon{height:12px;width:12px}lib-data-model-tree .fields-max-vh{overflow:auto}lib-data-model-tree .text-f{font-size:17px;line-height:24px;letter-spacing:.6px}lib-data-model-tree .text-e{font-size:14px;line-height:20px;letter-spacing:.51px}lib-data-model-tree .text-att{font-size:12px;line-height:18px;letter-spacing:.25px}lib-data-model-tree ::placeholder{font-size:12px}lib-data-model-tree .clear_icon{cursor:pointer;color:#000!important;background:transparent!important;font-size:18px;width:18px;min-width:18px;opacity:.6}lib-data-model-tree .clear_icon:hover{opacity:.9}lib-data-model-tree .search-bar{height:2.6rem;margin-top:0}lib-data-model-tree .fields-title{font-weight:500;position:sticky;top:48px;background-color:#fff;z-index:9}lib-data-model-tree .add-filter-title{font-size:17px;font-weight:500;padding:1.5rem 1.3rem 0 1.5rem}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel{box-shadow:none!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel:hover{box-shadow:none!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel .mat-expansion-panel-header{padding:0!important;height:auto!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel .mat-expansion-panel-header:hover{background-color:#fcfdff!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel .mat-expansion-panel-body{padding:0 8px}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel.mat-expanded,lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel:hover{box-shadow:none!important}lib-data-model-tree .search-field{display:flex;align-items:center;width:100%;justify-content:end}lib-data-model-tree .search-field .search-icon{min-height:18px;min-width:18px;height:18px;width:18px}.entity-tree-container{cursor:grab}@media only screen and (max-width: 1024px){.fields-list-container{min-width:250px}}\n"], encapsulation: 2 });
|
|
278
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DataModelTreeComponent, [{
|
|
279
|
+
type: Component,
|
|
280
|
+
args: [{ selector: 'lib-data-model-tree', encapsulation: ViewEncapsulation.None, template: "<div class=\"add-filter-title axo-font\">Add Filters</div>\n<div class=\"flex items-center sticky justify-end top-0 pt-4 gap-3 bg-white px-6 z-10\" [ngClass]=\"{'pb-2' : showSearchBox}\">\n <div class=\"axo-font text-f fields-title\" *ngIf=\"!showSearchBox\">Fields</div>\n\t <div class=\"search-field\" [ngClass]=\"{'search-field-border' : showSearchBox}\">\n <button (click)=\"enableSearch()\" *ngIf=\"showSearchBox\"> <mat-icon [ngClass]=\"{'search-icon' : showSearchBox}\" class=\"search-icon text-base flex justify-center aligned items-center\" [svgIcon]=\"'heroicons_solid:search'\"></mat-icon></button>\n <input id=\"data-model-tree-field-search\" (input)=\"search()\" autocomplete=\"off\" placeholder=\"Search...\" [(ngModel)]=\"searchInputText\" matInput class=\"search-bar chart-title h-8\" [style.width]=\"!showSearchBox ? '0' : '100%'\" />\n <mat-icon (click)=\"clear()\" *ngIf=\"showSearchBox\" class=\"clear_icon\">clear</mat-icon>\n <button (click)=\"enableSearch()\" *ngIf=\"!showSearchBox\" class=\"flex items-center pr-1 icon-btn\"> <mat-icon class=\"search-icon\" [svgIcon]=\"'heroicons_solid:search'\"></mat-icon></button>\n\t</div>\n</div>\n\n<div class=\"px-6 pt-2 pb-8 fields-max-vh customscroll\">\n <!-- Iterate each entity and render tree for each of them -->\n <mat-accordion class=\"left-menu-mat-tree\" multi>\n <!-- Filter Catagories -->\n <ng-container *ngIf=\"categories.length\">\n <lib-categories-tree [categories]=\"categories\" [searchedTerm]=\"searchedTerm\" (categorySelected)=\"categorySelected.emit($event)\" (categoryDeselected)=\"categoryDeselected.emit($event)\"></lib-categories-tree>\n </ng-container>\n <!-- Basic Filters -->\n <ng-container *ngFor=\"let entity of dataModel.entities | fieldListSearch: searchedTerm\">\n <ng-container *ngIf=\"!entity.isManyToManyTable && !entity.hidden\">\n <!-- Mat expansion panel -->\n <mat-expansion-panel (closed)=\"entity.expanded = false\" (opened)=\"entity.expanded = true\" [cdkDropListDisabled] = \"displayMode === dataModelTreeDisplayType.dragDropList\" cdkDropList [cdkDropListData]=\"entity.attributes\" cdkDropListSortingDisabled [cdkDropListConnectedTo]=\"arrtributeDropZoneList\" *ngIf=\"entity.columns?.length && !entity.isManyToManyTable\">\n <!-- Mat expansion panel header -->\n <mat-expansion-panel-header>\n <label class=\"axo-font font-normal\">\n {{ entity.formName }}\n </label>\n </mat-expansion-panel-header>\n <!-- Mat Selection List -->\n <ng-container *ngIf=\"entity.expanded\">\n <ng-container [ngSwitch]=\"displayMode\">\n <ng-container *ngSwitchCase=\"dataModelTreeDisplayType.dragDropList\">\n <!-- Attributes rendering -->\n <!-- DragDrop and Without selection box lay out -->\n <lib-attributes-dragdrop-layout [attributes]=\"entity.columns\" [searchedTerm]=\"searchedTerm\"></lib-attributes-dragdrop-layout>\n </ng-container>\n <ng-container *ngSwitchCase=\"dataModelTreeDisplayType.selectionList\">\n <lib-attributes-selection-layout [attributes]=\"entity.columns\" [searchedTerm]=\"searchedTerm\" (attributeSelected)=\"attributeSelected.emit($event)\" (attributeDeselected)=\"attributeDeselected.emit($event)\"> </lib-attributes-selection-layout>\n </ng-container>\n\n </ng-container>\n </ng-container>\n </mat-expansion-panel>\n </ng-container>\n <!-- Mat expansion panel -->\n </ng-container>\n </mat-accordion>\n <!-- Expandable entities tree ends here -->\n</div>\n", styles: ["lib-data-model-tree{height:100%;display:flex;flex-direction:column}lib-data-model-tree .ax-mat-tree-draggable-invisible{display:none}lib-data-model-tree .ax-mat-tree-draggable ul,lib-data-model-tree .ax-mat-tree-draggable li{margin-top:0;margin-bottom:0;list-style-type:none}lib-data-model-tree .ax-mat-tree-draggable .mat-nested-tree-node div[role=group]{padding-left:20px}lib-data-model-tree .ax-mat-tree-draggable div[role=group]>.mat-tree-node{padding-left:20px}lib-data-model-tree .ax-mat-tree-draggable div[role=group]>.mat-tree-node .dragBackG{left:40px!important}lib-data-model-tree .cdk-drop-list-dragging .cdk-drag{transition:transform .25s cubic-bezier(0,0,.2,1)}lib-data-model-tree .cdk-drag-animating{transition:transform .3s cubic-bezier(0,0,.2,1)}lib-data-model-tree .field-placeholder{display:inline;position:absolute}lib-data-model-tree .dragBackG{position:absolute;left:80px}lib-data-model-tree .ax-cdk-draggable{z-index:100;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}lib-data-model-tree .sg-icon{height:12px;width:12px}lib-data-model-tree .fields-max-vh{overflow:auto}lib-data-model-tree .text-f{font-size:17px;line-height:24px;letter-spacing:.6px}lib-data-model-tree .text-e{font-size:14px;line-height:20px;letter-spacing:.51px}lib-data-model-tree .text-att{font-size:12px;line-height:18px;letter-spacing:.25px}lib-data-model-tree ::placeholder{font-size:12px}lib-data-model-tree .clear_icon{cursor:pointer;color:#000!important;background:transparent!important;font-size:18px;width:18px;min-width:18px;opacity:.6}lib-data-model-tree .clear_icon:hover{opacity:.9}lib-data-model-tree .search-bar{height:2.6rem;margin-top:0}lib-data-model-tree .fields-title{font-weight:500;position:sticky;top:48px;background-color:#fff;z-index:9}lib-data-model-tree .add-filter-title{font-size:17px;font-weight:500;padding:1.5rem 1.3rem 0 1.5rem}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel{box-shadow:none!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel:hover{box-shadow:none!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel .mat-expansion-panel-header{padding:0!important;height:auto!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel .mat-expansion-panel-header:hover{background-color:#fcfdff!important}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel .mat-expansion-panel-body{padding:0 8px}lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel.mat-expanded,lib-data-model-tree .left-menu-mat-tree .mat-expansion-panel:hover{box-shadow:none!important}lib-data-model-tree .search-field{display:flex;align-items:center;width:100%;justify-content:end}lib-data-model-tree .search-field .search-icon{min-height:18px;min-width:18px;height:18px;width:18px}.entity-tree-container{cursor:grab}@media only screen and (max-width: 1024px){.fields-list-container{min-width:250px}}\n"] }]
|
|
281
|
+
}], function () { return []; }, { accordion: [{
|
|
282
|
+
type: ViewChild,
|
|
283
|
+
args: [MatAccordion]
|
|
284
|
+
}], dataModel: [{
|
|
285
|
+
type: Input
|
|
286
|
+
}], categories: [{
|
|
287
|
+
type: Input
|
|
288
|
+
}], displayMode: [{
|
|
289
|
+
type: Input
|
|
290
|
+
}], attributeDropZoneList: [{
|
|
291
|
+
type: Input
|
|
292
|
+
}], attributeSelected: [{
|
|
293
|
+
type: Output
|
|
294
|
+
}], attributeDeselected: [{
|
|
295
|
+
type: Output
|
|
296
|
+
}], categorySelected: [{
|
|
297
|
+
type: Output
|
|
298
|
+
}], categoryDeselected: [{
|
|
299
|
+
type: Output
|
|
300
|
+
}] }); })();
|
|
301
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1tb2RlbC10cmVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2VubGlnaHRlbi1saWIvZGF0YS1tb2RlbC10cmVlL2RhdGEtbW9kZWwtdHJlZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9lbmxpZ2h0ZW4tbGliL2RhdGEtbW9kZWwtdHJlZS9kYXRhLW1vZGVsLXRyZWUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDbkUsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQStDLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2xKLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUUzRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFckQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMvQixPQUFPLEVBQUUsWUFBWSxFQUFFLG9CQUFvQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7Ozs7Ozs7OztJQ0xoRSwrQkFBaUU7SUFBQSxzQkFBTTtJQUFBLGlCQUFNOzs7OztJQUV6RSxrQ0FBd0Q7SUFBL0Msc0tBQVMscUJBQWMsSUFBQztJQUF3QiwrQkFBNks7SUFBQSxpQkFBUzs7O0lBQTVLLGVBQTJDO0lBQTNDLDBFQUEyQyxxQ0FBQTs7OztJQUU5RyxvQ0FBcUU7SUFBM0QsMEtBQVMsY0FBTyxJQUFDO0lBQTBDLHFCQUFLO0lBQUEsaUJBQVc7Ozs7SUFDckYsa0NBQWlHO0lBQXpGLHdLQUFTLHNCQUFjLElBQUM7SUFBa0UsK0JBQThFO0lBQUEsaUJBQVM7O0lBQXpELGVBQW9DO0lBQXBDLGtEQUFvQzs7OztJQVFwSyw2QkFBd0M7SUFDcEMsK0NBQXVMO0lBQTFHLHdOQUFvQixxQ0FBNkIsSUFBQywrTUFBdUIsdUNBQStCLElBQXREO0lBQXdELGlCQUFzQjtJQUNqTiwwQkFBZTs7O0lBRFUsZUFBeUI7SUFBekIsOENBQXlCLHFDQUFBOzs7SUFnQjlCLDZCQUFvRTtJQUdoRSxxREFBNkg7SUFDakksMEJBQWU7Ozs7SUFEcUIsZUFBNkI7SUFBN0IsK0NBQTZCLHNDQUFBOzs7O0lBRWpFLDZCQUFxRTtJQUNqRSwyREFBNE07SUFBOUcsMFNBQXFCLHNDQUE4QixJQUFDLGlTQUF3Qix3Q0FBZ0MsSUFBeEQ7SUFBMkQsaUJBQWtDO0lBQ25QLDBCQUFlOzs7O0lBRHNCLGVBQTZCO0lBQTdCLCtDQUE2QixzQ0FBQTs7O0lBUjFFLDZCQUFzQztJQUNsQyxpQ0FBdUM7SUFDbkMsOEpBSWU7SUFDZiw4SkFFZTtJQUVuQiwwQkFBZTtJQUNuQiwwQkFBZTs7O0lBWEcsZUFBd0I7SUFBeEIsOENBQXdCO0lBQ25CLGVBQW1EO0lBQW5ELDRFQUFtRDtJQUtuRCxlQUFvRDtJQUFwRCw2RUFBb0Q7Ozs7SUFmL0UsK0NBQXFXO0lBQWhWLHVRQUE0QixLQUFLLElBQUMsMFBBQTZCLElBQUksSUFBakM7SUFFbkQsa0RBQTRCO0lBQ3hCLGlDQUFvQztJQUNoQyxZQUNKO0lBQUEsaUJBQVE7SUFDWixpQkFBNkI7SUFFN0IsK0lBWWU7SUFDbkIsaUJBQXNCOzs7O0lBckJvRSwyR0FBK0UsMENBQUEsMERBQUE7SUFJN0osZUFDSjtJQURJLG9EQUNKO0lBR1csZUFBcUI7SUFBckIsMENBQXFCOzs7SUFWNUMsNkJBQWtFO0lBRTlELHVJQXFCc0I7SUFDMUIsMEJBQWU7OztJQXRCK1IsZUFBeUQ7SUFBekQsdUhBQXlEOzs7SUFIM1csNkJBQXlGO0lBQ3JGLDBHQXdCZTtJQUVuQiwwQkFBZTs7O0lBMUJJLGVBQWlEO0lBQWpELDBFQUFpRDs7OztBREw1RSxNQUFNLE9BQU8sc0JBQXNCO0lBcUIvQjs7T0FFRztJQUNIO1FBbEJTLGdCQUFXLEdBQTZCLHdCQUF3QixDQUFDLFlBQVksQ0FBQztRQUV2RixrREFBa0Q7UUFDeEMsc0JBQWlCLEdBQTRCLElBQUksWUFBWSxFQUFhLENBQUM7UUFDM0Usd0JBQW1CLEdBQTRCLElBQUksWUFBWSxFQUFhLENBQUM7UUFDN0UscUJBQWdCLEdBQWlDLElBQUksWUFBWSxFQUFrQixDQUFDO1FBQ3BGLHVCQUFrQixHQUFpQyxJQUFJLFlBQVksRUFBa0IsQ0FBQztRQUNoRyxrREFBa0Q7UUFDbEQsa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFDL0Isb0JBQWUsR0FBRyxFQUFFLENBQUM7UUFDckIsaUJBQVksR0FBVyxFQUFFLENBQUM7UUFDMUIsNkJBQXdCLEdBQUcsd0JBQXdCLENBQUM7UUFRaEQsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksT0FBTyxFQUFFLENBQUM7SUFDMUMsQ0FBQztJQUVEOzs7O09BSUc7SUFDSCxXQUFXLENBQUMsT0FBc0I7UUFDOUIsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUMxRCxDQUFDO0lBRUQ7O09BRUc7SUFDSCxRQUFRO1FBQ0osSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQ3ZCLENBQUM7SUFFRDs7T0FFRztJQUNILFdBQVc7UUFDUCxJQUFJLENBQUMsZ0JBQWdCO2FBQ2hCLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLENBQUM7YUFDdkIsSUFBSSxDQUFDLG9CQUFvQixFQUFFLENBQUM7YUFDNUIsU0FBUyxDQUFDLENBQUMsSUFBWSxFQUFFLEVBQUU7WUFDeEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLEdBQUcsQ0FBQyxJQUFJLFNBQVMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQztZQUMxRSxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQztZQUN6QixJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7UUFDdkIsQ0FBQyxDQUFDLENBQUE7SUFDVixDQUFDO0lBR0Q7O09BRUc7SUFDSCxXQUFXO0lBRVgsQ0FBQztJQUVEOztPQUVHO0lBQ0gsWUFBWTtRQUNSLElBQUksQ0FBQyxhQUFhLEdBQUcsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDO1FBQ3pDLFFBQVEsQ0FBQyxjQUFjLENBQUMsOEJBQThCLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNwRSxDQUFDO0lBRUQ7O09BRUc7SUFDRixNQUFNO1FBQ0gsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7SUFDckQsQ0FBQztJQUVEOzs7O09BSUc7SUFDRixXQUFXO1FBQ1IsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNaLElBQUksSUFBSSxDQUFDLFlBQVksS0FBSyxFQUFFLEVBQUU7Z0JBQzFCLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxFQUFFLENBQUM7YUFDN0I7aUJBQU07Z0JBQ0gsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLEVBQUUsQ0FBQzthQUU1QjtRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUdEOztPQUVHO0lBQ0YsS0FBSztRQUNGLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDL0IsSUFBSSxDQUFDLGFBQWEsR0FBRyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUM7UUFDekMsSUFBSSxDQUFDLGVBQWUsR0FBRyxFQUFFLENBQUM7SUFDOUIsQ0FBQzs7NEZBekdRLHNCQUFzQjt5RUFBdEIsc0JBQXNCO3VCQUVwQixZQUFZOzs7OztRQ2pCM0IsOEJBQXVDO1FBQUEsMkJBQVc7UUFBQSxpQkFBTTtRQUN4RCw4QkFBMkg7UUFDdkgsdUVBQTZFO1FBQy9FLDhCQUE4RTtRQUN4RSw2RUFBK087UUFDL08sZ0NBQW1PO1FBQTFMLGtHQUFTLFlBQVEsSUFBQywySUFBQTtRQUEzRCxpQkFBbU87UUFDbk8saUZBQXFGO1FBQ3JGLDZFQUF5TDtRQUNoTSxpQkFBTTtRQUNQLGlCQUFNO1FBRU4sOEJBQXVEO1FBRW5ELHlDQUFnRDtRQUU1Qyw0RkFFZTtRQUVmLDRGQTJCZTs7UUFDbkIsaUJBQWdCO1FBRXBCLGlCQUFNOztRQWhEZ0YsZUFBb0M7UUFBcEMsd0VBQW9DO1FBQzNFLGVBQW9CO1FBQXBCLHlDQUFvQjtRQUN2QyxlQUFtRDtRQUFuRCx3RUFBbUQ7UUFDcEMsZUFBbUI7UUFBbkIsd0NBQW1CO1FBQzZILGVBQTZDO1FBQTdDLDBEQUE2QztRQUF4SCw2Q0FBNkI7UUFDeEcsZUFBbUI7UUFBbkIsd0NBQW1CO1FBQ2IsZUFBb0I7UUFBcEIseUNBQW9CO1FBUXhDLGVBQXVCO1FBQXZCLDRDQUF1QjtRQUlKLGVBQXFEO1FBQXJELDBGQUFxRDs7dUZESmxGLHNCQUFzQjtjQU5sQyxTQUFTOzJCQUNJLHFCQUFxQixpQkFHaEIsaUJBQWlCLENBQUMsSUFBSTtzQ0FJWixTQUFTO2tCQUFqQyxTQUFTO21CQUFDLFlBQVk7WUFFZCxTQUFTO2tCQUFqQixLQUFLO1lBQ0csVUFBVTtrQkFBbEIsS0FBSztZQUNHLFdBQVc7a0JBQW5CLEtBQUs7WUFDRyxxQkFBcUI7a0JBQTdCLEtBQUs7WUFFSSxpQkFBaUI7a0JBQTFCLE1BQU07WUFDRyxtQkFBbUI7a0JBQTVCLE1BQU07WUFDRyxnQkFBZ0I7a0JBQXpCLE1BQU07WUFDRyxrQkFBa0I7a0JBQTNCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEYXRhTW9kZWxUcmVlRGlzcGxheVR5cGUgfSBmcm9tICcuL2RhdGEtbW9kZWwtdHJlZS1lbnVtcyc7XG5pbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIE9uQ2hhbmdlcywgU2ltcGxlQ2hhbmdlcywgT25EZXN0cm95LCBWaWV3Q2hpbGQsIFZpZXdFbmNhcHN1bGF0aW9uLCBPdXRwdXQsIEV2ZW50RW1pdHRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0QWNjb3JkaW9uIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZXhwYW5zaW9uJztcbmltcG9ydCB7IEF0dHJpYnV0ZSB9IGZyb20gJy4uL2RhdGEtbW9kZWwvYXR0cmlidXRlJztcbmltcG9ydCB7IERhdGFNb2RlbCB9IGZyb20gJy4uL2RhdGEtbW9kZWwvZGF0YS1tb2RlbCc7XG5pbXBvcnQgeyBGaWx0ZXJDYXRlZ29yeSB9IGZyb20gJy4uL2ZpbHRlcnMvZmlsdGVyLWNhdGVnb3J5JztcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGRlYm91bmNlVGltZSwgZGlzdGluY3RVbnRpbENoYW5nZWQgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbGliLWRhdGEtbW9kZWwtdHJlZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2RhdGEtbW9kZWwtdHJlZS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vZGF0YS1tb2RlbC10cmVlLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBEYXRhTW9kZWxUcmVlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LE9uQ2hhbmdlcyxPbkRlc3Ryb3kge1xuICAgIC8vLS0tLS0tLS0tLS0tLS0tPFZpZXcgQ2hpZD4tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgICBAVmlld0NoaWxkKE1hdEFjY29yZGlvbikgYWNjb3JkaW9uOiBNYXRBY2NvcmRpb247XG4gICAgLy8tLS0tLS0tLS0tIDxJbnB1dHM+IC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgICBASW5wdXQoKSBkYXRhTW9kZWw6IERhdGFNb2RlbDtcbiAgICBASW5wdXQoKSBjYXRlZ29yaWVzOiBBcnJheTxGaWx0ZXJDYXRlZ29yeT47XG4gICAgQElucHV0KCkgZGlzcGxheU1vZGU6IERhdGFNb2RlbFRyZWVEaXNwbGF5VHlwZSA9IERhdGFNb2RlbFRyZWVEaXNwbGF5VHlwZS5kcmFnRHJvcExpc3Q7XG4gICAgQElucHV0KCkgYXR0cmlidXRlRHJvcFpvbmVMaXN0OiBBcnJheTxzdHJpbmc+O1xuICAgIC8vLS0tLS0tLS0tLS0tLS0tPE91dHB1dHM+LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gICAgQE91dHB1dCgpIGF0dHJpYnV0ZVNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPiA9IG5ldyBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPigpO1xuICAgIEBPdXRwdXQoKSBhdHRyaWJ1dGVEZXNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPiA9IG5ldyBFdmVudEVtaXR0ZXI8QXR0cmlidXRlPigpO1xuICAgIEBPdXRwdXQoKSBjYXRlZ29yeVNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8RmlsdGVyQ2F0ZWdvcnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxGaWx0ZXJDYXRlZ29yeT4oKTtcbiAgICBAT3V0cHV0KCkgY2F0ZWdvcnlEZXNlbGVjdGVkOiBFdmVudEVtaXR0ZXI8RmlsdGVyQ2F0ZWdvcnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxGaWx0ZXJDYXRlZ29yeT4oKTtcbiAgICAvLyAtLS0tLS0tLS0tLS0tLS0tPENvbXBvbmVudCBWYXJpYWJsZXM+LS0tLS0tLS0tLVxuICAgIHNob3dTZWFyY2hCb3g6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBzZWFyY2hJbnB1dFRleHQgPSAnJztcbiAgICBzZWFyY2hlZFRlcm06IHN0cmluZyA9ICcnO1xuICAgIGRhdGFNb2RlbFRyZWVEaXNwbGF5VHlwZSA9IERhdGFNb2RlbFRyZWVEaXNwbGF5VHlwZTtcbiAgICBzZWFyY2hTdWJzY3JpYmVyOiBTdWJqZWN0PHN0cmluZz47XG4gICAgZGF0YU1vZGVsUHJvY2VzczogRGF0YU1vZGVsO1xuXG4gICAgLyoqXG4gICAgICogQ29uc3RydWN0b3JcbiAgICAgKi9cbiAgICBjb25zdHJ1Y3RvcigpIHsgXG4gICAgICAgIHRoaXMuc2VhcmNoU3Vic2NyaWJlciA9IG5ldyBTdWJqZWN0KCk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogT25DaGFuZ2VcbiAgICAgKlxuICAgICAqIEBwYXJhbSBjaGFuZ2VzXG4gICAgICovXG4gICAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgICAgICB0aGlzLmRhdGFNb2RlbFByb2Nlc3MgPSBuZXcgRGF0YU1vZGVsKHRoaXMuZGF0YU1vZGVsKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBPbiBJbml0IExpZmUgY3ljbGUgaG9vay5cbiAgICAgKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zdWJzY3JpYmVycygpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIFN1YnNjcmliZXJzIFNob3VsZCBiZSBpbXBsZW1lbnRlZCBoZXJlXG4gICAgICovXG4gICAgc3Vic2NyaWJlcnMoKTogdm9pZHtcbiAgICAgICAgdGhpcy5zZWFyY2hTdWJzY3JpYmVyXG4gICAgICAgICAgICAucGlwZShkZWJvdW5jZVRpbWUoNzAwKSlcbiAgICAgICAgICAgIC5waXBlKGRpc3RpbmN0VW50aWxDaGFuZ2VkKCkpXG4gICAgICAgICAgICAuc3Vic2NyaWJlKCh0ZXh0OiBzdHJpbmcpID0+IHtcbiAgICAgICAgICAgICAgICB0aGlzLmRhdGFNb2RlbC5lbnRpdGllcyA9IChuZXcgRGF0YU1vZGVsKHRoaXMuZGF0YU1vZGVsUHJvY2VzcykpLmVudGl0aWVzO1xuICAgICAgICAgICAgICAgIHRoaXMuc2VhcmNoZWRUZXJtID0gdGV4dDtcbiAgICAgICAgICAgICAgICB0aGlzLmFwcGx5RmlsdGVyKCk7XG4gICAgICAgICAgICB9KVxuICAgIH1cblxuXG4gICAgLyoqXG4gICAgICogT25EZXN0cm95IGxpZmUgY3ljbGUgaG9vay5cbiAgICAgKi9cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcblxuICAgIH1cblxuICAgIC8qKlxuICAgICAqIGVuYWJsZVNlYXJjaCgpIC0gZW5hYmxlcyB0aGUgc2VhcmNoIGlucHV0IGZvciB0aGUgdXNlclxuICAgICAqL1xuICAgIGVuYWJsZVNlYXJjaCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zaG93U2VhcmNoQm94ID0gIXRoaXMuc2hvd1NlYXJjaEJveDtcbiAgICAgICAgZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoJ2RhdGEtbW9kZWwtdHJlZS1maWVsZC1zZWFyY2gnKS5mb2N1cygpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIFNob3cgc2VhcmNoIGJhclxuICAgICAqL1xuICAgICBzZWFyY2goKTogdm9pZCB7XG4gICAgICAgIHRoaXMuc2VhcmNoU3Vic2NyaWJlci5uZXh0KHRoaXMuc2VhcmNoSW5wdXRUZXh0KTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBBcHBseSBTZWFyY2ggT24gRmllbGRzXG4gICAgICpcbiAgICAgKiBAcGFyYW0gZmlsdGVyVGV4dFxuICAgICAqL1xuICAgICBhcHBseUZpbHRlcigpOiB2b2lkIHtcbiAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICBpZiAodGhpcy5zZWFyY2hlZFRlcm0gPT09ICcnKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5hY2NvcmRpb24uY2xvc2VBbGwoKTtcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgdGhpcy5hY2NvcmRpb24ub3BlbkFsbCgpO1xuICAgIFxuICAgICAgICAgICAgfVxuICAgICAgICB9KTtcbiAgICB9XG5cblxuICAgIC8qKlxuICAgICAqIENsZWFyIGFuZCBIaWRlIHNlYXJjaCBCYXJcbiAgICAgKi9cbiAgICAgY2xlYXIoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuc2VhcmNoU3Vic2NyaWJlci5uZXh0KFwiXCIpO1xuICAgICAgICB0aGlzLnNob3dTZWFyY2hCb3ggPSAhdGhpcy5zaG93U2VhcmNoQm94O1xuICAgICAgICB0aGlzLnNlYXJjaElucHV0VGV4dCA9IFwiXCI7XG4gICAgfVxuXG5cbn1cbiIsIjxkaXYgY2xhc3M9XCJhZGQtZmlsdGVyLXRpdGxlIGF4by1mb250XCI+QWRkIEZpbHRlcnM8L2Rpdj5cbjxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBzdGlja3kganVzdGlmeS1lbmQgdG9wLTAgcHQtNCBnYXAtMyBiZy13aGl0ZSBweC02IHotMTBcIiBbbmdDbGFzc109XCJ7J3BiLTInIDogc2hvd1NlYXJjaEJveH1cIj5cbiAgICA8ZGl2IGNsYXNzPVwiYXhvLWZvbnQgdGV4dC1mIGZpZWxkcy10aXRsZVwiICpuZ0lmPVwiIXNob3dTZWFyY2hCb3hcIj5GaWVsZHM8L2Rpdj5cblx0IDxkaXYgY2xhc3M9XCJzZWFyY2gtZmllbGRcIiBbbmdDbGFzc109XCJ7J3NlYXJjaC1maWVsZC1ib3JkZXInIDogc2hvd1NlYXJjaEJveH1cIj5cbiAgICAgICAgPGJ1dHRvbiAgKGNsaWNrKT1cImVuYWJsZVNlYXJjaCgpXCIgKm5nSWY9XCJzaG93U2VhcmNoQm94XCI+IDxtYXQtaWNvbiBbbmdDbGFzc109XCJ7J3NlYXJjaC1pY29uJyA6IHNob3dTZWFyY2hCb3h9XCIgY2xhc3M9XCJzZWFyY2gtaWNvbiB0ZXh0LWJhc2UgZmxleCBqdXN0aWZ5LWNlbnRlciBhbGlnbmVkIGl0ZW1zLWNlbnRlclwiIFtzdmdJY29uXT1cIidoZXJvaWNvbnNfc29saWQ6c2VhcmNoJ1wiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgICAgIDxpbnB1dCBpZD1cImRhdGEtbW9kZWwtdHJlZS1maWVsZC1zZWFyY2hcIiAoaW5wdXQpPVwic2VhcmNoKClcIiBhdXRvY29tcGxldGU9XCJvZmZcIiAgcGxhY2Vob2xkZXI9XCJTZWFyY2guLi5cIiBbKG5nTW9kZWwpXT1cInNlYXJjaElucHV0VGV4dFwiIG1hdElucHV0IGNsYXNzPVwic2VhcmNoLWJhciBjaGFydC10aXRsZSBoLThcIiAgW3N0eWxlLndpZHRoXT1cIiFzaG93U2VhcmNoQm94ID8gJzAnIDogJzEwMCUnXCIgLz5cbiAgICAgICAgPG1hdC1pY29uIChjbGljayk9XCJjbGVhcigpXCIgKm5nSWY9XCJzaG93U2VhcmNoQm94XCIgY2xhc3M9XCJjbGVhcl9pY29uXCI+Y2xlYXI8L21hdC1pY29uPlxuICAgICAgICA8YnV0dG9uIChjbGljayk9XCJlbmFibGVTZWFyY2goKVwiICAqbmdJZj1cIiFzaG93U2VhcmNoQm94XCIgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBwci0xIGljb24tYnRuXCI+IDxtYXQtaWNvbiBjbGFzcz1cInNlYXJjaC1pY29uXCIgW3N2Z0ljb25dPVwiJ2hlcm9pY29uc19zb2xpZDpzZWFyY2gnXCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cblx0PC9kaXY+XG48L2Rpdj5cblxuPGRpdiBjbGFzcz1cInB4LTYgcHQtMiBwYi04IGZpZWxkcy1tYXgtdmggY3VzdG9tc2Nyb2xsXCI+XG4gICAgPCEtLSBJdGVyYXRlIGVhY2ggZW50aXR5IGFuZCByZW5kZXIgdHJlZSBmb3IgZWFjaCBvZiB0aGVtIC0tPlxuICAgIDxtYXQtYWNjb3JkaW9uIGNsYXNzPVwibGVmdC1tZW51LW1hdC10cmVlXCIgbXVsdGk+XG4gICAgICAgIDwhLS0gRmlsdGVyIENhdGFnb3JpZXMgLS0+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJjYXRlZ29yaWVzLmxlbmd0aFwiPlxuICAgICAgICAgICAgPGxpYi1jYXRlZ29yaWVzLXRyZWUgW2NhdGVnb3JpZXNdPVwiY2F0ZWdvcmllc1wiIFtzZWFyY2hlZFRlcm1dPVwic2VhcmNoZWRUZXJtXCIgKGNhdGVnb3J5U2VsZWN0ZWQpPVwiY2F0ZWdvcnlTZWxlY3RlZC5lbWl0KCRldmVudClcIiAoY2F0ZWdvcnlEZXNlbGVjdGVkKT1cImNhdGVnb3J5RGVzZWxlY3RlZC5lbWl0KCRldmVudClcIj48L2xpYi1jYXRlZ29yaWVzLXRyZWU+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8IS0tIEJhc2ljIEZpbHRlcnMgLS0+XG4gICAgICAgIDxuZy1jb250YWluZXIgICpuZ0Zvcj1cImxldCBlbnRpdHkgb2YgZGF0YU1vZGVsLmVudGl0aWVzIHwgZmllbGRMaXN0U2VhcmNoOiBzZWFyY2hlZFRlcm1cIj5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhZW50aXR5LmlzTWFueVRvTWFueVRhYmxlICYmICFlbnRpdHkuaGlkZGVuXCI+XG4gICAgICAgICAgICAgICAgPCEtLSBNYXQgZXhwYW5zaW9uIHBhbmVsIC0tPlxuICAgICAgICAgICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsIChjbG9zZWQpPVwiZW50aXR5LmV4cGFuZGVkID0gZmFsc2VcIiAob3BlbmVkKT1cImVudGl0eS5leHBhbmRlZCA9IHRydWVcIiBbY2RrRHJvcExpc3REaXNhYmxlZF0gPSBcImRpc3BsYXlNb2RlID09PSBkYXRhTW9kZWxUcmVlRGlzcGxheVR5cGUuZHJhZ0Ryb3BMaXN0XCIgY2RrRHJvcExpc3QgW2Nka0Ryb3BMaXN0RGF0YV09XCJlbnRpdHkuYXR0cmlidXRlc1wiIGNka0Ryb3BMaXN0U29ydGluZ0Rpc2FibGVkIFtjZGtEcm9wTGlzdENvbm5lY3RlZFRvXT1cImFycnRyaWJ1dGVEcm9wWm9uZUxpc3RcIiAqbmdJZj1cImVudGl0eS5jb2x1bW5zPy5sZW5ndGggJiYgIWVudGl0eS5pc01hbnlUb01hbnlUYWJsZVwiPlxuICAgICAgICAgICAgICAgICAgICA8IS0tIE1hdCBleHBhbnNpb24gcGFuZWwgaGVhZGVyIC0tPlxuICAgICAgICAgICAgICAgICAgICA8bWF0LWV4cGFuc2lvbi1wYW5lbC1oZWFkZXI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9XCJheG8tZm9udCBmb250LW5vcm1hbFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7IGVudGl0eS5mb3JtTmFtZSB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgPC9sYWJlbD5cbiAgICAgICAgICAgICAgICAgICAgPC9tYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cbiAgICAgICAgICAgICAgICAgICAgPCEtLSBNYXQgU2VsZWN0aW9uIExpc3QgLS0+XG4gICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJlbnRpdHkuZXhwYW5kZWRcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cImRpc3BsYXlNb2RlXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiZGF0YU1vZGVsVHJlZURpc3BsYXlUeXBlLmRyYWdEcm9wTGlzdFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tIEF0dHJpYnV0ZXMgcmVuZGVyaW5nICAtLT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSBEcmFnRHJvcCBhbmQgV2l0aG91dCBzZWxlY3Rpb24gYm94IGxheSBvdXQgLS0+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaWItYXR0cmlidXRlcy1kcmFnZHJvcC1sYXlvdXQgW2F0dHJpYnV0ZXNdPVwiZW50aXR5LmNvbHVtbnNcIiBbc2VhcmNoZWRUZXJtXT1cInNlYXJjaGVkVGVybVwiPjwvbGliLWF0dHJpYnV0ZXMtZHJhZ2Ryb3AtbGF5b3V0PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cImRhdGFNb2RlbFRyZWVEaXNwbGF5VHlwZS5zZWxlY3Rpb25MaXN0XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaWItYXR0cmlidXRlcy1zZWxlY3Rpb24tbGF5b3V0IFthdHRyaWJ1dGVzXT1cImVudGl0eS5jb2x1bW5zXCIgIFtzZWFyY2hlZFRlcm1dPVwic2VhcmNoZWRUZXJtXCIgKGF0dHJpYnV0ZVNlbGVjdGVkKT1cImF0dHJpYnV0ZVNlbGVjdGVkLmVtaXQoJGV2ZW50KVwiIChhdHRyaWJ1dGVEZXNlbGVjdGVkKT1cImF0dHJpYnV0ZURlc2VsZWN0ZWQuZW1pdCgkZXZlbnQpXCI+IDwvbGliLWF0dHJpYnV0ZXMtc2VsZWN0aW9uLWxheW91dD5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbD5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPCEtLSBNYXQgZXhwYW5zaW9uIHBhbmVsIC0tPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L21hdC1hY2NvcmRpb24+XG4gICAgPCEtLSBFeHBhbmRhYmxlIGVudGl0aWVzIHRyZWUgZW5kcyBoZXJlIC0tPlxuPC9kaXY+XG4iXX0=
|