@fugood/bricks-project 2.22.0-beta.6 → 2.22.0-beta.7

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/package.json +2 -2
  2. package/types/canvas.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.22.0-beta.6",
3
+ "version": "2.22.0-beta.7",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "node scripts/build.js"
@@ -14,5 +14,5 @@
14
14
  "lodash": "^4.17.4",
15
15
  "uuid": "^8.3.1"
16
16
  },
17
- "gitHead": "48228c8d2a4661d7cf8180d874eb9610e8a477bd"
17
+ "gitHead": "b205bf371305e9d4929f05c0c310ff2362a43739"
18
18
  }
package/types/canvas.ts CHANGED
@@ -14,7 +14,7 @@ interface CanvasDef {
14
14
  showingTimeout?: number | DataLink
15
15
  /* Canvas ID for change next canvas on showing timeout */
16
16
  nextCanvasId?: string | DataLink | (() => Canvas)
17
- /* Canvas's background color */
17
+ /* Background color of Canvas */
18
18
  backgroundColor?: string | DataLink
19
19
  /* Dismiss keyboard on press */
20
20
  dismissKeyboardOnPress?: boolean | DataLink