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,210 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { AxDocument } from '../../../../forms/page/widgets/ax-document';
|
|
3
|
+
import { AxoUtils } from '../../../../axo-utils/axo-utils';
|
|
4
|
+
import _ from 'lodash';
|
|
5
|
+
import { DocumentExtensionType } from '../../../../forms/page/common/widget-enums';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/common";
|
|
8
|
+
import * as i2 from "@angular/material/icon";
|
|
9
|
+
function DocumentWidgetViewComponent_div_0_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementStart(0, "span");
|
|
11
|
+
i0.ɵɵtext(1);
|
|
12
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
13
|
+
i0.ɵɵtext(3, ":");
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
} if (rf & 2) {
|
|
17
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵtextInterpolate(ctx_r2.widget.prompt);
|
|
20
|
+
} }
|
|
21
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_5_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
const _r14 = i0.ɵɵgetCurrentView();
|
|
23
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
24
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_5_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r13 = i0.ɵɵnextContext(2); return ctx_r13.downloadDocument(); });
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
} if (rf & 2) {
|
|
27
|
+
i0.ɵɵproperty("svgIcon", "axo_pdf1");
|
|
28
|
+
} }
|
|
29
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_6_Template(rf, ctx) { if (rf & 1) {
|
|
30
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
31
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
32
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_6_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r15 = i0.ɵɵnextContext(2); return ctx_r15.downloadDocument(); });
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
} if (rf & 2) {
|
|
35
|
+
i0.ɵɵproperty("svgIcon", "axo_ppt");
|
|
36
|
+
} }
|
|
37
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_7_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
39
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
40
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_7_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r18); const ctx_r17 = i0.ɵɵnextContext(2); return ctx_r17.downloadDocument(); });
|
|
41
|
+
i0.ɵɵelementEnd();
|
|
42
|
+
} if (rf & 2) {
|
|
43
|
+
i0.ɵɵproperty("svgIcon", "axo_pptx");
|
|
44
|
+
} }
|
|
45
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_8_Template(rf, ctx) { if (rf & 1) {
|
|
46
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
47
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
48
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_8_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r20); const ctx_r19 = i0.ɵɵnextContext(2); return ctx_r19.downloadDocument(); });
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
} if (rf & 2) {
|
|
51
|
+
i0.ɵɵproperty("svgIcon", "axo_doc");
|
|
52
|
+
} }
|
|
53
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_9_Template(rf, ctx) { if (rf & 1) {
|
|
54
|
+
const _r22 = i0.ɵɵgetCurrentView();
|
|
55
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
56
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_9_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r22); const ctx_r21 = i0.ɵɵnextContext(2); return ctx_r21.downloadDocument(); });
|
|
57
|
+
i0.ɵɵelementEnd();
|
|
58
|
+
} if (rf & 2) {
|
|
59
|
+
i0.ɵɵproperty("svgIcon", "axo_txt");
|
|
60
|
+
} }
|
|
61
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_10_Template(rf, ctx) { if (rf & 1) {
|
|
62
|
+
const _r24 = i0.ɵɵgetCurrentView();
|
|
63
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
64
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_10_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r24); const ctx_r23 = i0.ɵɵnextContext(2); return ctx_r23.downloadDocument(); });
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
} if (rf & 2) {
|
|
67
|
+
i0.ɵɵproperty("svgIcon", "axo_xls");
|
|
68
|
+
} }
|
|
69
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_11_Template(rf, ctx) { if (rf & 1) {
|
|
70
|
+
const _r26 = i0.ɵɵgetCurrentView();
|
|
71
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
72
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_11_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r26); const ctx_r25 = i0.ɵɵnextContext(2); return ctx_r25.downloadDocument(); });
|
|
73
|
+
i0.ɵɵelementEnd();
|
|
74
|
+
} if (rf & 2) {
|
|
75
|
+
i0.ɵɵproperty("svgIcon", "axo_xlsx");
|
|
76
|
+
} }
|
|
77
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_12_Template(rf, ctx) { if (rf & 1) {
|
|
78
|
+
const _r28 = i0.ɵɵgetCurrentView();
|
|
79
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
80
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_12_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r28); const ctx_r27 = i0.ɵɵnextContext(2); return ctx_r27.downloadDocument(); });
|
|
81
|
+
i0.ɵɵelementEnd();
|
|
82
|
+
} if (rf & 2) {
|
|
83
|
+
i0.ɵɵproperty("svgIcon", "axo_docx");
|
|
84
|
+
} }
|
|
85
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_13_Template(rf, ctx) { if (rf & 1) {
|
|
86
|
+
const _r30 = i0.ɵɵgetCurrentView();
|
|
87
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
88
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_13_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r30); const ctx_r29 = i0.ɵɵnextContext(2); return ctx_r29.downloadDocument(); });
|
|
89
|
+
i0.ɵɵelementEnd();
|
|
90
|
+
} if (rf & 2) {
|
|
91
|
+
i0.ɵɵproperty("svgIcon", "axo_html");
|
|
92
|
+
} }
|
|
93
|
+
function DocumentWidgetViewComponent_div_0_mat_icon_14_Template(rf, ctx) { if (rf & 1) {
|
|
94
|
+
const _r32 = i0.ɵɵgetCurrentView();
|
|
95
|
+
i0.ɵɵelementStart(0, "mat-icon", 10);
|
|
96
|
+
i0.ɵɵlistener("click", function DocumentWidgetViewComponent_div_0_mat_icon_14_Template_mat_icon_click_0_listener() { i0.ɵɵrestoreView(_r32); const ctx_r31 = i0.ɵɵnextContext(2); return ctx_r31.downloadDocument(); });
|
|
97
|
+
i0.ɵɵelementEnd();
|
|
98
|
+
} if (rf & 2) {
|
|
99
|
+
i0.ɵɵproperty("svgIcon", "axo_file");
|
|
100
|
+
} }
|
|
101
|
+
function DocumentWidgetViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
102
|
+
i0.ɵɵelementStart(0, "div", 2);
|
|
103
|
+
i0.ɵɵelementStart(1, "div", 3);
|
|
104
|
+
i0.ɵɵelement(2, "mat-icon", 4);
|
|
105
|
+
i0.ɵɵtemplate(3, DocumentWidgetViewComponent_div_0_span_3_Template, 4, 1, "span", 5);
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
i0.ɵɵelementContainerStart(4, 6);
|
|
108
|
+
i0.ɵɵtemplate(5, DocumentWidgetViewComponent_div_0_mat_icon_5_Template, 1, 1, "mat-icon", 7);
|
|
109
|
+
i0.ɵɵtemplate(6, DocumentWidgetViewComponent_div_0_mat_icon_6_Template, 1, 1, "mat-icon", 7);
|
|
110
|
+
i0.ɵɵtemplate(7, DocumentWidgetViewComponent_div_0_mat_icon_7_Template, 1, 1, "mat-icon", 7);
|
|
111
|
+
i0.ɵɵtemplate(8, DocumentWidgetViewComponent_div_0_mat_icon_8_Template, 1, 1, "mat-icon", 7);
|
|
112
|
+
i0.ɵɵtemplate(9, DocumentWidgetViewComponent_div_0_mat_icon_9_Template, 1, 1, "mat-icon", 7);
|
|
113
|
+
i0.ɵɵtemplate(10, DocumentWidgetViewComponent_div_0_mat_icon_10_Template, 1, 1, "mat-icon", 7);
|
|
114
|
+
i0.ɵɵtemplate(11, DocumentWidgetViewComponent_div_0_mat_icon_11_Template, 1, 1, "mat-icon", 7);
|
|
115
|
+
i0.ɵɵtemplate(12, DocumentWidgetViewComponent_div_0_mat_icon_12_Template, 1, 1, "mat-icon", 7);
|
|
116
|
+
i0.ɵɵtemplate(13, DocumentWidgetViewComponent_div_0_mat_icon_13_Template, 1, 1, "mat-icon", 7);
|
|
117
|
+
i0.ɵɵtemplate(14, DocumentWidgetViewComponent_div_0_mat_icon_14_Template, 1, 1, "mat-icon", 8);
|
|
118
|
+
i0.ɵɵelementContainerEnd();
|
|
119
|
+
i0.ɵɵelementEnd();
|
|
120
|
+
} if (rf & 2) {
|
|
121
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
122
|
+
i0.ɵɵadvance(3);
|
|
123
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
124
|
+
i0.ɵɵadvance(1);
|
|
125
|
+
i0.ɵɵproperty("ngSwitch", ctx_r0.extension);
|
|
126
|
+
i0.ɵɵadvance(1);
|
|
127
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.pdf);
|
|
128
|
+
i0.ɵɵadvance(1);
|
|
129
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.ppt);
|
|
130
|
+
i0.ɵɵadvance(1);
|
|
131
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.pptx);
|
|
132
|
+
i0.ɵɵadvance(1);
|
|
133
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.document);
|
|
134
|
+
i0.ɵɵadvance(1);
|
|
135
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.txt);
|
|
136
|
+
i0.ɵɵadvance(1);
|
|
137
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.xls);
|
|
138
|
+
i0.ɵɵadvance(1);
|
|
139
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.xlsx);
|
|
140
|
+
i0.ɵɵadvance(1);
|
|
141
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.docx);
|
|
142
|
+
i0.ɵɵadvance(1);
|
|
143
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r0.documentType.html);
|
|
144
|
+
} }
|
|
145
|
+
function DocumentWidgetViewComponent_div_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
146
|
+
i0.ɵɵelementStart(0, "span");
|
|
147
|
+
i0.ɵɵtext(1);
|
|
148
|
+
i0.ɵɵelementStart(2, "span", 9);
|
|
149
|
+
i0.ɵɵtext(3, ":");
|
|
150
|
+
i0.ɵɵelementEnd();
|
|
151
|
+
i0.ɵɵelementEnd();
|
|
152
|
+
} if (rf & 2) {
|
|
153
|
+
const ctx_r33 = i0.ɵɵnextContext(2);
|
|
154
|
+
i0.ɵɵadvance(1);
|
|
155
|
+
i0.ɵɵtextInterpolate(ctx_r33.widget.prompt);
|
|
156
|
+
} }
|
|
157
|
+
function DocumentWidgetViewComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
158
|
+
i0.ɵɵelementStart(0, "div", 11);
|
|
159
|
+
i0.ɵɵelementStart(1, "div", 12);
|
|
160
|
+
i0.ɵɵelement(2, "mat-icon", 13);
|
|
161
|
+
i0.ɵɵtemplate(3, DocumentWidgetViewComponent_div_1_span_3_Template, 4, 1, "span", 5);
|
|
162
|
+
i0.ɵɵelementEnd();
|
|
163
|
+
i0.ɵɵelementStart(4, "span", 14);
|
|
164
|
+
i0.ɵɵtext(5, "-");
|
|
165
|
+
i0.ɵɵelementEnd();
|
|
166
|
+
i0.ɵɵelementEnd();
|
|
167
|
+
} if (rf & 2) {
|
|
168
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
169
|
+
i0.ɵɵadvance(3);
|
|
170
|
+
i0.ɵɵproperty("ngIf", ctx_r1.section.showPrompt);
|
|
171
|
+
} }
|
|
172
|
+
export class DocumentWidgetViewComponent {
|
|
173
|
+
constructor() {
|
|
174
|
+
this.documentType = Object.assign({}, DocumentExtensionType);
|
|
175
|
+
}
|
|
176
|
+
ngOnInit() {
|
|
177
|
+
if (this.widget.values && !_.isEmpty(this.widget.values[0]?.path)) {
|
|
178
|
+
this.widgetValue = this.widget.values[0];
|
|
179
|
+
this.extension = this.widget.values[0].extension;
|
|
180
|
+
this.widgetValue.path = AxoUtils.removeSlashFromImageUrl(this.widget.values[0]?.path);
|
|
181
|
+
}
|
|
182
|
+
else if (this.widget.value && !_.isEmpty(this.widget.value[0]?.name)) {
|
|
183
|
+
this.widgetValue = this.widget.value[0];
|
|
184
|
+
this.widgetValue.name = AxoUtils.removeSlashFromImageUrl(this.widget.value[0]?.name);
|
|
185
|
+
this.extension = AxoUtils.getDocumentExtension(this.widgetValue.name);
|
|
186
|
+
this.widgetValue.path = '/images/media/app_data/' + this.widgetValue.name;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
downloadDocument() {
|
|
190
|
+
window.open(this.baseUrl + this.widgetValue.path);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
DocumentWidgetViewComponent.ɵfac = function DocumentWidgetViewComponent_Factory(t) { return new (t || DocumentWidgetViewComponent)(); };
|
|
194
|
+
DocumentWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DocumentWidgetViewComponent, selectors: [["lib-document-widget-view"]], inputs: { widget: "widget", baseUrl: "baseUrl" }, decls: 2, vars: 2, consts: [["class", "data-detail-info", 4, "ngIf"], ["class", "flex gap-3", 4, "ngIf"], [1, "data-detail-info"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_document", 1, "add-text"], [4, "ngIf"], [3, "ngSwitch"], ["class", "full-width h-5 w-4 cursor-pointer", 3, "svgIcon", "click", 4, "ngSwitchCase"], ["class", "full-width h-5 w-4 cursor-pointer", 3, "svgIcon", "click", 4, "ngSwitchDefault"], [1, "colon"], [1, "full-width", "h-5", "w-4", "cursor-pointer", 3, "svgIcon", "click"], [1, "flex", "gap-3"], [1, "data-detail-title", "flex", "m-0"], ["svgIcon", "axo_document", 1, "doc-icon"], [1, "flex", "justify-start", "items-center"]], template: function DocumentWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
195
|
+
i0.ɵɵtemplate(0, DocumentWidgetViewComponent_div_0_Template, 15, 11, "div", 0);
|
|
196
|
+
i0.ɵɵtemplate(1, DocumentWidgetViewComponent_div_1_Template, 6, 1, "div", 1);
|
|
197
|
+
} if (rf & 2) {
|
|
198
|
+
i0.ɵɵproperty("ngIf", ctx.widgetValue);
|
|
199
|
+
i0.ɵɵadvance(1);
|
|
200
|
+
i0.ɵɵproperty("ngIf", ctx.widgetValue === undefined);
|
|
201
|
+
} }, directives: [i1.NgIf, i2.MatIcon, i1.NgSwitch, i1.NgSwitchCase, i1.NgSwitchDefault], styles: ["lib-document-widget-view .doc-icon{height:18px;width:18px;min-width:18px;min-height:18px}\n"], encapsulation: 2 });
|
|
202
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DocumentWidgetViewComponent, [{
|
|
203
|
+
type: Component,
|
|
204
|
+
args: [{ selector: 'lib-document-widget-view', encapsulation: ViewEncapsulation.None, template: "<div class=\"data-detail-info\" *ngIf=\"widgetValue;\">\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_document\"></mat-icon>\n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n\n <ng-container [ngSwitch]=\"extension\">\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.pdf class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_pdf1'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.ppt class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_ppt'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.pptx class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_pptx'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.document\n class=\"full-width h-5 w-4 cursor-pointer\" [svgIcon]=\"'axo_doc'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.txt class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_txt'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.xls class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_xls'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.xlsx class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_xlsx'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.docx class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_docx'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchCase=documentType.html class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_html'\">\n </mat-icon>\n\n <mat-icon (click)=\"downloadDocument()\" *ngSwitchDefault class=\"full-width h-5 w-4 cursor-pointer\"\n [svgIcon]=\"'axo_file'\">\n </mat-icon>\n </ng-container>\n</div>\n\n\n <div class=\"flex gap-3\" *ngIf=\"widgetValue === undefined\">\n <div class=\"data-detail-title flex m-0\">\n <mat-icon class=\"doc-icon\" svgIcon=\"axo_document\"></mat-icon>\n <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <span class=\"flex justify-start items-center\">-</span>\n </div>\n\n", styles: ["lib-document-widget-view .doc-icon{height:18px;width:18px;min-width:18px;min-height:18px}\n"] }]
|
|
205
|
+
}], function () { return []; }, { widget: [{
|
|
206
|
+
type: Input
|
|
207
|
+
}], baseUrl: [{
|
|
208
|
+
type: Input
|
|
209
|
+
}] }); })();
|
|
210
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9jdW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvZG9jdW1lbnQtd2lkZ2V0LXZpZXcvZG9jdW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvZG9jdW1lbnQtd2lkZ2V0LXZpZXcvZG9jdW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDNUUsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLDRDQUE0QyxDQUFDO0FBQ3hFLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRCxPQUFPLENBQUMsTUFBTSxRQUFRLENBQUM7QUFDdkIsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sNENBQTRDLENBQUM7Ozs7O0lDRHZFLDRCQUFpQztJQUFBLFlBQWlCO0lBQUEsK0JBQW9CO0lBQUEsaUJBQUM7SUFBQSxpQkFBTztJQUFBLGlCQUFPOzs7SUFBcEQsZUFBaUI7SUFBakIsMENBQWlCOzs7O0lBS2xELG9DQUMyQjtJQURqQix3TEFBUywwQkFBa0IsSUFBQztJQUV0QyxpQkFBVzs7SUFEUCxvQ0FBc0I7Ozs7SUFHMUIsb0NBQzBCO0lBRGhCLHdMQUFTLDBCQUFrQixJQUFDO0lBRXRDLGlCQUFXOztJQURQLG1DQUFxQjs7OztJQUd6QixvQ0FDMkI7SUFEakIsd0xBQVMsMEJBQWtCLElBQUM7SUFFdEMsaUJBQVc7O0lBRFAsb0NBQXNCOzs7O0lBRzFCLG9DQUNvRTtJQUQxRCx3TEFBUywwQkFBa0IsSUFBQztJQUV0QyxpQkFBVzs7SUFEbUMsbUNBQXFCOzs7O0lBR25FLG9DQUMwQjtJQURoQix3TEFBUywwQkFBa0IsSUFBQztJQUV0QyxpQkFBVzs7SUFEUCxtQ0FBcUI7Ozs7SUFHekIsb0NBQzBCO0lBRGhCLHlMQUFTLDBCQUFrQixJQUFDO0lBRXRDLGlCQUFXOztJQURQLG1DQUFxQjs7OztJQUd6QixvQ0FDMkI7SUFEakIseUxBQVMsMEJBQWtCLElBQUM7SUFFdEMsaUJBQVc7O0lBRFAsb0NBQXNCOzs7O0lBRzFCLG9DQUMyQjtJQURqQix5TEFBUywwQkFBa0IsSUFBQztJQUV0QyxpQkFBVzs7SUFEUCxvQ0FBc0I7Ozs7SUFHMUIsb0NBQzJCO0lBRGpCLHlMQUFTLDBCQUFrQixJQUFDO0lBRXRDLGlCQUFXOztJQURQLG9DQUFzQjs7OztJQUcxQixvQ0FDMkI7SUFEakIseUxBQVMsMEJBQWtCLElBQUM7SUFFdEMsaUJBQVc7O0lBRFAsb0NBQXNCOzs7SUE3Q3RDLDhCQUFtRDtJQUMzQyw4QkFBNEM7SUFDeEMsOEJBQTZEO0lBQzdELG9GQUFxRjtJQUN6RixpQkFBTTtJQUVOLGdDQUFxQztJQUVqQyw0RkFFVztJQUVYLDRGQUVXO0lBRVgsNEZBRVc7SUFFWCw0RkFFVztJQUVYLDRGQUVXO0lBRVgsOEZBRVc7SUFFWCw4RkFFVztJQUVYLDhGQUVXO0lBRVgsOEZBRVc7SUFFWCw4RkFFVztJQUNmLDBCQUFlO0lBQ3ZCLGlCQUFNOzs7SUE3Q2EsZUFBd0I7SUFBeEIsZ0RBQXdCO0lBR3JCLGVBQXNCO0lBQXRCLDJDQUFzQjtJQUVRLGVBQTZCO0lBQTdCLHNEQUE2QjtJQUk3QixlQUE2QjtJQUE3QixzREFBNkI7SUFJN0IsZUFBOEI7SUFBOUIsdURBQThCO0lBSTlCLGVBQWtDO0lBQWxDLDJEQUFrQztJQUlsQyxlQUE2QjtJQUE3QixzREFBNkI7SUFJN0IsZUFBNkI7SUFBN0Isc0RBQTZCO0lBSTdCLGVBQThCO0lBQTlCLHVEQUE4QjtJQUk5QixlQUE4QjtJQUE5Qix1REFBOEI7SUFJOUIsZUFBOEI7SUFBOUIsdURBQThCOzs7SUFjdEUsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSwrQkFBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwyQ0FBaUI7OztJQUgxRCwrQkFBMEQ7SUFDdEQsK0JBQXdDO0lBQ3BDLCtCQUE2RDtJQUM3RCxvRkFBcUY7SUFDekYsaUJBQU07SUFDTixnQ0FBOEM7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQzFELGlCQUFNOzs7SUFIUyxlQUF3QjtJQUF4QixnREFBd0I7O0FEMUMzQyxNQUFNLE9BQU8sMkJBQTJCO0lBYXRDO1FBSkEsaUJBQVksR0FBUSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBRSxxQkFBcUIsQ0FBQyxDQUFDO0lBSTdDLENBQUM7SUFFakIsUUFBUTtRQUNOLElBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLElBQUksQ0FBRSxDQUFDLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxFQUFFO1lBQ2pFLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDekMsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDakQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLEdBQUcsUUFBUSxDQUFDLHVCQUF1QixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQ3ZGO2FBQUssSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssSUFBSSxDQUFFLENBQUMsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEVBQUU7WUFDdEUsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUN4QyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksR0FBRyxRQUFRLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7WUFDckYsSUFBSSxDQUFDLFNBQVMsR0FBRyxRQUFRLENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUN0RSxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksR0FBRyx5QkFBeUIsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQztTQUMzRTtJQUNILENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNwRCxDQUFDOztzR0E5QlUsMkJBQTJCOzhFQUEzQiwyQkFBMkI7UUNaeEMsOEVBZ0RNO1FBR0YsNEVBTU07O1FBekRxQixzQ0FBa0I7UUFtRHBCLGVBQStCO1FBQS9CLG9EQUErQjs7dUZEdkMvQywyQkFBMkI7Y0FOdkMsU0FBUzsyQkFDRSwwQkFBMEIsaUJBR3RCLGlCQUFpQixDQUFDLElBQUk7c0NBTzNCLE1BQU07a0JBQWQsS0FBSztZQUVHLE9BQU87a0JBQWYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEF4RG9jdW1lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvYXgtZG9jdW1lbnQnO1xuaW1wb3J0IHsgQXhvVXRpbHMgfSBmcm9tICcuLi8uLi8uLi8uLi9heG8tdXRpbHMvYXhvLXV0aWxzJztcbmltcG9ydCBfIGZyb20gJ2xvZGFzaCc7XG5pbXBvcnQgeyBEb2N1bWVudEV4dGVuc2lvblR5cGUgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL2NvbW1vbi93aWRnZXQtZW51bXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItZG9jdW1lbnQtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vZG9jdW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kb2N1bWVudC13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uOlZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgRG9jdW1lbnRXaWRnZXRWaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICAvKlxuICogd2lkZ2V0IG9iamVjdFxuICovXG4gIEBJbnB1dCgpIHdpZGdldDogQXhEb2N1bWVudDtcblxuICBASW5wdXQoKSBiYXNlVXJsOiBzdHJpbmc7XG5cbiAgZG9jdW1lbnRUeXBlOiBhbnkgPSBPYmplY3QuYXNzaWduKHt9LCBEb2N1bWVudEV4dGVuc2lvblR5cGUpO1xuICB3aWRnZXRWYWx1ZTogYW55O1xuICBleHRlbnNpb246YW55O1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgaWYodGhpcy53aWRnZXQudmFsdWVzICYmICEgXy5pc0VtcHR5KHRoaXMud2lkZ2V0LnZhbHVlc1swXT8ucGF0aCkgKXtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUgPSB0aGlzLndpZGdldC52YWx1ZXNbMF07XG4gICAgICB0aGlzLmV4dGVuc2lvbiA9IHRoaXMud2lkZ2V0LnZhbHVlc1swXS5leHRlbnNpb247XG4gICAgICB0aGlzLndpZGdldFZhbHVlLnBhdGggPSBBeG9VdGlscy5yZW1vdmVTbGFzaEZyb21JbWFnZVVybCh0aGlzLndpZGdldC52YWx1ZXNbMF0/LnBhdGgpO1xuICAgIH1lbHNlIGlmICh0aGlzLndpZGdldC52YWx1ZSAmJiAhIF8uaXNFbXB0eSh0aGlzLndpZGdldC52YWx1ZVswXT8ubmFtZSkgKXtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUgPSB0aGlzLndpZGdldC52YWx1ZVswXTtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUubmFtZSA9IEF4b1V0aWxzLnJlbW92ZVNsYXNoRnJvbUltYWdlVXJsKHRoaXMud2lkZ2V0LnZhbHVlWzBdPy5uYW1lKTtcbiAgICAgIHRoaXMuZXh0ZW5zaW9uID0gQXhvVXRpbHMuZ2V0RG9jdW1lbnRFeHRlbnNpb24odGhpcy53aWRnZXRWYWx1ZS5uYW1lKTtcbiAgICAgIHRoaXMud2lkZ2V0VmFsdWUucGF0aCA9ICcvaW1hZ2VzL21lZGlhL2FwcF9kYXRhLycgKyB0aGlzLndpZGdldFZhbHVlLm5hbWU7XG4gICAgfVxuICB9XG5cbiAgZG93bmxvYWREb2N1bWVudCgpe1xuICAgIHdpbmRvdy5vcGVuKHRoaXMuYmFzZVVybCArIHRoaXMud2lkZ2V0VmFsdWUucGF0aCk7XG4gIH1cblxufVxuIiwiPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLWluZm9cIiAqbmdJZj1cIndpZGdldFZhbHVlO1wiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCB0ZXh0LXNtXCI+XG4gICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fZG9jdW1lbnRcIj48L21hdC1pY29uPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJzZWN0aW9uLnNob3dQcm9tcHRcIj57e3dpZGdldC5wcm9tcHR9fTxzcGFuIGNsYXNzPVwiY29sb25cIj46PC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPG5nLWNvbnRhaW5lciBbbmdTd2l0Y2hdPVwiZXh0ZW5zaW9uXCI+XG5cbiAgICAgICAgICAgIDxtYXQtaWNvbiAoY2xpY2spPVwiZG93bmxvYWREb2N1bWVudCgpXCIgKm5nU3dpdGNoQ2FzZT1kb2N1bWVudFR5cGUucGRmIGNsYXNzPVwiZnVsbC13aWR0aCBoLTUgdy00IGN1cnNvci1wb2ludGVyXCJcbiAgICAgICAgICAgICAgICBbc3ZnSWNvbl09XCInYXhvX3BkZjEnXCI+XG4gICAgICAgICAgICA8L21hdC1pY29uPlxuXG4gICAgICAgICAgICA8bWF0LWljb24gKGNsaWNrKT1cImRvd25sb2FkRG9jdW1lbnQoKVwiICpuZ1N3aXRjaENhc2U9ZG9jdW1lbnRUeXBlLnBwdCBjbGFzcz1cImZ1bGwtd2lkdGggaC01IHctNCBjdXJzb3ItcG9pbnRlclwiXG4gICAgICAgICAgICAgICAgW3N2Z0ljb25dPVwiJ2F4b19wcHQnXCI+XG4gICAgICAgICAgICA8L21hdC1pY29uPlxuXG4gICAgICAgICAgICA8bWF0LWljb24gKGNsaWNrKT1cImRvd25sb2FkRG9jdW1lbnQoKVwiICpuZ1N3aXRjaENhc2U9ZG9jdW1lbnRUeXBlLnBwdHggY2xhc3M9XCJmdWxsLXdpZHRoIGgtNSB3LTQgY3Vyc29yLXBvaW50ZXJcIlxuICAgICAgICAgICAgICAgIFtzdmdJY29uXT1cIidheG9fcHB0eCdcIj5cbiAgICAgICAgICAgIDwvbWF0LWljb24+XG5cbiAgICAgICAgICAgIDxtYXQtaWNvbiAoY2xpY2spPVwiZG93bmxvYWREb2N1bWVudCgpXCIgKm5nU3dpdGNoQ2FzZT1kb2N1bWVudFR5cGUuZG9jdW1lbnRcbiAgICAgICAgICAgICAgICBjbGFzcz1cImZ1bGwtd2lkdGggaC01IHctNCBjdXJzb3ItcG9pbnRlclwiIFtzdmdJY29uXT1cIidheG9fZG9jJ1wiPlxuICAgICAgICAgICAgPC9tYXQtaWNvbj5cblxuICAgICAgICAgICAgPG1hdC1pY29uIChjbGljayk9XCJkb3dubG9hZERvY3VtZW50KClcIiAqbmdTd2l0Y2hDYXNlPWRvY3VtZW50VHlwZS50eHQgY2xhc3M9XCJmdWxsLXdpZHRoIGgtNSB3LTQgY3Vyc29yLXBvaW50ZXJcIlxuICAgICAgICAgICAgICAgIFtzdmdJY29uXT1cIidheG9fdHh0J1wiPlxuICAgICAgICAgICAgPC9tYXQtaWNvbj5cblxuICAgICAgICAgICAgPG1hdC1pY29uIChjbGljayk9XCJkb3dubG9hZERvY3VtZW50KClcIiAqbmdTd2l0Y2hDYXNlPWRvY3VtZW50VHlwZS54bHMgY2xhc3M9XCJmdWxsLXdpZHRoIGgtNSB3LTQgY3Vyc29yLXBvaW50ZXJcIlxuICAgICAgICAgICAgICAgIFtzdmdJY29uXT1cIidheG9feGxzJ1wiPlxuICAgICAgICAgICAgPC9tYXQtaWNvbj5cblxuICAgICAgICAgICAgPG1hdC1pY29uIChjbGljayk9XCJkb3dubG9hZERvY3VtZW50KClcIiAqbmdTd2l0Y2hDYXNlPWRvY3VtZW50VHlwZS54bHN4IGNsYXNzPVwiZnVsbC13aWR0aCBoLTUgdy00IGN1cnNvci1wb2ludGVyXCJcbiAgICAgICAgICAgICAgICBbc3ZnSWNvbl09XCInYXhvX3hsc3gnXCI+XG4gICAgICAgICAgICA8L21hdC1pY29uPlxuXG4gICAgICAgICAgICA8bWF0LWljb24gKGNsaWNrKT1cImRvd25sb2FkRG9jdW1lbnQoKVwiICpuZ1N3aXRjaENhc2U9ZG9jdW1lbnRUeXBlLmRvY3ggY2xhc3M9XCJmdWxsLXdpZHRoIGgtNSB3LTQgY3Vyc29yLXBvaW50ZXJcIlxuICAgICAgICAgICAgICAgIFtzdmdJY29uXT1cIidheG9fZG9jeCdcIj5cbiAgICAgICAgICAgIDwvbWF0LWljb24+XG5cbiAgICAgICAgICAgIDxtYXQtaWNvbiAoY2xpY2spPVwiZG93bmxvYWREb2N1bWVudCgpXCIgKm5nU3dpdGNoQ2FzZT1kb2N1bWVudFR5cGUuaHRtbCBjbGFzcz1cImZ1bGwtd2lkdGggaC01IHctNCBjdXJzb3ItcG9pbnRlclwiXG4gICAgICAgICAgICAgICAgW3N2Z0ljb25dPVwiJ2F4b19odG1sJ1wiPlxuICAgICAgICAgICAgPC9tYXQtaWNvbj5cblxuICAgICAgICAgICAgPG1hdC1pY29uIChjbGljayk9XCJkb3dubG9hZERvY3VtZW50KClcIiAqbmdTd2l0Y2hEZWZhdWx0IGNsYXNzPVwiZnVsbC13aWR0aCBoLTUgdy00IGN1cnNvci1wb2ludGVyXCJcbiAgICAgICAgICAgICAgICBbc3ZnSWNvbl09XCInYXhvX2ZpbGUnXCI+XG4gICAgICAgICAgICA8L21hdC1pY29uPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuXG5cbiAgICA8ZGl2IGNsYXNzPVwiZmxleCBnYXAtM1wiICpuZ0lmPVwid2lkZ2V0VmFsdWUgPT09IHVuZGVmaW5lZFwiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtdGl0bGUgZmxleCBtLTBcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImRvYy1pY29uXCIgc3ZnSWNvbj1cImF4b19kb2N1bWVudFwiPjwvbWF0LWljb24+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cInNlY3Rpb24uc2hvd1Byb21wdFwiPnt7d2lkZ2V0LnByb21wdH19PHNwYW4gY2xhc3M9XCJjb2xvblwiPjo8L3NwYW4+PC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJmbGV4IGp1c3RpZnktc3RhcnQgaXRlbXMtY2VudGVyXCI+LTwvc3Bhbj5cbiAgICA8L2Rpdj5cblxuIl19
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { ApplyGeoFenceWidgetViewComponent } from './apply-geo-fence-widget-view/apply-geo-fence-widget-view.component';
|
|
2
|
+
import { AudioWidgetViewComponent } from './audio-widget-view/audio-widget-view.component';
|
|
3
|
+
import { AutoNumberWidgetViewComponent } from './auto-number-widget-view/auto-number-widget-view.component';
|
|
4
|
+
import { BarCodeWidgetViewComponent } from './bar-code-widget-view/bar-code-widget-view.component';
|
|
5
|
+
import { ChildRecordsWidgetViewComponent } from './child-records-widget-view/child-records-widget-view.component';
|
|
6
|
+
import { ChoiceListWidgetViewComponent } from './choice-list-widget-view/choice-list-widget-view.component';
|
|
7
|
+
import { CounterWidgetViewComponent } from './counter-widget-view/counter-widget-view.component';
|
|
8
|
+
import { DateTimeWidgetViewComponent } from './date-time-widget-view/date-time-widget-view.component';
|
|
9
|
+
import { DocumentWidgetViewComponent } from './document-widget-view/document-widget-view.component';
|
|
10
|
+
import { FormulaWidgetViewComponent } from './formula-widget-view/formula-widget-view.component';
|
|
11
|
+
import { GeoFenceWidgetViewComponent } from './geo-fence-widget-view/geo-fence-widget-view.component';
|
|
12
|
+
import { GpsWidgetViewComponent } from './gps-widget-view/gps-widget-view.component';
|
|
13
|
+
import { GroupHeaderWidgetViewComponent } from './group-header-widget-view/group-header-widget-view.component';
|
|
14
|
+
import { ImageWidgetViewComponent } from './image-widget-view/image-widget-view.component';
|
|
15
|
+
import { LanguageWidgetViewComponent } from './language-widget-view/language-widget-view.component';
|
|
16
|
+
import { QrCodeWidgetViewComponent } from './qr-code-widget-view/qr-code-widget-view.component';
|
|
17
|
+
import { SignatureWidgetViewComponent } from './signature-widget-view/signature-widget-view.component';
|
|
18
|
+
import { StaticMediaWidgetViewComponent } from './static-media-widget-view/static-media-widget-view.component';
|
|
19
|
+
import { StopWatchWidgetViewComponent } from './stop-watch-widget-view/stop-watch-widget-view.component';
|
|
20
|
+
import { SubFormWidgetViewComponent } from './sub-form-widget-view/sub-form-widget-view.component';
|
|
21
|
+
import { TextBoxWidgetViewComponent } from './text-box-widget-view/text-box-widget-view.component';
|
|
22
|
+
import { TimeStampWidgetViewComponent } from './time-stamp-widget-view/time-stamp-widget-view.component';
|
|
23
|
+
import { ToggleWidgetViewComponent } from './toggle-widget-view/toggle-widget-view.component';
|
|
24
|
+
import { UniqueIdWidgetViewComponent } from './unique-id-widget-view/unique-id-widget-view.component';
|
|
25
|
+
import { VerificationWidgetViewComponent } from './verification-widget-view/verification-widget-view.component';
|
|
26
|
+
import { VideoWidgetViewComponent } from './video-widget-view/video-widget-view.component';
|
|
27
|
+
import { WebLinkWidgetViewComponent } from './web-link-widget-view/web-link-widget-view.component';
|
|
28
|
+
import { WidgetType } from '../../../forms/page/common/widget-enums';
|
|
29
|
+
export class WidgetViewTypeHandler {
|
|
30
|
+
static getWidgetComponent(type) {
|
|
31
|
+
switch (type) {
|
|
32
|
+
case WidgetType.textBox:
|
|
33
|
+
return TextBoxWidgetViewComponent;
|
|
34
|
+
case WidgetType.autoNumber:
|
|
35
|
+
return AutoNumberWidgetViewComponent;
|
|
36
|
+
case WidgetType.staticMedia:
|
|
37
|
+
return StaticMediaWidgetViewComponent;
|
|
38
|
+
case WidgetType.groupHeader:
|
|
39
|
+
return GroupHeaderWidgetViewComponent;
|
|
40
|
+
case WidgetType.choiceList:
|
|
41
|
+
return ChoiceListWidgetViewComponent;
|
|
42
|
+
case WidgetType.imageCapture:
|
|
43
|
+
return ImageWidgetViewComponent;
|
|
44
|
+
case WidgetType.document:
|
|
45
|
+
return DocumentWidgetViewComponent;
|
|
46
|
+
case WidgetType.signature:
|
|
47
|
+
return SignatureWidgetViewComponent;
|
|
48
|
+
case WidgetType.captureGpsLocation:
|
|
49
|
+
return GpsWidgetViewComponent;
|
|
50
|
+
case WidgetType.dateTime:
|
|
51
|
+
return DateTimeWidgetViewComponent;
|
|
52
|
+
case WidgetType.timeStamp:
|
|
53
|
+
return TimeStampWidgetViewComponent;
|
|
54
|
+
case WidgetType.toggle:
|
|
55
|
+
return ToggleWidgetViewComponent;
|
|
56
|
+
case WidgetType.barCodeScanner:
|
|
57
|
+
return BarCodeWidgetViewComponent;
|
|
58
|
+
case WidgetType.qrCodeScanner:
|
|
59
|
+
return QrCodeWidgetViewComponent;
|
|
60
|
+
case WidgetType.counter:
|
|
61
|
+
return CounterWidgetViewComponent;
|
|
62
|
+
case WidgetType.formula:
|
|
63
|
+
return FormulaWidgetViewComponent;
|
|
64
|
+
case WidgetType.uniqueId:
|
|
65
|
+
return UniqueIdWidgetViewComponent;
|
|
66
|
+
case WidgetType.audio:
|
|
67
|
+
return AudioWidgetViewComponent;
|
|
68
|
+
case WidgetType.video:
|
|
69
|
+
return VideoWidgetViewComponent;
|
|
70
|
+
case WidgetType.subForm:
|
|
71
|
+
return SubFormWidgetViewComponent;
|
|
72
|
+
case WidgetType.childRecords:
|
|
73
|
+
return ChildRecordsWidgetViewComponent;
|
|
74
|
+
case WidgetType.verification:
|
|
75
|
+
return VerificationWidgetViewComponent;
|
|
76
|
+
case WidgetType.language:
|
|
77
|
+
return LanguageWidgetViewComponent;
|
|
78
|
+
case WidgetType.geoFence:
|
|
79
|
+
return GeoFenceWidgetViewComponent;
|
|
80
|
+
case WidgetType.applyGeoFence:
|
|
81
|
+
return ApplyGeoFenceWidgetViewComponent;
|
|
82
|
+
//case WidgetType.payment:
|
|
83
|
+
// return PaymentWidgetViewComponent;
|
|
84
|
+
case WidgetType.stopWatch:
|
|
85
|
+
return StopWatchWidgetViewComponent;
|
|
86
|
+
case WidgetType.hyperLink:
|
|
87
|
+
return WebLinkWidgetViewComponent;
|
|
88
|
+
default:
|
|
89
|
+
return TextBoxWidgetViewComponent;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1vYmplY3Qtd2lkZ2V0LXR5cGUtaGFuZGxlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1jb21tb24tdWktbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2Zvcm0tb2JqZWN0LXdpZGdldC10eXBlLWhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdDQUFnQyxFQUFFLE1BQU0scUVBQXFFLENBQUM7QUFDdkgsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDM0YsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sNkRBQTZELENBQUM7QUFDNUcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDbkcsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0saUVBQWlFLENBQUM7QUFDbEgsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sNkRBQTZELENBQUM7QUFDNUcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0scURBQXFELENBQUM7QUFDakcsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0seURBQXlELENBQUM7QUFDdEcsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDcEcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0scURBQXFELENBQUM7QUFDakcsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0seURBQXlELENBQUM7QUFDdEcsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDckYsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sK0RBQStELENBQUM7QUFDL0csT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDM0YsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFFcEcsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0scURBQXFELENBQUM7QUFDaEcsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0seURBQXlELENBQUM7QUFDdkcsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sK0RBQStELENBQUM7QUFDL0csT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sMkRBQTJELENBQUM7QUFDekcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDbkcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDbkcsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sMkRBQTJELENBQUM7QUFDekcsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDOUYsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0seURBQXlELENBQUM7QUFDdEcsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sK0RBQStELENBQUM7QUFDaEgsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDM0YsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDbkcsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHlDQUF5QyxDQUFDO0FBRXJFLE1BQU0sT0FBTyxxQkFBcUI7SUFFdkIsTUFBTSxDQUFDLGtCQUFrQixDQUFDLElBQVk7UUFDekMsUUFBTyxJQUFJLEVBQUM7WUFDUixLQUFLLFVBQVUsQ0FBQyxPQUFPO2dCQUNuQixPQUFPLDBCQUEwQixDQUFDO1lBQ3RDLEtBQUssVUFBVSxDQUFDLFVBQVU7Z0JBQ3RCLE9BQU8sNkJBQTZCLENBQUM7WUFDekMsS0FBSyxVQUFVLENBQUMsV0FBVztnQkFDdkIsT0FBTyw4QkFBOEIsQ0FBQztZQUMxQyxLQUFLLFVBQVUsQ0FBQyxXQUFXO2dCQUN2QixPQUFPLDhCQUE4QixDQUFDO1lBQzFDLEtBQUssVUFBVSxDQUFDLFVBQVU7Z0JBQ3RCLE9BQU8sNkJBQTZCLENBQUM7WUFDekMsS0FBSyxVQUFVLENBQUMsWUFBWTtnQkFDeEIsT0FBUSx3QkFBd0IsQ0FBQztZQUNyQyxLQUFLLFVBQVUsQ0FBQyxRQUFRO2dCQUNwQixPQUFPLDJCQUEyQixDQUFDO1lBQ3ZDLEtBQUssVUFBVSxDQUFDLFNBQVM7Z0JBQ3JCLE9BQU8sNEJBQTRCLENBQUM7WUFDeEMsS0FBSyxVQUFVLENBQUMsa0JBQWtCO2dCQUM5QixPQUFPLHNCQUFzQixDQUFDO1lBQ2xDLEtBQUssVUFBVSxDQUFDLFFBQVE7Z0JBQ3BCLE9BQU8sMkJBQTJCLENBQUM7WUFDdkMsS0FBSyxVQUFVLENBQUMsU0FBUztnQkFDckIsT0FBTyw0QkFBNEIsQ0FBQztZQUN4QyxLQUFLLFVBQVUsQ0FBQyxNQUFNO2dCQUNsQixPQUFPLHlCQUF5QixDQUFDO1lBQ3JDLEtBQUssVUFBVSxDQUFDLGNBQWM7Z0JBQzFCLE9BQU8sMEJBQTBCLENBQUM7WUFDdEMsS0FBSyxVQUFVLENBQUMsYUFBYTtnQkFDekIsT0FBTyx5QkFBeUIsQ0FBQztZQUNyQyxLQUFLLFVBQVUsQ0FBQyxPQUFPO2dCQUNuQixPQUFPLDBCQUEwQixDQUFDO1lBQ3RDLEtBQUssVUFBVSxDQUFDLE9BQU87Z0JBQ25CLE9BQU8sMEJBQTBCLENBQUM7WUFDdEMsS0FBSyxVQUFVLENBQUMsUUFBUTtnQkFDcEIsT0FBTywyQkFBMkIsQ0FBQztZQUN2QyxLQUFLLFVBQVUsQ0FBQyxLQUFLO2dCQUNqQixPQUFPLHdCQUF3QixDQUFDO1lBQ3BDLEtBQUssVUFBVSxDQUFDLEtBQUs7Z0JBQ2pCLE9BQU8sd0JBQXdCLENBQUM7WUFDcEMsS0FBSyxVQUFVLENBQUMsT0FBTztnQkFDbkIsT0FBTywwQkFBMEIsQ0FBQztZQUN0QyxLQUFLLFVBQVUsQ0FBQyxZQUFZO2dCQUN4QixPQUFPLCtCQUErQixDQUFDO1lBQzNDLEtBQUssVUFBVSxDQUFDLFlBQVk7Z0JBQ3hCLE9BQU8sK0JBQStCLENBQUM7WUFDM0MsS0FBSyxVQUFVLENBQUMsUUFBUTtnQkFDcEIsT0FBTywyQkFBMkIsQ0FBQztZQUN2QyxLQUFLLFVBQVUsQ0FBQyxRQUFRO2dCQUNwQixPQUFPLDJCQUEyQixDQUFDO1lBQ3ZDLEtBQUssVUFBVSxDQUFDLGFBQWE7Z0JBQ3pCLE9BQU8sZ0NBQWdDLENBQUM7WUFDM0MsMEJBQTBCO1lBQzNCLG9EQUFvRDtZQUNwRCxLQUFLLFVBQVUsQ0FBQyxTQUFTO2dCQUNyQixPQUFPLDRCQUE0QixDQUFDO1lBQ3hDLEtBQUssVUFBVSxDQUFDLFNBQVM7Z0JBQ3JCLE9BQU8sMEJBQTBCLENBQUM7WUFDdEM7Z0JBQ0ksT0FBTywwQkFBMEIsQ0FBQztTQUN6QztJQUNMLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFwcGx5R2VvRmVuY2VXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9hcHBseS1nZW8tZmVuY2Utd2lkZ2V0LXZpZXcvYXBwbHktZ2VvLWZlbmNlLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBdWRpb1dpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2F1ZGlvLXdpZGdldC12aWV3L2F1ZGlvLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBdXRvTnVtYmVyV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vYXV0by1udW1iZXItd2lkZ2V0LXZpZXcvYXV0by1udW1iZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IEJhckNvZGVXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9iYXItY29kZS13aWRnZXQtdmlldy9iYXItY29kZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2hpbGRSZWNvcmRzV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vY2hpbGQtcmVjb3Jkcy13aWRnZXQtdmlldy9jaGlsZC1yZWNvcmRzLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDaG9pY2VMaXN0V2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vY2hvaWNlLWxpc3Qtd2lkZ2V0LXZpZXcvY2hvaWNlLWxpc3Qtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IENvdW50ZXJXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9jb3VudGVyLXdpZGdldC12aWV3L2NvdW50ZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IERhdGVUaW1lV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vZGF0ZS10aW1lLXdpZGdldC12aWV3L2RhdGUtdGltZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRG9jdW1lbnRXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9kb2N1bWVudC13aWRnZXQtdmlldy9kb2N1bWVudC13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRm9ybXVsYVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2Zvcm11bGEtd2lkZ2V0LXZpZXcvZm9ybXVsYS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgR2VvRmVuY2VXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9nZW8tZmVuY2Utd2lkZ2V0LXZpZXcvZ2VvLWZlbmNlLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBHcHNXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9ncHMtd2lkZ2V0LXZpZXcvZ3BzLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBHcm91cEhlYWRlcldpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2dyb3VwLWhlYWRlci13aWRnZXQtdmlldy9ncm91cC1oZWFkZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IEltYWdlV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vaW1hZ2Utd2lkZ2V0LXZpZXcvaW1hZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IExhbmd1YWdlV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vbGFuZ3VhZ2Utd2lkZ2V0LXZpZXcvbGFuZ3VhZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFBheW1lbnRXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9wYXltZW50LXdpZGdldC12aWV3L3BheW1lbnQtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFFyQ29kZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL3FyLWNvZGUtd2lkZ2V0LXZpZXcvcXItY29kZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU2lnbmF0dXJlV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vc2lnbmF0dXJlLXdpZGdldC12aWV3L3NpZ25hdHVyZS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgU3RhdGljTWVkaWFXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9zdGF0aWMtbWVkaWEtd2lkZ2V0LXZpZXcvc3RhdGljLW1lZGlhLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTdG9wV2F0Y2hXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9zdG9wLXdhdGNoLXdpZGdldC12aWV3L3N0b3Atd2F0Y2gtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFN1YkZvcm1XaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9zdWItZm9ybS13aWRnZXQtdmlldy9zdWItZm9ybS13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGV4dEJveFdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL3RleHQtYm94LXdpZGdldC12aWV3L3RleHQtYm94LXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBUaW1lU3RhbXBXaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi90aW1lLXN0YW1wLXdpZGdldC12aWV3L3RpbWUtc3RhbXAtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFRvZ2dsZVdpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL3RvZ2dsZS13aWRnZXQtdmlldy90b2dnbGUtd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IFVuaXF1ZUlkV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vdW5pcXVlLWlkLXdpZGdldC12aWV3L3VuaXF1ZS1pZC13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVmVyaWZpY2F0aW9uV2lkZ2V0Vmlld0NvbXBvbmVudCB9IGZyb20gJy4vdmVyaWZpY2F0aW9uLXdpZGdldC12aWV3L3ZlcmlmaWNhdGlvbi13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVmlkZW9XaWRnZXRWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi92aWRlby13aWRnZXQtdmlldy92aWRlby13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHsgV2ViTGlua1dpZGdldFZpZXdDb21wb25lbnQgfSBmcm9tICcuL3dlYi1saW5rLXdpZGdldC12aWV3L3dlYi1saW5rLXdpZGdldC12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBXaWRnZXRUeXBlIH0gZnJvbSAnLi4vLi4vLi4vZm9ybXMvcGFnZS9jb21tb24vd2lkZ2V0LWVudW1zJztcblxuZXhwb3J0IGNsYXNzIFdpZGdldFZpZXdUeXBlSGFuZGxlcntcblxuICAgIHB1YmxpYyBzdGF0aWMgZ2V0V2lkZ2V0Q29tcG9uZW50KHR5cGU6IHN0cmluZyk6IGFueSB7XG4gICAgICAgIHN3aXRjaCh0eXBlKXtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS50ZXh0Qm94OlxuICAgICAgICAgICAgICAgIHJldHVybiBUZXh0Qm94V2lkZ2V0Vmlld0NvbXBvbmVudDtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS5hdXRvTnVtYmVyOlxuICAgICAgICAgICAgICAgIHJldHVybiBBdXRvTnVtYmVyV2lkZ2V0Vmlld0NvbXBvbmVudDtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS5zdGF0aWNNZWRpYTpcbiAgICAgICAgICAgICAgICByZXR1cm4gU3RhdGljTWVkaWFXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLmdyb3VwSGVhZGVyOlxuICAgICAgICAgICAgICAgIHJldHVybiBHcm91cEhlYWRlcldpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuY2hvaWNlTGlzdDpcbiAgICAgICAgICAgICAgICByZXR1cm4gQ2hvaWNlTGlzdFdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuaW1hZ2VDYXB0dXJlOlxuICAgICAgICAgICAgICAgIHJldHVybiAgSW1hZ2VXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLmRvY3VtZW50OlxuICAgICAgICAgICAgICAgIHJldHVybiBEb2N1bWVudFdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuc2lnbmF0dXJlOlxuICAgICAgICAgICAgICAgIHJldHVybiBTaWduYXR1cmVXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLmNhcHR1cmVHcHNMb2NhdGlvbjpcbiAgICAgICAgICAgICAgICByZXR1cm4gR3BzV2lkZ2V0Vmlld0NvbXBvbmVudDtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS5kYXRlVGltZTpcbiAgICAgICAgICAgICAgICByZXR1cm4gRGF0ZVRpbWVXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLnRpbWVTdGFtcDpcbiAgICAgICAgICAgICAgICByZXR1cm4gVGltZVN0YW1wV2lkZ2V0Vmlld0NvbXBvbmVudDtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS50b2dnbGU6XG4gICAgICAgICAgICAgICAgcmV0dXJuIFRvZ2dsZVdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuYmFyQ29kZVNjYW5uZXI6XG4gICAgICAgICAgICAgICAgcmV0dXJuIEJhckNvZGVXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLnFyQ29kZVNjYW5uZXI6XG4gICAgICAgICAgICAgICAgcmV0dXJuIFFyQ29kZVdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuY291bnRlcjpcbiAgICAgICAgICAgICAgICByZXR1cm4gQ291bnRlcldpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuZm9ybXVsYTpcbiAgICAgICAgICAgICAgICByZXR1cm4gRm9ybXVsYVdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUudW5pcXVlSWQ6XG4gICAgICAgICAgICAgICAgcmV0dXJuIFVuaXF1ZUlkV2lkZ2V0Vmlld0NvbXBvbmVudDtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS5hdWRpbzpcbiAgICAgICAgICAgICAgICByZXR1cm4gQXVkaW9XaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLnZpZGVvOlxuICAgICAgICAgICAgICAgIHJldHVybiBWaWRlb1dpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuc3ViRm9ybTpcbiAgICAgICAgICAgICAgICByZXR1cm4gU3ViRm9ybVdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuY2hpbGRSZWNvcmRzOlxuICAgICAgICAgICAgICAgIHJldHVybiBDaGlsZFJlY29yZHNXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLnZlcmlmaWNhdGlvbjpcbiAgICAgICAgICAgICAgICByZXR1cm4gVmVyaWZpY2F0aW9uV2lkZ2V0Vmlld0NvbXBvbmVudDtcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS5sYW5ndWFnZTpcbiAgICAgICAgICAgICAgICByZXR1cm4gTGFuZ3VhZ2VXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICAgICAgY2FzZSBXaWRnZXRUeXBlLmdlb0ZlbmNlOlxuICAgICAgICAgICAgICAgIHJldHVybiBHZW9GZW5jZVdpZGdldFZpZXdDb21wb25lbnQ7XG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuYXBwbHlHZW9GZW5jZTpcbiAgICAgICAgICAgICAgICByZXR1cm4gQXBwbHlHZW9GZW5jZVdpZGdldFZpZXdDb21wb25lbnQ7IFxuICAgICAgICAgICAgIC8vY2FzZSBXaWRnZXRUeXBlLnBheW1lbnQ6XG4gICAgICAgICAgICAvLyAgICAgcmV0dXJuIFBheW1lbnRXaWRnZXRWaWV3Q29tcG9uZW50OyAgICAgICAgICAgXG4gICAgICAgICAgICBjYXNlIFdpZGdldFR5cGUuc3RvcFdhdGNoOlxuICAgICAgICAgICAgICAgIHJldHVybiBTdG9wV2F0Y2hXaWRnZXRWaWV3Q29tcG9uZW50OyBcbiAgICAgICAgICAgIGNhc2UgV2lkZ2V0VHlwZS5oeXBlckxpbms6XG4gICAgICAgICAgICAgICAgcmV0dXJuIFdlYkxpbmtXaWRnZXRWaWV3Q29tcG9uZW50OyAgICAgICAgICAgICAgICAgICAgICAgICBcbiAgICAgICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgICAgICAgcmV0dXJuIFRleHRCb3hXaWRnZXRWaWV3Q29tcG9uZW50O1xuICAgICAgICB9XG4gICAgfVxufVxuIl19
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Component, ComponentFactoryResolver, Input, ViewChild } from '@angular/core';
|
|
2
|
+
import { SectionField } from '../../../forms/page/data-detail-view/section-field';
|
|
3
|
+
import { WidgetViewTypeHandler } from './form-object-widget-type-handler';
|
|
4
|
+
import { FormObjectWidgetViewDirective } from './form-object-widgets-view.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./form-object-widgets-view.directive";
|
|
7
|
+
function FormObjectWidgetsViewComponent_ng_template_0_Template(rf, ctx) { }
|
|
8
|
+
export class FormObjectWidgetsViewComponent {
|
|
9
|
+
constructor(componentFactoryResolver) {
|
|
10
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
11
|
+
}
|
|
12
|
+
ngOnInit() {
|
|
13
|
+
/*
|
|
14
|
+
* Component Factory Resolver for widget
|
|
15
|
+
*/
|
|
16
|
+
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(WidgetViewTypeHandler.getWidgetComponent(this.section.widget.type));
|
|
17
|
+
const viewContainerRef = this.widgetsHost.viewContainerRef;
|
|
18
|
+
viewContainerRef.clear();
|
|
19
|
+
const componentRef = viewContainerRef.createComponent(componentFactory);
|
|
20
|
+
componentRef.instance.widget = this.section.widget;
|
|
21
|
+
componentRef.instance.section = this.section;
|
|
22
|
+
componentRef.instance.baseUrl = this.baseUrl;
|
|
23
|
+
componentRef.instance.axonatorX1Url = this.axonatorX1Url;
|
|
24
|
+
componentRef.instance.formObjectId = this.formObjectId;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* On changes
|
|
28
|
+
*
|
|
29
|
+
* @param changes
|
|
30
|
+
*/
|
|
31
|
+
ngOnChanges(changes) {
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
FormObjectWidgetsViewComponent.ɵfac = function FormObjectWidgetsViewComponent_Factory(t) { return new (t || FormObjectWidgetsViewComponent)(i0.ɵɵdirectiveInject(i0.ComponentFactoryResolver)); };
|
|
35
|
+
FormObjectWidgetsViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormObjectWidgetsViewComponent, selectors: [["app-form-object-widgets-view"]], viewQuery: function FormObjectWidgetsViewComponent_Query(rf, ctx) { if (rf & 1) {
|
|
36
|
+
i0.ɵɵviewQuery(FormObjectWidgetViewDirective, 7);
|
|
37
|
+
} if (rf & 2) {
|
|
38
|
+
let _t;
|
|
39
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.widgetsHost = _t.first);
|
|
40
|
+
} }, inputs: { baseUrl: "baseUrl", section: "section", axonatorX1Url: "axonatorX1Url", formObjectId: "formObjectId" }, features: [i0.ɵɵNgOnChangesFeature], decls: 1, vars: 0, consts: [["widgetsHost", ""]], template: function FormObjectWidgetsViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
41
|
+
i0.ɵɵtemplate(0, FormObjectWidgetsViewComponent_ng_template_0_Template, 0, 0, "ng-template", 0);
|
|
42
|
+
} }, directives: [i1.FormObjectWidgetViewDirective], styles: [""] });
|
|
43
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormObjectWidgetsViewComponent, [{
|
|
44
|
+
type: Component,
|
|
45
|
+
args: [{ selector: 'app-form-object-widgets-view', template: "<ng-template widgetsHost ></ng-template>\n\n", styles: [""] }]
|
|
46
|
+
}], function () { return [{ type: i0.ComponentFactoryResolver }]; }, { widgetsHost: [{
|
|
47
|
+
type: ViewChild,
|
|
48
|
+
args: [FormObjectWidgetViewDirective, { static: true }]
|
|
49
|
+
}], baseUrl: [{
|
|
50
|
+
type: Input
|
|
51
|
+
}], section: [{
|
|
52
|
+
type: Input
|
|
53
|
+
}], axonatorX1Url: [{
|
|
54
|
+
type: Input
|
|
55
|
+
}], formObjectId: [{
|
|
56
|
+
type: Input
|
|
57
|
+
}] }); })();
|
|
58
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1jb21tb24tdWktbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2Zvcm0tb2JqZWN0LXdpZGdldHMtdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9mb3JtLW9iamVjdC13aWRnZXRzLXZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSx3QkFBd0IsRUFBRSxLQUFLLEVBQXFDLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6SCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sb0RBQW9ELENBQUM7QUFDbEYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDMUUsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sc0NBQXNDLENBQUM7Ozs7QUFPckYsTUFBTSxPQUFPLDhCQUE4QjtJQWF4QyxZQUFvQix3QkFBa0Q7UUFBbEQsNkJBQXdCLEdBQXhCLHdCQUF3QixDQUEwQjtJQUFJLENBQUM7SUFFM0UsUUFBUTtRQUNQOztXQUVHO1FBQ0gsTUFBTSxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsdUJBQXVCLENBQUMscUJBQXFCLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztRQUNuSixNQUFNLGdCQUFnQixHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsZ0JBQWdCLENBQUM7UUFDM0QsZ0JBQWdCLENBQUMsS0FBSyxFQUFFLENBQUM7UUFDekIsTUFBTSxZQUFZLEdBQUcsZ0JBQWdCLENBQUMsZUFBZSxDQUFNLGdCQUFnQixDQUFDLENBQUM7UUFDN0UsWUFBWSxDQUFDLFFBQVEsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUM7UUFDbkQsWUFBWSxDQUFDLFFBQVEsQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztRQUM3QyxZQUFZLENBQUMsUUFBUSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDO1FBQzdDLFlBQVksQ0FBQyxRQUFRLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUM7UUFDekQsWUFBWSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQztJQUN4RCxDQUFDO0lBQ0Q7Ozs7T0FJRztJQUNILFdBQVcsQ0FBQyxPQUFzQjtJQUdsQyxDQUFDOzs0R0FyQ1MsOEJBQThCO2lGQUE5Qiw4QkFBOEI7dUJBSzdCLDZCQUE2Qjs7Ozs7UUNmM0MsK0ZBQXdDOzt1RkRVM0IsOEJBQThCO2NBTDFDLFNBQVM7MkJBQ0UsOEJBQThCOzJFQVNpQixXQUFXO2tCQUFsRSxTQUFTO21CQUFDLDZCQUE2QixFQUFDLEVBQUMsTUFBTSxFQUFDLElBQUksRUFBQztZQUk3QyxPQUFPO2tCQUFmLEtBQUs7WUFDRyxPQUFPO2tCQUFmLEtBQUs7WUFDRyxhQUFhO2tCQUFyQixLQUFLO1lBQ0csWUFBWTtrQkFBcEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCBJbnB1dCwgT25DaGFuZ2VzLCBPbkluaXQsICBTaW1wbGVDaGFuZ2VzLCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNlY3Rpb25GaWVsZCB9IGZyb20gJy4uLy4uLy4uL2Zvcm1zL3BhZ2UvZGF0YS1kZXRhaWwtdmlldy9zZWN0aW9uLWZpZWxkJztcbmltcG9ydCB7IFdpZGdldFZpZXdUeXBlSGFuZGxlciB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0LXR5cGUtaGFuZGxlcic7XG5pbXBvcnQgeyBGb3JtT2JqZWN0V2lkZ2V0Vmlld0RpcmVjdGl2ZSB9IGZyb20gJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3LmRpcmVjdGl2ZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1mb3JtLW9iamVjdC13aWRnZXRzLXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3LmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgRm9ybU9iamVjdFdpZGdldHNWaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0ICxPbkNoYW5nZXN7XG5cbiAgLyoqXG4gICAqIFRoaXMgRWxlbWVudCBXaWxsIEhvc3QgUmVmZXJlbmNlIEZvciBEaXJlY3RpdmVcbiAgICovXG4gICBAVmlld0NoaWxkKEZvcm1PYmplY3RXaWRnZXRWaWV3RGlyZWN0aXZlLHtzdGF0aWM6dHJ1ZX0pIHdpZGdldHNIb3N0ITogRm9ybU9iamVjdFdpZGdldFZpZXdEaXJlY3RpdmU7XG4gICAvKlxuICAgKiBXaWRnZXRzXG4gICAqL1xuICAgQElucHV0KCkgYmFzZVVybCA6c3RyaW5nO1xuICAgQElucHV0KCkgc2VjdGlvbiA6U2VjdGlvbkZpZWxkO1xuICAgQElucHV0KCkgYXhvbmF0b3JYMVVybCA6IHN0cmluZztcbiAgIEBJbnB1dCgpIGZvcm1PYmplY3RJZCA6IHN0cmluZztcbiAgIGNvbnN0cnVjdG9yKHByaXZhdGUgY29tcG9uZW50RmFjdG9yeVJlc29sdmVyOiBDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIpIHsgfVxuXG4gICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAvKlxuICAgICAqIENvbXBvbmVudCBGYWN0b3J5IFJlc29sdmVyIGZvciB3aWRnZXRcbiAgICAgKi9cbiAgICBjb25zdCBjb21wb25lbnRGYWN0b3J5ID0gdGhpcy5jb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIucmVzb2x2ZUNvbXBvbmVudEZhY3RvcnkoV2lkZ2V0Vmlld1R5cGVIYW5kbGVyLmdldFdpZGdldENvbXBvbmVudCh0aGlzLnNlY3Rpb24ud2lkZ2V0LnR5cGUpKTtcbiAgICBjb25zdCB2aWV3Q29udGFpbmVyUmVmID0gdGhpcy53aWRnZXRzSG9zdC52aWV3Q29udGFpbmVyUmVmO1xuICAgIHZpZXdDb250YWluZXJSZWYuY2xlYXIoKTtcbiAgICBjb25zdCBjb21wb25lbnRSZWYgPSB2aWV3Q29udGFpbmVyUmVmLmNyZWF0ZUNvbXBvbmVudDxhbnk+KGNvbXBvbmVudEZhY3RvcnkpO1xuICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS53aWRnZXQgPSB0aGlzLnNlY3Rpb24ud2lkZ2V0O1xuICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS5zZWN0aW9uID0gdGhpcy5zZWN0aW9uO1xuICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS5iYXNlVXJsID0gdGhpcy5iYXNlVXJsO1xuICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS5heG9uYXRvclgxVXJsID0gdGhpcy5heG9uYXRvclgxVXJsO1xuICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS5mb3JtT2JqZWN0SWQgPSB0aGlzLmZvcm1PYmplY3RJZDtcbiAgIH1cbiAgIC8qKlxuICAgICogT24gY2hhbmdlc1xuICAgICpcbiAgICAqIEBwYXJhbSBjaGFuZ2VzXG4gICAgKi9cbiAgIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcblxuXG4gICB9XG59XG4iLCI8bmctdGVtcGxhdGUgd2lkZ2V0c0hvc3QgPjwvbmctdGVtcGxhdGU+XG5cbiJdfQ==
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Directive, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class FormObjectWidgetViewDirective {
|
|
4
|
+
constructor(viewContainerRef) {
|
|
5
|
+
this.viewContainerRef = viewContainerRef;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
FormObjectWidgetViewDirective.ɵfac = function FormObjectWidgetViewDirective_Factory(t) { return new (t || FormObjectWidgetViewDirective)(i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
|
|
9
|
+
FormObjectWidgetViewDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: FormObjectWidgetViewDirective, selectors: [["", "widgetsHost", ""]] });
|
|
10
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormObjectWidgetViewDirective, [{
|
|
11
|
+
type: Directive,
|
|
12
|
+
args: [{
|
|
13
|
+
selector: '[widgetsHost]'
|
|
14
|
+
}]
|
|
15
|
+
}], function () { return [{ type: i0.ViewContainerRef }]; }, null); })();
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1vYmplY3Qtd2lkZ2V0cy12aWV3LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1jb21tb24tdWktbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2Zvcm0tb2JqZWN0LXdpZGdldHMtdmlldy5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFLNUQsTUFBTSxPQUFPLDZCQUE2QjtJQUV4QyxZQUFtQixnQkFBa0M7UUFBbEMscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFrQjtJQUFJLENBQUM7OzBHQUYvQyw2QkFBNkI7Z0ZBQTdCLDZCQUE2Qjt1RkFBN0IsNkJBQTZCO2NBSHpDLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUsZUFBZTthQUMxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgVmlld0NvbnRhaW5lclJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbd2lkZ2V0c0hvc3RdJ1xufSlcbmV4cG9ydCBjbGFzcyBGb3JtT2JqZWN0V2lkZ2V0Vmlld0RpcmVjdGl2ZSB7XG5cbiAgY29uc3RydWN0b3IocHVibGljIHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYpIHsgfVxuXG59XG4iXX0=
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { Formula } from '../../../../forms/page/widgets/formula';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/material/icon";
|
|
6
|
+
function FormulaWidgetViewComponent_ng_container_0_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
i0.ɵɵelementStart(0, "span");
|
|
8
|
+
i0.ɵɵtext(1);
|
|
9
|
+
i0.ɵɵelementStart(2, "span", 6);
|
|
10
|
+
i0.ɵɵtext(3, ":");
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
} if (rf & 2) {
|
|
14
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
15
|
+
i0.ɵɵadvance(1);
|
|
16
|
+
i0.ɵɵtextInterpolate(ctx_r2.widget.prompt);
|
|
17
|
+
} }
|
|
18
|
+
function FormulaWidgetViewComponent_ng_container_0_span_7_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelementStart(0, "span", 7);
|
|
20
|
+
i0.ɵɵtext(1);
|
|
21
|
+
i0.ɵɵelementEnd();
|
|
22
|
+
} if (rf & 2) {
|
|
23
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
24
|
+
i0.ɵɵadvance(1);
|
|
25
|
+
i0.ɵɵtextInterpolate(ctx_r3.widget.unit);
|
|
26
|
+
} }
|
|
27
|
+
function FormulaWidgetViewComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
i0.ɵɵelementContainerStart(0);
|
|
29
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
30
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
31
|
+
i0.ɵɵelement(3, "mat-icon", 3);
|
|
32
|
+
i0.ɵɵtemplate(4, FormulaWidgetViewComponent_ng_container_0_span_4_Template, 4, 1, "span", 0);
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
i0.ɵɵelementStart(5, "div", 4);
|
|
35
|
+
i0.ɵɵtext(6);
|
|
36
|
+
i0.ɵɵtemplate(7, FormulaWidgetViewComponent_ng_container_0_span_7_Template, 2, 1, "span", 5);
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
i0.ɵɵelementEnd();
|
|
39
|
+
i0.ɵɵelementContainerEnd();
|
|
40
|
+
} if (rf & 2) {
|
|
41
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
42
|
+
i0.ɵɵadvance(4);
|
|
43
|
+
i0.ɵɵproperty("ngIf", ctx_r0.section.showPrompt);
|
|
44
|
+
i0.ɵɵadvance(2);
|
|
45
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.widget.value, " ");
|
|
46
|
+
i0.ɵɵadvance(1);
|
|
47
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.unit && ctx_r0.widget.value != "-");
|
|
48
|
+
} }
|
|
49
|
+
function FormulaWidgetViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
50
|
+
i0.ɵɵelementContainerStart(0);
|
|
51
|
+
i0.ɵɵelementStart(1, "span", 8);
|
|
52
|
+
i0.ɵɵtext(2, "-");
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
i0.ɵɵelementContainerEnd();
|
|
55
|
+
} }
|
|
56
|
+
export class FormulaWidgetViewComponent {
|
|
57
|
+
constructor() { }
|
|
58
|
+
ngOnInit() {
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
FormulaWidgetViewComponent.ɵfac = function FormulaWidgetViewComponent_Factory(t) { return new (t || FormulaWidgetViewComponent)(); };
|
|
62
|
+
FormulaWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormulaWidgetViewComponent, selectors: [["lib-formula-widget-view"]], inputs: { widget: "widget" }, decls: 2, vars: 2, consts: [[4, "ngIf"], [1, "data-detail-info"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_formula", 1, "add-text"], [1, "data-detail-text", "text-sm"], ["class", "pl-1", 4, "ngIf"], [1, "colon"], [1, "pl-1"], [1, "flex", "justify-start"]], template: function FormulaWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
63
|
+
i0.ɵɵtemplate(0, FormulaWidgetViewComponent_ng_container_0_Template, 8, 3, "ng-container", 0);
|
|
64
|
+
i0.ɵɵtemplate(1, FormulaWidgetViewComponent_ng_container_1_Template, 3, 0, "ng-container", 0);
|
|
65
|
+
} if (rf & 2) {
|
|
66
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value);
|
|
67
|
+
i0.ɵɵadvance(1);
|
|
68
|
+
i0.ɵɵproperty("ngIf", !ctx.widget.value);
|
|
69
|
+
} }, directives: [i1.NgIf, i2.MatIcon], styles: [""] });
|
|
70
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormulaWidgetViewComponent, [{
|
|
71
|
+
type: Component,
|
|
72
|
+
args: [{ selector: 'lib-formula-widget-view', template: "<ng-container *ngIf=\"widget.value\" >\n<div class=\"data-detail-info\">\n <div class=\"data-detail-title flex text-sm\"><mat-icon class=\"add-text\" svgIcon=\"axo_formula\"></mat-icon> <span *ngIf=\"section.showPrompt\">{{widget.prompt}}<span class=\"colon\">:</span></span>\n </div>\n <div class=\"data-detail-text text-sm\" > {{widget.value}}\n <span class=\"pl-1\" *ngIf=\" widget.unit && widget.value != '-'\">{{widget.unit}}</span>\n </div> \n</div>\n</ng-container>\n<ng-container *ngIf=\"!widget.value\" >\n <span class=\"flex justify-start\">-</span>\n </ng-container>", styles: [""] }]
|
|
73
|
+
}], function () { return []; }, { widget: [{
|
|
74
|
+
type: Input
|
|
75
|
+
}] }); })();
|
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybXVsYS13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtY29tbW9uLXVpLWxpYi9zcmMvbGliL2Zvcm0tb2JqZWN0L2Zvcm0tb2JqZWN0LXZpZXcvZm9ybS1vYmplY3Qtd2lkZ2V0cy9mb3JtdWxhLXdpZGdldC12aWV3L2Zvcm11bGEtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvZm9ybXVsYS13aWRnZXQtdmlldy9mb3JtdWxhLXdpZGdldC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ3pELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQzs7Ozs7SUNDNEMsNEJBQWlDO0lBQUEsWUFBaUI7SUFBQSwrQkFBb0I7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUFwRCxlQUFpQjtJQUFqQiwwQ0FBaUI7OztJQUd2SiwrQkFBK0Q7SUFBQSxZQUFlO0lBQUEsaUJBQU87OztJQUF0QixlQUFlO0lBQWYsd0NBQWU7OztJQUx0Riw2QkFBb0M7SUFDcEMsOEJBQThCO0lBQzFCLDhCQUE0QztJQUFBLDhCQUE0RDtJQUFDLDRGQUFxRjtJQUM5TCxpQkFBTTtJQUNOLDhCQUF1QztJQUFDLFlBQ3BDO0lBQUEsNEZBQXFGO0lBQ3pGLGlCQUFNO0lBQ1YsaUJBQU07SUFDTiwwQkFBZTs7O0lBTnFHLGVBQXdCO0lBQXhCLGdEQUF3QjtJQUVoRyxlQUNwQztJQURvQyxvREFDcEM7SUFBb0IsZUFBMEM7SUFBMUMsdUVBQTBDOzs7SUFJdEUsNkJBQXFDO0lBQ2pDLCtCQUFpQztJQUFBLGlCQUFDO0lBQUEsaUJBQU87SUFDNUMsMEJBQWU7O0FESGhCLE1BQU0sT0FBTywwQkFBMEI7SUFPckMsZ0JBQWdCLENBQUM7SUFFakIsUUFBUTtJQUNSLENBQUM7O29HQVZVLDBCQUEwQjs2RUFBMUIsMEJBQTBCO1FDUnZDLDZGQVFlO1FBQ2YsNkZBRWdCOztRQVhELHVDQUFrQjtRQVNsQixlQUFtQjtRQUFuQix3Q0FBbUI7O3VGRERyQiwwQkFBMEI7Y0FMdEMsU0FBUzsyQkFDRSx5QkFBeUI7c0NBUzFCLE1BQU07a0JBQWQsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXVsYSB9IGZyb20gJy4uLy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9mb3JtdWxhJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWZvcm11bGEtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybXVsYS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Zvcm11bGEtd2lkZ2V0LXZpZXcuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBGb3JtdWxhV2lkZ2V0Vmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgLypcbiAgKiB3aWRnZXQgb2JqZWN0XG4gICovXG4gIEBJbnB1dCgpIHdpZGdldDogRm9ybXVsYTtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbn1cbiIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJ3aWRnZXQudmFsdWVcIiA+XG48ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtaW5mb1wiPlxuICAgIDxkaXYgY2xhc3M9XCJkYXRhLWRldGFpbC10aXRsZSBmbGV4IHRleHQtc21cIj48bWF0LWljb24gY2xhc3M9XCJhZGQtdGV4dFwiIHN2Z0ljb249XCJheG9fZm9ybXVsYVwiPjwvbWF0LWljb24+IDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCI+e3t3aWRnZXQucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+Ojwvc3Bhbj48L3NwYW4+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRleHQgdGV4dC1zbVwiID4ge3t3aWRnZXQudmFsdWV9fVxuICAgICAgICA8c3BhbiBjbGFzcz1cInBsLTFcIiAqbmdJZj1cIiB3aWRnZXQudW5pdCAmJiB3aWRnZXQudmFsdWUgIT0gJy0nXCI+e3t3aWRnZXQudW5pdH19PC9zcGFuPlxuICAgIDwvZGl2PiBcbjwvZGl2PlxuPC9uZy1jb250YWluZXI+XG48bmctY29udGFpbmVyICpuZ0lmPVwiIXdpZGdldC52YWx1ZVwiID5cbiAgICA8c3BhbiBjbGFzcz1cImZsZXgganVzdGlmeS1zdGFydFwiPi08L3NwYW4+XG4gPC9uZy1jb250YWluZXI+Il19
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { GeoFence } from '../../../../forms/page/widgets/geofence';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@agm/core";
|
|
6
|
+
import * as i3 from "@angular/material/icon";
|
|
7
|
+
function GeoFenceWidgetViewComponent_ng_container_0_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
8
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
9
|
+
i0.ɵɵelementStart(1, "agm-map", 4);
|
|
10
|
+
i0.ɵɵelement(2, "agm-marker", 5);
|
|
11
|
+
i0.ɵɵelement(3, "agm-circle", 6);
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
16
|
+
i0.ɵɵadvance(1);
|
|
17
|
+
i0.ɵɵproperty("latitude", ctx_r3.latitude)("longitude", ctx_r3.longitude)("zoom", ctx_r3.zoom);
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵproperty("latitude", ctx_r3.latitude)("longitude", ctx_r3.longitude)("markerDraggable", false);
|
|
20
|
+
i0.ɵɵadvance(1);
|
|
21
|
+
i0.ɵɵproperty("latitude", ctx_r3.latitude)("longitude", ctx_r3.longitude)("radius", ctx_r3.radius)("fillColor", "red")("circleDraggable", false)("editable", false);
|
|
22
|
+
} }
|
|
23
|
+
function GeoFenceWidgetViewComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
i0.ɵɵelementContainerStart(0);
|
|
25
|
+
i0.ɵɵtemplate(1, GeoFenceWidgetViewComponent_ng_container_0_div_1_Template, 4, 12, "div", 2);
|
|
26
|
+
i0.ɵɵelementContainerEnd();
|
|
27
|
+
} if (rf & 2) {
|
|
28
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
29
|
+
i0.ɵɵadvance(1);
|
|
30
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.value);
|
|
31
|
+
} }
|
|
32
|
+
function GeoFenceWidgetViewComponent_ng_template_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
33
|
+
i0.ɵɵelementStart(0, "span", 12);
|
|
34
|
+
i0.ɵɵtext(1);
|
|
35
|
+
i0.ɵɵelementStart(2, "span", 13);
|
|
36
|
+
i0.ɵɵtext(3, " :");
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
i0.ɵɵelementEnd();
|
|
39
|
+
} if (rf & 2) {
|
|
40
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
41
|
+
i0.ɵɵadvance(1);
|
|
42
|
+
i0.ɵɵtextInterpolate(ctx_r4.widgetProperties.prompt);
|
|
43
|
+
} }
|
|
44
|
+
function GeoFenceWidgetViewComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
45
|
+
i0.ɵɵelementStart(0, "div", 7);
|
|
46
|
+
i0.ɵɵelementStart(1, "div", 8);
|
|
47
|
+
i0.ɵɵelement(2, "mat-icon", 9);
|
|
48
|
+
i0.ɵɵtemplate(3, GeoFenceWidgetViewComponent_ng_template_1_span_3_Template, 4, 1, "span", 10);
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
i0.ɵɵelementStart(4, "span", 11);
|
|
51
|
+
i0.ɵɵtext(5, "-");
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
56
|
+
i0.ɵɵadvance(3);
|
|
57
|
+
i0.ɵɵproperty("ngIf", ctx_r2.section.showPrompt);
|
|
58
|
+
} }
|
|
59
|
+
export class GeoFenceWidgetViewComponent {
|
|
60
|
+
constructor() {
|
|
61
|
+
// Google map zoom level
|
|
62
|
+
this.zoom = 15;
|
|
63
|
+
}
|
|
64
|
+
ngOnInit() {
|
|
65
|
+
// get gps widget value from to gps class
|
|
66
|
+
if (this.widget.value !== null && this.widget.value.length) {
|
|
67
|
+
this.latitude = this.widget.value[0].centerLocationValue.latitude;
|
|
68
|
+
this.longitude = this.widget.value[0].centerLocationValue.longitude;
|
|
69
|
+
this.radius = this.widgetProperties.widget.radius;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
GeoFenceWidgetViewComponent.ɵfac = function GeoFenceWidgetViewComponent_Factory(t) { return new (t || GeoFenceWidgetViewComponent)(); };
|
|
74
|
+
GeoFenceWidgetViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GeoFenceWidgetViewComponent, selectors: [["lib-geo-fence-widget-view"]], inputs: { widget: "widget", widgetProperties: "widgetProperties" }, decls: 3, vars: 2, consts: [[4, "ngIf", "ngIfElse"], ["isWidgetValueEmpty", ""], ["class", "gps-fence-container", 4, "ngIf"], [1, "gps-fence-container"], [3, "latitude", "longitude", "zoom"], [3, "latitude", "longitude", "markerDraggable"], [3, "latitude", "longitude", "radius", "fillColor", "circleDraggable", "editable"], [1, "data-detail-infoc", "capture-container"], [1, "data-detail-title", "flex", "text-sm"], ["svgIcon", "axo_geofence", 1, "add-text"], ["class", "pl-2 text-sm", 4, "ngIf"], [1, "flex", "justify-start"], [1, "pl-2", "text-sm"], [1, "colon"]], template: function GeoFenceWidgetViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
75
|
+
i0.ɵɵtemplate(0, GeoFenceWidgetViewComponent_ng_container_0_Template, 2, 1, "ng-container", 0);
|
|
76
|
+
i0.ɵɵtemplate(1, GeoFenceWidgetViewComponent_ng_template_1_Template, 6, 1, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
|
77
|
+
} if (rf & 2) {
|
|
78
|
+
const _r1 = i0.ɵɵreference(2);
|
|
79
|
+
i0.ɵɵproperty("ngIf", ctx.widget.value)("ngIfElse", _r1);
|
|
80
|
+
} }, directives: [i1.NgIf, i2.AgmMap, i2.AgmMarker, i2.AgmCircle, i3.MatIcon], styles: ["lib-geo-fence-widget-view{margin:7px 0;display:block}lib-geo-fence-widget-view agm-map{height:300px}lib-geo-fence-widget-view .mat-form-field.mat-form-field-appearance-fill{width:100%!important}\n"], encapsulation: 2 });
|
|
81
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GeoFenceWidgetViewComponent, [{
|
|
82
|
+
type: Component,
|
|
83
|
+
args: [{ selector: 'lib-geo-fence-widget-view', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"widget.value; else isWidgetValueEmpty\" >\n <div class=\"gps-fence-container\" *ngIf=\"widget.value\">\n <agm-map [latitude]=\"latitude\" [longitude]=\"longitude\" [zoom]=\"zoom\">\n <agm-marker [latitude]=\"latitude\" [longitude]=\"longitude\" [markerDraggable]=\"false\"></agm-marker>\n <agm-circle [latitude]=\"latitude\" [longitude]=\"longitude\"\n [radius]=\"radius\"\n [fillColor]=\"'red'\"\n [circleDraggable]=\"false\"\n [editable]=\"false\">\n </agm-circle>\n </agm-map>\n </div>\n</ng-container>\n<ng-template #isWidgetValueEmpty>\n <div class=\"data-detail-infoc capture-container\">\n <div class=\"data-detail-title flex text-sm\">\n <mat-icon class=\"add-text\" svgIcon=\"axo_geofence\"></mat-icon>\n <span *ngIf=\"section.showPrompt\" class=\"pl-2 text-sm\">{{widgetProperties.prompt}}<span class=\"colon\"> :</span></span>\n </div>\n <span class=\"flex justify-start\">-</span>\n </div>\n</ng-template>\n", styles: ["lib-geo-fence-widget-view{margin:7px 0;display:block}lib-geo-fence-widget-view agm-map{height:300px}lib-geo-fence-widget-view .mat-form-field.mat-form-field-appearance-fill{width:100%!important}\n"] }]
|
|
84
|
+
}], null, { widget: [{
|
|
85
|
+
type: Input
|
|
86
|
+
}], widgetProperties: [{
|
|
87
|
+
type: Input
|
|
88
|
+
}] }); })();
|
|
89
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VvLWZlbmNlLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1jb21tb24tdWktbGliL3NyYy9saWIvZm9ybS1vYmplY3QvZm9ybS1vYmplY3Qtdmlldy9mb3JtLW9iamVjdC13aWRnZXRzL2dlby1mZW5jZS13aWRnZXQtdmlldy9nZW8tZmVuY2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWNvbW1vbi11aS1saWIvc3JjL2xpYi9mb3JtLW9iamVjdC9mb3JtLW9iamVjdC12aWV3L2Zvcm0tb2JqZWN0LXdpZGdldHMvZ2VvLWZlbmNlLXdpZGdldC12aWV3L2dlby1mZW5jZS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0seUNBQXlDLENBQUM7Ozs7OztJQ0EvRCw4QkFBc0Q7SUFDbEQsa0NBQXFFO0lBQ2pFLGdDQUFpRztJQUNqRyxnQ0FLYTtJQUNqQixpQkFBVTtJQUNkLGlCQUFNOzs7SUFUTyxlQUFxQjtJQUFyQiwwQ0FBcUIsK0JBQUEscUJBQUE7SUFDZCxlQUFxQjtJQUFyQiwwQ0FBcUIsK0JBQUEsMEJBQUE7SUFDckIsZUFBcUI7SUFBckIsMENBQXFCLCtCQUFBLHlCQUFBLG9CQUFBLDBCQUFBLG1CQUFBOzs7SUFKN0MsNkJBQTZEO0lBQ3pELDRGQVVNO0lBQ1YsMEJBQWU7OztJQVh1QixlQUFrQjtJQUFsQiwwQ0FBa0I7OztJQWdCNUMsZ0NBQXNEO0lBQUEsWUFBMkI7SUFBQSxnQ0FBb0I7SUFBQyxrQkFBQztJQUFBLGlCQUFPO0lBQUEsaUJBQU87OztJQUEvRCxlQUEyQjtJQUEzQixvREFBMkI7OztJQUh6Riw4QkFBaUQ7SUFDN0MsOEJBQTRDO0lBQ3hDLDhCQUE2RDtJQUM3RCw2RkFBcUg7SUFDekgsaUJBQU07SUFDTixnQ0FBaUM7SUFBQSxpQkFBQztJQUFBLGlCQUFPO0lBQzNDLGlCQUFNOzs7SUFITyxlQUF3QjtJQUF4QixnREFBd0I7O0FEUjNDLE1BQU0sT0FBTywyQkFBMkI7SUFOeEM7UUFhRSx3QkFBd0I7UUFDeEIsU0FBSSxHQUFXLEVBQUUsQ0FBQztLQVluQjtJQVRDLFFBQVE7UUFDTiwwQ0FBMEM7UUFDMUMsSUFBRyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssS0FBSyxJQUFJLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFDO1lBQ3hELElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDO1lBQ2xFLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsbUJBQW1CLENBQUMsU0FBUyxDQUFDO1lBQ3BFLElBQUksQ0FBQyxNQUFNLEdBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUM7U0FDcEQ7SUFDSCxDQUFDOztzR0FsQlUsMkJBQTJCOzhFQUEzQiwyQkFBMkI7UUNUeEMsOEZBWWU7UUFDZiw2SEFRYzs7O1FBckJDLHVDQUFvQixpQkFBQTs7dUZEU3RCLDJCQUEyQjtjQU52QyxTQUFTOzJCQUNFLDJCQUEyQixpQkFHckIsaUJBQWlCLENBQUMsSUFBSTtnQkFHNUIsTUFBTTtrQkFBZCxLQUFLO1lBQ0csZ0JBQWdCO2tCQUF4QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgR2VvRmVuY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9mb3Jtcy9wYWdlL3dpZGdldHMvZ2VvZmVuY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItZ2VvLWZlbmNlLXdpZGdldC12aWV3JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2dlby1mZW5jZS13aWRnZXQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2dlby1mZW5jZS13aWRnZXQtdmlldy5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uIDogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBHZW9GZW5jZVdpZGdldFZpZXdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgQElucHV0KCkgd2lkZ2V0OiBHZW9GZW5jZTtcbiAgIEBJbnB1dCgpIHdpZGdldFByb3BlcnRpZXM6IGFueTtcbiAgLy8gR29vZ2xlIG1hcCBsYXRpdHVkZSBudW1iZXJcbiAgbGF0aXR1ZGU6IG51bWJlcjtcbiAgLy8gR29vZ2xlIG1hcCBsb25naXR1ZGUgbnVtYmVyXG4gIGxvbmdpdHVkZTogbnVtYmVyO1xuICAvLyBHb29nbGUgbWFwIHpvb20gbGV2ZWxcbiAgem9vbTogbnVtYmVyID0gMTU7XG4gIC8vIEdvb2dsZSBtYXAgcmFkaXVzICB2YWx1ZVxuICByYWRpdXM6IG51bWJlcjtcbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgLy8gZ2V0IGdwcyB3aWRnZXQgdmFsdWUgZnJvbSB0byBncHMgY2xhc3MgXG4gICAgaWYodGhpcy53aWRnZXQudmFsdWUgIT09IG51bGwgJiYgdGhpcy53aWRnZXQudmFsdWUubGVuZ3RoKXtcbiAgICAgIHRoaXMubGF0aXR1ZGUgPSB0aGlzLndpZGdldC52YWx1ZVswXS5jZW50ZXJMb2NhdGlvblZhbHVlLmxhdGl0dWRlO1xuICAgICAgdGhpcy5sb25naXR1ZGUgPSB0aGlzLndpZGdldC52YWx1ZVswXS5jZW50ZXJMb2NhdGlvblZhbHVlLmxvbmdpdHVkZTtcbiAgICAgIHRoaXMucmFkaXVzID0gIHRoaXMud2lkZ2V0UHJvcGVydGllcy53aWRnZXQucmFkaXVzO1xuICAgIH1cbiAgfVxuXG59XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LnZhbHVlOyBlbHNlIGlzV2lkZ2V0VmFsdWVFbXB0eVwiID5cbiAgICA8ZGl2IGNsYXNzPVwiZ3BzLWZlbmNlLWNvbnRhaW5lclwiICpuZ0lmPVwid2lkZ2V0LnZhbHVlXCI+XG4gICAgICAgIDxhZ20tbWFwIFtsYXRpdHVkZV09XCJsYXRpdHVkZVwiIFtsb25naXR1ZGVdPVwibG9uZ2l0dWRlXCIgW3pvb21dPVwiem9vbVwiPlxuICAgICAgICAgICAgPGFnbS1tYXJrZXIgW2xhdGl0dWRlXT1cImxhdGl0dWRlXCIgW2xvbmdpdHVkZV09XCJsb25naXR1ZGVcIiBbbWFya2VyRHJhZ2dhYmxlXT1cImZhbHNlXCI+PC9hZ20tbWFya2VyPlxuICAgICAgICAgICAgPGFnbS1jaXJjbGUgW2xhdGl0dWRlXT1cImxhdGl0dWRlXCIgW2xvbmdpdHVkZV09XCJsb25naXR1ZGVcIlxuICAgICAgICAgICAgICAgIFtyYWRpdXNdPVwicmFkaXVzXCJcbiAgICAgICAgICAgICAgICBbZmlsbENvbG9yXT1cIidyZWQnXCJcbiAgICAgICAgICAgICAgICBbY2lyY2xlRHJhZ2dhYmxlXT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICBbZWRpdGFibGVdPVwiZmFsc2VcIj5cbiAgICAgICAgICAgIDwvYWdtLWNpcmNsZT5cbiAgICAgICAgPC9hZ20tbWFwPlxuICAgIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG48bmctdGVtcGxhdGUgI2lzV2lkZ2V0VmFsdWVFbXB0eT5cbiAgICA8ZGl2IGNsYXNzPVwiZGF0YS1kZXRhaWwtaW5mb2MgY2FwdHVyZS1jb250YWluZXJcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImRhdGEtZGV0YWlsLXRpdGxlIGZsZXggdGV4dC1zbVwiPlxuICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiYWRkLXRleHRcIiBzdmdJY29uPVwiYXhvX2dlb2ZlbmNlXCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwic2VjdGlvbi5zaG93UHJvbXB0XCIgY2xhc3M9XCJwbC0yIHRleHQtc21cIj57e3dpZGdldFByb3BlcnRpZXMucHJvbXB0fX08c3BhbiBjbGFzcz1cImNvbG9uXCI+IDo8L3NwYW4+PC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJmbGV4IGp1c3RpZnktc3RhcnRcIj4tPC9zcGFuPlxuICAgICAgPC9kaXY+XG48L25nLXRlbXBsYXRlPlxuIl19
|