@ilamy/calendar 1.0.1 → 1.1.0
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/index.d.ts +110 -28
- package/dist/index.js +6 -7
- package/package.json +9 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ilamy/calendar",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "A full-featured React calendar component library built with Shadcn-Ui, Tailwind CSS, and TypeScript.",
|
|
5
5
|
"author": "Sujeet Kc",
|
|
6
6
|
"license": "MIT",
|
|
@@ -62,8 +62,7 @@
|
|
|
62
62
|
"type-check": "bunx tsc --noEmit",
|
|
63
63
|
"ci": "bun run lint && bun run type-check && bun run prettier:check && bun run test && bun run build",
|
|
64
64
|
"pre-commit": "bun run lint:fix && bun run prettier:fix",
|
|
65
|
-
"prepare": "bunx husky"
|
|
66
|
-
"version": "auto-changelog -p && git add CHANGELOG.md"
|
|
65
|
+
"prepare": "bunx husky"
|
|
67
66
|
},
|
|
68
67
|
"peerDependencies": {
|
|
69
68
|
"react": "^19.1.0",
|
|
@@ -74,22 +73,20 @@
|
|
|
74
73
|
"dependencies": {
|
|
75
74
|
"@dnd-kit/core": "^6.3.1",
|
|
76
75
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
77
|
-
"@radix-ui/react-accordion": "^1.2.12",
|
|
78
76
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
79
77
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
80
|
-
"@radix-ui/react-
|
|
81
|
-
"@radix-ui/react-label": "^2.1.7",
|
|
78
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
82
79
|
"@radix-ui/react-popover": "^1.1.15",
|
|
83
80
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
84
81
|
"@radix-ui/react-select": "^2.2.6",
|
|
85
|
-
"@radix-ui/react-separator": "^1.1.
|
|
86
|
-
"@radix-ui/react-slot": "^1.2.
|
|
82
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
83
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
87
84
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
88
85
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
89
|
-
"bun-plugin-tailwind": "^0.0.14",
|
|
90
86
|
"class-variance-authority": "^0.7.1",
|
|
91
87
|
"clsx": "^2.1.1",
|
|
92
|
-
"
|
|
88
|
+
"date-fns": "^4.1.0",
|
|
89
|
+
"dayjs": "^1.11.19",
|
|
93
90
|
"lucide-react": "^0.475.0",
|
|
94
91
|
"motion": "^12.23.24",
|
|
95
92
|
"react-day-picker": "^9.11.1",
|
|
@@ -105,16 +102,13 @@
|
|
|
105
102
|
"@types/react": "^19.2.2",
|
|
106
103
|
"@types/react-dom": "^19.2.2",
|
|
107
104
|
"@types/rrule": "^2.2.9",
|
|
108
|
-
"
|
|
109
|
-
"bunup": "^0.15.
|
|
105
|
+
"bun-plugin-tailwind": "^0.1.2",
|
|
106
|
+
"bunup": "^0.15.13",
|
|
110
107
|
"husky": "^9.1.7",
|
|
111
108
|
"lint-staged": "^16.2.6",
|
|
112
109
|
"prettier": "3.6.2"
|
|
113
110
|
},
|
|
114
111
|
"publishConfig": {
|
|
115
112
|
"access": "public"
|
|
116
|
-
},
|
|
117
|
-
"auto-changelog": {
|
|
118
|
-
"startingVersion": "1.0.1"
|
|
119
113
|
}
|
|
120
114
|
}
|