ax-common-ui-lib 1.0.0-beta.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-common-ui-lib.component.mjs +26 -0
- package/esm2020/lib/ax-common-ui-lib.module.mjs +147 -0
- package/esm2020/lib/ax-common-ui-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-common-ui-lib.component.d.ts +8 -0
- package/lib/ax-common-ui-lib.module.d.ts +24 -0
- package/lib/ax-common-ui-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,155 @@
|
|
|
1
|
+
import { Component, Injector, Input } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { MapDialogComponent } from '../../../../../lib/map-dialog/map-dialog.component';
|
|
4
|
+
import { WidgetSubType } from '../../../../../lib/forms/page/common/widget-enums';
|
|
5
|
+
import { AxoMap } from '../../../../axo-map/axo-map';
|
|
6
|
+
import { BarCode } from '../../../../forms/page/widgets/bar-code';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "@angular/common";
|
|
9
|
+
import * as i2 from "@angular/material/icon";
|
|
10
|
+
function BarCodeWidgetViewComponent_ng_container_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "span");
|
|
12
|
+
i0.ɵɵtext(1);
|
|
13
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
14
|
+
i0.ɵɵtext(3, ":");
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
i0.ɵɵelementEnd();
|
|
17
|
+
} if (rf & 2) {
|
|
18
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
19
|
+
i0.ɵɵadvance(1);
|
|
20
|
+
i0.ɵɵtextInterpolate(ctx_r4.widget.prompt);
|
|
21
|
+
} }
|
|
22
|
+
function BarCodeWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
23
|
+
i0.ɵɵelementContainerStart(0);
|
|
24
|
+
i0.ɵɵelementStart(1, "div", 5);
|
|
25
|
+
i0.ɵɵelement(2, "mat-icon", 6);
|
|
26
|
+
i0.ɵɵtemplate(3, BarCodeWidgetViewComponent_ng_container_1_span_3_Template, 4, 1, "span", 7);
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
i0.ɵɵelementStart(4, "div", 8);
|
|
29
|
+
i0.ɵɵtext(5);
|
|
30
|
+
i0.ɵɵelementEnd();
|
|
31
|
+
i0.ɵɵelementContainerEnd();
|
|
32
|
+
} if (rf & 2) {
|
|
33
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
34
|
+
i0.ɵɵadvance(3);
|
|
35
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
36
|
+
i0.ɵɵadvance(2);
|
|
37
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.widgetValue, "");
|
|
38
|
+
} }
|
|
39
|
+
function BarCodeWidgetViewComponent_ng_template_2_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
i0.ɵɵelementStart(0, "span");
|
|
41
|
+
i0.ɵɵtext(1);
|
|
42
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
43
|
+
i0.ɵɵtext(3, ":");
|
|
44
|
+
i0.ɵɵelementEnd();
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
} if (rf & 2) {
|
|
47
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
48
|
+
i0.ɵɵadvance(1);
|
|
49
|
+
i0.ɵɵtextInterpolate(ctx_r5.widget.prompt);
|
|
50
|
+
} }
|
|
51
|
+
function BarCodeWidgetViewComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
52
|
+
i0.ɵɵelementStart(0, "div", 5);
|
|
53
|
+
i0.ɵɵelement(1, "mat-icon", 6);
|
|
54
|
+
i0.ɵɵtemplate(2, BarCodeWidgetViewComponent_ng_template_2_span_2_Template, 4, 1, "span", 7);
|
|
55
|
+
i0.ɵɵelementEnd();
|
|
56
|
+
i0.ɵɵelementStart(3, "span", 10);
|
|
57
|
+
i0.ɵɵtext(4, "-");
|
|
58
|
+
i0.ɵɵelementEnd();
|
|
59
|
+
} if (rf & 2) {
|
|
60
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
61
|
+
i0.ɵɵadvance(2);
|
|
62
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
63
|
+
} }
|
|
64
|
+
function BarCodeWidgetViewComponent_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
65
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
66
|
+
i0.ɵɵelementStart(0, "div", 11);
|
|
67
|
+
i0.ɵɵlistener("click", function BarCodeWidgetViewComponent_div_5_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(); ctx_r6.showLocationView($event); return $event.stopPropagation(); });
|
|
68
|
+
i0.ɵɵelement(1, "mat-icon", 12);
|
|
69
|
+
i0.ɵɵelementEnd();
|
|
70
|
+
} if (rf & 2) {
|
|
71
|
+
i0.ɵɵadvance(1);
|
|
72
|
+
i0.ɵɵproperty("svgIcon", "axo_location_red");
|
|
73
|
+
} }
|
|
74
|
+
export class BarCodeWidgetViewComponent {
|
|
75
|
+
constructor(_injector) {
|
|
76
|
+
this._injector = _injector;
|
|
77
|
+
this.widgetValue = '';
|
|
78
|
+
this.locations = new Array();
|
|
79
|
+
this.showMap = true;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* enum of widget subType
|
|
83
|
+
*/
|
|
84
|
+
get WidgetSubTypes() {
|
|
85
|
+
return WidgetSubType;
|
|
86
|
+
}
|
|
87
|
+
ngOnInit() {
|
|
88
|
+
console.log(this.widgetProperties);
|
|
89
|
+
this.widgetValue = this.widget.getWidgetValue();
|
|
90
|
+
if (this.widget.subType == WidgetSubType.scan_with_location) {
|
|
91
|
+
const value = JSON.parse(this.widgetValue);
|
|
92
|
+
this.widgetValue = value[0].data;
|
|
93
|
+
const latitude = value[0]?.location?.lat;
|
|
94
|
+
const longitude = value[0]?.location?.long;
|
|
95
|
+
//checks the lat and long value and set showMap value.
|
|
96
|
+
if ((latitude == 0 && longitude == 0) || !latitude || !longitude) {
|
|
97
|
+
this.showMap = false;
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
const axoMap = new AxoMap();
|
|
101
|
+
axoMap.latitude = latitude;
|
|
102
|
+
axoMap.longitude = longitude;
|
|
103
|
+
this.locations.push(axoMap);
|
|
104
|
+
this.showMap = true;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Open location dialog
|
|
110
|
+
*/
|
|
111
|
+
showLocationView(event) {
|
|
112
|
+
this.dialog = this._injector.get(MatDialog);
|
|
113
|
+
this.dialog.open(MapDialogComponent, {
|
|
114
|
+
maxWidth: '100vw',
|
|
115
|
+
maxHeight: '100vh',
|
|
116
|
+
height: '100%',
|
|
117
|
+
width: '100%',
|
|
118
|
+
panelClass: 'location-box-container',
|
|
119
|
+
data: {
|
|
120
|
+
locations: this.locations
|
|
121
|
+
},
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* enum of widget subType
|
|
126
|
+
*/
|
|
127
|
+
get WidgetSubType() {
|
|
128
|
+
return WidgetSubType;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
BarCodeWidgetViewComponent.ɵfac = function BarCodeWidgetViewComponent_Factory(t) { return new (t || BarCodeWidgetViewComponent)(i0.ɵɵdirectiveInject(i0.Injector)); };
|
|
132
|
+
BarCodeWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: BarCodeWidgetViewComponent, selectors: [["lib-bar-code-widget-view"]], inputs: { widget: "widget", widgetProperties: "widgetProperties" }, decls: 6, vars: 3, consts: [[1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "icon-container"], ["class", "flex items-center location-btn-icon rounded-md", 3, "click", 4, "ngIf"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_barcode", 1, "add-text"], [4, "ngIf"], [1, "data-detail-text", "text-sm"], [1, "colon"], [1, "flex", "justify-start"], [1, "flex", "items-center", "location-btn-icon", "rounded-md", 3, "click"], [3, "svgIcon"]], template: function BarCodeWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
133
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
134
|
+
i0.ɵɵtemplate(1, BarCodeWidgetViewComponent_ng_container_1_Template, 6, 2, "ng-container", 1);
|
|
135
|
+
i0.ɵɵtemplate(2, BarCodeWidgetViewComponent_ng_template_2_Template, 5, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
|
|
136
|
+
i0.ɵɵelementStart(4, "div", 3);
|
|
137
|
+
i0.ɵɵtemplate(5, BarCodeWidgetViewComponent_div_5_Template, 2, 1, "div", 4);
|
|
138
|
+
i0.ɵɵelementEnd();
|
|
139
|
+
i0.ɵɵelementEnd();
|
|
140
|
+
} if (rf & 2) {
|
|
141
|
+
const _r1 = i0.ɵɵreference(3);
|
|
142
|
+
i0.ɵɵadvance(1);
|
|
143
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
144
|
+
i0.ɵɵadvance(4);
|
|
145
|
+
i0.ɵɵproperty("ngIf", ctx.widget.subType === ctx.WidgetSubTypes.scan_with_location && ctx.widget.captureLocation && ctx.showMap);
|
|
146
|
+
} }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
|
|
147
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BarCodeWidgetViewComponent, [{
|
|
148
|
+
type: Component,
|
|
149
|
+
args: [{ selector: 'lib-bar-code-widget-view', template: " <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_barcode\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\"> {{widgetValue}}</div> \n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_barcode\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n </ng-template>\n <!-- If location is enabled icon for triggering map-dialog get visible-->\n <div class=\"icon-container\">\n <div *ngIf=\"widget.subType === WidgetSubTypes.scan_with_location && widget.captureLocation && showMap\" class=\"flex items-center location-btn-icon rounded-md\" (click)=\"showLocationView($event); $event.stopPropagation();\">\n <mat-icon [svgIcon]=\"'axo_location_red'\" ></mat-icon>\n </div> \n </div>\n</div>\n\n\n", styles: [""] }]
|
|
150
|
+
}], function () { return [{ type: i0.Injector }]; }, { widget: [{
|
|
151
|
+
type: Input
|
|
152
|
+
}], widgetProperties: [{
|
|
153
|
+
type: Input
|
|
154
|
+
}] }); })();
|
|
155
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyLWNvZGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvYmFyLWNvZGUtd2lkZ2V0LXZpZXcvYmFyLWNvZGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvYmFyLWNvZGUtd2lkZ2V0LXZpZXcvYmFyLWNvZGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ25FLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUNyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUN4RixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDbEYsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQzs7Ozs7SUNINkMsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSwrQkFBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwwQ0FBaUI7OztJQUQvSiw2QkFBNkQ7SUFDekQsOEJBQTRDO0lBQUEsOEJBQTREO0lBQUMsNEZBQXFGO0lBQzlMLGlCQUFNO0lBQ04sOEJBQXNDO0lBQUMsWUFBZTtJQUFBLGlCQUFNO0lBQ2hFLDBCQUFlOzs7SUFIcUcsZUFBd0I7SUFBeEIsZ0RBQXdCO0lBRWpHLGVBQWU7SUFBZixrREFBZTs7O0lBS2xELDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMENBQWlCOzs7SUFGdEQsOEJBQTRDO0lBQ3hDLDhCQUE0RDtJQUM1RCwyRkFBcUY7SUFDekYsaUJBQU07SUFDTixnQ0FBaUM7SUFBQSxpQkFBQztJQUFBLGlCQUFPOzs7SUFGOUIsZUFBd0I7SUFBeEIsZ0RBQXdCOzs7O0lBTWpDLCtCQUE0TjtJQUE5RCxtS0FBUywrQkFBd0IsU0FBRSx3QkFBd0IsSUFBRTtJQUN2TiwrQkFBcUQ7SUFDekQsaUJBQU07O0lBRFEsZUFBOEI7SUFBOUIsNENBQThCOztBRExwRCxNQUFNLE9BQU8sMEJBQTBCO0lBYXJDLFlBQW9CLFNBQW1CO1FBQW5CLGNBQVMsR0FBVCxTQUFTLENBQVU7UUFOdkMsZ0JBQVcsR0FBVyxFQUFFLENBQUM7UUFDekIsY0FBUyxHQUFHLElBQUksS0FBSyxFQUFVLENBQUM7UUFDaEMsWUFBTyxHQUFZLElBQUksQ0FBQztJQUlrQixDQUFDO0lBQzNDOztPQUVHO0lBQ0YsSUFBVyxjQUFjO1FBQ3hCLE9BQU8sYUFBYSxDQUFDO0lBQ3ZCLENBQUM7SUFDRCxRQUFRO1FBQ04sT0FBTyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDaEQsSUFBRyxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sSUFBSSxhQUFhLENBQUMsa0JBQWtCLEVBQUM7WUFDekQsTUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDM0MsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1lBQ2pDLE1BQU0sUUFBUSxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxRQUFRLEVBQUUsR0FBRyxDQUFDO1lBQ3pDLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxDQUFDO1lBQzNDLHNEQUFzRDtZQUN0RCxJQUFHLENBQUMsUUFBUSxJQUFJLENBQUMsSUFBSSxTQUFTLElBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLElBQUksQ0FBQyxTQUFTLEVBQUM7Z0JBQzVELElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO2FBQ3RCO2lCQUNHO2dCQUNGLE1BQU0sTUFBTSxHQUFHLElBQUksTUFBTSxFQUFFLENBQUM7Z0JBQzVCLE1BQU0sQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO2dCQUMzQixNQUFNLENBQUMsU0FBUyxHQUFHLFNBQVMsQ0FBQztnQkFDN0IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQzVCLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDO2FBQ3JCO1NBQ0Y7SUFFSCxDQUFDO0lBRUQ7O09BRUc7SUFDRixnQkFBZ0IsQ0FBQyxLQUFLO1FBQ3JCLElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLENBQUM7UUFDNUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsa0JBQWtCLEVBQUU7WUFDbkMsUUFBUSxFQUFFLE9BQU87WUFDakIsU0FBUyxFQUFFLE9BQU87WUFDbEIsTUFBTSxFQUFFLE1BQU07WUFDZCxLQUFLLEVBQUUsTUFBTTtZQUNiLFVBQVUsRUFBRSx3QkFBd0I7WUFDcEMsSUFBSSxFQUFFO2dCQUNKLFNBQVMsRUFBRyxJQUFJLENBQUMsU0FBUzthQUMzQjtTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7SUFDRDs7T0FFRztJQUNILElBQVcsYUFBYTtRQUN0QixPQUFPLGFBQWEsQ0FBQztJQUN2QixDQUFDOztvR0FoRVUsMEJBQTBCOzZFQUExQiwwQkFBMEI7UUNYdEMsOEJBQThCO1FBQzdCLDZGQUllO1FBQ2YsNEhBTWM7UUFFWiw4QkFBNEI7UUFDeEIsMkVBRU07UUFDVixpQkFBTTtRQUNWLGlCQUFNOzs7UUFsQlcsZUFBb0I7UUFBcEIsdUNBQW9CLGlCQUFBO1FBY3ZCLGVBQStGO1FBQS9GLGdJQUErRjs7dUZESmhHLDBCQUEwQjtjQUx0QyxTQUFTOzJCQUNFLDBCQUEwQjsyREFTM0IsTUFBTTtrQkFBZCxLQUFLO1lBQ0csZ0JBQWdCO2tCQUF4QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbmplY3RvciwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IE1hcERpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uL2xpYi9tYXAtZGlhbG9nL21hcC1kaWFsb2cuY29tcG9uZW50JztcbmltcG9ydCB7IFdpZGdldFN1YlR5cGUgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9saWIvZm9ybXMvcGFnZS9jb21tb24vd2lkZ2V0LWVudW1zJztcbmltcG9ydCB7IEF4b01hcCB9IGZyb20gJy4uLy4uLy4uLy4uL2F4by1tYXAvYXhvLW1hcCc7XG5pbXBvcnQgeyBCYXJDb2RlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL2Jhci1jb2RlJztcbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1iYXItY29kZS13aWRnZXQtdmlldycsXG4gIHRlbXBsYXRlVXJsOiAnLi9iYXItY29kZS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Jhci1jb2RlLXdpZGdldC12aWV3LmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgQmFyQ29kZVdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIC8qXG4gICogd2lkZ2V0IG9iamVjdFxuICAqL1xuICBASW5wdXQoKSB3aWRnZXQ6IEJhckNvZGU7XG4gIEBJbnB1dCgpIHdpZGdldFByb3BlcnRpZXM6IEJhckNvZGU7XG4gIHdpZGdldFZhbHVlOiBzdHJpbmcgPSAnJztcbiAgbG9jYXRpb25zID0gbmV3IEFycmF5PEF4b01hcD4oKTtcbiAgc2hvd01hcDogYm9vbGVhbiA9IHRydWU7XG4gIGRpYWxvZzogTWF0RGlhbG9nO1xuXG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBfaW5qZWN0b3I6IEluamVjdG9yKSB7fVxuICAvKipcbiAgICogZW51bSBvZiB3aWRnZXQgc3ViVHlwZVxuICAgKi9cbiAgIHB1YmxpYyBnZXQgV2lkZ2V0U3ViVHlwZXMoKTogdHlwZW9mIFdpZGdldFN1YlR5cGUge1xuICAgIHJldHVybiBXaWRnZXRTdWJUeXBlO1xuICB9XG4gIG5nT25Jbml0KCkge1xuICAgIGNvbnNvbGUubG9nKHRoaXMud2lkZ2V0UHJvcGVydGllcyk7XG4gICAgdGhpcy53aWRnZXRWYWx1ZSA9IHRoaXMud2lkZ2V0LmdldFdpZGdldFZhbHVlKCk7XG4gICAgaWYodGhpcy53aWRnZXQuc3ViVHlwZSA9PSBXaWRnZXRTdWJUeXBlLnNjYW5fd2l0aF9sb2NhdGlvbil7XG4gICAgICBjb25zdCB2YWx1ZSA9IEpTT04ucGFyc2UodGhpcy53aWRnZXRWYWx1ZSk7XG4gICAgICB0aGlzLndpZGdldFZhbHVlID0gdmFsdWVbMF0uZGF0YTtcbiAgICAgIGNvbnN0IGxhdGl0dWRlID0gdmFsdWVbMF0/LmxvY2F0aW9uPy5sYXQ7XG4gICAgICBjb25zdCBsb25naXR1ZGUgPSB2YWx1ZVswXT8ubG9jYXRpb24/Lmxvbmc7XG4gICAgICAvL2NoZWNrcyB0aGUgbGF0IGFuZCBsb25nIHZhbHVlIGFuZCBzZXQgc2hvd01hcCB2YWx1ZS5cbiAgICAgIGlmKChsYXRpdHVkZSA9PSAwICYmIGxvbmdpdHVkZT09MCkgfHwgIWxhdGl0dWRlIHx8ICFsb25naXR1ZGUpe1xuICAgICAgICB0aGlzLnNob3dNYXAgPSBmYWxzZTtcbiAgICAgIH1cbiAgICAgIGVsc2V7XG4gICAgICAgIGNvbnN0IGF4b01hcCA9IG5ldyBBeG9NYXAoKTtcbiAgICAgICAgYXhvTWFwLmxhdGl0dWRlID0gbGF0aXR1ZGU7XG4gICAgICAgIGF4b01hcC5sb25naXR1ZGUgPSBsb25naXR1ZGU7XG4gICAgICAgIHRoaXMubG9jYXRpb25zLnB1c2goYXhvTWFwKTtcbiAgICAgICAgdGhpcy5zaG93TWFwID0gdHJ1ZTtcbiAgICAgIH1cbiAgICB9XG5cbiAgfVxuXG4gIC8qKlxuICAgKiBPcGVuIGxvY2F0aW9uIGRpYWxvZ1xuICAgKi9cbiAgIHNob3dMb2NhdGlvblZpZXcoZXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmRpYWxvZyA9IHRoaXMuX2luamVjdG9yLmdldChNYXREaWFsb2cpO1xuICAgIHRoaXMuZGlhbG9nLm9wZW4oTWFwRGlhbG9nQ29tcG9uZW50LCB7XG4gICAgICBtYXhXaWR0aDogJzEwMHZ3JyxcbiAgICAgIG1heEhlaWdodDogJzEwMHZoJyxcbiAgICAgIGhlaWdodDogJzEwMCUnLFxuICAgICAgd2lkdGg6ICcxMDAlJyxcbiAgICAgIHBhbmVsQ2xhc3M6ICdsb2NhdGlvbi1ib3gtY29udGFpbmVyJyxcbiAgICAgIGRhdGE6IHtcbiAgICAgICAgbG9jYXRpb25zIDogdGhpcy5sb2NhdGlvbnNcbiAgICAgIH0sXG4gICAgfSk7XG4gIH1cbiAgLyoqXG4gICAqIGVudW0gb2Ygd2lkZ2V0IHN1YlR5cGVcbiAgICovXG4gIHB1YmxpYyBnZXQgV2lkZ2V0U3ViVHlwZSgpOiB0eXBlb2YgV2lkZ2V0U3ViVHlwZSB7XG4gICAgcmV0dXJuIFdpZGdldFN1YlR5cGU7XG4gIH1cblxufVxuIiwiIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC1pbmZvXCI+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJ3aWRnZXQudmFsdWU7IGVsc2UgaXNXaWRnZXRWYWx1ZUVtcHR5XCIgPlxuICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19iYXJjb2RlXCI+PC9tYXQtaWNvbj4gPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgIDwvZGl2PlxuICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRleHQgdGV4dC1zbVwiPiB7e3dpZGdldFZhbHVlfX08L2Rpdj4gXG4gIDwvbmctY29udGFpbmVyPlxuICA8bmctdGVtcGxhdGUgI2lzV2lkZ2V0VmFsdWVFbXB0eT5cbiAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10aXRsZSBmbGV4IHRleHQtc21cIj5cbiAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fYmFyY29kZVwiPjwvbWF0LWljb24+IFxuICAgICAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiZmxleCBqdXN0aWZ5LXN0YXJ0XCI+LTwvc3Bhbj5cbiAgPC9uZy10ZW1wbGF0ZT5cbiAgPCEtLSBJZiBsb2NhdGlvbiBpcyBlbmFibGVkIGljb24gZm9yIHRyaWdnZXJpbmcgbWFwLWRpYWxvZyBnZXQgdmlzaWJsZS0tPlxuICAgIDxkaXYgY2xhc3M9XCJpY29uLWNvbnRhaW5lclwiPlxuICAgICAgICA8ZGl2ICpuZ0lmPVwid2lkZ2V0LnN1YlR5cGUgPT09IFdpZGdldFN1YlR5cGVzLnNjYW5fd2l0aF9sb2NhdGlvbiAmJiB3aWRnZXQuY2FwdHVyZUxvY2F0aW9uICYmIHNob3dNYXBcIiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGxvY2F0aW9uLWJ0bi1pY29uIHJvdW5kZWQtbWRcIiAoY2xpY2spPVwic2hvd0xvY2F0aW9uVmlldygkZXZlbnQpOyAkZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XCI+XG4gICAgICAgICAgICA8bWF0LWljb24gW3N2Z0ljb25dPVwiJ2F4b19sb2NhdGlvbl9yZWQnXCIgPjwvbWF0LWljb24+XG4gICAgICAgIDwvZGl2PiAgICAgICBcbiAgICA8L2Rpdj5cbjwvZGl2PlxuXG5cbiJdfQ==
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { FormObjectViewService } from '../../form-object-view.service';
|
|
3
|
+
import { ChildRecord } from '../../../../forms/page/widgets/child-record';
|
|
4
|
+
import { DetailViewType } from '../../../../forms/page/common/detail-view-enums';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../../form-object-view.service";
|
|
7
|
+
function ChildRecordsWidgetViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
8
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
9
|
+
i0.ɵɵelementStart(1, "div", 4);
|
|
10
|
+
i0.ɵɵelement(2, "mat-icon", 5);
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵelementStart(3, "div");
|
|
13
|
+
i0.ɵɵtext(4);
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
} if (rf & 2) {
|
|
17
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
18
|
+
i0.ɵɵproperty("ngSwitch", ctx_r0.widget.subType);
|
|
19
|
+
i0.ɵɵadvance(4);
|
|
20
|
+
i0.ɵɵtextInterpolate(ctx_r0.widget.prompt);
|
|
21
|
+
} }
|
|
22
|
+
function ChildRecordsWidgetViewComponent_div_1_mat_spinner_11_Template(rf, ctx) { if (rf & 1) {
|
|
23
|
+
i0.ɵɵelement(0, "mat-spinner", 23);
|
|
24
|
+
} if (rf & 2) {
|
|
25
|
+
i0.ɵɵproperty("diameter", 15);
|
|
26
|
+
} }
|
|
27
|
+
function ChildRecordsWidgetViewComponent_div_1_img_14_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
i0.ɵɵelement(0, "img", 24);
|
|
29
|
+
} }
|
|
30
|
+
function ChildRecordsWidgetViewComponent_div_1_img_15_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelement(0, "img", 25);
|
|
32
|
+
} }
|
|
33
|
+
function ChildRecordsWidgetViewComponent_div_1_img_16_Template(rf, ctx) { if (rf & 1) {
|
|
34
|
+
i0.ɵɵelement(0, "img", 26);
|
|
35
|
+
} }
|
|
36
|
+
function ChildRecordsWidgetViewComponent_div_1_div_19_Template(rf, ctx) { if (rf & 1) {
|
|
37
|
+
i0.ɵɵelementStart(0, "div", 27);
|
|
38
|
+
i0.ɵɵelement(1, "dynamic-data-view", 28);
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
} if (rf & 2) {
|
|
41
|
+
const child_r3 = i0.ɵɵnextContext().$implicit;
|
|
42
|
+
const ctx_r10 = i0.ɵɵnextContext();
|
|
43
|
+
i0.ɵɵadvance(1);
|
|
44
|
+
i0.ɵɵproperty("dataDetailView", ctx_r10.childRecordsDetailView[child_r3.Id])("baseUrl", ctx_r10.baseUrl)("viewType", ctx_r10.detailViewType.FormObjectView)("axonatorX1Url", ctx_r10.axonatorX1Url);
|
|
45
|
+
} }
|
|
46
|
+
function ChildRecordsWidgetViewComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
47
|
+
const _r14 = i0.ɵɵgetCurrentView();
|
|
48
|
+
i0.ɵɵelementStart(0, "div");
|
|
49
|
+
i0.ɵɵelementStart(1, "div", 6);
|
|
50
|
+
i0.ɵɵlistener("click", function ChildRecordsWidgetViewComponent_div_1_Template_div_click_1_listener($event) { return $event.stopPropagation(); });
|
|
51
|
+
i0.ɵɵelementStart(2, "div", 7);
|
|
52
|
+
i0.ɵɵelementStart(3, "div", 8);
|
|
53
|
+
i0.ɵɵlistener("click", function ChildRecordsWidgetViewComponent_div_1_Template_div_click_3_listener() { const restoredCtx = i0.ɵɵrestoreView(_r14); const child_r3 = restoredCtx.$implicit; const _r5 = i0.ɵɵreference(13); const ctx_r13 = i0.ɵɵnextContext(); return ctx_r13.toggleAccordion(_r5, child_r3.Id, ctx_r13.section.childSectionId); });
|
|
54
|
+
i0.ɵɵelementStart(4, "div", 9);
|
|
55
|
+
i0.ɵɵelementStart(5, "div", 10);
|
|
56
|
+
i0.ɵɵelement(6, "mat-icon", 11);
|
|
57
|
+
i0.ɵɵelementStart(7, "span", 12);
|
|
58
|
+
i0.ɵɵtext(8);
|
|
59
|
+
i0.ɵɵelementEnd();
|
|
60
|
+
i0.ɵɵelementStart(9, "p", 13);
|
|
61
|
+
i0.ɵɵtext(10);
|
|
62
|
+
i0.ɵɵelementEnd();
|
|
63
|
+
i0.ɵɵelementEnd();
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵtemplate(11, ChildRecordsWidgetViewComponent_div_1_mat_spinner_11_Template, 1, 1, "mat-spinner", 14);
|
|
66
|
+
i0.ɵɵelementStart(12, "button", 15, 16);
|
|
67
|
+
i0.ɵɵlistener("click", function ChildRecordsWidgetViewComponent_div_1_Template_button_click_12_listener() { const restoredCtx = i0.ɵɵrestoreView(_r14); const child_r3 = restoredCtx.$implicit; const _r5 = i0.ɵɵreference(13); const ctx_r15 = i0.ɵɵnextContext(); return ctx_r15.toggleAccordion(_r5, child_r3.Id, ctx_r15.section.childSectionId); });
|
|
68
|
+
i0.ɵɵtemplate(14, ChildRecordsWidgetViewComponent_div_1_img_14_Template, 1, 0, "img", 17);
|
|
69
|
+
i0.ɵɵtemplate(15, ChildRecordsWidgetViewComponent_div_1_img_15_Template, 1, 0, "img", 18);
|
|
70
|
+
i0.ɵɵelementEnd();
|
|
71
|
+
i0.ɵɵtemplate(16, ChildRecordsWidgetViewComponent_div_1_img_16_Template, 1, 0, "img", 19);
|
|
72
|
+
i0.ɵɵelementEnd();
|
|
73
|
+
i0.ɵɵelementStart(17, "div", 20, 21);
|
|
74
|
+
i0.ɵɵtemplate(19, ChildRecordsWidgetViewComponent_div_1_div_19_Template, 2, 4, "div", 22);
|
|
75
|
+
i0.ɵɵelementEnd();
|
|
76
|
+
i0.ɵɵelementEnd();
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
} if (rf & 2) {
|
|
80
|
+
const child_r3 = ctx.$implicit;
|
|
81
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
82
|
+
i0.ɵɵadvance(3);
|
|
83
|
+
i0.ɵɵattribute("data-bs-target", "#" + ctx_r1.section.widget.identifier + "_" + child_r3.Id + "_" + ctx_r1.section.childSectionId);
|
|
84
|
+
i0.ɵɵadvance(5);
|
|
85
|
+
i0.ɵɵtextInterpolate(child_r3.title);
|
|
86
|
+
i0.ɵɵadvance(2);
|
|
87
|
+
i0.ɵɵtextInterpolate(child_r3.subTitle);
|
|
88
|
+
i0.ɵɵadvance(1);
|
|
89
|
+
i0.ɵɵproperty("ngIf", ctx_r1.childRecordsInProgress[ctx_r1.section.widget.identifier + "_" + child_r3.Id]);
|
|
90
|
+
i0.ɵɵadvance(1);
|
|
91
|
+
i0.ɵɵproperty("id", ctx_r1.section.widget.identifier + "_" + child_r3.Id);
|
|
92
|
+
i0.ɵɵattribute("data-bs-target", "#" + ctx_r1.section.widget.identifier + "_" + child_r3.Id + "_" + ctx_r1.section.childSectionId)("aria-controls", ctx_r1.section.widget.identifier + "_" + child_r3.Id + "_" + ctx_r1.section.childSectionId);
|
|
93
|
+
i0.ɵɵadvance(2);
|
|
94
|
+
i0.ɵɵproperty("ngIf", !ctx_r1.expandedChildRecords[ctx_r1.section.widget.identifier + "_" + child_r3.Id] && !ctx_r1.childRecordsInProgress[ctx_r1.section.widget.identifier + "_" + child_r3.Id]);
|
|
95
|
+
i0.ɵɵadvance(1);
|
|
96
|
+
i0.ɵɵproperty("ngIf", ctx_r1.expandedChildRecords[ctx_r1.section.widget.identifier + "_" + child_r3.Id]);
|
|
97
|
+
i0.ɵɵadvance(1);
|
|
98
|
+
i0.ɵɵproperty("ngIf", ctx_r1.expandedChildRecords[ctx_r1.section.widget.identifier + "_" + child_r3.Id]);
|
|
99
|
+
i0.ɵɵadvance(1);
|
|
100
|
+
i0.ɵɵproperty("id", ctx_r1.section.widget.identifier + "_" + child_r3.Id + "_" + ctx_r1.section.childSectionId);
|
|
101
|
+
i0.ɵɵadvance(2);
|
|
102
|
+
i0.ɵɵproperty("ngIf", ctx_r1.childRecordsDetailView[child_r3.Id]);
|
|
103
|
+
} }
|
|
104
|
+
function ChildRecordsWidgetViewComponent_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
105
|
+
i0.ɵɵelementContainerStart(0);
|
|
106
|
+
i0.ɵɵelementStart(1, "div", 29);
|
|
107
|
+
i0.ɵɵelement(2, "mat-icon", 11);
|
|
108
|
+
i0.ɵɵelementStart(3, "span", 30);
|
|
109
|
+
i0.ɵɵtext(4, "-");
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
i0.ɵɵelementEnd();
|
|
112
|
+
i0.ɵɵelementContainerEnd();
|
|
113
|
+
} }
|
|
114
|
+
export class ChildRecordsWidgetViewComponent {
|
|
115
|
+
constructor(_formObjectViewService) {
|
|
116
|
+
this._formObjectViewService = _formObjectViewService;
|
|
117
|
+
this.childRecordsDetailView = new Map();
|
|
118
|
+
this.expandedChildRecords = new Map();
|
|
119
|
+
this.childRecordsInProgress = new Map();
|
|
120
|
+
this.detailViewType = Object.assign({}, DetailViewType);
|
|
121
|
+
}
|
|
122
|
+
ngOnInit() {
|
|
123
|
+
this.section.showPrompt = this.section.showPrompt;
|
|
124
|
+
}
|
|
125
|
+
toggleAccordion(accordionToggle, formobjectId, childSectionId) {
|
|
126
|
+
if (!(formobjectId in this.childRecordsDetailView)) {
|
|
127
|
+
this.childRecordsInProgress[accordionToggle.id] = true;
|
|
128
|
+
this._formObjectViewService.createDataDetailView(childSectionId, formobjectId, this.widget.childFormId, this.axonatorX1Url).then((dataDetailSection) => {
|
|
129
|
+
this.childRecordsDetailView[formobjectId] = dataDetailSection;
|
|
130
|
+
this.expandedChildRecords[accordionToggle.id] = accordionToggle.ariaExpanded == 'true';
|
|
131
|
+
this.childRecordsInProgress[accordionToggle.id] = false;
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
else
|
|
135
|
+
this.expandedChildRecords[accordionToggle.id] = accordionToggle.ariaExpanded == 'true';
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
ChildRecordsWidgetViewComponent.ɵfac = function ChildRecordsWidgetViewComponent_Factory(t) { return new (t || ChildRecordsWidgetViewComponent)(i0.ɵɵdirectiveInject(i1.FormObjectViewService)); };
|
|
139
|
+
ChildRecordsWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ChildRecordsWidgetViewComponent, selectors: [["lib-child-records-widget-view"]], inputs: { widget: "widget", axonatorX1Url: "axonatorX1Url" }, decls: 3, vars: 3, consts: [["class", "child-record-title flex items-center text-sm", 3, "ngSwitch", 4, "ngIf"], [4, "ngFor", "ngForOf"], [4, "ngIf"], [1, "child-record-title", "flex", "items-center", "text-sm", 3, "ngSwitch"], [1, "flex", "items-start"], ["svgIcon", "axo_child_records", 1, "add-text"], [1, "accordion", "child-record", 3, "click"], [1, "accordion-item", "bg-white", "border", "border-gray-200"], ["id", "accordionHeading", "data-bs-toggle", "collapse", 1, "accordion-header", "mb-0", "sm:py-4", "sm:pl-10", "sm:pr-2", "p-4", 3, "click"], [1, "data-detail-info"], [1, "children-title", "text-sm"], ["svgIcon", "axo_child_records", 1, "add-text", "child-record-icon"], [1, "child-recordTitle"], [1, "child-record-subtitle", "m-0"], ["class", "expand-button", 3, "diameter", 4, "ngIf"], ["type", "button", "data-bs-toggle", "collapse", "aria-expanded", "false", 1, "expand-button", 3, "id", "click"], ["accordionToggle", ""], ["class", "child-expand-icon", "alt", "", "src", "assets/icons/axo/expand_icon.svg", 4, "ngIf"], ["class", "child-expand-icon", "alt", "", "src", "assets/icons/axo/collapse_icon.svg", 4, "ngIf"], ["class", "child-expanded-icon", "alt", "", "src", "assets/icons/axo/expanded_arrow.svg", 4, "ngIf"], ["aria-labelledby", "accordionHeading", 1, "accordion-collapse", "collapse", 3, "id"], ["accordionBody", ""], ["class", "accordion-body", 4, "ngIf"], [1, "expand-button", 3, "diameter"], ["alt", "", "src", "assets/icons/axo/expand_icon.svg", 1, "child-expand-icon"], ["alt", "", "src", "assets/icons/axo/collapse_icon.svg", 1, "child-expand-icon"], ["alt", "", "src", "assets/icons/axo/expanded_arrow.svg", 1, "child-expanded-icon"], [1, "accordion-body"], [3, "dataDetailView", "baseUrl", "viewType", "axonatorX1Url"], [1, "flex", "items-center", "gap-3"], [1, "flex", "justify-start"]], template: function ChildRecordsWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
140
|
+
i0.ɵɵtemplate(0, ChildRecordsWidgetViewComponent_div_0_Template, 5, 2, "div", 0);
|
|
141
|
+
i0.ɵɵtemplate(1, ChildRecordsWidgetViewComponent_div_1_Template, 20, 12, "div", 1);
|
|
142
|
+
i0.ɵɵtemplate(2, ChildRecordsWidgetViewComponent_ng_container_2_Template, 5, 0, "ng-container", 2);
|
|
143
|
+
} if (rf & 2) {
|
|
144
|
+
i0.ɵɵproperty("ngIf", ctx.section.showPrompt);
|
|
145
|
+
i0.ɵɵadvance(1);
|
|
146
|
+
i0.ɵɵproperty("ngForOf", ctx.widget == null ? null : ctx.widget.value);
|
|
147
|
+
i0.ɵɵadvance(1);
|
|
148
|
+
i0.ɵɵproperty("ngIf", !ctx.widget.value || ctx.widget.value.length <= 0);
|
|
149
|
+
} }, styles: ["lib-child-records-widget-view{display:flex;flex-direction:column;row-gap:25px}lib-child-records-widget-view .accordion{position:relative;background-color:#fafbfc}lib-child-records-widget-view .accordion .records-connection-line{position:absolute;left:4.1rem;height:calc(100% - 16px);border-left:1px solid;width:2px}lib-child-records-widget-view .accordion .accordion-item{border-radius:.25rem}lib-child-records-widget-view .accordion .accordion-header{background:#FAFBFC;border-radius:.25rem;cursor:pointer}lib-child-records-widget-view .accordion .accordion-header .child-expand-icon{width:1rem}lib-child-records-widget-view .accordion .accordion-header .child-expanded-icon{width:1rem;position:absolute;left:1.5rem;top:3.5rem}lib-child-records-widget-view .accordion .expand-button{position:absolute;bottom:-.4rem;left:1.5rem}@media screen and (max-width: 600px){lib-child-records-widget-view .accordion .accordion-header .child-expanded-icon{left:.5rem}lib-child-records-widget-view .accordion .expand-button{left:.5rem}}lib-child-records-widget-view .accordion .child-record-icon{grid-area:child-record-icon}lib-child-records-widget-view .accordion .child-recordTitle{grid-area:child-record-title}lib-child-records-widget-view .accordion .child-record-subtitle{grid-area:child-record-subtitle;color:#6c798f;font-family:Roboto,sans-serif;font-size:10px;height:.625rem}lib-child-records-widget-view .accordion .children-title{line-height:14px;display:grid;grid-template-areas:\"child-record-icon child-record-title\" \". child-record-subtitle\";grid-column-gap:8px;column-gap:8px;grid-row-gap:4px;row-gap:4px;align-items:center}lib-child-records-widget-view .accordion .accordion-body{margin-top:1rem;background-color:#fcfdff;border-radius:.5rem}lib-child-records-widget-view .accordion .accordion-body .mat-card{margin-bottom:16px!important}lib-child-records-widget-view .accordion .accordion-collapse{background-color:#fcfdff}lib-child-records-widget-view .data-detail-content{margin:0!important}lib-child-records-widget-view .child-record-title{font-weight:500!important;font-size:12px!important;color:#10172b!important;margin:0!important;column-gap:15px}lib-child-records-widget-view .data-detail-title{margin:0 0 8px!important}lib-child-records-widget-view .mat-icon{height:18px;min-height:18px;width:18px;min-width:18px}\n"], encapsulation: 2 });
|
|
150
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ChildRecordsWidgetViewComponent, [{
|
|
151
|
+
type: Component,
|
|
152
|
+
args: [{ selector: 'lib-child-records-widget-view', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"section.showPrompt\" class=\"child-record-title flex items-center text-sm\" [ngSwitch]=\"widget.subType\">\n <div class=\"flex items-start\"> <mat-icon class=\"add-text\" svgIcon=\"axo_child_records\"></mat-icon></div>\n <div>{{widget.prompt}}</div>\n</div> \n\n<div *ngFor=\"let child of widget?.value\"> \n <div class=\"accordion child-record\" (click)=\"$event.stopPropagation()\">\n <div class=\"accordion-item bg-white border border-gray-200\">\n <div class=\"accordion-header mb-0 sm:py-4 sm:pl-10 sm:pr-2 p-4\" id=\"accordionHeading\" data-bs-toggle=\"collapse\" (click)=\"toggleAccordion(accordionToggle,child.Id,section.childSectionId)\" [attr.data-bs-target]=\"'#'+section.widget.identifier+'_'+child.Id+'_'+section.childSectionId\">\n <div class=\"data-detail-info\">\n <div class=\"children-title text-sm\" >\n \n <mat-icon class=\"add-text child-record-icon\" svgIcon=\"axo_child_records\"></mat-icon> \n <span class=\"child-recordTitle\">{{child.title}}</span> \n <p class=\"child-record-subtitle m-0\">{{child.subTitle}}</p>\n </div>\n </div>\n <mat-spinner *ngIf=\"childRecordsInProgress[section.widget.identifier+'_'+child.Id]\" class=\"expand-button\" [diameter]=\"15\"></mat-spinner>\n <button #accordionToggle [id] =\"section.widget.identifier+'_'+child.Id\" (click)=\"toggleAccordion(accordionToggle,child.Id,section.childSectionId)\" class=\"expand-button\" type=\"button\" data-bs-toggle=\"collapse\" [attr.data-bs-target]=\"'#'+section.widget.identifier+'_'+child.Id+'_'+section.childSectionId\" aria-expanded=\"false\"\n [attr.aria-controls]=\"section.widget.identifier+'_'+child.Id+'_'+section.childSectionId\">\n <img *ngIf=\"!expandedChildRecords[section.widget.identifier+'_'+child.Id] && !childRecordsInProgress[section.widget.identifier+'_'+child.Id]\" class=\"child-expand-icon\" alt=\"\" src=\"assets/icons/axo/expand_icon.svg\">\n <img *ngIf=\"expandedChildRecords[section.widget.identifier+'_'+child.Id]\" class=\"child-expand-icon\" alt=\"\" src=\"assets/icons/axo/collapse_icon.svg\">\n\n </button>\n <img *ngIf=\"expandedChildRecords[section.widget.identifier+'_'+child.Id]\" class=\"child-expanded-icon\" alt=\"\" src=\"assets/icons/axo/expanded_arrow.svg\">\n </div>\n <div #accordionBody [id]=\"section.widget.identifier+'_'+child.Id+'_'+section.childSectionId\" class=\"accordion-collapse collapse\" aria-labelledby=\"accordionHeading\">\n <div class=\"accordion-body\" *ngIf=\"childRecordsDetailView[child.Id]\" >\n <dynamic-data-view [dataDetailView]=\"childRecordsDetailView[child.Id]\"\n [baseUrl]=\"baseUrl\" \n [viewType]=\"detailViewType.FormObjectView\"\n [axonatorX1Url] =\"axonatorX1Url\"></dynamic-data-view>\n </div>\n </div>\n </div>\n </div>\n</div>\n<ng-container *ngIf=\"!widget.value || widget.value.length <= 0\" >\n <div class=\"flex items-center gap-3\">\n <mat-icon class=\"add-text child-record-icon\" svgIcon=\"axo_child_records\"></mat-icon> \n <span class=\"flex justify-start\">-</span>\n </div>\n</ng-container>\n\n\n", styles: ["lib-child-records-widget-view{display:flex;flex-direction:column;row-gap:25px}lib-child-records-widget-view .accordion{position:relative;background-color:#fafbfc}lib-child-records-widget-view .accordion .records-connection-line{position:absolute;left:4.1rem;height:calc(100% - 16px);border-left:1px solid;width:2px}lib-child-records-widget-view .accordion .accordion-item{border-radius:.25rem}lib-child-records-widget-view .accordion .accordion-header{background:#FAFBFC;border-radius:.25rem;cursor:pointer}lib-child-records-widget-view .accordion .accordion-header .child-expand-icon{width:1rem}lib-child-records-widget-view .accordion .accordion-header .child-expanded-icon{width:1rem;position:absolute;left:1.5rem;top:3.5rem}lib-child-records-widget-view .accordion .expand-button{position:absolute;bottom:-.4rem;left:1.5rem}@media screen and (max-width: 600px){lib-child-records-widget-view .accordion .accordion-header .child-expanded-icon{left:.5rem}lib-child-records-widget-view .accordion .expand-button{left:.5rem}}lib-child-records-widget-view .accordion .child-record-icon{grid-area:child-record-icon}lib-child-records-widget-view .accordion .child-recordTitle{grid-area:child-record-title}lib-child-records-widget-view .accordion .child-record-subtitle{grid-area:child-record-subtitle;color:#6c798f;font-family:Roboto,sans-serif;font-size:10px;height:.625rem}lib-child-records-widget-view .accordion .children-title{line-height:14px;display:grid;grid-template-areas:\"child-record-icon child-record-title\" \". child-record-subtitle\";grid-column-gap:8px;column-gap:8px;grid-row-gap:4px;row-gap:4px;align-items:center}lib-child-records-widget-view .accordion .accordion-body{margin-top:1rem;background-color:#fcfdff;border-radius:.5rem}lib-child-records-widget-view .accordion .accordion-body .mat-card{margin-bottom:16px!important}lib-child-records-widget-view .accordion .accordion-collapse{background-color:#fcfdff}lib-child-records-widget-view .data-detail-content{margin:0!important}lib-child-records-widget-view .child-record-title{font-weight:500!important;font-size:12px!important;color:#10172b!important;margin:0!important;column-gap:15px}lib-child-records-widget-view .data-detail-title{margin:0 0 8px!important}lib-child-records-widget-view .mat-icon{height:18px;min-height:18px;width:18px;min-width:18px}\n"] }]
|
|
153
|
+
}], function () { return [{ type: i1.FormObjectViewService }]; }, { widget: [{
|
|
154
|
+
type: Input
|
|
155
|
+
}], axonatorX1Url: [{
|
|
156
|
+
type: Input
|
|
157
|
+
}] }); })();
|
|
158
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpbGQtcmVjb3Jkcy13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9jaGlsZC1yZWNvcmRzLXdpZGdldC12aWV3L2NoaWxkLXJlY29yZHMtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvY2hpbGQtcmVjb3Jkcy13aWRnZXQtdmlldy9jaGlsZC1yZWNvcmRzLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWMsS0FBSyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBR3hGLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQUMxRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0saURBQWlELENBQUM7Ozs7SUNMakYsOEJBQWtIO0lBQzlHLDhCQUE4QjtJQUFDLDhCQUFrRTtJQUFBLGlCQUFNO0lBQ3ZHLDJCQUFLO0lBQUEsWUFBaUI7SUFBQSxpQkFBTTtJQUNoQyxpQkFBTTs7O0lBSGdGLGdEQUEyQjtJQUV4RyxlQUFpQjtJQUFqQiwwQ0FBaUI7OztJQWVkLGtDQUF3STs7SUFBOUIsNkJBQWU7OztJQUdySCwwQkFBc047OztJQUN0TiwwQkFBb0o7OztJQUd4SiwwQkFBdUo7OztJQUd2SiwrQkFBc0U7SUFDbEUsd0NBR3FEO0lBQ3pELGlCQUFNOzs7O0lBSmlCLGVBQW1EO0lBQW5ELDRFQUFtRCw0QkFBQSxtREFBQSx3Q0FBQTs7OztJQXZCdEYsMkJBQXlDO0lBQ3JDLDhCQUF1RTtJQUFuQyxxSEFBUyx3QkFBd0IsSUFBQztJQUNsRSw4QkFBNEQ7SUFDeEQsOEJBQXlSO0lBQXpLLHVRQUFTLHlFQUFnRSxJQUFDO0lBQ3hMLDhCQUE4QjtJQUM1QiwrQkFBcUM7SUFFakMsK0JBQW9GO0lBQ3BGLGdDQUFnQztJQUFBLFlBQWU7SUFBQSxpQkFBTztJQUN0RCw2QkFBcUM7SUFBQSxhQUFrQjtJQUFBLGlCQUFJO0lBQy9ELGlCQUFNO0lBQ1YsaUJBQU07SUFDTix5R0FBd0k7SUFDeEksdUNBQzRGO0lBRGxCLDJRQUFTLHlFQUFnRSxJQUFDO0lBRWhKLHlGQUFzTjtJQUN0Tix5RkFBb0o7SUFFeEosaUJBQVM7SUFDVCx5RkFBdUo7SUFDdkosaUJBQU07SUFDTixvQ0FBb0s7SUFDcEsseUZBS007SUFDTixpQkFBTTtJQUNWLGlCQUFNO0lBQ1YsaUJBQU07SUFDVixpQkFBTTs7OztJQTVCaU0sZUFBNkY7SUFBN0Ysa0lBQTZGO0lBS2hQLGVBQWU7SUFBZixvQ0FBZTtJQUNWLGVBQWtCO0lBQWxCLHVDQUFrQjtJQUdqRCxlQUFvRTtJQUFwRSwwR0FBb0U7SUFDekQsZUFBOEM7SUFBOUMseUVBQThDO0lBQTRJLGtJQUE2Riw2R0FBQTtJQUV0UyxlQUFzSTtJQUF0SSxpTUFBc0k7SUFDdEksZUFBa0U7SUFBbEUsd0dBQWtFO0lBR3RFLGVBQWtFO0lBQWxFLHdHQUFrRTtJQUVwRCxlQUF3RTtJQUF4RSwrR0FBd0U7SUFDL0QsZUFBc0M7SUFBdEMsaUVBQXNDOzs7SUFVL0UsNkJBQWlFO0lBQzdELCtCQUFxQztJQUNqQywrQkFBb0Y7SUFDcEYsZ0NBQWlDO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUM3QyxpQkFBTTtJQUNWLDBCQUFlOztBRDdCZixNQUFNLE9BQU8sK0JBQStCO0lBYzFDLFlBQ1Usc0JBQTZDO1FBQTdDLDJCQUFzQixHQUF0QixzQkFBc0IsQ0FBdUI7UUFkdkQsMkJBQXNCLEdBQWtDLElBQUksR0FBRyxFQUE0QixDQUFDO1FBQzVGLHlCQUFvQixHQUF3QixJQUFJLEdBQUcsRUFBa0IsQ0FBQztRQUN0RSwyQkFBc0IsR0FBd0IsSUFBSSxHQUFHLEVBQWtCLENBQUM7UUFTdEUsbUJBQWMsR0FBTSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBQyxjQUFjLENBQUMsQ0FBQztJQUlqRCxDQUFDO0lBRVAsUUFBUTtRQUNOLElBQUksQ0FBQyxPQUFPLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDO0lBQ3BELENBQUM7SUFFRCxlQUFlLENBQUMsZUFBNEIsRUFBRSxZQUFvQixFQUFFLGNBQXNCO1FBRXhGLElBQUcsQ0FBQyxDQUFDLFlBQVksSUFBSSxJQUFJLENBQUMsc0JBQXNCLENBQUMsRUFBQztZQUNoRCxJQUFJLENBQUMsc0JBQXNCLENBQUMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQztZQUN2RCxJQUFJLENBQUMsc0JBQXNCLENBQUMsb0JBQW9CLENBQUMsY0FBYyxFQUFDLFlBQVksRUFBQyxJQUFJLENBQUMsTUFBTSxDQUFDLFdBQVcsRUFBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsaUJBQWlCLEVBQUMsRUFBRTtnQkFDakosSUFBSSxDQUFDLHNCQUFzQixDQUFDLFlBQVksQ0FBQyxHQUFHLGlCQUFpQixDQUFDO2dCQUM5RCxJQUFJLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxHQUFHLGVBQWUsQ0FBQyxZQUFZLElBQUksTUFBTSxDQUFDO2dCQUN2RixJQUFJLENBQUMsc0JBQXNCLENBQUMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxHQUFHLEtBQUssQ0FBQztZQUMxRCxDQUFDLENBQUMsQ0FBQTtTQUNIOztZQUVDLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxlQUFlLENBQUMsRUFBRSxDQUFDLEdBQUcsZUFBZSxDQUFDLFlBQVksSUFBSSxNQUFNLENBQUM7SUFDM0YsQ0FBQzs7OEdBbENVLCtCQUErQjtrRkFBL0IsK0JBQStCO1FDYjVDLGdGQUdNO1FBRU4sa0ZBK0JNO1FBQ04sa0dBS2U7O1FBMUNSLDZDQUF3QjtRQUtSLGVBQWdCO1FBQWhCLHNFQUFnQjtRQWdDeEIsZUFBK0M7UUFBL0Msd0VBQStDOzt1RkR4QmpELCtCQUErQjtjQU4zQyxTQUFTOzJCQUNFLCtCQUErQixpQkFHekIsaUJBQWlCLENBQUMsSUFBSTt3RUFXM0IsTUFBTTtrQkFBZCxLQUFLO1lBRUcsYUFBYTtrQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgSW5wdXQsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNlY3Rpb25GaWVsZCB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2UvZGF0YS1kZXRhaWwtdmlldy9zZWN0aW9uLWZpZWxkJztcbmltcG9ydCB7IERhdGFEZXRhaWxWaWV3RHRvIH0gZnJvbSAnLi4vLi4vZGF0YS1kZXRhaWwtdmlldy1kdG8nO1xuaW1wb3J0IHsgRm9ybU9iamVjdFZpZXdTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vZm9ybS1vYmplY3Qtdmlldy5zZXJ2aWNlJztcbmltcG9ydCB7IENoaWxkUmVjb3JkIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL2NoaWxkLXJlY29yZCc7XG5pbXBvcnQgeyBEZXRhaWxWaWV3VHlwZSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2UvY29tbW9uL2RldGFpbC12aWV3LWVudW1zJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWNoaWxkLXJlY29yZHMtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2hpbGQtcmVjb3Jkcy13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NoaWxkLXJlY29yZHMtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbiA6IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgQ2hpbGRSZWNvcmRzV2lkZ2V0Vmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIGNoaWxkUmVjb3Jkc0RldGFpbFZpZXc6IE1hcDxzdHJpbmcsRGF0YURldGFpbFZpZXdEdG8+ID0gbmV3IE1hcDxzdHJpbmcsRGF0YURldGFpbFZpZXdEdG8+KCk7XG4gIGV4cGFuZGVkQ2hpbGRSZWNvcmRzOiBNYXA8c3RyaW5nLGJvb2xlYW4+ID0gbmV3IE1hcDxzdHJpbmcsYm9vbGVhbj4oKTtcbiAgY2hpbGRSZWNvcmRzSW5Qcm9ncmVzczogTWFwPHN0cmluZyxib29sZWFuPiA9IG5ldyBNYXA8c3RyaW5nLGJvb2xlYW4+KCk7XG4gIGlzRXhwYW5kZWQ6IGJvb2xlYW47XG5cbiAgLypcbiAgKiB3aWRnZXQgb2JqZWN0XG4gICovXG4gICAgQElucHV0KCkgd2lkZ2V0OiBDaGlsZFJlY29yZDtcbiAgICBzZWN0aW9uOiBTZWN0aW9uRmllbGQ7XG4gICAgQElucHV0KCkgYXhvbmF0b3JYMVVybDogc3RyaW5nO1xuICAgIGRldGFpbFZpZXdUeXBlOiBhbnk9T2JqZWN0LmFzc2lnbih7fSxEZXRhaWxWaWV3VHlwZSk7XG5cbiAgY29uc3RydWN0b3IoICAgICAgIFxuICAgIHByaXZhdGUgX2Zvcm1PYmplY3RWaWV3U2VydmljZTogRm9ybU9iamVjdFZpZXdTZXJ2aWNlLFxuICAgICkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5zZWN0aW9uLnNob3dQcm9tcHQgPSB0aGlzLnNlY3Rpb24uc2hvd1Byb21wdDtcbiAgfVxuXG4gIHRvZ2dsZUFjY29yZGlvbihhY2NvcmRpb25Ub2dnbGU6IEhUTUxFbGVtZW50LCBmb3Jtb2JqZWN0SWQ6IHN0cmluZywgY2hpbGRTZWN0aW9uSWQ6IG51bWJlcik6IHZvaWR7XG4gICAgXG4gICAgaWYoIShmb3Jtb2JqZWN0SWQgaW4gdGhpcy5jaGlsZFJlY29yZHNEZXRhaWxWaWV3KSl7XG4gICAgICB0aGlzLmNoaWxkUmVjb3Jkc0luUHJvZ3Jlc3NbYWNjb3JkaW9uVG9nZ2xlLmlkXSA9IHRydWU7XG4gICAgICB0aGlzLl9mb3JtT2JqZWN0Vmlld1NlcnZpY2UuY3JlYXRlRGF0YURldGFpbFZpZXcoY2hpbGRTZWN0aW9uSWQsZm9ybW9iamVjdElkLHRoaXMud2lkZ2V0LmNoaWxkRm9ybUlkLHRoaXMuYXhvbmF0b3JYMVVybCkudGhlbigoZGF0YURldGFpbFNlY3Rpb24pPT57XG4gICAgICAgIHRoaXMuY2hpbGRSZWNvcmRzRGV0YWlsVmlld1tmb3Jtb2JqZWN0SWRdID0gZGF0YURldGFpbFNlY3Rpb247XG4gICAgICAgIHRoaXMuZXhwYW5kZWRDaGlsZFJlY29yZHNbYWNjb3JkaW9uVG9nZ2xlLmlkXSA9IGFjY29yZGlvblRvZ2dsZS5hcmlhRXhwYW5kZWQgPT0gJ3RydWUnO1xuICAgICAgICB0aGlzLmNoaWxkUmVjb3Jkc0luUHJvZ3Jlc3NbYWNjb3JkaW9uVG9nZ2xlLmlkXSA9IGZhbHNlO1xuICAgICAgfSlcbiAgICB9XG4gICAgZWxzZVxuICAgICAgdGhpcy5leHBhbmRlZENoaWxkUmVjb3Jkc1thY2NvcmRpb25Ub2dnbGUuaWRdID0gYWNjb3JkaW9uVG9nZ2xlLmFyaWFFeHBhbmRlZCA9PSAndHJ1ZSc7XG4gIH1cbn1cbiIsIjxkaXYgICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCIgY2xhc3M9XCJjaGlsZC1yZWNvcmQtdGl0bGUgZmxleCBpdGVtcy1jZW50ZXIgdGV4dC1zbVwiIFtuZ1N3aXRjaF09XCJ3aWRnZXQuc3ViVHlwZVwiPlxuICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLXN0YXJ0XCI+IDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19jaGlsZF9yZWNvcmRzXCI+PC9tYXQtaWNvbj48L2Rpdj5cbiAgICA8ZGl2Pnt7d2lkZ2V0LnByb21wdH19PC9kaXY+XG48L2Rpdj4gIFxuXG48ZGl2ICpuZ0Zvcj1cImxldCBjaGlsZCBvZiB3aWRnZXQ/LnZhbHVlXCI+ICAgIFxuICAgIDxkaXYgY2xhc3M9XCJhY2NvcmRpb24gY2hpbGQtcmVjb3JkXCIgKGNsaWNrKT1cIiRldmVudC5zdG9wUHJvcGFnYXRpb24oKVwiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiYWNjb3JkaW9uLWl0ZW0gYmctd2hpdGUgYm9yZGVyIGJvcmRlci1ncmF5LTIwMFwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImFjY29yZGlvbi1oZWFkZXIgbWItMCBzbTpweS00IHNtOnBsLTEwIHNtOnByLTIgcC00XCIgaWQ9XCJhY2NvcmRpb25IZWFkaW5nXCIgZGF0YS1icy10b2dnbGU9XCJjb2xsYXBzZVwiIChjbGljayk9XCJ0b2dnbGVBY2NvcmRpb24oYWNjb3JkaW9uVG9nZ2xlLGNoaWxkLklkLHNlY3Rpb24uY2hpbGRTZWN0aW9uSWQpXCIgW2F0dHIuZGF0YS1icy10YXJnZXRdPVwiJyMnK3NlY3Rpb24ud2lkZ2V0LmlkZW50aWZpZXIrJ18nK2NoaWxkLklkKydfJytzZWN0aW9uLmNoaWxkU2VjdGlvbklkXCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC1pbmZvXCI+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNoaWxkcmVuLXRpdGxlIHRleHQtc21cIiA+XG4gICAgICAgICAgICAgICAgICAgIFxuICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dCBjaGlsZC1yZWNvcmQtaWNvblwiIHN2Z0ljb249XCJheG9fY2hpbGRfcmVjb3Jkc1wiPjwvbWF0LWljb24+IFxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImNoaWxkLXJlY29yZFRpdGxlXCI+e3tjaGlsZC50aXRsZX19PC9zcGFuPiAgICAgICAgXG4gICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwiY2hpbGQtcmVjb3JkLXN1YnRpdGxlIG0tMFwiPnt7Y2hpbGQuc3ViVGl0bGV9fTwvcD5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPG1hdC1zcGlubmVyICpuZ0lmPVwiY2hpbGRSZWNvcmRzSW5Qcm9ncmVzc1tzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaGlsZC5JZF1cIiBjbGFzcz1cImV4cGFuZC1idXR0b25cIiBbZGlhbWV0ZXJdPVwiMTVcIj48L21hdC1zcGlubmVyPlxuICAgICAgICAgICAgPGJ1dHRvbiAjYWNjb3JkaW9uVG9nZ2xlIFtpZF0gPVwic2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hpbGQuSWRcIiAgIChjbGljayk9XCJ0b2dnbGVBY2NvcmRpb24oYWNjb3JkaW9uVG9nZ2xlLGNoaWxkLklkLHNlY3Rpb24uY2hpbGRTZWN0aW9uSWQpXCIgY2xhc3M9XCJleHBhbmQtYnV0dG9uXCIgdHlwZT1cImJ1dHRvblwiIGRhdGEtYnMtdG9nZ2xlPVwiY29sbGFwc2VcIiBbYXR0ci5kYXRhLWJzLXRhcmdldF09XCInIycrc2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hpbGQuSWQrJ18nK3NlY3Rpb24uY2hpbGRTZWN0aW9uSWRcIiBhcmlhLWV4cGFuZGVkPVwiZmFsc2VcIlxuICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1jb250cm9sc109XCJzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaGlsZC5JZCsnXycrc2VjdGlvbi5jaGlsZFNlY3Rpb25JZFwiPlxuICAgICAgICAgICAgICAgIDxpbWcgKm5nSWY9XCIhZXhwYW5kZWRDaGlsZFJlY29yZHNbc2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hpbGQuSWRdICYmICFjaGlsZFJlY29yZHNJblByb2dyZXNzW3NlY3Rpb24ud2lkZ2V0LmlkZW50aWZpZXIrJ18nK2NoaWxkLklkXVwiIGNsYXNzPVwiY2hpbGQtZXhwYW5kLWljb25cIiBhbHQ9XCJcIiBzcmM9XCJhc3NldHMvaWNvbnMvYXhvL2V4cGFuZF9pY29uLnN2Z1wiPlxuICAgICAgICAgICAgICAgIDxpbWcgKm5nSWY9XCJleHBhbmRlZENoaWxkUmVjb3Jkc1tzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaGlsZC5JZF1cIiBjbGFzcz1cImNoaWxkLWV4cGFuZC1pY29uXCIgYWx0PVwiXCIgc3JjPVwiYXNzZXRzL2ljb25zL2F4by9jb2xsYXBzZV9pY29uLnN2Z1wiPlxuXG4gICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgIDxpbWcgKm5nSWY9XCJleHBhbmRlZENoaWxkUmVjb3Jkc1tzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaGlsZC5JZF1cIiBjbGFzcz1cImNoaWxkLWV4cGFuZGVkLWljb25cIiBhbHQ9XCJcIiBzcmM9XCJhc3NldHMvaWNvbnMvYXhvL2V4cGFuZGVkX2Fycm93LnN2Z1wiPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8ZGl2ICNhY2NvcmRpb25Cb2R5IFtpZF09XCJzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaGlsZC5JZCsnXycrc2VjdGlvbi5jaGlsZFNlY3Rpb25JZFwiIGNsYXNzPVwiYWNjb3JkaW9uLWNvbGxhcHNlIGNvbGxhcHNlXCIgYXJpYS1sYWJlbGxlZGJ5PVwiYWNjb3JkaW9uSGVhZGluZ1wiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImFjY29yZGlvbi1ib2R5XCIgKm5nSWY9XCJjaGlsZFJlY29yZHNEZXRhaWxWaWV3W2NoaWxkLklkXVwiID5cbiAgICAgICAgICAgICAgICA8ZHluYW1pYy1kYXRhLXZpZXcgW2RhdGFEZXRhaWxWaWV3XT1cImNoaWxkUmVjb3Jkc0RldGFpbFZpZXdbY2hpbGQuSWRdXCJcbiAgICAgICAgICAgICAgICBbYmFzZVVybF09XCJiYXNlVXJsXCIgXG4gICAgICAgICAgICAgICAgW3ZpZXdUeXBlXT1cImRldGFpbFZpZXdUeXBlLkZvcm1PYmplY3RWaWV3XCJcbiAgICAgICAgICAgICAgICBbYXhvbmF0b3JYMVVybF0gPVwiYXhvbmF0b3JYMVVybFwiPjwvZHluYW1pYy1kYXRhLXZpZXc+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbjwvZGl2PlxuPG5nLWNvbnRhaW5lciAqbmdJZj1cIiF3aWRnZXQudmFsdWUgfHwgd2lkZ2V0LnZhbHVlLmxlbmd0aCA8PSAwXCIgPlxuICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBnYXAtM1wiPlxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dCBjaGlsZC1yZWNvcmQtaWNvblwiIHN2Z0ljb249XCJheG9fY2hpbGRfcmVjb3Jkc1wiPjwvbWF0LWljb24+IFxuICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gICAgPC9kaXY+XG48L25nLWNvbnRhaW5lcj5cblxuXG4iXX0=
|