@c8y/ngx-components 1017.0.449 → 1017.0.453
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/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 +6 -8
- package/fesm2015/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-ecosystem.mjs +17 -15
- 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 +9 -4
- package/fesm2020/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-ecosystem.mjs +21 -6
- 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
|
@@ -349,7 +349,7 @@ class RepositoryService {
|
|
|
349
349
|
}
|
|
350
350
|
const VERSION_FILTER_ORDER = {
|
|
351
351
|
__filter: {},
|
|
352
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
352
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
353
353
|
};
|
|
354
354
|
return this.listChildren(entry, VERSION_FILTER_ORDER, params);
|
|
355
355
|
}
|
|
@@ -367,7 +367,7 @@ class RepositoryService {
|
|
|
367
367
|
__filter: {
|
|
368
368
|
__not: { __has: 'c8y_Patch' }
|
|
369
369
|
},
|
|
370
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
370
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
371
371
|
};
|
|
372
372
|
return this.listChildren(entry, NO_PATCH_FILTER_ORDER, params);
|
|
373
373
|
}
|
|
@@ -384,7 +384,7 @@ class RepositoryService {
|
|
|
384
384
|
__filter: {
|
|
385
385
|
'c8y_Patch.dependency': version
|
|
386
386
|
},
|
|
387
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
387
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
388
388
|
};
|
|
389
389
|
return this.listChildren(entry, PATCH_FILTER_ORDER, params);
|
|
390
390
|
}
|