@bimdata/bcf-components 2.0.0-rc.8 → 2.0.0-rc.9
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.
|
@@ -4303,8 +4303,10 @@ var render = function() {
|
|
|
4303
4303
|
var bcfTopic = ref2.row;
|
|
4304
4304
|
return [_c("BIMDataTextbox", { attrs: { "maxWidth": "100%", "text": bcfTopic.title } })];
|
|
4305
4305
|
} }, { key: "cell-creator", fn: function(ref2) {
|
|
4306
|
-
var
|
|
4307
|
-
|
|
4306
|
+
var ref_row = ref2.row;
|
|
4307
|
+
var creator = ref_row.creator;
|
|
4308
|
+
var creation_author = ref_row.creation_author;
|
|
4309
|
+
return [_c("BIMDataTooltip", { attrs: { "text": creation_author } }, [_c("UserAvatar", { staticStyle: { "margin": "auto" }, attrs: { "user": creator || {}, "size": 30, "color": "silver-light" } })], 1)];
|
|
4308
4310
|
} }, { key: "cell-date", fn: function(ref2) {
|
|
4309
4311
|
var bcfTopic = ref2.row;
|
|
4310
4312
|
return [_vm._v(" " + _vm._s(_vm.deserializeShort(bcfTopic.creation_date)) + " ")];
|
|
@@ -4324,6 +4326,7 @@ const __vue2_script = {
|
|
|
4324
4326
|
BcfTopicStatusCell,
|
|
4325
4327
|
BIMDataTable: h,
|
|
4326
4328
|
BIMDataTextbox: l$3,
|
|
4329
|
+
BIMDataTooltip: l$2,
|
|
4327
4330
|
UserAvatar
|
|
4328
4331
|
},
|
|
4329
4332
|
props: {
|
|
@@ -4987,6 +4987,7 @@ const _sfc_main = {
|
|
|
4987
4987
|
BcfTopicStatusCell,
|
|
4988
4988
|
BIMDataTable: P,
|
|
4989
4989
|
BIMDataTextbox: s$1,
|
|
4990
|
+
BIMDataTooltip: g$1,
|
|
4990
4991
|
UserAvatar
|
|
4991
4992
|
},
|
|
4992
4993
|
props: {
|
|
@@ -5027,6 +5028,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5027
5028
|
const _component_BcfTopicStatusCell = resolveComponent("BcfTopicStatusCell");
|
|
5028
5029
|
const _component_BIMDataTextbox = resolveComponent("BIMDataTextbox");
|
|
5029
5030
|
const _component_UserAvatar = resolveComponent("UserAvatar");
|
|
5031
|
+
const _component_BIMDataTooltip = resolveComponent("BIMDataTooltip");
|
|
5030
5032
|
const _component_BcfTopicActionsCell = resolveComponent("BcfTopicActionsCell");
|
|
5031
5033
|
const _component_BIMDataTable = resolveComponent("BIMDataTable");
|
|
5032
5034
|
return openBlock(), createBlock(_component_BIMDataTable, {
|
|
@@ -5066,13 +5068,18 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5066
5068
|
text: bcfTopic.title
|
|
5067
5069
|
}, null, 8, ["text"])
|
|
5068
5070
|
]),
|
|
5069
|
-
"cell-creator": withCtx(({ row: { creator } }) => [
|
|
5070
|
-
createVNode(
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5071
|
+
"cell-creator": withCtx(({ row: { creator, creation_author } }) => [
|
|
5072
|
+
createVNode(_component_BIMDataTooltip, { text: creation_author }, {
|
|
5073
|
+
default: withCtx(() => [
|
|
5074
|
+
createVNode(_component_UserAvatar, {
|
|
5075
|
+
user: creator || {},
|
|
5076
|
+
size: 30,
|
|
5077
|
+
color: "silver-light",
|
|
5078
|
+
style: { "margin": "auto" }
|
|
5079
|
+
}, null, 8, ["user"])
|
|
5080
|
+
]),
|
|
5081
|
+
_: 2
|
|
5082
|
+
}, 1032, ["text"])
|
|
5076
5083
|
]),
|
|
5077
5084
|
"cell-date": withCtx(({ row: bcfTopic }) => [
|
|
5078
5085
|
createTextVNode(toDisplayString($setup.deserializeShort(bcfTopic.creation_date)), 1)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bimdata/bcf-components",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.9",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"vue2-plugin.js",
|
|
@@ -21,11 +21,6 @@
|
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"vue": "^2.7 || ^3.0"
|
|
23
23
|
},
|
|
24
|
-
"peerDependenciesMeta": {
|
|
25
|
-
"@vue/composition-api": {
|
|
26
|
-
"optional": true
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
24
|
"devDependencies": {
|
|
30
25
|
"@rollup/plugin-replace": "^4.0.0",
|
|
31
26
|
"@semantic-release/changelog": "^6.0.0",
|