@operato/board 0.3.28 → 0.4.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": "@operato/board",
3
- "version": "0.3.28",
3
+ "version": "0.4.2",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "license": "MIT",
@@ -49,22 +49,22 @@
49
49
  "storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
50
50
  },
51
51
  "dependencies": {
52
- "@operato/data-grist": "^0.3.28",
53
- "@operato/graphql": "^0.3.28",
54
- "@operato/i18n": "^0.3.28",
55
- "@operato/input": "^0.3.28",
56
- "@operato/markdown": "^0.3.28",
57
- "@operato/popup": "^0.3.28",
58
- "@operato/property-editor": "^0.3.28",
59
- "@operato/styles": "^0.3.28",
60
- "@operato/utils": "^0.3.28",
52
+ "@operato/data-grist": "^0.4.2",
53
+ "@operato/graphql": "^0.4.2",
54
+ "@operato/i18n": "^0.4.2",
55
+ "@operato/input": "^0.4.2",
56
+ "@operato/markdown": "^0.4.2",
57
+ "@operato/popup": "^0.4.2",
58
+ "@operato/property-editor": "^0.4.2",
59
+ "@operato/styles": "^0.4.2",
60
+ "@operato/utils": "^0.4.2",
61
61
  "@polymer/paper-dropdown-menu": "^3.2.0",
62
62
  "@things-factory/modeller-ui": "^4.0.44",
63
63
  "@types/file-saver": "^2.0.4",
64
64
  "@types/sortablejs": "^1.10.7",
65
65
  "file-saver": "^2.0.5",
66
- "lit": "^2.0.2",
67
- "lodash": "^4.17.21",
66
+ "lit": "^2.2.0",
67
+ "lodash-es": "^4.17.21",
68
68
  "sortablejs": "^1.14.0"
69
69
  },
70
70
  "devDependencies": {
@@ -74,7 +74,7 @@
74
74
  "@material/mwc-fab": "^0.25.3",
75
75
  "@material/mwc-icon": "^0.25.3",
76
76
  "@open-wc/eslint-config": "^4.3.0",
77
- "@open-wc/testing": "next",
77
+ "@open-wc/testing": "^3.0.4",
78
78
  "@rollup/plugin-image": "^2.1.1",
79
79
  "@rollup/plugin-json": "^4.1.0",
80
80
  "@types/bwip-js": "^2.1.1",
@@ -106,5 +106,5 @@
106
106
  "prettier --write"
107
107
  ]
108
108
  },
109
- "gitHead": "5df96b8e79c130b4a85c83181ce83015ec2b1727"
109
+ "gitHead": "413e768caba403801b22e42aac0ed4f9dad7ad8d"
110
110
  }
@@ -12,7 +12,7 @@ import './inspector/inspector'
12
12
 
13
13
  import { css, html, LitElement, PropertyValues } from 'lit'
14
14
  import { customElement, property } from 'lit/decorators.js'
15
- import deepClone from 'lodash/cloneDeep'
15
+ import deepClone from 'lodash-es/cloneDeep'
16
16
 
17
17
  import { BOUNDS, Component, Model, Scene } from '@hatiolab/things-scene'
18
18
  import { ScrollbarStyles } from '@operato/styles'
@@ -50,10 +50,6 @@ export class BoardModeller extends LitElement {
50
50
  overflow: hidden;
51
51
  }
52
52
 
53
- #toolbar {
54
- grid-area: toolbar;
55
- }
56
-
57
53
  edit-toolbar {
58
54
  grid-area: toolbar;
59
55
  }
@@ -201,7 +197,6 @@ export class BoardModeller extends LitElement {
201
197
  render() {
202
198
  return html`
203
199
  <edit-toolbar
204
- id="edittoolbar"
205
200
  .scene=${this.scene}
206
201
  .selected=${this.selected}
207
202
  @hide-property-changed=${(e: CustomEvent) => (this.hideProperty = e.detail.value)}