@c8y/ngx-components 1017.0.449 → 1017.0.454
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/esm2020/device-grid/columns/registration-date.device-grid-column.mjs +4 -10
- package/esm2020/ecosystem/application-plugins/application-plugins.component.mjs +23 -11
- package/esm2020/ecosystem/application-plugins/plugin-list.component.mjs +10 -4
- package/esm2020/ecosystem/packages/deploy-application/deploy-application.component.mjs +14 -3
- package/esm2020/repository/shared/repository.service.mjs +4 -4
- package/esm2020/services/services-device-tab/columns/last-updated-date.device-grid-column.mjs +4 -10
- package/fesm2015/c8y-ngx-components-device-grid.mjs +3 -9
- package/fesm2015/c8y-ngx-components-device-grid.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-ecosystem-application-plugins.mjs +28 -18
- package/fesm2015/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-ecosystem.mjs +39 -25
- package/fesm2015/c8y-ngx-components-ecosystem.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-repository-shared.mjs +3 -3
- package/fesm2015/c8y-ngx-components-repository-shared.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-services.mjs +3 -9
- package/fesm2015/c8y-ngx-components-services.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-device-grid.mjs +3 -9
- package/fesm2020/c8y-ngx-components-device-grid.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-ecosystem-application-plugins.mjs +31 -14
- package/fesm2020/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-ecosystem.mjs +43 -16
- package/fesm2020/c8y-ngx-components-ecosystem.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-repository-shared.mjs +3 -3
- package/fesm2020/c8y-ngx-components-repository-shared.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-services.mjs +3 -9
- package/fesm2020/c8y-ngx-components-services.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -339,7 +339,7 @@ class RepositoryService {
|
|
|
339
339
|
}
|
|
340
340
|
const VERSION_FILTER_ORDER = {
|
|
341
341
|
__filter: {},
|
|
342
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
342
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
343
343
|
};
|
|
344
344
|
return this.listChildren(entry, VERSION_FILTER_ORDER, params);
|
|
345
345
|
}
|
|
@@ -357,7 +357,7 @@ class RepositoryService {
|
|
|
357
357
|
__filter: {
|
|
358
358
|
__not: { __has: 'c8y_Patch' }
|
|
359
359
|
},
|
|
360
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
360
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
361
361
|
};
|
|
362
362
|
return this.listChildren(entry, NO_PATCH_FILTER_ORDER, params);
|
|
363
363
|
}
|
|
@@ -374,7 +374,7 @@ class RepositoryService {
|
|
|
374
374
|
__filter: {
|
|
375
375
|
'c8y_Patch.dependency': version
|
|
376
376
|
},
|
|
377
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
377
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
378
378
|
};
|
|
379
379
|
return this.listChildren(entry, PATCH_FILTER_ORDER, params);
|
|
380
380
|
}
|