@operato/board 2.0.0-alpha.77 → 2.0.0-alpha.78

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/src/modeller/component-toolbar/component-menu.d.ts +1 -1
  3. package/dist/src/modeller/component-toolbar/component-menu.js +1 -1
  4. package/dist/src/modeller/component-toolbar/component-menu.js.map +1 -1
  5. package/dist/src/modeller/component-toolbar/component-toolbar.d.ts +1 -1
  6. package/dist/src/modeller/component-toolbar/component-toolbar.js +1 -1
  7. package/dist/src/modeller/component-toolbar/component-toolbar.js.map +1 -1
  8. package/dist/src/modeller/property-sidebar/data-binding/data-binding.d.ts +1 -1
  9. package/dist/src/modeller/property-sidebar/data-binding/data-binding.js +1 -1
  10. package/dist/src/modeller/property-sidebar/data-binding/data-binding.js.map +1 -1
  11. package/dist/src/modeller/property-sidebar/effects/effects.d.ts +1 -1
  12. package/dist/src/modeller/property-sidebar/effects/effects.js +1 -1
  13. package/dist/src/modeller/property-sidebar/effects/effects.js.map +1 -1
  14. package/dist/src/modeller/property-sidebar/effects/property-animations.d.ts +1 -1
  15. package/dist/src/modeller/property-sidebar/effects/property-animations.js +1 -1
  16. package/dist/src/modeller/property-sidebar/effects/property-animations.js.map +1 -1
  17. package/dist/src/modeller/property-sidebar/effects/property-event.d.ts +1 -1
  18. package/dist/src/modeller/property-sidebar/effects/property-event.js +1 -1
  19. package/dist/src/modeller/property-sidebar/effects/property-event.js.map +1 -1
  20. package/dist/src/modeller/property-sidebar/property-sidebar.d.ts +1 -1
  21. package/dist/src/modeller/property-sidebar/property-sidebar.js +1 -1
  22. package/dist/src/modeller/property-sidebar/property-sidebar.js.map +1 -1
  23. package/dist/src/modeller/property-sidebar/specifics/specifics.d.ts +1 -1
  24. package/dist/src/modeller/property-sidebar/specifics/specifics.js +1 -1
  25. package/dist/src/modeller/property-sidebar/specifics/specifics.js.map +1 -1
  26. package/dist/src/ox-board-modeller.d.ts +1 -1
  27. package/dist/src/ox-board-modeller.js +1 -1
  28. package/dist/src/ox-board-modeller.js.map +1 -1
  29. package/dist/stories/property-data-binding.stories.d.ts +0 -1
  30. package/dist/stories/property-data-binding.stories.js +1 -1
  31. package/dist/stories/property-data-binding.stories.js.map +1 -1
  32. package/dist/tsconfig.tsbuildinfo +1 -1
  33. package/package.json +3 -3
  34. package/src/modeller/component-toolbar/component-menu.ts +1 -1
  35. package/src/modeller/component-toolbar/component-toolbar.ts +1 -1
  36. package/src/modeller/property-sidebar/data-binding/data-binding.ts +1 -1
  37. package/src/modeller/property-sidebar/effects/effects.ts +1 -1
  38. package/src/modeller/property-sidebar/effects/property-animations.ts +1 -1
  39. package/src/modeller/property-sidebar/effects/property-event.ts +1 -1
  40. package/src/modeller/property-sidebar/property-sidebar.ts +1 -1
  41. package/src/modeller/property-sidebar/specifics/specifics.ts +1 -1
  42. package/src/ox-board-modeller.ts +1 -1
  43. package/stories/property-data-binding.stories.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/board",
3
- "version": "2.0.0-alpha.77",
3
+ "version": "2.0.0-alpha.78",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@material/web": "^1.4.0",
95
- "@open-wc/scoped-elements": "^3.0.5",
95
+ "@open-wc/scoped-elements": "^2.1.3",
96
96
  "@operato/app": "^2.0.0-alpha.77",
97
97
  "@operato/data-grist": "^2.0.0-alpha.68",
98
98
  "@operato/font": "^2.0.0-alpha.77",
@@ -152,5 +152,5 @@
152
152
  "prettier --write"
153
153
  ]
154
154
  },
