@bimdata/bcf-components 6.6.0 → 6.6.1
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
package/src/components/bcf-topic-overview/bcf-topic-comments/topic-comment/TopicComment.scss
CHANGED
|
@@ -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
|
|
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
|
|
23
|
-
|
|
24
|
-
|
|
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
|
|
package/src/i18n/lang/en.json
CHANGED
|
@@ -124,7 +124,8 @@
|
|
|
124
124
|
"commentsText": "Comments",
|
|
125
125
|
"deleteCommentText": "Delete this comment ?",
|
|
126
126
|
"deleteButton": "Delete",
|
|
127
|
-
"takeSnapshot": "Take a snapshot"
|
|
127
|
+
"takeSnapshot": "Take a snapshot",
|
|
128
|
+
"edited": "edited"
|
|
128
129
|
},
|
|
129
130
|
"BcfTopicPriorityCell": {
|
|
130
131
|
"noPriority": "None"
|
package/src/i18n/lang/fr.json
CHANGED
|
@@ -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"
|