klun-ui 0.1.20 → 0.1.21

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.
@@ -1,4 +1,4 @@
1
- import { Badge, Button, SegmentedControl, Card, Tabs, ProgressBar, Input, Select, Switch, Divider, AvatarGroup, HorizontalFilter, ContentLabel, Chip, Alert, Accordion, Label, Avatar, StatusDot, Table, ImageUpload, SelectMenu, Textarea, CharacterCounter, Spinner } from '../chunk-JFRI333P.js';
1
+ import { Badge, Button, SegmentedControl, Card, Tabs, ProgressBar, Input, Select, Switch, Divider, AvatarGroup, HorizontalFilter, ContentLabel, Chip, Alert, Accordion, Label, Avatar, StatusDot, Table, ImageUpload, SelectMenu, Textarea, CharacterCounter, Spinner } from '../chunk-T3IFNMYU.js';
2
2
  import '../chunk-T225J6LV.js';
3
3
  import { useState, useRef, useEffect } from 'react';
4
4
  import { jsxs, jsx } from 'react/jsx-runtime';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klun-ui",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "Klun UI — a themeable React + TypeScript component library and design system (light/dark, 6 accent themes, global radius axis).",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -35,6 +35,17 @@
35
35
  "CHANGELOG.md",
36
36
  "LICENSE"
37
37
  ],
38
+ "scripts": {
39
+ "build:js": "tsup",
40
+ "build:css": "node scripts/build-css.mjs",
41
+ "build": "pnpm run build:js && pnpm run build:css",
42
+ "typecheck": "tsc --noEmit",
43
+ "test": "vitest run",
44
+ "test:watch": "vitest",
45
+ "storybook": "storybook dev -p 6006",
46
+ "build-storybook": "storybook build",
47
+ "prepublishOnly": "pnpm run build"
48
+ },
38
49
  "peerDependencies": {
39
50
  "react": ">=18",
40
51
  "react-dom": ">=18",
@@ -77,20 +88,16 @@
77
88
  "themeable",
78
89
  "dark-mode"
79
90
  ],
91
+ "packageManager": "pnpm@10.0.0",
92
+ "pnpm": {
93
+ "onlyBuiltDependencies": [
94
+ "esbuild"
95
+ ]
96
+ },
80
97
  "engines": {
81
98
  "node": ">=18"
82
99
  },
83
100
  "publishConfig": {
84
101
  "access": "public"
85
- },
86
- "scripts": {
87
- "build:js": "tsup",
88
- "build:css": "node scripts/build-css.mjs",
89
- "build": "pnpm run build:js && pnpm run build:css",
90
- "typecheck": "tsc --noEmit",
91
- "test": "vitest run",
92
- "test:watch": "vitest",
93
- "storybook": "storybook dev -p 6006",
94
- "build-storybook": "storybook build"
95
102
  }
96
- }
103
+ }