@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.
- package/README.md +42 -13
- 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
|
|
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
|
[](https://www.npmjs.com/package/@dayflow/core)
|
|
9
8
|
[](https://github.com/dayflow-js/dayflow/pulls)
|
|
@@ -12,21 +11,51 @@ views, and plugin architecture.
|
|
|
12
11
|
|
|
13
12
|
## Features
|
|
14
13
|
|
|
15
|
-
###
|
|
14
|
+
### Daily, Weekly, Monthly and Yearly View Types
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
| --------------------------------------- | -------------------------------------- |
|
|
19
|
-
|  |  |
|
|
16
|
+
#### Day View
|
|
20
17
|
|
|
21
|
-
|
|
22
|
-
| ------------------------------------- | ---------------------------------------- |
|
|
23
|
-
|  |  |
|
|
18
|
+

|
|
24
19
|
|
|
25
|
-
|
|
20
|
+
#### Week View
|
|
26
21
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
#### Month View
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
#### Year View(Fixed-Week)
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
32
|
+
#### Year View(Year-Canvas)
|
|
33
|
+
|
|
34
|
+

|
|
35
|
+
|
|
36
|
+
### Mobile View Support
|
|
37
|
+
|
|
38
|
+
#### Mobile Day & Year View
|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
#### Mobile Week & Month View
|
|
43
|
+
|
|
44
|
+

|
|
45
|
+
|
|
46
|
+
### Multiple Event Detail Panel options
|
|
47
|
+
|
|
48
|
+
#### Detail Popup
|
|
49
|
+
|
|
50
|
+

|
|
51
|
+
|
|
52
|
+
#### Detail Dialog
|
|
53
|
+
|
|
54
|
+

|
|
55
|
+
|
|
56
|
+
### Dark Mode Support
|
|
57
|
+
|
|
58
|
+

|
|
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.
|
|
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",
|