@symbo.ls/atoms 2.29.72 → 2.29.74

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.
Files changed (2) hide show
  1. package/Box.js +2 -2
  2. package/package.json +6 -6
package/Box.js CHANGED
@@ -104,9 +104,9 @@ export const Box = {
104
104
  attr: {
105
105
  id: (el) => el.call('isString', el.props.id) && el.props.id,
106
106
  title: (el) => el.call('isString', el.props.title) && el.props.title,
107
- contentEditable: async (el) => {
107
+ contentEditable: (el) => {
108
108
  const isEditable = el.props.contentEditable || el.props.contenteditable
109
- if (isEditable) return await el.call('exec', isEditable, el, state)
109
+ if (isEditable) return el.call('exec', isEditable, el, state)
110
110
  },
111
111
  dir: (el) => el.props.dir,
112
112
  draggable: (el) => el.props.draggable,
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.29.72",
3
+ "version": "2.29.74",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "cc55625588e16c546fc22607d4e1c4bca46661e6",
6
+ "gitHead": "f1a9c2ce97fbb23fc2ddb1727a74cf09290a7eed",
7
7
  "dependencies": {
8
- "@domql/state": "^2.29.72",
9
- "@domql/utils": "^2.29.72",
10
- "@symbo.ls/emotion": "^2.29.72",
11
- "@symbo.ls/scratch": "^2.29.72"
8
+ "@domql/state": "^2.29.74",
9
+ "@domql/utils": "^2.29.74",
10
+ "@symbo.ls/emotion": "^2.29.74",
11
+ "@symbo.ls/scratch": "^2.29.74"
12
12
  },
13
13
  "source": "src/index.js",
14
14
  "devDependencies": {