@ilamy/calendar 0.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/LICENSE +21 -0
- package/README.md +52 -0
- package/dist/index.cjs +3553 -0
- package/dist/index.d.cts +190 -0
- package/dist/index.d.ts +190 -0
- package/dist/index.js +3525 -0
- package/package.json +114 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Sujeet Kc
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Ilamy Calendar
|
|
2
|
+
|
|
3
|
+
A powerful, full-featured React calendar component library built with TypeScript, Tailwind CSS, and modern React patterns. Features multiple calendar views, drag-and-drop support, recurring events, and comprehensive internationalization.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🗓️ **Multiple Views**: Month, Week, Day, and Year views
|
|
8
|
+
- 🎯 **Drag & Drop**: Move events between dates and time slots
|
|
9
|
+
- 🔄 **Recurring Events**: Support for complex recurring patterns
|
|
10
|
+
- 🌍 **Internationalization**: 100+ locales with dayjs
|
|
11
|
+
- 🎨 **Customizable**: Flexible styling with Tailwind CSS
|
|
12
|
+
- ⚡ **Performance**: Optimized rendering with React patterns
|
|
13
|
+
- 📱 **Responsive**: Works seamlessly across devices
|
|
14
|
+
- 🔧 **TypeScript**: Full type safety and IntelliSense support
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
For comprehensive documentation, examples, and interactive demos, visit [calendar.ilamy.io](https://calendar.ilamy.io)
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install @ilamy/calendar
|
|
24
|
+
# or
|
|
25
|
+
yarn add @ilamy/calendar
|
|
26
|
+
# or
|
|
27
|
+
pnpm add @ilamy/calendar
|
|
28
|
+
# or
|
|
29
|
+
bun add @ilamy/calendar
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Quick Start
|
|
33
|
+
|
|
34
|
+
```tsx
|
|
35
|
+
import React from 'react'
|
|
36
|
+
import { IlamyCalendar, useIlamyCalendarContext } from '@ilamy/calendar'
|
|
37
|
+
|
|
38
|
+
function App() {
|
|
39
|
+
return (
|
|
40
|
+
<div className="h-screen p-4">
|
|
41
|
+
<IlamyCalendar
|
|
42
|
+
initialView="month"
|
|
43
|
+
dayMaxEvents={3}
|
|
44
|
+
onEventClick={(event) => console.log('Event clicked:', event)}
|
|
45
|
+
onDateClick={(start, end) => console.log('Date clicked:', start, end)}
|
|
46
|
+
/>
|
|
47
|
+
</div>
|
|
48
|
+
)
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export default App
|
|
52
|
+
```
|