cally 0.4.2 → 0.5.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 CHANGED
@@ -1,8 +1,8 @@
1
1
  # Cally
2
2
 
3
- Small, feature-rich of calendar components
3
+ Small, feature-rich calendar components
4
4
 
5
- - **Small bundle size** - less than 9kb min/gzip
5
+ - **Small bundle size** - less than 8.5kb min/gzip
6
6
  - **Full feature set** - single dates, ranges, display multiple months
7
7
  - **HTML-friendly** - easy to author, framework-independent
8
8
  - **Minimal dependencies** - just one
package/dist/cally.d.ts CHANGED
@@ -39,6 +39,7 @@ export declare const CalendarDate: Atomico<{
39
39
  min: string;
40
40
  max: string;
41
41
  locale: string | undefined;
42
+ focusedDate: string | undefined;
42
43
  onFocusDay: (event: CustomEvent<Date>) => any;
43
44
  showOutsideDays: boolean;
44
45
  onChange: (event: Event) => any;
@@ -50,6 +51,7 @@ export declare const CalendarDate: Atomico<{
50
51
  min: string;
51
52
  max: string;
52
53
  locale: string | undefined;
54
+ focusedDate: string | undefined;
53
55
  onFocusDay: (event: CustomEvent<Date>) => any;
54
56
  showOutsideDays: boolean;
55
57
  onChange: (event: Event) => any;
@@ -85,6 +87,7 @@ export declare const CalendarRange: Atomico<{
85
87
  min: string;
86
88
  max: string;
87
89
  locale: string | undefined;
90
+ focusedDate: string | undefined;
88
91
  onFocusDay: (event: CustomEvent<Date>) => any;
89
92
  showOutsideDays: boolean;
90
93
  onChange: (event: Event) => any;
@@ -98,6 +101,7 @@ export declare const CalendarRange: Atomico<{
98
101
  min: string;
99
102
  max: string;
100
103
  locale: string | undefined;
104
+ focusedDate: string | undefined;
101
105
  onFocusDay: (event: CustomEvent<Date>) => any;
102
106
  showOutsideDays: boolean;
103
107
  onChange: (event: Event) => any;