@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
|
@@ -359,7 +359,7 @@ class RepositoryService {
|
|
|
359
359
|
}
|
|
360
360
|
const VERSION_FILTER_ORDER = {
|
|
361
361
|
__filter: {},
|
|
362
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
362
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
363
363
|
};
|
|
364
364
|
return this.listChildren(entry, VERSION_FILTER_ORDER, params);
|
|
365
365
|
}
|
|
@@ -377,7 +377,7 @@ class RepositoryService {
|
|
|
377
377
|
__filter: {
|
|
378
378
|
__not: { __has: 'c8y_Patch' }
|
|
379
379
|
},
|
|
380
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
380
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
381
381
|
};
|
|
382
382
|
return this.listChildren(entry, NO_PATCH_FILTER_ORDER, params);
|
|
383
383
|
}
|
|
@@ -394,7 +394,7 @@ class RepositoryService {
|
|
|
394
394
|
__filter: {
|
|
395
395
|
'c8y_Patch.dependency': version
|
|
396
396
|
},
|
|
397
|
-
__orderby: [{ 'creationTime.date': -1 }
|
|
397
|
+
__orderby: [{ 'creationTime.date': -1 }]
|
|
398
398
|
};
|
|
399
399
|
return this.listChildren(entry, PATCH_FILTER_ORDER, params);
|
|
400
400
|
}
|