@c8y/ngx-components 1018.0.215 → 1018.0.222
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/assets-navigator/asset-node.service.d.ts +5 -2
- package/ecosystem/application-plugins/plugin-list.component.d.ts +1 -0
- package/esm2020/assets-navigator/asset-node.mjs +7 -2
- package/esm2020/assets-navigator/asset-node.service.mjs +14 -5
- package/esm2020/core/header/title/title-outlet.component.mjs +3 -3
- package/esm2020/device-grid/columns/registration-date.device-grid-column.mjs +4 -10
- package/esm2020/ecosystem/application-plugins/application-plugins.component.mjs +34 -13
- package/esm2020/ecosystem/application-plugins/plugin-list.component.mjs +27 -13
- 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-assets-navigator.mjs +24 -12
- package/fesm2015/c8y-ngx-components-assets-navigator.mjs.map +1 -1
- 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 +44 -25
- package/fesm2015/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-ecosystem.mjs +55 -32
- 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/fesm2015/c8y-ngx-components.mjs +2 -2
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-assets-navigator.mjs +24 -12
- package/fesm2020/c8y-ngx-components-assets-navigator.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 +58 -25
- package/fesm2020/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-ecosystem.mjs +70 -27
- 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/fesm2020/c8y-ngx-components.mjs +2 -2
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -348,7 +348,7 @@ class RepositoryService {
|
|
|
348
348
|
}
|
|
349
349
|
const VERSION_FILTER_ORDER = {
|
|
350
350
|
__filter: {},
|
|
351
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
351
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
352
352
|
};
|
|
353
353
|
return this.listChildren(entry, VERSION_FILTER_ORDER, params);
|
|
354
354
|
}
|
|
@@ -366,7 +366,7 @@ class RepositoryService {
|
|
|
366
366
|
__filter: {
|
|
367
367
|
__not: { __has: 'c8y_Patch' }
|
|
368
368
|
},
|
|
369
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
369
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
370
370
|
};
|
|
371
371
|
return this.listChildren(entry, NO_PATCH_FILTER_ORDER, params);
|
|
372
372
|
}
|
|
@@ -383,7 +383,7 @@ class RepositoryService {
|
|
|
383
383
|
__filter: {
|
|
384
384
|
'c8y_Patch.dependency': version
|
|
385
385
|
},
|
|
386
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
386
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
387
387
|
};
|
|
388
388
|
return this.listChildren(entry, PATCH_FILTER_ORDER, params);
|
|
389
389
|
}
|