@c8y/ngx-components 1024.16.5 → 1024.16.6

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.
Files changed (29) hide show
  1. package/fesm2022/c8y-ngx-components-bookmarks.mjs +1 -1
  2. package/fesm2022/c8y-ngx-components-bookmarks.mjs.map +1 -1
  3. package/fesm2022/c8y-ngx-components-context-dashboard.mjs +1 -1
  4. package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
  5. package/fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs +1 -1
  6. package/fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs.map +1 -1
  7. package/fesm2022/c8y-ngx-components-device-profile.mjs +1 -1
  8. package/fesm2022/c8y-ngx-components-device-profile.mjs.map +1 -1
  9. package/fesm2022/c8y-ngx-components-ecosystem.mjs +1 -1
  10. package/fesm2022/c8y-ngx-components-ecosystem.mjs.map +1 -1
  11. package/fesm2022/c8y-ngx-components-protocol-opcua.mjs +1 -1
  12. package/fesm2022/c8y-ngx-components-protocol-opcua.mjs.map +1 -1
  13. package/fesm2022/c8y-ngx-components-repository-firmware.mjs +1 -1
  14. package/fesm2022/c8y-ngx-components-repository-firmware.mjs.map +1 -1
  15. package/fesm2022/c8y-ngx-components-repository-software.mjs +1 -1
  16. package/fesm2022/c8y-ngx-components-repository-software.mjs.map +1 -1
  17. package/fesm2022/c8y-ngx-components-sub-assets.mjs +30 -10
  18. package/fesm2022/c8y-ngx-components-sub-assets.mjs.map +1 -1
  19. package/fesm2022/c8y-ngx-components-trusted-certificates.mjs +1 -1
  20. package/fesm2022/c8y-ngx-components-trusted-certificates.mjs.map +1 -1
  21. package/fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs +1 -1
  22. package/fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs.map +1 -1
  23. package/fesm2022/c8y-ngx-components.mjs +11 -5
  24. package/fesm2022/c8y-ngx-components.mjs.map +1 -1
  25. package/package.json +1 -1
  26. package/types/c8y-ngx-components-sub-assets.d.ts +10 -1
  27. package/types/c8y-ngx-components-sub-assets.d.ts.map +1 -1
  28. package/types/c8y-ngx-components.d.ts +6 -1
  29. package/types/c8y-ngx-components.d.ts.map +1 -1
@@ -1145,7 +1145,7 @@ class OpcuaDeviceProtocolDescription {
1145
1145
  this._model.enabled = data !== '0' ? true : false;
1146
1146
  }
