@operato/board 1.0.0-beta.41 → 1.0.0-beta.45
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 +35 -0
- package/dist/src/modeller/property-sidebar/property-sidebar.js +1 -0
- package/dist/src/modeller/property-sidebar/property-sidebar.js.map +1 -1
- package/dist/src/modeller/property-sidebar/specifics/specific-properties-builder.js +2 -1
- package/dist/src/modeller/property-sidebar/specifics/specific-properties-builder.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -17
- package/src/modeller/property-sidebar/property-sidebar.ts +1 -0
- package/src/modeller/property-sidebar/specifics/specific-properties-builder.ts +3 -2
- 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.45",
|
|
4
4
|
"description": "Webcomponent for board following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,32 +49,32 @@
|
|
|
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.45",
|
|
53
|
+
"@operato/data-grist": "^1.0.0-beta.45",
|
|
54
|
+
"@operato/font": "^1.0.0-beta.45",
|
|
55
|
+
"@operato/graphql": "^1.0.0-beta.45",
|
|
56
|
+
"@operato/i18n": "^1.0.0-beta.45",
|
|
57
|
+
"@operato/input": "^1.0.0-beta.45",
|
|
58
|
+
"@operato/markdown": "^1.0.0-beta.45",
|
|
59
|
+
"@operato/popup": "^1.0.0-beta.45",
|
|
60
|
+
"@operato/property-editor": "^1.0.0-beta.45",
|
|
61
|
+
"@operato/styles": "^1.0.0-beta.45",
|
|
62
|
+
"@operato/utils": "^1.0.0-beta.45",
|
|
63
63
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
|
64
64
|
"@types/file-saver": "^2.0.4",
|
|
65
65
|
"@types/sortablejs": "^1.10.7",
|
|
66
66
|
"dexie": "^3.2.2",
|
|
67
67
|
"file-saver": "^2.0.5",
|
|
68
|
-
"lit": "^2.2.
|
|
68
|
+
"lit": "^2.2.7",
|
|
69
69
|
"lodash-es": "^4.17.21",
|
|
70
70
|
"sortablejs": "^1.14.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@custom-elements-manifest/analyzer": "^0.4.17",
|
|
74
74
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
75
|
-
"@hatiolab/things-scene": "^3.0.
|
|
76
|
-
"@material/mwc-fab": "^0.
|
|
77
|
-
"@material/mwc-icon": "^0.
|
|
75
|
+
"@hatiolab/things-scene": "^3.0.18",
|
|
76
|
+
"@material/mwc-fab": "^0.26.1",
|
|
77
|
+
"@material/mwc-icon": "^0.26.1",
|
|
78
78
|
"@open-wc/eslint-config": "^4.3.0",
|
|
79
79
|
"@open-wc/testing": "^3.0.4",
|
|
80
80
|
"@rollup/plugin-image": "^2.1.1",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"prettier --write"
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "e598f165f1a949e03dc9a777c28188a3ffc3e29e"
|
|
112
112
|
}
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
import '@operato/app/property-editor.js' /* for registering property editors */
|
|
6
6
|
|
|
7
|
-
import { LitElement, PropertyValues
|
|
7
|
+
import { html, LitElement, PropertyValues } from 'lit'
|
|
8
8
|
import { customElement, property } from 'lit/decorators.js'
|
|
9
9
|
|
|
10
|
-
import { OxPropertyEditor } from '@operato/property-editor'
|
|
11
10
|
import { Properties } from '@hatiolab/things-scene'
|
|
11
|
+
import { OxPropertyEditor } from '@operato/property-editor'
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
모든 에디터들은 change 이벤트를 지원해야 한다. 또한, 모든 에디터들은 value속성에 값을 가져야 한다.
|
|
@@ -95,6 +95,7 @@ class SpecificPropertiesBuilder extends LitElement {
|
|
|
95
95
|
element.observe = prop.observe
|
|
96
96
|
}
|
|
97
97
|
element.property = prop.property
|
|
98
|
+
element.editor = prop.editor
|
|
98
99
|
element.setAttribute('property-editor', 'true')
|
|
99
100
|
|
|
100
101
|
this.appendChild(element)
|