@operato/dataset 1.0.0-alpha.26 → 1.0.0-alpha.28
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/demo/ox-grist-editor-data-item-spec.html +5 -3
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
* add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [1.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2022-03-17)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### :rocket: New Features
|
|
19
|
+
|
|
20
|
+
* add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @operato/dataset
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
NODE_ENV: 'production'
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
+
|
|
56
|
+
window.operato = 1 /* to debug popuped grist-editors */
|
|
55
57
|
</script>
|
|
56
58
|
</head>
|
|
57
59
|
|
|
58
60
|
<body>
|
|
59
61
|
<script type="module">
|
|
60
|
-
window.operato = 1
|
|
61
|
-
|
|
62
62
|
import { LitElement, html, css, render } from 'lit'
|
|
63
63
|
|
|
64
64
|
import '@operato/property-editor/ox-property-editor-checkbox.js'
|
|
@@ -86,12 +86,14 @@
|
|
|
86
86
|
import { OxGristEditorParameters } from '@operato/app/grist-editor/ox-grist-editor-parameters.js'
|
|
87
87
|
import { OxGristEditorCrontab } from '@operato/app/grist-editor/ox-grist-editor-crontab.js'
|
|
88
88
|
import { OxGristEditorValueMap } from '@operato/app/grist-editor/ox-grist-editor-value-map.js'
|
|
89
|
+
import { OxGristEditorPartitionKeys } from '@operato/app/grist-editor/ox-grist-editor-partition-keys.js'
|
|
89
90
|
|
|
90
91
|
import { registerEditor } from '@operato/data-grist'
|
|
91
92
|
|
|
92
93
|
registerEditor('parameters', OxGristEditorParameters)
|
|
93
94
|
registerEditor('crontab', OxGristEditorCrontab)
|
|
94
95
|
registerEditor('value-map', OxGristEditorValueMap)
|
|
96
|
+
registerEditor('partition-keys', OxGristEditorPartitionKeys)
|
|
95
97
|
|
|
96
98
|
/* set grist-editors */
|
|
97
99
|
import '../dist/src/grist-editor/index.js'
|
|
@@ -326,7 +328,7 @@
|
|
|
326
328
|
width: 120
|
|
327
329
|
},
|
|
328
330
|
{
|
|
329
|
-
type: '
|
|
331
|
+
type: 'partition-keys',
|
|
330
332
|
name: 'keyvalue',
|
|
331
333
|
header: i18next.t('field.keyvalue'),
|
|
332
334
|
record: {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "WebApplication dataset supporting components following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "1.0.0-alpha.
|
|
6
|
+
"version": "1.0.0-alpha.28",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
9
9
|
"exports": {
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"@material/mwc-button": "^0.25.3",
|
|
40
40
|
"@material/mwc-icon": "^0.25.3",
|
|
41
41
|
"@material/mwc-icon-button": "^0.25.3",
|
|
42
|
-
"@operato/data-grist": "^1.0.0-alpha.
|
|
43
|
-
"@operato/graphql": "^1.0.0-alpha.
|
|
44
|
-
"@operato/i18n": "^1.0.0-alpha.
|
|
45
|
-
"@operato/input": "^1.0.0-alpha.
|
|
46
|
-
"@operato/layout": "^1.0.0-alpha.
|
|
47
|
-
"@operato/property-editor": "^1.0.0-alpha.
|
|
48
|
-
"@operato/shell": "^1.0.0-alpha.
|
|
49
|
-
"@operato/styles": "^1.0.0-alpha.
|
|
50
|
-
"@operato/utils": "^1.0.0-alpha.
|
|
42
|
+
"@operato/data-grist": "^1.0.0-alpha.28",
|
|
43
|
+
"@operato/graphql": "^1.0.0-alpha.28",
|
|
44
|
+
"@operato/i18n": "^1.0.0-alpha.28",
|
|
45
|
+
"@operato/input": "^1.0.0-alpha.28",
|
|
46
|
+
"@operato/layout": "^1.0.0-alpha.28",
|
|
47
|
+
"@operato/property-editor": "^1.0.0-alpha.28",
|
|
48
|
+
"@operato/shell": "^1.0.0-alpha.28",
|
|
49
|
+
"@operato/styles": "^1.0.0-alpha.28",
|
|
50
|
+
"@operato/utils": "^1.0.0-alpha.28",
|
|
51
51
|
"lit": "^2.2.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"prettier --write"
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "740f5e661cd3d3c2866eab2713d8ace1d4e0c3fc"
|
|
86
86
|
}
|