@fugood/bricks-project 2.25.0-beta.5 → 2.25.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.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.25.0-beta.5",
3
+ "version": "2.25.0-beta.7",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "typecheck": "tsc --noEmit",
7
7
  "build": "bun scripts/build.js"
8
8
  },
9
9
  "dependencies": {
10
- "@fugood/bricks-cli": "^2.25.0-beta.5",
10
+ "@fugood/bricks-cli": "^2.25.0-beta.6",
11
11
  "@huggingface/gguf": "^0.3.2",
12
12
  "@iarna/toml": "^3.0.0",
13
13
  "@modelcontextprotocol/sdk": "^1.15.0",
package/package.json.bak CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fugood/bricks-ctor",
3
- "version": "2.25.0-beta.5",
3
+ "version": "2.25.0-beta.7",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "typecheck": "tsc --noEmit",
7
7
  "build": "bun scripts/build.js"
8
8
  },
9
9
  "dependencies": {
10
- "@fugood/bricks-cli": "^2.25.0-beta.5",
10
+ "@fugood/bricks-cli": "^2.25.0-beta.6",
11
11
  "@huggingface/gguf": "^0.3.2",
12
12
  "@iarna/toml": "^3.0.0",
13
13
  "@modelcontextprotocol/sdk": "^1.15.0",
@@ -62,7 +62,7 @@ export interface AnimationDef {
62
62
  __typename: 'Animation'
63
63
  id: string
64
64
  alias?: string
65
- title: string
65
+ title?: string
66
66
  description?: string
67
67
  hideShortRef?: boolean
68
68
  runType?: 'once' | 'loop'
@@ -25,6 +25,10 @@ Default property:
25
25
  "templateType": "${}",
26
26
  "fadeDuration": 0,
27
27
  "blurBackgroundRadius": 8,
28
+ "imageFilterEnabled": false,
29
+ "imageFilterBlur": 0,
30
+ "imageFilterBlurMode": "clamp",
31
+ "imageFilterColorMatrix": [],
28
32
  "loadSystemIos": "auto",
29
33
  "loadSystemAndroid": "auto"
30
34
  }
@@ -50,6 +54,14 @@ Default property:
50
54
  enableBlurBackground?: boolean | DataLink
51
55
  /* The blur radius of the blur filter added to the image background */
52
56
  blurBackgroundRadius?: number | DataLink
57
+ /* Enable Skia image filters. When disabled, Image uses the normal platform image renderer. */
58
+ imageFilterEnabled?: boolean | DataLink
59
+ /* Blur amount for the Skia image filter. */
60
+ imageFilterBlur?: number | DataLink
61
+ /* Tile mode for the Skia blur image filter. */
62
+ imageFilterBlurMode?: 'clamp' | 'decal' | 'repeat' | 'mirror' | DataLink
63
+ /* Optional 4x5 color matrix for the Skia image filter. Provide 20 numbers. */
64
+ imageFilterColorMatrix?: Array<number | DataLink> | DataLink
53
65
  /* [iOS] The use priority of image loading system (Auto: sdwebimage, fallback to default if failed) */
54
66
  loadSystemIos?: 'auto' | 'sdwebimage' | 'default' | DataLink
55
67
  /* [Android] The use priority of image loading system (Auto: glide, fallback to fresco if failed) */
package/types/data.ts CHANGED
@@ -18,7 +18,7 @@ export type Data<T = any> = DataDef & {
18
18
  __typename: 'Data'
19
19
  id: string
20
20
  alias?: string
21
- title: string
21
+ title?: string
22
22
  description?: string
23
23
  hideShortRef?: boolean
24
24
  metadata?: {
package/types/subspace.ts CHANGED
@@ -7,7 +7,7 @@ import type { DataCalculation } from './data-calc'
7
7
  export type Subspace = {
8
8
  __typename: 'Subspace'
9
9
  id: string
10
- title: string
10
+ title?: string
11
11
  description?: string
12
12
  hideShortRef?: boolean
13
13
  unused?: boolean
package/utils/data.ts CHANGED
@@ -86,7 +86,7 @@ type SystemDataInfo = {
86
86
  name: SystemDataName
87
87
  id: string
88
88
  type: 'string' | 'number' | 'bool' | 'array' | 'object' | 'any'
89
- title: string
89
+ title?: string
90
90
  description?: string
91
91
  schema?: object
92
92
  value?: any