toolcraft 0.0.18 → 0.0.19
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/node_modules/@poe-code/config-mutations/dist/execution/apply-mutation.js +3 -3
- package/node_modules/@poe-code/config-mutations/dist/mutations/template-mutation.d.ts +3 -3
- package/node_modules/@poe-code/config-mutations/dist/template/render.d.ts +0 -1
- package/node_modules/@poe-code/config-mutations/dist/template/render.js +2 -22
- package/node_modules/@poe-code/config-mutations/package.json +1 -4
- package/node_modules/@poe-code/design-system/dist/acp/components.js +15 -13
- package/node_modules/@poe-code/design-system/dist/components/color.d.ts +31 -0
- package/node_modules/@poe-code/design-system/dist/components/color.js +101 -0
- package/node_modules/@poe-code/design-system/dist/components/index.d.ts +4 -0
- package/node_modules/@poe-code/design-system/dist/components/index.js +2 -0
- package/node_modules/@poe-code/design-system/dist/components/logger.js +2 -2
- package/node_modules/@poe-code/design-system/dist/components/symbols.js +3 -3
- package/node_modules/@poe-code/design-system/dist/components/table.js +191 -40
- package/node_modules/@poe-code/design-system/dist/components/template.d.ts +6 -0
- package/node_modules/@poe-code/design-system/dist/components/template.js +271 -0
- package/node_modules/@poe-code/design-system/dist/components/text.js +3 -3
- package/node_modules/@poe-code/design-system/dist/dashboard/buffer.js +12 -12
- package/node_modules/@poe-code/design-system/dist/index.d.ts +4 -0
- package/node_modules/@poe-code/design-system/dist/index.js +2 -0
- package/node_modules/@poe-code/design-system/dist/internal/color-support.d.ts +9 -0
- package/node_modules/@poe-code/design-system/dist/internal/color-support.js +12 -0
- package/node_modules/@poe-code/design-system/dist/prompts/index.js +2 -2
- package/node_modules/@poe-code/design-system/dist/prompts/primitives/cancel.js +2 -2
- package/node_modules/@poe-code/design-system/dist/prompts/primitives/intro.js +2 -2
- package/node_modules/@poe-code/design-system/dist/prompts/primitives/log.js +4 -4
- package/node_modules/@poe-code/design-system/dist/prompts/primitives/note.js +5 -5
- package/node_modules/@poe-code/design-system/dist/prompts/primitives/outro.js +2 -2
- package/node_modules/@poe-code/design-system/dist/prompts/primitives/spinner.js +3 -3
- package/node_modules/@poe-code/design-system/dist/static/menu.js +5 -5
- package/node_modules/@poe-code/design-system/dist/static/spinner.js +8 -8
- package/node_modules/@poe-code/design-system/dist/tokens/colors.js +29 -29
- package/node_modules/@poe-code/design-system/dist/tokens/typography.js +6 -6
- package/node_modules/@poe-code/design-system/package.json +5 -3
- package/package.json +2 -5
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { color } from "../components/color.js";
|
|
2
2
|
export const typography = {
|
|
3
|
-
bold: (text) =>
|
|
4
|
-
dim: (text) =>
|
|
5
|
-
italic: (text) =>
|
|
6
|
-
underline: (text) =>
|
|
7
|
-
strikethrough: (text) =>
|
|
3
|
+
bold: (text) => color.bold(text),
|
|
4
|
+
dim: (text) => color.dim(text),
|
|
5
|
+
italic: (text) => color.italic(text),
|
|
6
|
+
underline: (text) => color.underline(text),
|
|
7
|
+
strikethrough: (text) => color.strikethrough(text)
|
|
8
8
|
};
|
|
@@ -19,8 +19,10 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@clack/prompts": "^1.0.0"
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
"@clack/prompts": "^1.0.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/mustache": "^4.2.6",
|
|
26
|
+
"mustache": "^4.2.0"
|
|
25
27
|
}
|
|
26
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toolcraft",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -45,15 +45,12 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@clack/core": "^1.0.0",
|
|
47
47
|
"@clack/prompts": "^1.0.0",
|
|
48
|
-
"chalk": "^5.6.2",
|
|
49
48
|
"commander": "^14.0.3",
|
|
50
|
-
"console-table-printer": "^2.15.0",
|
|
51
49
|
"jose": "^6.1.2",
|
|
52
50
|
"jsonc-parser": "^3.3.1",
|
|
53
|
-
"mustache": "^4.2.0",
|
|
54
51
|
"smol-toml": "^1.3.0",
|
|
55
52
|
"tiny-stdio-mcp-server": "^0.1.0",
|
|
56
|
-
"toolcraft-schema": "^0.0.
|
|
53
|
+
"toolcraft-schema": "^0.0.19",
|
|
57
54
|
"yaml": "^2.8.2"
|
|
58
55
|
},
|
|
59
56
|
"files": [
|