@fugood/bricks-project 2.24.1-beta.3 → 2.24.2
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/compile/action-name-map.ts +23 -0
- package/package.json +2 -2
- package/package.json.bak +2 -2
- package/tools/icons/fa6pro-meta.json +1 -3671
- package/tools/mcp-tools/icons.ts +12 -1
- package/types/bricks/Sketch.ts +254 -0
- package/types/bricks/index.ts +1 -0
- package/types/generators/RealtimeTranscription.ts +8 -0
- package/types/generators/SpeechToTextGgml.ts +4 -0
- package/utils/event-props.ts +13 -3
|
@@ -327,6 +327,29 @@ export const templateActionNameMap = {
|
|
|
327
327
|
animated: 'BRICK_MAPS_ANIMATED',
|
|
328
328
|
},
|
|
329
329
|
},
|
|
330
|
+
BRICK_SKETCH: {
|
|
331
|
+
BRICK_SKETCH_SET_TOOL: {
|
|
332
|
+
tool: 'BRICK_SKETCH_TOOL',
|
|
333
|
+
},
|
|
334
|
+
BRICK_SKETCH_SET_COLOR: {
|
|
335
|
+
color: 'BRICK_SKETCH_COLOR',
|
|
336
|
+
},
|
|
337
|
+
BRICK_SKETCH_SET_STROKE_WIDTH: {
|
|
338
|
+
strokeWidth: 'BRICK_SKETCH_STROKE_WIDTH',
|
|
339
|
+
},
|
|
340
|
+
BRICK_SKETCH_IMPORT_STATE: {
|
|
341
|
+
stateJson: 'BRICK_SKETCH_STATE_JSON',
|
|
342
|
+
},
|
|
343
|
+
BRICK_SKETCH_EXPORT_IMAGE: {
|
|
344
|
+
imageFormat: 'BRICK_SKETCH_IMAGE_FORMAT',
|
|
345
|
+
imageQuality: 'BRICK_SKETCH_IMAGE_QUALITY',
|
|
346
|
+
},
|
|
347
|
+
BRICK_SKETCH_ADD_STROKE: {
|
|
348
|
+
strokePoints: 'BRICK_SKETCH_STROKE_POINTS',
|
|
349
|
+
strokeColor: 'BRICK_SKETCH_STROKE_COLOR',
|
|
350
|
+
strokeWidth: 'BRICK_SKETCH_STROKE_WIDTH',
|
|
351
|
+
},
|
|
352
|
+
},
|
|
330
353
|
|
|
331
354
|
GENERATOR_FILE: {
|
|
332
355
|
GENERATOR_FILE_READ_CONTENT: {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.24.
|
|
3
|
+
"version": "2.24.2",
|
|
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.24.
|
|
10
|
+
"@fugood/bricks-cli": "^2.24.2",
|
|
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.24.
|
|
3
|
+
"version": "2.24.2",
|
|
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.24.
|
|
10
|
+
"@fugood/bricks-cli": "^2.24.2",
|
|
11
11
|
"@huggingface/gguf": "^0.3.2",
|
|
12
12
|
"@iarna/toml": "^3.0.0",
|
|
13
13
|
"@modelcontextprotocol/sdk": "^1.15.0",
|