mglon-schedule 0.0.4
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 +22 -0
- package/README.md +40 -0
- package/fesm2022/mglon-schedule.mjs +3800 -0
- package/fesm2022/mglon-schedule.mjs.map +1 -0
- package/package.json +44 -0
- package/types/mglon-schedule.d.ts +963 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 miguelonCoder (https://migueloncoder.github.io/miguelon-portafolio/)
|
|
4
|
+
Contributed by Ingeodev
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# mglon-schedule
|
|
2
|
+
|
|
3
|
+
A powerful and flexible scheduler component for Angular applications.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install mglon-schedule
|
|
9
|
+
# or
|
|
10
|
+
pnpm add mglon-schedule
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ScheduleComponent } from 'mglon-schedule';
|
|
17
|
+
|
|
18
|
+
@Component({
|
|
19
|
+
imports: [ScheduleComponent],
|
|
20
|
+
template: `<mglon-schedule />`
|
|
21
|
+
})
|
|
22
|
+
export class AppComponent {}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Features
|
|
26
|
+
|
|
27
|
+
- 📅 Month, Week, Day, and Resource views
|
|
28
|
+
- 🎨 Fully customizable theming
|
|
29
|
+
- ⚡ High performance with Angular Signals
|
|
30
|
+
- 📱 Responsive design
|
|
31
|
+
- 🔄 Recurrent events support
|
|
32
|
+
- 🖱️ Drag and drop interactions
|
|
33
|
+
|
|
34
|
+
## Documentation
|
|
35
|
+
|
|
36
|
+
For full documentation, visit our [documentation site](https://github.com/Ingeodev/ng-scheduler-workspace).
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT © [miguelonCoder](https://migueloncoder.github.io/miguelon-portafolio/)
|