customized-fabric 1.8.5 → 1.8.6

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.
@@ -18,6 +18,7 @@ export declare const toCalendarObject: (object: Calendar) => {
18
18
  titleAlignment: string | undefined;
19
19
  titleColor: string | undefined;
20
20
  titleFontUrl: string | undefined;
21
+ letterCase: string | undefined;
21
22
  dayColor: string | undefined;
22
23
  dayFontUrl: string | undefined;
23
24
  markerColor: string | undefined;
@@ -40,6 +41,7 @@ export default class Calendar extends fabric.Group {
40
41
  calendarTitleAlignment?: string;
41
42
  calendarTitleColor?: string;
42
43
  calendarTitleFontUrl?: string;
44
+ calendarLetterCase?: string;
43
45
  calendarDayColor?: string;
44
46
  calendarDayFontUrl?: string;
45
47
  calendarMarkerColor?: string;
@@ -111,6 +111,7 @@ const CalendarClass = fabric_1.fabric.util.createClass(fabric_1.fabric.Group, {
111
111
  titleAlignment: this?.calendarTitleAlignment,
112
112
  titleColor: this?.calendarTitleColor,
113
113
  titleFontUrl: this?.calendarTitleFontUrl,
114
+ letterCase: this?.calendarLetterCase,
114
115
  dayColor: this?.calendarDayColor,
115
116
  dayFontUrl: this?.calendarDayFontUrl,
116
117
  markerColor: this?.calendarMarkerColor,
@@ -137,6 +138,7 @@ const toCalendarObject = (object) => {
137
138
  titleAlignment: object?.calendarTitleAlignment,
138
139
  titleColor: object?.calendarTitleColor,
139
140
  titleFontUrl: object?.calendarTitleFontUrl,
141
+ letterCase: object?.calendarLetterCase,
140
142
  dayColor: object?.calendarDayColor,
141
143
  dayFontUrl: object?.calendarDayFontUrl,
142
144
  markerColor: object?.calendarMarkerColor,
@@ -6,6 +6,7 @@ export interface CalendarSettings {
6
6
  titleAlignment?: string;
7
7
  titleColor?: string;
8
8
  titleFontUrl?: string;
9
+ letterCase?: string;
9
10
  dayColor?: string;
10
11
  dayFontUrl?: string;
11
12
  markerColor?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "customized-fabric",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "description": "Customized fabric",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",