@spartan-ng/brain 0.0.1-alpha.582 → 0.0.1-alpha.584
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/calendar/index.d.ts +15 -1
- package/fesm2022/spartan-ng-brain-calendar.mjs.map +1 -1
- package/fesm2022/spartan-ng-brain-dialog.mjs +10 -6
- package/fesm2022/spartan-ng-brain-dialog.mjs.map +1 -1
- package/fesm2022/spartan-ng-brain-select.mjs +4 -4
- package/fesm2022/spartan-ng-brain-select.mjs.map +1 -1
- package/package.json +5 -5
package/calendar/index.d.ts
CHANGED
|
@@ -95,6 +95,20 @@ declare function provideBrnCalendar<T>(instance: Type<BrnCalendarBase<T>>): Exis
|
|
|
95
95
|
declare function injectBrnCalendar<T>(): BrnCalendarBase<T>;
|
|
96
96
|
|
|
97
97
|
type Weekday = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
98
|
+
type MonthLabels = [
|
|
99
|
+
string,
|
|
100
|
+
string,
|
|
101
|
+
string,
|
|
102
|
+
string,
|
|
103
|
+
string,
|
|
104
|
+
string,
|
|
105
|
+
string,
|
|
106
|
+
string,
|
|
107
|
+
string,
|
|
108
|
+
string,
|
|
109
|
+
string,
|
|
110
|
+
string
|
|
111
|
+
];
|
|
98
112
|
interface BrnCalendarI18n {
|
|
99
113
|
formatWeekdayName: (index: number) => string;
|
|
100
114
|
formatHeader: (month: number, year: number) => string;
|
|
@@ -462,4 +476,4 @@ declare class BrnCalendarRange<T> implements BrnCalendarBase<T> {
|
|
|
462
476
|
declare const BrnCalendarImports: readonly [typeof BrnCalendarCellButton, typeof BrnCalendarGrid, typeof BrnCalendarHeader, typeof BrnCalendarNextButton, typeof BrnCalendarPreviousButton, typeof BrnCalendarWeek, typeof BrnCalendarWeekday, typeof BrnCalendar, typeof BrnCalendarCell, typeof BrnCalendarMulti, typeof BrnCalendarRange, typeof BrnCalendarMonthSelect, typeof BrnCalendarYearSelect];
|
|
463
477
|
|
|
464
478
|
export { BrnCalendar, BrnCalendarCell, BrnCalendarCellButton, BrnCalendarGrid, BrnCalendarHeader, BrnCalendarI18nService, BrnCalendarI18nToken, BrnCalendarImports, BrnCalendarMonthSelect, BrnCalendarMulti, BrnCalendarNextButton, BrnCalendarPreviousButton, BrnCalendarRange, BrnCalendarToken, BrnCalendarWeek, BrnCalendarWeekday, BrnCalendarYearSelect, injectBrnCalendar, injectBrnCalendarI18n, provideBrnCalendar, provideBrnCalendarI18n };
|
|
465
|
-
export type { BrnCalendarBase, BrnCalendarI18n, Weekday };
|
|
479
|
+
export type { BrnCalendarBase, BrnCalendarI18n, MonthLabels, Weekday };
|