@dayflow/angular 3.1.1 → 3.2.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.
Files changed (2) hide show
  1. package/README.md +42 -13
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -2,8 +2,7 @@
2
2
 
3
3
  **English** | [中文](README.zh.md) | [日本語](README.ja.md) | [Getting Started & Contributing](CONTRIBUTING.md)
4
4
 
5
- A flexible and feature-rich calendar component library for React applications with drag-and-drop support, multiple
6
- views, and plugin architecture.
5
+ A flexible and feature-rich calendar component library for **React, Vue, Angular, and Svelte** with drag-and-drop support, multiple views, and plugin architecture.
7
6
 
8
7
  [![npm](https://img.shields.io/npm/v/@dayflow/core?logo=npm&color=blue&label=version)](https://www.npmjs.com/package/@dayflow/core)
9
8
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen?logo=github)](https://github.com/dayflow-js/dayflow/pulls)
@@ -12,21 +11,51 @@ views, and plugin architecture.
12
11
 
13
12
  ## Features
14
13
 
15
- ### Monthly, Weekly, Daily and Various View Types
14
+ ### Daily, Weekly, Monthly and Yearly View Types
16
15
 
17
- | Monthly | Weekly |
18
- | --------------------------------------- | -------------------------------------- |
19
- | ![image](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/MonthView.png) | ![image](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/WeekView.png) |
16
+ #### Day View
20
17
 
21
- | Daily | Event Stack Level |
22
- | ------------------------------------- | ---------------------------------------- |
23
- | ![image](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/DayView.png) | ![image](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/stackLevel.png) |
18
+ ![Day View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/DayView.png)
24
19
 
25
- ### Default Panel (with multiple Event Detail Panel options available)
20
+ #### Week View
26
21
 
27
- | Detail Popup | Detail Dialog |
28
- | ----------------------------------- | ------------------------------------ |
29
- | ![image](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/popup.png) | ![image](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/dialog.png) |
22
+ ![Week View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/WeekView.png)
23
+
24
+ #### Month View
25
+
26
+ ![Month View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/MonthView.png)
27
+
28
+ #### Year View(Fixed-Week)
29
+
30
+ ![Year View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/Year-Fixed-Week.png)
31
+
32
+ #### Year View(Year-Canvas)
33
+
34
+ ![Year Canvas View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/Year-Canvas.png)
35
+
36
+ ### Mobile View Support
37
+
38
+ #### Mobile Day & Year View
39
+
40
+ ![Mobile Day and Year View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/Mobile-Day-Year.png)
41
+
42
+ #### Mobile Week & Month View
43
+
44
+ ![Mobile Week and Month View](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/Mobile-Week-Month.png)
45
+
46
+ ### Multiple Event Detail Panel options
47
+
48
+ #### Detail Popup
49
+
50
+ ![Popup](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/popup.png)
51
+
52
+ #### Detail Dialog
53
+
54
+ ![Dialog](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/dialog.png)
55
+
56
+ ### Dark Mode Support
57
+
58
+ ![Dark Mode](https://raw.githubusercontent.com/dayflow-js/calendar/main/assets/images/DarkMode.png)
30
59
 
31
60
  ### Easy to resize and drag
32
61
 
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@dayflow/angular",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "Angular adapter for DayFlow calendar",
5
+ "files": [
6
+ "dist",
7
+ "README.md",
8
+ "LICENSE"
9
+ ],
5
10
  "main": "dist/fesm2022/dayflow-angular.mjs",
6
11
  "module": "fesm2022/dayflow-angular.mjs",
7
12
  "typings": "index.d.ts",
@@ -17,11 +22,6 @@
17
22
  "default": "./package.json"
18
23
  }
19
24
  },
20
- "files": [
21
- "dist",
22
- "README.md",
23
- "LICENSE"
24
- ],
25
25
  "peerDependencies": {
26
26
  "@angular/common": ">=14.0.0",
27
27
  "@angular/core": ">=14.0.0",