@bimdata/bcf-components 6.6.0 → 6.6.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "6.6.0",
3
+ "version": "6.6.2",
4
4
  "files": [
5
5
  "src",
6
6
  "vue3-plugin.js"
@@ -23,10 +23,10 @@
23
23
  "@semantic-release/changelog": "^6.0.3",
24
24
  "@semantic-release/commit-analyzer": "^13.0.1",
25
25
  "@semantic-release/git": "^10.0.1",
26
- "@semantic-release/github": "^11.0.6",
27
- "@semantic-release/npm": "^12.0.2",
26
+ "@semantic-release/github": "^12.0.0",
27
+ "@semantic-release/npm": "^13.1.1",
28
28
  "@semantic-release/release-notes-generator": "^14.1.0",
29
29
  "conventional-changelog-eslint": "^6.0.0",
30
- "semantic-release": "^24.2.9"
30
+ "semantic-release": "^25.0.1"
31
31
  }
32
32
  }
@@ -52,7 +52,7 @@
52
52
  <div class="bcf-topic-card__content">
53
53
  <div>
54
54
  <strong>
55
- {{ $t("BcfComponents.BcfTopicCard.priority") }}
55
+ {{ `${$t("BcfComponents.BcfTopicCard.priority")}: ` }}
56
56
  </strong>
57
57
  <span :style="{ color: `#${priorityColor}` }">
58
58
  {{ topic.priority || $t("BcfComponents.BcfTopicCard.noPriority") }}
@@ -60,7 +60,7 @@
60
60
  </div>
61
61
  <div>
62
62
  <strong>
63
- {{ $t("BcfComponents.BcfTopicCard.assignedTo") }}
63
+ {{ `${$t("BcfComponents.BcfTopicCard.assignedTo")}: ` }}
64
64
  </strong>
65
65
  <span>
66
66
  {{ topic.assigned_to || $t("BcfComponents.BcfTopicCard.notSpecified") }}
@@ -12,6 +12,15 @@
12
12
  height: 32px;
13
13
  border-radius: 50px;
14
14
  background-color: var(--color-silver-light);
15
+ display: flex;
16
+ justify-content: center;
17
+ align-items: center;
18
+ }
19
+
20
+ .edited {
21
+ position: absolute;
22
+ bottom: -0.75em;
23
+ left: 44px;
15
24
  }
16
25
  }
17
26
 
@@ -13,15 +13,19 @@
13
13
  />
14
14
  <span
15
15
  v-else
16
- class="topic-comment__header__left__user flex items-center justify-center m-r-12"
16
+ class="topic-comment__header__left__user m-r-12"
17
17
  >
18
18
  <BIMDataIconUser size="xxs" fill color="granite" />
19
19
  </span>
20
20
 
21
21
  <BIMDataTextbox width="auto" maxWidth="150px" cutPosition="end" :text="comment.author" />
22
- <span class="color-granite m-x-6"> • </span>
23
- <span class="color-granite">
24
- {{ $d(comment.date, "long") }}
22
+ <span v-if="comment.date !== comment.modified_date" class="edited">
23
+ ({{ $t("BcfComponents.BcfTopicComments.edited") }})
24
+ </span>
25
+
26
+ <span class="color-granite m-l-6"> • </span>
27
+ <span class="color-granite m-l-6">
28
+ {{ $d(comment.modified_date, "long") }}
25
29
  </span>
26
30
  </div>
27
31
 
@@ -6,6 +6,7 @@
6
6
  "filtersTitle": "Filter",
7
7
  "priorityLabel": "Priorität",
8
8
  "statusLabel": "Status",
9
+ "stageLabel": "Phase",
9
10
  "assignedToLabel": "Zugewiesen an",
10
11
  "creatorsLabel": "Erstellt von",
11
12
  "tagsLabel": "Tags",
@@ -32,9 +33,9 @@
32
33
  }
33
34
  },
34
35
  "BcfTopicCard": {
35
- "priority": "Priorität:",
36
+ "priority": "Priorität",
36
37
  "noPriority": "Keine",
37
- "assignedTo": "Zugewiesen an :",
38
+ "assignedTo": "Zugewiesen an",
38
39
  "elements": "Elemente",
39
40
  "notSpecified": "Nicht definiert",
40
41
  "see": "Anzeigen"
@@ -6,6 +6,7 @@
6
6
  "filtersTitle": "Filters",
7
7
  "priorityLabel": "Priority",
8
8
  "statusLabel": "Status",
9
+ "stageLabel": "Stage",
9
10
  "assignedToLabel": "Assigned to",
10
11
  "creatorsLabel": "Created by",
11
12
  "tagsLabel": "Tags",
@@ -32,9 +33,9 @@
32
33
  }
33
34
  },
