atlasui-lib 0.1.0 → 0.1.1

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,8 +7,8 @@ This project follows [Semantic Versioning](https://semver.org).
7
7
 
8
8
  ---
9
9
 
10
- ## [0.1.0] — 2025-06-28
11
- ## [0.1.0] — 2025-03-13 (UPDATED)
10
+ ## [0.1.0] — 2024-06-28
11
+ ## [0.1.1] — 2025-03-13 (UPDATED)
12
12
 
13
13
  ### 🎉 Initial Release
14
14
 
@@ -154,4 +154,3 @@ plugin, and a complete CSS token system with light + dark mode.
154
154
 
155
155
  ---
156
156
 
157
- [0.1.0]: https://github.com/JohnDev19/AtlasUI/releases/tag/v0.1.0
package/dist/cli/index.js CHANGED
@@ -159,7 +159,7 @@ ${import_chalk.default.bold.blue(" \u2569 \u2569 \u2569 \u2569\u2550\u255D\u256
159
159
  ${import_chalk.default.dim("by JohnDev19 \xB7 https://github.com/JohnDev19/AtlasUI")}
160
160
  `;
161
161
  var program = new import_commander.Command();
162
- program.name("atlasui-lib").description("atlasui-lib CLI \u2014 copy components into your project").version("0.1.0", "-v, --version").addHelpText("before", banner);
162
+ program.name("atlasui-lib").description("atlasui-lib CLI \u2014 copy components into your project").version("0.1.1", "-v, --version").addHelpText("before", banner);
163
163
  program.command("init").description("Set up atlasui-lib in your project").option("--typescript", "Use TypeScript", true).option("--tailwind", "Configure Tailwind", true).option("--no-install", "Skip dependency install").option("-y, --yes", "Skip all prompts, use defaults").action(async (opts) => {
164
164
  console.log(import_chalk.default.bold.blue("\n AtlasUI Init\n") + import_chalk.default.dim(" Let's get you set up\u2026\n"));
165
165
  const cwd = process.cwd();
package/dist/index.js CHANGED
@@ -65,7 +65,7 @@ var HoverCardPrimitive__namespace = /*#__PURE__*/_interopNamespace(HoverCardPrim
65
65
  var ContextMenuPrimitive__namespace = /*#__PURE__*/_interopNamespace(ContextMenuPrimitive);
66
66
 
67
67
  /**
68
- * atlasui-lib v0.1.0
68
+ * atlasui-lib v0.1.1
69
69
  * Build anything. Ship faster.
70
70
  * By JohnDev19 — https://github.com/JohnDev19/AtlasUI
71
71
  * MIT License
@@ -3763,7 +3763,6 @@ var atlasPreset = {
3763
3763
  * Docs: https://atlasui.vercel.app/
3764
3764
  * Issues: https://github.com/JohnDev19/AtlasUI/issues
3765
3765
  *
3766
- * @version 0.1.0
3767
3766
  * @license MIT
3768
3767
  */
3769
3768
 
package/dist/index.mjs CHANGED
@@ -26,7 +26,7 @@ import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
26
26
  import { Command } from 'cmdk';
27
27
 
28
28
  /**
29
- * atlasui-lib v0.1.0
29
+ * atlasui-lib v0.1.1
30
30
  * Build anything. Ship faster.
31
31
  * By JohnDev19 — https://github.com/JohnDev19/AtlasUI
32
32
  * MIT License
@@ -3724,7 +3724,6 @@ var atlasPreset = {
3724
3724
  * Docs: https://atlasui.vercel.app/
3725
3725
  * Issues: https://github.com/JohnDev19/AtlasUI/issues
3726
3726
  *
3727
- * @version 0.1.0
3728
3727
  * @license MIT
3729
3728
  */
3730
3729
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atlasui-lib",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "description": "AtlasUI — Build anything. Ship faster. 90+ accessible, composable React components with Tailwind CSS and dark mode.",
6
6
  "keywords": [
package/src/cli/index.ts CHANGED
@@ -43,7 +43,7 @@ const program = new Command();
43
43
  program
44
44
  .name("atlasui-lib")
45
45
  .description("atlasui-lib CLI — copy components into your project")
46
- .version("0.1.0", "-v, --version")
46
+ .version("0.1.1", "-v, --version")
47
47
  .addHelpText("before", banner);
48
48
 
49
49
  // ─── init ─────────────────────────────────────────────────────────────────
package/src/index.ts CHANGED
@@ -8,7 +8,6 @@
8
8
  * Docs: https://atlasui.vercel.app/
9
9
  * Issues: https://github.com/JohnDev19/AtlasUI/issues
10
10
  *
11
- * @version 0.1.0
12
11
  * @license MIT
13
12
  */
14
13