@vadimcomanescu/nadicode-design-system 2.0.2 → 2.0.5

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/dist/catalog.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "2.0.2",
3
- "generatedAt": "2026-03-22T21:58:58.478Z",
2
+ "version": "2.0.5",
3
+ "generatedAt": "2026-03-22T23:01:23.220Z",
4
4
  "components": {
5
5
  "Accordion": {
6
6
  "file": "src/components/ui/Accordion.tsx",
@@ -196,13 +196,13 @@ function SearchCommand({
196
196
  "aria-haspopup": "listbox",
197
197
  ...props,
198
198
  children: [
199
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 border-b border-border px-4 has-[:focus]:border-accent/40 has-[:focus]:shadow-[0_1px_0_0_rgb(var(--color-accent)/0.15)] transition-[border-color,box-shadow]", children: [
199
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 border-b border-border pl-4 pr-12 transition-[border-color]", children: [
200
200
  /* @__PURE__ */ jsx(SearchIcon, { size: 16, className: "shrink-0 text-text-tertiary" }),
201
201
  /* @__PURE__ */ jsx(
202
202
  "input",
203
203
  {
204
204
  ref: inputRef,
205
- className: "flex-1 bg-transparent py-4 text-sm text-text-primary placeholder:text-text-tertiary outline-none focus-visible:ring-2 focus-visible:ring-focus-ring",
205
+ className: "flex-1 bg-transparent py-4 text-sm text-text-primary placeholder:text-text-tertiary outline-none focus-visible:outline-1 focus-visible:outline-border",
206
206
  placeholder: resolvedPlaceholder,
207
207
  value,
208
208
  onChange: (e) => onChange?.(e.target.value),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vadimcomanescu/nadicode-design-system",
3
- "version": "2.0.2",
3
+ "version": "2.0.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -34,7 +34,7 @@
34
34
  "lint": "eslint src scripts bin eslint-rules --max-warnings 0",
35
35
  "lint:fix": "eslint src scripts bin eslint-rules --fix --max-warnings 0",
36
36
  "ds:lint-shipped": "eslint --config eslint.shipped.config.mjs src/components/ui src/components/animate-ui src/components/layout src/components/logos src/components/blocks src/lib src/hooks src/messages src/tokens.ts src/site.config.ts",
37
- "typecheck": "tsc --noEmit --incremental false",
37
+ "typecheck": "next typegen && tsc --noEmit --incremental false",
38
38
  "test": "vitest run",
39
39
  "test:all": "npm run typecheck && npm run lint && vitest run && npm run build:lib && npm run test:distribution && npm run build",
40
40
  "lighthouse": "bin/lighthouse.sh",