@vonaffenfels/slate-editor 1.0.76 → 1.0.77

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vonaffenfels/slate-editor",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -71,7 +71,7 @@
71
71
  "cssnano": "^5.0.1",
72
72
  "escape-html": "^1.0.3"
73
73
  },
74
- "gitHead": "9fa8d4892ccbfff7b3b317cf81635618d47cf357",
74
+ "gitHead": "99fb79dcd4b84bae8274c511f27e685e42f0fea2",
75
75
  "publishConfig": {
76
76
  "access": "public"
77
77
  }
@@ -29,7 +29,7 @@
29
29
  input[type="text"],
30
30
  input[type="number"],
31
31
  input[type="color"],
32
- input[type="date"],
32
+ input[type="datetime-local"],
33
33
  select,
34
34
  textarea {
35
35
  display: block;
@@ -244,7 +244,7 @@ export const SidebarEditorField = ({
244
244
  case "date":
245
245
  return (
246
246
  <input
247
- type="date"
247
+ type="datetime-local"
248
248
  value={value || ""}
249
249
  onChange={e => onChange(fieldKey, e.target.value)}/>
250
250
  );