@operato/board 1.0.0-beta.20 → 1.0.0-beta.23
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/CHANGELOG.md +25 -0
- package/dist/src/modeller/property-sidebar/inspector/inspector.js +1 -1
- package/dist/src/modeller/property-sidebar/inspector/inspector.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -13
- package/src/modeller/property-sidebar/inspector/inspector.ts +1 -1
- package/yarn-error.log +0 -18355
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/board",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.23",
|
|
4
4
|
"description": "Webcomponent for board following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,17 +49,17 @@
|
|
|
49
49
|
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@operato/app": "^1.0.0-beta.
|
|
53
|
-
"@operato/data-grist": "^1.0.0-beta.
|
|
54
|
-
"@operato/font": "^1.0.0-beta.
|
|
55
|
-
"@operato/graphql": "^1.0.0-beta.
|
|
56
|
-
"@operato/i18n": "^1.0.0-beta.
|
|
57
|
-
"@operato/input": "^1.0.0-beta.
|
|
58
|
-
"@operato/markdown": "^1.0.0-beta.
|
|
59
|
-
"@operato/popup": "^1.0.0-beta.
|
|
60
|
-
"@operato/property-editor": "^1.0.0-beta.
|
|
61
|
-
"@operato/styles": "^1.0.0-beta.
|
|
62
|
-
"@operato/utils": "^1.0.0-beta.
|
|
52
|
+
"@operato/app": "^1.0.0-beta.23",
|
|
53
|
+
"@operato/data-grist": "^1.0.0-beta.23",
|
|
54
|
+
"@operato/font": "^1.0.0-beta.23",
|
|
55
|
+
"@operato/graphql": "^1.0.0-beta.23",
|
|
56
|
+
"@operato/i18n": "^1.0.0-beta.23",
|
|
57
|
+
"@operato/input": "^1.0.0-beta.23",
|
|
58
|
+
"@operato/markdown": "^1.0.0-beta.23",
|
|
59
|
+
"@operato/popup": "^1.0.0-beta.23",
|
|
60
|
+
"@operato/property-editor": "^1.0.0-beta.23",
|
|
61
|
+
"@operato/styles": "^1.0.0-beta.23",
|
|
62
|
+
"@operato/utils": "^1.0.0-beta.23",
|
|
63
63
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
|
64
64
|
"@types/file-saver": "^2.0.4",
|
|
65
65
|
"@types/sortablejs": "^1.10.7",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"prettier --write"
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "7f3dbeb570ea4f5329d187057a45cb43894100eb"
|
|
112
112
|
}
|
|
@@ -319,7 +319,7 @@ export default class SceneInspector extends LitElement {
|
|
|
319
319
|
<span class=${this.getNodeHandleClass(component)}> </span>
|
|
320
320
|
|
|
321
321
|
<span class="type">${depth == 0 ? 'ROOT' : type}</span> ${name
|
|
322
|
-
? html` <span class="name"
|
|
322
|
+
? html` <span class="name">${name}</span> `
|
|
323
323
|
: html``}
|
|
324
324
|
</span>
|
|
325
325
|
|