advi-ui 0.2.0 → 0.2.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.
@@ -11,4 +11,4 @@ interface MultiSelectProps {
11
11
  className?: string;
12
12
  maxCount?: number;
13
13
  }
14
- export declare const MultiSelect: import('react').ForwardRefExoticComponent<MultiSelectProps & import('react').RefAttributes<HTMLButtonElement>>;
14
+ export declare const MultiSelect: import('react').ForwardRefExoticComponent<MultiSelectProps & import('react').RefAttributes<HTMLDivElement>>;
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "advi-ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Personal React component library built on shadcn/ui + Tailwind CSS",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/1atharvad/advi-ui"
8
+ },
5
9
  "type": "module",
6
10
  "main": "./dist/advi-ui.cjs.js",
7
11
  "module": "./dist/advi-ui.es.js",
@@ -31,8 +35,29 @@
31
35
  "preview": "vite preview",
32
36
  "storybook": "storybook dev -p 6006",
33
37
  "build-storybook": "storybook build",
34
- "test": "vitest"
38
+ "test": "vitest",
39
+ "changeset": "changeset",
40
+ "version-packages": "changeset version && node scripts/format-changelog-dates.mjs",
41
+ "release": "npm run build:lib && changeset publish",
42
+ "size": "npm run build:lib && size-limit"
35
43
  },
44
+ "size-limit": [
45
+ {
46
+ "name": "advi-ui.es.js",
47
+ "path": "dist/advi-ui.es.js",
48
+ "limit": "80 KB"
49
+ },
50
+ {
51
+ "name": "advi-ui.css",
52
+ "path": "dist/advi-ui.css",
53
+ "limit": "20 KB"
54
+ },
55
+ {
56
+ "name": "fonts.css",
57
+ "path": "dist/fonts.css",
58
+ "limit": "500 KB"
59
+ }
60
+ ],
36
61
  "peerDependencies": {
37
62
  "gsap": "^3.15.0",
38
63
  "lucide-react": "^1.8.0",
@@ -54,6 +79,7 @@
54
79
  "devDependencies": {
55
80
  "@changesets/cli": "^2.31.0",
56
81
  "@eslint/js": "^9.39.4",
82
+ "@size-limit/file": "^12.1.0",
57
83
  "@storybook/addon-a11y": "^10.3.5",
58
84
  "@storybook/addon-designs": "^11.1.3",
59
85
  "@storybook/addon-docs": "^10.3.5",
@@ -79,6 +105,7 @@
79
105
  "react": "^19.2.4",
80
106
  "react-dom": "^19.2.4",
81
107
  "sass": "^1.99.0",
108
+ "size-limit": "^12.1.0",
82
109
  "storybook": "^10.3.5",
83
110
  "tailwindcss": "^3.4.19",
84
111
  "tailwindcss-animate": "^1.0.7",