@lssm/lib.design-system 0.0.0-canary-20251212230121 → 0.0.0-canary-20251215220103

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.
@@ -40,14 +40,13 @@ const Cta = React.forwardRef(({ capture, ctaName, as = "button", href, onClick,
40
40
  variant: uiVariant,
41
41
  ...props,
42
42
  href,
43
- ref,
43
+ onClick: handleClick,
44
44
  children
45
45
  });
46
46
  return /* @__PURE__ */ jsx(Button, {
47
47
  size: uiSize,
48
48
  variant: uiVariant,
49
- onPress: handleClick,
50
- ref,
49
+ onClick: handleClick,
51
50
  ...props,
52
51
  children
53
52
  });
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@lssm/lib.design-system",
3
- "version": "0.0.0-canary-20251212230121",
3
+ "version": "0.0.0-canary-20251215220103",
4
4
  "scripts": {
5
5
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
6
6
  "build": "bun build:bundle && bun build:types",
7
7
  "build:bundle": "tsdown",
8
8
  "build:types": "tsc --noEmit -p tsconfig.build.json",
9
9
  "dev": "bun run build:bundle --watch",
10
+ "registry:build": "bun run scripts/build-registry.ts",
10
11
  "test": "bun test src/**/*.test.ts src/**/*.test.tsx",
11
12
  "lint": "bun run lint:fix",
12
13
  "lint:fix": "eslint src --fix",
@@ -26,8 +27,8 @@
26
27
  "class-variance-authority": "^0.7.1",
27
28
  "clsx": "^2.1.1",
28
29
  "lucide-react": "^0.535.0",
29
- "react": "19.2.1",
30
- "react-dom": "^19.2.1",
30
+ "react": "19.2.3",
31
+ "react-dom": "^19.2.3",
31
32
  "tailwind-merge": "^3.3.1",
32
33
  "tailwindcss-animate": "^1.0.7",
33
34
  "zod": "^4.1.13"
@@ -38,8 +39,8 @@
38
39
  "@types/node": "^24.9.0",
39
40
  "@types/react-dom": "^19.0.14",
40
41
  "postcss": "^8.5",
41
- "tailwindcss": "4.1.17",
42
- "tsdown": "^0.17.0",
42
+ "tailwindcss": "4.1.18",
43
+ "tsdown": "^0.17.4",
43
44
  "typescript": "^5.9.3"
44
45
  },
45
46
  "module": "./dist/index.js",