ax-common-ui-lib 1.0.0-qa.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/ax-common-ui-lib.d.ts +5 -0
- package/esm2020/ax-common-ui-lib.mjs +5 -0
- package/esm2020/lib/app-list/app-list-dto.mjs +29 -0
- package/esm2020/lib/app-list/app-list.component.mjs +421 -0
- package/esm2020/lib/app-list/my-app-list.service.mjs +142 -0
- package/esm2020/lib/app-list/organization-list-dto.mjs +29 -0
- package/esm2020/lib/ax-app-common-lib.component.mjs +26 -0
- package/esm2020/lib/ax-app-common-lib.module.mjs +147 -0
- package/esm2020/lib/ax-app-common-lib.service.mjs +14 -0
- package/esm2020/lib/axo-filters/axo-filters.component.mjs +422 -0
- package/esm2020/lib/axo-filters/axo-filters.module.mjs +59 -0
- package/esm2020/lib/axo-filters/axo-filters.service.mjs +85 -0
- package/esm2020/lib/axo-map/axo-map.component.mjs +40 -0
- package/esm2020/lib/axo-map/axo-map.mjs +37 -0
- package/esm2020/lib/axo-map/axo-map.module.mjs +41 -0
- package/esm2020/lib/axo-map/public-api.mjs +7 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.component.mjs +84 -0
- package/esm2020/lib/axo-search-bar/axo-search-bar.module.mjs +38 -0
- package/esm2020/lib/axo-search-bar/public.api.mjs +3 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.component.mjs +155 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.module.mjs +34 -0
- package/esm2020/lib/axo-snack-bar/axo-snack-bar.service.mjs +29 -0
- package/esm2020/lib/axo-snack-bar/public-api.mjs +3 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.module.mjs +27 -0
- package/esm2020/lib/axo-state-manager/axo-state-manager.service.mjs +37 -0
- package/esm2020/lib/axo-state-manager/public-api.mjs +3 -0
- package/esm2020/lib/axo-utils/axo-utils.mjs +149 -0
- package/esm2020/lib/axo-utils/axo-utils.module.mjs +25 -0
- package/esm2020/lib/axo-utils/constants.mjs +3 -0
- package/esm2020/lib/axo-utils/data-source-types.mjs +12 -0
- package/esm2020/lib/axo-utils/field-list-search-pipe.mjs +32 -0
- package/esm2020/lib/axo-utils/filter-search-pipe.mjs +16 -0
- package/esm2020/lib/axo-utils/public-api.mjs +2 -0
- package/esm2020/lib/axo-utils/search-pipe/choice-search.pipe.mjs +33 -0
- package/esm2020/lib/axo-utils/search-pipe.mjs +36 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.component.mjs +196 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.module.mjs +29 -0
- package/esm2020/lib/bread-crumbs/bread-crumbs.service.mjs +122 -0
- package/esm2020/lib/code-editor/code-editor-modes.mjs +11 -0
- package/esm2020/lib/code-editor/code-editor-themes.mjs +8 -0
- package/esm2020/lib/code-editor/code-editor.component.mjs +60 -0
- package/esm2020/lib/code-editor/code-editor.module.mjs +36 -0
- package/esm2020/lib/code-editor/icode-editor-options.mjs +2 -0
- package/esm2020/lib/code-editor/public-api.mjs +3 -0
- package/esm2020/lib/common-dto/attributes-dto.mjs +39 -0
- package/esm2020/lib/common-dto/dashboard-dto.mjs +12 -0
- package/esm2020/lib/common-dto/dataListFilter-dto.mjs +13 -0
- package/esm2020/lib/common-dto/elements-dto.mjs +61 -0
- package/esm2020/lib/common-dto/form-dto.mjs +48 -0
- package/esm2020/lib/common-lib-configuration.service.mjs +21 -0
- package/esm2020/lib/common-property-panel/properties/properties.service.mjs +30 -0
- package/esm2020/lib/common-utils/entity-base.mjs +12 -0
- package/esm2020/lib/common-utils/iFlatten.mjs +2 -0
- package/esm2020/lib/common-utils/report.mjs +45 -0
- package/esm2020/lib/common.service.mjs +78 -0
- package/esm2020/lib/converters/convert-to-new-service.mjs +11 -0
- package/esm2020/lib/converters/convert-to-old-service.mjs +168 -0
- package/esm2020/lib/core/auth/auth.service.mjs +146 -0
- package/esm2020/lib/core/core.module.mjs +37 -0
- package/esm2020/lib/core/icons/icons.module.mjs +255 -0
- package/esm2020/lib/core/transloco/transloco.http-loader.mjs +32 -0
- package/esm2020/lib/core/transloco/transloco.module.mjs +94 -0
- package/esm2020/lib/core/user/axo-user.mjs +46 -0
- package/esm2020/lib/core/user/user-data.service.mjs +46 -0
- package/esm2020/lib/core/user/user.service.mjs +87 -0
- package/esm2020/lib/core/user/user.types.mjs +2 -0
- package/esm2020/lib/dashboard-lib/dashboard-builder.service.mjs +56 -0
- package/esm2020/lib/dashboard-lib/dashboard-control.service.mjs +92 -0
- package/esm2020/lib/dashboard-lib/dashboard-element/dashboard-element.mjs +11 -0
- package/esm2020/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.mjs +9 -0
- package/esm2020/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.mjs +107 -0
- package/esm2020/lib/dashboard-lib/dashboard-lib.module.mjs +111 -0
- package/esm2020/lib/dashboard-lib/dashboard-list.service.mjs +73 -0
- package/esm2020/lib/dashboard-lib/dashboard.mjs +15 -0
- package/esm2020/lib/dashboard-lib/send-to-dashboard.service.mjs +96 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.component.mjs +241 -0
- package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.service.mjs +32 -0
- package/esm2020/lib/data-view-lib/data-view/axo-card.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/axo-tag.mjs +48 -0
- package/esm2020/lib/data-view-lib/data-view/board-column.mjs +24 -0
- package/esm2020/lib/data-view-lib/data-view/board-view.mjs +45 -0
- package/esm2020/lib/data-view-lib/data-view/cardConfig.mjs +26 -0
- package/esm2020/lib/data-view-lib/data-view/conditional-formatting.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view/coordinate.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-enums.mjs +68 -0
- package/esm2020/lib/data-view-lib/data-view/data-view-filter.mjs +47 -0
- package/esm2020/lib/data-view-lib/data-view/data-view.mjs +66 -0
- package/esm2020/lib/data-view-lib/data-view/idata-view.mjs +2 -0
- package/esm2020/lib/data-view-lib/data-view/image-style.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/info-window.mjs +23 -0
- package/esm2020/lib/data-view-lib/data-view/location.mjs +21 -0
- package/esm2020/lib/data-view-lib/data-view/map-view.mjs +41 -0
- package/esm2020/lib/data-view-lib/data-view/prefix-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tag-style.mjs +28 -0
- package/esm2020/lib/data-view-lib/data-view/tagConfig.mjs +63 -0
- package/esm2020/lib/data-view-lib/data-view/task-asset-form-object-dto.mjs +72 -0
- package/esm2020/lib/data-view-lib/data-view/task-column-value.mjs +43 -0
- package/esm2020/lib/data-view-lib/data-view/task-view.mjs +31 -0
- package/esm2020/lib/data-view-lib/data-view/task.mjs +199 -0
- package/esm2020/lib/data-view-lib/data-view/value-style.mjs +25 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.component.mjs +661 -0
- package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.service.mjs +102 -0
- package/esm2020/lib/data-view-lib/data-view-header/data-view-header.component.mjs +536 -0
- package/esm2020/lib/data-view-lib/data-view-lib.module.mjs +88 -0
- package/esm2020/lib/data-view-lib/data-view.service.mjs +211 -0
- package/esm2020/lib/data-view-lib/public-api.mjs +28 -0
- package/esm2020/lib/directive/adjust-font-size.mjs +49 -0
- package/esm2020/lib/drill-through/drill-through.component.mjs +153 -0
- package/esm2020/lib/drill-through/drill-through.module.mjs +33 -0
- package/esm2020/lib/drill-through/drill-through.resolver.mjs +80 -0
- package/esm2020/lib/drill-through/drill-through.service.mjs +218 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-column.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-list.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-value.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-list.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.mjs +37 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range.mjs +38 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-toggle.mjs +36 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression-value.mjs +32 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-expression.mjs +415 -0
- package/esm2020/lib/enlighten-lib/ax-expression/ax-number-range.mjs +34 -0
- package/esm2020/lib/enlighten-lib/ax-expression/exp-sub-type.mjs +29 -0
- package/esm2020/lib/enlighten-lib/ax-expression/public-api.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/attribute.mjs +247 -0
- package/esm2020/lib/enlighten-lib/data-model/data-model.mjs +52 -0
- package/esm2020/lib/enlighten-lib/data-model/dependee.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/dependent.mjs +24 -0
- package/esm2020/lib/enlighten-lib/data-model/entity.mjs +71 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.mjs +100 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs +113 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree-enums.mjs +6 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.component.mjs +301 -0
- package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.module.mjs +67 -0
- package/esm2020/lib/enlighten-lib/elements/Property.mjs +3 -0
- package/esm2020/lib/enlighten-lib/elements/ax-element.mjs +55 -0
- package/esm2020/lib/enlighten-lib/elements/element-factory.mjs +38 -0
- package/esm2020/lib/enlighten-lib/enlighten-lib.module.mjs +308 -0
- package/esm2020/lib/enlighten-lib/enums/bread-crumbs-style.mjs +6 -0
- package/esm2020/lib/enlighten-lib/enums/operator-text-enum.mjs +11 -0
- package/esm2020/lib/enlighten-lib/fields/attribute-data.mjs +167 -0
- package/esm2020/lib/enlighten-lib/fields/entity.mjs +16 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-audio.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-barcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-childrecord.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-counter.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-date.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-decimal.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-document.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-file.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-image.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-location.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-number.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-qrcode.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-signature.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-staticmedia.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-text.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-time.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ax-uniqueid.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/axo-timestamp.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/choicelist.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/datetime.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/hyperlink.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/ienlighten-type.mjs +2 -0
- package/esm2020/lib/enlighten-lib/fields/types/toggle.mjs +6 -0
- package/esm2020/lib/enlighten-lib/fields/types/video.mjs +6 -0
- package/esm2020/lib/enlighten-lib/filters/ax-filter.mjs +74 -0
- package/esm2020/lib/enlighten-lib/filters/ax-operator.mjs +88 -0
- package/esm2020/lib/enlighten-lib/filters/chart-filter-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/filters/condition-type.mjs +49 -0
- package/esm2020/lib/enlighten-lib/filters/dataList-searchNode.mjs +48 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterExpression.mjs +32 -0
- package/esm2020/lib/enlighten-lib/filters/dataListFilterOperator.mjs +43 -0
- package/esm2020/lib/enlighten-lib/filters/dataListSeachQueryTree.mjs +25 -0
- package/esm2020/lib/enlighten-lib/filters/filter-category.mjs +78 -0
- package/esm2020/lib/enlighten-lib/filters/general-filter-type.mjs +13 -0
- package/esm2020/lib/enlighten-lib/filters/gridster-properties.mjs +31 -0
- package/esm2020/lib/enlighten-lib/filters/iax-filter.mjs +2 -0
- package/esm2020/lib/enlighten-lib/filters/search-node.mjs +50 -0
- package/esm2020/lib/enlighten-lib/filters/static-widget.mjs +24 -0
- package/esm2020/lib/enlighten-lib/property/element-property.mjs +11 -0
- package/esm2020/lib/enlighten-lib/property/filter-category-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/property/filter-property.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report/chart-filter/chart-filter.component.mjs +393 -0
- package/esm2020/lib/enlighten-lib/report/element.service.mjs +115 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.mjs +1002 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.mjs +144 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.mjs +576 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.mjs +66 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/border.mjs +18 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-factory.mjs +80 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-property.mjs +4 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-type.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart.mjs +123 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/dimension.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/font.mjs +32 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/fontStyle.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/label.mjs +6 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/legend.mjs +28 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/matrix.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/shadow.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/style.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/text-style.mjs +34 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/chart/title.mjs +12 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.component.mjs +357 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.directive.mjs +16 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/ichart-component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/igraphical-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.mjs +856 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.mjs +97 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/page/page.mjs +48 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.mjs +934 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.mjs +103 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text-chart.mjs +56 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.component.mjs +302 -0
- package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.service.mjs +15 -0
- package/esm2020/lib/enlighten-lib/report/iproperty.component.mjs +8 -0
- package/esm2020/lib/enlighten-lib/report/ireport.mjs +14 -0
- package/esm2020/lib/enlighten-lib/report/report-builder-master.service.mjs +83 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.component.mjs +313 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.module.mjs +71 -0
- package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.service.mjs +246 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/aggregate.mjs +10 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.mjs +26 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/column-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/itabular-report.component.mjs +2 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/orderby-type.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/row-style.mjs +7 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/table-style.mjs +47 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.mjs +4464 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.mjs +1583 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.mjs +70 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.mjs +1837 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.mjs +756 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.component.mjs +156 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.mjs +245 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.service.mjs +960 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/tabular.mjs +196 -0
- package/esm2020/lib/enlighten-lib/report/tabular-report/value-formatting.mjs +9 -0
- package/esm2020/lib/enlighten-lib/report-control.service.mjs +41 -0
- package/esm2020/lib/enlighten-lib/utils/utils.mjs +26 -0
- package/esm2020/lib/field-list-lib/fields-list.service.mjs +299 -0
- package/esm2020/lib/filters/calender-filter/calender-filter.component.mjs +351 -0
- package/esm2020/lib/filters/category-filter/category-filter.component.mjs +207 -0
- package/esm2020/lib/filters/category-filter/category-filter.service.mjs +31 -0
- package/esm2020/lib/filters/category-filter/category.service.mjs +45 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.component.mjs +178 -0
- package/esm2020/lib/filters/choice-list-filter/choice-list-filter.service.mjs +53 -0
- package/esm2020/lib/filters/common-filter/common-filter.component.mjs +310 -0
- package/esm2020/lib/filters/common-filter/common-filter.service.mjs +106 -0
- package/esm2020/lib/filters/custom-scroll-directives.mjs +45 -0
- package/esm2020/lib/filters/date-time-filter/date-time-filter.component.mjs +345 -0
- package/esm2020/lib/filters/filter-footer/filter-footer.component.mjs +62 -0
- package/esm2020/lib/filters/filters.component.mjs +688 -0
- package/esm2020/lib/filters/filters.module.mjs +196 -0
- package/esm2020/lib/filters/filters.service.mjs +147 -0
- package/esm2020/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.mjs +202 -0
- package/esm2020/lib/filters/metaColumnTypes.mjs +36 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.component.mjs +211 -0
- package/esm2020/lib/filters/multi-select-filter/multi-select-filter.service.mjs +214 -0
- package/esm2020/lib/filters/number-filter/number-filter.component.mjs +321 -0
- package/esm2020/lib/filters/public-api.mjs +15 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.component.mjs +180 -0
- package/esm2020/lib/filters/reference-list-filter/reference-list-filter.service.mjs +151 -0
- package/esm2020/lib/filters/single-select-filter/single-select-filter.component.mjs +177 -0
- package/esm2020/lib/filters/time-filter/time-filter.component.mjs +301 -0
- package/esm2020/lib/filters/user-filter/user-filter.component.mjs +178 -0
- package/esm2020/lib/filters/user-filter/user-filter.service.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.mjs +346 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.mjs +105 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.mjs +41 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.mjs +10 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.component.mjs +823 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.mjs +211 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.module.mjs +224 -0
- package/esm2020/lib/form-object/form-object-list/form-object-list.service.mjs +171 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.mjs +94 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.mjs +40 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.mjs +31 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.mjs +86 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.mjs +180 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.mjs +54 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.mjs +163 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.mjs +45 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.mjs +61 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.mjs +64 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.mjs +119 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.mjs +37 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.mjs +98 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.mjs +62 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.mjs +24 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.mjs +19 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.mjs +49 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.mjs +50 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.mjs +25 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.mjs +33 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.mjs +60 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.mjs +65 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.mjs +28 -0
- package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/data-detail-view-dto.mjs +55 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.mjs +85 -0
- package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.component.mjs +209 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.module.mjs +273 -0
- package/esm2020/lib/form-object/form-object-view/form-object-view.service.mjs +268 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.mjs +68 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.mjs +155 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.mjs +158 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.mjs +248 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.mjs +179 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.mjs +210 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.mjs +58 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.mjs +16 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.mjs +76 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.mjs +263 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.mjs +17 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.mjs +335 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.mjs +270 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.mjs +498 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.mjs +203 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.mjs +70 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.mjs +21 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.mjs +146 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.mjs +92 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.mjs +84 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.mjs +93 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.mjs +144 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.mjs +95 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.mjs +83 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.mjs +82 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.mjs +79 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.mjs +113 -0
- package/esm2020/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.mjs +89 -0
- package/esm2020/lib/form-object/form-object-view/meta-section/meta-section.component.mjs +157 -0
- package/esm2020/lib/form-object/form-object-view/section/section.component.mjs +75 -0
- package/esm2020/lib/form-object/form-object-view/section-field/section-field.component.mjs +30 -0
- package/esm2020/lib/form-object/form-object-view/section-view/section-view.component.mjs +110 -0
- package/esm2020/lib/form-object/public-api.mjs +3 -0
- package/esm2020/lib/form-permission.service.mjs +106 -0
- package/esm2020/lib/forms/ax-form.mjs +212 -0
- package/esm2020/lib/forms/iform.mjs +2 -0
- package/esm2020/lib/forms/page/common/axo-response-status.mjs +6 -0
- package/esm2020/lib/forms/page/common/constants.mjs +399 -0
- package/esm2020/lib/forms/page/common/detail-view-enums.mjs +8 -0
- package/esm2020/lib/forms/page/common/flatten-status-enum.mjs +10 -0
- package/esm2020/lib/forms/page/common/form.constant.mjs +87 -0
- package/esm2020/lib/forms/page/common/property-panel-field.mjs +5 -0
- package/esm2020/lib/forms/page/common/widget-enums.mjs +269 -0
- package/esm2020/lib/forms/page/common/widget-value-handler.mjs +321 -0
- package/esm2020/lib/forms/page/data-detail-view/ax-section.mjs +51 -0
- package/esm2020/lib/forms/page/data-detail-view/collection-view.mjs +30 -0
- package/esm2020/lib/forms/page/data-detail-view/data-details.mjs +60 -0
- package/esm2020/lib/forms/page/data-detail-view/section-field.mjs +32 -0
- package/esm2020/lib/forms/page/data-detail-view/section.mjs +33 -0
- package/esm2020/lib/forms/page/data-list/data-list-column.mjs +45 -0
- package/esm2020/lib/forms/page/data-list/data-list.mjs +64 -0
- package/esm2020/lib/forms/page/form-object.mjs +17 -0
- package/esm2020/lib/forms/page/form-page.mjs +28 -0
- package/esm2020/lib/forms/page/value-converters/displayMode-to-bool.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/form-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/geo-fence-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/image-annotation-value-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/language-source-value-converter.mjs +24 -0
- package/esm2020/lib/forms/page/value-converters/list-view-title-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-float-converter.mjs +15 -0
- package/esm2020/lib/forms/page/value-converters/parse-int-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/parse-string-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/publicUrls-string-to-array.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/record-limit-type-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/restriction-mode-converter.mjs +23 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-bool-value-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/string-to-date-time-converter.mjs +19 -0
- package/esm2020/lib/forms/page/value-converters/string-to-number -converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/textBox-mask-converter.mjs +16 -0
- package/esm2020/lib/forms/page/value-converters/validate-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/value-without-mask-converter.mjs +20 -0
- package/esm2020/lib/forms/page/value-converters/widget-concrete-class-converter.mjs +22 -0
- package/esm2020/lib/forms/page/value-converters/widget-deserializer.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/apply-geofences.mjs +65 -0
- package/esm2020/lib/forms/page/widgets/auto-number.mjs +87 -0
- package/esm2020/lib/forms/page/widgets/ax-audio.mjs +154 -0
- package/esm2020/lib/forms/page/widgets/ax-document.mjs +149 -0
- package/esm2020/lib/forms/page/widgets/ax-image.mjs +183 -0
- package/esm2020/lib/forms/page/widgets/bar-code.mjs +212 -0
- package/esm2020/lib/forms/page/widgets/child-record.mjs +193 -0
- package/esm2020/lib/forms/page/widgets/choicelist.mjs +375 -0
- package/esm2020/lib/forms/page/widgets/counter.mjs +69 -0
- package/esm2020/lib/forms/page/widgets/datetime.mjs +247 -0
- package/esm2020/lib/forms/page/widgets/formula.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/geofence.mjs +127 -0
- package/esm2020/lib/forms/page/widgets/gps.mjs +192 -0
- package/esm2020/lib/forms/page/widgets/group-header.mjs +200 -0
- package/esm2020/lib/forms/page/widgets/languages.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/link.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/payment.mjs +104 -0
- package/esm2020/lib/forms/page/widgets/qr-code.mjs +129 -0
- package/esm2020/lib/forms/page/widgets/script-condition.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/signature.mjs +81 -0
- package/esm2020/lib/forms/page/widgets/static-media.mjs +130 -0
- package/esm2020/lib/forms/page/widgets/stopwatch.mjs +117 -0
- package/esm2020/lib/forms/page/widgets/sub-form.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/textbox.mjs +338 -0
- package/esm2020/lib/forms/page/widgets/timestamp.mjs +155 -0
- package/esm2020/lib/forms/page/widgets/toggle.mjs +115 -0
- package/esm2020/lib/forms/page/widgets/unique-id.mjs +75 -0
- package/esm2020/lib/forms/page/widgets/verification.mjs +207 -0
- package/esm2020/lib/forms/page/widgets/video.mjs +151 -0
- package/esm2020/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.mjs +74 -0
- package/esm2020/lib/forms/page/widgets/widget-value/audio-video-widget-value.mjs +36 -0
- package/esm2020/lib/forms/page/widgets/widget-value/child-record-value.mjs +114 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choice-list-options.mjs +84 -0
- package/esm2020/lib/forms/page/widgets/widget-value/choices-ml.mjs +107 -0
- package/esm2020/lib/forms/page/widgets/widget-value/dateRangeValue.mjs +38 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfileParams.mjs +9 -0
- package/esm2020/lib/forms/page/widgets/widget-value/deviceProfilesTemp.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/document-widget-value.mjs +56 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-location-value.mjs +54 -0
- package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-widget-value.mjs +50 -0
- package/esm2020/lib/forms/page/widgets/widget-value/gps-widget-value.mjs +58 -0
- package/esm2020/lib/forms/page/widgets/widget-value/image-widget-value.mjs +99 -0
- package/esm2020/lib/forms/page/widgets/widget-value/language-widget-value.mjs +43 -0
- package/esm2020/lib/forms/page/widgets/widget-value/location-object-value.mjs +44 -0
- package/esm2020/lib/forms/page/widgets/widget-value/multiple-languages.mjs +106 -0
- package/esm2020/lib/forms/page/widgets/widget-value/reference-list-object-value.mjs +72 -0
- package/esm2020/lib/forms/page/widgets/widget-value/verification-widget-value.mjs +126 -0
- package/esm2020/lib/forms/page/widgets/widget.mjs +429 -0
- package/esm2020/lib/ghost-loader/ghost-loader.component.mjs +708 -0
- package/esm2020/lib/ghost-loader/ghost-loader.module.mjs +27 -0
- package/esm2020/lib/ghost-loader/public-api.mjs +3 -0
- package/esm2020/lib/map-dialog/map-dialog.component.mjs +46 -0
- package/esm2020/lib/map-dialog/map-dialog.module.mjs +39 -0
- package/esm2020/lib/map-dialog/public-api.mjs +6 -0
- package/esm2020/lib/reports-container/public-api.mjs +8 -0
- package/esm2020/lib/reports-container/report-group/report-group.component.mjs +77 -0
- package/esm2020/lib/reports-container/reports-container-models/report-group.mjs +42 -0
- package/esm2020/lib/reports-container/reports-container-models/report-property.mjs +30 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container-enums.mjs +16 -0
- package/esm2020/lib/reports-container/reports-container-models/reports-container.mjs +29 -0
- package/esm2020/lib/reports-container/reports-container.component.mjs +60 -0
- package/esm2020/lib/reports-container/reports-container.module.mjs +52 -0
- package/esm2020/lib/reports-container/reports-container.service.mjs +29 -0
- package/esm2020/lib/scrollbar/index.mjs +3 -0
- package/esm2020/lib/scrollbar/public-api.mjs +3 -0
- package/esm2020/lib/scrollbar/scrollbar.directive.mjs +351 -0
- package/esm2020/lib/scrollbar/scrollbar.module.mjs +21 -0
- package/esm2020/lib/scrollbar/scrollbar.types.mjs +15 -0
- package/esm2020/lib/sculptor-lib/widgets/audio/audio.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/barcode/barcode.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/child-record/child-record.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/choice-list/choice-list.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/date-time/date-time.component.mjs +136 -0
- package/esm2020/lib/sculptor-lib/widgets/document/document.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/geofence/geofence.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/gps/gps.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/group-header/group-header.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/image/image.component.mjs +131 -0
- package/esm2020/lib/sculptor-lib/widgets/language/language.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/link/link.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/qr-code/qr-code.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.mjs +105 -0
- package/esm2020/lib/sculptor-lib/widgets/subform/subform.component.mjs +109 -0
- package/esm2020/lib/sculptor-lib/widgets/textbox/textbox.component.mjs +177 -0
- package/esm2020/lib/sculptor-lib/widgets/timestamp/timestamp.component.mjs +115 -0
- package/esm2020/lib/sculptor-lib/widgets/toggle/toggle.component.mjs +112 -0
- package/esm2020/lib/sculptor-lib/widgets/video/video.component.mjs +118 -0
- package/esm2020/lib/sculptor-lib/widgets/widgets.service.mjs +58 -0
- package/esm2020/lib/shared/comfirmation-modal/confirmation-modal.component.mjs +63 -0
- package/esm2020/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.mjs +83 -0
- package/esm2020/lib/shared/shared.module.mjs +51 -0
- package/esm2020/public-api.mjs +138 -0
- package/fesm2015/ax-common-ui-lib.mjs +56598 -0
- package/fesm2015/ax-common-ui-lib.mjs.map +1 -0
- package/fesm2020/ax-common-ui-lib.mjs +52373 -0
- package/fesm2020/ax-common-ui-lib.mjs.map +1 -0
- package/lib/app-list/app-list-dto.d.ts +15 -0
- package/lib/app-list/app-list.component.d.ts +62 -0
- package/lib/app-list/my-app-list.service.d.ts +69 -0
- package/lib/app-list/organization-list-dto.d.ts +15 -0
- package/lib/ax-app-common-lib.component.d.ts +8 -0
- package/lib/ax-app-common-lib.module.d.ts +24 -0
- package/lib/ax-app-common-lib.service.d.ts +6 -0
- package/lib/axo-filters/axo-filters.component.d.ts +86 -0
- package/lib/axo-filters/axo-filters.module.d.ts +16 -0
- package/lib/axo-filters/axo-filters.service.d.ts +36 -0
- package/lib/axo-map/axo-map.component.d.ts +9 -0
- package/lib/axo-map/axo-map.d.ts +14 -0
- package/lib/axo-map/axo-map.module.d.ts +10 -0
- package/lib/axo-map/public-api.d.ts +6 -0
- package/lib/axo-search-bar/axo-search-bar.component.d.ts +21 -0
- package/lib/axo-search-bar/axo-search-bar.module.d.ts +10 -0
- package/lib/axo-search-bar/public.api.d.ts +2 -0
- package/lib/axo-snack-bar/axo-snack-bar.component.d.ts +20 -0
- package/lib/axo-snack-bar/axo-snack-bar.module.d.ts +9 -0
- package/lib/axo-snack-bar/axo-snack-bar.service.d.ts +16 -0
- package/lib/axo-snack-bar/public-api.d.ts +2 -0
- package/lib/axo-state-manager/axo-state-manager.module.d.ts +7 -0
- package/lib/axo-state-manager/axo-state-manager.service.d.ts +15 -0
- package/lib/axo-state-manager/public-api.d.ts +2 -0
- package/lib/axo-utils/axo-utils.d.ts +72 -0
- package/lib/axo-utils/axo-utils.module.d.ts +10 -0
- package/lib/axo-utils/constants.d.ts +2 -0
- package/lib/axo-utils/data-source-types.d.ts +10 -0
- package/lib/axo-utils/field-list-search-pipe.d.ts +7 -0
- package/lib/axo-utils/filter-search-pipe.d.ts +7 -0
- package/lib/axo-utils/public-api.d.ts +1 -0
- package/lib/axo-utils/search-pipe/choice-search.pipe.d.ts +7 -0
- package/lib/axo-utils/search-pipe.d.ts +7 -0
- package/lib/bread-crumbs/bread-crumbs.component.d.ts +48 -0
- package/lib/bread-crumbs/bread-crumbs.module.d.ts +9 -0
- package/lib/bread-crumbs/bread-crumbs.service.d.ts +76 -0
- package/lib/code-editor/code-editor-modes.d.ts +9 -0
- package/lib/code-editor/code-editor-themes.d.ts +6 -0
- package/lib/code-editor/code-editor.component.d.ts +20 -0
- package/lib/code-editor/code-editor.module.d.ts +10 -0
- package/lib/code-editor/icode-editor-options.d.ts +51 -0
- package/lib/code-editor/public-api.d.ts +2 -0
- package/lib/common-dto/attributes-dto.d.ts +24 -0
- package/lib/common-dto/dashboard-dto.d.ts +10 -0
- package/lib/common-dto/dataListFilter-dto.d.ts +10 -0
- package/lib/common-dto/elements-dto.d.ts +51 -0
- package/lib/common-dto/form-dto.d.ts +17 -0
- package/lib/common-lib-configuration.service.d.ts +13 -0
- package/lib/common-property-panel/properties/properties.service.d.ts +18 -0
- package/lib/common-utils/entity-base.d.ts +10 -0
- package/lib/common-utils/iFlatten.d.ts +13 -0
- package/lib/common-utils/report.d.ts +26 -0
- package/lib/common.service.d.ts +50 -0
- package/lib/converters/convert-to-new-service.d.ts +6 -0
- package/lib/converters/convert-to-old-service.d.ts +26 -0
- package/lib/core/auth/auth.service.d.ts +75 -0
- package/lib/core/core.module.d.ts +12 -0
- package/lib/core/icons/icons.module.d.ts +14 -0
- package/lib/core/transloco/transloco.http-loader.d.ts +19 -0
- package/lib/core/transloco/transloco.module.d.ts +7 -0
- package/lib/core/user/axo-user.d.ts +9 -0
- package/lib/core/user/user-data.service.d.ts +25 -0
- package/lib/core/user/user.service.d.ts +45 -0
- package/lib/core/user/user.types.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-builder.service.d.ts +27 -0
- package/lib/dashboard-lib/dashboard-control.service.d.ts +31 -0
- package/lib/dashboard-lib/dashboard-element/dashboard-element.d.ts +9 -0
- package/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.d.ts +7 -0
- package/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.d.ts +37 -0
- package/lib/dashboard-lib/dashboard-lib.module.d.ts +26 -0
- package/lib/dashboard-lib/dashboard-list.service.d.ts +24 -0
- package/lib/dashboard-lib/dashboard.d.ts +14 -0
- package/lib/dashboard-lib/send-to-dashboard.service.d.ts +39 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.component.d.ts +53 -0
- package/lib/dashboard-lib/show-dashboards/show-dashboards.service.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-card.d.ts +11 -0
- package/lib/data-view-lib/data-view/axo-tag.d.ts +26 -0
- package/lib/data-view-lib/data-view/board-column.d.ts +12 -0
- package/lib/data-view-lib/data-view/board-view.d.ts +23 -0
- package/lib/data-view-lib/data-view/cardConfig.d.ts +11 -0
- package/lib/data-view-lib/data-view/conditional-formatting.d.ts +11 -0
- package/lib/data-view-lib/data-view/coordinate.d.ts +8 -0
- package/lib/data-view-lib/data-view/data-view-enums.d.ts +58 -0
- package/lib/data-view-lib/data-view/data-view-filter.d.ts +25 -0
- package/lib/data-view-lib/data-view/data-view.d.ts +33 -0
- package/lib/data-view-lib/data-view/idata-view.d.ts +7 -0
- package/lib/data-view-lib/data-view/image-style.d.ts +8 -0
- package/lib/data-view-lib/data-view/info-window.d.ts +10 -0
- package/lib/data-view-lib/data-view/location.d.ts +8 -0
- package/lib/data-view-lib/data-view/map-view.d.ts +21 -0
- package/lib/data-view-lib/data-view/prefix-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tag-style.d.ts +12 -0
- package/lib/data-view-lib/data-view/tagConfig.d.ts +34 -0
- package/lib/data-view-lib/data-view/task-asset-form-object-dto.d.ts +19 -0
- package/lib/data-view-lib/data-view/task-column-value.d.ts +48 -0
- package/lib/data-view-lib/data-view/task-view.d.ts +15 -0
- package/lib/data-view-lib/data-view/task.d.ts +57 -0
- package/lib/data-view-lib/data-view/value-style.d.ts +10 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.component.d.ts +142 -0
- package/lib/data-view-lib/data-view-filters/data-view-filters.service.d.ts +28 -0
- package/lib/data-view-lib/data-view-header/data-view-header.component.d.ts +85 -0
- package/lib/data-view-lib/data-view-lib.module.d.ts +19 -0
- package/lib/data-view-lib/data-view.service.d.ts +94 -0
- package/lib/data-view-lib/public-api.d.ts +27 -0
- package/lib/directive/adjust-font-size.d.ts +13 -0
- package/lib/drill-through/drill-through.component.d.ts +53 -0
- package/lib/drill-through/drill-through.module.d.ts +10 -0
- package/lib/drill-through/drill-through.resolver.d.ts +30 -0
- package/lib/drill-through/drill-through.service.d.ts +100 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-column.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-date-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-number-value.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-text.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-list.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time-range.d.ts +17 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-time.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-exp-toggle.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/ax-expression-value.d.ts +19 -0
- package/lib/enlighten-lib/ax-expression/ax-expression.d.ts +66 -0
- package/lib/enlighten-lib/ax-expression/ax-number-range.d.ts +16 -0
- package/lib/enlighten-lib/ax-expression/exp-sub-type.d.ts +26 -0
- package/lib/enlighten-lib/ax-expression/public-api.d.ts +23 -0
- package/lib/enlighten-lib/data-model/attribute.d.ts +60 -0
- package/lib/enlighten-lib/data-model/data-model.d.ts +32 -0
- package/lib/enlighten-lib/data-model/dependee.d.ts +11 -0
- package/lib/enlighten-lib/data-model/dependent.d.ts +11 -0
- package/lib/enlighten-lib/data-model/entity.d.ts +31 -0
- package/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.d.ts +23 -0
- package/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.d.ts +24 -0
- package/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.d.ts +25 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree-enums.d.ts +4 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.component.d.ts +67 -0
- package/lib/enlighten-lib/data-model-tree/data-model-tree.module.d.ts +18 -0
- package/lib/enlighten-lib/elements/Property.d.ts +3 -0
- package/lib/enlighten-lib/elements/ax-element.d.ts +31 -0
- package/lib/enlighten-lib/elements/element-factory.d.ts +13 -0
- package/lib/enlighten-lib/enlighten-lib.module.d.ts +53 -0
- package/lib/enlighten-lib/enums/bread-crumbs-style.d.ts +4 -0
- package/lib/enlighten-lib/enums/operator-text-enum.d.ts +9 -0
- package/lib/enlighten-lib/fields/attribute-data.d.ts +55 -0
- package/lib/enlighten-lib/fields/entity.d.ts +15 -0
- package/lib/enlighten-lib/fields/types/ax-audio.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-barcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-childrecord.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-counter.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-date.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-decimal.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-document.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-file.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-image.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-location.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-number.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-qrcode.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-signature.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-staticmedia.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-text.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-time.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ax-uniqueid.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/axo-timestamp.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/choicelist.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/datetime.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/hyperlink.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/ienlighten-type.d.ts +3 -0
- package/lib/enlighten-lib/fields/types/toggle.d.ts +4 -0
- package/lib/enlighten-lib/fields/types/video.d.ts +4 -0
- package/lib/enlighten-lib/filters/ax-filter.d.ts +38 -0
- package/lib/enlighten-lib/filters/ax-operator.d.ts +40 -0
- package/lib/enlighten-lib/filters/chart-filter-type.d.ts +5 -0
- package/lib/enlighten-lib/filters/condition-type.d.ts +43 -0
- package/lib/enlighten-lib/filters/dataList-searchNode.d.ts +27 -0
- package/lib/enlighten-lib/filters/dataListFilterExpression.d.ts +20 -0
- package/lib/enlighten-lib/filters/dataListFilterOperator.d.ts +29 -0
- package/lib/enlighten-lib/filters/dataListSeachQueryTree.d.ts +15 -0
- package/lib/enlighten-lib/filters/filter-category.d.ts +43 -0
- package/lib/enlighten-lib/filters/general-filter-type.d.ts +10 -0
- package/lib/enlighten-lib/filters/gridster-properties.d.ts +17 -0
- package/lib/enlighten-lib/filters/iax-filter.d.ts +7 -0
- package/lib/enlighten-lib/filters/search-node.d.ts +27 -0
- package/lib/enlighten-lib/filters/static-widget.d.ts +2 -0
- package/lib/enlighten-lib/property/element-property.d.ts +8 -0
- package/lib/enlighten-lib/property/filter-category-property.d.ts +6 -0
- package/lib/enlighten-lib/property/filter-property.d.ts +6 -0
- package/lib/enlighten-lib/report/chart-filter/chart-filter.component.d.ts +78 -0
- package/lib/enlighten-lib/report/element.service.d.ts +61 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.d.ts +259 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.d.ts +52 -0
- package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.d.ts +177 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.d.ts +29 -0
- package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/chart/border.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-factory.d.ts +7 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-property.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart-type.d.ts +16 -0
- package/lib/enlighten-lib/report/graphical-report/chart/chart.d.ts +41 -0
- package/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/dimension.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/font.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/fontStyle.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/label.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/chart/legend.d.ts +13 -0
- package/lib/enlighten-lib/report/graphical-report/chart/matrix.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/chart/shadow.d.ts +5 -0
- package/lib/enlighten-lib/report/graphical-report/chart/style.d.ts +12 -0
- package/lib/enlighten-lib/report/graphical-report/chart/text-style.d.ts +17 -0
- package/lib/enlighten-lib/report/graphical-report/chart/title.d.ts +11 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.component.d.ts +130 -0
- package/lib/enlighten-lib/report/graphical-report/graphical-report.directive.d.ts +8 -0
- package/lib/enlighten-lib/report/graphical-report/ichart-component.d.ts +6 -0
- package/lib/enlighten-lib/report/graphical-report/igraphical-report.component.d.ts +21 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.d.ts +215 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.d.ts +34 -0
- package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/page/page.d.ts +25 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.d.ts +220 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.d.ts +38 -0
- package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.d.ts +9 -0
- package/lib/enlighten-lib/report/graphical-report/text/text-chart.d.ts +19 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.component.d.ts +72 -0
- package/lib/enlighten-lib/report/graphical-report/text/text.service.d.ts +9 -0
- package/lib/enlighten-lib/report/iproperty.component.d.ts +14 -0
- package/lib/enlighten-lib/report/ireport.d.ts +14 -0
- package/lib/enlighten-lib/report/report-builder-master.service.d.ts +42 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.component.d.ts +117 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.module.d.ts +19 -0
- package/lib/enlighten-lib/report/report-filter/report-filter.service.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/aggregate.d.ts +8 -0
- package/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.d.ts +7 -0
- package/lib/enlighten-lib/report/tabular-report/column-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/itabular-report.component.d.ts +16 -0
- package/lib/enlighten-lib/report/tabular-report/orderby-type.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/row-style.d.ts +5 -0
- package/lib/enlighten-lib/report/tabular-report/table-style.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.d.ts +124 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.d.ts +242 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.d.ts +21 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.d.ts +190 -0
- package/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.d.ts +177 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.component.d.ts +53 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.d.ts +102 -0
- package/lib/enlighten-lib/report/tabular-report/tabular-report.service.d.ts +173 -0
- package/lib/enlighten-lib/report/tabular-report/tabular.d.ts +92 -0
- package/lib/enlighten-lib/report/tabular-report/value-formatting.d.ts +7 -0
- package/lib/enlighten-lib/report-control.service.d.ts +15 -0
- package/lib/enlighten-lib/utils/utils.d.ts +16 -0
- package/lib/field-list-lib/fields-list.service.d.ts +71 -0
- package/lib/filters/calender-filter/calender-filter.component.d.ts +70 -0
- package/lib/filters/category-filter/category-filter.component.d.ts +65 -0
- package/lib/filters/category-filter/category-filter.service.d.ts +16 -0
- package/lib/filters/category-filter/category.service.d.ts +23 -0
- package/lib/filters/choice-list-filter/choice-list-filter.component.d.ts +64 -0
- package/lib/filters/choice-list-filter/choice-list-filter.service.d.ts +36 -0
- package/lib/filters/common-filter/common-filter.component.d.ts +135 -0
- package/lib/filters/common-filter/common-filter.service.d.ts +42 -0
- package/lib/filters/custom-scroll-directives.d.ts +14 -0
- package/lib/filters/date-time-filter/date-time-filter.component.d.ts +83 -0
- package/lib/filters/filter-footer/filter-footer.component.d.ts +12 -0
- package/lib/filters/filters.component.d.ts +139 -0
- package/lib/filters/filters.module.d.ts +43 -0
- package/lib/filters/filters.service.d.ts +83 -0
- package/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.d.ts +70 -0
- package/lib/filters/metaColumnTypes.d.ts +18 -0
- package/lib/filters/multi-select-filter/multi-select-filter.component.d.ts +68 -0
- package/lib/filters/multi-select-filter/multi-select-filter.service.d.ts +77 -0
- package/lib/filters/number-filter/number-filter.component.d.ts +70 -0
- package/lib/filters/public-api.d.ts +14 -0
- package/lib/filters/reference-list-filter/reference-list-filter.component.d.ts +59 -0
- package/lib/filters/reference-list-filter/reference-list-filter.service.d.ts +62 -0
- package/lib/filters/single-select-filter/single-select-filter.component.d.ts +59 -0
- package/lib/filters/time-filter/time-filter.component.d.ts +62 -0
- package/lib/filters/user-filter/user-filter.component.d.ts +61 -0
- package/lib/filters/user-filter/user-filter.service.d.ts +26 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.d.ts +87 -0
- package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.d.ts +33 -0
- package/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.d.ts +13 -0
- package/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.d.ts +10 -0
- package/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/form-object-list.component.d.ts +200 -0
- package/lib/form-object/form-object-list/form-object-list.d.ts +42 -0
- package/lib/form-object/form-object-list/form-object-list.module.d.ts +59 -0
- package/lib/form-object/form-object-list/form-object-list.service.d.ts +69 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.d.ts +3 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.d.ts +8 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.d.ts +22 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.d.ts +20 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.d.ts +13 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.d.ts +21 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.d.ts +23 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.d.ts +34 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.d.ts +27 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.d.ts +17 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.d.ts +15 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.d.ts +12 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.d.ts +11 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.d.ts +14 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.d.ts +16 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.d.ts +10 -0
- package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.d.ts +13 -0
- package/lib/form-object/form-object-view/data-detail-view-dto.d.ts +16 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-view.component.d.ts +45 -0
- package/lib/form-object/form-object-view/form-object-view.module.d.ts +70 -0
- package/lib/form-object/form-object-view/form-object-view.service.d.ts +49 -0
- package/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.d.ts +31 -0
- package/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.d.ts +22 -0
- package/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.d.ts +3 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.d.ts +25 -0
- package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.d.ts +8 -0
- package/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.d.ts +37 -0
- package/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.d.ts +91 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.d.ts +32 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.d.ts +71 -0
- package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.d.ts +40 -0
- package/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.d.ts +12 -0
- package/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.d.ts +26 -0
- package/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.d.ts +13 -0
- package/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.d.ts +15 -0
- package/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.d.ts +11 -0
- package/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.d.ts +14 -0
- package/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.d.ts +16 -0
- package/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.d.ts +10 -0
- package/lib/form-object/form-object-view/meta-section/meta-section.component.d.ts +31 -0
- package/lib/form-object/form-object-view/section/section.component.d.ts +16 -0
- package/lib/form-object/form-object-view/section-field/section-field.component.d.ts +13 -0
- package/lib/form-object/form-object-view/section-view/section-view.component.d.ts +16 -0
- package/lib/form-object/public-api.d.ts +2 -0
- package/lib/form-permission.service.d.ts +51 -0
- package/lib/forms/ax-form.d.ts +47 -0
- package/lib/forms/iform.d.ts +18 -0
- package/lib/forms/page/common/axo-response-status.d.ts +4 -0
- package/lib/forms/page/common/constants.d.ts +371 -0
- package/lib/forms/page/common/detail-view-enums.d.ts +5 -0
- package/lib/forms/page/common/flatten-status-enum.d.ts +7 -0
- package/lib/forms/page/common/form.constant.d.ts +85 -0
- package/lib/forms/page/common/property-panel-field.d.ts +21 -0
- package/lib/forms/page/common/widget-enums.d.ts +236 -0
- package/lib/forms/page/common/widget-value-handler.d.ts +4 -0
- package/lib/forms/page/data-detail-view/ax-section.d.ts +22 -0
- package/lib/forms/page/data-detail-view/collection-view.d.ts +11 -0
- package/lib/forms/page/data-detail-view/data-details.d.ts +17 -0
- package/lib/forms/page/data-detail-view/section-field.d.ts +13 -0
- package/lib/forms/page/data-detail-view/section.d.ts +13 -0
- package/lib/forms/page/data-list/data-list-column.d.ts +24 -0
- package/lib/forms/page/data-list/data-list.d.ts +24 -0
- package/lib/forms/page/form-object.d.ts +6 -0
- package/lib/forms/page/form-page.d.ts +19 -0
- package/lib/forms/page/value-converters/displayMode-to-bool.d.ts +5 -0
- package/lib/forms/page/value-converters/form-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/geo-fence-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/image-annotation-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/language-source-value-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/list-view-title-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-float-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-int-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/parse-string-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/publicUrls-string-to-array.d.ts +5 -0
- package/lib/forms/page/value-converters/record-limit-type-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/restriction-mode-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-bool-value-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-date-time-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/string-to-number -converter.d.ts +5 -0
- package/lib/forms/page/value-converters/textBox-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/validate-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/value-without-mask-converter.d.ts +5 -0
- package/lib/forms/page/value-converters/widget-concrete-class-converter.d.ts +6 -0
- package/lib/forms/page/value-converters/widget-deserializer.d.ts +3 -0
- package/lib/forms/page/widgets/apply-geofences.d.ts +25 -0
- package/lib/forms/page/widgets/auto-number.d.ts +28 -0
- package/lib/forms/page/widgets/ax-audio.d.ts +43 -0
- package/lib/forms/page/widgets/ax-document.d.ts +44 -0
- package/lib/forms/page/widgets/ax-image.d.ts +46 -0
- package/lib/forms/page/widgets/bar-code.d.ts +52 -0
- package/lib/forms/page/widgets/child-record.d.ts +50 -0
- package/lib/forms/page/widgets/choicelist.d.ts +70 -0
- package/lib/forms/page/widgets/counter.d.ts +36 -0
- package/lib/forms/page/widgets/datetime.d.ts +53 -0
- package/lib/forms/page/widgets/formula.d.ts +38 -0
- package/lib/forms/page/widgets/geofence.d.ts +41 -0
- package/lib/forms/page/widgets/gps.d.ts +49 -0
- package/lib/forms/page/widgets/group-header.d.ts +51 -0
- package/lib/forms/page/widgets/languages.d.ts +41 -0
- package/lib/forms/page/widgets/link.d.ts +36 -0
- package/lib/forms/page/widgets/payment.d.ts +37 -0
- package/lib/forms/page/widgets/qr-code.d.ts +39 -0
- package/lib/forms/page/widgets/script-condition.d.ts +33 -0
- package/lib/forms/page/widgets/signature.d.ts +34 -0
- package/lib/forms/page/widgets/static-media.d.ts +40 -0
- package/lib/forms/page/widgets/stopwatch.d.ts +37 -0
- package/lib/forms/page/widgets/sub-form.d.ts +39 -0
- package/lib/forms/page/widgets/textbox.d.ts +63 -0
- package/lib/forms/page/widgets/timestamp.d.ts +42 -0
- package/lib/forms/page/widgets/toggle.d.ts +36 -0
- package/lib/forms/page/widgets/unique-id.d.ts +33 -0
- package/lib/forms/page/widgets/verification.d.ts +55 -0
- package/lib/forms/page/widgets/video.d.ts +44 -0
- package/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.d.ts +18 -0
- package/lib/forms/page/widgets/widget-value/audio-video-widget-value.d.ts +11 -0
- package/lib/forms/page/widgets/widget-value/child-record-value.d.ts +26 -0
- package/lib/forms/page/widgets/widget-value/choice-list-options.d.ts +27 -0
- package/lib/forms/page/widgets/widget-value/choices-ml.d.ts +22 -0
- package/lib/forms/page/widgets/widget-value/dateRangeValue.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/deviceProfileParams.d.ts +4 -0
- package/lib/forms/page/widgets/widget-value/deviceProfilesTemp.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/document-widget-value.d.ts +15 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-location-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/geo-fence-widget-value.d.ts +14 -0
- package/lib/forms/page/widgets/widget-value/gps-widget-value.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/image-widget-value.d.ts +19 -0
- package/lib/forms/page/widgets/widget-value/language-widget-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/location-object-value.d.ts +12 -0
- package/lib/forms/page/widgets/widget-value/multiple-languages.d.ts +21 -0
- package/lib/forms/page/widgets/widget-value/reference-list-object-value.d.ts +17 -0
- package/lib/forms/page/widgets/widget-value/verification-widget-value.d.ts +31 -0
- package/lib/forms/page/widgets/widget.d.ts +75 -0
- package/lib/ghost-loader/ghost-loader.component.d.ts +41 -0
- package/lib/ghost-loader/ghost-loader.module.d.ts +8 -0
- package/lib/ghost-loader/public-api.d.ts +2 -0
- package/lib/map-dialog/map-dialog.component.d.ts +16 -0
- package/lib/map-dialog/map-dialog.module.d.ts +11 -0
- package/lib/map-dialog/public-api.d.ts +5 -0
- package/lib/reports-container/public-api.d.ts +7 -0
- package/lib/reports-container/report-group/report-group.component.d.ts +17 -0
- package/lib/reports-container/reports-container-models/report-group.d.ts +20 -0
- package/lib/reports-container/reports-container-models/report-property.d.ts +19 -0
- package/lib/reports-container/reports-container-models/reports-container-enums.d.ts +13 -0
- package/lib/reports-container/reports-container-models/reports-container.d.ts +16 -0
- package/lib/reports-container/reports-container.component.d.ts +16 -0
- package/lib/reports-container/reports-container.module.d.ts +13 -0
- package/lib/reports-container/reports-container.service.d.ts +18 -0
- package/lib/scrollbar/index.d.ts +2 -0
- package/lib/scrollbar/public-api.d.ts +2 -0
- package/lib/scrollbar/scrollbar.directive.d.ts +153 -0
- package/lib/scrollbar/scrollbar.module.d.ts +7 -0
- package/lib/scrollbar/scrollbar.types.d.ts +12 -0
- package/lib/sculptor-lib/widgets/audio/audio.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/barcode/barcode.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/child-record/child-record.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/choice-list/choice-list.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/date-time/date-time.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/document/document.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/geofence/geofence.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/gps/gps.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/group-header/group-header.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/image/image.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/language/language.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/link/link.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/qr-code/qr-code.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/subform/subform.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/textbox/textbox.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/timestamp/timestamp.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/toggle/toggle.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/video/video.component.d.ts +32 -0
- package/lib/sculptor-lib/widgets/widgets.service.d.ts +30 -0
- package/lib/shared/comfirmation-modal/confirmation-modal.component.d.ts +18 -0
- package/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.d.ts +29 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/package.json +64 -0
- package/public-api.d.ts +130 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { PropertiesService } from '../../../common-property-panel/properties/properties.service';
|
|
4
|
+
import { StopWatch } from '../../../forms/page/widgets/stopwatch';
|
|
5
|
+
import { WidgetsService } from '../widgets.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../../common-property-panel/properties/properties.service";
|
|
8
|
+
import * as i2 from "../widgets.service";
|
|
9
|
+
function StopwatchComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
const _r2 = i0.ɵɵgetCurrentView();
|
|
11
|
+
i0.ɵɵelementContainerStart(0);
|
|
12
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
13
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
14
|
+
i0.ɵɵelement(3, "mat-icon", 3);
|
|
15
|
+
i0.ɵɵelementStart(4, "form", 4);
|
|
16
|
+
i0.ɵɵelementStart(5, "input", 5);
|
|
17
|
+
i0.ɵɵlistener("ngModelChange", function StopwatchComponent_ng_container_0_Template_input_ngModelChange_5_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r1 = i0.ɵɵnextContext(); return ctx_r1.widget.prompt = $event; });
|
|
18
|
+
i0.ɵɵelementEnd();
|
|
19
|
+
i0.ɵɵelementEnd();
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
i0.ɵɵelementStart(6, "div", 6);
|
|
22
|
+
i0.ɵɵlistener("click", function StopwatchComponent_ng_container_0_Template_div_click_6_listener() { i0.ɵɵrestoreView(_r2); const ctx_r3 = i0.ɵɵnextContext(); return ctx_r3.onWidgetClick(); });
|
|
23
|
+
i0.ɵɵelement(7, "input", 7);
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
i0.ɵɵelementStart(8, "div", 8);
|
|
27
|
+
i0.ɵɵelementStart(9, "button", 9);
|
|
28
|
+
i0.ɵɵelement(10, "mat-icon", 10);
|
|
29
|
+
i0.ɵɵelementEnd();
|
|
30
|
+
i0.ɵɵelementStart(11, "button", 9);
|
|
31
|
+
i0.ɵɵelement(12, "mat-icon", 11);
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
i0.ɵɵelementStart(13, "button", 9);
|
|
34
|
+
i0.ɵɵelement(14, "mat-icon", 12);
|
|
35
|
+
i0.ɵɵelementEnd();
|
|
36
|
+
i0.ɵɵelementStart(15, "button", 9);
|
|
37
|
+
i0.ɵɵelement(16, "mat-icon", 13);
|
|
38
|
+
i0.ɵɵelementEnd();
|
|
39
|
+
i0.ɵɵelementStart(17, "button", 14);
|
|
40
|
+
i0.ɵɵlistener("click", function StopwatchComponent_ng_container_0_Template_button_click_17_listener() { i0.ɵɵrestoreView(_r2); const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.delete(); });
|
|
41
|
+
i0.ɵɵelement(18, "mat-icon", 15);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
i0.ɵɵelementEnd();
|
|
44
|
+
i0.ɵɵelementContainerEnd();
|
|
45
|
+
} if (rf & 2) {
|
|
46
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
47
|
+
i0.ɵɵadvance(1);
|
|
48
|
+
i0.ɵɵproperty("formGroup", ctx_r0.group)("id", ctx_r0.widget.id);
|
|
49
|
+
i0.ɵɵadvance(3);
|
|
50
|
+
i0.ɵɵproperty("formGroupName", ctx_r0.widget.id + "_group");
|
|
51
|
+
i0.ɵɵadvance(1);
|
|
52
|
+
i0.ɵɵproperty("ngModel", ctx_r0.widget.prompt)("formControlName", ctx_r0.widget.id + "_prompt");
|
|
53
|
+
i0.ɵɵadvance(2);
|
|
54
|
+
i0.ɵɵproperty("placeholder", ctx_r0.widget.placeholder ? ctx_r0.widget.placeholder : "write text here")("formControlName", ctx_r0.widget.id);
|
|
55
|
+
} }
|
|
56
|
+
export class StopwatchComponent {
|
|
57
|
+
// --------------------------------------------
|
|
58
|
+
/**
|
|
59
|
+
* constructor
|
|
60
|
+
*
|
|
61
|
+
* @param _propertiesService
|
|
62
|
+
*/
|
|
63
|
+
constructor(_propertiesService, _widgetProperties) {
|
|
64
|
+
this._propertiesService = _propertiesService;
|
|
65
|
+
this._widgetProperties = _widgetProperties;
|
|
66
|
+
}
|
|
67
|
+
// -----------------------------------------------------------------------------------------------------
|
|
68
|
+
// @ Lifecycle hooks start
|
|
69
|
+
// -----------------------------------------------------------------------------------------------------
|
|
70
|
+
/**
|
|
71
|
+
* on init
|
|
72
|
+
*/
|
|
73
|
+
ngOnInit() {
|
|
74
|
+
}
|
|
75
|
+
// -----------------------------------------------------------------------------------------------------
|
|
76
|
+
// @ Lifecycle hooks end
|
|
77
|
+
// -----------------------------------------------------------------------------------------------------
|
|
78
|
+
/**
|
|
79
|
+
* to emit widgetClickEvent to show properties of selected widget
|
|
80
|
+
*/
|
|
81
|
+
onWidgetClick() {
|
|
82
|
+
this._propertiesService.widgetClickEvent(this.widget);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* to emit widgetDeleteEvent to Delete Widget
|
|
86
|
+
*/
|
|
87
|
+
delete() {
|
|
88
|
+
this._widgetProperties.widgetDeleteEvent(this.widget);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
StopwatchComponent.ɵfac = function StopwatchComponent_Factory(t) { return new (t || StopwatchComponent)(i0.ɵɵdirectiveInject(i1.PropertiesService), i0.ɵɵdirectiveInject(i2.WidgetsService)); };
|
|
92
|
+
StopwatchComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StopwatchComponent, selectors: [["lib-stopwatch"]], inputs: { widget: "widget", group: "group" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "text-widget", 3, "formGroup", "id"], [1, "flex", "gap-2", "items-center"], ["svgIcon", "axo_sculptor_stopwatch", 1, "h-4", "w-4", "min-w-4", "min-h-4"], [3, "formGroupName"], ["matInput", "", 3, "ngModel", "formControlName", "ngModelChange"], [1, "form-field-input", 3, "click"], ["readonly", "true", 3, "placeholder", "formControlName"], [1, "tooltip-container"], [1, "icon-btn"], ["svgIcon", "axo_sculptor_help-text", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_cut", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_copy", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_paste", 1, "h-4", "min-h-4", "w-4", "min-w-4"], [1, "icon-btn", 3, "click"], ["svgIcon", "axo_sculptor_delete", 1, "h-4", "min-h-4", "w-4", "min-w-4"]], template: function StopwatchComponent_Template(rf, ctx) { if (rf & 1) {
|
|
93
|
+
i0.ɵɵtemplate(0, StopwatchComponent_ng_container_0_Template, 19, 7, "ng-container", 0);
|
|
94
|
+
} if (rf & 2) {
|
|
95
|
+
i0.ɵɵproperty("ngIf", ctx.widget);
|
|
96
|
+
} }, styles: ["lib-stopwatch .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}lib-stopwatch .text-widget:hover{background-color:#eaeaea}lib-stopwatch .text-widget .form-field-input input{border:1px solid #B1B9CD;height:38px;border-radius:5px;padding:0 10px;margin-top:12px;box-sizing:border-box;width:100%}\n"], encapsulation: 2 });
|
|
97
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StopwatchComponent, [{
|
|
98
|
+
type: Component,
|
|
99
|
+
args: [{ selector: 'lib-stopwatch', encapsulation: ViewEncapsulation.None, template: "<!-- Stopwatch widget -->\n<ng-container *ngIf=\"widget\">\n <div [formGroup]=\"group\" class=\"text-widget\" [id]=\"widget.id\">\n <div class=\"flex gap-2 items-center\">\n <mat-icon svgIcon=\"axo_sculptor_stopwatch\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <form [formGroupName]=\"this.widget.id + '_group'\">\n <input matInput [(ngModel)]='widget.prompt' [formControlName]=\"widget.id + '_prompt' \" />\n </form>\n </div>\n <div (click)=\"onWidgetClick()\" class ='form-field-input'>\n <input [placeholder]=\"widget.placeholder?widget.placeholder:'write text here'\" readonly=true\n [formControlName]=\"widget.id\" />\n </div>\n </div>\n <div class=\"tooltip-container\">\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_help-text\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_cut\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_copy\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_paste\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n \n <button class=\"icon-btn\" (click)=\"delete()\" > <mat-icon svgIcon=\"axo_sculptor_delete\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n </div>\n \n </ng-container>\n", styles: ["lib-stopwatch .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}lib-stopwatch .text-widget:hover{background-color:#eaeaea}lib-stopwatch .text-widget .form-field-input input{border:1px solid #B1B9CD;height:38px;border-radius:5px;padding:0 10px;margin-top:12px;box-sizing:border-box;width:100%}\n"] }]
|
|
100
|
+
}], function () { return [{ type: i1.PropertiesService }, { type: i2.WidgetsService }]; }, { widget: [{
|
|
101
|
+
type: Input
|
|
102
|
+
}], group: [{
|
|
103
|
+
type: Input
|
|
104
|
+
}] }); })();
|
|
105
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcHdhdGNoLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL3NjdWxwdG9yLWxpYi93aWRnZXRzL3N0b3B3YXRjaC9zdG9wd2F0Y2guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvc2N1bHB0b3ItbGliL3dpZGdldHMvc3RvcHdhdGNoL3N0b3B3YXRjaC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDM0MsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDakcsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQzs7Ozs7O0lDSHBELDZCQUE2QjtJQUN6Qiw4QkFBOEQ7SUFDNUQsOEJBQXFDO0lBQ2pDLDhCQUFzRjtJQUN4RiwrQkFBa0Q7SUFDaEQsZ0NBQXlGO0lBQXpFLDhOQUEyQjtJQUEzQyxpQkFBeUY7SUFDM0YsaUJBQU87SUFDVCxpQkFBTTtJQUNOLDhCQUF5RDtJQUFwRCxxS0FBUyxzQkFBZSxJQUFDO0lBQzVCLDJCQUNrQztJQUNwQyxpQkFBTTtJQUNSLGlCQUFNO0lBQ04sOEJBQStCO0lBQzdCLGlDQUF5QjtJQUFFLGdDQUFzRjtJQUFBLGlCQUFTO0lBQzFILGtDQUF5QjtJQUFFLGdDQUFnRjtJQUFBLGlCQUFTO0lBQ3BILGtDQUF5QjtJQUFFLGdDQUFpRjtJQUFBLGlCQUFTO0lBQ3JILGtDQUF5QjtJQUFFLGdDQUFrRjtJQUFBLGlCQUFTO0lBRXRILG1DQUE2QztJQUFwQix5S0FBUyxlQUFRLElBQUM7SUFBSSxnQ0FBbUY7SUFBQSxpQkFBUztJQUM3SSxpQkFBTTtJQUVSLDBCQUFlOzs7SUFyQlIsZUFBbUI7SUFBbkIsd0NBQW1CLHdCQUFBO0lBR2QsZUFBMkM7SUFBM0MsMkRBQTJDO0lBQy9CLGVBQTJCO0lBQTNCLDhDQUEyQixpREFBQTtJQUl0QyxlQUF1RTtJQUF2RSx1R0FBdUUscUNBQUE7O0FERXRGLE1BQU0sT0FBTyxrQkFBa0I7SUFJN0IsK0NBQStDO0lBQy9DOzs7O09BSUc7SUFDSCxZQUNVLGtCQUFxQyxFQUNyQyxpQkFBaUM7UUFEakMsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFtQjtRQUNyQyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQWdCO0lBRXZDLENBQUM7SUFFTCx3R0FBd0c7SUFDeEcsMEJBQTBCO0lBQzFCLHdHQUF3RztJQUN4Rzs7T0FFRztJQUNILFFBQVE7SUFDUixDQUFDO0lBQ0Qsd0dBQXdHO0lBQ3hHLHdCQUF3QjtJQUN4Qix3R0FBd0c7SUFFeEc7O09BRUc7SUFDSCxhQUFhO1FBQ1gsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBQ0M7O0tBRUM7SUFDRCxNQUFNO1FBQ0osSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUN4RCxDQUFDOztvRkF2Q1Esa0JBQWtCO3FFQUFsQixrQkFBa0I7UUNYL0Isc0ZBc0JpQjs7UUF0QkYsaUNBQVk7O3VGRFdkLGtCQUFrQjtjQU45QixTQUFTOzJCQUNFLGVBQWUsaUJBR1YsaUJBQWlCLENBQUMsSUFBSTtpR0FJNUIsTUFBTTtrQkFBZCxLQUFLO1lBQ0csS0FBSztrQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUdyb3VwIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgUHJvcGVydGllc1NlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9jb21tb24tcHJvcGVydHktcGFuZWwvcHJvcGVydGllcy9wcm9wZXJ0aWVzLnNlcnZpY2UnO1xuaW1wb3J0IHsgU3RvcFdhdGNoIH0gZnJvbSAnLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL3N0b3B3YXRjaCc7XG5pbXBvcnQgeyBXaWRnZXRzU2VydmljZSB9IGZyb20gJy4uL3dpZGdldHMuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1zdG9wd2F0Y2gnLFxuICB0ZW1wbGF0ZVVybDogJy4vc3RvcHdhdGNoLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vc3RvcHdhdGNoLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgU3RvcHdhdGNoQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgLy8gLS0tLS0tLS0tLS0tLS0taW5wdXRzLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICBASW5wdXQoKSB3aWRnZXQ6IFN0b3BXYXRjaDtcbiAgQElucHV0KCkgZ3JvdXA6IEZvcm1Hcm91cDtcbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgLyoqXG4gICAqIGNvbnN0cnVjdG9yXG4gICAqXG4gICAqIEBwYXJhbSBfcHJvcGVydGllc1NlcnZpY2VcbiAgICovXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgX3Byb3BlcnRpZXNTZXJ2aWNlOiBQcm9wZXJ0aWVzU2VydmljZSxcbiAgICBwcml2YXRlIF93aWRnZXRQcm9wZXJ0aWVzOiBXaWRnZXRzU2VydmljZVxuICAgIFxuICApIHsgfVxuXG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIC8vIEAgTGlmZWN5Y2xlIGhvb2tzIHN0YXJ0XG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIC8qKlxuICAgKiBvbiBpbml0XG4gICAqL1xuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAvLyBAIExpZmVjeWNsZSBob29rcyBlbmRcbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cblxuICAvKipcbiAgICogdG8gZW1pdCB3aWRnZXRDbGlja0V2ZW50IHRvIHNob3cgcHJvcGVydGllcyBvZiBzZWxlY3RlZCB3aWRnZXRcbiAgICovXG4gIG9uV2lkZ2V0Q2xpY2soKTogdm9pZCB7XG4gICAgdGhpcy5fcHJvcGVydGllc1NlcnZpY2Uud2lkZ2V0Q2xpY2tFdmVudCh0aGlzLndpZGdldCk7XG4gIH1cbiAgICAvKipcbiAgICogdG8gZW1pdCB3aWRnZXREZWxldGVFdmVudCB0byBEZWxldGUgV2lkZ2V0XG4gICAqL1xuICAgIGRlbGV0ZSgpOiB2b2lkIHtcbiAgICAgIHRoaXMuX3dpZGdldFByb3BlcnRpZXMud2lkZ2V0RGVsZXRlRXZlbnQodGhpcy53aWRnZXQpO1xuICAgIH1cbn0iLCI8IS0tIFN0b3B3YXRjaCB3aWRnZXQgLS0+XG48bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0XCI+XG4gICAgPGRpdiBbZm9ybUdyb3VwXT1cImdyb3VwXCIgY2xhc3M9XCJ0ZXh0LXdpZGdldFwiIFtpZF09XCJ3aWRnZXQuaWRcIj5cbiAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGdhcC0yIGl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX3N0b3B3YXRjaFwiIGNsYXNzPVwiaC00IHctNCBtaW4tdy00IG1pbi1oLTRcIj48L21hdC1pY29uPlxuICAgICAgICA8Zm9ybSBbZm9ybUdyb3VwTmFtZV09XCJ0aGlzLndpZGdldC5pZCArICdfZ3JvdXAnXCI+XG4gICAgICAgICAgPGlucHV0IG1hdElucHV0IFsobmdNb2RlbCldPSd3aWRnZXQucHJvbXB0JyBbZm9ybUNvbnRyb2xOYW1lXT1cIndpZGdldC5pZCArICdfcHJvbXB0JyBcIiAvPlxuICAgICAgICA8L2Zvcm0+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxkaXYgKGNsaWNrKT1cIm9uV2lkZ2V0Q2xpY2soKVwiIGNsYXNzID0nZm9ybS1maWVsZC1pbnB1dCc+XG4gICAgICAgIDxpbnB1dCBbcGxhY2Vob2xkZXJdPVwid2lkZ2V0LnBsYWNlaG9sZGVyP3dpZGdldC5wbGFjZWhvbGRlcjond3JpdGUgdGV4dCBoZXJlJ1wiIHJlYWRvbmx5PXRydWVcbiAgICAgICAgICBbZm9ybUNvbnRyb2xOYW1lXT1cIndpZGdldC5pZFwiIC8+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwidG9vbHRpcC1jb250YWluZXJcIj5cbiAgICAgIDxidXR0b24gY2xhc3M9XCJpY29uLWJ0blwiPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfaGVscC10ZXh0XCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgICA8YnV0dG9uIGNsYXNzPVwiaWNvbi1idG5cIj4gIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX2N1dFwiIGNsYXNzPVwiaC00IG1pbi1oLTQgdy00IG1pbi13LTRcIj48L21hdC1pY29uPjwvYnV0dG9uPlxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9jb3B5XCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgICA8YnV0dG9uIGNsYXNzPVwiaWNvbi1idG5cIj4gIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX3Bhc3RlXCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgIFxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCIgKGNsaWNrKT1cImRlbGV0ZSgpXCIgPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfZGVsZXRlXCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgPC9kaXY+XG4gIFxuICA8L25nLWNvbnRhaW5lcj5cbiJdfQ==
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { PropertiesService } from '../../../common-property-panel/properties/properties.service';
|
|
4
|
+
import { SubForm } from '../../../forms/page/widgets/sub-form';
|
|
5
|
+
import { WidgetsService } from '../widgets.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../../common-property-panel/properties/properties.service";
|
|
8
|
+
import * as i2 from "../widgets.service";
|
|
9
|
+
function SubformComponent_ng_container_0_ng_container_7_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementContainerStart(0);
|
|
11
|
+
i0.ɵɵelement(1, "mat-icon", 15);
|
|
12
|
+
i0.ɵɵelementContainerEnd();
|
|
13
|
+
} }
|
|
14
|
+
function SubformComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
15
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
16
|
+
i0.ɵɵelementContainerStart(0);
|
|
17
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
18
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
19
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
20
|
+
i0.ɵɵelement(4, "mat-icon", 4);
|
|
21
|
+
i0.ɵɵelementStart(5, "form", 5);
|
|
22
|
+
i0.ɵɵelementStart(6, "input", 6);
|
|
23
|
+
i0.ɵɵlistener("ngModelChange", function SubformComponent_ng_container_0_Template_input_ngModelChange_6_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return ctx_r2.widget.prompt = $event; });
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
i0.ɵɵtemplate(7, SubformComponent_ng_container_0_ng_container_7_Template, 2, 0, "ng-container", 0);
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
i0.ɵɵelementEnd();
|
|
30
|
+
i0.ɵɵelementStart(8, "div", 7);
|
|
31
|
+
i0.ɵɵelementStart(9, "button", 8);
|
|
32
|
+
i0.ɵɵelement(10, "mat-icon", 9);
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
i0.ɵɵelementStart(11, "button", 8);
|
|
35
|
+
i0.ɵɵelement(12, "mat-icon", 10);
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
i0.ɵɵelementStart(13, "button", 8);
|
|
38
|
+
i0.ɵɵelement(14, "mat-icon", 11);
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
i0.ɵɵelementStart(15, "button", 8);
|
|
41
|
+
i0.ɵɵelement(16, "mat-icon", 12);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
i0.ɵɵelementStart(17, "button", 13);
|
|
44
|
+
i0.ɵɵlistener("click", function SubformComponent_ng_container_0_Template_button_click_17_listener() { i0.ɵɵrestoreView(_r3); const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.delete(); });
|
|
45
|
+
i0.ɵɵelement(18, "mat-icon", 14);
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
i0.ɵɵelementContainerEnd();
|
|
49
|
+
} if (rf & 2) {
|
|
50
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
51
|
+
i0.ɵɵadvance(1);
|
|
52
|
+
i0.ɵɵproperty("formGroup", ctx_r0.group)("id", ctx_r0.widget.id);
|
|
53
|
+
i0.ɵɵadvance(4);
|
|
54
|
+
i0.ɵɵproperty("formGroupName", ctx_r0.widget.id + "_group");
|
|
55
|
+
i0.ɵɵadvance(1);
|
|
56
|
+
i0.ɵɵproperty("ngModel", ctx_r0.widget.prompt)("formControlName", ctx_r0.widget.id + "_prompt");
|
|
57
|
+
i0.ɵɵadvance(1);
|
|
58
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.isHidden);
|
|
59
|
+
} }
|
|
60
|
+
export class SubformComponent {
|
|
61
|
+
// --------------------------------------------
|
|
62
|
+
/**
|
|
63
|
+
* constructor
|
|
64
|
+
*
|
|
65
|
+
* @param _propertiesService
|
|
66
|
+
*/
|
|
67
|
+
constructor(_propertiesService, _widgetProperties) {
|
|
68
|
+
this._propertiesService = _propertiesService;
|
|
69
|
+
this._widgetProperties = _widgetProperties;
|
|
70
|
+
}
|
|
71
|
+
// -----------------------------------------------------------------------------------------------------
|
|
72
|
+
// @ Lifecycle hooks start
|
|
73
|
+
// -----------------------------------------------------------------------------------------------------
|
|
74
|
+
/**
|
|
75
|
+
* on init
|
|
76
|
+
*/
|
|
77
|
+
ngOnInit() {
|
|
78
|
+
}
|
|
79
|
+
// -----------------------------------------------------------------------------------------------------
|
|
80
|
+
// @ Lifecycle hooks end
|
|
81
|
+
// -----------------------------------------------------------------------------------------------------
|
|
82
|
+
/**
|
|
83
|
+
* to emit widgetClickEvent to show properties of selected widget
|
|
84
|
+
*/
|
|
85
|
+
onWidgetClick() {
|
|
86
|
+
this._propertiesService.widgetClickEvent(this.widget);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* to emit widgetDeleteEvent to Delete Widget
|
|
90
|
+
*/
|
|
91
|
+
delete() {
|
|
92
|
+
this._widgetProperties.widgetDeleteEvent(this.widget);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
SubformComponent.ɵfac = function SubformComponent_Factory(t) { return new (t || SubformComponent)(i0.ɵɵdirectiveInject(i1.PropertiesService), i0.ɵɵdirectiveInject(i2.WidgetsService)); };
|
|
96
|
+
SubformComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SubformComponent, selectors: [["lib-subform"]], inputs: { widget: "widget", group: "group" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "text-widget", 3, "formGroup", "id"], [1, "flex", "gap-2", "justify-between"], [1, "flex", "gap-2", "items-center"], ["svgIcon", "axo_sculptor_subform", 1, "h-4", "w-4", "min-w-4", "min-h-4"], [3, "formGroupName"], ["matInput", "", 3, "ngModel", "formControlName", "ngModelChange"], [1, "tooltip-container"], [1, "icon-btn"], ["svgIcon", "axo_sculptor_help-text", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_cut", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_copy", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_paste", 1, "h-4", "min-h-4", "w-4", "min-w-4"], [1, "icon-btn", 3, "click"], ["svgIcon", "axo_sculptor_delete", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_close_eye", 1, "h-4", "w-4", "min-w-4", "min-h-4"]], template: function SubformComponent_Template(rf, ctx) { if (rf & 1) {
|
|
97
|
+
i0.ɵɵtemplate(0, SubformComponent_ng_container_0_Template, 19, 6, "ng-container", 0);
|
|
98
|
+
} if (rf & 2) {
|
|
99
|
+
i0.ɵɵproperty("ngIf", ctx.widget);
|
|
100
|
+
} }, styles: ["lib-subform .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}lib-subform .text-widget:hover{background-color:#eaeaea}lib-subform .text-widget .form-field-input .placeholder-text{color:#b1b9cd}\n"], encapsulation: 2 });
|
|
101
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubformComponent, [{
|
|
102
|
+
type: Component,
|
|
103
|
+
args: [{ selector: 'lib-subform', encapsulation: ViewEncapsulation.None, template: "<!-- Subform widget -->\n<ng-container *ngIf=\"widget\">\n <div [formGroup]=\"group\" class=\"text-widget\" [id]=\"widget.id\">\n <div class=\"flex gap-2 justify-between\">\n <div class=\"flex gap-2 items-center\">\n <mat-icon svgIcon=\"axo_sculptor_subform\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <form [formGroupName]=\"this.widget.id + '_group'\">\n <input matInput [(ngModel)]='widget.prompt' [formControlName]=\"widget.id + '_prompt' \" />\n </form>\n </div>\n <ng-container *ngIf=\"widget.isHidden\">\n <mat-icon svgIcon=\"axo_sculptor_close_eye\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n </ng-container>\n </div>\n \n <!-- <div (click)=\"onWidgetClick()\" class ='form-field-input'>\n <div class=\"placeholder-text mt-3\">Tap here to View form</div>\n </div> -->\n\n </div>\n <div class=\"tooltip-container\">\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_help-text\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_cut\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_copy\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_paste\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n\n <button class=\"icon-btn\" (click)=\"delete()\"> <mat-icon svgIcon=\"axo_sculptor_delete\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n </div>\n\n </ng-container>", styles: ["lib-subform .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}lib-subform .text-widget:hover{background-color:#eaeaea}lib-subform .text-widget .form-field-input .placeholder-text{color:#b1b9cd}\n"] }]
|
|
104
|
+
}], function () { return [{ type: i1.PropertiesService }, { type: i2.WidgetsService }]; }, { widget: [{
|
|
105
|
+
type: Input
|
|
106
|
+
}], group: [{
|
|
107
|
+
type: Input
|
|
108
|
+
}] }); })();
|
|
109
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3ViZm9ybS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9zY3VscHRvci1saWIvd2lkZ2V0cy9zdWJmb3JtL3N1YmZvcm0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvc2N1bHB0b3ItbGliL3dpZGdldHMvc3ViZm9ybS9zdWJmb3JtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw4REFBOEQsQ0FBQztBQUNqRyxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDL0QsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDOzs7OztJQ014Qyw2QkFBc0M7SUFDcEMsK0JBQXNGO0lBQ3hGLDBCQUFlOzs7O0lBWDNCLDZCQUE2QjtJQUN6Qiw4QkFBOEQ7SUFDMUQsOEJBQXdDO0lBQ3BDLDhCQUFxQztJQUNqQyw4QkFBb0Y7SUFDdEYsK0JBQWtEO0lBQ2hELGdDQUF5RjtJQUF6RSw0TkFBMkI7SUFBM0MsaUJBQXlGO0lBQzNGLGlCQUFPO0lBQ1QsaUJBQU07SUFDTixrR0FFZTtJQUNuQixpQkFBTTtJQU1WLGlCQUFNO0lBQ04sOEJBQStCO0lBQzdCLGlDQUF5QjtJQUFFLCtCQUFzRjtJQUFBLGlCQUFTO0lBQzFILGtDQUF5QjtJQUFFLGdDQUFnRjtJQUFBLGlCQUFTO0lBQ3BILGtDQUF5QjtJQUFFLGdDQUFpRjtJQUFBLGlCQUFTO0lBQ3JILGtDQUF5QjtJQUFFLGdDQUFrRjtJQUFBLGlCQUFTO0lBRXRILG1DQUE0QztJQUFuQix1S0FBUyxlQUFRLElBQUM7SUFBRyxnQ0FBbUY7SUFBQSxpQkFBUztJQUM1SSxpQkFBTTtJQUVSLDBCQUFlOzs7SUEzQlIsZUFBbUI7SUFBbkIsd0NBQW1CLHdCQUFBO0lBSVIsZUFBMkM7SUFBM0MsMkRBQTJDO0lBQy9CLGVBQTJCO0lBQTNCLDhDQUEyQixpREFBQTtJQUdoQyxlQUFxQjtJQUFyQiw2Q0FBcUI7O0FERWhELE1BQU0sT0FBTyxnQkFBZ0I7SUFJM0IsK0NBQStDO0lBQy9DOzs7O09BSUc7SUFDSCxZQUNVLGtCQUFxQyxFQUNyQyxpQkFBaUM7UUFEakMsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFtQjtRQUNyQyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQWdCO0lBRXZDLENBQUM7SUFFTCx3R0FBd0c7SUFDeEcsMEJBQTBCO0lBQzFCLHdHQUF3RztJQUN4Rzs7T0FFRztJQUNILFFBQVE7SUFDUixDQUFDO0lBQ0Qsd0dBQXdHO0lBQ3hHLHdCQUF3QjtJQUN4Qix3R0FBd0c7SUFFeEc7O09BRUc7SUFDSCxhQUFhO1FBQ1gsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBQ0M7O0tBRUM7SUFDRCxNQUFNO1FBQ0osSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUN4RCxDQUFDOztnRkF2Q1EsZ0JBQWdCO21FQUFoQixnQkFBZ0I7UUNYN0Isb0ZBNEJpQjs7UUE1QkYsaUNBQVk7O3VGRFdkLGdCQUFnQjtjQU41QixTQUFTOzJCQUNFLGFBQWEsaUJBR1IsaUJBQWlCLENBQUMsSUFBSTtpR0FJNUIsTUFBTTtrQkFBZCxLQUFLO1lBQ0csS0FBSztrQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUdyb3VwIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgUHJvcGVydGllc1NlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9jb21tb24tcHJvcGVydHktcGFuZWwvcHJvcGVydGllcy9wcm9wZXJ0aWVzLnNlcnZpY2UnO1xuaW1wb3J0IHsgU3ViRm9ybSB9IGZyb20gJy4uLy4uLy4uL2Zvcm1zL3BhZ2Uvd2lkZ2V0cy9zdWItZm9ybSc7XG5pbXBvcnQgeyBXaWRnZXRzU2VydmljZSB9IGZyb20gJy4uL3dpZGdldHMuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1zdWJmb3JtJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N1YmZvcm0uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zdWJmb3JtLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgU3ViZm9ybUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIC8vIC0tLS0tLS0tLS0tLS0tLWlucHV0cy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgQElucHV0KCkgd2lkZ2V0OiBTdWJGb3JtO1xuICBASW5wdXQoKSBncm91cDogRm9ybUdyb3VwO1xuICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAvKipcbiAgICogY29uc3RydWN0b3JcbiAgICpcbiAgICogQHBhcmFtIF9wcm9wZXJ0aWVzU2VydmljZVxuICAgKi9cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBfcHJvcGVydGllc1NlcnZpY2U6IFByb3BlcnRpZXNTZXJ2aWNlLFxuICAgIHByaXZhdGUgX3dpZGdldFByb3BlcnRpZXM6IFdpZGdldHNTZXJ2aWNlXG4gICAgXG4gICkgeyB9XG5cbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgLy8gQCBMaWZlY3ljbGUgaG9va3Mgc3RhcnRcbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgLyoqXG4gICAqIG9uIGluaXRcbiAgICovXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIC8vIEAgTGlmZWN5Y2xlIGhvb2tzIGVuZFxuICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuXG4gIC8qKlxuICAgKiB0byBlbWl0IHdpZGdldENsaWNrRXZlbnQgdG8gc2hvdyBwcm9wZXJ0aWVzIG9mIHNlbGVjdGVkIHdpZGdldFxuICAgKi9cbiAgb25XaWRnZXRDbGljaygpOiB2b2lkIHtcbiAgICB0aGlzLl9wcm9wZXJ0aWVzU2VydmljZS53aWRnZXRDbGlja0V2ZW50KHRoaXMud2lkZ2V0KTtcbiAgfVxuICAgIC8qKlxuICAgKiB0byBlbWl0IHdpZGdldERlbGV0ZUV2ZW50IHRvIERlbGV0ZSBXaWRnZXRcbiAgICovXG4gICAgZGVsZXRlKCk6IHZvaWQge1xuICAgICAgdGhpcy5fd2lkZ2V0UHJvcGVydGllcy53aWRnZXREZWxldGVFdmVudCh0aGlzLndpZGdldCk7XG4gICAgfVxufSIsIjwhLS0gU3ViZm9ybSB3aWRnZXQgLS0+XG48bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0XCI+XG4gICAgPGRpdiBbZm9ybUdyb3VwXT1cImdyb3VwXCIgY2xhc3M9XCJ0ZXh0LXdpZGdldFwiIFtpZF09XCJ3aWRnZXQuaWRcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggZ2FwLTIganVzdGlmeS1iZXR3ZWVuXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBnYXAtMiBpdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgICAgICAgICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9zdWJmb3JtXCIgY2xhc3M9XCJoLTQgdy00IG1pbi13LTQgbWluLWgtNFwiPjwvbWF0LWljb24+XG4gICAgICAgICAgICAgIDxmb3JtIFtmb3JtR3JvdXBOYW1lXT1cInRoaXMud2lkZ2V0LmlkICsgJ19ncm91cCdcIj5cbiAgICAgICAgICAgICAgICA8aW5wdXQgbWF0SW5wdXQgWyhuZ01vZGVsKV09J3dpZGdldC5wcm9tcHQnIFtmb3JtQ29udHJvbE5hbWVdPVwid2lkZ2V0LmlkICsgJ19wcm9tcHQnIFwiIC8+XG4gICAgICAgICAgICAgIDwvZm9ybT5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIndpZGdldC5pc0hpZGRlblwiPlxuICAgICAgICAgICAgICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9jbG9zZV9leWVcIiBjbGFzcz1cImgtNCB3LTQgbWluLXctNCBtaW4taC00XCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIFxuICAgICAgPCEtLSA8ZGl2IChjbGljayk9XCJvbldpZGdldENsaWNrKClcIiBjbGFzcyA9J2Zvcm0tZmllbGQtaW5wdXQnPlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJwbGFjZWhvbGRlci10ZXh0IG10LTNcIj5UYXAgaGVyZSB0byBWaWV3IGZvcm08L2Rpdj5cbiAgICAgIDwvZGl2PiAtLT5cblxuICAgIDwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJ0b29sdGlwLWNvbnRhaW5lclwiPlxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9oZWxwLXRleHRcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICAgIDxidXR0b24gY2xhc3M9XCJpY29uLWJ0blwiPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfY3V0XCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgICA8YnV0dG9uIGNsYXNzPVwiaWNvbi1idG5cIj4gIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX2NvcHlcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICAgIDxidXR0b24gY2xhc3M9XCJpY29uLWJ0blwiPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfcGFzdGVcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cblxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCIgKGNsaWNrKT1cImRlbGV0ZSgpXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9kZWxldGVcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICA8L2Rpdj5cblxuICA8L25nLWNvbnRhaW5lcj4iXX0=
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { PropertiesService } from '../../../common-property-panel/properties/properties.service';
|
|
4
|
+
import { TextBox } from '../../../forms/page/widgets/textbox';
|
|
5
|
+
import { WidgetsService } from '../widgets.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../../common-property-panel/properties/properties.service";
|
|
8
|
+
import * as i2 from "../widgets.service";
|
|
9
|
+
function TextBoxComponent_ng_container_0_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementContainerStart(0);
|
|
11
|
+
i0.ɵɵelement(1, "mat-icon", 18);
|
|
12
|
+
i0.ɵɵelementContainerEnd();
|
|
13
|
+
} }
|
|
14
|
+
function TextBoxComponent_ng_container_0_ng_container_5_mat_icon_1_Template(rf, ctx) { if (rf & 1) {
|
|
15
|
+
i0.ɵɵelement(0, "mat-icon", 25);
|
|
16
|
+
} }
|
|
17
|
+
function TextBoxComponent_ng_container_0_ng_container_5_mat_icon_2_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
+
i0.ɵɵelement(0, "mat-icon", 26);
|
|
19
|
+
} }
|
|
20
|
+
function TextBoxComponent_ng_container_0_ng_container_5_mat_icon_3_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelement(0, "mat-icon", 27);
|
|
22
|
+
} }
|
|
23
|
+
function TextBoxComponent_ng_container_0_ng_container_5_mat_icon_4_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
i0.ɵɵelement(0, "mat-icon", 28);
|
|
25
|
+
} }
|
|
26
|
+
function TextBoxComponent_ng_container_0_ng_container_5_mat_icon_5_Template(rf, ctx) { if (rf & 1) {
|
|
27
|
+
i0.ɵɵelement(0, "mat-icon", 29);
|
|
28
|
+
} }
|
|
29
|
+
function TextBoxComponent_ng_container_0_ng_container_5_Template(rf, ctx) { if (rf & 1) {
|
|
30
|
+
i0.ɵɵelementContainerStart(0, 19);
|
|
31
|
+
i0.ɵɵtemplate(1, TextBoxComponent_ng_container_0_ng_container_5_mat_icon_1_Template, 1, 0, "mat-icon", 20);
|
|
32
|
+
i0.ɵɵtemplate(2, TextBoxComponent_ng_container_0_ng_container_5_mat_icon_2_Template, 1, 0, "mat-icon", 21);
|
|
33
|
+
i0.ɵɵtemplate(3, TextBoxComponent_ng_container_0_ng_container_5_mat_icon_3_Template, 1, 0, "mat-icon", 22);
|
|
34
|
+
i0.ɵɵtemplate(4, TextBoxComponent_ng_container_0_ng_container_5_mat_icon_4_Template, 1, 0, "mat-icon", 23);
|
|
35
|
+
i0.ɵɵtemplate(5, TextBoxComponent_ng_container_0_ng_container_5_mat_icon_5_Template, 1, 0, "mat-icon", 24);
|
|
36
|
+
i0.ɵɵelementContainerEnd();
|
|
37
|
+
} if (rf & 2) {
|
|
38
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
39
|
+
i0.ɵɵproperty("ngSwitch", ctx_r2.widget.inputType);
|
|
40
|
+
i0.ɵɵadvance(1);
|
|
41
|
+
i0.ɵɵproperty("ngSwitchCase", "numeric");
|
|
42
|
+
i0.ɵɵadvance(1);
|
|
43
|
+
i0.ɵɵproperty("ngSwitchCase", "decimal");
|
|
44
|
+
i0.ɵɵadvance(1);
|
|
45
|
+
i0.ɵɵproperty("ngSwitchCase", "email");
|
|
46
|
+
i0.ɵɵadvance(1);
|
|
47
|
+
i0.ɵɵproperty("ngSwitchCase", "phone");
|
|
48
|
+
} }
|
|
49
|
+
function TextBoxComponent_ng_container_0_ng_container_8_Template(rf, ctx) { if (rf & 1) {
|
|
50
|
+
i0.ɵɵelementContainerStart(0);
|
|
51
|
+
i0.ɵɵelement(1, "mat-icon", 30);
|
|
52
|
+
i0.ɵɵelementContainerEnd();
|
|
53
|
+
} }
|
|
54
|
+
function TextBoxComponent_ng_container_0_input_10_Template(rf, ctx) { if (rf & 1) {
|
|
55
|
+
i0.ɵɵelement(0, "input", 31);
|
|
56
|
+
} if (rf & 2) {
|
|
57
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
58
|
+
i0.ɵɵproperty("placeholder", ctx_r4.widget.placeholder ? ctx_r4.widget.placeholder : "write text here")("formControlName", ctx_r4.widget.id);
|
|
59
|
+
} }
|
|
60
|
+
function TextBoxComponent_ng_container_0_textarea_11_Template(rf, ctx) { if (rf & 1) {
|
|
61
|
+
i0.ɵɵelement(0, "textarea", 32);
|
|
62
|
+
} if (rf & 2) {
|
|
63
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
64
|
+
i0.ɵɵproperty("placeholder", ctx_r5.widget.placeholder ? ctx_r5.widget.placeholder : "write text here")("formControlName", ctx_r5.widget.id);
|
|
65
|
+
} }
|
|
66
|
+
function TextBoxComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
67
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
68
|
+
i0.ɵɵelementContainerStart(0);
|
|
69
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
70
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
71
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
72
|
+
i0.ɵɵtemplate(4, TextBoxComponent_ng_container_0_ng_container_4_Template, 2, 0, "ng-container", 0);
|
|
73
|
+
i0.ɵɵtemplate(5, TextBoxComponent_ng_container_0_ng_container_5_Template, 6, 5, "ng-container", 4);
|
|
74
|
+
i0.ɵɵelementStart(6, "form", 5);
|
|
75
|
+
i0.ɵɵelementStart(7, "input", 6);
|
|
76
|
+
i0.ɵɵlistener("ngModelChange", function TextBoxComponent_ng_container_0_Template_input_ngModelChange_7_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r11 = i0.ɵɵnextContext(); return ctx_r11.widget.prompt = $event; });
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
i0.ɵɵelementEnd();
|
|
80
|
+
i0.ɵɵtemplate(8, TextBoxComponent_ng_container_0_ng_container_8_Template, 2, 0, "ng-container", 0);
|
|
81
|
+
i0.ɵɵelementEnd();
|
|
82
|
+
i0.ɵɵelementStart(9, "div", 7);
|
|
83
|
+
i0.ɵɵlistener("click", function TextBoxComponent_ng_container_0_Template_div_click_9_listener() { i0.ɵɵrestoreView(_r12); const ctx_r13 = i0.ɵɵnextContext(); return ctx_r13.onWidgetClick(); });
|
|
84
|
+
i0.ɵɵtemplate(10, TextBoxComponent_ng_container_0_input_10_Template, 1, 2, "input", 8);
|
|
85
|
+
i0.ɵɵtemplate(11, TextBoxComponent_ng_container_0_textarea_11_Template, 1, 2, "textarea", 9);
|
|
86
|
+
i0.ɵɵelementEnd();
|
|
87
|
+
i0.ɵɵelementEnd();
|
|
88
|
+
i0.ɵɵelementStart(12, "div", 10);
|
|
89
|
+
i0.ɵɵelementStart(13, "button", 11);
|
|
90
|
+
i0.ɵɵelement(14, "mat-icon", 12);
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵelementStart(15, "button", 11);
|
|
93
|
+
i0.ɵɵelement(16, "mat-icon", 13);
|
|
94
|
+
i0.ɵɵelementEnd();
|
|
95
|
+
i0.ɵɵelementStart(17, "button", 11);
|
|
96
|
+
i0.ɵɵelement(18, "mat-icon", 14);
|
|
97
|
+
i0.ɵɵelementEnd();
|
|
98
|
+
i0.ɵɵelementStart(19, "button", 11);
|
|
99
|
+
i0.ɵɵelement(20, "mat-icon", 15);
|
|
100
|
+
i0.ɵɵelementEnd();
|
|
101
|
+
i0.ɵɵelementStart(21, "button", 16);
|
|
102
|
+
i0.ɵɵlistener("click", function TextBoxComponent_ng_container_0_Template_button_click_21_listener() { i0.ɵɵrestoreView(_r12); const ctx_r14 = i0.ɵɵnextContext(); return ctx_r14.delete(); });
|
|
103
|
+
i0.ɵɵelement(22, "mat-icon", 17);
|
|
104
|
+
i0.ɵɵelementEnd();
|
|
105
|
+
i0.ɵɵelementEnd();
|
|
106
|
+
i0.ɵɵelementContainerEnd();
|
|
107
|
+
} if (rf & 2) {
|
|
108
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
109
|
+
i0.ɵɵadvance(1);
|
|
110
|
+
i0.ɵɵproperty("formGroup", ctx_r0.group)("id", ctx_r0.widget.id);
|
|
111
|
+
i0.ɵɵadvance(3);
|
|
112
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.isMultiline);
|
|
113
|
+
i0.ɵɵadvance(1);
|
|
114
|
+
i0.ɵɵproperty("ngIf", !ctx_r0.widget.isMultiline);
|
|
115
|
+
i0.ɵɵadvance(1);
|
|
116
|
+
i0.ɵɵproperty("formGroupName", ctx_r0.widget.id + "_group");
|
|
117
|
+
i0.ɵɵadvance(1);
|
|
118
|
+
i0.ɵɵproperty("ngModel", ctx_r0.widget.prompt)("formControlName", ctx_r0.widget.id + "_prompt");
|
|
119
|
+
i0.ɵɵadvance(1);
|
|
120
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.isHidden);
|
|
121
|
+
i0.ɵɵadvance(1);
|
|
122
|
+
i0.ɵɵproperty("ngClass", ctx_r0.widget.isMultiline ? "text-area" : "form-field-input");
|
|
123
|
+
i0.ɵɵadvance(1);
|
|
124
|
+
i0.ɵɵproperty("ngIf", !ctx_r0.widget.isMultiline);
|
|
125
|
+
i0.ɵɵadvance(1);
|
|
126
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.isMultiline);
|
|
127
|
+
} }
|
|
128
|
+
export class TextBoxComponent {
|
|
129
|
+
// --------------------------------------------
|
|
130
|
+
/**
|
|
131
|
+
* constructor
|
|
132
|
+
*
|
|
133
|
+
* @param _propertiesService
|
|
134
|
+
*/
|
|
135
|
+
constructor(_propertiesService, _widgetProperties) {
|
|
136
|
+
this._propertiesService = _propertiesService;
|
|
137
|
+
this._widgetProperties = _widgetProperties;
|
|
138
|
+
}
|
|
139
|
+
// -----------------------------------------------------------------------------------------------------
|
|
140
|
+
// @ Lifecycle hooks start
|
|
141
|
+
// -----------------------------------------------------------------------------------------------------
|
|
142
|
+
/**
|
|
143
|
+
* on init
|
|
144
|
+
*/
|
|
145
|
+
ngOnInit() {
|
|
146
|
+
}
|
|
147
|
+
// -----------------------------------------------------------------------------------------------------
|
|
148
|
+
// @ Lifecycle hooks end
|
|
149
|
+
// -----------------------------------------------------------------------------------------------------
|
|
150
|
+
/**
|
|
151
|
+
* to emit widgetClickEvent to show properties of selected widget
|
|
152
|
+
*/
|
|
153
|
+
onWidgetClick() {
|
|
154
|
+
this._propertiesService.widgetClickEvent(this.widget);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* to emit widgetDeleteEvent to Delete Widget
|
|
158
|
+
*/
|
|
159
|
+
delete() {
|
|
160
|
+
this._widgetProperties.widgetDeleteEvent(this.widget);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
TextBoxComponent.ɵfac = function TextBoxComponent_Factory(t) { return new (t || TextBoxComponent)(i0.ɵɵdirectiveInject(i1.PropertiesService), i0.ɵɵdirectiveInject(i2.WidgetsService)); };
|
|
164
|
+
TextBoxComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TextBoxComponent, selectors: [["widget-textBox"]], inputs: { widget: "widget", group: "group" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "text-widget", 3, "formGroup", "id"], [1, "flex", "gap-2", "justify-between"], [1, "flex", "gap-2", "items-center"], [3, "ngSwitch", 4, "ngIf"], [3, "formGroupName"], ["matInput", "", 3, "ngModel", "formControlName", "ngModelChange"], [3, "ngClass", "click"], ["readonly", "true", 3, "placeholder", "formControlName", 4, "ngIf"], ["readonly", "true", "rows", "3", 3, "placeholder", "formControlName", 4, "ngIf"], [1, "tooltip-container"], [1, "icon-btn"], ["svgIcon", "axo_sculptor_help-text", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_cut", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_copy", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_paste", 1, "h-4", "min-h-4", "w-4", "min-w-4"], [1, "icon-btn", 3, "click"], ["svgIcon", "axo_sculptor_delete", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_multilinetext", 1, "h-4", "w-4", "min-w-4", "min-h-4"], [3, "ngSwitch"], ["svgIcon", "axo_sculptor_number", "class", "h-4 w-4 min-w-4 min-h-4", 4, "ngSwitchCase"], ["svgIcon", "axo_sculptor_decimal", "class", "h-4 w-4 min-w-4 min-h-4", 4, "ngSwitchCase"], ["svgIcon", "axo_sculptor_email", "class", "h-4 w-4 min-w-4 min-h-4", 4, "ngSwitchCase"], ["svgIcon", "axo_sculptor_phone", "class", "h-4 w-4 min-w-4 min-h-4", 4, "ngSwitchCase"], ["svgIcon", "axo_sculptor_text", "class", "h-4 w-4 min-w-4 min-h-4", 4, "ngSwitchDefault"], ["svgIcon", "axo_sculptor_number", 1, "h-4", "w-4", "min-w-4", "min-h-4"], ["svgIcon", "axo_sculptor_decimal", 1, "h-4", "w-4", "min-w-4", "min-h-4"], ["svgIcon", "axo_sculptor_email", 1, "h-4", "w-4", "min-w-4", "min-h-4"], ["svgIcon", "axo_sculptor_phone", 1, "h-4", "w-4", "min-w-4", "min-h-4"], ["svgIcon", "axo_sculptor_text", 1, "h-4", "w-4", "min-w-4", "min-h-4"], ["svgIcon", "axo_sculptor_close_eye", 1, "h-4", "w-4", "min-w-4", "min-h-4"], ["readonly", "true", 3, "placeholder", "formControlName"], ["readonly", "true", "rows", "3", 3, "placeholder", "formControlName"]], template: function TextBoxComponent_Template(rf, ctx) { if (rf & 1) {
|
|
165
|
+
i0.ɵɵtemplate(0, TextBoxComponent_ng_container_0_Template, 23, 11, "ng-container", 0);
|
|
166
|
+
} if (rf & 2) {
|
|
167
|
+
i0.ɵɵproperty("ngIf", ctx.widget);
|
|
168
|
+
} }, styles: ["widget-textBox .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}widget-textBox .text-widget:hover{background-color:#eaeaea}widget-textBox .text-widget .form-field-input input{border:1px solid #B1B9CD;height:38px;border-radius:5px;padding:0 10px;margin-top:12px;box-sizing:border-box;width:100%;cursor:pointer}widget-textBox .text-widget .text-area{cursor:pointer}widget-textBox .text-widget .text-area textarea{border:1px solid #B1B9CD;border-radius:5px;padding:10px;margin-top:12px;box-sizing:border-box;width:100%;cursor:pointer}\n"], encapsulation: 2 });
|
|
169
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TextBoxComponent, [{
|
|
170
|
+
type: Component,
|
|
171
|
+
args: [{ selector: 'widget-textBox', encapsulation: ViewEncapsulation.None, template: "<!-- Text box widget -->\n<ng-container *ngIf=\"widget\">\n <div [formGroup]=\"group\" class=\"text-widget\" [id]=\"widget.id\">\n <div class=\"flex gap-2 justify-between\">\n <div class=\"flex gap-2 items-center\">\n <ng-container *ngIf=\"widget.isMultiline\">\n <mat-icon svgIcon=\"axo_sculptor_multilinetext\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n </ng-container>\n <ng-container *ngIf=\"!widget.isMultiline\" [ngSwitch]=\"widget.inputType\">\n <mat-icon *ngSwitchCase=\"'numeric'\" svgIcon=\"axo_sculptor_number\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <mat-icon *ngSwitchCase=\"'decimal'\" svgIcon=\"axo_sculptor_decimal\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <mat-icon *ngSwitchCase=\"'email'\" svgIcon=\"axo_sculptor_email\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <mat-icon *ngSwitchCase=\"'phone'\" svgIcon=\"axo_sculptor_phone\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <mat-icon *ngSwitchDefault svgIcon=\"axo_sculptor_text\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n </ng-container>\n <form [formGroupName]=\"this.widget.id + '_group'\">\n <input matInput [(ngModel)]='widget.prompt' [formControlName]=\"widget.id + '_prompt' \" />\n </form>\n </div>\n <ng-container *ngIf=\"widget.isHidden\">\n <mat-icon svgIcon=\"axo_sculptor_close_eye\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n </ng-container>\n \n \n </div>\n \n <div (click)=\"onWidgetClick()\" [ngClass]=\"widget.isMultiline ? 'text-area' :'form-field-input'\">\n <input [placeholder]=\"widget.placeholder?widget.placeholder:'write text here'\" readonly=true\n [formControlName]=\"widget.id\" *ngIf=\"!widget.isMultiline\"/>\n <textarea [placeholder]=\"widget.placeholder?widget.placeholder:'write text here'\" readonly=true\n [formControlName]=\"widget.id\" *ngIf=\"widget.isMultiline\" rows=\"3\"></textarea>\n </div>\n </div>\n <div class=\"tooltip-container\">\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_help-text\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_cut\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_copy\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_paste\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n \n <button class=\"icon-btn\" (click)=\"delete()\"> <mat-icon svgIcon=\"axo_sculptor_delete\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n </div>\n\n</ng-container>", styles: ["widget-textBox .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}widget-textBox .text-widget:hover{background-color:#eaeaea}widget-textBox .text-widget .form-field-input input{border:1px solid #B1B9CD;height:38px;border-radius:5px;padding:0 10px;margin-top:12px;box-sizing:border-box;width:100%;cursor:pointer}widget-textBox .text-widget .text-area{cursor:pointer}widget-textBox .text-widget .text-area textarea{border:1px solid #B1B9CD;border-radius:5px;padding:10px;margin-top:12px;box-sizing:border-box;width:100%;cursor:pointer}\n"] }]
|
|
172
|
+
}], function () { return [{ type: i1.PropertiesService }, { type: i2.WidgetsService }]; }, { widget: [{
|
|
173
|
+
type: Input
|
|
174
|
+
}], group: [{
|
|
175
|
+
type: Input
|
|
176
|
+
}] }); })();
|
|
177
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGJveC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9zY3VscHRvci1saWIvd2lkZ2V0cy90ZXh0Ym94L3RleHRib3guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvc2N1bHB0b3ItbGliL3dpZGdldHMvdGV4dGJveC90ZXh0Ym94LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw4REFBOEQsQ0FBQztBQUNqRyxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDOUQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDOzs7OztJQ0M1Qyw2QkFBeUM7SUFDdkMsK0JBQTBGO0lBQzVGLDBCQUFlOzs7SUFFYiwrQkFBNkc7OztJQUM3RywrQkFBOEc7OztJQUM5RywrQkFBMEc7OztJQUMxRywrQkFBMEc7OztJQUMxRywrQkFBa0c7OztJQUxwRyxpQ0FBd0U7SUFDdEUsMEdBQTZHO0lBQzdHLDBHQUE4RztJQUM5RywwR0FBMEc7SUFDMUcsMEdBQTBHO0lBQzFHLDBHQUFrRztJQUNwRywwQkFBZTs7O0lBTjJCLGtEQUE2QjtJQUMxRCxlQUF1QjtJQUF2Qix3Q0FBdUI7SUFDdkIsZUFBdUI7SUFBdkIsd0NBQXVCO0lBQ3ZCLGVBQXFCO0lBQXJCLHNDQUFxQjtJQUNyQixlQUFxQjtJQUFyQixzQ0FBcUI7OztJQU9wQyw2QkFBc0M7SUFDcEMsK0JBQXNGO0lBQ3hGLDBCQUFlOzs7SUFNZiw0QkFDNkQ7OztJQUR0RCx1R0FBdUUscUNBQUE7OztJQUU1RSwrQkFDNkU7OztJQURuRSx1R0FBdUUscUNBQUE7Ozs7SUE1QnpGLDZCQUE2QjtJQUMzQiw4QkFBOEQ7SUFDNUQsOEJBQXdDO0lBQ3RDLDhCQUFxQztJQUNuQyxrR0FFZTtJQUNmLGtHQU1lO0lBQ2YsK0JBQWtEO0lBQ2hELGdDQUF5RjtJQUF6RSwrTkFBMkI7SUFBM0MsaUJBQXlGO0lBQzNGLGlCQUFPO0lBQ1QsaUJBQU07SUFDTixrR0FFZTtJQUdqQixpQkFBTTtJQUVOLDhCQUFnRztJQUEzRixxS0FBUyx1QkFBZSxJQUFDO0lBQzVCLHNGQUM2RDtJQUMzRCw0RkFDNkU7SUFDakYsaUJBQU07SUFDUixpQkFBTTtJQUNOLGdDQUErQjtJQUM3QixtQ0FBeUI7SUFBRSxnQ0FBc0Y7SUFBQSxpQkFBUztJQUMxSCxtQ0FBeUI7SUFBRSxnQ0FBZ0Y7SUFBQSxpQkFBUztJQUNwSCxtQ0FBeUI7SUFBRSxnQ0FBaUY7SUFBQSxpQkFBUztJQUNySCxtQ0FBeUI7SUFBRSxnQ0FBa0Y7SUFBQSxpQkFBUztJQUV0SCxtQ0FBNEM7SUFBbkIseUtBQVMsZ0JBQVEsSUFBQztJQUFHLGdDQUFtRjtJQUFBLGlCQUFTO0lBQzVJLGlCQUFNO0lBRVIsMEJBQWU7OztJQXhDUixlQUFtQjtJQUFuQix3Q0FBbUIsd0JBQUE7SUFHSCxlQUF3QjtJQUF4QixnREFBd0I7SUFHeEIsZUFBeUI7SUFBekIsaURBQXlCO0lBT2xDLGVBQTJDO0lBQTNDLDJEQUEyQztJQUMvQixlQUEyQjtJQUEzQiw4Q0FBMkIsaURBQUE7SUFHaEMsZUFBcUI7SUFBckIsNkNBQXFCO0lBT1AsZUFBZ0U7SUFBaEUsc0ZBQWdFO0lBRTVELGVBQXlCO0lBQXpCLGlEQUF5QjtJQUV6QixlQUF3QjtJQUF4QixnREFBd0I7O0FEbkIvRCxNQUFNLE9BQU8sZ0JBQWdCO0lBSTNCLCtDQUErQztJQUMvQzs7OztPQUlHO0lBQ0gsWUFDVSxrQkFBcUMsRUFDckMsaUJBQWlDO1FBRGpDLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBbUI7UUFDckMsc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFnQjtJQUN2QyxDQUFDO0lBRUwsd0dBQXdHO0lBQ3hHLDBCQUEwQjtJQUMxQix3R0FBd0c7SUFDeEc7O09BRUc7SUFDSCxRQUFRO0lBQ1IsQ0FBQztJQUNELHdHQUF3RztJQUN4Ryx3QkFBd0I7SUFDeEIsd0dBQXdHO0lBRXhHOztPQUVHO0lBQ0gsYUFBYTtRQUNYLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDeEQsQ0FBQztJQUVEOztPQUVHO0lBQ0gsTUFBTTtRQUNKLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDeEQsQ0FBQzs7Z0ZBdkNVLGdCQUFnQjttRUFBaEIsZ0JBQWdCO1FDVjdCLHFGQXlDZTs7UUF6Q0EsaUNBQVk7O3VGRFVkLGdCQUFnQjtjQU41QixTQUFTOzJCQUNFLGdCQUFnQixpQkFHWCxpQkFBaUIsQ0FBQyxJQUFJO2lHQUk1QixNQUFNO2tCQUFkLEtBQUs7WUFDRyxLQUFLO2tCQUFiLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtR3JvdXAgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBQcm9wZXJ0aWVzU2VydmljZSB9IGZyb20gJy4uLy4uLy4uL2NvbW1vbi1wcm9wZXJ0eS1wYW5lbC9wcm9wZXJ0aWVzL3Byb3BlcnRpZXMuc2VydmljZSc7XG5pbXBvcnQgeyBUZXh0Qm94IH0gZnJvbSAnLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL3RleHRib3gnO1xuaW1wb3J0IHsgV2lkZ2V0c1NlcnZpY2UgfSBmcm9tICcuLi93aWRnZXRzLnNlcnZpY2UnO1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnd2lkZ2V0LXRleHRCb3gnLFxuICB0ZW1wbGF0ZVVybDogJy4vdGV4dGJveC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3RleHRib3guY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBUZXh0Qm94Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgLy8gLS0tLS0tLS0tLS0tLS0taW5wdXRzLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICBASW5wdXQoKSB3aWRnZXQ6IFRleHRCb3g7XG4gIEBJbnB1dCgpIGdyb3VwOiBGb3JtR3JvdXA7XG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIC8qKlxuICAgKiBjb25zdHJ1Y3RvclxuICAgKlxuICAgKiBAcGFyYW0gX3Byb3BlcnRpZXNTZXJ2aWNlXG4gICAqL1xuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIF9wcm9wZXJ0aWVzU2VydmljZTogUHJvcGVydGllc1NlcnZpY2UsXG4gICAgcHJpdmF0ZSBfd2lkZ2V0UHJvcGVydGllczogV2lkZ2V0c1NlcnZpY2VcbiAgKSB7IH1cblxuICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAvLyBAIExpZmVjeWNsZSBob29rcyBzdGFydFxuICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAvKipcbiAgICogb24gaW5pdFxuICAgKi9cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgLy8gQCBMaWZlY3ljbGUgaG9va3MgZW5kXG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cbiAgLyoqXG4gICAqIHRvIGVtaXQgd2lkZ2V0Q2xpY2tFdmVudCB0byBzaG93IHByb3BlcnRpZXMgb2Ygc2VsZWN0ZWQgd2lkZ2V0XG4gICAqL1xuICBvbldpZGdldENsaWNrKCk6IHZvaWQge1xuICAgIHRoaXMuX3Byb3BlcnRpZXNTZXJ2aWNlLndpZGdldENsaWNrRXZlbnQodGhpcy53aWRnZXQpO1xuICB9XG5cbiAgLyoqXG4gICAqIHRvIGVtaXQgd2lkZ2V0RGVsZXRlRXZlbnQgdG8gRGVsZXRlIFdpZGdldFxuICAgKi9cbiAgZGVsZXRlKCk6IHZvaWQge1xuICAgIHRoaXMuX3dpZGdldFByb3BlcnRpZXMud2lkZ2V0RGVsZXRlRXZlbnQodGhpcy53aWRnZXQpO1xuICB9XG59XG4iLCI8IS0tIFRleHQgYm94IHdpZGdldCAtLT5cbjxuZy1jb250YWluZXIgKm5nSWY9XCJ3aWRnZXRcIj5cbiAgPGRpdiBbZm9ybUdyb3VwXT1cImdyb3VwXCIgY2xhc3M9XCJ0ZXh0LXdpZGdldFwiIFtpZF09XCJ3aWRnZXQuaWRcIj5cbiAgICA8ZGl2IGNsYXNzPVwiZmxleCBnYXAtMiBqdXN0aWZ5LWJldHdlZW5cIj5cbiAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGdhcC0yIGl0ZW1zLWNlbnRlclwiPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwid2lkZ2V0LmlzTXVsdGlsaW5lXCI+XG4gICAgICAgICAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfbXVsdGlsaW5ldGV4dFwiIGNsYXNzPVwiaC00IHctNCBtaW4tdy00IG1pbi1oLTRcIj48L21hdC1pY29uPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiF3aWRnZXQuaXNNdWx0aWxpbmVcIiBbbmdTd2l0Y2hdPVwid2lkZ2V0LmlucHV0VHlwZVwiPlxuICAgICAgICAgIDxtYXQtaWNvbiAqbmdTd2l0Y2hDYXNlPVwiJ251bWVyaWMnXCIgc3ZnSWNvbj1cImF4b19zY3VscHRvcl9udW1iZXJcIiBjbGFzcz1cImgtNCB3LTQgbWluLXctNCBtaW4taC00XCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICA8bWF0LWljb24gKm5nU3dpdGNoQ2FzZT1cIidkZWNpbWFsJ1wiIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfZGVjaW1hbFwiIGNsYXNzPVwiaC00IHctNCBtaW4tdy00IG1pbi1oLTRcIj48L21hdC1pY29uPlxuICAgICAgICAgIDxtYXQtaWNvbiAqbmdTd2l0Y2hDYXNlPVwiJ2VtYWlsJ1wiIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfZW1haWxcIiBjbGFzcz1cImgtNCB3LTQgbWluLXctNCBtaW4taC00XCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICA8bWF0LWljb24gKm5nU3dpdGNoQ2FzZT1cIidwaG9uZSdcIiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX3Bob25lXCIgY2xhc3M9XCJoLTQgdy00IG1pbi13LTQgbWluLWgtNFwiPjwvbWF0LWljb24+XG4gICAgICAgICAgPG1hdC1pY29uICpuZ1N3aXRjaERlZmF1bHQgc3ZnSWNvbj1cImF4b19zY3VscHRvcl90ZXh0XCIgY2xhc3M9XCJoLTQgdy00IG1pbi13LTQgbWluLWgtNFwiPjwvbWF0LWljb24+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8Zm9ybSBbZm9ybUdyb3VwTmFtZV09XCJ0aGlzLndpZGdldC5pZCArICdfZ3JvdXAnXCI+XG4gICAgICAgICAgPGlucHV0IG1hdElucHV0IFsobmdNb2RlbCldPSd3aWRnZXQucHJvbXB0JyBbZm9ybUNvbnRyb2xOYW1lXT1cIndpZGdldC5pZCArICdfcHJvbXB0JyBcIiAvPlxuICAgICAgICA8L2Zvcm0+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ3aWRnZXQuaXNIaWRkZW5cIj5cbiAgICAgICAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfY2xvc2VfZXllXCIgY2xhc3M9XCJoLTQgdy00IG1pbi13LTQgbWluLWgtNFwiPjwvbWF0LWljb24+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgIFxuICAgICAgXG4gICAgPC9kaXY+XG4gICBcbiAgICA8ZGl2IChjbGljayk9XCJvbldpZGdldENsaWNrKClcIiBbbmdDbGFzc109XCJ3aWRnZXQuaXNNdWx0aWxpbmUgPyAndGV4dC1hcmVhJyA6J2Zvcm0tZmllbGQtaW5wdXQnXCI+XG4gICAgICA8aW5wdXQgW3BsYWNlaG9sZGVyXT1cIndpZGdldC5wbGFjZWhvbGRlcj93aWRnZXQucGxhY2Vob2xkZXI6J3dyaXRlIHRleHQgaGVyZSdcIiByZWFkb25seT10cnVlXG4gICAgICAgIFtmb3JtQ29udHJvbE5hbWVdPVwid2lkZ2V0LmlkXCIgKm5nSWY9XCIhd2lkZ2V0LmlzTXVsdGlsaW5lXCIvPlxuICAgICAgICA8dGV4dGFyZWEgW3BsYWNlaG9sZGVyXT1cIndpZGdldC5wbGFjZWhvbGRlcj93aWRnZXQucGxhY2Vob2xkZXI6J3dyaXRlIHRleHQgaGVyZSdcIiByZWFkb25seT10cnVlXG4gICAgICAgIFtmb3JtQ29udHJvbE5hbWVdPVwid2lkZ2V0LmlkXCIgKm5nSWY9XCJ3aWRnZXQuaXNNdWx0aWxpbmVcIiByb3dzPVwiM1wiPjwvdGV4dGFyZWE+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuICA8ZGl2IGNsYXNzPVwidG9vbHRpcC1jb250YWluZXJcIj5cbiAgICA8YnV0dG9uIGNsYXNzPVwiaWNvbi1idG5cIj4gIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX2hlbHAtdGV4dFwiIGNsYXNzPVwiaC00IG1pbi1oLTQgdy00IG1pbi13LTRcIj48L21hdC1pY29uPjwvYnV0dG9uPlxuICAgIDxidXR0b24gY2xhc3M9XCJpY29uLWJ0blwiPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfY3V0XCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9jb3B5XCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9wYXN0ZVwiIGNsYXNzPVwiaC00IG1pbi1oLTQgdy00IG1pbi13LTRcIj48L21hdC1pY29uPjwvYnV0dG9uPlxuICAgXG4gICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCIgKGNsaWNrKT1cImRlbGV0ZSgpXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9kZWxldGVcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgPC9kaXY+XG5cbjwvbmctY29udGFpbmVyPiJdfQ==
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { PropertiesService } from '../../../common-property-panel/properties/properties.service';
|
|
4
|
+
import { TimeStamp } from '../../../forms/page/widgets/timestamp';
|
|
5
|
+
import { WidgetsService } from '../widgets.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../../common-property-panel/properties/properties.service";
|
|
8
|
+
import * as i2 from "../widgets.service";
|
|
9
|
+
function TimestampComponent_ng_container_0_ng_container_7_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementContainerStart(0);
|
|
11
|
+
i0.ɵɵelement(1, "mat-icon", 17);
|
|
12
|
+
i0.ɵɵelementContainerEnd();
|
|
13
|
+
} }
|
|
14
|
+
function TimestampComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
15
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
16
|
+
i0.ɵɵelementContainerStart(0);
|
|
17
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
18
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
19
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
20
|
+
i0.ɵɵelement(4, "mat-icon", 4);
|
|
21
|
+
i0.ɵɵelementStart(5, "form", 5);
|
|
22
|
+
i0.ɵɵelementStart(6, "input", 6);
|
|
23
|
+
i0.ɵɵlistener("ngModelChange", function TimestampComponent_ng_container_0_Template_input_ngModelChange_6_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return ctx_r2.widget.prompt = $event; });
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
i0.ɵɵtemplate(7, TimestampComponent_ng_container_0_ng_container_7_Template, 2, 0, "ng-container", 0);
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
i0.ɵɵelementStart(8, "div", 7);
|
|
30
|
+
i0.ɵɵlistener("click", function TimestampComponent_ng_container_0_Template_div_click_8_listener() { i0.ɵɵrestoreView(_r3); const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.onWidgetClick(); });
|
|
31
|
+
i0.ɵɵelementStart(9, "div", 8);
|
|
32
|
+
i0.ɵɵtext(10, "Tap here to Add Audio");
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
i0.ɵɵelementEnd();
|
|
36
|
+
i0.ɵɵelementStart(11, "div", 9);
|
|
37
|
+
i0.ɵɵelementStart(12, "button", 10);
|
|
38
|
+
i0.ɵɵelement(13, "mat-icon", 11);
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
i0.ɵɵelementStart(14, "button", 10);
|
|
41
|
+
i0.ɵɵelement(15, "mat-icon", 12);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
i0.ɵɵelementStart(16, "button", 10);
|
|
44
|
+
i0.ɵɵelement(17, "mat-icon", 13);
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
i0.ɵɵelementStart(18, "button", 10);
|
|
47
|
+
i0.ɵɵelement(19, "mat-icon", 14);
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵelementStart(20, "button", 15);
|
|
50
|
+
i0.ɵɵlistener("click", function TimestampComponent_ng_container_0_Template_button_click_20_listener() { i0.ɵɵrestoreView(_r3); const ctx_r5 = i0.ɵɵnextContext(); return ctx_r5.delete(); });
|
|
51
|
+
i0.ɵɵelement(21, "mat-icon", 16);
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
i0.ɵɵelementContainerEnd();
|
|
55
|
+
} if (rf & 2) {
|
|
56
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
57
|
+
i0.ɵɵadvance(1);
|
|
58
|
+
i0.ɵɵproperty("formGroup", ctx_r0.group)("id", ctx_r0.widget.id);
|
|
59
|
+
i0.ɵɵadvance(4);
|
|
60
|
+
i0.ɵɵproperty("formGroupName", ctx_r0.widget.id + "_group");
|
|
61
|
+
i0.ɵɵadvance(1);
|
|
62
|
+
i0.ɵɵproperty("ngModel", ctx_r0.widget.prompt)("formControlName", ctx_r0.widget.id + "_prompt");
|
|
63
|
+
i0.ɵɵadvance(1);
|
|
64
|
+
i0.ɵɵproperty("ngIf", ctx_r0.widget.isHidden);
|
|
65
|
+
} }
|
|
66
|
+
export class TimestampComponent {
|
|
67
|
+
// --------------------------------------------
|
|
68
|
+
/**
|
|
69
|
+
* constructor
|
|
70
|
+
*
|
|
71
|
+
* @param _propertiesService
|
|
72
|
+
*/
|
|
73
|
+
constructor(_propertiesService, _widgetProperties) {
|
|
74
|
+
this._propertiesService = _propertiesService;
|
|
75
|
+
this._widgetProperties = _widgetProperties;
|
|
76
|
+
}
|
|
77
|
+
// -----------------------------------------------------------------------------------------------------
|
|
78
|
+
// @ Lifecycle hooks start
|
|
79
|
+
// -----------------------------------------------------------------------------------------------------
|
|
80
|
+
/**
|
|
81
|
+
* on init
|
|
82
|
+
*/
|
|
83
|
+
ngOnInit() {
|
|
84
|
+
}
|
|
85
|
+
// -----------------------------------------------------------------------------------------------------
|
|
86
|
+
// @ Lifecycle hooks end
|
|
87
|
+
// -----------------------------------------------------------------------------------------------------
|
|
88
|
+
/**
|
|
89
|
+
* to emit widgetClickEvent to show properties of selected widget
|
|
90
|
+
*/
|
|
91
|
+
onWidgetClick() {
|
|
92
|
+
this._propertiesService.widgetClickEvent(this.widget);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* to emit widgetDeleteEvent to Delete Widget
|
|
96
|
+
*/
|
|
97
|
+
delete() {
|
|
98
|
+
this._widgetProperties.widgetDeleteEvent(this.widget);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
TimestampComponent.ɵfac = function TimestampComponent_Factory(t) { return new (t || TimestampComponent)(i0.ɵɵdirectiveInject(i1.PropertiesService), i0.ɵɵdirectiveInject(i2.WidgetsService)); };
|
|
102
|
+
TimestampComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TimestampComponent, selectors: [["lib-timestamp"]], inputs: { widget: "widget", group: "group" }, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "text-widget", 3, "formGroup", "id"], [1, "flex", "gap-2", "justify-between"], [1, "flex", "gap-2", "items-center"], ["svgIcon", "axo_sculptor_timestamp", 1, "h-4", "w-4", "min-w-4", "min-h-4"], [3, "formGroupName"], ["matInput", "", 3, "ngModel", "formControlName", "ngModelChange"], [1, "form-field-input", 3, "click"], [1, "placeholder-text", "mt-3"], [1, "tooltip-container"], [1, "icon-btn"], ["svgIcon", "axo_sculptor_help-text", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_cut", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_copy", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_paste", 1, "h-4", "min-h-4", "w-4", "min-w-4"], [1, "icon-btn", 3, "click"], ["svgIcon", "axo_sculptor_delete", 1, "h-4", "min-h-4", "w-4", "min-w-4"], ["svgIcon", "axo_sculptor_close_eye", 1, "h-4", "w-4", "min-w-4", "min-h-4"]], template: function TimestampComponent_Template(rf, ctx) { if (rf & 1) {
|
|
103
|
+
i0.ɵɵtemplate(0, TimestampComponent_ng_container_0_Template, 22, 6, "ng-container", 0);
|
|
104
|
+
} if (rf & 2) {
|
|
105
|
+
i0.ɵɵproperty("ngIf", ctx.widget);
|
|
106
|
+
} }, styles: ["lib-timestamp .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}lib-timestamp .text-widget:hover{background-color:#eaeaea}\n"], encapsulation: 2 });
|
|
107
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimestampComponent, [{
|
|
108
|
+
type: Component,
|
|
109
|
+
args: [{ selector: 'lib-timestamp', encapsulation: ViewEncapsulation.None, template: "<!-- Time Stamp widget -->\n<ng-container *ngIf=\"widget\">\n <div [formGroup]=\"group\" class=\"text-widget\" [id]=\"widget.id\">\n <div class=\"flex gap-2 justify-between\">\n <div class=\"flex gap-2 items-center\">\n <mat-icon svgIcon=\"axo_sculptor_timestamp\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n <form [formGroupName]=\"this.widget.id + '_group'\">\n <input matInput [(ngModel)]='widget.prompt' [formControlName]=\"widget.id + '_prompt' \" />\n </form>\n </div>\n <ng-container *ngIf=\"widget.isHidden\">\n <mat-icon svgIcon=\"axo_sculptor_close_eye\" class=\"h-4 w-4 min-w-4 min-h-4\"></mat-icon>\n </ng-container>\n </div>\n \n <div (click)=\"onWidgetClick()\" class ='form-field-input'>\n <div class=\"placeholder-text mt-3\">Tap here to Add Audio</div>\n </div>\n\n </div>\n <div class=\"tooltip-container\">\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_help-text\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_cut\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_copy\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n <button class=\"icon-btn\"> <mat-icon svgIcon=\"axo_sculptor_paste\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n\n <button class=\"icon-btn\" (click)=\"delete()\"> <mat-icon svgIcon=\"axo_sculptor_delete\" class=\"h-4 min-h-4 w-4 min-w-4\"></mat-icon></button>\n </div>\n\n </ng-container>", styles: ["lib-timestamp .text-widget{background:#ffffff;border:1px solid #CED0DD;padding:1rem;border-radius:10px}lib-timestamp .text-widget:hover{background-color:#eaeaea}\n"] }]
|
|
110
|
+
}], function () { return [{ type: i1.PropertiesService }, { type: i2.WidgetsService }]; }, { widget: [{
|
|
111
|
+
type: Input
|
|
112
|
+
}], group: [{
|
|
113
|
+
type: Input
|
|
114
|
+
}] }); })();
|
|
115
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGltZXN0YW1wLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9heC1hcHAtY29tbW9uLWxpYi9zcmMvbGliL3NjdWxwdG9yLWxpYi93aWRnZXRzL3RpbWVzdGFtcC90aW1lc3RhbXAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvc2N1bHB0b3ItbGliL3dpZGdldHMvdGltZXN0YW1wL3RpbWVzdGFtcC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDM0MsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDakcsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQzs7Ozs7SUNNeEMsNkJBQXNDO0lBQ3BDLCtCQUFzRjtJQUN4RiwwQkFBZTs7OztJQVgzQiw2QkFBNkI7SUFDekIsOEJBQThEO0lBQzFELDhCQUF3QztJQUNwQyw4QkFBcUM7SUFDakMsOEJBQXNGO0lBQ3hGLCtCQUFrRDtJQUNoRCxnQ0FBeUY7SUFBekUsOE5BQTJCO0lBQTNDLGlCQUF5RjtJQUMzRixpQkFBTztJQUNULGlCQUFNO0lBQ04sb0dBRWU7SUFDbkIsaUJBQU07SUFFUiw4QkFBeUQ7SUFBcEQscUtBQVMsc0JBQWUsSUFBQztJQUMxQiw4QkFBbUM7SUFBQSxzQ0FBcUI7SUFBQSxpQkFBTTtJQUNsRSxpQkFBTTtJQUVSLGlCQUFNO0lBQ04sK0JBQStCO0lBQzdCLG1DQUF5QjtJQUFFLGdDQUFzRjtJQUFBLGlCQUFTO0lBQzFILG1DQUF5QjtJQUFFLGdDQUFnRjtJQUFBLGlCQUFTO0lBQ3BILG1DQUF5QjtJQUFFLGdDQUFpRjtJQUFBLGlCQUFTO0lBQ3JILG1DQUF5QjtJQUFFLGdDQUFrRjtJQUFBLGlCQUFTO0lBRXRILG1DQUE0QztJQUFuQix5S0FBUyxlQUFRLElBQUM7SUFBRyxnQ0FBbUY7SUFBQSxpQkFBUztJQUM1SSxpQkFBTTtJQUVSLDBCQUFlOzs7SUEzQlIsZUFBbUI7SUFBbkIsd0NBQW1CLHdCQUFBO0lBSVIsZUFBMkM7SUFBM0MsMkRBQTJDO0lBQy9CLGVBQTJCO0lBQTNCLDhDQUEyQixpREFBQTtJQUdoQyxlQUFxQjtJQUFyQiw2Q0FBcUI7O0FERWhELE1BQU0sT0FBTyxrQkFBa0I7SUFJN0IsK0NBQStDO0lBQy9DOzs7O09BSUc7SUFDSCxZQUNVLGtCQUFxQyxFQUNyQyxpQkFBaUM7UUFEakMsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFtQjtRQUNyQyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQWdCO0lBRXZDLENBQUM7SUFFTCx3R0FBd0c7SUFDeEcsMEJBQTBCO0lBQzFCLHdHQUF3RztJQUN4Rzs7T0FFRztJQUNILFFBQVE7SUFDUixDQUFDO0lBQ0Qsd0dBQXdHO0lBQ3hHLHdCQUF3QjtJQUN4Qix3R0FBd0c7SUFFeEc7O09BRUc7SUFDSCxhQUFhO1FBQ1gsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBQ0M7O0tBRUM7SUFDRCxNQUFNO1FBQ0osSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUN4RCxDQUFDOztvRkF2Q1Esa0JBQWtCO3FFQUFsQixrQkFBa0I7UUNYL0Isc0ZBNEJpQjs7UUE1QkYsaUNBQVk7O3VGRFdkLGtCQUFrQjtjQU45QixTQUFTOzJCQUNFLGVBQWUsaUJBR1YsaUJBQWlCLENBQUMsSUFBSTtpR0FJNUIsTUFBTTtrQkFBZCxLQUFLO1lBQ0csS0FBSztrQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUdyb3VwIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgUHJvcGVydGllc1NlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9jb21tb24tcHJvcGVydHktcGFuZWwvcHJvcGVydGllcy9wcm9wZXJ0aWVzLnNlcnZpY2UnO1xuaW1wb3J0IHsgVGltZVN0YW1wIH0gZnJvbSAnLi4vLi4vLi4vZm9ybXMvcGFnZS93aWRnZXRzL3RpbWVzdGFtcCc7XG5pbXBvcnQgeyBXaWRnZXRzU2VydmljZSB9IGZyb20gJy4uL3dpZGdldHMuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi10aW1lc3RhbXAnLFxuICB0ZW1wbGF0ZVVybDogJy4vdGltZXN0YW1wLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdGltZXN0YW1wLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgVGltZXN0YW1wQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgLy8gLS0tLS0tLS0tLS0tLS0taW5wdXRzLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICBASW5wdXQoKSB3aWRnZXQ6IFRpbWVTdGFtcDtcbiAgQElucHV0KCkgZ3JvdXA6IEZvcm1Hcm91cDtcbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgLyoqXG4gICAqIGNvbnN0cnVjdG9yXG4gICAqXG4gICAqIEBwYXJhbSBfcHJvcGVydGllc1NlcnZpY2VcbiAgICovXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgX3Byb3BlcnRpZXNTZXJ2aWNlOiBQcm9wZXJ0aWVzU2VydmljZSxcbiAgICBwcml2YXRlIF93aWRnZXRQcm9wZXJ0aWVzOiBXaWRnZXRzU2VydmljZVxuICAgIFxuICApIHsgfVxuXG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIC8vIEAgTGlmZWN5Y2xlIGhvb2tzIHN0YXJ0XG4gIC8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gIC8qKlxuICAgKiBvbiBpbml0XG4gICAqL1xuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAvLyBAIExpZmVjeWNsZSBob29rcyBlbmRcbiAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cblxuICAvKipcbiAgICogdG8gZW1pdCB3aWRnZXRDbGlja0V2ZW50IHRvIHNob3cgcHJvcGVydGllcyBvZiBzZWxlY3RlZCB3aWRnZXRcbiAgICovXG4gIG9uV2lkZ2V0Q2xpY2soKTogdm9pZCB7XG4gICAgdGhpcy5fcHJvcGVydGllc1NlcnZpY2Uud2lkZ2V0Q2xpY2tFdmVudCh0aGlzLndpZGdldCk7XG4gIH1cbiAgICAvKipcbiAgICogdG8gZW1pdCB3aWRnZXREZWxldGVFdmVudCB0byBEZWxldGUgV2lkZ2V0XG4gICAqL1xuICAgIGRlbGV0ZSgpOiB2b2lkIHtcbiAgICAgIHRoaXMuX3dpZGdldFByb3BlcnRpZXMud2lkZ2V0RGVsZXRlRXZlbnQodGhpcy53aWRnZXQpO1xuICAgIH1cbn0iLCI8IS0tIFRpbWUgU3RhbXAgd2lkZ2V0IC0tPlxuPG5nLWNvbnRhaW5lciAqbmdJZj1cIndpZGdldFwiPlxuICAgIDxkaXYgW2Zvcm1Hcm91cF09XCJncm91cFwiIGNsYXNzPVwidGV4dC13aWRnZXRcIiBbaWRdPVwid2lkZ2V0LmlkXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGdhcC0yIGp1c3RpZnktYmV0d2VlblwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggZ2FwLTIgaXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICAgICAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfdGltZXN0YW1wXCIgY2xhc3M9XCJoLTQgdy00IG1pbi13LTQgbWluLWgtNFwiPjwvbWF0LWljb24+XG4gICAgICAgICAgICAgIDxmb3JtIFtmb3JtR3JvdXBOYW1lXT1cInRoaXMud2lkZ2V0LmlkICsgJ19ncm91cCdcIj5cbiAgICAgICAgICAgICAgICA8aW5wdXQgbWF0SW5wdXQgWyhuZ01vZGVsKV09J3dpZGdldC5wcm9tcHQnIFtmb3JtQ29udHJvbE5hbWVdPVwid2lkZ2V0LmlkICsgJ19wcm9tcHQnIFwiIC8+XG4gICAgICAgICAgICAgIDwvZm9ybT5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIndpZGdldC5pc0hpZGRlblwiPlxuICAgICAgICAgICAgICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9jbG9zZV9leWVcIiBjbGFzcz1cImgtNCB3LTQgbWluLXctNCBtaW4taC00XCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIFxuICAgICAgPGRpdiAoY2xpY2spPVwib25XaWRnZXRDbGljaygpXCIgY2xhc3MgPSdmb3JtLWZpZWxkLWlucHV0Jz5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwicGxhY2Vob2xkZXItdGV4dCBtdC0zXCI+VGFwIGhlcmUgdG8gQWRkIEF1ZGlvPC9kaXY+XG4gICAgICA8L2Rpdj5cblxuICAgIDwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJ0b29sdGlwLWNvbnRhaW5lclwiPlxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9oZWxwLXRleHRcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICAgIDxidXR0b24gY2xhc3M9XCJpY29uLWJ0blwiPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfY3V0XCIgY2xhc3M9XCJoLTQgbWluLWgtNCB3LTQgbWluLXctNFwiPjwvbWF0LWljb24+PC9idXR0b24+XG4gICAgICA8YnV0dG9uIGNsYXNzPVwiaWNvbi1idG5cIj4gIDxtYXQtaWNvbiBzdmdJY29uPVwiYXhvX3NjdWxwdG9yX2NvcHlcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICAgIDxidXR0b24gY2xhc3M9XCJpY29uLWJ0blwiPiAgPG1hdC1pY29uIHN2Z0ljb249XCJheG9fc2N1bHB0b3JfcGFzdGVcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cblxuICAgICAgPGJ1dHRvbiBjbGFzcz1cImljb24tYnRuXCIgKGNsaWNrKT1cImRlbGV0ZSgpXCI+ICA8bWF0LWljb24gc3ZnSWNvbj1cImF4b19zY3VscHRvcl9kZWxldGVcIiBjbGFzcz1cImgtNCBtaW4taC00IHctNCBtaW4tdy00XCI+PC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICA8L2Rpdj5cblxuICA8L25nLWNvbnRhaW5lcj4iXX0=
|