34
35
  "BcfTopicCard": {
35
- "priority": "Priority: ",
36
+ "priority": "Priority",
36
37
  "noPriority": "None",
37
- "assignedTo": "Assigned to: ",
38
+ "assignedTo": "Assigned to",
38
39
  "elements": "Elements",
39
40
  "notSpecified": "Not specified",
40
41
  "see": "See"
@@ -124,7 +125,8 @@
124
125
  "commentsText": "Comments",
125
126
  "deleteCommentText": "Delete this comment ?",
126
127
  "deleteButton": "Delete",
127
- "takeSnapshot": "Take a snapshot"
128
+ "takeSnapshot": "Take a snapshot",
129
+ "edited": "edited"
128
130
  },
129
131
  "BcfTopicPriorityCell": {
130
132
  "noPriority": "None"
@@ -6,6 +6,7 @@
6
6
  "filtersTitle": "Filtros",
7
7
  "priorityLabel": "Prioridad",
8
8
  "statusLabel": "Estado",
9
+ "stageLabel": "Fase",
9
10
  "assignedToLabel": "Asignado a",
10
11
  "creatorsLabel": "Creado por",
11
12
  "tagsLabel": "Etiquetas:",
@@ -32,9 +33,9 @@
32
33
  }
33
34
  },
34
35
  "BcfTopicCard": {
35
- "priority": "Prioridad :",
36
+ "priority": "Prioridad",
36
37
  "noPriority": "Sin",
37
- "assignedTo": "Asignado a :",
38
+ "assignedTo": "Asignado a",
38
39
  "elements": "Elementos",
39
40
  "notSpecified": "No definido",
40
41
  "see": "Ver"
@@ -33,9 +33,9 @@
33
33
  }
34
34
  },
35
35
  "BcfTopicCard": {
36
- "priority": "Priorité : ",
36
+ "priority": "Priorité",
37
37
  "noPriority": "Aucune",
38
- "assignedTo": "Assigné à : ",
38
+ "assignedTo": "Assigné à",
39
39
  "elements": "{n} Élements",
40
40
  "notSpecified": "Non défini",
41
41
  "see": "Voir"
@@ -125,7 +125,8 @@
125
125
  "commentsText": "commentaires",
126
126
  "deleteCommentText": "Supprimer ce commentaire ?",
127
127
  "deleteButton": "Supprimer",
128
- "takeSnapshot": "Prendre un snapshot"
128
+ "takeSnapshot": "Prendre un snapshot",
129
+ "edited": "edité"
129
130
  },
130
131
  "BcfTopicPriorityCell": {
131
132
  "noPriority": "Aucune"
@@ -6,6 +6,7 @@
6
6
  "filtersTitle": "Filtri",
7
7
  "priorityLabel": "Priorità",
8
8
  "statusLabel": "Stato",
9
+ "stageLabel": "Fase",
9
10
  "datePlaceholder": "Data di creazione",
10
11
  "assignedToLabel": "Assegnato a",
11
12
  "creatorsLabel": "Creato da",
@@ -32,9 +33,9 @@
32
33
  }
33
34
  },
34
35
  "BcfTopicCard": {
35
- "priority": "Priorità:",
36
+ "priority": "Priorità",
36
37
  "noPriority": "Nessuno",
37
- "assignedTo": "Assegnato a:",
38
+ "assignedTo": "Assegnato a",
38
39
  "elements": "Elementi",
39
40
  "noElements": "0 elementi",
40
41
  "notSpecified": "Non definito",
@@ -6,6 +6,7 @@
6
6
  "filtersTitle": "Filters",
7
7
  "priorityLabel": "Prioriteit",
8
8
  "statusLabel": "Status",
9
+ "stageLabel": "Fase",
9
10
  "datePlaceholder": "Aanmaakdatum",
10
11
  "assignedToLabel": "Toegewezen aan",
11
12
  "creatorsLabel": "Gemaakt door",
@@ -32,9 +33,9 @@
32
33
  }
33
34
  },
34
35
  "BcfTopicCard": {
35
- "priority": "Prioriteit:",
36
+ "priority": "Prioriteit",
36
37
  "noPriority": "Geen",
37
- "assignedTo": "Toegewezen aan:",
38
+ "assignedTo": "Toegewezen aan",
38
39
  "elements": "Elementen",
39
40
  "noElements": "0 Element",
40
41
  "notSpecified": "Niet gespecificeerd",
@@ -6,6 +6,7 @@
6
6
  "filtersTitle": "Filtre",
7
7
  "priorityLabel": "Prioritet",
8
8
  "statusLabel": "Status",
9
+ "stageLabel": "Nivå",
9
10
  "datePlaceholder": "Opprettelsesdato",
10
11
  "assignedToLabel": "Tilegnet",
11
12
  "creatorsLabel": "Laget av",
@@ -32,9 +33,9 @@
32
33
  }
33
34
  },
34
35
  "BcfTopicCard": {
35
- "priority": "Prioritet:",
36
+ "priority": "Prioritet",
36
37
  "noPriority": "Ingen",
37
- "assignedTo": "Tilegnet:",
38
+ "assignedTo": "Tilegnet",
38
39
  "elements": "Elementer",
39
40
  "noElements": "0 Element",
40
41
  "notSpecified": "Ikke spesifisert",