sdaia-ui 1.0.3 → 1.1.0

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +5 -4
package/dist/index.js CHANGED
@@ -519,7 +519,7 @@ async function add(componentSlugs, options) {
519
519
 
520
520
  // src/index.ts
521
521
  var program = new Command();
522
- program.name("sdaia-ui").description("Install SDAIA Design System components into your project").version("1.0.2");
522
+ program.name("sdaia-ui").description("Install SDAIA Design System components into your project").version("1.0.3");
523
523
  program.command("init").description("Initialize your project for SDAIA Design System components").action(init);
524
524
  program.command("add").description("Add components to your project").argument("<components...>", "Component names (e.g. button modal tag)").option("--overwrite", "Overwrite existing components", false).action((components, options) => {
525
525
  add(components, options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdaia-ui",
3
- "version": "1.0.3",
3
+ "version": "1.1.0",
4
4
  "description": "CLI for installing SDAIA Design System components into your project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,13 +27,14 @@
27
27
  "react": ">=18"
28
28
  },
29
29
  "dependencies": {
30
+ "@sdaia-ds/tokens": "1.1.0",
30
31
  "commander": "^13.1.0",
31
- "prompts": "^2.4.2",
32
- "picocolors": "^1.1.1"
32
+ "picocolors": "^1.1.1",
33
+ "prompts": "^2.4.2"
33
34
  },
34
35
  "devDependencies": {
35
- "@types/prompts": "^2.4.9",
36
36
  "@types/node": "^22.0.0",
37
+ "@types/prompts": "^2.4.9",
37
38
  "@types/react": "^19.0.0",
38
39
  "esbuild": "^0.25.0",
39
40
  "typescript": "^5.8.0"