155
- "gitHead": "a3fadb794c378f982a064f10542128af5058049e"
155
+ "gitHead": "63399bd1eb3c8083f6aad1a8cccb87e780c713bd"
156
156
  }
@@ -6,7 +6,7 @@ import { css, html, LitElement, PropertyValues } from 'lit'
6
6
  import { property, query, state } from 'lit/decorators.js'
7
7
 
8
8
  import { Scene } from '@hatiolab/things-scene'
9
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
9
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
10
10
  import { ScrollbarStyles } from '@operato/styles'
11
11
  import { i18next } from '@operato/i18n'
12
12
 
@@ -6,7 +6,7 @@ import { css, html, LitElement, PropertyValues } from 'lit'
6
6
  import { property, query, queryAll } from 'lit/decorators.js'
7
7
 
8
8
  import { Scene, SCENE_MODE } from '@hatiolab/things-scene'
9
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
9
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
10
10
 
11
11
  import { ComponentGroup } from '../../types'
12
12
  import { ComponentMenu } from './component-menu.js'
@@ -12,7 +12,7 @@ import { css, html, PropertyValues } from 'lit'
12
12
  import { property, query, state } from 'lit/decorators.js'
13
13
 
14
14
  import { Properties, Scene } from '@hatiolab/things-scene'
15
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
15
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
16
16
 
17
17
  import { AbstractProperty } from '../abstract-property.js'
18
18
  import { PropertySharedStyle } from '../property-shared-style.js'
@@ -9,7 +9,7 @@ import { html } from 'lit'
9
9
  import { property } from 'lit/decorators.js'
10
10
 
11
11
  import { Properties, Scene } from '@hatiolab/things-scene'
12
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
12
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
13
13
 
14
14
  import { AbstractProperty } from '../abstract-property.js'
15
15
  import { PropertySharedStyle } from '../property-shared-style.js'
@@ -9,7 +9,7 @@ import { css, html, LitElement } from 'lit'
9
9
  import { property, state } from 'lit/decorators.js'
10
10
 
11
11
  import { Properties, Scene } from '@hatiolab/things-scene'
12
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
12
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
13
13
 
14
14
  import { PropertySharedStyle } from '../property-shared-style.js'
15
15
  import { PropertyAnimation } from './property-animation.js'
@@ -8,7 +8,7 @@ import { html, LitElement } from 'lit'
8
8
  import { property } from 'lit/decorators.js'
9
9
 
10
10
  import { Properties, Scene } from '@hatiolab/things-scene'
11
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
11
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
12
12
 
13
13
  import { PropertySharedStyle } from '../property-shared-style'
14
14
  import { PropertyEventHover } from './property-event-hover'
@@ -9,7 +9,7 @@ import { property } from 'lit/decorators.js'
9
9
  import deepClone from 'lodash-es/cloneDeep'
10
10
 
11
11
  import { BOUNDS, Component, Model, Scene } from '@hatiolab/things-scene'
12
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
12
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
13
13
  import { ScrollbarStyles } from '@operato/styles'
14
14
 
15
15
  import { PropertyDataBinding } from './data-binding/data-binding.js'
@@ -8,7 +8,7 @@ import { css, html, LitElement } from 'lit'
8
8
  import { property } from 'lit/decorators.js'
9
9
 
10
10
  import { Component, Scene } from '@hatiolab/things-scene'
11
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
11
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
12
12
 
13
13
  import { i18next } from '@operato/i18n'
14
14
 
@@ -12,7 +12,7 @@ import { css, html, LitElement, PropertyValues } from 'lit'
12
12
  import { customElement, property, query } from 'lit/decorators.js'
13
13
 
14
14
  import { MODE_EDIT, Scene, SCENE_MODE } from '@hatiolab/things-scene'
15
- import { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'
15
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
16
16
  import { OxPopup } from '@operato/popup'
17
17
  import { isMacOS, togglefullscreen } from '@operato/utils'
18
18
 
@@ -1,4 +1,4 @@
1
- import '@webcomponents/scoped-custom-element-registry'
1
+ // import '@webcomponents/scoped-custom-element-registry' // later only for @open-wc/scoped-elements@3
2
2
 
3
3
  import { PropertyDataBinding } from '../src/modeller/property-sidebar/data-binding/data-binding.js'
4
4