@base-framework/ui 1.0.218 → 1.0.220
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/dist/index.es.js +1 -1
- package/dist/organisms.es.js +1 -1
- package/dist/{signature-panel-DRKSN07h.js → signature-panel-CqpWCYXF.js} +585 -555
- package/dist/types/components/organisms/calendar/range/calendar-header.d.ts +3 -1
- package/dist/types/components/organisms/calendar/range/month-calendar.d.ts +2 -0
- package/dist/types/components/organisms/calendar/range/range-calendar.d.ts +7 -0
- package/dist/types/demo.d.ts +0 -0
- package/package.json +1 -1
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export function CalendarHeader({ onMonthClick, onYearClick, next, previous }: {
|
|
1
|
+
export function CalendarHeader({ monthName, year, onMonthClick, onYearClick, next, previous }: {
|
|
2
|
+
monthName: string;
|
|
3
|
+
year: number;
|
|
2
4
|
onMonthClick: Function;
|
|
3
5
|
onYearClick: Function;
|
|
4
6
|
next: Function;
|
|
@@ -32,6 +32,13 @@ export class RangeCalendar extends Component {
|
|
|
32
32
|
* @returns {Data}
|
|
33
33
|
*/
|
|
34
34
|
setData(): Data;
|
|
35
|
+
/**
|
|
36
|
+
* This will get the name of the month.
|
|
37
|
+
*
|
|
38
|
+
* @param {number} month
|
|
39
|
+
* @returns {string}
|
|
40
|
+
*/
|
|
41
|
+
getMonthName(month: number): string;
|
|
35
42
|
/**
|
|
36
43
|
* Initialize component state.
|
|
37
44
|
*
|
|
File without changes
|
package/package.json
CHANGED