@fugood/bricks-project 2.21.0-beta.39 → 2.21.0-beta.41

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.
@@ -433,11 +433,8 @@ export const templateActionNameMap = {
433
433
 
434
434
  GENERATOR_INFORMATION: {
435
435
  GENERATOR_INFORMATION_SHOW: {
436
- type: 'GENERATOR_INFORMATION_TYPE',
437
- title: 'GENERATOR_INFORMATION_TITLE',
438
- description: 'GENERATOR_INFORMATION_DESCRIPTION',
439
- extraInfo: 'GENERATOR_INFORMATION_EXTRA_INFO',
440
436
  displayLanguage: 'GENERATOR_INFORMATION_DISPLAY_LANGUAGE',
437
+ content: 'GENERATOR_INFORMATION_CONTENT',
441
438
  },
442
439
  },
443
440
  GENERATOR_INTENT: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.21.0-beta.39",
3
+ "version": "2.21.0-beta.41",
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": "e98ea50719977cc6a99124aab6792f8ab7747a47"
16
+ "gitHead": "4cc05b05b4157d351bb74f73b20649d61cd9f52e"
17
17
  }
@@ -4277,6 +4277,8 @@ Default property:
4277
4277
  bannerImage?: string | DataLink
4278
4278
  /* Banner image md5 */
4279
4279
  bannerImageMd5?: string | DataLink
4280
+ /* Show AI transcribe tip on the bottom of the modal */
4281
+ aiTranscribeTip?: boolean | DataLink
4280
4282
  /* Show close button */
4281
4283
  showClose?: boolean | DataLink
4282
4284
  /* Show back button */
@@ -4396,30 +4398,15 @@ export type GeneratorInformationActionShow = ActionWithParams & {
4396
4398
  __actionName: 'GENERATOR_INFORMATION_SHOW'
4397
4399
  params?: Array<
4398
4400
  | {
4399
- input: 'type'
4400
- value?: string | DataLink
4401
- mapping?: string
4402
- }
4403
- | {
4404
- input: 'title'
4405
- value?: string | DataLink
4406
- mapping?: string
4407
- }
4408
- | {
4409
- input: 'description'
4401
+ input: 'displayLanguage'
4410
4402
  value?: string | DataLink
4411
4403
  mapping?: string
4412
4404
  }
4413
4405
  | {
4414
- input: 'extraInfo'
4406
+ input: 'content'
4415
4407
  value?: {} | DataLink
4416
4408
  mapping?: string
4417
4409
  }
4418
- | {
4419
- input: 'displayLanguage'
4420
- value?: string | DataLink
4421
- mapping?: string
4422
- }
4423
4410
  >
4424
4411
  }
4425
4412
 
@@ -4439,15 +4426,21 @@ Default property:
4439
4426
  property?: {
4440
4427
  /* Modal mode */
4441
4428
  modalMode?: 'root' | 'in-subspace' | DataLink
4442
- /* Information type */
4443
- type?: 'loading' | 'info' | 'warning' | 'success' | 'queue-number' | DataLink
4444
- /* Title */
4445
- title?: string | DataLink
4446
- /* Description */
4447
- description?: string | DataLink
4448
- /* Extra information
4449
- `queue-number`: { number: string, labelTitle: string, note: string } */
4450
- extraInfo?: {} | DataLink
4429
+ /* Information contents */
4430
+ content?:
4431
+ | DataLink
4432
+ | {
4433
+ type?: 'loading' | 'info' | 'warning' | 'success' | 'queue-number' | DataLink
4434
+ title?: string | DataLink
4435
+ description?: string | DataLink
4436
+ queueNumberLabel?:
4437
+ | DataLink
4438
+ | {
4439
+ number?: string | DataLink
4440
+ labelTitle?: string | DataLink
4441
+ note?: string | DataLink
4442
+ }
4443
+ }
4451
4444
  /* Display language */
4452
4445
  displayLanguage?: string | DataLink
4453
4446
  /* Background color */