@bimdata/bcf-components 6.4.8 → 6.5.0

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/service.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "6.4.8",
3
+ "version": "6.5.0",
4
4
  "files": [
5
5
  "src",
6
6
  "vue3-plugin.js"
package/src/service.js CHANGED
@@ -103,11 +103,11 @@ class Service {
103
103
  downloadBlobAs(`${project.name}.bcf`, response);
104
104
  }
105
105
 
106
- async exportBcfXLSX(project, topics) {
106
+ async exportBcfXLSX(project, topics, locale) {
107
107
  const response = await this.apiClient.bcfApi.downloadBcfExportXlsx(
108
108
  project.id,
109
109
  undefined, // Format
110
- undefined, // Locale
110
+ locale,
111
111
  topics.map((t) => t.guid).join(",")
112
112
  );
113
113
  downloadBlobAs(`${project.name}.xlsx`, response);