ax-common-ui-lib 1.0.0-qa.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/ax-common-ui-lib.d.ts +5 -0
- package/esm2020/ax-common-ui-lib.mjs +5 -0
- package/esm2020/lib/app-list/app-list-dto.mjs +29 -0
- package/esm2020/lib/app-list/app-list.component.mjs +421 -0
- package/esm2020/lib/app-list/my-app-list.service.mjs +142 -0
- package/esm2020/lib/app-list/organization-list-dto.mjs +29 -0
- package/esm2020/lib/ax-app-common-lib.component.mjs +26 -0
- package/esm2020/lib/ax-app-common-lib.module.mjs +147 -0
- package/esm2020/lib/ax-app-common-lib.service.mjs +14 -0
- package/esm2020/lib/axo-filters/axo-filters.component.mjs +422 -0
- package/esm2020/lib/axo-filters/axo-filters.module.mjs +59 -0
- package/esm2020/lib/axo-filters/axo-filters.service.mjs +85 -0
- package/esm2020/lib/axo-map/axo-map.component.mjs +40 -0
- package/esm2020/lib/axo-map/axo-map.mjs +37 -0
- package/esm2020/lib/axo-map/axo-map.module.mjs +41 -0
- package/esm2020/lib/axo-map/public-api.mjs +7 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.component.mjs +84 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.module.mjs +38 -0
- package/esm2020/lib/axo-search-bar/public.api.mjs +3 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.component.mjs +155 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.module.mjs +34 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.service.mjs +29 -0
- package/esm2020/lib/axo-snack-bar/public-api.mjs +3 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.module.mjs +27 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.service.mjs +37 -0
- package/esm2020/lib/axo-state-manager/public-api.mjs +3 -0
- package/esm2020/lib/axo-utils/axo-utils.mjs +149 -0
- package/esm2020/lib/axo-utils/axo-utils.module.mjs +25 -0
- package/esm2020/lib/axo-utils/constants.mjs +3 -0
- package/esm2020/lib/axo-utils/data-source-types.mjs +12 -0
- package/esm2020/lib/axo-utils/field-list-search-pipe.mjs +32 -0
- package/esm2020/lib/axo-utils/filter-search-pipe.mjs +16 -0
- package/esm2020/lib/axo-utils/public-api.mjs +2 -0
- package/esm2020/lib/axo-utils/search-pipe/choice-search.pipe.mjs +33 -0
- package/esm2020/lib/axo-utils/search-pipe.mjs +36 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.component.mjs +196 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.module.mjs +29 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.service.mjs +122 -0
- package/esm2020/lib/code-editor/code-editor-modes.mjs +11 -0
- package/esm2020/lib/code-editor/code-editor-themes.mjs +8 -0
- package/esm2020/lib/code-editor/code-editor.component.mjs +60 -0
- package/esm2020/lib/code-editor/code-editor.module.mjs +36 -0
- package/esm2020/lib/code-editor/icode-editor-options.mjs +2 -0
- package/esm2020/lib/code-editor/public-api.mjs +3 -0
- package/esm2020/lib/common-dto/attributes-dto.mjs +39 -0
- package/esm2020/lib/common-dto/dashboard-dto.mjs +12 -0
- package/esm2020/lib/common-dto/dataListFilter-dto.mjs +13 -0
- package/esm2020/lib/common-dto/elements-dto.mjs +61 -0
- package/esm2020/lib/common-dto/form-dto.mjs +48 -0
- package/esm2020/lib/common-lib-configuration.service.mjs +21 -0
- package/esm2020/lib/common-property-panel/properties/properties.service.mjs +30 -0
- package/esm2020/lib/common-utils/entity-base.mjs +12 -0
- package/esm2020/lib/common-utils/iFlatten.mjs +2 -0
- package/esm2020/lib/common-utils/report.mjs +45 -0
- package/esm2020/lib/common.service.mjs +78 -0
- package/esm2020/lib/converters/convert-to-new-service.mjs +11 -0
- package/esm2020/lib/converters/convert-to-old-service.mjs +168 -0
- package/esm2020/lib/core/auth/auth.service.mjs +146 -0
- package/esm2020/lib/core/core.module.mjs +37 -0
- package/esm2020/lib/core/icons/icons.module.mjs +255 -0
- package/esm2020/lib/core/transloco/transloco.http-loader.mjs +32 -0
- package/esm2020/lib/core/transloco/transloco.module.mjs +94 -0
- package/esm2020/lib/core/user/axo-user.mjs +46 -0
- package/esm2020/lib/core/user/user-data.service.mjs +46 -0
- package/esm2020/lib/core/user/user.service.mjs +87 -0
- package/esm2020/lib/core/user/user.types.mjs +2 -0
- package/esm2020/lib/dashboard-lib/dashboard-builder.service.mjs +56 -0
- package/esm2020/lib/dashboard-lib/dashboard-control.service.mjs +92 -0
- package/esm2020/lib/dashboard-lib/dashboard-element/dashboard-element.mjs +11 -0
- package/esm2020/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.mjs +9 -0
- package/esm2020/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.mjs +107 -0
- package/esm2020/lib/dashboard-lib/dashboard-lib.module.mjs +111 -0
- package/esm2020/lib/dashboard-lib/dashboard-list.service.mjs +73 -0
- package/esm2020/lib/dashboard-lib/dashboard.mjs +15 -0
- package/esm2020/lib/dashboard-lib/send-to-dashboard.service.mjs +96 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.component.mjs +241 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.service.mjs +32 -0
- package/esm2020/lib/data-view-lib/data-view/axo-card.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/axo-tag.mjs +48 -0
- package/esm2020/lib/data-view-lib/data-view/board-column.mjs +24 -0
- package/esm2020/lib/data-view-lib/data-view/board-view.mjs +45 -0
- package/esm2020/lib/data-view-lib/data-view/cardConfig.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/conditional-formatting.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view/coordinate.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-enums.mjs +68 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-filter.mjs +47 -0
- package/esm2020/lib/data-view-lib/data-view/data-view.mjs +66 -0
- package/esm2020/lib/data-view-lib/data-view/idata-view.mjs +2 -0
- package/esm2020/lib/data-view-lib/data-view/image-style.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/info-window.mjs +23 -0
- package/esm2020/lib/data-view-lib/data-view/location.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/map-view.mjs +41 -0
- package/esm2020/lib/data-view-lib/data-view/prefix-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tag-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tagConfig.mjs +63 -0
- package/esm2020/lib/data-view-lib/data-view/task-asset-form-object-dto.mjs +72 -0
- package/esm2020/lib/data-view-lib/data-view/task-column-value.mjs +43 -0
- package/esm2020/lib/data-view-lib/data-view/task-view.mjs +31 -0
- package/esm2020/lib/data-view-lib/data-view/task.mjs +199 -0
- package/esm2020/lib/data-view-lib/data-view/value-style.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.component.mjs +661 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.service.mjs +102 -0
- package/esm2020/lib/data-view-lib/data-view-header/data-view-header.component.mjs +536 -0
- package/esm2020/lib/data-view-lib/data-view-lib.module.mjs +88 -0
- package/esm2020/lib/data-view-lib/data-view.service.mjs +211 -0
- package/esm2020/lib/data-view-lib/public-api.mjs +28 -0
- package/esm2020/lib/directive/adjust-font-size.mjs +49 -0
- package/esm2020/lib/drill-through/drill-through.component.mjs +153 -0
- package/esm2020/lib/drill-through/drill-through.module.mjs +33 -0
- package/esm2020/lib/drill-through/drill-through.resolver.mjs +80 -0
- package/esm2020/lib/drill-through/drill-through.service.mjs +218 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-column.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-list.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range.mjs +38 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-toggle.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression-value.mjs +32 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression.mjs +415 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-number-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/exp-sub-type.mjs +29 -0
- package/esm2020/lib/enlighten-lib/ax-expression/public-api.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/attribute.mjs +247 -0
- package/esm2020/lib/enlighten-lib/data-model/data-model.mjs +52 -0
- package/esm2020/lib/enlighten-lib/data-model/dependee.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/dependent.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/entity.mjs +71 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs +113 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree-enums.mjs +6 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.component.mjs +301 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.module.mjs +67 -0
- package/esm2020/lib/enlighten-lib/elements/Property.mjs +3 -0
- package/esm2020/lib/enlighten-lib/elements/ax-element.mjs +55 -0
- package/esm2020/lib/enlighten-lib/elements/element-factory.mjs +38 -0
- package/esm2020/lib/enlighten-lib/enlighten-lib.module.mjs +308 -0
- package/esm2020/lib/enlighten-lib/enums/bread-crumbs-style.mjs +6 -0
- package/esm2020/lib/enlighten-lib/enums/operator-text-enum.mjs +11 -0
- package/esm2020/lib/enlighten-lib/fields/attribute-data.mjs +167 -0
- package/esm2020/lib/enlighten-lib/fields/entity.mjs +16 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-audio.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-barcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-childrecord.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-counter.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-date.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-decimal.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-document.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-file.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-image.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-location.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-number.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-qrcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-signature.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-staticmedia.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-text.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-time.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-uniqueid.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/axo-timestamp.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/choicelist.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/datetime.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/hyperlink.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ienlighten-type.mjs +2 -0
- package/esm2020/lib/enlighten-lib/fields/types/toggle.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/video.mjs +6 -0
- package/esm2020/lib/enlighten-lib/filters/ax-filter.mjs +74 -0
- package/esm2020/lib/enlighten-lib/filters/ax-operator.mjs +88 -0
- package/esm2020/lib/enlighten-lib/filters/chart-filter-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/filters/condition-type.mjs +49 -0
- package/esm2020/lib/enlighten-lib/filters/dataList-searchNode.mjs +48 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterExpression.mjs +32 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterOperator.mjs +43 -0
- package/esm2020/lib/enlighten-lib/filters/dataListSeachQueryTree.mjs +25 -0
- package/esm2020/lib/enlighten-lib/filters/filter-category.mjs +78 -0
- package/esm2020/lib/enlighten-lib/filters/general-filter-type.mjs +13 -0
- package/esm2020/lib/enlighten-lib/filters/gridster-properties.mjs +31 -0
- package/esm2020/lib/enlighten-lib/filters/iax-filter.mjs +2 -0
- package/esm2020/lib/enlighten-lib/filters/search-node.mjs +50 -0
- package/esm2020/lib/enlighten-lib/filters/static-widget.mjs +24 -0
- package/esm2020/lib/enlighten-lib/property/element-property.mjs +11 -0
- package/esm2020/lib/enlighten-lib/property/filter-category-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/property/filter-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report/chart-filter/chart-filter.component.mjs +393 -0
- package/esm2020/lib/enlighten-lib/report/element.service.mjs +115 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.mjs +1002 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.mjs +144 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.mjs +576 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.mjs +66 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/border.mjs +18 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-factory.mjs +80 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-property.mjs +4 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-type.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart.mjs +123 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/dimension.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/font.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/fontStyle.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/label.mjs +6 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/legend.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/matrix.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/shadow.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/style.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/text-style.mjs +34 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/title.mjs +12 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.component.mjs +357 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.directive.mjs +16 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/ichart-component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/igraphical-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.mjs +856 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.mjs +97 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/page/page.mjs +48 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.mjs +934 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.mjs +103 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text-chart.mjs +56 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.component.mjs +302 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/iproperty.component.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/ireport.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/report-builder-master.service.mjs +83 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.component.mjs +313 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.module.mjs +71 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.service.mjs +246 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/aggregate.mjs +10 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/column-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/itabular-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/orderby-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/row-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/table-style.mjs +47 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.mjs +4464 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.mjs +1583 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.mjs +70 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.mjs +1837 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.mjs +756 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.component.mjs +156 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.mjs +245 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.service.mjs +960 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular.mjs +196 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/value-formatting.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report-control.service.mjs +41 -0
- package/esm2020/lib/enlighten-lib/utils/utils.mjs +26 -0
- package/esm2020/lib/field-list-lib/fields-list.service.mjs +299 -0
- package/esm2020/lib/filters/calender-filter/calender-filter.component.mjs +351 -0
- package/esm2020/lib/filters/category-filter/category-filter.component.mjs +207 -0
- package/esm2020/lib/filters/category-filter/category-filter.service.mjs +31 -0
- package/esm2020/lib/filters/category-filter/category.service.mjs +45 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.component.mjs +178 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.service.mjs +53 -0
- package/esm2020/lib/filters/common-filter/common-filter.component.mjs +310 -0
- package/esm2020/lib/filters/common-filter/common-filter.service.mjs +106 -0
- package/esm2020/lib/filters/custom-scroll-directives.mjs +45 -0
- package/esm2020/lib/filters/date-time-filter/date-time-filter.component.mjs +345 -0
- package/esm2020/lib/filters/filter-footer/filter-footer.component.mjs +62 -0
- package/esm2020/lib/filters/filters.component.mjs +688 -0
- package/esm2020/lib/filters/filters.module.mjs +196 -0
- package/esm2020/lib/filters/filters.service.mjs +147 -0
- package/esm2020/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.mjs +202 -0
- package/esm2020/lib/filters/metaColumnTypes.mjs +36 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.component.mjs +211 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.service.mjs +214 -0
- package/esm2020/lib/filters/number-filter/number-filter.component.mjs +321 -0
- package/esm2020/lib/filters/public-api.mjs +15 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.component.mjs +180 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.service.mjs +151 -0
- package/esm2020/lib/filters/single-select-filter/single-select-filter.component.mjs +177 -0
- package/esm2020/lib/filters/time-filter/time-filter.component.mjs +301 -0
- package/esm2020/lib/filters/user-filter/user-filter.component.mjs +178 -0
- package/esm2020/lib/filters/user-filter/user-filter.service.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.mjs +346 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.mjs +105 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.mjs +41 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.mjs +10 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.component.mjs +823 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.mjs +211 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.module.mjs +224 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.service.mjs +171 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.mjs +94 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.mjs +40 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.mjs +31 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.mjs +86 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.mjs +180 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.mjs +54 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.mjs +163 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.mjs +61 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.mjs +64 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.mjs +119 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.mjs +37 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.mjs +24 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.mjs +19 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.mjs +49 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.mjs +50 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.mjs +25 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.mjs +65 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.mjs +28 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/data-detail-view-dto.mjs +55 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.mjs +85 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.component.mjs +209 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.module.mjs +273 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.service.mjs +268 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.mjs +68 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.mjs +155 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.mjs +158 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.mjs +248 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.mjs +179 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.mjs +210 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.mjs +58 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.mjs +76 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.mjs +263 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.mjs +17 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.mjs +335 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.mjs +270 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.mjs +498 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.mjs +203 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.mjs +70 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.mjs +146 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.mjs +84 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.mjs +144 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.mjs +95 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.mjs +79 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.mjs +113 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/meta-section/meta-section.component.mjs +157 -0
- package/esm2020/lib/form-object/form-object-view/section/section.component.mjs +75 -0
- package/esm2020/lib/form-object/form-object-view/section-field/section-field.component.mjs +30 -0
- package/esm2020/lib/form-object/form-object-view/section-view/section-view.component.mjs +110 -0
- package/esm2020/lib/form-object/public-api.mjs +3 -0
- package/esm2020/lib/form-permission.service.mjs +106 -0
- package/esm2020/lib/forms/ax-form.mjs +212 -0
- package/esm2020/lib/forms/iform.mjs +2 -0
- package/esm2020/lib/forms/page/common/axo-response-status.mjs +6 -0
- package/esm2020/lib/forms/page/common/constants.mjs +399 -0
- package/esm2020/lib/forms/page/common/detail-view-enums.mjs +8 -0
- package/esm2020/lib/forms/page/common/flatten-status-enum.mjs +10 -0
- package/esm2020/lib/forms/page/common/form.constant.mjs +87 -0
- package/esm2020/lib/forms/page/common/property-panel-field.mjs +5 -0
- package/esm2020/lib/forms/page/common/widget-enums.mjs +269 -0
- package/esm2020/lib/forms/page/common/widget-value-handler.mjs +321 -0
- package/esm2020/lib/forms/page/data-detail-view/ax-section.mjs +51 -0
- package/esm2020/lib/forms/page/data-detail-view/collection-view.mjs +30 -0
- package/esm2020/lib/forms/page/data-detail-view/data-details.mjs +60 -0
- package/esm2020/lib/forms/page/data-detail-view/section-field.mjs +32 -0
- package/esm2020/lib/forms/page/data-detail-view/section.mjs +33 -0
- package/esm2020/lib/forms/page/data-list/data-list-column.mjs +45 -0
- package/esm2020/lib/forms/page/data-list/data-list.mjs +64 -0
- package/esm2020/lib/forms/page/form-object.mjs +17 -0
- package/esm2020/lib/forms/page/form-page.mjs +28 -0
- package/esm2020/lib/forms/page/value-converters/displayMode-to-bool.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/form-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/geo-fence-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/image-annotation-value-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/language-source-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/list-view-title-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-float-converter.mjs +15 -0
- package/esm2020/lib/forms/page/value-converters/parse-int-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-string-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/publicUrls-string-to-array.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/record-limit-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/restriction-mode-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-value-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-date-time-converter.mjs +19 -0
- package/esm2020/lib/forms/page/value-converters/string-to-number -converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/textBox-mask-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/validate-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/value-without-mask-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/widget-concrete-class-converter.mjs +22 -0
- package/esm2020/lib/forms/page/value-converters/widget-deserializer.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/apply-geofences.mjs +65 -0
- package/esm2020/lib/forms/page/widgets/auto-number.mjs +87 -0
- package/esm2020/lib/forms/page/widgets/ax-audio.mjs +154 -0
- package/esm2020/lib/forms/page/widgets/ax-document.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/ax-image.mjs +183 -0
- package/esm2020/lib/forms/page/widgets/bar-code.mjs +212 -0
- package/esm2020/lib/forms/page/widgets/child-record.mjs +193 -0
- package/esm2020/lib/forms/page/widgets/choicelist.mjs +375 -0
- package/esm2020/lib/forms/page/widgets/counter.mjs +69 -0
- package/esm2020/lib/forms/page/widgets/datetime.mjs +247 -0
- package/esm2020/lib/forms/page/widgets/formula.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/geofence.mjs +127 -0
- package/esm2020/lib/forms/page/widgets/gps.mjs +192 -0
- package/esm2020/lib/forms/page/widgets/group-header.mjs +200 -0
- package/esm2020/lib/forms/page/widgets/languages.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/link.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/payment.mjs +104 -0
- package/esm2020/lib/forms/page/widgets/qr-code.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/script-condition.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/signature.mjs +81 -0
- package/esm2020/lib/forms/page/widgets/static-media.mjs +130 -0
- package/esm2020/lib/forms/page/widgets/stopwatch.mjs +117 -0
- package/esm2020/lib/forms/page/widgets/sub-form.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/textbox.mjs +338 -0
- package/esm2020/lib/forms/page/widgets/timestamp.mjs +155 -0
- package/esm2020/lib/forms/page/widgets/toggle.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/unique-id.mjs +75 -0
- package/esm2020/lib/forms/page/widgets/verification.mjs +207 -0
- package/esm2020/lib/forms/page/widgets/video.mjs +151 -0
- package/esm2020/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.mjs +74 -0
- package/esm2020/lib/forms/page/widgets/widget-value/audio-video-widget-value.mjs +36 -0
- package/esm2020/lib/forms/page/widgets/widget-value/child-record-value.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choice-list-options.mjs +84 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choices-ml.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/widget-value/dateRangeValue.mjs +38 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfileParams.mjs +9 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfilesTemp.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/document-widget-value.mjs +56 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-location-value.mjs +54 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-widget-value.mjs +50 -0
- package/esm2020/lib/forms/page/widgets/widget-value/gps-widget-value.mjs +58 -0
- package/esm2020/lib/forms/page/widgets/widget-value/image-widget-value.mjs +99 -0
- package/esm2020/lib/forms/page/widgets/widget-value/language-widget-value.mjs +43 -0
- package/esm2020/lib/forms/page/widgets/widget-value/location-object-value.mjs +44 -0
- package/esm2020/lib/forms/page/widgets/widget-value/multiple-languages.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/widget-value/reference-list-object-value.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/verification-widget-value.mjs +126 -0
- package/esm2020/lib/forms/page/widgets/widget.mjs +429 -0
- package/esm2020/lib/ghost-loader/ghost-loader.component.mjs +708 -0
- package/esm2020/lib/ghost-loader/ghost-loader.module.mjs +27 -0
- package/esm2020/lib/ghost-loader/public-api.mjs +3 -0
- package/esm2020/lib/map-dialog/map-dialog.component.mjs +46 -0
- package/esm2020/lib/map-dialog/map-dialog.module.mjs +39 -0
- package/esm2020/lib/map-dialog/public-api.mjs +6 -0
- package/esm2020/lib/reports-container/public-api.mjs +8 -0
- package/esm2020/lib/reports-container/report-group/report-group.component.mjs +77 -0
- package/esm2020/lib/reports-container/reports-container-models/report-group.mjs +42 -0
- package/esm2020/lib/reports-container/reports-container-models/report-property.mjs +30 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container-enums.mjs +16 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container.mjs +29 -0
- package/esm2020/lib/reports-container/reports-container.component.mjs +60 -0
- package/esm2020/lib/reports-container/reports-container.module.mjs +52 -0
- package/esm2020/lib/reports-container/reports-container.service.mjs +29 -0
- package/esm2020/lib/scrollbar/index.mjs +3 -0
- package/esm2020/lib/scrollbar/public-api.mjs +3 -0
- package/esm2020/lib/scrollbar/scrollbar.directive.mjs +351 -0
- package/esm2020/lib/scrollbar/scrollbar.module.mjs +21 -0
- package/esm2020/lib/scrollbar/scrollbar.types.mjs +15 -0
- package/esm2020/lib/sculptor-lib/widgets/audio/audio.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/barcode/barcode.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/child-record/child-record.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/choice-list/choice-list.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/date-time/date-time.component.mjs +136 -0
- package/esm2020/lib/sculptor-lib/widgets/document/document.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/geofence/geofence.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/gps/gps.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/group-header/group-header.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/image/image.component.mjs +131 -0
- package/esm2020/lib/sculptor-lib/widgets/language/language.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/link/link.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/qr-code/qr-code.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/subform/subform.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/textbox/textbox.component.mjs +177 -0
- package/esm2020/lib/sculptor-lib/widgets/timestamp/timestamp.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/toggle/toggle.component.mjs +112 -0
- package/esm2020/lib/sculptor-lib/widgets/video/video.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/widgets.service.mjs +58 -0
- package/esm2020/lib/shared/comfirmation-modal/confirmation-modal.component.mjs +63 -0
- package/esm2020/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.mjs +83 -0
- package/esm2020/lib/shared/shared.module.mjs +51 -0
- package/esm2020/public-api.mjs +138 -0
- package/fesm2015/ax-common-ui-lib.mjs +56598 -0
- package/fesm2015/ax-common-ui-lib.mjs.map +1 -0
- package/fesm2020/ax-common-ui-lib.mjs +52373 -0
- package/fesm2020/ax-common-ui-lib.mjs.map +1 -0
- package/lib/app-list/app-list-dto.d.ts +15 -0
- package/lib/app-list/app-list.component.d.ts +62 -0
- package/lib/app-list/my-app-list.service.d.ts +69 -0
- package/lib/app-list/organization-list-dto.d.ts +15 -0
- package/lib/ax-app-common-lib.component.d.ts +8 -0
- package/lib/ax-app-common-lib.module.d.ts +24 -0
- package/lib/ax-app-common-lib.service.d.ts +6 -0
- package/lib/axo-filters/axo-filters.component.d.ts +86 -0
- package/lib/axo-filters/axo-filters.module.d.ts +16 -0
- package/lib/axo-filters/axo-filters.service.d.ts +36 -0
- package/lib/axo-map/axo-map.component.d.ts +9 -0
- package/lib/axo-map/axo-map.d.ts +14 -0
- package/lib/axo-map/axo-map.module.d.ts +10 -0
- package/lib/axo-map/public-api.d.ts +6 -0
- package/lib/axo-search-bar/axo-search-bar.component.d.ts +21 -0
- package/lib/axo-search-bar/axo-search-bar.module.d.ts +10 -0
- package/lib/axo-search-bar/public.api.d.ts +2 -0
- package/lib/axo-snack-bar/axo-snack-bar.component.d.ts +20 -0
- package/lib/axo-snack-bar/axo-snack-bar.module.d.ts +9 -0
- package/lib/axo-snack-bar/axo-snack-bar.service.d.ts +16 -0
- package/lib/axo-snack-bar/public-api.d.ts +2 -0
- package/lib/axo-state-manager/axo-state-manager.module.d.ts +7 -0
- package/lib/axo-state-manager/axo-state-manager.service.d.ts +15 -0
- package/lib/axo-state-manager/public-api.d.ts +2 -0
- package/lib/axo-utils/axo-utils.d.ts +72 -0
- package/lib/axo-utils/axo-utils.module.d.ts +10 -0
- package/lib/axo-utils/constants.d.ts +2 -0
- package/lib/axo-utils/data-source-types.d.ts +10 -0
- package/lib/axo-utils/field-list-search-pipe.d.ts +7 -0
- package/lib/axo-utils/filter-search-pipe.d.ts +7 -0
- package/lib/axo-utils/public-api.d.ts +1 -0
- package/lib/axo-utils/search-pipe/choice-search.pipe.d.ts +7 -0
- package/lib/axo-utils/search-pipe.d.ts +7 -0
- package/lib/bread-crumbs/bread-crumbs.component.d.ts +48 -0
- package/lib/bread-crumbs/bread-crumbs.module.d.ts +9 -0
- package/lib/bread-crumbs/bread-crumbs.service.d.ts +76 -0
- package/lib/code-editor/code-editor-modes.d.ts +9 -0
- package/lib/code-editor/code-editor-themes.d.ts +6 -0
- package/lib/code-editor/code-editor.component.d.ts +20 -0
- package/lib/code-editor/code-editor.module.d.ts +10 -0
- package/lib/code-editor/icode-editor-options.d.ts +51 -0
- package/lib/code-editor/public-api.d.ts +2 -0
- package/lib/common-dto/attributes-dto.d.ts +24 -0
- package/lib/common-dto/dashboard-dto.d.ts +10 -0
- package/lib/common-dto/dataListFilter-dto.d.ts +10 -0
- package/lib/common-dto/elements-dto.d.ts +51 -0
- package/lib/common-dto/form-dto.d.ts +17 -0
- package/lib/common-lib-configuration.service.d.ts +13 -0
- package/lib/common-property-panel/properties/properties.service.d.ts +18 -0
- package/lib/common-utils/entity-base.d.ts +10 -0
- package/lib/common-utils/iFlatten.d.ts +13 -0
- package/lib/common-utils/report.d.ts +26 -0
- package/lib/common.service.d.ts +50 -0
- package/lib/converters/convert-to-new-service.d.ts +6 -0
- package/lib/converters/convert-to-old-service.d.ts +26 -0
- package/lib/core/auth/auth.service.d.ts +75 -0
- package/lib/core/core.module.d.ts +12 -0
- package/lib/core/icons/icons.module.d.ts +14 -0
- package/lib/core/transloco/transloco.http-loader.d.ts +19 -0
- package/lib/core/transloco/transloco.module.d.ts +7 -0
- package/lib/core/user/axo-user.d.ts +9 -0
- package/lib/core/user/user-data.service.d.ts +25 -0
- package/lib/core/user/user.service.d.ts +45 -0
- package/lib/core/user/user.types.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-builder.service.d.ts +27 -0
- package/lib/dashboard-lib/dashboard-control.service.d.ts +31 -0
- package/lib/dashboard-lib/dashboard-element/dashboard-element.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.d.ts +7 -0
- package/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.d.ts +37 -0
- package/lib/dashboard-lib/dashboard-lib.module.d.ts +26 -0
- package/lib/dashboard-lib/dashboard-list.service.d.ts +24 -0
- package/lib/dashboard-lib/dashboard.d.ts +14 -0
- package/lib/dashboard-lib/send-to-dashboard.service.d.ts +39 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.component.d.ts +53 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.service.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-card.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-tag.d.ts +26 -0
- package/lib/data-view-lib/data-view/board-column.d.ts +12 -0
- package/lib/data-view-lib/data-view/board-view.d.ts +23 -0
- package/lib/data-view-lib/data-view/cardConfig.d.ts +11 -0
- package/lib/data-view-lib/data-view/conditional-formatting.d.ts +11 -0
- package/lib/data-view-lib/data-view/coordinate.d.ts +8 -0
- package/lib/data-view-lib/data-view/data-view-enums.d.ts +58 -0
- package/lib/data-view-lib/data-view/data-view-filter.d.ts +25 -0
- package/lib/data-view-lib/data-view/data-view.d.ts +33 -0
- package/lib/data-view-lib/data-view/idata-view.d.ts +7 -0
- package/lib/data-view-lib/data-view/image-style.d.ts +8 -0
- package/lib/data-view-lib/data-view/info-window.d.ts +10 -0
- package/lib/data-view-lib/data-view/location.d.ts +8 -0
- package/lib/data-view-lib/data-view/map-view.d.ts +21 -0
- package/lib/data-view-lib/data-view/prefix-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tag-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tagConfig.d.ts +34 -0
- package/lib/data-view-lib/data-view/task-asset-form-object-dto.d.ts +19 -0
- package/lib/data-view-lib/data-view/task-column-value.d.ts +48 -0
- package/lib/data-view-lib/data-view/task-view.d.ts +15 -0
- package/lib/data-view-lib/data-view/task.d.ts +57 -0
- package/lib/data-view-lib/data-view/value-style.d.ts +10 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.component.d.ts +142 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.service.d.ts +28 -0
- package/lib/data-view-lib/data-view-header/data-view-header.component.d.ts +85 -0
- package/lib/data-view-lib/data-view-lib.module.d.ts +19 -0
- package/lib/data-view-lib/data-view.service.d.ts +94 -0
- package/lib/data-view-lib/public-api.d.ts +27 -0
- package/lib/directive/adjust-font-size.d.ts +13 -0
- package/lib/drill-through/drill-through.component.d.ts +53 -0
- package/lib/drill-through/drill-through.module.d.ts +10 -0
- package/lib/drill-through/drill-through.resolver.d.ts +30 -0
- package/lib/drill-through/drill-through.service.d.ts +100 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-column.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-toggle.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-expression-value.d.ts +19 -0
- package/lib/enlighten-lib/ax-expression/ax-expression.d.ts +66 -0
- package/lib/enlighten-lib/ax-expression/ax-number-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/exp-sub-type.d.ts +26 -0
- package/lib/enlighten-lib/ax-expression/public-api.d.ts +23 -0
- package/lib/enlighten-lib/data-model/attribute.d.ts +60 -0
- package/lib/enlighten-lib/data-model/data-model.d.ts +32 -0
- package/lib/enlighten-lib/data-model/dependee.d.ts +11 -0
- package/lib/enlighten-lib/data-model/dependent.d.ts +11 -0
- package/lib/enlighten-lib/data-model/entity.d.ts +31 -0
- package/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.d.ts +23 -0
- package/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.d.ts +24 -0
- package/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.d.ts +25 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree-enums.d.ts +4 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.component.d.ts +67 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.module.d.ts +18 -0
- package/lib/enlighten-lib/elements/Property.d.ts +3 -0
- package/lib/enlighten-lib/elements/ax-element.d.ts +31 -0
- package/lib/enlighten-lib/elements/element-factory.d.ts +13 -0
- package/lib/enlighten-lib/enlighten-lib.module.d.ts +53 -0
- package/lib/enlighten-lib/enums/bread-crumbs-style.d.ts +4 -0
- package/lib/enlighten-lib/enums/operator-text-enum.d.ts +9 -0
- package/lib/enlighten-lib/fields/attribute-data.d.ts +55 -0
- package/lib/enlighten-lib/fields/entity.d.ts +15 -0
- package/lib/enlighten-lib/fields/types/ax-audio.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-barcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-childrecord.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-counter.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-date.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-decimal.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-document.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-file.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-image.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-location.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-number.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-qrcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-signature.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-staticmedia.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-text.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-time.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-uniqueid.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/axo-timestamp.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/choicelist.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/datetime.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/hyperlink.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ienlighten-type.d.ts +3 -0
- package/lib/enlighten-lib/fields/types/toggle.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/video.d.ts +4 -0
- package/lib/enlighten-lib/filters/ax-filter.d.ts +38 -0
- package/lib/enlighten-lib/filters/ax-operator.d.ts +40 -0
- package/lib/enlighten-lib/filters/chart-filter-type.d.ts +5 -0
- package/lib/enlighten-lib/filters/condition-type.d.ts +43 -0
- package/lib/enlighten-lib/filters/dataList-searchNode.d.ts +27 -0
- package/lib/enlighten-lib/filters/dataListFilterExpression.d.ts +20 -0
- package/lib/enlighten-lib/filters/dataListFilterOperator.d.ts +29 -0
- package/lib/enlighten-lib/filters/dataListSeachQueryTree.d.ts +15 -0
- package/lib/enlighten-lib/filters/filter-category.d.ts +43 -0
- package/lib/enlighten-lib/filters/general-filter-type.d.ts +10 -0
- package/lib/enlighten-lib/filters/gridster-properties.d.ts +17 -0
- package/lib/enlighten-lib/filters/iax-filter.d.ts +7 -0
- package/lib/enlighten-lib/filters/search-node.d.ts +27 -0
- package/lib/enlighten-lib/filters/static-widget.d.ts +2 -0
- package/lib/enlighten-lib/property/element-property.d.ts +8 -0
- package/lib/enlighten-lib/property/filter-category-property.d.ts +6 -0
- package/lib/enlighten-lib/property/filter-property.d.ts +6 -0
- package/lib/enlighten-lib/report/chart-filter/chart-filter.component.d.ts +78 -0
- package/lib/enlighten-lib/report/element.service.d.ts +61 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.d.ts +259 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.d.ts +52 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.d.ts +177 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.d.ts +29 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/chart/border.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-factory.d.ts +7 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-property.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-type.d.ts +16 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart.d.ts +41 -0
- package/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/dimension.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/font.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/fontStyle.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/label.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/legend.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/matrix.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/chart/shadow.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/style.d.ts +12 -0
- package/lib/enlighten-lib/report/graphical-report/chart/text-style.d.ts +17 -0
- package/lib/enlighten-lib/report/graphical-report/chart/title.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.component.d.ts +130 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.directive.d.ts +8 -0
- package/lib/enlighten-lib/report/graphical-report/ichart-component.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/igraphical-report.component.d.ts +21 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.d.ts +215 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.d.ts +34 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/page/page.d.ts +25 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.d.ts +220 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.d.ts +38 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/text/text-chart.d.ts +19 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.component.d.ts +72 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.service.d.ts +9 -0
- package/lib/enlighten-lib/report/iproperty.component.d.ts +14 -0
- package/lib/enlighten-lib/report/ireport.d.ts +14 -0
- package/lib/enlighten-lib/report/report-builder-master.service.d.ts +42 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.component.d.ts +117 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.module.d.ts +19 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.service.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/aggregate.d.ts +8 -0
- package/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.d.ts +7 -0
- package/lib/enlighten-lib/report/tabular-report/column-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/itabular-report.component.d.ts +16 -0
- package/lib/enlighten-lib/report/tabular-report/orderby-type.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/row-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/table-style.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.d.ts +124 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.d.ts +242 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.d.ts +190 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.d.ts +177 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.component.d.ts +53 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.service.d.ts +173 -0
- package/lib/enlighten-lib/report/tabular-report/tabular.d.ts +92 -0
- package/lib/enlighten-lib/report/tabular-report/value-formatting.d.ts +7 -0
- package/lib/enlighten-lib/report-control.service.d.ts +15 -0
- package/lib/enlighten-lib/utils/utils.d.ts +16 -0
- package/lib/field-list-lib/fields-list.service.d.ts +71 -0
- package/lib/filters/calender-filter/calender-filter.component.d.ts +70 -0
- package/lib/filters/category-filter/category-filter.component.d.ts +65 -0
- package/lib/filters/category-filter/category-filter.service.d.ts +16 -0
- package/lib/filters/category-filter/category.service.d.ts +23 -0
- package/lib/filters/choice-list-filter/choice-list-filter.component.d.ts +64 -0
- package/lib/filters/choice-list-filter/choice-list-filter.service.d.ts +36 -0
- package/lib/filters/common-filter/common-filter.component.d.ts +135 -0
- package/lib/filters/common-filter/common-filter.service.d.ts +42 -0
- package/lib/filters/custom-scroll-directives.d.ts +14 -0
- package/lib/filters/date-time-filter/date-time-filter.component.d.ts +83 -0
- package/lib/filters/filter-footer/filter-footer.component.d.ts +12 -0
- package/lib/filters/filters.component.d.ts +139 -0
- package/lib/filters/filters.module.d.ts +43 -0
- package/lib/filters/filters.service.d.ts +83 -0
- package/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.d.ts +70 -0
- package/lib/filters/metaColumnTypes.d.ts +18 -0
- package/lib/filters/multi-select-filter/multi-select-filter.component.d.ts +68 -0
- package/lib/filters/multi-select-filter/multi-select-filter.service.d.ts +77 -0
- package/lib/filters/number-filter/number-filter.component.d.ts +70 -0
- package/lib/filters/public-api.d.ts +14 -0
- package/lib/filters/reference-list-filter/reference-list-filter.component.d.ts +59 -0
- package/lib/filters/reference-list-filter/reference-list-filter.service.d.ts +62 -0
- package/lib/filters/single-select-filter/single-select-filter.component.d.ts +59 -0
- package/lib/filters/time-filter/time-filter.component.d.ts +62 -0
- package/lib/filters/user-filter/user-filter.component.d.ts +61 -0
- package/lib/filters/user-filter/user-filter.service.d.ts +26 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.d.ts +87 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.d.ts +33 -0
- package/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.d.ts +13 -0
- package/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.d.ts +10 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/form-object-list.component.d.ts +200 -0
- package/lib/form-object/form-object-list/form-object-list.d.ts +42 -0
- package/lib/form-object/form-object-list/form-object-list.module.d.ts +59 -0
- package/lib/form-object/form-object-list/form-object-list.service.d.ts +69 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.d.ts +22 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.d.ts +20 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.d.ts +21 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.d.ts +23 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.d.ts +34 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.d.ts +17 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.d.ts +14 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.d.ts +13 -0
- package/lib/form-object/form-object-view/data-detail-view-dto.d.ts +16 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-view.component.d.ts +45 -0
- package/lib/form-object/form-object-view/form-object-view.module.d.ts +70 -0
- package/lib/form-object/form-object-view/form-object-view.service.d.ts +49 -0
- package/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.d.ts +31 -0
- package/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.d.ts +22 -0
- package/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.d.ts +37 -0
- package/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.d.ts +91 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.d.ts +71 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.d.ts +40 -0
- package/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.d.ts +26 -0
- package/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.d.ts +11 -0
- package/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/meta-section/meta-section.component.d.ts +31 -0
- package/lib/form-object/form-object-view/section/section.component.d.ts +16 -0
- package/lib/form-object/form-object-view/section-field/section-field.component.d.ts +13 -0
- package/lib/form-object/form-object-view/section-view/section-view.component.d.ts +16 -0
- package/lib/form-object/public-api.d.ts +2 -0
- package/lib/form-permission.service.d.ts +51 -0
- package/lib/forms/ax-form.d.ts +47 -0
- package/lib/forms/iform.d.ts +18 -0
- package/lib/forms/page/common/axo-response-status.d.ts +4 -0
- package/lib/forms/page/common/constants.d.ts +371 -0
- package/lib/forms/page/common/detail-view-enums.d.ts +5 -0
- package/lib/forms/page/common/flatten-status-enum.d.ts +7 -0
- package/lib/forms/page/common/form.constant.d.ts +85 -0
- package/lib/forms/page/common/property-panel-field.d.ts +21 -0
- package/lib/forms/page/common/widget-enums.d.ts +236 -0
- package/lib/forms/page/common/widget-value-handler.d.ts +4 -0
- package/lib/forms/page/data-detail-view/ax-section.d.ts +22 -0
- package/lib/forms/page/data-detail-view/collection-view.d.ts +11 -0
- package/lib/forms/page/data-detail-view/data-details.d.ts +17 -0
- package/lib/forms/page/data-detail-view/section-field.d.ts +13 -0
- package/lib/forms/page/data-detail-view/section.d.ts +13 -0
- package/lib/forms/page/data-list/data-list-column.d.ts +24 -0
- package/lib/forms/page/data-list/data-list.d.ts +24 -0
- package/lib/forms/page/form-object.d.ts +6 -0
- package/lib/forms/page/form-page.d.ts +19 -0
- package/lib/forms/page/value-converters/displayMode-to-bool.d.ts +5 -0
- package/lib/forms/page/value-converters/form-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/geo-fence-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/image-annotation-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/language-source-value-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/list-view-title-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-float-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-int-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-string-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/publicUrls-string-to-array.d.ts +5 -0
- package/lib/forms/page/value-converters/record-limit-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/restriction-mode-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-date-time-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-number -converter.d.ts +5 -0
- package/lib/forms/page/value-converters/textBox-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/validate-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/value-without-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/widget-concrete-class-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/widget-deserializer.d.ts +3 -0
- package/lib/forms/page/widgets/apply-geofences.d.ts +25 -0
- package/lib/forms/page/widgets/auto-number.d.ts +28 -0
- package/lib/forms/page/widgets/ax-audio.d.ts +43 -0
- package/lib/forms/page/widgets/ax-document.d.ts +44 -0
- package/lib/forms/page/widgets/ax-image.d.ts +46 -0
- package/lib/forms/page/widgets/bar-code.d.ts +52 -0
- package/lib/forms/page/widgets/child-record.d.ts +50 -0
- package/lib/forms/page/widgets/choicelist.d.ts +70 -0
- package/lib/forms/page/widgets/counter.d.ts +36 -0
- package/lib/forms/page/widgets/datetime.d.ts +53 -0
- package/lib/forms/page/widgets/formula.d.ts +38 -0
- package/lib/forms/page/widgets/geofence.d.ts +41 -0
- package/lib/forms/page/widgets/gps.d.ts +49 -0
- package/lib/forms/page/widgets/group-header.d.ts +51 -0
- package/lib/forms/page/widgets/languages.d.ts +41 -0
- package/lib/forms/page/widgets/link.d.ts +36 -0
- package/lib/forms/page/widgets/payment.d.ts +37 -0
- package/lib/forms/page/widgets/qr-code.d.ts +39 -0
- package/lib/forms/page/widgets/script-condition.d.ts +33 -0
- package/lib/forms/page/widgets/signature.d.ts +34 -0
- package/lib/forms/page/widgets/static-media.d.ts +40 -0
- package/lib/forms/page/widgets/stopwatch.d.ts +37 -0
- package/lib/forms/page/widgets/sub-form.d.ts +39 -0
- package/lib/forms/page/widgets/textbox.d.ts +63 -0
- package/lib/forms/page/widgets/timestamp.d.ts +42 -0
- package/lib/forms/page/widgets/toggle.d.ts +36 -0
- package/lib/forms/page/widgets/unique-id.d.ts +33 -0
- package/lib/forms/page/widgets/verification.d.ts +55 -0
- package/lib/forms/page/widgets/video.d.ts +44 -0
- package/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.d.ts +18 -0
- package/lib/forms/page/widgets/widget-value/audio-video-widget-value.d.ts +11 -0
- package/lib/forms/page/widgets/widget-value/child-record-value.d.ts +26 -0
- package/lib/forms/page/widgets/widget-value/choice-list-options.d.ts +27 -0
- package/lib/forms/page/widgets/widget-value/choices-ml.d.ts +22 -0
- package/lib/forms/page/widgets/widget-value/dateRangeValue.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/deviceProfileParams.d.ts +4 -0
- package/lib/forms/page/widgets/widget-value/deviceProfilesTemp.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/document-widget-value.d.ts +15 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-location-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-widget-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/gps-widget-value.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/image-widget-value.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/language-widget-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/location-object-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/multiple-languages.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/reference-list-object-value.d.ts +17 -0
- package/lib/forms/page/widgets/widget-value/verification-widget-value.d.ts +31 -0
- package/lib/forms/page/widgets/widget.d.ts +75 -0
- package/lib/ghost-loader/ghost-loader.component.d.ts +41 -0
- package/lib/ghost-loader/ghost-loader.module.d.ts +8 -0
- package/lib/ghost-loader/public-api.d.ts +2 -0
- package/lib/map-dialog/map-dialog.component.d.ts +16 -0
- package/lib/map-dialog/map-dialog.module.d.ts +11 -0
- package/lib/map-dialog/public-api.d.ts +5 -0
- package/lib/reports-container/public-api.d.ts +7 -0
- package/lib/reports-container/report-group/report-group.component.d.ts +17 -0
- package/lib/reports-container/reports-container-models/report-group.d.ts +20 -0
- package/lib/reports-container/reports-container-models/report-property.d.ts +19 -0
- package/lib/reports-container/reports-container-models/reports-container-enums.d.ts +13 -0
- package/lib/reports-container/reports-container-models/reports-container.d.ts +16 -0
- package/lib/reports-container/reports-container.component.d.ts +16 -0
- package/lib/reports-container/reports-container.module.d.ts +13 -0
- package/lib/reports-container/reports-container.service.d.ts +18 -0
- package/lib/scrollbar/index.d.ts +2 -0
- package/lib/scrollbar/public-api.d.ts +2 -0
- package/lib/scrollbar/scrollbar.directive.d.ts +153 -0
- package/lib/scrollbar/scrollbar.module.d.ts +7 -0
- package/lib/scrollbar/scrollbar.types.d.ts +12 -0
- package/lib/sculptor-lib/widgets/audio/audio.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/barcode/barcode.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/child-record/child-record.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/choice-list/choice-list.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/date-time/date-time.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/document/document.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/geofence/geofence.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/gps/gps.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/group-header/group-header.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/image/image.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/language/language.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/link/link.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/qr-code/qr-code.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/subform/subform.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/textbox/textbox.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/timestamp/timestamp.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/toggle/toggle.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/video/video.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/widgets.service.d.ts +30 -0
- package/lib/shared/comfirmation-modal/confirmation-modal.component.d.ts +18 -0
- package/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.d.ts +29 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/package.json +64 -0
- package/public-api.d.ts +130 -0
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { ChoiceList } from '../../../../forms/page/widgets/choicelist';
|
|
3
|
+
import { FormObjectViewService } from '../../form-object-view.service';
|
|
4
|
+
import { WidgetSubType } from '../../../../forms/page/common/widget-enums';
|
|
5
|
+
import { DetailViewType } from '../../../../forms/page/common/detail-view-enums';
|
|
6
|
+
import { AxoUtils } from '../../../../axo-utils/axo-utils';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../form-object-view.service";
|
|
9
|
+
function ChoiceListWidgetViewComponent_div_0_div_1_mat_spinner_12_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelement(0, "mat-spinner", 25);
|
|
11
|
+
} if (rf & 2) {
|
|
12
|
+
i0.ɵɵproperty("diameter", 15);
|
|
13
|
+
} }
|
|
14
|
+
function ChoiceListWidgetViewComponent_div_0_div_1_img_15_Template(rf, ctx) { if (rf & 1) {
|
|
15
|
+
i0.ɵɵelement(0, "img", 26);
|
|
16
|
+
} }
|
|
17
|
+
function ChoiceListWidgetViewComponent_div_0_div_1_img_16_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
+
i0.ɵɵelement(0, "img", 27);
|
|
19
|
+
} }
|
|
20
|
+
function ChoiceListWidgetViewComponent_div_0_div_1_img_17_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelement(0, "img", 28);
|
|
22
|
+
} }
|
|
23
|
+
function ChoiceListWidgetViewComponent_div_0_div_1_div_20_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
i0.ɵɵelementStart(0, "div", 29);
|
|
25
|
+
i0.ɵɵelement(1, "dynamic-data-view", 30);
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
} if (rf & 2) {
|
|
28
|
+
const choice_r6 = i0.ɵɵnextContext().$implicit;
|
|
29
|
+
const ctx_r13 = i0.ɵɵnextContext(2);
|
|
30
|
+
i0.ɵɵadvance(1);
|
|
31
|
+
i0.ɵɵproperty("dataDetailView", ctx_r13.choiceListDetailView[choice_r6.formObjectId])("baseUrl", ctx_r13.baseUrl)("viewType", ctx_r13.detailViewType.FormObjectView)("axonatorX1Url", ctx_r13.axonatorX1Url);
|
|
32
|
+
} }
|
|
33
|
+
function ChoiceListWidgetViewComponent_div_0_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
34
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
35
|
+
i0.ɵɵelementStart(0, "div");
|
|
36
|
+
i0.ɵɵelementStart(1, "div", 7);
|
|
37
|
+
i0.ɵɵelementStart(2, "div", 8);
|
|
38
|
+
i0.ɵɵlistener("click", function ChoiceListWidgetViewComponent_div_0_div_1_Template_div_click_2_listener() { const restoredCtx = i0.ɵɵrestoreView(_r16); const choice_r6 = restoredCtx.$implicit; const _r8 = i0.ɵɵreference(14); const ctx_r15 = i0.ɵɵnextContext(2); return ctx_r15.toggleAccordion(_r8, choice_r6.formObjectId, ctx_r15.section.childSectionId); });
|
|
39
|
+
i0.ɵɵelementStart(3, "div", 9);
|
|
40
|
+
i0.ɵɵelementStart(4, "div", 10);
|
|
41
|
+
i0.ɵɵelementStart(5, "div", 11);
|
|
42
|
+
i0.ɵɵelement(6, "img", 12);
|
|
43
|
+
i0.ɵɵelementEnd();
|
|
44
|
+
i0.ɵɵelementStart(7, "div", 13);
|
|
45
|
+
i0.ɵɵelementStart(8, "p", 14);
|
|
46
|
+
i0.ɵɵtext(9);
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
i0.ɵɵelementStart(10, "p", 15);
|
|
49
|
+
i0.ɵɵtext(11);
|
|
50
|
+
i0.ɵɵelementEnd();
|
|
51
|
+
i0.ɵɵelementEnd();
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵtemplate(12, ChoiceListWidgetViewComponent_div_0_div_1_mat_spinner_12_Template, 1, 1, "mat-spinner", 16);
|
|
54
|
+
i0.ɵɵelementStart(13, "button", 17, 18);
|
|
55
|
+
i0.ɵɵlistener("click", function ChoiceListWidgetViewComponent_div_0_div_1_Template_button_click_13_listener() { const restoredCtx = i0.ɵɵrestoreView(_r16); const choice_r6 = restoredCtx.$implicit; const _r8 = i0.ɵɵreference(14); const ctx_r17 = i0.ɵɵnextContext(2); return ctx_r17.toggleAccordion(_r8, choice_r6.formObjectId, ctx_r17.section.childSectionId); });
|
|
56
|
+
i0.ɵɵtemplate(15, ChoiceListWidgetViewComponent_div_0_div_1_img_15_Template, 1, 0, "img", 19);
|
|
57
|
+
i0.ɵɵtemplate(16, ChoiceListWidgetViewComponent_div_0_div_1_img_16_Template, 1, 0, "img", 20);
|
|
58
|
+
i0.ɵɵelementEnd();
|
|
59
|
+
i0.ɵɵtemplate(17, ChoiceListWidgetViewComponent_div_0_div_1_img_17_Template, 1, 0, "img", 21);
|
|
60
|
+
i0.ɵɵelementEnd();
|
|
61
|
+
i0.ɵɵelementStart(18, "div", 22, 23);
|
|
62
|
+
i0.ɵɵtemplate(20, ChoiceListWidgetViewComponent_div_0_div_1_div_20_Template, 2, 4, "div", 24);
|
|
63
|
+
i0.ɵɵelementEnd();
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
i0.ɵɵelementEnd();
|
|
67
|
+
} if (rf & 2) {
|
|
68
|
+
const choice_r6 = ctx.$implicit;
|
|
69
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
70
|
+
i0.ɵɵadvance(2);
|
|
71
|
+
i0.ɵɵattribute("data-bs-target", "#" + ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId + "_" + ctx_r5.section.childSectionId);
|
|
72
|
+
i0.ɵɵadvance(4);
|
|
73
|
+
i0.ɵɵproperty("src", ctx_r5.baseUrl + ctx_r5.removeSlashFromImageUrl(choice_r6.thumb), i0.ɵɵsanitizeUrl);
|
|
74
|
+
i0.ɵɵadvance(3);
|
|
75
|
+
i0.ɵɵtextInterpolate(choice_r6.formObjectTitle);
|
|
76
|
+
i0.ɵɵadvance(2);
|
|
77
|
+
i0.ɵɵtextInterpolate(choice_r6.formObjectSubTitle);
|
|
78
|
+
i0.ɵɵadvance(1);
|
|
79
|
+
i0.ɵɵproperty("ngIf", ctx_r5.choiceRecordsInProgress[ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId]);
|
|
80
|
+
i0.ɵɵadvance(1);
|
|
81
|
+
i0.ɵɵproperty("id", ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId);
|
|
82
|
+
i0.ɵɵattribute("data-bs-target", "#" + ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId + "_" + ctx_r5.section.childSectionId)("aria-controls", ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId + "_" + ctx_r5.section.childSectionId);
|
|
83
|
+
i0.ɵɵadvance(2);
|
|
84
|
+
i0.ɵɵproperty("ngIf", !ctx_r5.expandedChoiceRecords[ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId] && !ctx_r5.choiceRecordsInProgress[ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId]);
|
|
85
|
+
i0.ɵɵadvance(1);
|
|
86
|
+
i0.ɵɵproperty("ngIf", ctx_r5.expandedChoiceRecords[ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId]);
|
|
87
|
+
i0.ɵɵadvance(1);
|
|
88
|
+
i0.ɵɵproperty("ngIf", ctx_r5.expandedChoiceRecords[ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId]);
|
|
89
|
+
i0.ɵɵadvance(1);
|
|
90
|
+
i0.ɵɵproperty("id", ctx_r5.section.widget.identifier + "_" + choice_r6.formObjectId + "_" + ctx_r5.section.childSectionId);
|
|
91
|
+
i0.ɵɵadvance(2);
|
|
92
|
+
i0.ɵɵproperty("ngIf", ctx_r5.choiceListDetailView[choice_r6.formObjectId]);
|
|
93
|
+
} }
|
|
94
|
+
const _c0 = function (a0) { return { "referenceList": a0 }; };
|
|
95
|
+
function ChoiceListWidgetViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
96
|
+
i0.ɵɵelementStart(0, "div", 5);
|
|
97
|
+
i0.ɵɵtemplate(1, ChoiceListWidgetViewComponent_div_0_div_1_Template, 21, 13, "div", 6);
|
|
98
|
+
i0.ɵɵelementEnd();
|
|
99
|
+
} if (rf & 2) {
|
|
100
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
101
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c0, ctx_r0.widget.subType == ctx_r0.widgetSubType.referenceList));
|
|
102
|
+
i0.ɵɵadvance(1);
|
|
103
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.widget == null ? null : ctx_r0.widget.value);
|
|
104
|
+
} }
|
|
105
|
+
function ChoiceListWidgetViewComponent_ng_container_2_div_1_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
106
|
+
i0.ɵɵelementStart(0, "span");
|
|
107
|
+
i0.ɵɵtext(1);
|
|
108
|
+
i0.ɵɵelementStart(2, "span", 36);
|
|
109
|
+
i0.ɵɵtext(3, ":");
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
i0.ɵɵelementEnd();
|
|
112
|
+
} if (rf & 2) {
|
|
113
|
+
const ctx_r19 = i0.ɵɵnextContext(3);
|
|
114
|
+
i0.ɵɵadvance(1);
|
|
115
|
+
i0.ɵɵtextInterpolate(ctx_r19.widget.prompt);
|
|
116
|
+
} }
|
|
117
|
+
function ChoiceListWidgetViewComponent_ng_container_2_div_1_mat_list_4_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
118
|
+
i0.ɵɵelementStart(0, "span");
|
|
119
|
+
i0.ɵɵtext(1, ",");
|
|
120
|
+
i0.ɵɵelementEnd();
|
|
121
|
+
} }
|
|
122
|
+
function ChoiceListWidgetViewComponent_ng_container_2_div_1_mat_list_4_Template(rf, ctx) { if (rf & 1) {
|
|
123
|
+
i0.ɵɵelementStart(0, "mat-list", 37);
|
|
124
|
+
i0.ɵɵelementStart(1, "mat-list-item", 38);
|
|
125
|
+
i0.ɵɵtext(2);
|
|
126
|
+
i0.ɵɵtemplate(3, ChoiceListWidgetViewComponent_ng_container_2_div_1_mat_list_4_span_3_Template, 2, 0, "span", 4);
|
|
127
|
+
i0.ɵɵtext(4, "\u00A0");
|
|
128
|
+
i0.ɵɵelementEnd();
|
|
129
|
+
i0.ɵɵelementEnd();
|
|
130
|
+
} if (rf & 2) {
|
|
131
|
+
const item_r21 = ctx.$implicit;
|
|
132
|
+
const i_r22 = ctx.index;
|
|
133
|
+
const ctx_r20 = i0.ɵɵnextContext(3);
|
|
134
|
+
i0.ɵɵadvance(1);
|
|
135
|
+
i0.ɵɵpropertyInterpolate("title", item_r21);
|
|
136
|
+
i0.ɵɵadvance(1);
|
|
137
|
+
i0.ɵɵtextInterpolate(item_r21);
|
|
138
|
+
i0.ɵɵadvance(1);
|
|
139
|
+
i0.ɵɵproperty("ngIf", i_r22 !== ctx_r20.widget.value.length - 1);
|
|
140
|
+
} }
|
|
141
|
+
function ChoiceListWidgetViewComponent_ng_container_2_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
142
|
+
i0.ɵɵelementStart(0, "div", 32);
|
|
143
|
+
i0.ɵɵelement(1, "mat-icon", 33);
|
|
144
|
+
i0.ɵɵtemplate(2, ChoiceListWidgetViewComponent_ng_container_2_div_1_span_2_Template, 4, 1, "span", 4);
|
|
145
|
+
i0.ɵɵelementStart(3, "div", 34);
|
|
146
|
+
i0.ɵɵtemplate(4, ChoiceListWidgetViewComponent_ng_container_2_div_1_mat_list_4_Template, 5, 3, "mat-list", 35);
|
|
147
|
+
i0.ɵɵelementEnd();
|
|
148
|
+
i0.ɵɵelementEnd();
|
|
149
|
+
} if (rf & 2) {
|
|
150
|
+
const ctx_r18 = i0.ɵɵnextContext(2);
|
|
151
|
+
i0.ɵɵadvance(2);
|
|
152
|
+
i0.ɵɵproperty("ngIf", ctx_r18.section.showPrompt);
|
|
153
|
+
i0.ɵɵadvance(2);
|
|
154
|
+
i0.ɵɵproperty("ngForOf", ctx_r18.widget.value);
|
|
155
|
+
} }
|
|
156
|
+
function ChoiceListWidgetViewComponent_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
157
|
+
i0.ɵɵelementContainerStart(0);
|
|
158
|
+
i0.ɵɵtemplate(1, ChoiceListWidgetViewComponent_ng_container_2_div_1_Template, 5, 2, "div", 31);
|
|
159
|
+
i0.ɵɵelementContainerEnd();
|
|
160
|
+
} if (rf & 2) {
|
|
161
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
162
|
+
i0.ɵɵadvance(1);
|
|
163
|
+
i0.ɵɵproperty("ngIf", ctx_r1.widget.subType == ctx_r1.widgetSubType.fixedList || ctx_r1.widget.subType == ctx_r1.widgetSubType.imageFixedList);
|
|
164
|
+
} }
|
|
165
|
+
function ChoiceListWidgetViewComponent_ng_template_3_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
166
|
+
i0.ɵɵelementStart(0, "span");
|
|
167
|
+
i0.ɵɵtext(1);
|
|
168
|
+
i0.ɵɵelementStart(2, "span", 36);
|
|
169
|
+
i0.ɵɵtext(3, ":");
|
|
170
|
+
i0.ɵɵelementEnd();
|
|
171
|
+
i0.ɵɵelementEnd();
|
|
172
|
+
} if (rf & 2) {
|
|
173
|
+
const ctx_r24 = i0.ɵɵnextContext(2);
|
|
174
|
+
i0.ɵɵadvance(1);
|
|
175
|
+
i0.ɵɵtextInterpolate(ctx_r24.widget.prompt);
|
|
176
|
+
} }
|
|
177
|
+
function ChoiceListWidgetViewComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
178
|
+
i0.ɵɵelementStart(0, "div", 32);
|
|
179
|
+
i0.ɵɵelement(1, "mat-icon", 33);
|
|
180
|
+
i0.ɵɵtemplate(2, ChoiceListWidgetViewComponent_ng_template_3_span_2_Template, 4, 1, "span", 4);
|
|
181
|
+
i0.ɵɵelementEnd();
|
|
182
|
+
i0.ɵɵelementStart(3, "span", 39);
|
|
183
|
+
i0.ɵɵtext(4, "-");
|
|
184
|
+
i0.ɵɵelementEnd();
|
|
185
|
+
} if (rf & 2) {
|
|
186
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
187
|
+
i0.ɵɵadvance(2);
|
|
188
|
+
i0.ɵɵproperty("ngIf", ctx_r3.section.showPrompt);
|
|
189
|
+
} }
|
|
190
|
+
function ChoiceListWidgetViewComponent_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
191
|
+
i0.ɵɵelement(0, "div");
|
|
192
|
+
} }
|
|
193
|
+
export class ChoiceListWidgetViewComponent {
|
|
194
|
+
constructor(_formObjectViewService) {
|
|
195
|
+
this._formObjectViewService = _formObjectViewService;
|
|
196
|
+
this.detailViewType = Object.assign({}, DetailViewType);
|
|
197
|
+
this.widgetSubType = Object.assign({}, WidgetSubType);
|
|
198
|
+
this.choiceListDetailView = new Map();
|
|
199
|
+
this.expandedChoiceRecords = new Map();
|
|
200
|
+
this.choiceRecordsInProgress = new Map();
|
|
201
|
+
}
|
|
202
|
+
ngOnInit() {
|
|
203
|
+
this.widgetValue = this.widget.getWidgetValue();
|
|
204
|
+
this.section.showPrompt = this.section.showPrompt;
|
|
205
|
+
}
|
|
206
|
+
removeSlashFromImageUrl(url) {
|
|
207
|
+
return AxoUtils.removeSlashFromImageUrl(url);
|
|
208
|
+
}
|
|
209
|
+
toggleAccordion(accordionToggle, formobjectId, childSectionId) {
|
|
210
|
+
if (!(formobjectId in this.choiceListDetailView)) {
|
|
211
|
+
this.choiceRecordsInProgress[accordionToggle.id] = true;
|
|
212
|
+
this._formObjectViewService.createDataDetailView(childSectionId, formobjectId, this.widget.referenceForm, this.axonatorX1Url).then((dataDetailSection) => {
|
|
213
|
+
this.choiceListDetailView[formobjectId] = dataDetailSection;
|
|
214
|
+
this.expandedChoiceRecords[accordionToggle.id] = accordionToggle.ariaExpanded == 'true';
|
|
215
|
+
this.choiceRecordsInProgress[accordionToggle.id] = false;
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
else
|
|
219
|
+
this.expandedChoiceRecords[accordionToggle.id] = accordionToggle.ariaExpanded == 'true';
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
ChoiceListWidgetViewComponent.ɵfac = function ChoiceListWidgetViewComponent_Factory(t) { return new (t || ChoiceListWidgetViewComponent)(i0.ɵɵdirectiveInject(i1.FormObjectViewService)); };
|
|
223
|
+
ChoiceListWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ChoiceListWidgetViewComponent, selectors: [["lib-choice-list-widget-view"]], inputs: { widget: "widget", baseUrl: "baseUrl", axonatorX1Url: "axonatorX1Url" }, decls: 6, vars: 4, consts: [[3, "ngClass", 4, "ngIf"], [1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [4, "ngIf"], [3, "ngClass"], [4, "ngFor", "ngForOf"], [1, "accordion"], ["data-bs-toggle", "collapse", 1, "accordion-item", "bg-white", "border", "border-gray-200", "relative", 3, "click"], ["id", "accordionHeading", 1, "accordion-header", "mb-0", "sm:px-10", "p-3"], [1, "flex", "gap-2", "items-center", "justify-start"], [1, "col-4"], ["alt", "...", 1, "thumbnail", "h-10", "w-10", 3, "src"], [1, "col-6", "flex", "items-start", "justify-start", "align-middle", "gap-y-1.5", "flex-col"], [1, "choice-list-title", "m-0"], [1, "choice-list-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-expande-icon sm:w-4 w-3", "alt", "", "src", "assets/icons/axo/expand_icon.svg", 4, "ngIf"], ["class", "child-expand-icon sm:w-4 w-3", "alt", "", "src", "assets/icons/axo/collapse_icon.svg", 4, "ngIf"], ["class", "child-expanded-icon sm:w-4 w-3", "alt", "", "src", "assets/icons/axo/expanded_arrow.svg", 4, "ngIf"], ["aria-labelledby", "accordionHeading", 1, "accordion-collapse", "collapse", 3, "id"], ["accordionBody", ""], ["class", "accordion-body sm:p-3 py-3", 4, "ngIf"], [1, "expand-button", 3, "diameter"], ["alt", "", "src", "assets/icons/axo/expand_icon.svg", 1, "child-expande-icon", "sm:w-4", "w-3"], ["alt", "", "src", "assets/icons/axo/collapse_icon.svg", 1, "child-expand-icon", "sm:w-4", "w-3"], ["alt", "", "src", "assets/icons/axo/expanded_arrow.svg", 1, "child-expanded-icon", "sm:w-4", "w-3"], [1, "accordion-body", "sm:p-3", "py-3"], [3, "dataDetailView", "baseUrl", "viewType", "axonatorX1Url"], ["class", "data-detail-title flex text-sm", 4, "ngIf"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_choice_list", 1, "add-text"], [1, "choice-list-view-container"], ["role", "list", 4, "ngFor", "ngForOf"], [1, "colon"], ["role", "list"], ["role", "listitem", 3, "title"], [1, "flex", "justify-start"]], template: function ChoiceListWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
224
|
+
i0.ɵɵtemplate(0, ChoiceListWidgetViewComponent_div_0_Template, 2, 4, "div", 0);
|
|
225
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
226
|
+
i0.ɵɵtemplate(2, ChoiceListWidgetViewComponent_ng_container_2_Template, 2, 1, "ng-container", 2);
|
|
227
|
+
i0.ɵɵtemplate(3, ChoiceListWidgetViewComponent_ng_template_3_Template, 5, 1, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
|
|
228
|
+
i0.ɵɵelementEnd();
|
|
229
|
+
i0.ɵɵtemplate(5, ChoiceListWidgetViewComponent_div_5_Template, 1, 0, "div", 4);
|
|
230
|
+
} if (rf & 2) {
|
|
231
|
+
const _r2 = i0.ɵɵreference(4);
|
|
232
|
+
i0.ɵɵproperty("ngIf", ctx.widget.subType == ctx.widgetSubType.referenceList);
|
|
233
|
+
i0.ɵɵadvance(2);
|
|
234
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r2);
|
|
235
|
+
i0.ɵɵadvance(3);
|
|
236
|
+
i0.ɵɵproperty("ngIf", ctx.widget.subType == ctx.widgetSubType.apiList);
|
|
237
|
+
} }, styles: ["lib-choice-list-widget-view .accordion .records-connection-line{position:absolute;left:4.1rem;height:calc(100% - 16px);border-left:1px solid;width:2px}lib-choice-list-widget-view .accordion .accordion-item{border-radius:.25rem!important}lib-choice-list-widget-view .accordion .accordion-header{background:#FAFBFC;border-radius:.25rem}lib-choice-list-widget-view .accordion .expand-button{position:absolute;left:1rem;bottom:-7px}lib-choice-list-widget-view .accordion img.child-expanded-icon{top:3.4rem;left:1rem;position:absolute}@media screen and (max-width: 600px){lib-choice-list-widget-view .accordion img.child-expanded-icon{top:3.6rem}}lib-choice-list-widget-view .accordion .accordion-body{background-color:#fcfdff;border-radius:.5rem}lib-choice-list-widget-view .accordion .accordion-body .mat-card{margin-bottom:0!important}@media screen and (max-width: 768px){lib-choice-list-widget-view .accordion{margin:0}}lib-choice-list-widget-view .form-object-view-heading{display:none!important}lib-choice-list-widget-view .data-detail-content{margin-top:15px!important}lib-choice-list-widget-view .choice-list-view-container{max-width:100%;line-height:20px}lib-choice-list-widget-view .referenceList{display:flex;flex-direction:column;row-gap:1.5rem}\n"], encapsulation: 2 });
|
|
238
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ChoiceListWidgetViewComponent, [{
|
|
239
|
+
type: Component,
|
|
240
|
+
args: [{ selector: 'lib-choice-list-widget-view', encapsulation: ViewEncapsulation.None, template: "\n\n \n \n <div *ngIf=\"widget.subType == widgetSubType.referenceList\" [ngClass]=\"{'referenceList':widget.subType == widgetSubType.referenceList}\">\n\n <div *ngFor=\"let choice of widget?.value\"> \n <div class=\"accordion\">\n <div class=\"accordion-item bg-white border border-gray-200 relative\" (click)=\"toggleAccordion(accordionToggle,choice.formObjectId,section.childSectionId)\" data-bs-toggle=\"collapse\" [attr.data-bs-target]=\"'#'+section.widget.identifier+'_'+choice.formObjectId+'_'+section.childSectionId\">\n <div class=\"accordion-header mb-0 sm:px-10 p-3\" id=\"accordionHeading\">\n <div class=\"flex gap-2 items-center justify-start\">\n <div class=\"col-4\">\n <img class=\"thumbnail h-10 w-10\" alt=\"...\" [src]=\"baseUrl + removeSlashFromImageUrl(choice.thumb)\" />\n </div>\n <div class=\"col-6 flex items-start justify-start align-middle gap-y-1.5 flex-col\">\n <p class=\"choice-list-title m-0\">{{choice.formObjectTitle}}</p>\n <p class=\"choice-list-subtitle m-0\">{{choice.formObjectSubTitle}}</p>\n </div>\n </div>\n <mat-spinner *ngIf=\"choiceRecordsInProgress[section.widget.identifier+'_'+choice.formObjectId]\" class=\"expand-button\" [diameter]=\"15\"></mat-spinner>\n <button #accordionToggle [id]=\"section.widget.identifier+'_'+choice.formObjectId\" (click)=\"toggleAccordion(accordionToggle,choice.formObjectId,section.childSectionId)\" class=\"expand-button\" type=\"button\" data-bs-toggle=\"collapse\" [attr.data-bs-target]=\"'#'+section.widget.identifier+'_'+choice.formObjectId+'_'+section.childSectionId\" aria-expanded=\"false\"\n [attr.aria-controls]=\"section.widget.identifier+'_'+choice.formObjectId+'_'+section.childSectionId\">\n <img *ngIf=\"!expandedChoiceRecords[section.widget.identifier+'_'+choice.formObjectId] && !choiceRecordsInProgress[section.widget.identifier+'_'+choice.formObjectId]\" class=\"child-expande-icon sm:w-4 w-3\" alt=\"\" src=\"assets/icons/axo/expand_icon.svg\">\n <img *ngIf=\"expandedChoiceRecords[section.widget.identifier+'_'+choice.formObjectId]\" class=\"child-expand-icon sm:w-4 w-3\" alt=\"\" src=\"assets/icons/axo/collapse_icon.svg\">\n </button>\n <img *ngIf=\"expandedChoiceRecords[section.widget.identifier+'_'+choice.formObjectId]\" class=\"child-expanded-icon sm:w-4 w-3\" alt=\"\" src=\"assets/icons/axo/expanded_arrow.svg\">\n </div>\n <div #accordionBody [id]=\"section.widget.identifier+'_'+choice.formObjectId+'_'+section.childSectionId\" class=\"accordion-collapse collapse\" aria-labelledby=\"accordionHeading\">\n <div class=\"accordion-body sm:p-3 py-3\" *ngIf=\"choiceListDetailView[choice.formObjectId]\" >\n <dynamic-data-view [dataDetailView]=\"choiceListDetailView[choice.formObjectId]\"\n [baseUrl]=\"baseUrl\" \n [viewType]=\"detailViewType.FormObjectView\"\n [axonatorX1Url] =\"axonatorX1Url\"></dynamic-data-view>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\" *ngIf=\"widget.subType == widgetSubType.fixedList || widget.subType == widgetSubType.imageFixedList\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_choice_list\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n <div class=\"choice-list-view-container\">\n <mat-list *ngFor=\"let item of widget.value;let i =index\" role=\"list\">\n <mat-list-item title=\"{{item}}\" role=\"listitem\">{{item }}<span *ngIf=\"i !== widget.value.length-1\">,</span> </mat-list-item>\n </mat-list>\n </div>\n </div>\n \n </ng-container>\n <ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_choice_list\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n \n </ng-template>\n </div>\n\n\n <div *ngIf=\"widget.subType == widgetSubType.apiList\">\n\n\n </div>\n \n\n", styles: ["lib-choice-list-widget-view .accordion .records-connection-line{position:absolute;left:4.1rem;height:calc(100% - 16px);border-left:1px solid;width:2px}lib-choice-list-widget-view .accordion .accordion-item{border-radius:.25rem!important}lib-choice-list-widget-view .accordion .accordion-header{background:#FAFBFC;border-radius:.25rem}lib-choice-list-widget-view .accordion .expand-button{position:absolute;left:1rem;bottom:-7px}lib-choice-list-widget-view .accordion img.child-expanded-icon{top:3.4rem;left:1rem;position:absolute}@media screen and (max-width: 600px){lib-choice-list-widget-view .accordion img.child-expanded-icon{top:3.6rem}}lib-choice-list-widget-view .accordion .accordion-body{background-color:#fcfdff;border-radius:.5rem}lib-choice-list-widget-view .accordion .accordion-body .mat-card{margin-bottom:0!important}@media screen and (max-width: 768px){lib-choice-list-widget-view .accordion{margin:0}}lib-choice-list-widget-view .form-object-view-heading{display:none!important}lib-choice-list-widget-view .data-detail-content{margin-top:15px!important}lib-choice-list-widget-view .choice-list-view-container{max-width:100%;line-height:20px}lib-choice-list-widget-view .referenceList{display:flex;flex-direction:column;row-gap:1.5rem}\n"] }]
|
|
241
|
+
}], function () { return [{ type: i1.FormObjectViewService }]; }, { widget: [{
|
|
242
|
+
type: Input
|
|
243
|
+
}], baseUrl: [{
|
|
244
|
+
type: Input
|
|
245
|
+
}], axonatorX1Url: [{
|
|
246
|
+
type: Input
|
|
247
|
+
}] }); })();
|
|
248
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hvaWNlLWxpc3Qtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2Nob2ljZS1saXN0LXdpZGdldC12aWV3L2Nob2ljZS1saXN0LXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9jaG9pY2UtbGlzdC13aWRnZXQtdmlldy9jaG9pY2UtbGlzdC13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMkNBQTJDLENBQUM7QUFHdkUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFDdkUsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDRDQUE0QyxDQUFDO0FBQzNFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUNqRixPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUNBQWlDLENBQUM7Ozs7SUNZN0Msa0NBQW9KOztJQUE5Qiw2QkFBZTs7O0lBR2pJLDBCQUEwUDs7O0lBQzFQLDBCQUEySzs7O0lBRS9LLDBCQUE4Szs7O0lBRzVLLCtCQUE2RjtJQUN6Rix3Q0FHcUQ7SUFDekQsaUJBQU07Ozs7SUFKaUIsZUFBNEQ7SUFBNUQscUZBQTRELDRCQUFBLG1EQUFBLHdDQUFBOzs7O0lBdkI3RiwyQkFBMEM7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LDZCQUE2QjtnRkFBN0IsNkJBQTZCO1FDWHRDLDhFQWtDTTtRQUVOLDhCQUE4QjtRQUM1QixnR0FXZTtRQUNmLCtIQU9jO1FBQ2xCLGlCQUFNO1FBR0osOEVBR007OztRQS9EQSw0RUFBbUQ7UUFxQ3hDLGVBQW9CO1FBQXBCLHVDQUFvQixpQkFBQTtRQXVCL0IsZUFBNkM7UUFBN0Msc0VBQTZDOzt1RkRqRDFDLDZCQUE2QjtjQU56QyxTQUFTOzJCQUNFLDZCQUE2QixpQkFHdkIsaUJBQWlCLENBQUMsSUFBSTt3RUFHN0IsTUFBTTtrQkFBZCxLQUFLO1lBQ0csT0FBTztrQkFBZixLQUFLO1lBQ0csYUFBYTtrQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENob2ljZUxpc3QgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvY2hvaWNlbGlzdCc7XG5pbXBvcnQgeyBTZWN0aW9uRmllbGQgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL2RhdGEtZGV0YWlsLXZpZXcvc2VjdGlvbi1maWVsZCc7XG5pbXBvcnQgeyBEYXRhRGV0YWlsVmlld0R0byB9IGZyb20gJy4uLy4uL2RhdGEtZGV0YWlsLXZpZXctZHRvJztcbmltcG9ydCB7IEZvcm1PYmplY3RWaWV3U2VydmljZSB9IGZyb20gJy4uLy4uL2Zvcm0tb2JqZWN0LXZpZXcuc2VydmljZSc7XG5pbXBvcnQgeyBXaWRnZXRTdWJUeXBlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS9jb21tb24vd2lkZ2V0LWVudW1zJztcbmltcG9ydCB7IERldGFpbFZpZXdUeXBlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZm9ybXMvcGFnZS9jb21tb24vZGV0YWlsLXZpZXctZW51bXMnO1xuaW1wb3J0IHsgQXhvVXRpbHMgfSBmcm9tICcuLi8uLi8uLi8uLi9heG8tdXRpbHMvYXhvLXV0aWxzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWNob2ljZS1saXN0LXdpZGdldC12aWV3JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2Nob2ljZS1saXN0LXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY2hvaWNlLWxpc3Qtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbiA6IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgQ2hvaWNlTGlzdFdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBASW5wdXQoKSB3aWRnZXQ6IENob2ljZUxpc3Q7XG4gIEBJbnB1dCgpIGJhc2VVcmw6IHN0cmluZztcbiAgQElucHV0KCkgYXhvbmF0b3JYMVVybDogc3RyaW5nO1xuXG5cbiAgZGV0YWlsVmlld1R5cGU6IGFueT1PYmplY3QuYXNzaWduKHt9LERldGFpbFZpZXdUeXBlKTtcbiAgd2lkZ2V0VmFsdWU6IGFueTtcbiAgc2VjdGlvbjogU2VjdGlvbkZpZWxkO1xuICB3aWRnZXRTdWJUeXBlOiBhbnk9T2JqZWN0LmFzc2lnbih7fSxXaWRnZXRTdWJUeXBlKTtcbiAgY2hvaWNlTGlzdERldGFpbFZpZXc6IE1hcDxzdHJpbmcsRGF0YURldGFpbFZpZXdEdG8+ID0gbmV3IE1hcDxzdHJpbmcsRGF0YURldGFpbFZpZXdEdG8+KCk7XG4gIGV4cGFuZGVkQ2hvaWNlUmVjb3JkczogTWFwPHN0cmluZyxib29sZWFuPiA9IG5ldyBNYXA8c3RyaW5nLGJvb2xlYW4+KCk7XG4gIGNob2ljZVJlY29yZHNJblByb2dyZXNzOiBNYXA8c3RyaW5nLGJvb2xlYW4+ID0gbmV3IE1hcDxzdHJpbmcsYm9vbGVhbj4oKTtcbiAgY29uc3RydWN0b3IoICAgICAgIFxuICAgIHByaXZhdGUgX2Zvcm1PYmplY3RWaWV3U2VydmljZTogRm9ybU9iamVjdFZpZXdTZXJ2aWNlLFxuICAgKSB7IH1cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy53aWRnZXRWYWx1ZSA9IHRoaXMud2lkZ2V0LmdldFdpZGdldFZhbHVlKCk7XG4gICAgdGhpcy5zZWN0aW9uLnNob3dQcm9tcHQgPSB0aGlzLnNlY3Rpb24uc2hvd1Byb21wdDtcbiAgfVxuICByZW1vdmVTbGFzaEZyb21JbWFnZVVybCh1cmwpOnN0cmluZ3tcbiAgICByZXR1cm4gQXhvVXRpbHMucmVtb3ZlU2xhc2hGcm9tSW1hZ2VVcmwodXJsKTtcbiAgfVxuICBcbiAgdG9nZ2xlQWNjb3JkaW9uKGFjY29yZGlvblRvZ2dsZTogSFRNTEVsZW1lbnQsIGZvcm1vYmplY3RJZDogc3RyaW5nLCBjaGlsZFNlY3Rpb25JZDogbnVtYmVyKTogdm9pZHtcbiAgICBpZighKGZvcm1vYmplY3RJZCBpbiB0aGlzLmNob2ljZUxpc3REZXRhaWxWaWV3KSl7XG4gICAgICB0aGlzLmNob2ljZVJlY29yZHNJblByb2dyZXNzW2FjY29yZGlvblRvZ2dsZS5pZF0gPSB0cnVlO1xuICAgICAgdGhpcy5fZm9ybU9iamVjdFZpZXdTZXJ2aWNlLmNyZWF0ZURhdGFEZXRhaWxWaWV3KGNoaWxkU2VjdGlvbklkLGZvcm1vYmplY3RJZCx0aGlzLndpZGdldC5yZWZlcmVuY2VGb3JtLHRoaXMuYXhvbmF0b3JYMVVybCkudGhlbigoZGF0YURldGFpbFNlY3Rpb24pPT57XG4gICAgICAgIHRoaXMuY2hvaWNlTGlzdERldGFpbFZpZXdbZm9ybW9iamVjdElkXSA9IGRhdGFEZXRhaWxTZWN0aW9uO1xuICAgICAgICB0aGlzLmV4cGFuZGVkQ2hvaWNlUmVjb3Jkc1thY2NvcmRpb25Ub2dnbGUuaWRdID0gYWNjb3JkaW9uVG9nZ2xlLmFyaWFFeHBhbmRlZCA9PSAndHJ1ZSc7XG4gICAgICAgIHRoaXMuY2hvaWNlUmVjb3Jkc0luUHJvZ3Jlc3NbYWNjb3JkaW9uVG9nZ2xlLmlkXSA9IGZhbHNlO1xuICAgICAgfSlcbiAgICB9XG4gICAgZWxzZVxuICAgICAgdGhpcy5leHBhbmRlZENob2ljZVJlY29yZHNbYWNjb3JkaW9uVG9nZ2xlLmlkXSA9IGFjY29yZGlvblRvZ2dsZS5hcmlhRXhwYW5kZWQgPT0gJ3RydWUnO1xuXG4gIH1cbn1cbiIsIlxuXG4gICAgXG4gICAgICBcbiAgICA8ZGl2ICpuZ0lmPVwid2lkZ2V0LnN1YlR5cGUgPT0gd2lkZ2V0U3ViVHlwZS5yZWZlcmVuY2VMaXN0XCIgW25nQ2xhc3NdPVwieydyZWZlcmVuY2VMaXN0Jzp3aWRnZXQuc3ViVHlwZSA9PSB3aWRnZXRTdWJUeXBlLnJlZmVyZW5jZUxpc3R9XCI+XG5cbiAgICAgIDxkaXYgKm5nRm9yPVwibGV0IGNob2ljZSBvZiB3aWRnZXQ/LnZhbHVlXCI+ICAgIFxuICAgICAgICA8ZGl2IGNsYXNzPVwiYWNjb3JkaW9uXCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImFjY29yZGlvbi1pdGVtIGJnLXdoaXRlIGJvcmRlciBib3JkZXItZ3JheS0yMDAgcmVsYXRpdmVcIiAoY2xpY2spPVwidG9nZ2xlQWNjb3JkaW9uKGFjY29yZGlvblRvZ2dsZSxjaG9pY2UuZm9ybU9iamVjdElkLHNlY3Rpb24uY2hpbGRTZWN0aW9uSWQpXCIgZGF0YS1icy10b2dnbGU9XCJjb2xsYXBzZVwiIFthdHRyLmRhdGEtYnMtdGFyZ2V0XT1cIicjJytzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaG9pY2UuZm9ybU9iamVjdElkKydfJytzZWN0aW9uLmNoaWxkU2VjdGlvbklkXCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJhY2NvcmRpb24taGVhZGVyIG1iLTAgc206cHgtMTAgcC0zXCIgaWQ9XCJhY2NvcmRpb25IZWFkaW5nXCI+XG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBnYXAtMiBpdGVtcy1jZW50ZXIganVzdGlmeS1zdGFydFwiPlxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLTRcIj5cbiAgICAgICAgICAgICAgICAgICAgICA8aW1nIGNsYXNzPVwidGh1bWJuYWlsIGgtMTAgdy0xMFwiIGFsdD1cIi4uLlwiIFtzcmNdPVwiYmFzZVVybCArICByZW1vdmVTbGFzaEZyb21JbWFnZVVybChjaG9pY2UudGh1bWIpXCIgLz5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wtNiBmbGV4IGl0ZW1zLXN0YXJ0IGp1c3RpZnktc3RhcnQgYWxpZ24tbWlkZGxlIGdhcC15LTEuNSBmbGV4LWNvbFwiPlxuICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwiY2hvaWNlLWxpc3QtdGl0bGUgbS0wXCI+e3tjaG9pY2UuZm9ybU9iamVjdFRpdGxlfX08L3A+XG4gICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJjaG9pY2UtbGlzdC1zdWJ0aXRsZSBtLTBcIj57e2Nob2ljZS5mb3JtT2JqZWN0U3ViVGl0bGV9fTwvcD5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgPG1hdC1zcGlubmVyICpuZ0lmPVwiY2hvaWNlUmVjb3Jkc0luUHJvZ3Jlc3Nbc2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hvaWNlLmZvcm1PYmplY3RJZF1cIiBjbGFzcz1cImV4cGFuZC1idXR0b25cIiBbZGlhbWV0ZXJdPVwiMTVcIj48L21hdC1zcGlubmVyPlxuICAgICAgICAgICAgICA8YnV0dG9uICNhY2NvcmRpb25Ub2dnbGUgW2lkXT1cInNlY3Rpb24ud2lkZ2V0LmlkZW50aWZpZXIrJ18nK2Nob2ljZS5mb3JtT2JqZWN0SWRcIiAoY2xpY2spPVwidG9nZ2xlQWNjb3JkaW9uKGFjY29yZGlvblRvZ2dsZSxjaG9pY2UuZm9ybU9iamVjdElkLHNlY3Rpb24uY2hpbGRTZWN0aW9uSWQpXCIgY2xhc3M9XCJleHBhbmQtYnV0dG9uXCIgdHlwZT1cImJ1dHRvblwiIGRhdGEtYnMtdG9nZ2xlPVwiY29sbGFwc2VcIiBbYXR0ci5kYXRhLWJzLXRhcmdldF09XCInIycrc2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hvaWNlLmZvcm1PYmplY3RJZCsnXycrc2VjdGlvbi5jaGlsZFNlY3Rpb25JZFwiIGFyaWEtZXhwYW5kZWQ9XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtY29udHJvbHNdPVwic2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hvaWNlLmZvcm1PYmplY3RJZCsnXycrc2VjdGlvbi5jaGlsZFNlY3Rpb25JZFwiPlxuICAgICAgICAgICAgICAgICAgPGltZyAqbmdJZj1cIiFleHBhbmRlZENob2ljZVJlY29yZHNbc2VjdGlvbi53aWRnZXQuaWRlbnRpZmllcisnXycrY2hvaWNlLmZvcm1PYmplY3RJZF0gJiYgIWNob2ljZVJlY29yZHNJblByb2dyZXNzW3NlY3Rpb24ud2lkZ2V0LmlkZW50aWZpZXIrJ18nK2Nob2ljZS5mb3JtT2JqZWN0SWRdXCIgY2xhc3M9XCJjaGlsZC1leHBhbmRlLWljb24gc206dy00IHctM1wiIGFsdD1cIlwiIHNyYz1cImFzc2V0cy9pY29ucy9heG8vZXhwYW5kX2ljb24uc3ZnXCI+XG4gICAgICAgICAgICAgICAgICA8aW1nICpuZ0lmPVwiZXhwYW5kZWRDaG9pY2VSZWNvcmRzW3NlY3Rpb24ud2lkZ2V0LmlkZW50aWZpZXIrJ18nK2Nob2ljZS5mb3JtT2JqZWN0SWRdXCIgY2xhc3M9XCJjaGlsZC1leHBhbmQtaWNvbiBzbTp3LTQgdy0zXCIgYWx0PVwiXCIgc3JjPVwiYXNzZXRzL2ljb25zL2F4by9jb2xsYXBzZV9pY29uLnN2Z1wiPlxuICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgICAgPGltZyAqbmdJZj1cImV4cGFuZGVkQ2hvaWNlUmVjb3Jkc1tzZWN0aW9uLndpZGdldC5pZGVudGlmaWVyKydfJytjaG9pY2UuZm9ybU9iamVjdElkXVwiIGNsYXNzPVwiY2hpbGQtZXhwYW5kZWQtaWNvbiBzbTp3LTQgdy0zXCIgYWx0PVwiXCIgc3JjPVwiYXNzZXRzL2ljb25zL2F4by9leHBhbmRlZF9hcnJvdy5zdmdcIj5cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgIDxkaXYgI2FjY29yZGlvbkJvZHkgW2lkXT1cInNlY3Rpb24ud2lkZ2V0LmlkZW50aWZpZXIrJ18nK2Nob2ljZS5mb3JtT2JqZWN0SWQrJ18nK3NlY3Rpb24uY2hpbGRTZWN0aW9uSWRcIiBjbGFzcz1cImFjY29yZGlvbi1jb2xsYXBzZSBjb2xsYXBzZVwiIGFyaWEtbGFiZWxsZWRieT1cImFjY29yZGlvbkhlYWRpbmdcIj5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYWNjb3JkaW9uLWJvZHkgc206cC0zIHB5LTNcIiAgICpuZ0lmPVwiY2hvaWNlTGlzdERldGFpbFZpZXdbY2hvaWNlLmZvcm1PYmplY3RJZF1cIiA+XG4gICAgICAgICAgICAgICAgICAgIDxkeW5hbWljLWRhdGEtdmlldyBbZGF0YURldGFpbFZpZXddPVwiY2hvaWNlTGlzdERldGFpbFZpZXdbY2hvaWNlLmZvcm1PYmplY3RJZF1cIlxuICAgICAgICAgICAgICAgICAgICBbYmFzZVVybF09XCJiYXNlVXJsXCIgXG4gICAgICAgICAgICAgICAgICAgIFt2aWV3VHlwZV09XCJkZXRhaWxWaWV3VHlwZS5Gb3JtT2JqZWN0Vmlld1wiXG4gICAgICAgICAgICAgICAgICAgIFtheG9uYXRvclgxVXJsXSA9XCJheG9uYXRvclgxVXJsXCI+PC9keW5hbWljLWRhdGEtdmlldz5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cblxuICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC1pbmZvXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LnZhbHVlOyBlbHNlIGlzV2lkZ2V0VmFsdWVFbXB0eVwiID5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCB0ZXh0LXNtXCIgKm5nSWY9XCJ3aWRnZXQuc3ViVHlwZSA9PSB3aWRnZXRTdWJUeXBlLmZpeGVkTGlzdCB8fCB3aWRnZXQuc3ViVHlwZSA9PSB3aWRnZXRTdWJUeXBlLmltYWdlRml4ZWRMaXN0XCI+XG4gICAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19jaG9pY2VfbGlzdFwiPjwvbWF0LWljb24+IFxuICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cInNlY3Rpb24uc2hvd1Byb21wdFwiPnt7d2lkZ2V0LnByb21wdH19PHNwYW4gY2xhc3M9XCJjb2xvblwiPjo8L3NwYW4+PC9zcGFuPlxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY2hvaWNlLWxpc3Qtdmlldy1jb250YWluZXJcIj5cbiAgICAgICAgICAgICAgICA8bWF0LWxpc3QgKm5nRm9yPVwibGV0IGl0ZW0gb2Ygd2lkZ2V0LnZhbHVlO2xldCBpID1pbmRleFwiIHJvbGU9XCJsaXN0XCI+XG4gICAgICAgICAgICAgICAgICA8bWF0LWxpc3QtaXRlbSB0aXRsZT1cInt7aXRlbX19XCIgcm9sZT1cImxpc3RpdGVtXCI+e3tpdGVtIH19PHNwYW4gKm5nSWY9XCJpICE9PSB3aWRnZXQudmFsdWUubGVuZ3RoLTFcIj4sPC9zcGFuPiZuYnNwOzwvbWF0LWxpc3QtaXRlbT5cbiAgICAgICAgICAgICAgICA8L21hdC1saXN0PlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICBcbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLXRlbXBsYXRlICNpc1dpZGdldFZhbHVlRW1wdHk+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fY2hvaWNlX2xpc3RcIj48L21hdC1pY29uPiBcbiAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gIFxuICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgPC9kaXY+XG5cblxuICAgIDxkaXYgKm5nSWY9XCJ3aWRnZXQuc3ViVHlwZSA9PSB3aWRnZXRTdWJUeXBlLmFwaUxpc3RcIj5cblxuXG4gICAgPC9kaXY+XG4gXG5cbiJdfQ==
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { Counter } from '../../../../forms/page/widgets/counter';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/material/icon";
|
|
6
|
+
function CounterWidgetViewComponent_div_0_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
i0.ɵɵelementStart(0, "span");
|
|
8
|
+
i0.ɵɵtext(1);
|
|
9
|
+
i0.ɵɵelementStart(2, "span", 8);
|
|
10
|
+
i0.ɵɵtext(3, ":");
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
} if (rf & 2) {
|
|
14
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
15
|
+
i0.ɵɵadvance(1);
|
|
16
|
+
i0.ɵɵtextInterpolate(ctx_r3.widget.prompt);
|
|
17
|
+
} }
|
|
18
|
+
function CounterWidgetViewComponent_div_0_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelementStart(0, "span", 9);
|
|
20
|
+
i0.ɵɵtext(1);
|
|
21
|
+
i0.ɵɵelementEnd();
|
|
22
|
+
} if (rf & 2) {
|
|
23
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
24
|
+
i0.ɵɵadvance(1);
|
|
25
|
+
i0.ɵɵtextInterpolate(ctx_r4.widget.unit);
|
|
26
|
+
} }
|
|
27
|
+
function CounterWidgetViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
i0.ɵɵelementStart(0, "div", 2);
|
|
29
|
+
i0.ɵɵelementStart(1, "div", 3);
|
|
30
|
+
i0.ɵɵelement(2, "mat-icon", 4);
|
|
31
|
+
i0.ɵɵtemplate(3, CounterWidgetViewComponent_div_0_span_3_Template, 4, 1, "span", 5);
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
i0.ɵɵelementStart(4, "div", 6);
|
|
34
|
+
i0.ɵɵtext(5);
|
|
35
|
+
i0.ɵɵtemplate(6, CounterWidgetViewComponent_div_0_span_6_Template, 2, 1, "span", 7);
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
} if (rf & 2) {
|
|
39
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
40
|
+
i0.ɵɵadvance(3);
|
|
41
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
42
|
+
i0.ɵɵadvance(2);
|
|
43
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.widget.value, " ");
|
|
44
|
+
i0.ɵɵadvance(1);
|
|
45
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.unit);
|
|
46
|
+
} }
|
|
47
|
+
function CounterWidgetViewComponent_ng_template_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
48
|
+
i0.ɵɵelementStart(0, "span");
|
|
49
|
+
i0.ɵɵtext(1);
|
|
50
|
+
i0.ɵɵelementStart(2, "span", 8);
|
|
51
|
+
i0.ɵɵtext(3, ":");
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
56
|
+
i0.ɵɵadvance(1);
|
|
57
|
+
i0.ɵɵtextInterpolate(ctx_r5.widget.prompt);
|
|
58
|
+
} }
|
|
59
|
+
function CounterWidgetViewComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
+
i0.ɵɵelementStart(0, "div", 10);
|
|
61
|
+
i0.ɵɵelementStart(1, "div", 11);
|
|
62
|
+
i0.ɵɵelement(2, "mat-icon", 12);
|
|
63
|
+
i0.ɵɵtemplate(3, CounterWidgetViewComponent_ng_template_1_span_3_Template, 4, 1, "span", 5);
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵelementStart(4, "span", 13);
|
|
66
|
+
i0.ɵɵtext(5, "-");
|
|
67
|
+
i0.ɵɵelementEnd();
|
|
68
|
+
i0.ɵɵelementEnd();
|
|
69
|
+
} if (rf & 2) {
|
|
70
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
71
|
+
i0.ɵɵadvance(3);
|
|
72
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
73
|
+
} }
|
|
74
|
+
export class CounterWidgetViewComponent {
|
|
75
|
+
constructor() { }
|
|
76
|
+
ngOnInit() {
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
CounterWidgetViewComponent.ɵfac = function CounterWidgetViewComponent_Factory(t) { return new (t || CounterWidgetViewComponent)(); };
|
|
80
|
+
CounterWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CounterWidgetViewComponent, selectors: [["lib-counter-widget-view"]], inputs: { widget: "widget" }, decls: 3, vars: 2, consts: [["class", "data-detail-info", 4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "data-detail-info"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_counter", 1, "add-text"], [4, "ngIf"], [1, "data-detail-text", "text-sm"], ["class", "pl-1", 4, "ngIf"], [1, "colon"], [1, "pl-1"], [1, "flex", "gap-4", "items-center"], [1, "data-detail-title", "flex", "text-sm", "m-0"], ["svgIcon", "axo_document", 1, "add-text"], [1, "flex", "justify-start"]], template: function CounterWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
81
|
+
i0.ɵɵtemplate(0, CounterWidgetViewComponent_div_0_Template, 7, 3, "div", 0);
|
|
82
|
+
i0.ɵɵtemplate(1, CounterWidgetViewComponent_ng_template_1_Template, 6, 1, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
|
83
|
+
} if (rf & 2) {
|
|
84
|
+
const _r1 = i0.ɵɵreference(2);
|
|
85
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
86
|
+
} }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
|
|
87
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CounterWidgetViewComponent, [{
|
|
88
|
+
type: Component,
|
|
89
|
+
args: [{ selector: 'lib-counter-widget-view', template: "<div class=\"data-detail-info\" *ngIf=\"widget.value ;else isWidgetValueEmpty\">\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_counter\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span></div>\n <div class=\"data-detail-text text-sm\"> {{widget.value}}\n <span class=\"pl-1\" *ngIf=\" widget.unit\">{{widget.unit}}</span>\n </div>\n \n \n</div>\n<ng-template #isWidgetValueEmpty>\n <div class=\"flex gap-4 items-center\">\n <div class=\"data-detail-title flex text-sm m-0\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_document\"></mat-icon> \n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n </div>\n \n\n</ng-template>\n", styles: [""] }]
|
|
90
|
+
}], function () { return []; }, { widget: [{
|
|
91
|
+
type: Input
|
|
92
|
+
}] }); })();
|
|
93
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY291bnRlci13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvY291bnRlci13aWRnZXQtdmlldy9jb3VudGVyLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9jb3VudGVyLXdpZGdldC12aWV3L2NvdW50ZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDekQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHdDQUF3QyxDQUFDOzs7OztJQ0E2Qyw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLCtCQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBRXhKLCtCQUF3QztJQUFBLFlBQWU7SUFBQSxpQkFBTzs7O0lBQXRCLGVBQWU7SUFBZix3Q0FBZTs7O0lBSC9ELDhCQUE0RTtJQUN4RSw4QkFBNEM7SUFBQSw4QkFBNEQ7SUFBRSxtRkFBcUY7SUFBQSxpQkFBTTtJQUNyTSw4QkFBc0M7SUFBQyxZQUNuQztJQUFBLG1GQUE4RDtJQUNsRSxpQkFBTTtJQUdWLGlCQUFNOzs7SUFOK0csZUFBd0I7SUFBeEIsZ0RBQXdCO0lBQ2xHLGVBQ25DO0lBRG1DLG9EQUNuQztJQUFvQixlQUFtQjtJQUFuQix5Q0FBbUI7OztJQVNuQyw0QkFBaUM7SUFBQSxZQUFpQjtJQUFBLCtCQUFvQjtJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFBQSxpQkFBTzs7O0lBQXBELGVBQWlCO0lBQWpCLDBDQUFpQjs7O0lBSDFELCtCQUFxQztJQUNqQywrQkFBZ0Q7SUFDNUMsK0JBQTZEO0lBQzdELDJGQUFxRjtJQUN6RixpQkFBTTtJQUNOLGdDQUFpQztJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFDN0MsaUJBQU07OztJQUhTLGVBQXdCO0lBQXhCLGdEQUF3Qjs7QURKM0MsTUFBTSxPQUFPLDBCQUEwQjtJQU1yQyxnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7b0dBVFUsMEJBQTBCOzZFQUExQiwwQkFBMEI7UUNSdkMsMkVBT007UUFDTiw0SEFVYzs7O1FBbEJpQix1Q0FBb0IsaUJBQUE7O3VGRFF0QywwQkFBMEI7Y0FMdEMsU0FBUzsyQkFDRSx5QkFBeUI7c0NBUzFCLE1BQU07a0JBQWQsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ291bnRlciB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9jb3VudGVyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWNvdW50ZXItd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vY291bnRlci13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NvdW50ZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDb3VudGVyV2lkZ2V0Vmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgICAgIC8qXG4gICogd2lkZ2V0IG9iamVjdFxuICAqL1xuICBASW5wdXQoKSB3aWRnZXQ6IENvdW50ZXI7XG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cblxufVxuIiwiPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLWluZm9cIiAqbmdJZj1cIndpZGdldC52YWx1ZSA7ZWxzZSBpc1dpZGdldFZhbHVlRW1wdHlcIj5cbiAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCB0ZXh0LXNtXCI+PG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2NvdW50ZXJcIj48L21hdC1pY29uPiAgPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGV4dCB0ZXh0LXNtXCI+IHt7d2lkZ2V0LnZhbHVlfX1cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJwbC0xXCIgKm5nSWY9XCIgd2lkZ2V0LnVuaXRcIj57e3dpZGdldC51bml0fX08L3NwYW4+XG4gICAgPC9kaXY+XG4gICAgXG4gIFxuPC9kaXY+XG48bmctdGVtcGxhdGUgI2lzV2lkZ2V0VmFsdWVFbXB0eT5cbiAgICA8ZGl2IGNsYXNzPVwiZmxleCBnYXAtNCBpdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbSBtLTBcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19kb2N1bWVudFwiPjwvbWF0LWljb24+IFxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwiZmxleCBqdXN0aWZ5LXN0YXJ0XCI+LTwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgICBcblxuPC9uZy10ZW1wbGF0ZT5cbiJdfQ==
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import moment from 'moment';
|
|
3
|
+
import { AxoUtils } from '../../../../../lib/axo-utils/axo-utils';
|
|
4
|
+
import { DateTime } from '../../../../forms/page/widgets/datetime';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/common";
|
|
7
|
+
import * as i2 from "@angular/material/icon";
|
|
8
|
+
function DateTimeWidgetViewComponent_ng_container_1_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
10
|
+
i0.ɵɵelement(1, "mat-icon", 9);
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
} }
|
|
13
|
+
function DateTimeWidgetViewComponent_ng_container_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
14
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
15
|
+
i0.ɵɵelement(1, "mat-icon", 10);
|
|
16
|
+
i0.ɵɵelementEnd();
|
|
17
|
+
} }
|
|
18
|
+
function DateTimeWidgetViewComponent_ng_container_1_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
20
|
+
i0.ɵɵelement(1, "mat-icon", 11);
|
|
21
|
+
i0.ɵɵelementEnd();
|
|
22
|
+
} }
|
|
23
|
+
function DateTimeWidgetViewComponent_ng_container_1_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
25
|
+
i0.ɵɵelement(1, "mat-icon", 10);
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
} }
|
|
28
|
+
function DateTimeWidgetViewComponent_ng_container_1_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
29
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
30
|
+
i0.ɵɵelement(1, "mat-icon", 10);
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
} }
|
|
33
|
+
function DateTimeWidgetViewComponent_ng_container_1_span_7_Template(rf, ctx) { if (rf & 1) {
|
|
34
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
35
|
+
i0.ɵɵtext(1);
|
|
36
|
+
i0.ɵɵelementStart(2, "span", 12);
|
|
37
|
+
i0.ɵɵtext(3, ":");
|
|
38
|
+
i0.ɵɵelementEnd();
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
} if (rf & 2) {
|
|
41
|
+
const ctx_r8 = i0.ɵɵnextContext(2);
|
|
42
|
+
i0.ɵɵadvance(1);
|
|
43
|
+
i0.ɵɵtextInterpolate(ctx_r8.widget.prompt);
|
|
44
|
+
} }
|
|
45
|
+
function DateTimeWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
46
|
+
i0.ɵɵelementContainerStart(0);
|
|
47
|
+
i0.ɵɵelementStart(1, "div", 3);
|
|
48
|
+
i0.ɵɵtemplate(2, DateTimeWidgetViewComponent_ng_container_1_span_2_Template, 2, 0, "span", 4);
|
|
49
|
+
i0.ɵɵtemplate(3, DateTimeWidgetViewComponent_ng_container_1_span_3_Template, 2, 0, "span", 4);
|
|
50
|
+
i0.ɵɵtemplate(4, DateTimeWidgetViewComponent_ng_container_1_span_4_Template, 2, 0, "span", 4);
|
|
51
|
+
i0.ɵɵtemplate(5, DateTimeWidgetViewComponent_ng_container_1_span_5_Template, 2, 0, "span", 4);
|
|
52
|
+
i0.ɵɵtemplate(6, DateTimeWidgetViewComponent_ng_container_1_span_6_Template, 2, 0, "span", 5);
|
|
53
|
+
i0.ɵɵtemplate(7, DateTimeWidgetViewComponent_ng_container_1_span_7_Template, 4, 1, "span", 6);
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
i0.ɵɵelementStart(8, "div", 7);
|
|
56
|
+
i0.ɵɵtext(9);
|
|
57
|
+
i0.ɵɵelementEnd();
|
|
58
|
+
i0.ɵɵelementContainerEnd();
|
|
59
|
+
} if (rf & 2) {
|
|
60
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
61
|
+
i0.ɵɵadvance(1);
|
|
62
|
+
i0.ɵɵproperty("ngSwitch", ctx_r0.widget.subType);
|
|
63
|
+
i0.ɵɵadvance(1);
|
|
64
|
+
i0.ɵɵproperty("ngSwitchCase", "date");
|
|
65
|
+
i0.ɵɵadvance(1);
|
|
66
|
+
i0.ɵɵproperty("ngSwitchCase", "both");
|
|
67
|
+
i0.ɵɵadvance(1);
|
|
68
|
+
i0.ɵɵproperty("ngSwitchCase", "time");
|
|
69
|
+
i0.ɵɵadvance(1);
|
|
70
|
+
i0.ɵɵproperty("ngSwitchCase", "date_range");
|
|
71
|
+
i0.ɵɵadvance(2);
|
|
72
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
73
|
+
i0.ɵɵadvance(2);
|
|
74
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.widgetValue, "");
|
|
75
|
+
} }
|
|
76
|
+
function DateTimeWidgetViewComponent_ng_template_2_span_1_Template(rf, ctx) { if (rf & 1) {
|
|
77
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
78
|
+
i0.ɵɵelement(1, "mat-icon", 9);
|
|
79
|
+
i0.ɵɵelementEnd();
|
|
80
|
+
} }
|
|
81
|
+
function DateTimeWidgetViewComponent_ng_template_2_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
82
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
83
|
+
i0.ɵɵelement(1, "mat-icon", 10);
|
|
84
|
+
i0.ɵɵelementEnd();
|
|
85
|
+
} }
|
|
86
|
+
function DateTimeWidgetViewComponent_ng_template_2_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
87
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
88
|
+
i0.ɵɵelement(1, "mat-icon", 11);
|
|
89
|
+
i0.ɵɵelementEnd();
|
|
90
|
+
} }
|
|
91
|
+
function DateTimeWidgetViewComponent_ng_template_2_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
92
|
+
i0.ɵɵelementStart(0, "span");
|
|
93
|
+
i0.ɵɵelement(1, "mat-icon", 10);
|
|
94
|
+
i0.ɵɵelementEnd();
|
|
95
|
+
} }
|
|
96
|
+
function DateTimeWidgetViewComponent_ng_template_2_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
97
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
98
|
+
i0.ɵɵelement(1, "mat-icon", 10);
|
|
99
|
+
i0.ɵɵelementEnd();
|
|
100
|
+
} }
|
|
101
|
+
function DateTimeWidgetViewComponent_ng_template_2_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
102
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
103
|
+
i0.ɵɵtext(1);
|
|
104
|
+
i0.ɵɵelementStart(2, "span", 12);
|
|
105
|
+
i0.ɵɵtext(3, ":");
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
i0.ɵɵelementEnd();
|
|
108
|
+
} if (rf & 2) {
|
|
109
|
+
const ctx_r14 = i0.ɵɵnextContext(2);
|
|
110
|
+
i0.ɵɵadvance(1);
|
|
111
|
+
i0.ɵɵtextInterpolate(ctx_r14.widget.prompt);
|
|
112
|
+
} }
|
|
113
|
+
function DateTimeWidgetViewComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
114
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
115
|
+
i0.ɵɵtemplate(1, DateTimeWidgetViewComponent_ng_template_2_span_1_Template, 2, 0, "span", 4);
|
|
116
|
+
i0.ɵɵtemplate(2, DateTimeWidgetViewComponent_ng_template_2_span_2_Template, 2, 0, "span", 4);
|
|
117
|
+
i0.ɵɵtemplate(3, DateTimeWidgetViewComponent_ng_template_2_span_3_Template, 2, 0, "span", 4);
|
|
118
|
+
i0.ɵɵtemplate(4, DateTimeWidgetViewComponent_ng_template_2_span_4_Template, 2, 0, "span", 13);
|
|
119
|
+
i0.ɵɵtemplate(5, DateTimeWidgetViewComponent_ng_template_2_span_5_Template, 2, 0, "span", 5);
|
|
120
|
+
i0.ɵɵtemplate(6, DateTimeWidgetViewComponent_ng_template_2_span_6_Template, 4, 1, "span", 6);
|
|
121
|
+
i0.ɵɵelementEnd();
|
|
122
|
+
i0.ɵɵelementStart(7, "span", 14);
|
|
123
|
+
i0.ɵɵtext(8, "-");
|
|
124
|
+
i0.ɵɵelementEnd();
|
|
125
|
+
} if (rf & 2) {
|
|
126
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
127
|
+
i0.ɵɵproperty("ngSwitch", ctx_r2.widget.subType);
|
|
128
|
+
i0.ɵɵadvance(1);
|
|
129
|
+
i0.ɵɵproperty("ngSwitchCase", "date");
|
|
130
|
+
i0.ɵɵadvance(1);
|
|
131
|
+
i0.ɵɵproperty("ngSwitchCase", "both");
|
|
132
|
+
i0.ɵɵadvance(1);
|
|
133
|
+
i0.ɵɵproperty("ngSwitchCase", "time");
|
|
134
|
+
i0.ɵɵadvance(1);
|
|
135
|
+
i0.ɵɵproperty("ngSwitchCase", "date_range");
|
|
136
|
+
i0.ɵɵadvance(2);
|
|
137
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
138
|
+
} }
|
|
139
|
+
export class DateTimeWidgetViewComponent {
|
|
140
|
+
constructor() { }
|
|
141
|
+
ngOnInit() {
|
|
142
|
+
this.widgetValue = this.widget.value;
|
|
143
|
+
this.changeValueToDateRange();
|
|
144
|
+
}
|
|
145
|
+
changeValueToDateRange() {
|
|
146
|
+
if (this.widgetValue) {
|
|
147
|
+
if (this.widget.subType === 'date_range') {
|
|
148
|
+
this.widgetValue = AxoUtils.formatDateToCustomDateFormat(this.widgetValue.from, 'MMMM D, YYYY') + ' to ' + AxoUtils.formatDateToCustomDateFormat(this.widgetValue.to, 'MMMM D, YYYY');
|
|
149
|
+
}
|
|
150
|
+
else if (this.widget.subType === 'time') {
|
|
151
|
+
this.widgetValue = moment(AxoUtils.formatDateFromUTCToLocal(moment(this.widget.value.toString(), 'h:mm a').toLocaleString())).format('hh:mm A');
|
|
152
|
+
}
|
|
153
|
+
else if (this.widget.subType === 'date') {
|
|
154
|
+
this.widgetValue = this.widget.dateFormat && this.widget.dateFormat !== '' ? moment(AxoUtils.formatDateFromUTCToLocal(moment(this.widget.value.toString()).toLocaleString())).format(AxoUtils.checkFormat(this.widget.dateFormat)) : moment(AxoUtils.formatDateFromUTCToLocal(moment(this.widget.value.toString()).toLocaleString())).format("MMMM DD YYYY");
|
|
155
|
+
}
|
|
156
|
+
else {
|
|
157
|
+
this.widgetValue = this.widget.dateFormat && this.widget.dateFormat !== '' ? moment(AxoUtils.formatDateFromUTCToLocal(moment(this.widget.value.toString()).toLocaleString())).format(AxoUtils.checkFormat(this.widget.dateFormat)) : AxoUtils.formatDateFromUTCToLocal(moment(this.widget.value.toString()).toLocaleString());
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
DateTimeWidgetViewComponent.ɵfac = function DateTimeWidgetViewComponent_Factory(t) { return new (t || DateTimeWidgetViewComponent)(); };
|
|
163
|
+
DateTimeWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DateTimeWidgetViewComponent, selectors: [["lib-date-time-widget-view"]], inputs: { widget: "widget" }, decls: 4, vars: 2, consts: [[1, "data-detail-info"], [4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], [1, "data-detail-title", "flex", "text-sm", 3, "ngSwitch"], ["class", "date-icon", 4, "ngSwitchCase"], ["class", "date-icon", 4, "ngSwitchDefault"], ["class", "date-icon", 4, "ngIf"], [1, "data-detail-text", "text-sm"], [1, "date-icon"], ["svgIcon", "axo_date", 1, "add-text"], ["svgIcon", "axo_datetime", 1, "add-text"], ["svgIcon", "axo_time", 1, "add-text"], [1, "colon"], [4, "ngSwitchCase"], [1, "flex", "justify-start"]], template: function DateTimeWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
164
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
165
|
+
i0.ɵɵtemplate(1, DateTimeWidgetViewComponent_ng_container_1_Template, 10, 7, "ng-container", 1);
|
|
166
|
+
i0.ɵɵtemplate(2, DateTimeWidgetViewComponent_ng_template_2_Template, 9, 6, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
|
|
167
|
+
i0.ɵɵelementEnd();
|
|
168
|
+
} if (rf & 2) {
|
|
169
|
+
const _r1 = i0.ɵɵreference(3);
|
|
170
|
+
i0.ɵɵadvance(1);
|
|
171
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
172
|
+
} }, directives: [i1.NgIf, i1.NgSwitch, i1.NgSwitchCase, i1.NgSwitchDefault, i2.MatIcon], styles: ["lib-date-time-widget-view .date-icon{display:flex;align-items:center}\n"], encapsulation: 2 });
|
|
173
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DateTimeWidgetViewComponent, [{
|
|
174
|
+
type: Component,
|
|
175
|
+
args: [{ selector: 'lib-date-time-widget-view', encapsulation: ViewEncapsulation.None, template: " <div class=\"data-detail-info\">\n <ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"data-detail-title flex text-sm\" [ngSwitch]=\"widget.subType\">\n <span *ngSwitchCase=\"'date'\" class=\"date-icon\"><mat-icon class=\"add-text\" svgIcon=\"axo_date\"></mat-icon> </span>\n <span *ngSwitchCase=\"'both'\" class=\"date-icon\"> <mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon></span>\n <span *ngSwitchCase=\"'time'\" class=\"date-icon\"> <mat-icon class=\"add-text\" svgIcon=\"axo_time\"></mat-icon></span>\n <span *ngSwitchCase=\"'date_range'\" class=\"date-icon\"><mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon> </span>\n <span *ngSwitchDefault class=\"date-icon\"><mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon></span>\n <span *ngIf=\"section.showPrompt\" class=\"date-icon\">{{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\" [ngSwitch]=\"widget.subType\">\n <span *ngSwitchCase=\"'date'\" class=\"date-icon\"><mat-icon class=\"add-text\" svgIcon=\"axo_date\"></mat-icon> </span>\n <span *ngSwitchCase=\"'both'\" class=\"date-icon\"> <mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon></span>\n <span *ngSwitchCase=\"'time'\" class=\"date-icon\"> <mat-icon class=\"add-text\" svgIcon=\"axo_time\"></mat-icon></span>\n <span *ngSwitchCase=\"'date_range'\"><mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon> </span>\n <span *ngSwitchDefault class=\"date-icon\"><mat-icon class=\"add-text\" svgIcon=\"axo_datetime\"></mat-icon></span>\n <span *ngIf=\"section.showPrompt\" class=\"date-icon\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div> \n <span class=\"flex justify-start\">-</span>\n\n </ng-template>\n</div>\n\n\n ", styles: ["lib-date-time-widget-view .date-icon{display:flex;align-items:center}\n"] }]
|
|
176
|
+
}], function () { return []; }, { widget: [{
|
|
177
|
+
type: Input
|
|
178
|
+
}] }); })();
|
|
179
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS10aW1lLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9kYXRlLXRpbWUtd2lkZ2V0LXZpZXcvZGF0ZS10aW1lLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9kYXRlLXRpbWUtd2lkZ2V0LXZpZXcvZGF0ZS10aW1lLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzVFLE9BQU8sTUFBTSxNQUFNLFFBQVEsQ0FBQztBQUM1QixPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sd0NBQXdDLENBQUM7QUFDbEUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlDQUF5QyxDQUFDOzs7OztJQ0E3RCwrQkFBK0M7SUFBQSw4QkFBeUQ7SUFBQyxpQkFBTzs7O0lBQ2hILCtCQUErQztJQUFDLCtCQUE2RDtJQUFBLGlCQUFPOzs7SUFDcEgsK0JBQStDO0lBQUMsK0JBQXlEO0lBQUEsaUJBQU87OztJQUNoSCwrQkFBcUQ7SUFBQSwrQkFBNkQ7SUFBQyxpQkFBTzs7O0lBQzFILCtCQUF5QztJQUFBLCtCQUE2RDtJQUFBLGlCQUFPOzs7SUFDN0csK0JBQW1EO0lBQUEsWUFBaUI7SUFBQSxnQ0FBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwwQ0FB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cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IG1vbWVudCBmcm9tICdtb21lbnQnO1xuaW1wb3J0IHsgQXhvVXRpbHMgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9saWIvYXhvLXV0aWxzL2F4by11dGlscyc7XG5pbXBvcnQgeyBEYXRlVGltZSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9kYXRldGltZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1kYXRlLXRpbWUtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0ZS10aW1lLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGF0ZS10aW1lLXdpZGdldC12aWV3LmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246Vmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBEYXRlVGltZVdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG5cbiAgLypcbiogd2lkZ2V0IG9iamVjdFxuKi9cbiAgQElucHV0KCkgd2lkZ2V0OiBEYXRlVGltZTtcbiAgd2lkZ2V0VmFsdWU6IGFueTtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMud2lkZ2V0VmFsdWUgPSB0aGlzLndpZGdldC52YWx1ZTtcbiAgICB0aGlzLmNoYW5nZVZhbHVlVG9EYXRlUmFuZ2UoKTtcbiAgfVxuXG4gIGNoYW5nZVZhbHVlVG9EYXRlUmFuZ2UoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMud2lkZ2V0VmFsdWUpIHtcbiAgICAgIGlmICh0aGlzLndpZGdldC5zdWJUeXBlID09PSAnZGF0ZV9yYW5nZScpIHtcbiAgICAgICAgdGhpcy53aWRnZXRWYWx1ZSA9IEF4b1V0aWxzLmZvcm1hdERhdGVUb0N1c3RvbURhdGVGb3JtYXQodGhpcy53aWRnZXRWYWx1ZS5mcm9tLCdNTU1NIEQsIFlZWVknKSArICcgdG8gJyArICBBeG9VdGlscy5mb3JtYXREYXRlVG9DdXN0b21EYXRlRm9ybWF0KHRoaXMud2lkZ2V0VmFsdWUudG8sJ01NTU0gRCwgWVlZWScpO1xuICAgICAgfVxuICAgICAgZWxzZSBpZih0aGlzLndpZGdldC5zdWJUeXBlID09PSAndGltZScpe1xuICAgICAgICB0aGlzLndpZGdldFZhbHVlID0gbW9tZW50KEF4b1V0aWxzLmZvcm1hdERhdGVGcm9tVVRDVG9Mb2NhbChtb21lbnQodGhpcy53aWRnZXQudmFsdWUudG9TdHJpbmcoKSwnaDptbSBhJykudG9Mb2NhbGVTdHJpbmcoKSkpLmZvcm1hdCgnaGg6bW0gQScpO1xuICAgICAgfVxuICAgICAgZWxzZSBpZih0aGlzLndpZGdldC5zdWJUeXBlID09PSAnZGF0ZScpe1xuICAgICAgICB0aGlzLndpZGdldFZhbHVlID0gdGhpcy53aWRnZXQuZGF0ZUZvcm1hdCAmJiB0aGlzLndpZGdldC5kYXRlRm9ybWF0ICE9PSAnJz8gbW9tZW50KEF4b1V0aWxzLmZvcm1hdERhdGVGcm9tVVRDVG9Mb2NhbChtb21lbnQodGhpcy53aWRnZXQudmFsdWUudG9TdHJpbmcoKSkudG9Mb2NhbGVTdHJpbmcoKSkpLmZvcm1hdChBeG9VdGlscy5jaGVja0Zvcm1hdCh0aGlzLndpZGdldC5kYXRlRm9ybWF0KSk6bW9tZW50KEF4b1V0aWxzLmZvcm1hdERhdGVGcm9tVVRDVG9Mb2NhbChtb21lbnQodGhpcy53aWRnZXQudmFsdWUudG9TdHJpbmcoKSkudG9Mb2NhbGVTdHJpbmcoKSkpLmZvcm1hdChcIk1NTU0gREQgWVlZWVwiKTtcbiAgICAgIH1cbiAgICAgIGVsc2Uge1xuICAgICAgICB0aGlzLndpZGdldFZhbHVlID0gdGhpcy53aWRnZXQuZGF0ZUZvcm1hdCAmJiB0aGlzLndpZGdldC5kYXRlRm9ybWF0ICE9PSAnJz8gbW9tZW50KEF4b1V0aWxzLmZvcm1hdERhdGVGcm9tVVRDVG9Mb2NhbChtb21lbnQodGhpcy53aWRnZXQudmFsdWUudG9TdHJpbmcoKSkudG9Mb2NhbGVTdHJpbmcoKSkpLmZvcm1hdChBeG9VdGlscy5jaGVja0Zvcm1hdCh0aGlzLndpZGdldC5kYXRlRm9ybWF0KSk6QXhvVXRpbHMuZm9ybWF0RGF0ZUZyb21VVENUb0xvY2FsKG1vbWVudCh0aGlzLndpZGdldC52YWx1ZS50b1N0cmluZygpKS50b0xvY2FsZVN0cmluZygpKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgfVxuXG5cbn1cbiIsIiA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtaW5mb1wiPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LnZhbHVlOyBlbHNlIGlzV2lkZ2V0VmFsdWVFbXB0eVwiID5cbiAgICA8ZGl2ICBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiIFtuZ1N3aXRjaF09XCJ3aWRnZXQuc3ViVHlwZVwiPlxuICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidkYXRlJ1wiIGNsYXNzPVwiZGF0ZS1pY29uXCI+PG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2RhdGVcIj48L21hdC1pY29uPiA8L3NwYW4+XG4gICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ2JvdGgnXCIgY2xhc3M9XCJkYXRlLWljb25cIj4gPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2RhdGV0aW1lXCI+PC9tYXQtaWNvbj48L3NwYW4+XG4gICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ3RpbWUnXCIgY2xhc3M9XCJkYXRlLWljb25cIj4gPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX3RpbWVcIj48L21hdC1pY29uPjwvc3Bhbj5cbiAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInZGF0ZV9yYW5nZSdcIiBjbGFzcz1cImRhdGUtaWNvblwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19kYXRldGltZVwiPjwvbWF0LWljb24+IDwvc3Bhbj5cbiAgICAgIDxzcGFuICpuZ1N3aXRjaERlZmF1bHQgY2xhc3M9XCJkYXRlLWljb25cIj48bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fZGF0ZXRpbWVcIj48L21hdC1pY29uPjwvc3Bhbj5cbiAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCIgY2xhc3M9XCJkYXRlLWljb25cIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICA8L2Rpdj4gIFxuICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGV4dCB0ZXh0LXNtXCI+IHt7d2lkZ2V0VmFsdWV9fTwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbiAgPG5nLXRlbXBsYXRlICNpc1dpZGdldFZhbHVlRW1wdHk+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCB0ZXh0LXNtXCIgW25nU3dpdGNoXT1cIndpZGdldC5zdWJUeXBlXCI+XG4gICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInZGF0ZSdcIiBjbGFzcz1cImRhdGUtaWNvblwiPjxtYXQtaWNvbiBjbGFzcz1cImFkZC10ZXh0XCIgc3ZnSWNvbj1cImF4b19kYXRlXCI+PC9tYXQtaWNvbj4gPC9zcGFuPlxuICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ2JvdGgnXCIgY2xhc3M9XCJkYXRlLWljb25cIj4gPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2RhdGV0aW1lXCI+PC9tYXQtaWNvbj48L3NwYW4+XG4gICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCIndGltZSdcIiBjbGFzcz1cImRhdGUtaWNvblwiPiA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fdGltZVwiPjwvbWF0LWljb24+PC9zcGFuPlxuICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ2RhdGVfcmFuZ2UnXCI+PG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2RhdGV0aW1lXCI+PC9tYXQtaWNvbj4gPC9zcGFuPlxuICAgICAgICA8c3BhbiAqbmdTd2l0Y2hEZWZhdWx0IGNsYXNzPVwiZGF0ZS1pY29uXCI+PG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2RhdGV0aW1lXCI+PC9tYXQtaWNvbj48L3NwYW4+XG4gICAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCIgY2xhc3M9XCJkYXRlLWljb25cIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgIDwvZGl2PiAgXG4gICAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG5cbiAgPC9uZy10ZW1wbGF0ZT5cbjwvZGl2PlxuXG5cbiAiXX0=
|