@operato/process 2.0.0-alpha.76 → 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.
- package/CHANGELOG.md +18 -0
- package/dist/src/modeller/component-toolbar/component-menu.d.ts +1 -1
- package/dist/src/modeller/component-toolbar/component-menu.js +1 -1
- package/dist/src/modeller/component-toolbar/component-menu.js.map +1 -1
- package/dist/src/modeller/component-toolbar/component-toolbar.d.ts +1 -1
- package/dist/src/modeller/component-toolbar/component-toolbar.js +1 -1
- package/dist/src/modeller/component-toolbar/component-toolbar.js.map +1 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.js +1 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.js.map +1 -1
- package/dist/src/modeller/property-sidebar/effects/effects.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/effects/effects.js +1 -1
- package/dist/src/modeller/property-sidebar/effects/effects.js.map +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event.js +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event.js.map +1 -1
- package/dist/src/modeller/property-sidebar/property-sidebar.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/property-sidebar.js +1 -1
- package/dist/src/modeller/property-sidebar/property-sidebar.js.map +1 -1
- package/dist/src/modeller/property-sidebar/specifics/specifics.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/specifics/specifics.js +1 -1
- package/dist/src/modeller/property-sidebar/specifics/specifics.js.map +1 -1
- package/dist/src/ox-process-modeller.d.ts +1 -1
- package/dist/src/ox-process-modeller.js +1 -1
- package/dist/src/ox-process-modeller.js.map +1 -1
- package/dist/stories/index.stories.js +1 -0
- package/dist/stories/index.stories.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
- package/src/modeller/component-toolbar/component-menu.ts +1 -1
- package/src/modeller/component-toolbar/component-toolbar.ts +1 -1
- package/src/modeller/property-sidebar/data-binding/data-binding.ts +1 -1
- package/src/modeller/property-sidebar/effects/effects.ts +1 -1
- package/src/modeller/property-sidebar/effects/property-event.ts +1 -1
- package/src/modeller/property-sidebar/property-sidebar.ts +1 -1
- package/src/modeller/property-sidebar/specifics/specifics.ts +1 -1
- package/src/ox-process-modeller.ts +1 -1
- package/stories/index.stories.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/process",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.78",
|
|
4
4
|
"description": "Webcomponent for business process modeling following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@open-wc/scoped-elements": "^
|
|
71
|
-
"@operato/app": "^2.0.0-alpha.
|
|
72
|
-
"@operato/board": "^2.0.0-alpha.
|
|
70
|
+
"@open-wc/scoped-elements": "^2.1.3",
|
|
71
|
+
"@operato/app": "^2.0.0-alpha.77",
|
|
72
|
+
"@operato/board": "^2.0.0-alpha.78",
|
|
73
73
|
"@operato/data-grist": "^2.0.0-alpha.68",
|
|
74
|
-
"@operato/font": "^2.0.0-alpha.
|
|
74
|
+
"@operato/font": "^2.0.0-alpha.77",
|
|
75
75
|
"@operato/graphql": "^2.0.0-alpha.57",
|
|
76
76
|
"@operato/i18n": "^2.0.0-alpha.59",
|
|
77
77
|
"@operato/input": "^2.0.0-alpha.68",
|
|
78
78
|
"@operato/markdown": "^2.0.0-alpha.68",
|
|
79
79
|
"@operato/popup": "^2.0.0-alpha.68",
|
|
80
|
-
"@operato/property-editor": "^2.0.0-alpha.
|
|
80
|
+
"@operato/property-editor": "^2.0.0-alpha.77",
|
|
81
81
|
"@operato/styles": "^2.0.0-alpha.68",
|
|
82
82
|
"@operato/utils": "^2.0.0-alpha.68",
|
|
83
83
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
"@web/dev-server": "^0.3.0",
|
|
106
106
|
"@web/dev-server-storybook": "^2.0.1",
|
|
107
107
|
"@web/test-runner": "^0.18.0",
|
|
108
|
+
"@webcomponents/scoped-custom-element-registry": "^0.0.9",
|
|
108
109
|
"concurrently": "^8.0.1",
|
|
109
110
|
"eslint": "^8.39.0",
|
|
110
111
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -127,5 +128,5 @@
|
|
|
127
128
|
"prettier --write"
|
|
128
129
|
]
|
|
129
130
|
},
|
|
130
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "63399bd1eb3c8083f6aad1a8cccb87e780c713bd"
|
|
131
132
|
}
|
|
@@ -2,7 +2,7 @@ import { css, html, LitElement, PropertyValues } from 'lit'
|
|
|
2
2
|
import { property, query, state } from 'lit/decorators.js'
|
|
3
3
|
|
|
4
4
|
import { Scene } from '@hatiolab/things-scene'
|
|
5
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
5
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements'
|
|
6
6
|
import { ScrollbarStyles } from '@operato/styles'
|
|
7
7
|
import { i18next } from '@operato/i18n'
|
|
8
8
|
|
|
@@ -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
|
|
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
|
|
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
|
|
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'
|
|
@@ -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
|
|
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
|
|
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
|
|
11
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements'
|
|
12
12
|
|
|
13
13
|
import { i18next } from '@operato/i18n'
|
|
14
14
|
|
|
@@ -13,7 +13,7 @@ import { css, html, LitElement, PropertyValues } from 'lit'
|
|
|
13
13
|
import { customElement, property, query } from 'lit/decorators.js'
|
|
14
14
|
|
|
15
15
|
import { Scene, SCENE_MODE } from '@hatiolab/things-scene'
|
|
16
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
16
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements'
|
|
17
17
|
import { OxPopup } from '@operato/popup'
|
|
18
18
|
import { isMacOS, togglefullscreen } from '@operato/utils'
|
|
19
19
|
|