1147
1147
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.19", ngImport: i0, type: OpcuaDeviceProtocolDescription, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1148
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.19", type: OpcuaDeviceProtocolDescription, isStandalone: true, selector: "opcua-device-protocol-description", inputs: { model: "model" }, ngImport: i0, template: "<div class=\"card-block bg-level-1 flex-no-shrink p-t-24 p-b-24\">\n <div class=\"content-flex-70\">\n <div class=\"text-center\">\n <i class=\"c8y-icon-duocolor icon-48 c8y-icon c8y-icon-device-protocols\"></i>\n <p>\n <small class=\"label label-info\">{{ _model.fieldbusType }}</small>\n </p>\n </div>\n <div class=\"flex-grow col-10\">\n <div class=\"content-flex-80\">\n <div class=\"col-9\">\n <div class=\"form-group form-group-lg m-b-16\">\n <label\n class=\"sr-only\"\n translate\n >Name</label\n >\n <c8y-input-group-editable\n size=\"lg\"\n formGroupClass=\"m-b-0\"\n [ariaLabel]=\"'Protocol name' | translate\"\n [noSaveButton]=\"true\"\n [(ngModel)]=\"_model.name\"\n data-cy=\"name-input\"\n ></c8y-input-group-editable>\n </div>\n <div class=\"form-group m-b-16\">\n <label\n class=\"sr-only\"\n translate\n >Description</label\n >\n <c8y-input-group-editable\n name=\"description\"\n [multiline]=\"true\"\n maxHeight=\"150px\"\n formGroupClass=\"m-b-0\"\n [ariaLabel]=\"'Protocol description' | translate\"\n [placeholder]=\"'e.g. My protocol description' | translate\"\n [noSaveButton]=\"true\"\n [(ngModel)]=\"_model.description\"\n data-cy=\"description-input\"\n ></c8y-input-group-editable>\n </div>\n <div class=\"d-flex m-t-8\">\n <div>\n <button\n class=\"btn\"\n name=\"autoScanAddressSpace\"\n type=\"button\"\n [(ngModel)]=\"autoScan\"\n (ngModelChange)=\"setAutoScanOption($event)\"\n btnCheckbox\n btnCheckboxTrue=\"1\"\n btnCheckboxFalse=\"0\"\n ngDefaultControl\n >\n @if (autoScan === '1') {\n <i\n class=\"text-success\"\n c8yIcon=\"check\"\n ></i>\n <span>{{ 'Active`auto scanning`' | translate }}</span>\n }\n @if (autoScan === '0') {\n <i\n class=\"text-danger\"\n c8yIcon=\"ban\"\n ></i>\n <span>{{ 'Inactive`auto scanning`' | translate }}</span>\n }\n </button>\n </div>\n <small class=\"m-l-16 text-muted\">\n {{\n 'When active, the gateway scans the address space of all servers and automatically applies this device protocol to all nodes matching the criteria.'\n | translate\n }}\n </small>\n </div>\n </div>\n <div class=\"flex-grow\">\n <ul class=\"list-unstyled small\">\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >ID</label\n >\n <span class=\"m-l-auto\">{{ _model.id }}</span>\n </li>\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >Date created</label\n >\n <span class=\"m-l-auto\">{{ _model.creationTime | c8yDate }}</span>\n </li>\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >Last update</label\n >\n <span class=\"m-l-auto\">{{ _model.lastUpdated | c8yDate }}</span>\n </li>\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >Fieldbus version</label\n >\n <span class=\"m-l-auto\">{{ _model.fieldbusVersion }}</span>\n </li>\n </ul>\n </div>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: C8yTranslateDirective, selector: "[translate],[ngx-translate]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: InputGroupEditableComponent, selector: "c8y-input-group-editable", inputs: ["ariaLabel", "name", "size", "placeholder", "multiline", "maxHeight", "maxLength", "noSaveButton", "formGroupClass", "validators", "asyncValidators", "autocomplete"], outputs: ["save", "cancel"] }, { kind: "directive", type: ButtonCheckboxDirective, selector: "[btnCheckbox]", inputs: ["btnCheckboxTrue", "btnCheckboxFalse"] }, { kind: "directive", type: IconDirective, selector: "[c8yIcon]", inputs: ["c8yIcon"] }, { kind: "pipe", type: C8yTranslatePipe, name: "translate" }, { kind: "pipe", type: DatePipe, name: "c8yDate" }] }); }
1148
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.19", type: OpcuaDeviceProtocolDescription, isStandalone: true, selector: "opcua-device-protocol-description", inputs: { model: "model" }, ngImport: i0, template: "<div class=\"card-block bg-level-1 flex-no-shrink p-t-24 p-b-24\">\n <div class=\"content-flex-70\">\n <div class=\"text-center\">\n <i class=\"c8y-icon-duocolor icon-48 c8y-icon c8y-icon-device-protocols\"></i>\n <p>\n <small class=\"label label-info\">{{ _model.fieldbusType }}</small>\n </p>\n </div>\n <div class=\"flex-grow col-10\">\n <div class=\"content-flex-80\">\n <div class=\"col-9\">\n <div class=\"form-group form-group-lg m-b-16\">\n <label\n class=\"sr-only\"\n translate\n >Name</label\n >\n <c8y-input-group-editable\n size=\"lg\"\n formGroupClass=\"m-b-0\"\n [ariaLabel]=\"'Protocol name' | translate\"\n [noSaveButton]=\"true\"\n [(ngModel)]=\"_model.name\"\n data-cy=\"name-input\"\n ></c8y-input-group-editable>\n </div>\n <div class=\"form-group m-b-16\">\n <label\n class=\"sr-only\"\n translate\n >Description</label\n >\n <c8y-input-group-editable\n name=\"description\"\n [multiline]=\"true\"\n maxHeight=\"150px\"\n formGroupClass=\"m-b-0\"\n [ariaLabel]=\"'Protocol description' | translate\"\n [placeholder]=\"'e.g. My protocol description' | translate\"\n [noSaveButton]=\"true\"\n [(ngModel)]=\"_model.description\"\n data-cy=\"description-input\"\n ></c8y-input-group-editable>\n </div>\n <div class=\"d-flex m-t-8\">\n <div>\n <button\n class=\"btn\"\n name=\"autoScanAddressSpace\"\n type=\"button\"\n [(ngModel)]=\"autoScan\"\n (ngModelChange)=\"setAutoScanOption($event)\"\n btnCheckbox\n btnCheckboxTrue=\"1\"\n btnCheckboxFalse=\"0\"\n ngDefaultControl\n >\n @if (autoScan === '1') {\n <i\n class=\"text-success\"\n c8yIcon=\"check\"\n ></i>\n <span>{{ 'Active`auto scanning`' | translate }}</span>\n }\n @if (autoScan === '0') {\n <i\n class=\"text-danger\"\n c8yIcon=\"ban\"\n ></i>\n <span>{{ 'Inactive`auto scanning`' | translate }}</span>\n }\n </button>\n </div>\n <small class=\"m-l-16 text-muted\">\n {{\n 'When active, the gateway scans the address space of all servers and automatically applies this device protocol to all nodes matching the criteria.'\n | translate\n }}\n </small>\n </div>\n </div>\n <div class=\"flex-grow\">\n <ul class=\"list-unstyled small\">\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >ID</label\n >\n <span class=\"m-l-auto\">{{ _model.id }}</span>\n </li>\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >Date created</label\n >\n <span class=\"m-l-auto\">{{ _model.creationTime | c8yDate }}</span>\n </li>\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >Last update</label\n >\n <span class=\"m-l-auto\">{{ _model.lastUpdated | c8yDate }}</span>\n </li>\n <li class=\"p-t-4 p-b-4 d-flex separator-bottom text-nowrap\">\n <label\n class=\"small m-b-0 m-r-8\"\n translate\n >Fieldbus version</label\n >\n <span class=\"m-l-auto\">{{ _model.fieldbusVersion }}</span>\n </li>\n </ul>\n </div>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: C8yTranslateDirective, selector: "[translate],[ngx-translate]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: InputGroupEditableComponent, selector: "c8y-input-group-editable", inputs: ["ariaLabel", "name", "size", "placeholder", "title", "multiline", "maxHeight", "maxLength", "noSaveButton", "formGroupClass", "validators", "asyncValidators", "autocomplete", "required"], outputs: ["save", "cancel"] }, { kind: "directive", type: ButtonCheckboxDirective, selector: "[btnCheckbox]", inputs: ["btnCheckboxTrue", "btnCheckboxFalse"] }, { kind: "directive", type: IconDirective, selector: "[c8yIcon]", inputs: ["c8yIcon"] }, { kind: "pipe", type: C8yTranslatePipe, name: "translate" }, { kind: "pipe", type: DatePipe, name: "c8yDate" }] }); }
1149
1149
  }
1150
1150
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImport: i0, type: OpcuaDeviceProtocolDescription, decorators: [{
1151
1151
  type: Component,