xertica-ui 2.0.2 → 2.0.3

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/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ---
9
9
 
10
+ ## [2.0.3] — 2026-05-11
11
+
12
+ ### Added
13
+
14
+ - **CLI `update` — atualização de projeto** — novo modo no comando `update` permite atualizar os arquivos do projeto (app shell, shared, features, pages) para qualquer versão publicada do `xertica-ui`, com seleção granular de quais partes atualizar e confirmação antes de sobrescrever.
15
+
16
+ ---
17
+
10
18
  ## [2.0.2] — 2026-05-11
11
19
 
12
20
  ### Fixed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **Enterprise-grade React design system** built on Tailwind CSS v4, Radix UI, and Lucide Icons — with a robust AI-first documentation layer for precise LLM-driven composition and autonomous agent interaction.
4
4
 
5
- [![npm version](https://img.shields.io/badge/npm-2.0.2-blue)](https://www.npmjs.com/package/xertica-ui)
5
+ [![npm version](https://img.shields.io/badge/npm-2.0.3-blue)](https://www.npmjs.com/package/xertica-ui)
6
6
  [![license](https://img.shields.io/badge/license-proprietary-red)](./LICENSE)
7
7
 
8
8
  ---
package/bin/cli.ts CHANGED
@@ -18,7 +18,7 @@ const program = new Command();
18
18
  program
19
19
  .name('xertica-ui')
20
20
  .description('CLI to initialize Xertica UI projects')
21
- .version('2.0.2');
21
+ .version('2.0.3');
22
22
 
23
23
  program
24
24
  .command('init')
package/dist/cli.js CHANGED
@@ -528,7 +528,7 @@ var generateTokensCss = (theme) => {
528
528
  var __filename = fileURLToPath(import.meta.url);
529
529
  var __dirname = path.dirname(__filename);
530
530
  var program = new Command();
531
- program.name("xertica-ui").description("CLI to initialize Xertica UI projects").version("2.0.2");
531
+ program.name("xertica-ui").description("CLI to initialize Xertica UI projects").version("2.0.3");
532
532
  program.command("init").description("Initialize a new Xertica UI project").argument("[directory]", "Directory to initialize in", ".").action(async (directory) => {
533
533
  const targetDir = path.resolve(process.cwd(), directory);
534
534
  const templatesDir = path.resolve(__dirname, "../templates");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xertica-ui",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Xertica UI — Enterprise-grade React design system with Tailwind CSS v4, Radix UI, and AI-first documentation.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs.js",
@@ -1,6 +1,6 @@
1
1
  {
2
- "name": "my-xertica-app",
3
- "version": "2.0.1",
2
+ "name": "xertica-ui-template",
3
+ "version": "2.0.3",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "react-dom": "^18.3.1",
18
18
  "react-router-dom": "^7.1.3",
19
19
  "sonner": "^1.7.3",
20
- "xertica-ui": "^2.0.1"
20
+ "xertica-ui": "^2.0.3"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@eslint/js": "^9.18.0",