@operato/board 10.2.0 → 10.3.0
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 +19 -0
- package/dist/src/modeller/bulk-create.d.ts +16 -0
- package/dist/src/modeller/bulk-create.js +44 -0
- package/dist/src/modeller/bulk-create.js.map +1 -1
- package/dist/src/modeller/edit-toolbar-style.js +14 -2
- package/dist/src/modeller/edit-toolbar-style.js.map +1 -1
- package/dist/src/modeller/edit-toolbar.js +1 -44
- package/dist/src/modeller/edit-toolbar.js.map +1 -1
- package/dist/src/ox-board-template-list.js +2 -0
- package/dist/src/ox-board-template-list.js.map +1 -1
- package/dist/src/selector/ox-board-selector.js +2 -0
- package/dist/src/selector/ox-board-selector.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +21 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/board",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.3.0",
|
|
4
4
|
"description": "Webcomponent for board following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"type": "module",
|
|
@@ -35,7 +35,9 @@
|
|
|
35
35
|
"./ox-property-editor-board-selector.js": "./dist/src/ox-property-editor-board-selector.js",
|
|
36
36
|
"./ox-board-selector.js": "./dist/src/selector/ox-board-selector.js",
|
|
37
37
|
"./ox-board-creation-card.js": "./dist/src/selector/ox-board-creation-card.js",
|
|
38
|
-
"./register-default-groups.js": "./dist/src/component/register-default-groups.js"
|
|
38
|
+
"./register-default-groups.js": "./dist/src/component/register-default-groups.js",
|
|
39
|
+
"./bulk-create.js": "./dist/src/modeller/bulk-create.js",
|
|
40
|
+
"./bulk-create-dialog.js": "./dist/src/modeller/bulk-create-dialog.js"
|
|
39
41
|
},
|
|
40
42
|
"typesVersions": {
|
|
41
43
|
"*": {
|
|
@@ -86,6 +88,12 @@
|
|
|
86
88
|
],
|
|
87
89
|
"register-default-groups.js": [
|
|
88
90
|
"./dist/src/component/register-default-groups.d.ts"
|
|
91
|
+
],
|
|
92
|
+
"bulk-create.js": [
|
|
93
|
+
"./dist/src/modeller/bulk-create.d.ts"
|
|
94
|
+
],
|
|
95
|
+
"bulk-create-dialog.js": [
|
|
96
|
+
"./dist/src/modeller/bulk-create-dialog.d.ts"
|
|
89
97
|
]
|
|
90
98
|
}
|
|
91
99
|
},
|
|
@@ -104,18 +112,18 @@
|
|
|
104
112
|
"dependencies": {
|
|
105
113
|
"@material/web": "^2.0.0",
|
|
106
114
|
"@open-wc/scoped-elements": "^2.1.3",
|
|
107
|
-
"@operato/app": "^10.2.
|
|
108
|
-
"@operato/data-grist": "^10.2.
|
|
109
|
-
"@operato/font": "^10.2.
|
|
115
|
+
"@operato/app": "^10.2.1",
|
|
116
|
+
"@operato/data-grist": "^10.2.1",
|
|
117
|
+
"@operato/font": "^10.2.1",
|
|
110
118
|
"@operato/graphql": "^10.0.0",
|
|
111
119
|
"@operato/i18n": "^10.0.0",
|
|
112
|
-
"@operato/input": "^10.2.
|
|
113
|
-
"@operato/layout": "^10.2.
|
|
114
|
-
"@operato/markdown": "^10.2.
|
|
115
|
-
"@operato/popup": "^10.2.
|
|
116
|
-
"@operato/property-editor": "^10.2.
|
|
117
|
-
"@operato/property-panel": "^10.2.
|
|
118
|
-
"@operato/styles": "^10.2.
|
|
120
|
+
"@operato/input": "^10.2.1",
|
|
121
|
+
"@operato/layout": "^10.2.1",
|
|
122
|
+
"@operato/markdown": "^10.2.1",
|
|
123
|
+
"@operato/popup": "^10.2.1",
|
|
124
|
+
"@operato/property-editor": "^10.2.1",
|
|
125
|
+
"@operato/property-panel": "^10.2.1",
|
|
126
|
+
"@operato/styles": "^10.2.1",
|
|
119
127
|
"@operato/utils": "^10.0.0",
|
|
120
128
|
"@types/file-saver": "^2.0.4",
|
|
121
129
|
"@types/sortablejs": "^1.10.7",
|
|
@@ -164,5 +172,5 @@
|
|
|
164
172
|
"prettier --write"
|
|
165
173
|
]
|
|
166
174
|
},
|
|
167
|
-
"gitHead": "
|
|
175
|
+
"gitHead": "392ab6cde2f4cc4624c0923a4ad9d62a1dfd7ce8"
|
|
168
176
|
}
|