@bimdata/bcf-components 6.4.7 → 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.
- package/package.json +4 -4
- 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.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"src",
|
|
6
6
|
"vue3-plugin.js"
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@semantic-release/changelog": "^6.0.3",
|
|
24
|
-
"@semantic-release/commit-analyzer": "^13.0.
|
|
24
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
25
25
|
"@semantic-release/git": "^10.0.1",
|
|
26
26
|
"@semantic-release/github": "^11.0.1",
|
|
27
27
|
"@semantic-release/npm": "^12.0.1",
|
|
28
|
-
"@semantic-release/release-notes-generator": "^14.0.
|
|
28
|
+
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
29
29
|
"conventional-changelog-eslint": "^6.0.0",
|
|
30
|
-
"semantic-release": "^24.2.
|
|
30
|
+
"semantic-release": "^24.2.3"
|
|
31
31
|
}
|
|
32
32
|
}
|
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
|
-
|
|
110
|
+
locale,
|
|
111
111
|
topics.map((t) => t.guid).join(",")
|
|
112
112
|
);
|
|
113
113
|
downloadBlobAs(`${project.name}.xlsx`, response);
|