zerozeeker 2.3.0 → 2.3.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.
Files changed (2) hide show
  1. package/dist/index.js +16 -2
  2. package/package.json +6 -2
package/dist/index.js CHANGED
@@ -3,10 +3,12 @@
3
3
  // index.ts
4
4
  import { Command } from "commander";
5
5
  import { execSync } from "child_process";
6
+ import { createRequire } from "module";
6
7
  import ora from "ora";
7
8
  import chalk from "chalk";
9
+ var _require = createRequire(import.meta.url);
10
+ var { version: VERSION } = _require("./package.json");
8
11
  var REGISTRY_URL = "https://www.zerozeeker.com/r";
9
- var VERSION = "2.3.0";
10
12
  var REGISTRY = [
11
13
  // Buttons
12
14
  { name: "rainbow-button", category: "Buttons", desc: "Animated rainbow gradient border" },
@@ -21,7 +23,19 @@ var REGISTRY = [
21
23
  { name: "shimmer-input", category: "Inputs", desc: "Shimmer border sweep on focus" },
22
24
  { name: "spotlight-input", category: "Inputs", desc: "Mouse-tracked spotlight effect" },
23
25
  { name: "vortex-input", category: "Inputs", desc: "Swirling vortex border animation" },
24
- { name: "prism-input", category: "Inputs", desc: "Prism light refraction border" }
26
+ { name: "prism-input", category: "Inputs", desc: "Prism light refraction border" },
27
+ // Accordions
28
+ { name: "glow-accordion", category: "Accordions", desc: "Colored left-accent bar and tint on open" },
29
+ { name: "card-accordion", category: "Accordions", desc: "Card-per-item with shadow lift and +/- swap" },
30
+ { name: "step-accordion", category: "Accordions", desc: "Numbered step circles flip solid on open" },
31
+ { name: "line-accordion", category: "Accordions", desc: "Editorial sweep line animates on open, 5 colors" },
32
+ // Alert Dialogs
33
+ { name: "glow-alert-dialog", category: "Alert Dialogs", desc: "Glowing ring border with centered icon, 5 colors" },
34
+ { name: "banner-alert-dialog", category: "Alert Dialogs", desc: "Colored header band with icon and title, 5 colors" },
35
+ { name: "split-alert-dialog", category: "Alert Dialogs", desc: "Two-column colored left panel + white right content" },
36
+ { name: "slide-alert-dialog", category: "Alert Dialogs", desc: "Bottom-sheet slide-up with full-width confirm button" },
37
+ { name: "gradient-alert-dialog", category: "Alert Dialogs", desc: "Rich gradient hero section with white action bar below" },
38
+ { name: "float-alert-dialog", category: "Alert Dialogs", desc: "Icon badge floats above the dialog card overlapping its top edge" }
25
39
  ];
26
40
  var COMPONENT_NAMES = REGISTRY.map((c) => c.name);
27
41
  function printHeader() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zerozeeker",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "CLI for installing ZeroZeeker UI components",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,11 @@
13
13
  "scripts": {
14
14
  "build": "tsup index.ts --format esm --dts --clean",
15
15
  "dev": "tsup index.ts --format esm --watch",
16
- "prepublishOnly": "npm run build"
16
+ "prepublishOnly": "npm run build",
17
+ "version:patch": "npm version patch --no-git-tag-version",
18
+ "version:minor": "npm version minor --no-git-tag-version",
19
+ "version:major": "npm version major --no-git-tag-version",
20
+ "release": "npm publish --access public"
17
21
  },
18
22
  "keywords": [
19
23
  "shadcn",