mobicloud-core 1.0.292 → 1.0.293
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/bundles/mobicloud-core-components.umd.js +19 -12
- package/bundles/mobicloud-core-components.umd.js.map +1 -1
- package/components/employee/employee-user-info/employee-user-info.component.d.ts +2 -0
- package/esm2015/components/employee/employee-user-info/employee-user-info.component.js +13 -6
- package/fesm2015/mobicloud-core-components.js +12 -5
- package/fesm2015/mobicloud-core-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -1950,10 +1950,15 @@
|
|
|
1950
1950
|
{ id: false, description: $localize(templateObject_6$m || (templateObject_6$m = __makeTemplateObject([":@@FieldValue-No:No"], [":@@FieldValue-No:No"]))) },
|
|
1951
1951
|
{ id: true, description: $localize(templateObject_7$m || (templateObject_7$m = __makeTemplateObject([":@@FieldValue-Yes:Yes"], [":@@FieldValue-Yes:Yes"]))) }
|
|
1952
1952
|
];
|
|
1953
|
+
this.consignmentValidation_ds = [
|
|
1954
|
+
{ value: i2.ConsignmentEmployeeValidation.None, text: $localize(templateObject_8$m || (templateObject_8$m = __makeTemplateObject([":@@EnumValue-ConsignmentEmployeeValidation-None:None"], [":@@EnumValue-ConsignmentEmployeeValidation-None:None"]))) },
|
|
1955
|
+
{ value: i2.ConsignmentEmployeeValidation.ConfirmAll, text: $localize(templateObject_9$e || (templateObject_9$e = __makeTemplateObject([":@@EnumValue-ConsignmentEmployeeValidation-ConfirmAll: Confirm all"], [":@@EnumValue-ConsignmentEmployeeValidation-ConfirmAll: Confirm all"]))) }
|
|
1956
|
+
];
|
|
1953
1957
|
this.editorOptions_Status = { dataSource: this.status_ds, valueExpr: 'id', displayExpr: 'description', readOnly: true };
|
|
1954
1958
|
this.editorOptions_AppLogin = { dataSource: this.loginType_ds, valueExpr: 'id', displayExpr: 'description', readOnly: true };
|
|
1955
1959
|
this.editorOptions_Substitute = { dataSource: this.boolean_ds, valueExpr: 'id', displayExpr: 'description', readOnly: true };
|
|
1956
1960
|
this.editorOptions_EmployeeNumber = { readOnly: true };
|
|
1961
|
+
this.editorOptions_QA_Consignment_Validation = { dataSource: this.consignmentValidation_ds, valueExpr: 'value', displayExpr: 'text', readOnly: true };
|
|
1957
1962
|
this.usernameValidation = this.usernameValidation.bind(this);
|
|
1958
1963
|
this.passwordToogleIcon = "mobicloud_password_visibility_off";
|
|
1959
1964
|
this.passwordToggleMode = 'password';
|
|
@@ -1975,6 +1980,7 @@
|
|
|
1975
1980
|
if (_this.fullEditAllowed) {
|
|
1976
1981
|
delete _this.editorOptions_Status.readOnly;
|
|
1977
1982
|
delete _this.editorOptions_AppLogin.readOnly;
|
|
1983
|
+
delete _this.editorOptions_QA_Consignment_Validation.readOnly;
|
|
1978
1984
|
delete _this.editorOptions_Substitute.readOnly;
|
|
1979
1985
|
delete _this.editorOptions_EmployeeNumber.readOnly;
|
|
1980
1986
|
}
|
|
@@ -2008,7 +2014,7 @@
|
|
|
2008
2014
|
var _a;
|
|
2009
2015
|
if (((_a = this.employee) === null || _a === void 0 ? void 0 : _a.Id) && this.employee_store) {
|
|
2010
2016
|
this.isLoadingData = true;
|
|
2011
|
-
this.loadingText = $localize(
|
|
2017
|
+
this.loadingText = $localize(templateObject_10$e || (templateObject_10$e = __makeTemplateObject([":@@Loading-Text-Employee:Loading employee..."], [":@@Loading-Text-Employee:Loading employee..."])));
|
|
2012
2018
|
this.employee_store.byKey(this.employee.Id, { expand: this.employee_expands }).then(function (dataItem) {
|
|
2013
2019
|
var _a;
|
|
2014
2020
|
_this.formEmployee = Object.assign(new i2.Employee(), dataItem[0]);
|
|
@@ -2029,14 +2035,14 @@
|
|
|
2029
2035
|
_this.isLoadingData = false;
|
|
2030
2036
|
_this.hasErrors = false;
|
|
2031
2037
|
_this.errorText = "";
|
|
2032
|
-
_this.loadingText = $localize(
|
|
2038
|
+
_this.loadingText = $localize(templateObject_11$b || (templateObject_11$b = __makeTemplateObject([":@@Loading-Text:Loading..."], [":@@Loading-Text:Loading..."])));
|
|
2033
2039
|
_this.employeeChanged.emit(_this.employee);
|
|
2034
2040
|
}, function (error) {
|
|
2035
2041
|
console.log(error);
|
|
2036
2042
|
_this.isLoadingData = false;
|
|
2037
2043
|
_this.hasErrors = true;
|
|
2038
2044
|
_this.errorText = error;
|
|
2039
|
-
_this.loadingText = $localize(
|
|
2045
|
+
_this.loadingText = $localize(templateObject_12$9 || (templateObject_12$9 = __makeTemplateObject([":@@Loading-Text:Loading..."], [":@@Loading-Text:Loading..."])));
|
|
2040
2046
|
});
|
|
2041
2047
|
}
|
|
2042
2048
|
};
|
|
@@ -2057,10 +2063,10 @@
|
|
|
2057
2063
|
};
|
|
2058
2064
|
EmployeeUserInfoComponent.prototype.saveEmployee = function () {
|
|
2059
2065
|
var _this = this;
|
|
2060
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
2066
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
2061
2067
|
if (((_a = this.employee) === null || _a === void 0 ? void 0 : _a.Id) && this.employee_store) {
|
|
2062
2068
|
this.isLoadingData = true;
|
|
2063
|
-
this.loadingText = $localize(
|
|
2069
|
+
this.loadingText = $localize(templateObject_13$7 || (templateObject_13$7 = __makeTemplateObject([":@@Updating-Text-Employee:Updating employee..."], [":@@Updating-Text-Employee:Updating employee..."])));
|
|
2064
2070
|
var update_values = {
|
|
2065
2071
|
Email: (_b = this.formEmployee) === null || _b === void 0 ? void 0 : _b.Email,
|
|
2066
2072
|
ResourceColor: (_c = this.formEmployee) === null || _c === void 0 ? void 0 : _c.ResourceColor
|
|
@@ -2070,9 +2076,10 @@
|
|
|
2070
2076
|
update_values.Substitute = (_e = this.formEmployee) === null || _e === void 0 ? void 0 : _e.Substitute;
|
|
2071
2077
|
update_values.EmployeeNumber = (_f = this.formEmployee) === null || _f === void 0 ? void 0 : _f.EmployeeNumber;
|
|
2072
2078
|
update_values.LoginInfo_AppLogin = (_g = this.formEmployee) === null || _g === void 0 ? void 0 : _g.LoginInfo_AppLogin;
|
|
2079
|
+
update_values.QA_Consignment_Validation = (_h = this.formEmployee) === null || _h === void 0 ? void 0 : _h.QA_Consignment_Validation;
|
|
2073
2080
|
}
|
|
2074
|
-
if ((
|
|
2075
|
-
if (!(((
|
|
2081
|
+
if ((_j = this.formEmployee) === null || _j === void 0 ? void 0 : _j.LoginInfo_AppLogin) {
|
|
2082
|
+
if (!(((_k = this.coreService.applicationDetails) === null || _k === void 0 ? void 0 : _k.CertificateLogin) === true)) {
|
|
2076
2083
|
update_values.LoginInfo_Username = this.formEmployee.LoginInfo_Username;
|
|
2077
2084
|
}
|
|
2078
2085
|
}
|
|
@@ -2081,12 +2088,12 @@
|
|
|
2081
2088
|
_this.getEmployee();
|
|
2082
2089
|
_this.isLoadingData = false;
|
|
2083
2090
|
_this.inEditMode = false;
|
|
2084
|
-
_this.loadingText = $localize(
|
|
2091
|
+
_this.loadingText = $localize(templateObject_14$7 || (templateObject_14$7 = __makeTemplateObject([":@@Loading-Text:Loading..."], [":@@Loading-Text:Loading..."])));
|
|
2085
2092
|
}, function (error) {
|
|
2086
2093
|
console.log(error);
|
|
2087
2094
|
_this.isLoadingData = false;
|
|
2088
|
-
_this.loadingText = $localize(
|
|
2089
|
-
MessageBox.showError({ title: $localize(
|
|
2095
|
+
_this.loadingText = $localize(templateObject_15$5 || (templateObject_15$5 = __makeTemplateObject([":@@Loading-Text:Loading..."], [":@@Loading-Text:Loading..."])));
|
|
2096
|
+
MessageBox.showError({ title: $localize(templateObject_16$5 || (templateObject_16$5 = __makeTemplateObject([":@@Failed-Text-Employee:Employee update failed"], [":@@Failed-Text-Employee:Employee update failed"]))), message: error }, _this.matDialog)
|
|
2090
2097
|
.subscribe(function (result) {
|
|
2091
2098
|
});
|
|
2092
2099
|
});
|
|
@@ -2103,7 +2110,7 @@
|
|
|
2103
2110
|
return EmployeeUserInfoComponent;
|
|
2104
2111
|
}());
|
|
2105
2112
|
EmployeeUserInfoComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: EmployeeUserInfoComponent, deps: [{ token: i1__namespace$1.MobicloudCoreService }, { token: i2__namespace$1.MobiCloudDataService }, { token: i3__namespace.MatDialog }, { token: i1__namespace$1.UsernameValidator }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2106
|
-
EmployeeUserInfoComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: EmployeeUserInfoComponent, selector: "mobicloud-employee-user-info", inputs: { employee: "employee", employee_expands: "employee_expands", editAllowed: "editAllowed", inEditMode: "inEditMode", width: "width", contentheight: "contentheight", isLoadingData: "isLoadingData", loadingText: "loadingText", hasErrors: "hasErrors", errorText: "errorText" }, outputs: { employeeChanged: "employeeChanged" }, viewQueries: [{ propertyName: "form", first: true, predicate: ["form"], descendants: true }, { propertyName: "datagrids", predicate: i7.DxDataGridComponent, descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<mobicloud-group-box title=\"User Info\" i18n-title=\"@@CaptionHeader-UserInfo\" [width]=\"[width]\" [contentheight]=[contentheight] class=\"employeeUserInfoForm\" [isLoadingData]=\"isLoadingData\" [loadingText]=\"loadingText\" \n [editAllowed]=\"editAllowed\" [inEditMode]=\"inEditMode\" [hasErrors]=\"hasErrors\" errorCaption=\"Error\" i18n-errorCaption=\"@@CaptionHeader-Error\" [errorText]=\"errorText\" [enableRetryOnError]=\"true\"\n (Edit_Click)=\"onEditClick()\" (Save_Click)=\"onSaveClick()\" (CancelEdit_Click)=\"onCancelEditClick()\" (Retry_Click)=\"onRetryClick()\">\n\n <form>\n <dx-form #form id=\"form\"\n [formData]=\"formEmployee\"\n [readOnly]=\"!inEditMode\"\n [showColonAfterLabel]=\"true\"\n labelLocation=\"top\"\n [showValidationSummary]=\"false\" \n [showRequiredMark] = \"false\"\n validationGroup=\"formEmployeeData_UserInfo\">\n\n <dxi-item itemType=\"group\" caption=\"\" [colCount]=\"2\">\n <dxi-item dataField=\"Active\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_Status\">\n <dxo-label text=\"Status\" i18n-text=\"@@FieldCaption-Status\"></dxo-label>\n </dxi-item> \n <dxi-item dataField=\"LoginInfo_AppLogin\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_AppLogin\">\n <dxo-label text=\"Type\" i18n-text=\"@@FieldCaption-Type\"></dxo-label>\n </dxi-item>\n\n <dxi-item dataField=\"LoginInfo_Username\" *ngIf=\"(formEmployee && formEmployee.LoginInfo_AppLogin) && !certificateLogin\">\n <dxo-label text=\"Username\" i18n-text=\"@@FieldCaption-Username\"></dxo-label>\n <dxi-validation-rule type=\"required\" message=\"Username is required\" i18n-message=\"@@ValidationText-Username-Required\" *ngIf=\"inEditMode\"></dxi-validation-rule>\n <dxi-validation-rule *ngIf=\"inEditMode\" \n type=\"async\" \n [validationCallback]=\"usernameValidation\">\n </dxi-validation-rule> \n </dxi-item>\n\n <dxi-item dataField=\"EmployeeNumber\" [editorOptions]=\"editorOptions_EmployeeNumber\">\n <dxo-label text=\"Employee no.\" i18n-text=\"@@FieldCaption-EmployeeNumber\"></dxo-label> \n </dxi-item>\n\n <dxi-item dataField=\"Substitute\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_Substitute\">\n <dxo-label text=\"Substitute\" i18n-text=\"@@FieldCaption-Substitute\"></dxo-label>\n </dxi-item> \n\n <dxi-item dataField=\"ResourceColor\" [colSpan]=\"certificateLogin ? 2 : 1\" editorType=\"dxColorBox\">\n <dxo-label text=\"Color\" i18n-text=\"@@FieldCaption-Color\"></dxo-label>\n </dxi-item> \n\n <dxi-item dataField=\"Email\" [colSpan]=\"2\" [editorOptions]=\"{ inputAttr: {'autocomplete': 'email'} }\">\n <dxo-label text=\"Email\" i18n-text=\"@@FieldCaption-Email\"></dxo-label> \n <dxi-validation-rule type=\"required\" message=\"Email is required\" i18n-message=\"@@ValidationText-Email-Required\" *ngIf=\"inEditMode && (formEmployee && formEmployee.LoginInfo_AppLogin)\"></dxi-validation-rule>\n <dxi-validation-rule type=\"email\" message=\"Email is invalid\" i18n-message=\"@@ValidationText-Email-Invalid\"></dxi-validation-rule> \n </dxi-item> \n\n
|
|
2113
|
+
EmployeeUserInfoComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: EmployeeUserInfoComponent, selector: "mobicloud-employee-user-info", inputs: { employee: "employee", employee_expands: "employee_expands", editAllowed: "editAllowed", inEditMode: "inEditMode", width: "width", contentheight: "contentheight", isLoadingData: "isLoadingData", loadingText: "loadingText", hasErrors: "hasErrors", errorText: "errorText" }, outputs: { employeeChanged: "employeeChanged" }, viewQueries: [{ propertyName: "form", first: true, predicate: ["form"], descendants: true }, { propertyName: "datagrids", predicate: i7.DxDataGridComponent, descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<mobicloud-group-box title=\"User Info\" i18n-title=\"@@CaptionHeader-UserInfo\" [width]=\"[width]\" [contentheight]=[contentheight] class=\"employeeUserInfoForm\" [isLoadingData]=\"isLoadingData\" [loadingText]=\"loadingText\" \n [editAllowed]=\"editAllowed\" [inEditMode]=\"inEditMode\" [hasErrors]=\"hasErrors\" errorCaption=\"Error\" i18n-errorCaption=\"@@CaptionHeader-Error\" [errorText]=\"errorText\" [enableRetryOnError]=\"true\"\n (Edit_Click)=\"onEditClick()\" (Save_Click)=\"onSaveClick()\" (CancelEdit_Click)=\"onCancelEditClick()\" (Retry_Click)=\"onRetryClick()\">\n\n <form>\n <dx-form #form id=\"form\"\n [formData]=\"formEmployee\"\n [readOnly]=\"!inEditMode\"\n [showColonAfterLabel]=\"true\"\n labelLocation=\"top\"\n [showValidationSummary]=\"false\" \n [showRequiredMark] = \"false\"\n validationGroup=\"formEmployeeData_UserInfo\">\n\n <dxi-item itemType=\"group\" caption=\"\" [colCount]=\"2\">\n <dxi-item dataField=\"Active\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_Status\">\n <dxo-label text=\"Status\" i18n-text=\"@@FieldCaption-Status\"></dxo-label>\n </dxi-item> \n <dxi-item dataField=\"LoginInfo_AppLogin\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_AppLogin\">\n <dxo-label text=\"Type\" i18n-text=\"@@FieldCaption-Type\"></dxo-label>\n </dxi-item>\n\n <dxi-item dataField=\"LoginInfo_Username\" *ngIf=\"(formEmployee && formEmployee.LoginInfo_AppLogin) && !certificateLogin\">\n <dxo-label text=\"Username\" i18n-text=\"@@FieldCaption-Username\"></dxo-label>\n <dxi-validation-rule type=\"required\" message=\"Username is required\" i18n-message=\"@@ValidationText-Username-Required\" *ngIf=\"inEditMode\"></dxi-validation-rule>\n <dxi-validation-rule *ngIf=\"inEditMode\" \n type=\"async\" \n [validationCallback]=\"usernameValidation\">\n </dxi-validation-rule> \n </dxi-item>\n\n <dxi-item dataField=\"EmployeeNumber\" [editorOptions]=\"editorOptions_EmployeeNumber\">\n <dxo-label text=\"Employee no.\" i18n-text=\"@@FieldCaption-EmployeeNumber\"></dxo-label> \n </dxi-item>\n\n <dxi-item dataField=\"Substitute\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_Substitute\">\n <dxo-label text=\"Substitute\" i18n-text=\"@@FieldCaption-Substitute\"></dxo-label>\n </dxi-item> \n\n <dxi-item dataField=\"ResourceColor\" [colSpan]=\"certificateLogin ? 2 : 1\" editorType=\"dxColorBox\">\n <dxo-label text=\"Color\" i18n-text=\"@@FieldCaption-Color\"></dxo-label>\n </dxi-item> \n\n <dxi-item dataField=\"Email\" [colSpan]=\"2\" [editorOptions]=\"{ inputAttr: {'autocomplete': 'email'} }\">\n <dxo-label text=\"Email\" i18n-text=\"@@FieldCaption-Email\"></dxo-label> \n <dxi-validation-rule type=\"required\" message=\"Email is required\" i18n-message=\"@@ValidationText-Email-Required\" *ngIf=\"inEditMode && (formEmployee && formEmployee.LoginInfo_AppLogin)\"></dxi-validation-rule>\n <dxi-validation-rule type=\"email\" message=\"Email is invalid\" i18n-message=\"@@ValidationText-Email-Invalid\"></dxi-validation-rule> \n </dxi-item> \n\n <dxi-item dataField=\"QA_Consignment_Validation\" editorType=\"dxSelectBox\" [editorOptions]=\"editorOptions_QA_Consignment_Validation\">\n <dxo-label text=\"Consignment validation\" i18n-text=\"@@FieldCaption-ConsignmentValidation\"></dxo-label>\n </dxi-item>\n\n </dxi-item> \n \n </dx-form>\n </form>\n</mobicloud-group-box>", styles: [".password-button-icon{padding-bottom:6px}\n"], components: [{ type: GroupBoxComponent, selector: "mobicloud-group-box", inputs: ["width", "contentheight", "noBackgroundHeader", "title", "isLoadingData", "loadingText", "hasErrors", "errorCaption", "errorText", "enableRetryOnError", "editAllowed", "inEditMode"], outputs: ["Edit_Click", "Save_Click", "CancelEdit_Click", "Retry_Click"] }, { type: i5__namespace$3.DxFormComponent, selector: "dx-form", inputs: ["accessKey", "activeStateEnabled", "alignItemLabels", "alignItemLabelsInAllGroups", "colCount", "colCountByScreen", "customizeItem", "disabled", "elementAttr", "focusStateEnabled", "formData", "height", "hint", "hoverStateEnabled", "items", "labelLocation", "labelMode", "minColWidth", "optionalMark", "readOnly", "requiredMark", "requiredMessage", "rtlEnabled", "screenByWidth", "scrollingEnabled", "showColonAfterLabel", "showOptionalMark", "showRequiredMark", "showValidationSummary", "tabIndex", "validationGroup", "visible", "width"], outputs: ["onContentReady", "onDisposing", "onEditorEnterKey", "onFieldDataChanged", "onInitialized", "onOptionChanged", "accessKeyChange", "activeStateEnabledChange", "alignItemLabelsChange", "alignItemLabelsInAllGroupsChange", "colCountChange", "colCountByScreenChange", "customizeItemChange", "disabledChange", "elementAttrChange", "focusStateEnabledChange", "formDataChange", "heightChange", "hintChange", "hoverStateEnabledChange", "itemsChange", "labelLocationChange", "labelModeChange", "minColWidthChange", "optionalMarkChange", "readOnlyChange", "requiredMarkChange", "requiredMessageChange", "rtlEnabledChange", "screenByWidthChange", "scrollingEnabledChange", "showColonAfterLabelChange", "showOptionalMarkChange", "showRequiredMarkChange", "showValidationSummaryChange", "tabIndexChange", "validationGroupChange", "visibleChange", "widthChange"] }, { type: i6__namespace.DxiItemComponent, selector: "dxi-item", inputs: ["disabled", "html", "icon", "template", "text", "title", "titleTemplate", "visible", "onClick", "stylingMode", "type", "baseSize", "box", "ratio", "shrink", "elementAttr", "hint", "beginGroup", "closeMenuOnClick", "items", "selectable", "selected", "colSpan", "cssClass", "dataField", "editorOptions", "editorType", "helpText", "isRequired", "itemType", "label", "name", "validationRules", "visibleIndex", "alignItemLabels", "caption", "colCount", "colCountByScreen", "tabPanelOptions", "tabs", "badge", "tabTemplate", "buttonOptions", "horizontalAlignment", "verticalAlignment", "locateInMenu", "location", "menuItemTemplate", "options", "showText", "widget", "height", "width", "imageAlt", "imageSrc", "acceptedValues", "formatName", "formatValues", "key", "showChevron", "heightRatio", "widthRatio", "expanded", "hasItems", "id", "parentId"] }, { type: i6__namespace.DxoLabelComponent, selector: "dxo-label", inputs: ["connectorColor", "connectorWidth", "customizeText", "font", "format", "indent", "visible", "horizontalAlignment", "position", "text", "verticalAlignment", "alignment", "customizeHint", "displayMode", "indentFromAxis", "overlappingBehavior", "rotationAngle", "staggeringSpacing", "template", "textOverflow", "wordWrap", "argumentFormat", "backgroundColor", "border", "connector", "displayFormat", "horizontalOffset", "showForZeroValues", "verticalOffset", "hideFirstOrLast", "indentFromTick", "useRangeColors", "location", "showColon", "radialOffset", "topIndent", "shadow", "useNodeColors", "dataField", "enabled"] }, { type: i6__namespace.DxiValidationRuleComponent, selector: "dxi-validation-rule", inputs: ["message", "trim", "type", "ignoreEmptyValue", "max", "min", "reevaluate", "validationCallback", "comparisonTarget", "comparisonType", "pattern"] }], directives: [{ type: i4__namespace$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2107
2114
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: EmployeeUserInfoComponent, decorators: [{
|
|
2108
2115
|
type: i0.Component,
|
|
2109
2116
|
args: [{
|
|
@@ -2140,7 +2147,7 @@
|
|
|
2140
2147
|
type: i0.ViewChildren,
|
|
2141
2148
|
args: [i7.DxDataGridComponent]
|
|
2142
2149
|
}] } });
|
|
2143
|
-
var templateObject_1$r, templateObject_2$n, templateObject_3$n, templateObject_4$n, templateObject_5$n, templateObject_6$m, templateObject_7$m, templateObject_8$m, templateObject_9$e, templateObject_10$e, templateObject_11$b, templateObject_12$9, templateObject_13$7, templateObject_14$7;
|
|
2150
|
+
var templateObject_1$r, templateObject_2$n, templateObject_3$n, templateObject_4$n, templateObject_5$n, templateObject_6$m, templateObject_7$m, templateObject_8$m, templateObject_9$e, templateObject_10$e, templateObject_11$b, templateObject_12$9, templateObject_13$7, templateObject_14$7, templateObject_15$5, templateObject_16$5;
|
|
2144
2151
|
|
|
2145
2152
|
var CameraDialogEditComponent = /** @class */ (function () {
|
|
2146
2153
|
function CameraDialogEditComponent(dialogRef, data, matDialog) {
|