@fugood/bricks-project 2.21.0-beta.23 → 2.21.0-beta.24

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.
@@ -31,6 +31,8 @@ export const templateActionNameMap = {
31
31
  CHANGE_CANVAS: {
32
32
  canvasId: 'CANVAS_ID',
33
33
  canvasTitleLike: 'CANVAS_TITLE_LIKE',
34
+ canvasKeyMapList: 'CANVAS_KEY_MAP_LIST',
35
+ canvasKey: 'CANVAS_KEY',
34
36
  },
35
37
  MESSAGE: {
36
38
  type: 'SYSTEM_MESSAGE_TYPE',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.21.0-beta.23",
3
+ "version": "2.21.0-beta.24",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "node scripts/build.js"
@@ -13,5 +13,5 @@
13
13
  "lodash": "^4.17.4",
14
14
  "uuid": "^8.3.1"
15
15
  },
16
- "gitHead": "d7d83d4425e118960bcbde76a7e66a2c2f4e7bdb"
16
+ "gitHead": "279cda43b8e705467a5a1562f610331aae178e8a"
17
17
  }
package/types/system.ts CHANGED
@@ -143,6 +143,16 @@ export type SystemActionChangeCanvas = ActionWithParams & {
143
143
  value?: string | DataLink
144
144
  mapping?: string
145
145
  }
146
+ | {
147
+ input: 'canvasKeyMapList'
148
+ value?: {} | DataLink
149
+ mapping?: string
150
+ }
151
+ | {
152
+ input: 'canvasKey'
153
+ value?: string | DataLink
154
+ mapping?: string
155
+ }
146
156
  >
147
157
  }
148
158