ax-common-ui-lib 1.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/ax-common-ui-lib.d.ts +5 -0
- package/esm2020/ax-common-ui-lib.mjs +5 -0
- package/esm2020/lib/app-list/app-list-dto.mjs +29 -0
- package/esm2020/lib/app-list/app-list.component.mjs +421 -0
- package/esm2020/lib/app-list/my-app-list.service.mjs +142 -0
- package/esm2020/lib/app-list/organization-list-dto.mjs +29 -0
- package/esm2020/lib/ax-common-ui-lib.component.mjs +26 -0
- package/esm2020/lib/ax-common-ui-lib.module.mjs +147 -0
- package/esm2020/lib/ax-common-ui-lib.service.mjs +14 -0
- package/esm2020/lib/axo-filters/axo-filters.component.mjs +422 -0
- package/esm2020/lib/axo-filters/axo-filters.module.mjs +59 -0
- package/esm2020/lib/axo-filters/axo-filters.service.mjs +85 -0
- package/esm2020/lib/axo-map/axo-map.component.mjs +40 -0
- package/esm2020/lib/axo-map/axo-map.mjs +37 -0
- package/esm2020/lib/axo-map/axo-map.module.mjs +41 -0
- package/esm2020/lib/axo-map/public-api.mjs +7 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.component.mjs +84 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.module.mjs +38 -0
- package/esm2020/lib/axo-search-bar/public.api.mjs +3 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.component.mjs +155 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.module.mjs +34 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.service.mjs +29 -0
- package/esm2020/lib/axo-snack-bar/public-api.mjs +3 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.module.mjs +27 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.service.mjs +37 -0
- package/esm2020/lib/axo-state-manager/public-api.mjs +3 -0
- package/esm2020/lib/axo-utils/axo-utils.mjs +149 -0
- package/esm2020/lib/axo-utils/axo-utils.module.mjs +25 -0
- package/esm2020/lib/axo-utils/constants.mjs +3 -0
- package/esm2020/lib/axo-utils/data-source-types.mjs +12 -0
- package/esm2020/lib/axo-utils/field-list-search-pipe.mjs +32 -0
- package/esm2020/lib/axo-utils/filter-search-pipe.mjs +16 -0
- package/esm2020/lib/axo-utils/public-api.mjs +2 -0
- package/esm2020/lib/axo-utils/search-pipe/choice-search.pipe.mjs +33 -0
- package/esm2020/lib/axo-utils/search-pipe.mjs +36 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.component.mjs +196 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.module.mjs +29 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.service.mjs +122 -0
- package/esm2020/lib/code-editor/code-editor-modes.mjs +11 -0
- package/esm2020/lib/code-editor/code-editor-themes.mjs +8 -0
- package/esm2020/lib/code-editor/code-editor.component.mjs +60 -0
- package/esm2020/lib/code-editor/code-editor.module.mjs +36 -0
- package/esm2020/lib/code-editor/icode-editor-options.mjs +2 -0
- package/esm2020/lib/code-editor/public-api.mjs +3 -0
- package/esm2020/lib/common-dto/attributes-dto.mjs +39 -0
- package/esm2020/lib/common-dto/dashboard-dto.mjs +12 -0
- package/esm2020/lib/common-dto/dataListFilter-dto.mjs +13 -0
- package/esm2020/lib/common-dto/elements-dto.mjs +61 -0
- package/esm2020/lib/common-dto/form-dto.mjs +48 -0
- package/esm2020/lib/common-lib-configuration.service.mjs +21 -0
- package/esm2020/lib/common-property-panel/properties/properties.service.mjs +30 -0
- package/esm2020/lib/common-utils/entity-base.mjs +12 -0
- package/esm2020/lib/common-utils/iFlatten.mjs +2 -0
- package/esm2020/lib/common-utils/report.mjs +45 -0
- package/esm2020/lib/common.service.mjs +78 -0
- package/esm2020/lib/converters/convert-to-new-service.mjs +11 -0
- package/esm2020/lib/converters/convert-to-old-service.mjs +168 -0
- package/esm2020/lib/core/auth/auth.service.mjs +146 -0
- package/esm2020/lib/core/core.module.mjs +37 -0
- package/esm2020/lib/core/icons/icons.module.mjs +255 -0
- package/esm2020/lib/core/transloco/transloco.http-loader.mjs +32 -0
- package/esm2020/lib/core/transloco/transloco.module.mjs +94 -0
- package/esm2020/lib/core/user/axo-user.mjs +46 -0
- package/esm2020/lib/core/user/user-data.service.mjs +46 -0
- package/esm2020/lib/core/user/user.service.mjs +87 -0
- package/esm2020/lib/core/user/user.types.mjs +2 -0
- package/esm2020/lib/dashboard-lib/dashboard-builder.service.mjs +56 -0
- package/esm2020/lib/dashboard-lib/dashboard-control.service.mjs +92 -0
- package/esm2020/lib/dashboard-lib/dashboard-element/dashboard-element.mjs +11 -0
- package/esm2020/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.mjs +9 -0
- package/esm2020/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.mjs +107 -0
- package/esm2020/lib/dashboard-lib/dashboard-lib.module.mjs +111 -0
- package/esm2020/lib/dashboard-lib/dashboard-list.service.mjs +73 -0
- package/esm2020/lib/dashboard-lib/dashboard.mjs +15 -0
- package/esm2020/lib/dashboard-lib/send-to-dashboard.service.mjs +96 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.component.mjs +241 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.service.mjs +32 -0
- package/esm2020/lib/data-view-lib/data-view/axo-card.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/axo-tag.mjs +48 -0
- package/esm2020/lib/data-view-lib/data-view/board-column.mjs +24 -0
- package/esm2020/lib/data-view-lib/data-view/board-view.mjs +45 -0
- package/esm2020/lib/data-view-lib/data-view/cardConfig.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/conditional-formatting.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view/coordinate.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-enums.mjs +68 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-filter.mjs +47 -0
- package/esm2020/lib/data-view-lib/data-view/data-view.mjs +66 -0
- package/esm2020/lib/data-view-lib/data-view/idata-view.mjs +2 -0
- package/esm2020/lib/data-view-lib/data-view/image-style.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/info-window.mjs +23 -0
- package/esm2020/lib/data-view-lib/data-view/location.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/map-view.mjs +41 -0
- package/esm2020/lib/data-view-lib/data-view/prefix-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tag-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tagConfig.mjs +63 -0
- package/esm2020/lib/data-view-lib/data-view/task-asset-form-object-dto.mjs +72 -0
- package/esm2020/lib/data-view-lib/data-view/task-column-value.mjs +43 -0
- package/esm2020/lib/data-view-lib/data-view/task-view.mjs +31 -0
- package/esm2020/lib/data-view-lib/data-view/task.mjs +199 -0
- package/esm2020/lib/data-view-lib/data-view/value-style.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.component.mjs +661 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.service.mjs +102 -0
- package/esm2020/lib/data-view-lib/data-view-header/data-view-header.component.mjs +536 -0
- package/esm2020/lib/data-view-lib/data-view-lib.module.mjs +88 -0
- package/esm2020/lib/data-view-lib/data-view.service.mjs +211 -0
- package/esm2020/lib/data-view-lib/public-api.mjs +28 -0
- package/esm2020/lib/directive/adjust-font-size.mjs +49 -0
- package/esm2020/lib/drill-through/drill-through.component.mjs +153 -0
- package/esm2020/lib/drill-through/drill-through.module.mjs +33 -0
- package/esm2020/lib/drill-through/drill-through.resolver.mjs +80 -0
- package/esm2020/lib/drill-through/drill-through.service.mjs +218 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-column.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-list.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range.mjs +38 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-toggle.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression-value.mjs +32 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression.mjs +415 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-number-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/exp-sub-type.mjs +29 -0
- package/esm2020/lib/enlighten-lib/ax-expression/public-api.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/attribute.mjs +247 -0
- package/esm2020/lib/enlighten-lib/data-model/data-model.mjs +52 -0
- package/esm2020/lib/enlighten-lib/data-model/dependee.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/dependent.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/entity.mjs +71 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs +113 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree-enums.mjs +6 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.component.mjs +301 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.module.mjs +67 -0
- package/esm2020/lib/enlighten-lib/elements/Property.mjs +3 -0
- package/esm2020/lib/enlighten-lib/elements/ax-element.mjs +55 -0
- package/esm2020/lib/enlighten-lib/elements/element-factory.mjs +38 -0
- package/esm2020/lib/enlighten-lib/enlighten-lib.module.mjs +308 -0
- package/esm2020/lib/enlighten-lib/enums/bread-crumbs-style.mjs +6 -0
- package/esm2020/lib/enlighten-lib/enums/operator-text-enum.mjs +11 -0
- package/esm2020/lib/enlighten-lib/fields/attribute-data.mjs +167 -0
- package/esm2020/lib/enlighten-lib/fields/entity.mjs +16 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-audio.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-barcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-childrecord.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-counter.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-date.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-decimal.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-document.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-file.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-image.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-location.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-number.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-qrcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-signature.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-staticmedia.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-text.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-time.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-uniqueid.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/axo-timestamp.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/choicelist.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/datetime.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/hyperlink.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ienlighten-type.mjs +2 -0
- package/esm2020/lib/enlighten-lib/fields/types/toggle.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/video.mjs +6 -0
- package/esm2020/lib/enlighten-lib/filters/ax-filter.mjs +74 -0
- package/esm2020/lib/enlighten-lib/filters/ax-operator.mjs +88 -0
- package/esm2020/lib/enlighten-lib/filters/chart-filter-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/filters/condition-type.mjs +49 -0
- package/esm2020/lib/enlighten-lib/filters/dataList-searchNode.mjs +48 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterExpression.mjs +32 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterOperator.mjs +43 -0
- package/esm2020/lib/enlighten-lib/filters/dataListSeachQueryTree.mjs +25 -0
- package/esm2020/lib/enlighten-lib/filters/filter-category.mjs +78 -0
- package/esm2020/lib/enlighten-lib/filters/general-filter-type.mjs +13 -0
- package/esm2020/lib/enlighten-lib/filters/gridster-properties.mjs +31 -0
- package/esm2020/lib/enlighten-lib/filters/iax-filter.mjs +2 -0
- package/esm2020/lib/enlighten-lib/filters/search-node.mjs +50 -0
- package/esm2020/lib/enlighten-lib/filters/static-widget.mjs +24 -0
- package/esm2020/lib/enlighten-lib/property/element-property.mjs +11 -0
- package/esm2020/lib/enlighten-lib/property/filter-category-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/property/filter-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report/chart-filter/chart-filter.component.mjs +393 -0
- package/esm2020/lib/enlighten-lib/report/element.service.mjs +115 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.mjs +1002 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.mjs +144 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.mjs +576 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.mjs +66 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/border.mjs +18 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-factory.mjs +80 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-property.mjs +4 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-type.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart.mjs +123 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/dimension.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/font.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/fontStyle.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/label.mjs +6 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/legend.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/matrix.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/shadow.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/style.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/text-style.mjs +34 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/title.mjs +12 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.component.mjs +357 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.directive.mjs +16 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/ichart-component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/igraphical-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.mjs +856 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.mjs +97 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/page/page.mjs +48 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.mjs +934 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.mjs +103 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text-chart.mjs +56 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.component.mjs +302 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/iproperty.component.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/ireport.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/report-builder-master.service.mjs +83 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.component.mjs +313 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.module.mjs +71 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.service.mjs +246 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/aggregate.mjs +10 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/column-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/itabular-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/orderby-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/row-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/table-style.mjs +47 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.mjs +4464 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.mjs +1583 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.mjs +70 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.mjs +1837 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.mjs +756 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.component.mjs +156 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.mjs +245 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.service.mjs +960 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular.mjs +196 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/value-formatting.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report-control.service.mjs +41 -0
- package/esm2020/lib/enlighten-lib/utils/utils.mjs +26 -0
- package/esm2020/lib/field-list-lib/fields-list.service.mjs +299 -0
- package/esm2020/lib/filters/calender-filter/calender-filter.component.mjs +351 -0
- package/esm2020/lib/filters/category-filter/category-filter.component.mjs +207 -0
- package/esm2020/lib/filters/category-filter/category-filter.service.mjs +31 -0
- package/esm2020/lib/filters/category-filter/category.service.mjs +45 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.component.mjs +178 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.service.mjs +53 -0
- package/esm2020/lib/filters/common-filter/common-filter.component.mjs +310 -0
- package/esm2020/lib/filters/common-filter/common-filter.service.mjs +106 -0
- package/esm2020/lib/filters/custom-scroll-directives.mjs +45 -0
- package/esm2020/lib/filters/date-time-filter/date-time-filter.component.mjs +345 -0
- package/esm2020/lib/filters/filter-footer/filter-footer.component.mjs +62 -0
- package/esm2020/lib/filters/filters.component.mjs +688 -0
- package/esm2020/lib/filters/filters.module.mjs +196 -0
- package/esm2020/lib/filters/filters.service.mjs +147 -0
- package/esm2020/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.mjs +202 -0
- package/esm2020/lib/filters/metaColumnTypes.mjs +36 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.component.mjs +211 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.service.mjs +214 -0
- package/esm2020/lib/filters/number-filter/number-filter.component.mjs +321 -0
- package/esm2020/lib/filters/public-api.mjs +15 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.component.mjs +180 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.service.mjs +151 -0
- package/esm2020/lib/filters/single-select-filter/single-select-filter.component.mjs +177 -0
- package/esm2020/lib/filters/time-filter/time-filter.component.mjs +301 -0
- package/esm2020/lib/filters/user-filter/user-filter.component.mjs +178 -0
- package/esm2020/lib/filters/user-filter/user-filter.service.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.mjs +346 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.mjs +105 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.mjs +41 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.mjs +10 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.component.mjs +823 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.mjs +211 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.module.mjs +224 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.service.mjs +171 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.mjs +94 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.mjs +40 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.mjs +31 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.mjs +86 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.mjs +180 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.mjs +54 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.mjs +163 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.mjs +61 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.mjs +64 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.mjs +119 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.mjs +37 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.mjs +24 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.mjs +19 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.mjs +49 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.mjs +50 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.mjs +25 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.mjs +65 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.mjs +28 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/data-detail-view-dto.mjs +55 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.mjs +85 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.component.mjs +209 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.module.mjs +273 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.service.mjs +268 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.mjs +68 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.mjs +155 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.mjs +158 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.mjs +248 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.mjs +179 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.mjs +210 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.mjs +58 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.mjs +76 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.mjs +263 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.mjs +17 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.mjs +335 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.mjs +270 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.mjs +498 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.mjs +203 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.mjs +70 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.mjs +146 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.mjs +84 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.mjs +144 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.mjs +95 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.mjs +79 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.mjs +113 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/meta-section/meta-section.component.mjs +157 -0
- package/esm2020/lib/form-object/form-object-view/section/section.component.mjs +75 -0
- package/esm2020/lib/form-object/form-object-view/section-field/section-field.component.mjs +30 -0
- package/esm2020/lib/form-object/form-object-view/section-view/section-view.component.mjs +110 -0
- package/esm2020/lib/form-object/public-api.mjs +3 -0
- package/esm2020/lib/form-permission.service.mjs +106 -0
- package/esm2020/lib/forms/ax-form.mjs +212 -0
- package/esm2020/lib/forms/iform.mjs +2 -0
- package/esm2020/lib/forms/page/common/axo-response-status.mjs +6 -0
- package/esm2020/lib/forms/page/common/constants.mjs +399 -0
- package/esm2020/lib/forms/page/common/detail-view-enums.mjs +8 -0
- package/esm2020/lib/forms/page/common/flatten-status-enum.mjs +10 -0
- package/esm2020/lib/forms/page/common/form.constant.mjs +87 -0
- package/esm2020/lib/forms/page/common/property-panel-field.mjs +5 -0
- package/esm2020/lib/forms/page/common/widget-enums.mjs +269 -0
- package/esm2020/lib/forms/page/common/widget-value-handler.mjs +321 -0
- package/esm2020/lib/forms/page/data-detail-view/ax-section.mjs +51 -0
- package/esm2020/lib/forms/page/data-detail-view/collection-view.mjs +30 -0
- package/esm2020/lib/forms/page/data-detail-view/data-details.mjs +60 -0
- package/esm2020/lib/forms/page/data-detail-view/section-field.mjs +32 -0
- package/esm2020/lib/forms/page/data-detail-view/section.mjs +33 -0
- package/esm2020/lib/forms/page/data-list/data-list-column.mjs +45 -0
- package/esm2020/lib/forms/page/data-list/data-list.mjs +64 -0
- package/esm2020/lib/forms/page/form-object.mjs +17 -0
- package/esm2020/lib/forms/page/form-page.mjs +28 -0
- package/esm2020/lib/forms/page/value-converters/displayMode-to-bool.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/form-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/geo-fence-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/image-annotation-value-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/language-source-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/list-view-title-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-float-converter.mjs +15 -0
- package/esm2020/lib/forms/page/value-converters/parse-int-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-string-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/publicUrls-string-to-array.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/record-limit-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/restriction-mode-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-value-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-date-time-converter.mjs +19 -0
- package/esm2020/lib/forms/page/value-converters/string-to-number -converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/textBox-mask-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/validate-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/value-without-mask-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/widget-concrete-class-converter.mjs +22 -0
- package/esm2020/lib/forms/page/value-converters/widget-deserializer.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/apply-geofences.mjs +65 -0
- package/esm2020/lib/forms/page/widgets/auto-number.mjs +87 -0
- package/esm2020/lib/forms/page/widgets/ax-audio.mjs +154 -0
- package/esm2020/lib/forms/page/widgets/ax-document.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/ax-image.mjs +183 -0
- package/esm2020/lib/forms/page/widgets/bar-code.mjs +212 -0
- package/esm2020/lib/forms/page/widgets/child-record.mjs +193 -0
- package/esm2020/lib/forms/page/widgets/choicelist.mjs +375 -0
- package/esm2020/lib/forms/page/widgets/counter.mjs +69 -0
- package/esm2020/lib/forms/page/widgets/datetime.mjs +247 -0
- package/esm2020/lib/forms/page/widgets/formula.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/geofence.mjs +127 -0
- package/esm2020/lib/forms/page/widgets/gps.mjs +192 -0
- package/esm2020/lib/forms/page/widgets/group-header.mjs +200 -0
- package/esm2020/lib/forms/page/widgets/languages.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/link.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/payment.mjs +104 -0
- package/esm2020/lib/forms/page/widgets/qr-code.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/script-condition.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/signature.mjs +81 -0
- package/esm2020/lib/forms/page/widgets/static-media.mjs +130 -0
- package/esm2020/lib/forms/page/widgets/stopwatch.mjs +117 -0
- package/esm2020/lib/forms/page/widgets/sub-form.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/textbox.mjs +338 -0
- package/esm2020/lib/forms/page/widgets/timestamp.mjs +155 -0
- package/esm2020/lib/forms/page/widgets/toggle.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/unique-id.mjs +75 -0
- package/esm2020/lib/forms/page/widgets/verification.mjs +207 -0
- package/esm2020/lib/forms/page/widgets/video.mjs +151 -0
- package/esm2020/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.mjs +74 -0
- package/esm2020/lib/forms/page/widgets/widget-value/audio-video-widget-value.mjs +36 -0
- package/esm2020/lib/forms/page/widgets/widget-value/child-record-value.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choice-list-options.mjs +84 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choices-ml.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/widget-value/dateRangeValue.mjs +38 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfileParams.mjs +9 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfilesTemp.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/document-widget-value.mjs +56 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-location-value.mjs +54 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-widget-value.mjs +50 -0
- package/esm2020/lib/forms/page/widgets/widget-value/gps-widget-value.mjs +58 -0
- package/esm2020/lib/forms/page/widgets/widget-value/image-widget-value.mjs +99 -0
- package/esm2020/lib/forms/page/widgets/widget-value/language-widget-value.mjs +43 -0
- package/esm2020/lib/forms/page/widgets/widget-value/location-object-value.mjs +44 -0
- package/esm2020/lib/forms/page/widgets/widget-value/multiple-languages.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/widget-value/reference-list-object-value.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/verification-widget-value.mjs +126 -0
- package/esm2020/lib/forms/page/widgets/widget.mjs +429 -0
- package/esm2020/lib/ghost-loader/ghost-loader.component.mjs +708 -0
- package/esm2020/lib/ghost-loader/ghost-loader.module.mjs +27 -0
- package/esm2020/lib/ghost-loader/public-api.mjs +3 -0
- package/esm2020/lib/map-dialog/map-dialog.component.mjs +46 -0
- package/esm2020/lib/map-dialog/map-dialog.module.mjs +39 -0
- package/esm2020/lib/map-dialog/public-api.mjs +6 -0
- package/esm2020/lib/reports-container/public-api.mjs +8 -0
- package/esm2020/lib/reports-container/report-group/report-group.component.mjs +77 -0
- package/esm2020/lib/reports-container/reports-container-models/report-group.mjs +42 -0
- package/esm2020/lib/reports-container/reports-container-models/report-property.mjs +30 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container-enums.mjs +16 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container.mjs +29 -0
- package/esm2020/lib/reports-container/reports-container.component.mjs +60 -0
- package/esm2020/lib/reports-container/reports-container.module.mjs +52 -0
- package/esm2020/lib/reports-container/reports-container.service.mjs +29 -0
- package/esm2020/lib/scrollbar/index.mjs +3 -0
- package/esm2020/lib/scrollbar/public-api.mjs +3 -0
- package/esm2020/lib/scrollbar/scrollbar.directive.mjs +351 -0
- package/esm2020/lib/scrollbar/scrollbar.module.mjs +21 -0
- package/esm2020/lib/scrollbar/scrollbar.types.mjs +15 -0
- package/esm2020/lib/sculptor-lib/widgets/audio/audio.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/barcode/barcode.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/child-record/child-record.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/choice-list/choice-list.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/date-time/date-time.component.mjs +136 -0
- package/esm2020/lib/sculptor-lib/widgets/document/document.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/geofence/geofence.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/gps/gps.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/group-header/group-header.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/image/image.component.mjs +131 -0
- package/esm2020/lib/sculptor-lib/widgets/language/language.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/link/link.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/qr-code/qr-code.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/subform/subform.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/textbox/textbox.component.mjs +177 -0
- package/esm2020/lib/sculptor-lib/widgets/timestamp/timestamp.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/toggle/toggle.component.mjs +112 -0
- package/esm2020/lib/sculptor-lib/widgets/video/video.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/widgets.service.mjs +58 -0
- package/esm2020/lib/shared/comfirmation-modal/confirmation-modal.component.mjs +63 -0
- package/esm2020/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.mjs +83 -0
- package/esm2020/lib/shared/shared.module.mjs +51 -0
- package/esm2020/public-api.mjs +138 -0
- package/fesm2015/ax-common-ui-lib.mjs +56598 -0
- package/fesm2015/ax-common-ui-lib.mjs.map +1 -0
- package/fesm2020/ax-common-ui-lib.mjs +52373 -0
- package/fesm2020/ax-common-ui-lib.mjs.map +1 -0
- package/lib/app-list/app-list-dto.d.ts +15 -0
- package/lib/app-list/app-list.component.d.ts +62 -0
- package/lib/app-list/my-app-list.service.d.ts +69 -0
- package/lib/app-list/organization-list-dto.d.ts +15 -0
- package/lib/ax-common-ui-lib.component.d.ts +8 -0
- package/lib/ax-common-ui-lib.module.d.ts +24 -0
- package/lib/ax-common-ui-lib.service.d.ts +6 -0
- package/lib/axo-filters/axo-filters.component.d.ts +86 -0
- package/lib/axo-filters/axo-filters.module.d.ts +16 -0
- package/lib/axo-filters/axo-filters.service.d.ts +36 -0
- package/lib/axo-map/axo-map.component.d.ts +9 -0
- package/lib/axo-map/axo-map.d.ts +14 -0
- package/lib/axo-map/axo-map.module.d.ts +10 -0
- package/lib/axo-map/public-api.d.ts +6 -0
- package/lib/axo-search-bar/axo-search-bar.component.d.ts +21 -0
- package/lib/axo-search-bar/axo-search-bar.module.d.ts +10 -0
- package/lib/axo-search-bar/public.api.d.ts +2 -0
- package/lib/axo-snack-bar/axo-snack-bar.component.d.ts +20 -0
- package/lib/axo-snack-bar/axo-snack-bar.module.d.ts +9 -0
- package/lib/axo-snack-bar/axo-snack-bar.service.d.ts +16 -0
- package/lib/axo-snack-bar/public-api.d.ts +2 -0
- package/lib/axo-state-manager/axo-state-manager.module.d.ts +7 -0
- package/lib/axo-state-manager/axo-state-manager.service.d.ts +15 -0
- package/lib/axo-state-manager/public-api.d.ts +2 -0
- package/lib/axo-utils/axo-utils.d.ts +72 -0
- package/lib/axo-utils/axo-utils.module.d.ts +10 -0
- package/lib/axo-utils/constants.d.ts +2 -0
- package/lib/axo-utils/data-source-types.d.ts +10 -0
- package/lib/axo-utils/field-list-search-pipe.d.ts +7 -0
- package/lib/axo-utils/filter-search-pipe.d.ts +7 -0
- package/lib/axo-utils/public-api.d.ts +1 -0
- package/lib/axo-utils/search-pipe/choice-search.pipe.d.ts +7 -0
- package/lib/axo-utils/search-pipe.d.ts +7 -0
- package/lib/bread-crumbs/bread-crumbs.component.d.ts +48 -0
- package/lib/bread-crumbs/bread-crumbs.module.d.ts +9 -0
- package/lib/bread-crumbs/bread-crumbs.service.d.ts +76 -0
- package/lib/code-editor/code-editor-modes.d.ts +9 -0
- package/lib/code-editor/code-editor-themes.d.ts +6 -0
- package/lib/code-editor/code-editor.component.d.ts +20 -0
- package/lib/code-editor/code-editor.module.d.ts +10 -0
- package/lib/code-editor/icode-editor-options.d.ts +51 -0
- package/lib/code-editor/public-api.d.ts +2 -0
- package/lib/common-dto/attributes-dto.d.ts +24 -0
- package/lib/common-dto/dashboard-dto.d.ts +10 -0
- package/lib/common-dto/dataListFilter-dto.d.ts +10 -0
- package/lib/common-dto/elements-dto.d.ts +51 -0
- package/lib/common-dto/form-dto.d.ts +17 -0
- package/lib/common-lib-configuration.service.d.ts +13 -0
- package/lib/common-property-panel/properties/properties.service.d.ts +18 -0
- package/lib/common-utils/entity-base.d.ts +10 -0
- package/lib/common-utils/iFlatten.d.ts +13 -0
- package/lib/common-utils/report.d.ts +26 -0
- package/lib/common.service.d.ts +50 -0
- package/lib/converters/convert-to-new-service.d.ts +6 -0
- package/lib/converters/convert-to-old-service.d.ts +26 -0
- package/lib/core/auth/auth.service.d.ts +75 -0
- package/lib/core/core.module.d.ts +12 -0
- package/lib/core/icons/icons.module.d.ts +14 -0
- package/lib/core/transloco/transloco.http-loader.d.ts +19 -0
- package/lib/core/transloco/transloco.module.d.ts +7 -0
- package/lib/core/user/axo-user.d.ts +9 -0
- package/lib/core/user/user-data.service.d.ts +25 -0
- package/lib/core/user/user.service.d.ts +45 -0
- package/lib/core/user/user.types.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-builder.service.d.ts +27 -0
- package/lib/dashboard-lib/dashboard-control.service.d.ts +31 -0
- package/lib/dashboard-lib/dashboard-element/dashboard-element.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.d.ts +7 -0
- package/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.d.ts +37 -0
- package/lib/dashboard-lib/dashboard-lib.module.d.ts +26 -0
- package/lib/dashboard-lib/dashboard-list.service.d.ts +24 -0
- package/lib/dashboard-lib/dashboard.d.ts +14 -0
- package/lib/dashboard-lib/send-to-dashboard.service.d.ts +39 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.component.d.ts +53 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.service.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-card.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-tag.d.ts +26 -0
- package/lib/data-view-lib/data-view/board-column.d.ts +12 -0
- package/lib/data-view-lib/data-view/board-view.d.ts +23 -0
- package/lib/data-view-lib/data-view/cardConfig.d.ts +11 -0
- package/lib/data-view-lib/data-view/conditional-formatting.d.ts +11 -0
- package/lib/data-view-lib/data-view/coordinate.d.ts +8 -0
- package/lib/data-view-lib/data-view/data-view-enums.d.ts +58 -0
- package/lib/data-view-lib/data-view/data-view-filter.d.ts +25 -0
- package/lib/data-view-lib/data-view/data-view.d.ts +33 -0
- package/lib/data-view-lib/data-view/idata-view.d.ts +7 -0
- package/lib/data-view-lib/data-view/image-style.d.ts +8 -0
- package/lib/data-view-lib/data-view/info-window.d.ts +10 -0
- package/lib/data-view-lib/data-view/location.d.ts +8 -0
- package/lib/data-view-lib/data-view/map-view.d.ts +21 -0
- package/lib/data-view-lib/data-view/prefix-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tag-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tagConfig.d.ts +34 -0
- package/lib/data-view-lib/data-view/task-asset-form-object-dto.d.ts +19 -0
- package/lib/data-view-lib/data-view/task-column-value.d.ts +48 -0
- package/lib/data-view-lib/data-view/task-view.d.ts +15 -0
- package/lib/data-view-lib/data-view/task.d.ts +57 -0
- package/lib/data-view-lib/data-view/value-style.d.ts +10 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.component.d.ts +142 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.service.d.ts +28 -0
- package/lib/data-view-lib/data-view-header/data-view-header.component.d.ts +85 -0
- package/lib/data-view-lib/data-view-lib.module.d.ts +19 -0
- package/lib/data-view-lib/data-view.service.d.ts +94 -0
- package/lib/data-view-lib/public-api.d.ts +27 -0
- package/lib/directive/adjust-font-size.d.ts +13 -0
- package/lib/drill-through/drill-through.component.d.ts +53 -0
- package/lib/drill-through/drill-through.module.d.ts +10 -0
- package/lib/drill-through/drill-through.resolver.d.ts +30 -0
- package/lib/drill-through/drill-through.service.d.ts +100 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-column.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-toggle.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-expression-value.d.ts +19 -0
- package/lib/enlighten-lib/ax-expression/ax-expression.d.ts +66 -0
- package/lib/enlighten-lib/ax-expression/ax-number-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/exp-sub-type.d.ts +26 -0
- package/lib/enlighten-lib/ax-expression/public-api.d.ts +23 -0
- package/lib/enlighten-lib/data-model/attribute.d.ts +60 -0
- package/lib/enlighten-lib/data-model/data-model.d.ts +32 -0
- package/lib/enlighten-lib/data-model/dependee.d.ts +11 -0
- package/lib/enlighten-lib/data-model/dependent.d.ts +11 -0
- package/lib/enlighten-lib/data-model/entity.d.ts +31 -0
- package/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.d.ts +23 -0
- package/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.d.ts +24 -0
- package/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.d.ts +25 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree-enums.d.ts +4 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.component.d.ts +67 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.module.d.ts +18 -0
- package/lib/enlighten-lib/elements/Property.d.ts +3 -0
- package/lib/enlighten-lib/elements/ax-element.d.ts +31 -0
- package/lib/enlighten-lib/elements/element-factory.d.ts +13 -0
- package/lib/enlighten-lib/enlighten-lib.module.d.ts +53 -0
- package/lib/enlighten-lib/enums/bread-crumbs-style.d.ts +4 -0
- package/lib/enlighten-lib/enums/operator-text-enum.d.ts +9 -0
- package/lib/enlighten-lib/fields/attribute-data.d.ts +55 -0
- package/lib/enlighten-lib/fields/entity.d.ts +15 -0
- package/lib/enlighten-lib/fields/types/ax-audio.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-barcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-childrecord.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-counter.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-date.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-decimal.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-document.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-file.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-image.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-location.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-number.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-qrcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-signature.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-staticmedia.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-text.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-time.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-uniqueid.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/axo-timestamp.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/choicelist.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/datetime.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/hyperlink.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ienlighten-type.d.ts +3 -0
- package/lib/enlighten-lib/fields/types/toggle.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/video.d.ts +4 -0
- package/lib/enlighten-lib/filters/ax-filter.d.ts +38 -0
- package/lib/enlighten-lib/filters/ax-operator.d.ts +40 -0
- package/lib/enlighten-lib/filters/chart-filter-type.d.ts +5 -0
- package/lib/enlighten-lib/filters/condition-type.d.ts +43 -0
- package/lib/enlighten-lib/filters/dataList-searchNode.d.ts +27 -0
- package/lib/enlighten-lib/filters/dataListFilterExpression.d.ts +20 -0
- package/lib/enlighten-lib/filters/dataListFilterOperator.d.ts +29 -0
- package/lib/enlighten-lib/filters/dataListSeachQueryTree.d.ts +15 -0
- package/lib/enlighten-lib/filters/filter-category.d.ts +43 -0
- package/lib/enlighten-lib/filters/general-filter-type.d.ts +10 -0
- package/lib/enlighten-lib/filters/gridster-properties.d.ts +17 -0
- package/lib/enlighten-lib/filters/iax-filter.d.ts +7 -0
- package/lib/enlighten-lib/filters/search-node.d.ts +27 -0
- package/lib/enlighten-lib/filters/static-widget.d.ts +2 -0
- package/lib/enlighten-lib/property/element-property.d.ts +8 -0
- package/lib/enlighten-lib/property/filter-category-property.d.ts +6 -0
- package/lib/enlighten-lib/property/filter-property.d.ts +6 -0
- package/lib/enlighten-lib/report/chart-filter/chart-filter.component.d.ts +78 -0
- package/lib/enlighten-lib/report/element.service.d.ts +61 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.d.ts +259 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.d.ts +52 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.d.ts +177 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.d.ts +29 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/chart/border.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-factory.d.ts +7 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-property.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-type.d.ts +16 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart.d.ts +41 -0
- package/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/dimension.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/font.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/fontStyle.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/label.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/legend.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/matrix.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/chart/shadow.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/style.d.ts +12 -0
- package/lib/enlighten-lib/report/graphical-report/chart/text-style.d.ts +17 -0
- package/lib/enlighten-lib/report/graphical-report/chart/title.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.component.d.ts +130 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.directive.d.ts +8 -0
- package/lib/enlighten-lib/report/graphical-report/ichart-component.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/igraphical-report.component.d.ts +21 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.d.ts +215 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.d.ts +34 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/page/page.d.ts +25 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.d.ts +220 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.d.ts +38 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/text/text-chart.d.ts +19 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.component.d.ts +72 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.service.d.ts +9 -0
- package/lib/enlighten-lib/report/iproperty.component.d.ts +14 -0
- package/lib/enlighten-lib/report/ireport.d.ts +14 -0
- package/lib/enlighten-lib/report/report-builder-master.service.d.ts +42 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.component.d.ts +117 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.module.d.ts +19 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.service.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/aggregate.d.ts +8 -0
- package/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.d.ts +7 -0
- package/lib/enlighten-lib/report/tabular-report/column-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/itabular-report.component.d.ts +16 -0
- package/lib/enlighten-lib/report/tabular-report/orderby-type.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/row-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/table-style.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.d.ts +124 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.d.ts +242 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.d.ts +190 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.d.ts +177 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.component.d.ts +53 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.service.d.ts +173 -0
- package/lib/enlighten-lib/report/tabular-report/tabular.d.ts +92 -0
- package/lib/enlighten-lib/report/tabular-report/value-formatting.d.ts +7 -0
- package/lib/enlighten-lib/report-control.service.d.ts +15 -0
- package/lib/enlighten-lib/utils/utils.d.ts +16 -0
- package/lib/field-list-lib/fields-list.service.d.ts +71 -0
- package/lib/filters/calender-filter/calender-filter.component.d.ts +70 -0
- package/lib/filters/category-filter/category-filter.component.d.ts +65 -0
- package/lib/filters/category-filter/category-filter.service.d.ts +16 -0
- package/lib/filters/category-filter/category.service.d.ts +23 -0
- package/lib/filters/choice-list-filter/choice-list-filter.component.d.ts +64 -0
- package/lib/filters/choice-list-filter/choice-list-filter.service.d.ts +36 -0
- package/lib/filters/common-filter/common-filter.component.d.ts +135 -0
- package/lib/filters/common-filter/common-filter.service.d.ts +42 -0
- package/lib/filters/custom-scroll-directives.d.ts +14 -0
- package/lib/filters/date-time-filter/date-time-filter.component.d.ts +83 -0
- package/lib/filters/filter-footer/filter-footer.component.d.ts +12 -0
- package/lib/filters/filters.component.d.ts +139 -0
- package/lib/filters/filters.module.d.ts +43 -0
- package/lib/filters/filters.service.d.ts +83 -0
- package/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.d.ts +70 -0
- package/lib/filters/metaColumnTypes.d.ts +18 -0
- package/lib/filters/multi-select-filter/multi-select-filter.component.d.ts +68 -0
- package/lib/filters/multi-select-filter/multi-select-filter.service.d.ts +77 -0
- package/lib/filters/number-filter/number-filter.component.d.ts +70 -0
- package/lib/filters/public-api.d.ts +14 -0
- package/lib/filters/reference-list-filter/reference-list-filter.component.d.ts +59 -0
- package/lib/filters/reference-list-filter/reference-list-filter.service.d.ts +62 -0
- package/lib/filters/single-select-filter/single-select-filter.component.d.ts +59 -0
- package/lib/filters/time-filter/time-filter.component.d.ts +62 -0
- package/lib/filters/user-filter/user-filter.component.d.ts +61 -0
- package/lib/filters/user-filter/user-filter.service.d.ts +26 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.d.ts +87 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.d.ts +33 -0
- package/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.d.ts +13 -0
- package/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.d.ts +10 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/form-object-list.component.d.ts +200 -0
- package/lib/form-object/form-object-list/form-object-list.d.ts +42 -0
- package/lib/form-object/form-object-list/form-object-list.module.d.ts +59 -0
- package/lib/form-object/form-object-list/form-object-list.service.d.ts +69 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.d.ts +22 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.d.ts +20 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.d.ts +21 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.d.ts +23 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.d.ts +34 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.d.ts +17 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.d.ts +14 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.d.ts +13 -0
- package/lib/form-object/form-object-view/data-detail-view-dto.d.ts +16 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-view.component.d.ts +45 -0
- package/lib/form-object/form-object-view/form-object-view.module.d.ts +70 -0
- package/lib/form-object/form-object-view/form-object-view.service.d.ts +49 -0
- package/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.d.ts +31 -0
- package/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.d.ts +22 -0
- package/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.d.ts +37 -0
- package/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.d.ts +91 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.d.ts +71 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.d.ts +40 -0
- package/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.d.ts +26 -0
- package/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.d.ts +11 -0
- package/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/meta-section/meta-section.component.d.ts +31 -0
- package/lib/form-object/form-object-view/section/section.component.d.ts +16 -0
- package/lib/form-object/form-object-view/section-field/section-field.component.d.ts +13 -0
- package/lib/form-object/form-object-view/section-view/section-view.component.d.ts +16 -0
- package/lib/form-object/public-api.d.ts +2 -0
- package/lib/form-permission.service.d.ts +51 -0
- package/lib/forms/ax-form.d.ts +47 -0
- package/lib/forms/iform.d.ts +18 -0
- package/lib/forms/page/common/axo-response-status.d.ts +4 -0
- package/lib/forms/page/common/constants.d.ts +371 -0
- package/lib/forms/page/common/detail-view-enums.d.ts +5 -0
- package/lib/forms/page/common/flatten-status-enum.d.ts +7 -0
- package/lib/forms/page/common/form.constant.d.ts +85 -0
- package/lib/forms/page/common/property-panel-field.d.ts +21 -0
- package/lib/forms/page/common/widget-enums.d.ts +236 -0
- package/lib/forms/page/common/widget-value-handler.d.ts +4 -0
- package/lib/forms/page/data-detail-view/ax-section.d.ts +22 -0
- package/lib/forms/page/data-detail-view/collection-view.d.ts +11 -0
- package/lib/forms/page/data-detail-view/data-details.d.ts +17 -0
- package/lib/forms/page/data-detail-view/section-field.d.ts +13 -0
- package/lib/forms/page/data-detail-view/section.d.ts +13 -0
- package/lib/forms/page/data-list/data-list-column.d.ts +24 -0
- package/lib/forms/page/data-list/data-list.d.ts +24 -0
- package/lib/forms/page/form-object.d.ts +6 -0
- package/lib/forms/page/form-page.d.ts +19 -0
- package/lib/forms/page/value-converters/displayMode-to-bool.d.ts +5 -0
- package/lib/forms/page/value-converters/form-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/geo-fence-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/image-annotation-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/language-source-value-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/list-view-title-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-float-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-int-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-string-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/publicUrls-string-to-array.d.ts +5 -0
- package/lib/forms/page/value-converters/record-limit-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/restriction-mode-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-date-time-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-number -converter.d.ts +5 -0
- package/lib/forms/page/value-converters/textBox-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/validate-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/value-without-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/widget-concrete-class-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/widget-deserializer.d.ts +3 -0
- package/lib/forms/page/widgets/apply-geofences.d.ts +25 -0
- package/lib/forms/page/widgets/auto-number.d.ts +28 -0
- package/lib/forms/page/widgets/ax-audio.d.ts +43 -0
- package/lib/forms/page/widgets/ax-document.d.ts +44 -0
- package/lib/forms/page/widgets/ax-image.d.ts +46 -0
- package/lib/forms/page/widgets/bar-code.d.ts +52 -0
- package/lib/forms/page/widgets/child-record.d.ts +50 -0
- package/lib/forms/page/widgets/choicelist.d.ts +70 -0
- package/lib/forms/page/widgets/counter.d.ts +36 -0
- package/lib/forms/page/widgets/datetime.d.ts +53 -0
- package/lib/forms/page/widgets/formula.d.ts +38 -0
- package/lib/forms/page/widgets/geofence.d.ts +41 -0
- package/lib/forms/page/widgets/gps.d.ts +49 -0
- package/lib/forms/page/widgets/group-header.d.ts +51 -0
- package/lib/forms/page/widgets/languages.d.ts +41 -0
- package/lib/forms/page/widgets/link.d.ts +36 -0
- package/lib/forms/page/widgets/payment.d.ts +37 -0
- package/lib/forms/page/widgets/qr-code.d.ts +39 -0
- package/lib/forms/page/widgets/script-condition.d.ts +33 -0
- package/lib/forms/page/widgets/signature.d.ts +34 -0
- package/lib/forms/page/widgets/static-media.d.ts +40 -0
- package/lib/forms/page/widgets/stopwatch.d.ts +37 -0
- package/lib/forms/page/widgets/sub-form.d.ts +39 -0
- package/lib/forms/page/widgets/textbox.d.ts +63 -0
- package/lib/forms/page/widgets/timestamp.d.ts +42 -0
- package/lib/forms/page/widgets/toggle.d.ts +36 -0
- package/lib/forms/page/widgets/unique-id.d.ts +33 -0
- package/lib/forms/page/widgets/verification.d.ts +55 -0
- package/lib/forms/page/widgets/video.d.ts +44 -0
- package/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.d.ts +18 -0
- package/lib/forms/page/widgets/widget-value/audio-video-widget-value.d.ts +11 -0
- package/lib/forms/page/widgets/widget-value/child-record-value.d.ts +26 -0
- package/lib/forms/page/widgets/widget-value/choice-list-options.d.ts +27 -0
- package/lib/forms/page/widgets/widget-value/choices-ml.d.ts +22 -0
- package/lib/forms/page/widgets/widget-value/dateRangeValue.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/deviceProfileParams.d.ts +4 -0
- package/lib/forms/page/widgets/widget-value/deviceProfilesTemp.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/document-widget-value.d.ts +15 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-location-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-widget-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/gps-widget-value.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/image-widget-value.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/language-widget-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/location-object-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/multiple-languages.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/reference-list-object-value.d.ts +17 -0
- package/lib/forms/page/widgets/widget-value/verification-widget-value.d.ts +31 -0
- package/lib/forms/page/widgets/widget.d.ts +75 -0
- package/lib/ghost-loader/ghost-loader.component.d.ts +41 -0
- package/lib/ghost-loader/ghost-loader.module.d.ts +8 -0
- package/lib/ghost-loader/public-api.d.ts +2 -0
- package/lib/map-dialog/map-dialog.component.d.ts +16 -0
- package/lib/map-dialog/map-dialog.module.d.ts +11 -0
- package/lib/map-dialog/public-api.d.ts +5 -0
- package/lib/reports-container/public-api.d.ts +7 -0
- package/lib/reports-container/report-group/report-group.component.d.ts +17 -0
- package/lib/reports-container/reports-container-models/report-group.d.ts +20 -0
- package/lib/reports-container/reports-container-models/report-property.d.ts +19 -0
- package/lib/reports-container/reports-container-models/reports-container-enums.d.ts +13 -0
- package/lib/reports-container/reports-container-models/reports-container.d.ts +16 -0
- package/lib/reports-container/reports-container.component.d.ts +16 -0
- package/lib/reports-container/reports-container.module.d.ts +13 -0
- package/lib/reports-container/reports-container.service.d.ts +18 -0
- package/lib/scrollbar/index.d.ts +2 -0
- package/lib/scrollbar/public-api.d.ts +2 -0
- package/lib/scrollbar/scrollbar.directive.d.ts +153 -0
- package/lib/scrollbar/scrollbar.module.d.ts +7 -0
- package/lib/scrollbar/scrollbar.types.d.ts +12 -0
- package/lib/sculptor-lib/widgets/audio/audio.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/barcode/barcode.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/child-record/child-record.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/choice-list/choice-list.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/date-time/date-time.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/document/document.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/geofence/geofence.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/gps/gps.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/group-header/group-header.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/image/image.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/language/language.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/link/link.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/qr-code/qr-code.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/subform/subform.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/textbox/textbox.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/timestamp/timestamp.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/toggle/toggle.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/video/video.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/widgets.service.d.ts +30 -0
- package/lib/shared/comfirmation-modal/confirmation-modal.component.d.ts +18 -0
- package/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.d.ts +29 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/package.json +64 -0
- package/public-api.d.ts +130 -0
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { TaskStatus } from './../../data-view-lib/data-view/task';
|
|
2
|
+
import { ScreenType } from './../../enlighten-lib/filters/condition-type';
|
|
3
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
4
|
+
import { Subject } from 'rxjs';
|
|
5
|
+
import { SectionChildType, SectionType } from '../../forms/page/common/widget-enums';
|
|
6
|
+
import { DataDetailViewDto } from './data-detail-view-dto';
|
|
7
|
+
import { GhostLoaderType } from '../../ghost-loader/ghost-loader.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
function FormObjectViewComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementContainerStart(0);
|
|
11
|
+
i0.ɵɵelement(1, "app-ghost-loader", 1);
|
|
12
|
+
i0.ɵɵelement(2, "app-ghost-loader", 2);
|
|
13
|
+
i0.ɵɵelementContainerEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
16
|
+
i0.ɵɵadvance(1);
|
|
17
|
+
i0.ɵɵproperty("elementType", ctx_r0.GhostLoaderType.SubHeaderLoader);
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵproperty("elementType", ctx_r0.GhostLoaderType.DataDetailLoader);
|
|
20
|
+
} }
|
|
21
|
+
function FormObjectViewComponent_ng_container_1_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementStart(0, "div", 8);
|
|
23
|
+
i0.ɵɵtext(1);
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
} if (rf & 2) {
|
|
26
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
27
|
+
i0.ɵɵadvance(1);
|
|
28
|
+
i0.ɵɵtextInterpolate(ctx_r2.dataDetailView.formObject.name);
|
|
29
|
+
} }
|
|
30
|
+
function FormObjectViewComponent_ng_container_1_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelementStart(0, "div", 9);
|
|
32
|
+
i0.ɵɵelementStart(1, "div", 10);
|
|
33
|
+
i0.ɵɵelementStart(2, "h2", 11);
|
|
34
|
+
i0.ɵɵtext(3);
|
|
35
|
+
i0.ɵɵelementEnd();
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
} if (rf & 2) {
|
|
39
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
40
|
+
i0.ɵɵadvance(3);
|
|
41
|
+
i0.ɵɵtextInterpolate(ctx_r3.dataDetailView == null ? null : ctx_r3.dataDetailView.formObject == null ? null : ctx_r3.dataDetailView.formObject.title);
|
|
42
|
+
} }
|
|
43
|
+
function FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_ng_container_1_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
44
|
+
i0.ɵɵelementContainerStart(0);
|
|
45
|
+
i0.ɵɵelementStart(1, "div", 16);
|
|
46
|
+
i0.ɵɵtext(2, "This task is in progress");
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
i0.ɵɵelementContainerEnd();
|
|
49
|
+
} }
|
|
50
|
+
function FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
51
|
+
i0.ɵɵelementContainerStart(0);
|
|
52
|
+
i0.ɵɵelement(1, "app-meta-section", 14);
|
|
53
|
+
i0.ɵɵelementStart(2, "div", 15);
|
|
54
|
+
i0.ɵɵtext(3);
|
|
55
|
+
i0.ɵɵelementEnd();
|
|
56
|
+
i0.ɵɵtemplate(4, FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_ng_container_1_ng_container_4_Template, 3, 0, "ng-container", 0);
|
|
57
|
+
i0.ɵɵelementContainerEnd();
|
|
58
|
+
} if (rf & 2) {
|
|
59
|
+
const section_r5 = i0.ɵɵnextContext(3).$implicit;
|
|
60
|
+
const ctx_r9 = i0.ɵɵnextContext(2);
|
|
61
|
+
i0.ɵɵadvance(1);
|
|
62
|
+
i0.ɵɵproperty("taskDetailsMap", ctx_r9.taskDetailsMap)("section", section_r5);
|
|
63
|
+
i0.ɵɵadvance(2);
|
|
64
|
+
i0.ɵɵtextInterpolate(ctx_r9.taskDetailsMap["{_Description_}"] ? ctx_r9.taskDetailsMap["{_Description_}"][0] : "");
|
|
65
|
+
i0.ɵɵadvance(1);
|
|
66
|
+
i0.ɵɵproperty("ngIf", ctx_r9.taskStatus == ctx_r9.TaskStatus.todo);
|
|
67
|
+
} }
|
|
68
|
+
function FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
69
|
+
i0.ɵɵelementContainerStart(0);
|
|
70
|
+
i0.ɵɵelement(1, "app-section-view", 17);
|
|
71
|
+
i0.ɵɵelementContainerEnd();
|
|
72
|
+
} if (rf & 2) {
|
|
73
|
+
const section_r5 = i0.ɵɵnextContext(3).$implicit;
|
|
74
|
+
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
75
|
+
i0.ɵɵadvance(1);
|
|
76
|
+
i0.ɵɵproperty("section", section_r5)("formObjectId", ctx_r10.dataDetailView == null ? null : ctx_r10.dataDetailView.formObject == null ? null : ctx_r10.dataDetailView.formObject.id)("baseUrl", ctx_r10.baseUrl)("axonatorX1Url", ctx_r10.axonatorX1Url);
|
|
77
|
+
} }
|
|
78
|
+
function FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
79
|
+
i0.ɵɵelementContainerStart(0);
|
|
80
|
+
i0.ɵɵtemplate(1, FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_ng_container_1_Template, 5, 4, "ng-container", 0);
|
|
81
|
+
i0.ɵɵtemplate(2, FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_ng_container_2_Template, 2, 4, "ng-container", 0);
|
|
82
|
+
i0.ɵɵelementContainerEnd();
|
|
83
|
+
} if (rf & 2) {
|
|
84
|
+
const section_r5 = i0.ɵɵnextContext(2).$implicit;
|
|
85
|
+
const ctx_r7 = i0.ɵɵnextContext(2);
|
|
86
|
+
i0.ɵɵadvance(1);
|
|
87
|
+
i0.ɵɵproperty("ngIf", section_r5.sectionChildType == ctx_r7.SectionChildType.meta);
|
|
88
|
+
i0.ɵɵadvance(1);
|
|
89
|
+
i0.ɵɵproperty("ngIf", ctx_r7.dataDetailView && section_r5.sectionChildType == ctx_r7.SectionChildType.widgetSection && ctx_r7.taskStatus == ctx_r7.TaskStatus.done);
|
|
90
|
+
} }
|
|
91
|
+
function FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
92
|
+
i0.ɵɵelementContainerStart(0);
|
|
93
|
+
i0.ɵɵelement(1, "app-section-view", 17);
|
|
94
|
+
i0.ɵɵelementContainerEnd();
|
|
95
|
+
} if (rf & 2) {
|
|
96
|
+
const section_r5 = i0.ɵɵnextContext(2).$implicit;
|
|
97
|
+
const ctx_r8 = i0.ɵɵnextContext(2);
|
|
98
|
+
i0.ɵɵadvance(1);
|
|
99
|
+
i0.ɵɵproperty("section", section_r5)("formObjectId", ctx_r8.dataDetailView.formObject.id)("baseUrl", ctx_r8.baseUrl)("axonatorX1Url", ctx_r8.axonatorX1Url);
|
|
100
|
+
} }
|
|
101
|
+
function FormObjectViewComponent_ng_container_1_div_5_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
102
|
+
i0.ɵɵelementStart(0, "div", 13);
|
|
103
|
+
i0.ɵɵtemplate(1, FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_1_Template, 3, 2, "ng-container", 0);
|
|
104
|
+
i0.ɵɵtemplate(2, FormObjectViewComponent_ng_container_1_div_5_div_1_ng_container_2_Template, 2, 4, "ng-container", 0);
|
|
105
|
+
i0.ɵɵelementEnd();
|
|
106
|
+
} if (rf & 2) {
|
|
107
|
+
const ctx_r6 = i0.ɵɵnextContext(3);
|
|
108
|
+
i0.ɵɵadvance(1);
|
|
109
|
+
i0.ɵɵproperty("ngIf", ctx_r6.ScreenType == ctx_r6.screenType.TaskDetailView && ctx_r6.taskDetailsMap);
|
|
110
|
+
i0.ɵɵadvance(1);
|
|
111
|
+
i0.ɵɵproperty("ngIf", ctx_r6.ScreenType != ctx_r6.screenType.TaskDetailView);
|
|
112
|
+
} }
|
|
113
|
+
function FormObjectViewComponent_ng_container_1_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
114
|
+
i0.ɵɵelementStart(0, "div");
|
|
115
|
+
i0.ɵɵtemplate(1, FormObjectViewComponent_ng_container_1_div_5_div_1_Template, 3, 2, "div", 12);
|
|
116
|
+
i0.ɵɵelementEnd();
|
|
117
|
+
} if (rf & 2) {
|
|
118
|
+
const section_r5 = ctx.$implicit;
|
|
119
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
120
|
+
i0.ɵɵadvance(1);
|
|
121
|
+
i0.ɵɵproperty("ngIf", section_r5.type === ctx_r4.sectionType.section);
|
|
122
|
+
} }
|
|
123
|
+
function FormObjectViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
124
|
+
i0.ɵɵelementContainerStart(0);
|
|
125
|
+
i0.ɵɵelementStart(1, "div", 3);
|
|
126
|
+
i0.ɵɵtemplate(2, FormObjectViewComponent_ng_container_1_div_2_Template, 2, 1, "div", 4);
|
|
127
|
+
i0.ɵɵtemplate(3, FormObjectViewComponent_ng_container_1_div_3_Template, 4, 1, "div", 5);
|
|
128
|
+
i0.ɵɵelementStart(4, "div", 6);
|
|
129
|
+
i0.ɵɵtemplate(5, FormObjectViewComponent_ng_container_1_div_5_Template, 2, 1, "div", 7);
|
|
130
|
+
i0.ɵɵelementEnd();
|
|
131
|
+
i0.ɵɵelementEnd();
|
|
132
|
+
i0.ɵɵelementContainerEnd();
|
|
133
|
+
} if (rf & 2) {
|
|
134
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
135
|
+
i0.ɵɵadvance(2);
|
|
136
|
+
i0.ɵɵproperty("ngIf", ctx_r1.showHeader && !ctx_r1.taskDetailsMap);
|
|
137
|
+
i0.ɵɵadvance(1);
|
|
138
|
+
i0.ɵɵproperty("ngIf", ctx_r1.dataDetailView == null ? null : ctx_r1.dataDetailView.formObject == null ? null : ctx_r1.dataDetailView.formObject.title);
|
|
139
|
+
i0.ɵɵadvance(2);
|
|
140
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.dataDetailView == null ? null : ctx_r1.dataDetailView.sections);
|
|
141
|
+
} }
|
|
142
|
+
export class FormObjectViewComponent {
|
|
143
|
+
constructor() {
|
|
144
|
+
this.showHeader = true;
|
|
145
|
+
this.ScreenType = null;
|
|
146
|
+
this.sectionType = Object.assign({}, SectionType);
|
|
147
|
+
this.GhostLoaderType = GhostLoaderType;
|
|
148
|
+
/*
|
|
149
|
+
* Subject object which helps unsubscribe all the subscribed objects in the component
|
|
150
|
+
*/
|
|
151
|
+
this._unsubscribeAll = new Subject();
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* On init
|
|
155
|
+
*/
|
|
156
|
+
ngOnInit() {
|
|
157
|
+
this.showGhostLoader = false;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* SectionChildType enum
|
|
161
|
+
*/
|
|
162
|
+
get SectionChildType() {
|
|
163
|
+
return SectionChildType;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* ScreenType enum
|
|
167
|
+
*/
|
|
168
|
+
get screenType() {
|
|
169
|
+
return ScreenType;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Task Status enum
|
|
173
|
+
*/
|
|
174
|
+
get TaskStatus() {
|
|
175
|
+
return TaskStatus;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
FormObjectViewComponent.ɵfac = function FormObjectViewComponent_Factory(t) { return new (t || FormObjectViewComponent)(); };
|
|
179
|
+
FormObjectViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormObjectViewComponent, selectors: [["lib-form-object-view"]], inputs: { form: "form", dataDetailView: "dataDetailView", baseUrl: "baseUrl", axonatorX1Url: "axonatorX1Url", showHeader: "showHeader", ScreenType: "ScreenType", taskDetailsMap: "taskDetailsMap", taskStatus: "taskStatus", showGhostLoader: "showGhostLoader" }, decls: 2, vars: 2, consts: [[4, "ngIf"], [1, "h-12", 3, "elementType"], [3, "elementType"], [1, "form-object-view", "w-full", "border-box"], ["class", "subheader sm:flex hidden", 4, "ngIf"], ["class", "flex items-center", 4, "ngIf"], [1, "sm:px-10", "px-3", "mt-8", "mb-4", "data-detail-content"], [4, "ngFor", "ngForOf"], [1, "subheader", "sm:flex", "hidden"], [1, "flex", "items-center"], [1, "flex", "items-center", "justify-between", "mx-auto", "h-12", "w-full", "bg-white", "form-object-view-heading"], [1, "leading-tight", "pl-10"], ["class", "border-box", 4, "ngIf"], [1, "border-box"], [3, "taskDetailsMap", "section"], [1, "task-list-discription-title"], [1, "task-status-message"], [3, "section", "formObjectId", "baseUrl", "axonatorX1Url"]], template: function FormObjectViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
180
|
+
i0.ɵɵtemplate(0, FormObjectViewComponent_ng_container_0_Template, 3, 2, "ng-container", 0);
|
|
181
|
+
i0.ɵɵtemplate(1, FormObjectViewComponent_ng_container_1_Template, 6, 3, "ng-container", 0);
|
|
182
|
+
} if (rf & 2) {
|
|
183
|
+
i0.ɵɵproperty("ngIf", ctx.showGhostLoader);
|
|
184
|
+
i0.ɵɵadvance(1);
|
|
185
|
+
i0.ɵɵproperty("ngIf", !ctx.showGhostLoader);
|
|
186
|
+
} }, styles: [".form-object-view{background-color:#fcfdff}.form-object-view .form-object-view-heading{border-bottom:.5px solid #cccccc7d}.form-object-view .form-object-view-heading h2{font-family:Roboto,sans-serif;font-weight:400;font-size:18px;line-height:21px;color:#10172b;margin:0}.form-object-view .icon-container{height:1.5rem!important;min-height:1.5rem!important;width:1.5rem!important;min-width:1.5rem!important;display:flex}.form-object-view .icon-container .location-btn-icon{background:#E1E7EF;padding:.3rem .2rem;cursor:pointer}.form-object-view .icon-container .location-btn-icon mat-icon{height:.875rem!important;min-height:.875rem!important;width:.875rem!important;min-width:.875rem!important}.capture-data{padding-top:30px}.capture-data h3{margin-bottom:5px!important}.capture-data .capture-data-detail{color:#10172b;border:.3px solid #CFD4E3;box-sizing:border-box}.capture-data .capture-data-detail .capture-data-container{margin:auto!important}.capture-data .capture-data-detail .capture-data-container .mat-icon{height:60px;width:60px;min-width:60px;min-height:60px}.capture-data .capture-data-detail .capture-data-name{font-size:10px}.cdk-drag-preview{box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}.mat-card{box-shadow:none!important;background:#FFFFFF;border:.5px solid #DCDCDC;border-radius:4px;padding:1rem!important;margin-bottom:1rem;align-items:center!important;min-width:100%}.mat-card .data-detail-info .data-detail-title{margin:0!important}@media screen and (max-width: 768px){dynamic-data-view .data-detail-content{margin:0!important}dynamic-data-view .data-detail-content .mat-card{padding:.8rem!important}.mat-card{padding:.8rem!important}}\n"], encapsulation: 2 });
|
|
187
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormObjectViewComponent, [{
|
|
188
|
+
type: Component,
|
|
189
|
+
args: [{ selector: 'lib-form-object-view', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"showGhostLoader\"> \n <app-ghost-loader [elementType]=\"GhostLoaderType.SubHeaderLoader\" class=\"h-12\"></app-ghost-loader>\n <app-ghost-loader [elementType]=\"GhostLoaderType.DataDetailLoader\"></app-ghost-loader>\n</ng-container>\n<ng-container *ngIf=\"!showGhostLoader\"> \n <div class=\"form-object-view w-full border-box\">\n <div class=\"subheader sm:flex hidden\" *ngIf=\"showHeader && !taskDetailsMap\">{{dataDetailView.formObject.name}}</div>\n <!-- form object view heading start-->\n <div class=\"flex items-center\" *ngIf=\"dataDetailView?.formObject?.title\">\n <div class=\"flex items-center justify-between mx-auto h-12 w-full bg-white form-object-view-heading\">\n <h2 class=\"leading-tight pl-10\">{{dataDetailView?.formObject?.title}}</h2>\n </div>\n </div>\n <div class=\"sm:px-10 px-3 mt-8 mb-4 data-detail-content\">\n <!-- here we will rendering the page fields dynamically using component factory resolver -->\n <div *ngFor=\"let section of dataDetailView?.sections\">\n <div *ngIf=\"section.type === sectionType.section\" class=\"border-box\">\n\n <!-- checks the screen type is task view or not -->\n <ng-container *ngIf=\"ScreenType == screenType.TaskDetailView && taskDetailsMap\">\n <!-- checks the section is a meta section or not -->\n <ng-container *ngIf=\"section.sectionChildType == SectionChildType.meta\">\n <!-- meta section rendering -->\n <app-meta-section [taskDetailsMap]=\"taskDetailsMap\" [section]=\"section\"></app-meta-section>\n\n <!-- task description -->\n <div class=\"task-list-discription-title\">{{taskDetailsMap[\"{_Description_}\"]?taskDetailsMap[\"{_Description_}\"][0]:''}}</div>\n <!-- does not display details of form if the task is todo or delivered -->\n <ng-container *ngIf=\"taskStatus == TaskStatus.todo\">\n <div class=\"task-status-message\" >This task is in progress</div>\n </ng-container>\n </ng-container>\n\n <!-- widget section rendering in task detail view-->\n <!-- display details of form if the task is done -->\n <ng-container *ngIf=\"dataDetailView && section.sectionChildType == SectionChildType.widgetSection && taskStatus == TaskStatus.done\">\n <app-section-view [section]=\"section\" [formObjectId] = \"dataDetailView?.formObject?.id\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\"></app-section-view>\n </ng-container>\n </ng-container>\n\n\n <!-- widget section rendering in data detail view.-->\n <ng-container *ngIf=\"ScreenType != screenType.TaskDetailView\">\n <app-section-view [section]=\"section\" [formObjectId] = \"dataDetailView.formObject.id\" [baseUrl] =\"baseUrl\" [axonatorX1Url] =\"axonatorX1Url\"></app-section-view>\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n</ng-container>\n", styles: [".form-object-view{background-color:#fcfdff}.form-object-view .form-object-view-heading{border-bottom:.5px solid #cccccc7d}.form-object-view .form-object-view-heading h2{font-family:Roboto,sans-serif;font-weight:400;font-size:18px;line-height:21px;color:#10172b;margin:0}.form-object-view .icon-container{height:1.5rem!important;min-height:1.5rem!important;width:1.5rem!important;min-width:1.5rem!important;display:flex}.form-object-view .icon-container .location-btn-icon{background:#E1E7EF;padding:.3rem .2rem;cursor:pointer}.form-object-view .icon-container .location-btn-icon mat-icon{height:.875rem!important;min-height:.875rem!important;width:.875rem!important;min-width:.875rem!important}.capture-data{padding-top:30px}.capture-data h3{margin-bottom:5px!important}.capture-data .capture-data-detail{color:#10172b;border:.3px solid #CFD4E3;box-sizing:border-box}.capture-data .capture-data-detail .capture-data-container{margin:auto!important}.capture-data .capture-data-detail .capture-data-container .mat-icon{height:60px;width:60px;min-width:60px;min-height:60px}.capture-data .capture-data-detail .capture-data-name{font-size:10px}.cdk-drag-preview{box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}.mat-card{box-shadow:none!important;background:#FFFFFF;border:.5px solid #DCDCDC;border-radius:4px;padding:1rem!important;margin-bottom:1rem;align-items:center!important;min-width:100%}.mat-card .data-detail-info .data-detail-title{margin:0!important}@media screen and (max-width: 768px){dynamic-data-view .data-detail-content{margin:0!important}dynamic-data-view .data-detail-content .mat-card{padding:.8rem!important}.mat-card{padding:.8rem!important}}\n"] }]
|
|
190
|
+
}], function () { return []; }, { form: [{
|
|
191
|
+
type: Input
|
|
192
|
+
}], dataDetailView: [{
|
|
193
|
+
type: Input
|
|
194
|
+
}], baseUrl: [{
|
|
195
|
+
type: Input
|
|
196
|
+
}], axonatorX1Url: [{
|
|
197
|
+
type: Input
|
|
198
|
+
}], showHeader: [{
|
|
199
|
+
type: Input
|
|
200
|
+
}], ScreenType: [{
|
|
201
|
+
type: Input
|
|
202
|
+
}], taskDetailsMap: [{
|
|
203
|
+
type: Input
|
|
204
|
+
}], taskStatus: [{
|
|
205
|
+
type: Input
|
|
206
|
+
}], showGhostLoader: [{
|
|
207
|
+
type: Input
|
|
208
|
+
}] }); })();
|
|
209
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1vYmplY3Qtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDbEUsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLDhDQUE4QyxDQUFDO0FBRTFFLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFXLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzdFLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFL0IsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFdBQVcsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQzNELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyQ0FBMkMsQ0FBQzs7O0lDUjVFLDZCQUFzQztJQUNsQyxzQ0FBa0c7SUFDbEcsc0NBQXNGO0lBQzFGLDBCQUFlOzs7SUFGTyxlQUErQztJQUEvQyxvRUFBK0M7SUFDL0MsZUFBZ0Q7SUFBaEQscUVBQWdEOzs7SUFJOUQsOEJBQTRFO0lBQUEsWUFBa0M7SUFBQSxpQkFBTTs7O0lBQXhDLGVBQWtDO0lBQWxDLDJEQUFrQzs7O0lBRTlHLDhCQUF5RTtJQUNyRSwrQkFBcUc7SUFDakcsOEJBQWdDO0lBQUEsWUFBcUM7SUFBQSxpQkFBSztJQUM5RSxpQkFBTTtJQUNW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dy1saWIvZGF0YS12aWV3L3Rhc2snO1xuaW1wb3J0IHsgU2NyZWVuVHlwZSB9IGZyb20gJy4vLi4vLi4vZW5saWdodGVuLWxpYi9maWx0ZXJzL2NvbmRpdGlvbi10eXBlJztcbmltcG9ydCB7IENka0Ryb3BMaXN0IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XG5pbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsICBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgQXhGb3JtIH0gZnJvbSAnLi4vLi4vZm9ybXMvYXgtZm9ybSc7XG5pbXBvcnQgeyBTZWN0aW9uQ2hpbGRUeXBlLCBTZWN0aW9uVHlwZSB9IGZyb20gJy4uLy4uL2Zvcm1zL3BhZ2UvY29tbW9uL3dpZGdldC1lbnVtcyc7XG5pbXBvcnQgeyBEYXRhRGV0YWlsVmlld0R0byB9IGZyb20gJy4vZGF0YS1kZXRhaWwtdmlldy1kdG8nO1xuaW1wb3J0IHsgR2hvc3RMb2FkZXJUeXBlIH0gZnJvbSAnLi4vLi4vZ2hvc3QtbG9hZGVyL2dob3N0LWxvYWRlci5jb21wb25lbnQnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2xpYi1mb3JtLW9iamVjdC12aWV3JyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1vYmplY3Qtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vZm9ybS1vYmplY3Qtdmlldy5jb21wb25lbnQuc2NzcyddLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgRm9ybU9iamVjdFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgIEBJbnB1dCgpIGZvcm06IEFycmF5PEF4Rm9ybT47XG4gICAgQElucHV0KCkgZGF0YURldGFpbFZpZXc6IERhdGFEZXRhaWxWaWV3RHRvO1xuICAgIEBJbnB1dCgpIGJhc2VVcmw6IHN0cmluZztcbiAgICBASW5wdXQoKSBheG9uYXRvclgxVXJsOiBzdHJpbmc7XG4gICAgQElucHV0KCkgc2hvd0hlYWRlcjpib29sZWFuID0gdHJ1ZTtcbiAgICBASW5wdXQoKSBTY3JlZW5UeXBlOlNjcmVlblR5cGUgPSBudWxsO1xuICAgIEBJbnB1dCgpIHRhc2tEZXRhaWxzTWFwIDoge307XG4gICAgQElucHV0KCkgdGFza1N0YXR1czogVGFza1N0YXR1cztcbiAgICBASW5wdXQoKSBzaG93R2hvc3RMb2FkZXI6IGJvb2xlYW47XG5cbiAgICBwdWJsaWMgdGFyZ2V0OiBDZGtEcm9wTGlzdDtcbiAgICBwdWJsaWMgdGFyZ2V0SW5kZXg6IG51bWJlcjtcbiAgICBwdWJsaWMgc291cmNlSW5kZXg6IG51bWJlcjtcbiAgICBzZWN0aW9uVHlwZTogYW55PU9iamVjdC5hc3NpZ24oe30sU2VjdGlvblR5cGUpO1xuICAgIEdob3N0TG9hZGVyVHlwZSA9IEdob3N0TG9hZGVyVHlwZTtcblxuICAgIC8qXG4gICAgICogU3ViamVjdCBvYmplY3Qgd2hpY2ggaGVscHMgdW5zdWJzY3JpYmUgYWxsIHRoZSBzdWJzY3JpYmVkIG9iamVjdHMgaW4gdGhlIGNvbXBvbmVudFxuICAgICAqL1xuICAgIHByaXZhdGUgX3Vuc3Vic2NyaWJlQWxsOiBTdWJqZWN0PGFueT4gPSBuZXcgU3ViamVjdDxhbnk+KCk7XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICB9XG4gICAgLyoqXG4gICAgICogT24gaW5pdFxuICAgICAqL1xuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLnNob3dHaG9zdExvYWRlciA9IGZhbHNlO1xuICAgIH1cblxuXG5cbiAgICAvKipcbiAgICAgKiBTZWN0aW9uQ2hpbGRUeXBlIGVudW1cbiAgICAgKi9cbiAgICBwdWJsaWMgZ2V0IFNlY3Rpb25DaGlsZFR5cGUoKTogdHlwZW9mIFNlY3Rpb25DaGlsZFR5cGUge1xuICAgICAgICByZXR1cm4gU2VjdGlvbkNoaWxkVHlwZTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBTY3JlZW5UeXBlIGVudW1cbiAgICAgKi9cbiAgICBwdWJsaWMgZ2V0IHNjcmVlblR5cGUoKTogdHlwZW9mIFNjcmVlblR5cGUge1xuICAgICAgICByZXR1cm4gU2NyZWVuVHlwZTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBUYXNrIFN0YXR1cyBlbnVtXG4gICAgICovXG4gICAgcHVibGljIGdldCBUYXNrU3RhdHVzKCk6IHR5cGVvZiBUYXNrU3RhdHVzIHtcbiAgICAgICAgcmV0dXJuIFRhc2tTdGF0dXM7XG4gICAgfVxuXG5cbiB9XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwic2hvd0dob3N0TG9hZGVyXCI+IFxuICAgIDxhcHAtZ2hvc3QtbG9hZGVyIFtlbGVtZW50VHlwZV09XCJHaG9zdExvYWRlclR5cGUuU3ViSGVhZGVyTG9hZGVyXCIgY2xhc3M9XCJoLTEyXCI+PC9hcHAtZ2hvc3QtbG9hZGVyPlxuICAgIDxhcHAtZ2hvc3QtbG9hZGVyIFtlbGVtZW50VHlwZV09XCJHaG9zdExvYWRlclR5cGUuRGF0YURldGFpbExvYWRlclwiPjwvYXBwLWdob3N0LWxvYWRlcj5cbjwvbmctY29udGFpbmVyPlxuPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFzaG93R2hvc3RMb2FkZXJcIj4gXG4gICAgPGRpdiBjbGFzcz1cImZvcm0tb2JqZWN0LXZpZXcgdy1mdWxsIGJvcmRlci1ib3hcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInN1YmhlYWRlciBzbTpmbGV4IGhpZGRlblwiICpuZ0lmPVwic2hvd0hlYWRlciAmJiAhdGFza0RldGFpbHNNYXBcIj57e2RhdGFEZXRhaWxWaWV3LmZvcm1PYmplY3QubmFtZX19PC9kaXY+XG4gICAgICAgIDwhLS0gZm9ybSBvYmplY3QgdmlldyBoZWFkaW5nIHN0YXJ0LS0+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlclwiICpuZ0lmPVwiZGF0YURldGFpbFZpZXc/LmZvcm1PYmplY3Q/LnRpdGxlXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBpdGVtcy1jZW50ZXIganVzdGlmeS1iZXR3ZWVuIG14LWF1dG8gaC0xMiB3LWZ1bGwgYmctd2hpdGUgZm9ybS1vYmplY3Qtdmlldy1oZWFkaW5nXCI+XG4gICAgICAgICAgICAgICAgPGgyIGNsYXNzPVwibGVhZGluZy10aWdodCBwbC0xMFwiPnt7ZGF0YURldGFpbFZpZXc/LmZvcm1PYmplY3Q/LnRpdGxlfX08L2gyPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8ZGl2IGNsYXNzPVwic206cHgtMTAgcHgtMyBtdC04IG1iLTQgZGF0YS1kZXRhaWwtY29udGVudFwiPlxuICAgICAgICAgICAgPCEtLSBoZXJlIHdlIHdpbGwgcmVuZGVyaW5nIHRoZSBwYWdlIGZpZWxkcyBkeW5hbWljYWxseSB1c2luZyBjb21wb25lbnQgZmFjdG9yeSByZXNvbHZlciAtLT5cbiAgICAgICAgPGRpdiAqbmdGb3I9XCJsZXQgc2VjdGlvbiBvZiBkYXRhRGV0YWlsVmlldz8uc2VjdGlvbnNcIj5cbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJzZWN0aW9uLnR5cGUgPT09IHNlY3Rpb25UeXBlLnNlY3Rpb25cIiBjbGFzcz1cImJvcmRlci1ib3hcIj5cblxuICAgICAgICAgICAgPCEtLSBjaGVja3MgdGhlIHNjcmVlbiB0eXBlIGlzIHRhc2sgdmlldyBvciBub3QgIC0tPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIlNjcmVlblR5cGUgPT0gc2NyZWVuVHlwZS5UYXNrRGV0YWlsVmlldyAmJiB0YXNrRGV0YWlsc01hcFwiPlxuICAgICAgICAgICAgICAgIDwhLS0gY2hlY2tzIHRoZSBzZWN0aW9uIGlzIGEgbWV0YSBzZWN0aW9uIG9yIG5vdCAtLT5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwic2VjdGlvbi5zZWN0aW9uQ2hpbGRUeXBlID09IFNlY3Rpb25DaGlsZFR5cGUubWV0YVwiPlxuICAgICAgICAgICAgICAgICAgICA8IS0tIG1ldGEgc2VjdGlvbiByZW5kZXJpbmcgLS0+XG4gICAgICAgICAgICAgICAgICAgIDxhcHAtbWV0YS1zZWN0aW9uIFt0YXNrRGV0YWlsc01hcF09XCJ0YXNrRGV0YWlsc01hcFwiIFtzZWN0aW9uXT1cInNlY3Rpb25cIj48L2FwcC1tZXRhLXNlY3Rpb24+XG5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gdGFzayBkZXNjcmlwdGlvbiAtLT5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0YXNrLWxpc3QtZGlzY3JpcHRpb24tdGl0bGVcIj57e3Rhc2tEZXRhaWxzTWFwW1wie19EZXNjcmlwdGlvbl99XCJdP3Rhc2tEZXRhaWxzTWFwW1wie19EZXNjcmlwdGlvbl99XCJdWzBdOicnfX08L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gZG9lcyBub3QgZGlzcGxheSBkZXRhaWxzIG9mIGZvcm0gaWYgdGhlIHRhc2sgaXMgdG9kbyBvciBkZWxpdmVyZWQgLS0+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGFza1N0YXR1cyA9PSBUYXNrU3RhdHVzLnRvZG9cIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidGFzay1zdGF0dXMtbWVzc2FnZVwiID5UaGlzIHRhc2sgaXMgaW4gcHJvZ3Jlc3M8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgICAgICAgICAgICAgICA8IS0tIHdpZGdldCBzZWN0aW9uIHJlbmRlcmluZyBpbiB0YXNrIGRldGFpbCB2aWV3LS0+XG4gICAgICAgICAgICAgICAgICAgIDwhLS0gZGlzcGxheSBkZXRhaWxzIG9mIGZvcm0gaWYgdGhlIHRhc2sgaXMgZG9uZSAtLT5cbiAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImRhdGFEZXRhaWxWaWV3ICYmIHNlY3Rpb24uc2VjdGlvbkNoaWxkVHlwZSA9PSBTZWN0aW9uQ2hpbGRUeXBlLndpZGdldFNlY3Rpb24gJiYgdGFza1N0YXR1cyA9PSBUYXNrU3RhdHVzLmRvbmVcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxhcHAtc2VjdGlvbi12aWV3ICBbc2VjdGlvbl09XCJzZWN0aW9uXCIgW2Zvcm1PYmplY3RJZF0gPSBcImRhdGFEZXRhaWxWaWV3Py5mb3JtT2JqZWN0Py5pZFwiIFtiYXNlVXJsXSA9XCJiYXNlVXJsXCIgW2F4b25hdG9yWDFVcmxdID1cImF4b25hdG9yWDFVcmxcIj48L2FwcC1zZWN0aW9uLXZpZXc+XG4gICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuXG5cbiAgICAgICAgICAgICAgICA8IS0tIHdpZGdldCBzZWN0aW9uIHJlbmRlcmluZyBpbiBkYXRhIGRldGFpbCB2aWV3Li0tPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJTY3JlZW5UeXBlICE9IHNjcmVlblR5cGUuVGFza0RldGFpbFZpZXdcIj5cbiAgICAgICAgICAgICAgICAgICAgPGFwcC1zZWN0aW9uLXZpZXcgIFtzZWN0aW9uXT1cInNlY3Rpb25cIiBbZm9ybU9iamVjdElkXSA9IFwiZGF0YURldGFpbFZpZXcuZm9ybU9iamVjdC5pZFwiIFtiYXNlVXJsXSA9XCJiYXNlVXJsXCIgW2F4b25hdG9yWDFVcmxdID1cImF4b25hdG9yWDFVcmxcIj48L2FwcC1zZWN0aW9uLXZpZXc+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG4iXX0=
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { FormObjectViewComponent } from './form-object-view.component';
|
|
4
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
5
|
+
import { MatExpansionModule } from '@angular/material/expansion';
|
|
6
|
+
import { MatCardModule } from '@angular/material/card';
|
|
7
|
+
import { MatTableModule } from '@angular/material/table';
|
|
8
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
9
|
+
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
10
|
+
import { MatDividerModule } from '@angular/material/divider';
|
|
11
|
+
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
12
|
+
import { MatInputModule } from '@angular/material/input';
|
|
13
|
+
import { MatSelectModule } from '@angular/material/select';
|
|
14
|
+
import { ReactiveFormsModule } from '@angular/forms';
|
|
15
|
+
import { MatMenuModule } from '@angular/material/menu';
|
|
16
|
+
import { MatMomentDateModule } from '@angular/material-moment-adapter';
|
|
17
|
+
import { SharedModule } from '../../shared/shared.module';
|
|
18
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
19
|
+
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
20
|
+
import { MatGridListModule } from '@angular/material/grid-list';
|
|
21
|
+
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
22
|
+
import { FormObjectWidgetsViewComponent } from './form-object-widgets/form-object-widgets-view.component';
|
|
23
|
+
import { FormObjectWidgetViewDirective } from './form-object-widgets/form-object-widgets-view.directive';
|
|
24
|
+
import { ApplyGeoFenceWidgetViewComponent } from './form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component';
|
|
25
|
+
import { AudioWidgetViewComponent } from './form-object-widgets/audio-widget-view/audio-widget-view.component';
|
|
26
|
+
import { AutoNumberWidgetViewComponent } from './form-object-widgets/auto-number-widget-view/auto-number-widget-view.component';
|
|
27
|
+
import { BarCodeWidgetViewComponent } from './form-object-widgets/bar-code-widget-view/bar-code-widget-view.component';
|
|
28
|
+
import { ChildRecordsWidgetViewComponent } from './form-object-widgets/child-records-widget-view/child-records-widget-view.component';
|
|
29
|
+
import { ChoiceListWidgetViewComponent } from './form-object-widgets/choice-list-widget-view/choice-list-widget-view.component';
|
|
30
|
+
import { CounterWidgetViewComponent } from './form-object-widgets/counter-widget-view/counter-widget-view.component';
|
|
31
|
+
import { DateTimeWidgetViewComponent } from './form-object-widgets/date-time-widget-view/date-time-widget-view.component';
|
|
32
|
+
import { DocumentWidgetViewComponent } from './form-object-widgets/document-widget-view/document-widget-view.component';
|
|
33
|
+
import { FormulaWidgetViewComponent } from './form-object-widgets/formula-widget-view/formula-widget-view.component';
|
|
34
|
+
import { GeoFenceWidgetViewComponent } from './form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component';
|
|
35
|
+
import { GpsWidgetViewComponent } from './form-object-widgets/gps-widget-view/gps-widget-view.component';
|
|
36
|
+
import { GroupHeaderWidgetViewComponent } from './form-object-widgets/group-header-widget-view/group-header-widget-view.component';
|
|
37
|
+
import { ImageWidgetViewComponent } from './form-object-widgets/image-widget-view/image-widget-view.component';
|
|
38
|
+
import { LanguageWidgetViewComponent } from './form-object-widgets/language-widget-view/language-widget-view.component';
|
|
39
|
+
import { PaymentWidgetViewComponent } from './form-object-widgets/payment-widget-view/payment-widget-view.component';
|
|
40
|
+
import { QrCodeWidgetViewComponent } from './form-object-widgets/qr-code-widget-view/qr-code-widget-view.component';
|
|
41
|
+
import { SignatureWidgetViewComponent } from './form-object-widgets/signature-widget-view/signature-widget-view.component';
|
|
42
|
+
import { StaticMediaWidgetViewComponent } from './form-object-widgets/static-media-widget-view/static-media-widget-view.component';
|
|
43
|
+
import { StopWatchWidgetViewComponent } from './form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component';
|
|
44
|
+
import { SubFormWidgetViewComponent } from './form-object-widgets/sub-form-widget-view/sub-form-widget-view.component';
|
|
45
|
+
import { TextBoxWidgetViewComponent } from './form-object-widgets/text-box-widget-view/text-box-widget-view.component';
|
|
46
|
+
import { TimeStampWidgetViewComponent } from './form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component';
|
|
47
|
+
import { ToggleWidgetViewComponent } from './form-object-widgets/toggle-widget-view/toggle-widget-view.component';
|
|
48
|
+
import { UniqueIdWidgetViewComponent } from './form-object-widgets/unique-id-widget-view/unique-id-widget-view.component';
|
|
49
|
+
import { VerificationWidgetViewComponent } from './form-object-widgets/verification-widget-view/verification-widget-view.component';
|
|
50
|
+
import { VideoWidgetViewComponent } from './form-object-widgets/video-widget-view/video-widget-view.component';
|
|
51
|
+
import { WebLinkWidgetViewComponent } from './form-object-widgets/web-link-widget-view/web-link-widget-view.component';
|
|
52
|
+
import { SectionViewComponent } from './section-view/section-view.component';
|
|
53
|
+
import { SectionFieldComponent } from './section-field/section-field.component';
|
|
54
|
+
import { AgmCoreModule } from '@agm/core';
|
|
55
|
+
import { ImageWidgetLightboxViewComponent } from './form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component';
|
|
56
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
57
|
+
import { ImageMapViewComponent } from './form-object-widgets/image-widget-view/image-map-view/image-map-view.component';
|
|
58
|
+
import { DynamicViewDirective } from './dynamic-view/dynamic-view.directive';
|
|
59
|
+
import { DynamicViewComponent } from './dynamic-view/dynamic-view.component';
|
|
60
|
+
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
61
|
+
import { SectionComponent } from './section/section.component';
|
|
62
|
+
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
63
|
+
import { AgmSnazzyInfoWindowModule } from '@agm/snazzy-info-window';
|
|
64
|
+
import { AxoMapModule } from '../../axo-map/axo-map.module';
|
|
65
|
+
import { MetaSectionComponent } from './meta-section/meta-section.component';
|
|
66
|
+
import { GhostLoaderModule } from '../../ghost-loader/ghost-loader.module';
|
|
67
|
+
import * as i0 from "@angular/core";
|
|
68
|
+
import * as i1 from "@agm/core";
|
|
69
|
+
import * as i2 from "@angular/common";
|
|
70
|
+
import * as i3 from "../../ghost-loader/ghost-loader.component";
|
|
71
|
+
import * as i4 from "@angular/material/icon";
|
|
72
|
+
import * as i5 from "@angular/material/progress-spinner";
|
|
73
|
+
import * as i6 from "@angular/flex-layout/extended";
|
|
74
|
+
import * as i7 from "@angular/material/card";
|
|
75
|
+
import * as i8 from "@angular/flex-layout/flex";
|
|
76
|
+
export class FormObjectViewModule {
|
|
77
|
+
}
|
|
78
|
+
FormObjectViewModule.ɵfac = function FormObjectViewModule_Factory(t) { return new (t || FormObjectViewModule)(); };
|
|
79
|
+
FormObjectViewModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: FormObjectViewModule });
|
|
80
|
+
FormObjectViewModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [MatDialog], imports: [[
|
|
81
|
+
CommonModule,
|
|
82
|
+
MatIconModule,
|
|
83
|
+
MatExpansionModule,
|
|
84
|
+
MatCardModule,
|
|
85
|
+
MatTableModule,
|
|
86
|
+
MatButtonModule,
|
|
87
|
+
MatDatepickerModule,
|
|
88
|
+
MatDividerModule,
|
|
89
|
+
MatFormFieldModule,
|
|
90
|
+
MatIconModule,
|
|
91
|
+
MatInputModule,
|
|
92
|
+
MatMenuModule,
|
|
93
|
+
MatSelectModule,
|
|
94
|
+
MatMomentDateModule,
|
|
95
|
+
SharedModule,
|
|
96
|
+
ReactiveFormsModule,
|
|
97
|
+
MatTooltipModule,
|
|
98
|
+
MatSlideToggleModule,
|
|
99
|
+
MatGridListModule,
|
|
100
|
+
MatCardModule,
|
|
101
|
+
MatSnackBarModule,
|
|
102
|
+
FlexLayoutModule,
|
|
103
|
+
MatProgressSpinnerModule,
|
|
104
|
+
AgmCoreModule.forRoot({
|
|
105
|
+
apiKey: 'AIzaSyAfEWEp5Rk-8slzvUBWLodVOXhk1mp-WjM',
|
|
106
|
+
libraries: ['places', 'drawing']
|
|
107
|
+
}),
|
|
108
|
+
AgmSnazzyInfoWindowModule,
|
|
109
|
+
AxoMapModule,
|
|
110
|
+
GhostLoaderModule
|
|
111
|
+
]] });
|
|
112
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormObjectViewModule, [{
|
|
113
|
+
type: NgModule,
|
|
114
|
+
args: [{
|
|
115
|
+
imports: [
|
|
116
|
+
CommonModule,
|
|
117
|
+
MatIconModule,
|
|
118
|
+
MatExpansionModule,
|
|
119
|
+
MatCardModule,
|
|
120
|
+
MatTableModule,
|
|
121
|
+
MatButtonModule,
|
|
122
|
+
MatDatepickerModule,
|
|
123
|
+
MatDividerModule,
|
|
124
|
+
MatFormFieldModule,
|
|
125
|
+
MatIconModule,
|
|
126
|
+
MatInputModule,
|
|
127
|
+
MatMenuModule,
|
|
128
|
+
MatSelectModule,
|
|
129
|
+
MatMomentDateModule,
|
|
130
|
+
SharedModule,
|
|
131
|
+
ReactiveFormsModule,
|
|
132
|
+
MatTooltipModule,
|
|
133
|
+
MatSlideToggleModule,
|
|
134
|
+
MatGridListModule,
|
|
135
|
+
MatCardModule,
|
|
136
|
+
MatSnackBarModule,
|
|
137
|
+
FlexLayoutModule,
|
|
138
|
+
MatProgressSpinnerModule,
|
|
139
|
+
AgmCoreModule.forRoot({
|
|
140
|
+
apiKey: 'AIzaSyAfEWEp5Rk-8slzvUBWLodVOXhk1mp-WjM',
|
|
141
|
+
libraries: ['places', 'drawing']
|
|
142
|
+
}),
|
|
143
|
+
AgmSnazzyInfoWindowModule,
|
|
144
|
+
AxoMapModule,
|
|
145
|
+
GhostLoaderModule
|
|
146
|
+
],
|
|
147
|
+
declarations: [
|
|
148
|
+
DynamicViewComponent,
|
|
149
|
+
DynamicViewDirective,
|
|
150
|
+
FormObjectViewComponent,
|
|
151
|
+
FormObjectWidgetViewDirective,
|
|
152
|
+
FormObjectWidgetsViewComponent,
|
|
153
|
+
TextBoxWidgetViewComponent,
|
|
154
|
+
BarCodeWidgetViewComponent,
|
|
155
|
+
StaticMediaWidgetViewComponent,
|
|
156
|
+
AutoNumberWidgetViewComponent,
|
|
157
|
+
ApplyGeoFenceWidgetViewComponent,
|
|
158
|
+
AudioWidgetViewComponent,
|
|
159
|
+
AutoNumberWidgetViewComponent,
|
|
160
|
+
BarCodeWidgetViewComponent,
|
|
161
|
+
ChildRecordsWidgetViewComponent,
|
|
162
|
+
ChoiceListWidgetViewComponent,
|
|
163
|
+
CounterWidgetViewComponent,
|
|
164
|
+
DateTimeWidgetViewComponent,
|
|
165
|
+
DocumentWidgetViewComponent,
|
|
166
|
+
FormulaWidgetViewComponent,
|
|
167
|
+
GeoFenceWidgetViewComponent,
|
|
168
|
+
GpsWidgetViewComponent,
|
|
169
|
+
GroupHeaderWidgetViewComponent,
|
|
170
|
+
ImageWidgetViewComponent,
|
|
171
|
+
LanguageWidgetViewComponent,
|
|
172
|
+
PaymentWidgetViewComponent,
|
|
173
|
+
QrCodeWidgetViewComponent,
|
|
174
|
+
SignatureWidgetViewComponent,
|
|
175
|
+
StaticMediaWidgetViewComponent,
|
|
176
|
+
StopWatchWidgetViewComponent,
|
|
177
|
+
SubFormWidgetViewComponent,
|
|
178
|
+
TextBoxWidgetViewComponent,
|
|
179
|
+
TimeStampWidgetViewComponent,
|
|
180
|
+
ToggleWidgetViewComponent,
|
|
181
|
+
UniqueIdWidgetViewComponent,
|
|
182
|
+
VerificationWidgetViewComponent,
|
|
183
|
+
VideoWidgetViewComponent,
|
|
184
|
+
WebLinkWidgetViewComponent,
|
|
185
|
+
SectionViewComponent,
|
|
186
|
+
SectionFieldComponent,
|
|
187
|
+
ImageWidgetLightboxViewComponent,
|
|
188
|
+
ImageMapViewComponent,
|
|
189
|
+
SectionComponent,
|
|
190
|
+
MetaSectionComponent
|
|
191
|
+
],
|
|
192
|
+
providers: [MatDialog],
|
|
193
|
+
exports: [
|
|
194
|
+
FormObjectViewComponent,
|
|
195
|
+
GpsWidgetViewComponent
|
|
196
|
+
],
|
|
197
|
+
}]
|
|
198
|
+
}], null, null); })();
|
|
199
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FormObjectViewModule, { declarations: [DynamicViewComponent,
|
|
200
|
+
DynamicViewDirective,
|
|
201
|
+
FormObjectViewComponent,
|
|
202
|
+
FormObjectWidgetViewDirective,
|
|
203
|
+
FormObjectWidgetsViewComponent,
|
|
204
|
+
TextBoxWidgetViewComponent,
|
|
205
|
+
BarCodeWidgetViewComponent,
|
|
206
|
+
StaticMediaWidgetViewComponent,
|
|
207
|
+
AutoNumberWidgetViewComponent,
|
|
208
|
+
ApplyGeoFenceWidgetViewComponent,
|
|
209
|
+
AudioWidgetViewComponent,
|
|
210
|
+
AutoNumberWidgetViewComponent,
|
|
211
|
+
BarCodeWidgetViewComponent,
|
|
212
|
+
ChildRecordsWidgetViewComponent,
|
|
213
|
+
ChoiceListWidgetViewComponent,
|
|
214
|
+
CounterWidgetViewComponent,
|
|
215
|
+
DateTimeWidgetViewComponent,
|
|
216
|
+
DocumentWidgetViewComponent,
|
|
217
|
+
FormulaWidgetViewComponent,
|
|
218
|
+
GeoFenceWidgetViewComponent,
|
|
219
|
+
GpsWidgetViewComponent,
|
|
220
|
+
GroupHeaderWidgetViewComponent,
|
|
221
|
+
ImageWidgetViewComponent,
|
|
222
|
+
LanguageWidgetViewComponent,
|
|
223
|
+
PaymentWidgetViewComponent,
|
|
224
|
+
QrCodeWidgetViewComponent,
|
|
225
|
+
SignatureWidgetViewComponent,
|
|
226
|
+
StaticMediaWidgetViewComponent,
|
|
227
|
+
StopWatchWidgetViewComponent,
|
|
228
|
+
SubFormWidgetViewComponent,
|
|
229
|
+
TextBoxWidgetViewComponent,
|
|
230
|
+
TimeStampWidgetViewComponent,
|
|
231
|
+
ToggleWidgetViewComponent,
|
|
232
|
+
UniqueIdWidgetViewComponent,
|
|
233
|
+
VerificationWidgetViewComponent,
|
|
234
|
+
VideoWidgetViewComponent,
|
|
235
|
+
WebLinkWidgetViewComponent,
|
|
236
|
+
SectionViewComponent,
|
|
237
|
+
SectionFieldComponent,
|
|
238
|
+
ImageWidgetLightboxViewComponent,
|
|
239
|
+
ImageMapViewComponent,
|
|
240
|
+
SectionComponent,
|
|
241
|
+
MetaSectionComponent], imports: [CommonModule,
|
|
242
|
+
MatIconModule,
|
|
243
|
+
MatExpansionModule,
|
|
244
|
+
MatCardModule,
|
|
245
|
+
MatTableModule,
|
|
246
|
+
MatButtonModule,
|
|
247
|
+
MatDatepickerModule,
|
|
248
|
+
MatDividerModule,
|
|
249
|
+
MatFormFieldModule,
|
|
250
|
+
MatIconModule,
|
|
251
|
+
MatInputModule,
|
|
252
|
+
MatMenuModule,
|
|
253
|
+
MatSelectModule,
|
|
254
|
+
MatMomentDateModule,
|
|
255
|
+
SharedModule,
|
|
256
|
+
ReactiveFormsModule,
|
|
257
|
+
MatTooltipModule,
|
|
258
|
+
MatSlideToggleModule,
|
|
259
|
+
MatGridListModule,
|
|
260
|
+
MatCardModule,
|
|
261
|
+
MatSnackBarModule,
|
|
262
|
+
FlexLayoutModule,
|
|
263
|
+
MatProgressSpinnerModule, i1.AgmCoreModule, AgmSnazzyInfoWindowModule,
|
|
264
|
+
AxoMapModule,
|
|
265
|
+
GhostLoaderModule], exports: [FormObjectViewComponent,
|
|
266
|
+
GpsWidgetViewComponent] }); })();
|
|
267
|
+
i0.ɵɵsetComponentScope(FormObjectViewComponent, [i2.NgIf, i3.GhostLoaderComponent, i2.NgForOf, MetaSectionComponent,
|
|
268
|
+
SectionViewComponent], []);
|
|
269
|
+
i0.ɵɵsetComponentScope(ChildRecordsWidgetViewComponent, [i2.NgIf, i2.NgSwitch, i4.MatIcon, i2.NgForOf, i5.MatProgressSpinner, DynamicViewComponent], []);
|
|
270
|
+
i0.ɵɵsetComponentScope(ChoiceListWidgetViewComponent, [i2.NgIf, i2.NgClass, i6.DefaultClassDirective, i2.NgForOf, i5.MatProgressSpinner, DynamicViewComponent, i4.MatIcon], []);
|
|
271
|
+
i0.ɵɵsetComponentScope(SectionFieldComponent, [FormObjectWidgetsViewComponent], []);
|
|
272
|
+
i0.ɵɵsetComponentScope(SectionComponent, [i7.MatCard, i8.DefaultLayoutDirective, i8.DefaultLayoutAlignDirective, i8.DefaultFlexDirective, i2.NgClass, i6.DefaultClassDirective, i2.NgForOf, i2.NgIf, DynamicViewComponent], []);
|
|
273
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1vYmplY3Qtdmlldy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtdmlldy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQVEsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDdkUsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBQy9ELE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUMsY0FBYyxFQUFDLE1BQU0seUJBQXlCLENBQUM7QUFDdkQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ25FLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzdELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDM0QsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGtDQUFrQyxD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O1FBQ2hCLG9CQUFvQixhQTNFcEIsWUFBWTtRQUNaLGFBQWE7UUFDYixrQkFBa0I7UUFDbEIsYUFBYTtRQUNiLGNBQWM7UUFDZCxlQUFlO1FBQ2YsbUJBQW1CO1FBQ25CLGdCQUFnQjtRQUNoQixrQkFBa0I7UUFDbEIsYUFBYTtRQUNiLGNBQWM7UUFDZCxhQUFhO1FBQ2IsZUFBZTtRQUNmLG1CQUFtQjtRQUNuQixZQUFZO1FBQ1osbUJBQW1CO1FBQ25CLGdCQUFnQjtRQUNoQixvQkFBb0I7UUFDcEIsaUJBQWlCO1FBQ2pCLGFBQWE7UUFDYixpQkFBaUI7UUFDakIsZ0JBQWdCO1FBQ2hCLHdCQUF3QixvQkFLeEIseUJBQXlCO1FBQ3pCLFlBQVk7UUFDWixpQkFBaUIsYUFrRGpCLHVCQUF1QjtRQUN2QixzQkFBc0I7dUJBN0N0Qix1QkFBdUIsaURBd0N2QixvQkFBb0I7SUFMcEIsb0JBQW9CO3VCQXhCcEIsK0JBQStCLHdFQWIvQixvQkFBb0I7dUJBY3BCLDZCQUE2QixxRkFkN0Isb0JBQW9CO3VCQXNDcEIscUJBQXFCLEdBbENyQiw4QkFBOEI7dUJBcUM5QixnQkFBZ0IsOEpBekNoQixvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUsIFR5cGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1PYmplY3RWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQge01hdEV4cGFuc2lvbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZXhwYW5zaW9uJztcbmltcG9ydCB7TWF0Q2FyZE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY2FyZCc7XG5pbXBvcnQge01hdFRhYmxlTW9kdWxlfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90YWJsZSc7XG5pbXBvcnQgeyBNYXRCdXR0b25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xuaW1wb3J0IHsgTWF0RGF0ZXBpY2tlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RhdGVwaWNrZXInO1xuaW1wb3J0IHsgTWF0RGl2aWRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RpdmlkZXInO1xuaW1wb3J0IHsgTWF0Rm9ybUZpZWxkTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XG5pbXBvcnQgeyBNYXRJbnB1dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2lucHV0JztcbmltcG9ydCB7IE1hdFNlbGVjdE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NlbGVjdCc7XG5pbXBvcnQgeyBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgTWF0TWVudU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL21lbnUnO1xuaW1wb3J0IHsgTWF0TW9tZW50RGF0ZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsLW1vbWVudC1hZGFwdGVyJztcbmltcG9ydCB7IFNoYXJlZE1vZHVsZSB9IGZyb20gJy4uLy4uL3NoYXJlZC9zaGFyZWQubW9kdWxlJztcbmltcG9ydCB7IE1hdFRvb2x0aXBNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90b29sdGlwJztcbmltcG9ydCB7IE1hdFNsaWRlVG9nZ2xlTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc2xpZGUtdG9nZ2xlJztcbmltcG9ydCB7IE1hdEdyaWRMaXN0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZ3JpZC1saXN0JztcbmltcG9ydCB7IE1hdFNuYWNrQmFyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc25hY2stYmFyJztcbmltcG9ydCB7IEZvcm1PYmplY3RXaWRnZXRzVmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9mb3JtLW9iamVjdC13aWRnZXRzLXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IEZvcm1PYmplY3RXaWRnZXRWaWV3RGlyZWN0aXZlIH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL2Zvcm0tb2JqZWN0LXdpZGdldHMtdmlldy5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgQXBwbHlHZW9GZW5jZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvYXBwbHktZ2VvLWZlbmNlLXdpZGdldC12aWV3L2FwcGx5LWdlby1mZW5jZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQXVkaW9XaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL2F1ZGlvLXdpZGdldC12aWV3L2F1ZGlvLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBdXRvTnVtYmVyV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9hdXRvLW51bWJlci13aWRnZXQtdmlldy9hdXRvLW51bWJlci13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQmFyQ29kZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvYmFyLWNvZGUtd2lkZ2V0LXZpZXcvYmFyLWNvZGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IENoaWxkUmVjb3Jkc1dpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvY2hpbGQtcmVjb3Jkcy13aWRnZXQtdmlldy9jaGlsZC1yZWNvcmRzLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDaG9pY2VMaXN0V2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9jaG9pY2UtbGlzdC13aWRnZXQtdmlldy9jaG9pY2UtbGlzdC13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ291bnRlcldpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvY291bnRlci13aWRnZXQtdmlldy9jb3VudGVyLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRlVGltZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvZGF0ZS10aW1lLXdpZGdldC12aWV3L2RhdGUtdGltZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRG9jdW1lbnRXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL2RvY3VtZW50LXdpZGdldC12aWV3L2RvY3VtZW50LXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGb3JtdWxhV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9mb3JtdWxhLXdpZGdldC12aWV3L2Zvcm11bGEtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IEdlb0ZlbmNlV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9nZW8tZmVuY2Utd2lkZ2V0LXZpZXcvZ2VvLWZlbmNlLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBHcHNXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL2dwcy13aWRnZXQtdmlldy9ncHMtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IEdyb3VwSGVhZGVyV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9ncm91cC1oZWFkZXItd2lkZ2V0LXZpZXcvZ3JvdXAtaGVhZGVyLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBJbWFnZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvaW1hZ2Utd2lkZ2V0LXZpZXcvaW1hZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IExhbmd1YWdlV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9sYW5ndWFnZS13aWRnZXQtdmlldy9sYW5ndWFnZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgUGF5bWVudFdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvcGF5bWVudC13aWRnZXQtdmlldy9wYXltZW50LXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBRckNvZGVXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL3FyLWNvZGUtd2lkZ2V0LXZpZXcvcXItY29kZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU2lnbmF0dXJlV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9zaWduYXR1cmUtd2lkZ2V0LXZpZXcvc2lnbmF0dXJlLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTdGF0aWNNZWRpYVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvc3RhdGljLW1lZGlhLXdpZGdldC12aWV3L3N0YXRpYy1tZWRpYS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU3RvcFdhdGNoV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9zdG9wLXdhdGNoLXdpZGdldC12aWV3L3N0b3Atd2F0Y2gtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFN1YkZvcm1XaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL3N1Yi1mb3JtLXdpZGdldC12aWV3L3N1Yi1mb3JtLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBUZXh0Qm94V2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy90ZXh0LWJveC13aWRnZXQtdmlldy90ZXh0LWJveC13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGltZVN0YW1wV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy90aW1lLXN0YW1wLXdpZGdldC12aWV3L3RpbWUtc3RhbXAtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFRvZ2dsZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvdG9nZ2xlLXdpZGdldC12aWV3L3RvZ2dsZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVW5pcXVlSWRXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL3VuaXF1ZS1pZC13aWRnZXQtdmlldy91bmlxdWUtaWQtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFZlcmlmaWNhdGlvbldpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tb2JqZWN0LXdpZGdldHMvdmVyaWZpY2F0aW9uLXdpZGdldC12aWV3L3ZlcmlmaWNhdGlvbi13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVmlkZW9XaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLW9iamVjdC13aWRnZXRzL3ZpZGVvLXdpZGdldC12aWV3L3ZpZGVvLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBXZWJMaW5rV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy93ZWItbGluay13aWRnZXQtdmlldy93ZWItbGluay13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU2VjdGlvblZpZXdDb21wb25lbnQgfSBmcm9tICcuL3NlY3Rpb24tdmlldy9zZWN0aW9uLXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7U2VjdGlvbkZpZWxkQ29tcG9uZW50fSBmcm9tICcuL3NlY3Rpb24tZmllbGQvc2VjdGlvbi1maWVsZC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQWdtQ29yZU1vZHVsZSB9IGZyb20gJ0BhZ20vY29yZSc7XG5pbXBvcnQgeyBJbWFnZVdpZGdldExpZ2h0Ym94Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9pbWFnZS13aWRnZXQtdmlldy9pbWFnZS13aWRnZXQtbGlnaHRib3gtdmlldy9pbWFnZS13aWRnZXQtbGlnaHRib3gtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IEltYWdlTWFwVmlld0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy9pbWFnZS13aWRnZXQtdmlldy9pbWFnZS1tYXAtdmlldy9pbWFnZS1tYXAtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRHluYW1pY1ZpZXdEaXJlY3RpdmUgfSBmcm9tICcuL2R5bmFtaWMtdmlldy9keW5hbWljLXZpZXcuZGlyZWN0aXZlJztcbmltcG9ydCB7IER5bmFtaWNWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9keW5hbWljLXZpZXcvZHluYW1pYy12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGbGV4TGF5b3V0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHsgU2VjdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vc2VjdGlvbi9zZWN0aW9uLmNvbXBvbmVudCc7XG5pbXBvcnQge01hdFByb2dyZXNzU3Bpbm5lck1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvcHJvZ3Jlc3Mtc3Bpbm5lcic7XG5pbXBvcnQgeyBBZ21TbmF6enlJbmZvV2luZG93TW9kdWxlIH0gZnJvbSAnQGFnbS9zbmF6enktaW5mby13aW5kb3cnO1xuaW1wb3J0IHsgQXhvTWFwTW9kdWxlIH0gZnJvbSAnLi4vLi4vYXhvLW1hcC9heG8tbWFwLm1vZHVsZSc7XG5pbXBvcnQgeyBNZXRhU2VjdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vbWV0YS1zZWN0aW9uL21ldGEtc2VjdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgR2hvc3RMb2FkZXJNb2R1bGUgfSBmcm9tICcuLi8uLi9naG9zdC1sb2FkZXIvZ2hvc3QtbG9hZGVyLm1vZHVsZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIE1hdEV4cGFuc2lvbk1vZHVsZSxcbiAgICBNYXRDYXJkTW9kdWxlLFxuICAgIE1hdFRhYmxlTW9kdWxlLFxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcbiAgICBNYXREYXRlcGlja2VyTW9kdWxlLFxuICAgIE1hdERpdmlkZXJNb2R1bGUsXG4gICAgTWF0Rm9ybUZpZWxkTW9kdWxlLFxuICAgIE1hdEljb25Nb2R1bGUsXG4gICAgTWF0SW5wdXRNb2R1bGUsXG4gICAgTWF0TWVudU1vZHVsZSxcbiAgICBNYXRTZWxlY3RNb2R1bGUsXG4gICAgTWF0TW9tZW50RGF0ZU1vZHVsZSxcbiAgICBTaGFyZWRNb2R1bGUsXG4gICAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbiAgICBNYXRUb29sdGlwTW9kdWxlLFxuICAgIE1hdFNsaWRlVG9nZ2xlTW9kdWxlLFxuICAgIE1hdEdyaWRMaXN0TW9kdWxlLFxuICAgIE1hdENhcmRNb2R1bGUsXG4gICAgTWF0U25hY2tCYXJNb2R1bGUsXG4gICAgRmxleExheW91dE1vZHVsZSxcbiAgICBNYXRQcm9ncmVzc1NwaW5uZXJNb2R1bGUsXG4gICAgQWdtQ29yZU1vZHVsZS5mb3JSb290KHtcbiAgICAgIGFwaUtleTonQUl6YVN5QWZFV0VwNVJrLThzbHp2VUJXTG9kVk9YaGsxbXAtV2pNJyxcbiAgICAgIGxpYnJhcmllczogWydwbGFjZXMnLCAnZHJhd2luZyddXG4gICAgfSksXG4gICAgQWdtU25henp5SW5mb1dpbmRvd01vZHVsZSxcbiAgICBBeG9NYXBNb2R1bGUsXG4gICAgR2hvc3RMb2FkZXJNb2R1bGVcblxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBEeW5hbWljVmlld0NvbXBvbmVudCxcbiAgICBEeW5hbWljVmlld0RpcmVjdGl2ZSxcbiAgICBGb3JtT2JqZWN0Vmlld0NvbXBvbmVudCxcbiAgICBGb3JtT2JqZWN0V2lkZ2V0Vmlld0RpcmVjdGl2ZSxcbiAgICBGb3JtT2JqZWN0V2lkZ2V0c1ZpZXdDb21wb25lbnQsXG4gICAgVGV4dEJveFdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgQmFyQ29kZVdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgU3RhdGljTWVkaWFXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIEF1dG9OdW1iZXJXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIEFwcGx5R2VvRmVuY2VXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIEF1ZGlvV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBBdXRvTnVtYmVyV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBCYXJDb2RlV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBDaGlsZFJlY29yZHNXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIENob2ljZUxpc3RXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIENvdW50ZXJXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIERhdGVUaW1lV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBEb2N1bWVudFdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgRm9ybXVsYVdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgR2VvRmVuY2VXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIEdwc1dpZGdldFZpZXdDb21wb25lbnQsXG4gICAgR3JvdXBIZWFkZXJXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIEltYWdlV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBMYW5ndWFnZVdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgUGF5bWVudFdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgUXJDb2RlV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBTaWduYXR1cmVXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIFN0YXRpY01lZGlhV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBTdG9wV2F0Y2hXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIFN1YkZvcm1XaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIFRleHRCb3hXaWRnZXRWaWV3Q29tcG9uZW50LFxuICAgIFRpbWVTdGFtcFdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgVG9nZ2xlV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBVbmlxdWVJZFdpZGdldFZpZXdDb21wb25lbnQsXG4gICAgVmVyaWZpY2F0aW9uV2lkZ2V0Vmlld0NvbXBvbmVudCxcbiAgICBWaWRlb1dpZGdldFZpZXdDb21wb25lbnQsXG4gICAgV2ViTGlua1dpZGdldFZpZXdDb21wb25lbnQsXG4gICAgU2VjdGlvblZpZXdDb21wb25lbnQsXG4gICAgU2VjdGlvbkZpZWxkQ29tcG9uZW50LFxuICAgIEltYWdlV2lkZ2V0TGlnaHRib3hWaWV3Q29tcG9uZW50LFxuICAgIEltYWdlTWFwVmlld0NvbXBvbmVudCxcbiAgICBTZWN0aW9uQ29tcG9uZW50LFxuICAgIE1ldGFTZWN0aW9uQ29tcG9uZW50XG4gIF0sXG5wcm92aWRlcnM6IFtNYXREaWFsb2ddLFxuZXhwb3J0czpbXG4gICAgRm9ybU9iamVjdFZpZXdDb21wb25lbnQsXG4gICAgR3BzV2lkZ2V0Vmlld0NvbXBvbmVudFxuXG5dLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtT2JqZWN0Vmlld01vZHVsZSB7IH1cbiJdfQ==
|