@operato/dataset 1.0.0-alpha.49 → 1.0.0-alpha.51

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 CHANGED
@@ -3,6 +3,23 @@
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.51](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.50...v1.0.0-alpha.51) (2022-04-05)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * export ox-grist-renderer-crontab.js ([3615720](https://github.com/hatiolab/operato/commit/3615720d119526a17272db2369bd80340b6cbc31))
12
+
13
+
14
+
15
+ ## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
16
+
17
+ **Note:** Version bump only for package @operato/dataset
18
+
19
+
20
+
21
+
22
+
6
23
  ## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
7
24
 
8
25
 
@@ -85,16 +85,19 @@
85
85
  import { i18next } from '@operato/i18n'
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
+ // import { OxGristRendererCrontab } from '@operato/app/grist-editor/ox-grist-renderer-crontab.js'
88
89
  import { OxGristEditorValueMap } from '@operato/app/grist-editor/ox-grist-editor-value-map.js'
89
90
  import { OxGristEditorPartitionKeys } from '@operato/app/grist-editor/ox-grist-editor-partition-keys.js'
90
91
 
91
- import { registerEditor } from '@operato/data-grist'
92
+ import { registerEditor, registerRenderer } from '@operato/data-grist'
92
93
 
93
94
  registerEditor('parameters', OxGristEditorParameters)
94
95
  registerEditor('crontab', OxGristEditorCrontab)
95
96
  registerEditor('value-map', OxGristEditorValueMap)
96
97
  registerEditor('partition-keys', OxGristEditorPartitionKeys)
97
98
 
99
+ // registerRenderer('crontab', OxGristRendererCrontab) -- caused import error
100
+
98
101
  /* set grist-editors */
99
102
  import '../dist/src/grist-editor/index.js'
100
103
 
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.49",
6
+ "version": "1.0.0-alpha.51",
7
7
  "main": "dist/src/index.js",
8
8
  "module": "dist/src/index.js",
9
9
  "exports": {
@@ -42,15 +42,15 @@
42
42
  "@material/mwc-button": "^0.25.3",
43
43
  "@material/mwc-icon": "^0.25.3",
44
44
  "@material/mwc-icon-button": "^0.25.3",
45
- "@operato/data-grist": "^1.0.0-alpha.49",
46
- "@operato/graphql": "^1.0.0-alpha.49",
47
- "@operato/i18n": "^1.0.0-alpha.49",
48
- "@operato/input": "^1.0.0-alpha.49",
49
- "@operato/layout": "^1.0.0-alpha.49",
50
- "@operato/property-editor": "^1.0.0-alpha.49",
51
- "@operato/shell": "^1.0.0-alpha.49",
52
- "@operato/styles": "^1.0.0-alpha.49",
53
- "@operato/utils": "^1.0.0-alpha.49",
45
+ "@operato/data-grist": "^1.0.0-alpha.51",
46
+ "@operato/graphql": "^1.0.0-alpha.51",
47
+ "@operato/i18n": "^1.0.0-alpha.51",
48
+ "@operato/input": "^1.0.0-alpha.51",
49
+ "@operato/layout": "^1.0.0-alpha.51",
50
+ "@operato/property-editor": "^1.0.0-alpha.51",
51
+ "@operato/shell": "^1.0.0-alpha.51",
52
+ "@operato/styles": "^1.0.0-alpha.51",
53
+ "@operato/utils": "^1.0.0-alpha.51",
54
54
  "lit": "^2.2.1"
55
55
  },
56
56
  "devDependencies": {
@@ -85,5 +85,5 @@
85
85
  "prettier --write"
86
86
  ]
87
87
  },
88
- "gitHead": "00a9fd5a03bc4e0864dafd394f93ecf3c2c09838"
88
+ "gitHead": "6304a714c9e6c9dd7d5dcaa0bb4715c48fe2f9bc"
89
89
  }