@progressio_resources/gravity-design-system 3.6.6 → 3.6.8

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.
Files changed (47) hide show
  1. package/esm2022/lib/components/gravity-date-picker/components/day-calendar/day-calendar.component.mjs +271 -0
  2. package/esm2022/lib/components/gravity-date-picker/components/day-calendar/range-days-calendar.utils.mjs +224 -0
  3. package/esm2022/lib/components/gravity-date-picker/components/month-calendar/month-calendar.component.mjs +110 -0
  4. package/esm2022/lib/components/gravity-date-picker/components/year-calendar/year-calendar.component.mjs +111 -0
  5. package/esm2022/lib/components/gravity-date-picker/gravity-date-picker.component.mjs +85 -0
  6. package/esm2022/lib/components/gravity-date-picker/shared/date-picker.constants.mjs +61 -0
  7. package/esm2022/lib/components/gravity-date-picker/shared/date-picker.modal.mjs +2 -0
  8. package/esm2022/lib/components/gravity-date-picker/shared/date-picker.utils.mjs +111 -0
  9. package/esm2022/lib/components/gravity-dropdown-label/gravity-dropdown-label.component.mjs +3 -3
  10. package/esm2022/lib/components/gravity-icon-button/gravity-icon-button.component.mjs +2 -2
  11. package/esm2022/lib/components/gravity-link/gravity-link.component.mjs +2 -2
  12. package/esm2022/lib/components/gravity-text-field/gravity-text-field.component.mjs +12 -6
  13. package/esm2022/lib/gravity-design-system.module.mjs +9 -12
  14. package/esm2022/lib/layout/gravity-header/gravity-header.component.mjs +3 -3
  15. package/esm2022/lib/layout/gravity-menu/gravity-menu.component.mjs +4 -5
  16. package/esm2022/public-api.mjs +2 -2
  17. package/fesm2022/progressio_resources-gravity-design-system.mjs +527 -245
  18. package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
  19. package/lib/components/gravity-date-picker/components/day-calendar/day-calendar.component.d.ts +108 -0
  20. package/lib/components/{gravity-calendar-next → gravity-date-picker}/components/day-calendar/range-days-calendar.utils.d.ts +5 -2
  21. package/lib/components/gravity-date-picker/components/month-calendar/month-calendar.component.d.ts +71 -0
  22. package/lib/components/gravity-date-picker/components/year-calendar/year-calendar.component.d.ts +72 -0
  23. package/lib/components/gravity-date-picker/gravity-date-picker.component.d.ts +63 -0
  24. package/lib/components/gravity-date-picker/shared/date-picker.constants.d.ts +52 -0
  25. package/lib/components/{gravity-calendar-next/shared/calendar.modal.d.ts → gravity-date-picker/shared/date-picker.modal.d.ts} +8 -4
  26. package/lib/components/gravity-date-picker/shared/date-picker.utils.d.ts +10 -0
  27. package/lib/components/gravity-text-field/gravity-text-field.component.d.ts +5 -3
  28. package/lib/gravity-design-system.module.d.ts +18 -19
  29. package/lib/layout/gravity-menu/gravity-menu.component.d.ts +2 -2
  30. package/package.json +1 -1
  31. package/public-api.d.ts +1 -1
  32. package/esm2022/lib/components/gravity-calendar-next/components/day-calendar/day-calendar.component.mjs +0 -216
  33. package/esm2022/lib/components/gravity-calendar-next/components/day-calendar/range-days-calendar.utils.mjs +0 -73
  34. package/esm2022/lib/components/gravity-calendar-next/components/dual-month-calendar/dual-month-calendar.component.mjs +0 -109
  35. package/esm2022/lib/components/gravity-calendar-next/components/month-calendar/month-calendar.component.mjs +0 -95
  36. package/esm2022/lib/components/gravity-calendar-next/components/year-calendar/year-calendar.component.mjs +0 -94
  37. package/esm2022/lib/components/gravity-calendar-next/gravity-calendar-next.component.mjs +0 -75
  38. package/esm2022/lib/components/gravity-calendar-next/shared/calendar.constants.mjs +0 -21
  39. package/esm2022/lib/components/gravity-calendar-next/shared/calendar.modal.mjs +0 -2
  40. package/esm2022/lib/components/gravity-calendar-next/shared/calendar.utils.mjs +0 -16
  41. package/lib/components/gravity-calendar-next/components/day-calendar/day-calendar.component.d.ts +0 -61
  42. package/lib/components/gravity-calendar-next/components/dual-month-calendar/dual-month-calendar.component.d.ts +0 -46
  43. package/lib/components/gravity-calendar-next/components/month-calendar/month-calendar.component.d.ts +0 -39
  44. package/lib/components/gravity-calendar-next/components/year-calendar/year-calendar.component.d.ts +0 -38
  45. package/lib/components/gravity-calendar-next/gravity-calendar-next.component.d.ts +0 -21
  46. package/lib/components/gravity-calendar-next/shared/calendar.constants.d.ts +0 -22
  47. package/lib/components/gravity-calendar-next/shared/calendar.utils.d.ts +0 -5
@@ -0,0 +1,108 @@
1
+ import { DatePickerAppearance, DatePickerConfig, CalendarDate } from "../../shared/date-picker.modal";
2
+ import { GravityTextFieldComponent } from "../../../gravity-text-field/gravity-text-field.component";
3
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
4
+ import { changeDate, calendarDateToDate, isPeriodAvailable } from '../../shared/date-picker.utils';
5
+ import { isPreview, onClearHover, onDateKeyup, onHoverDay, searchDate } from "./range-days-calendar.utils";
6
+ import * as i0 from "@angular/core";
7
+ export declare class DayCalendarComponent implements OnChanges {
8
+ initYear: Date;
9
+ initMonth: Date;
10
+ config: DatePickerConfig;
11
+ range: boolean;
12
+ restart: boolean;
13
+ appyOnClose: boolean;
14
+ currentDate: Date;
15
+ appearance: DatePickerAppearance;
16
+ navType: 'prev' | 'next' | 'both' | 'none';
17
+ clearHover: EventEmitter<void>;
18
+ clearSelection: EventEmitter<void>;
19
+ changeMonth: EventEmitter<number>;
20
+ hoverDay: EventEmitter<CalendarDate>;
21
+ openIntegratedCalendar: EventEmitter<void>;
22
+ selectedRage: EventEmitter<CalendarDate>;
23
+ calendarResponse: EventEmitter<Date[] | Date>;
24
+ changeMonthYearResponse: EventEmitter<Date | Date[]>;
25
+ endDateField: GravityTextFieldComponent;
26
+ startDateField: GravityTextFieldComponent;
27
+ endDateError: string;
28
+ startDateError: string;
29
+ endFieldDisabled: boolean;
30
+ startFieldDisabled: boolean;
31
+ selectedRangeEnd: CalendarDate | null;
32
+ selectedRangeStart: CalendarDate | null;
33
+ showYearCalendar: boolean;
34
+ showMonthCalendar: boolean;
35
+ focused: 'start' | 'end';
36
+ hoveredDay: CalendarDate | null;
37
+ selectedDay: CalendarDate | null;
38
+ notification: {
39
+ text: string;
40
+ error: boolean;
41
+ };
42
+ get i18n(): {
43
+ readonly apply: "Apply";
44
+ readonly date_placeholder: "mm/dd/yyyy";
45
+ readonly date_unavailable: "This date isn’t available. Please choose another one.";
46
+ readonly end_after_start: "End date must be after the start date.";
47
+ readonly end_date: "End date";
48
+ readonly invalid_date: "Invalid date";
49
+ readonly next_month: "Next month";
50
+ readonly next_year: "Next year";
51
+ readonly next_years: "Next years";
52
+ readonly preview_month: "Preview month";
53
+ readonly preview_year: "Preview year";
54
+ readonly preview_years: "Preview years";
55
+ readonly select_date: "Select a date";
56
+ readonly select_range: "Select a date range";
57
+ readonly select_valid_date: "select a valid date to continue your range.";
58
+ readonly start_before_end: "Start date must be before the end date.";
59
+ readonly start_date: "Start date";
60
+ readonly clear: "Clear selection";
61
+ readonly no_date_applied: "Selected dates pending application.";
62
+ } | {
63
+ readonly apply: "Aplicar";
64
+ readonly clear: "Limpiar selección";
65
+ readonly date_placeholder: "dd/mm/aaaa";
66
+ readonly date_unavailable: "Esta fecha no está disponible. Por favor, elige otra.";
67
+ readonly end_after_start: "La fecha final debe ser posterior a la fecha de inicio.";
68
+ readonly end_date: "Fecha final";
69
+ readonly invalid_date: "Fecha inválida";
70
+ readonly next_month: "Mes siguiente";
71
+ readonly next_year: "Año siguiente";
72
+ readonly next_years: "Años siguientes";
73
+ readonly preview_month: "Mes anterior";
74
+ readonly preview_year: "Año anterior";
75
+ readonly preview_years: "Años anteriores";
76
+ readonly select_date: "Selecciona una fecha";
77
+ readonly select_range: "Selecciona un rango de fechas";
78
+ readonly select_valid_date: "Selecciona una fecha válida para continuar con tu rango.";
79
+ readonly start_before_end: "La fecha de inicio debe ser anterior a la final.";
80
+ readonly start_date: "Fecha inicial";
81
+ readonly no_date_applied: "Fechas seleccionadas pendientes de aplicar.";
82
+ };
83
+ get monthsList(): string[];
84
+ get daysList(): string[];
85
+ trackByWeek(index: number, _: any): number;
86
+ trackByDay(_: number, day: CalendarDate): string;
87
+ ngOnChanges(changes: SimpleChanges): void;
88
+ private processInitDate;
89
+ isDateSelected(): boolean;
90
+ getDaySelectionClass(day: CalendarDate): string;
91
+ private getSingleDaySelectionClass;
92
+ onSelectDay(day: CalendarDate): void;
93
+ applySelectedDate(): void;
94
+ clearSelectedDate(clearTarget: 'all' | 'start' | 'end'): void;
95
+ handleCalendarResponse(date: Date | Date[], isMonth: boolean): void;
96
+ handleOnClickDropdownLabel(isMonth: boolean): void;
97
+ getMonthGrid(): CalendarDate[][];
98
+ protected readonly changeDate: typeof changeDate;
99
+ protected readonly isPreview: typeof isPreview;
100
+ protected readonly searchDate: typeof searchDate;
101
+ protected readonly onHoverDay: typeof onHoverDay;
102
+ protected readonly onDateKeyup: typeof onDateKeyup;
103
+ protected readonly onClearHover: typeof onClearHover;
104
+ protected readonly calendarDateToDate: typeof calendarDateToDate;
105
+ protected readonly isPeriodAvailable: typeof isPeriodAvailable;
106
+ static ɵfac: i0.ɵɵFactoryDeclaration<DayCalendarComponent, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<DayCalendarComponent, "day-calendar", never, { "initYear": { "alias": "initYear"; "required": false; }; "initMonth": { "alias": "initMonth"; "required": false; }; "config": { "alias": "config"; "required": false; }; "range": { "alias": "range"; "required": false; }; "restart": { "alias": "restart"; "required": false; }; "appyOnClose": { "alias": "appyOnClose"; "required": false; }; "currentDate": { "alias": "currentDate"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "navType": { "alias": "navType"; "required": false; }; }, { "clearHover": "clearHover"; "clearSelection": "clearSelection"; "changeMonth": "changeMonth"; "hoverDay": "hoverDay"; "openIntegratedCalendar": "openIntegratedCalendar"; "selectedRage": "selectedRage"; "calendarResponse": "calendarResponse"; "changeMonthYearResponse": "changeMonthYearResponse"; }, never, never, false, never>;
108
+ }
@@ -1,9 +1,12 @@
1
- import { CalendarDate } from "../../shared/calendar.modal";
1
+ import { CalendarDate } from "../../shared/date-picker.modal";
2
2
  import { DayCalendarComponent } from "./day-calendar.component";
3
3
  export declare function isPreview(component: DayCalendarComponent, day: CalendarDate): boolean;
4
4
  export declare function processPreselectedRangeDate(component: DayCalendarComponent): void;
5
5
  export declare function getRangeSelectionClass(component: DayCalendarComponent, day: CalendarDate): string;
6
- export declare function onSelectRageDays(component: DayCalendarComponent, day: CalendarDate): void;
6
+ export declare function onSelectDaysRange(component: DayCalendarComponent, day: CalendarDate): void;
7
7
  export declare function onApplyRageDate(component: DayCalendarComponent): void;
8
8
  export declare function onHoverDay(component: DayCalendarComponent, day: CalendarDate): void;
9
9
  export declare function onClearHover(component: DayCalendarComponent): void;
10
+ export declare function searchDate(component: DayCalendarComponent, dateStr: string, target: 'start' | 'end'): void;
11
+ export declare function validateDateLimits(component: DayCalendarComponent, date: Date, target: 'start' | 'end'): boolean;
12
+ export declare function onDateKeyup(component: DayCalendarComponent, event: KeyboardEvent, target: 'start' | 'end'): void;
@@ -0,0 +1,71 @@
1
+ import { DatePickerAppearance, DatePickerConfig, CalendarPeriod } from "../../shared/date-picker.modal";
2
+ import { changeDate, isPeriodAvailable } from "../../shared/date-picker.utils";
3
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MonthCalendarComponent implements OnChanges {
6
+ config: DatePickerConfig;
7
+ initDate: Date | Date[];
8
+ restart: boolean;
9
+ appearance: DatePickerAppearance;
10
+ integratedMode: boolean;
11
+ clearSelection: EventEmitter<void>;
12
+ response: EventEmitter<Date[] | Date>;
13
+ currentDate: Date;
14
+ selectedMonth: CalendarPeriod;
15
+ get i18n(): {
16
+ readonly apply: "Apply";
17
+ readonly date_placeholder: "mm/dd/yyyy";
18
+ readonly date_unavailable: "This date isn’t available. Please choose another one.";
19
+ readonly end_after_start: "End date must be after the start date.";
20
+ readonly end_date: "End date";
21
+ readonly invalid_date: "Invalid date";
22
+ readonly next_month: "Next month";
23
+ readonly next_year: "Next year";
24
+ readonly next_years: "Next years";
25
+ readonly preview_month: "Preview month";
26
+ readonly preview_year: "Preview year";
27
+ readonly preview_years: "Preview years";
28
+ readonly select_date: "Select a date";
29
+ readonly select_range: "Select a date range";
30
+ readonly select_valid_date: "select a valid date to continue your range.";
31
+ readonly start_before_end: "Start date must be before the end date.";
32
+ readonly start_date: "Start date";
33
+ readonly clear: "Clear selection";
34
+ readonly no_date_applied: "Selected dates pending application.";
35
+ } | {
36
+ readonly apply: "Aplicar";
37
+ readonly clear: "Limpiar selección";
38
+ readonly date_placeholder: "dd/mm/aaaa";
39
+ readonly date_unavailable: "Esta fecha no está disponible. Por favor, elige otra.";
40
+ readonly end_after_start: "La fecha final debe ser posterior a la fecha de inicio.";
41
+ readonly end_date: "Fecha final";
42
+ readonly invalid_date: "Fecha inválida";
43
+ readonly next_month: "Mes siguiente";
44
+ readonly next_year: "Año siguiente";
45
+ readonly next_years: "Años siguientes";
46
+ readonly preview_month: "Mes anterior";
47
+ readonly preview_year: "Año anterior";
48
+ readonly preview_years: "Años anteriores";
49
+ readonly select_date: "Selecciona una fecha";
50
+ readonly select_range: "Selecciona un rango de fechas";
51
+ readonly select_valid_date: "Selecciona una fecha válida para continuar con tu rango.";
52
+ readonly start_before_end: "La fecha de inicio debe ser anterior a la final.";
53
+ readonly start_date: "Fecha inicial";
54
+ readonly no_date_applied: "Fechas seleccionadas pendientes de aplicar.";
55
+ };
56
+ get monthsList(): string[];
57
+ get monthsShortList(): string[];
58
+ ngOnChanges(changes: SimpleChanges): void;
59
+ trackByMonth(_: number, month: CalendarPeriod): string;
60
+ private processInitDate;
61
+ onSelectMonth(month: CalendarPeriod): void;
62
+ getMonthSelectionClass(month: CalendarPeriod): string;
63
+ isCurrentMonth(month: CalendarPeriod): boolean;
64
+ clearSelectedMonth(): void;
65
+ applySelectedMonth(): void;
66
+ getYearMonthsList(): CalendarPeriod[];
67
+ protected readonly changeDate: typeof changeDate;
68
+ protected readonly isPeriodAvailable: typeof isPeriodAvailable;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonthCalendarComponent, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<MonthCalendarComponent, "month-calendar", never, { "config": { "alias": "config"; "required": false; }; "initDate": { "alias": "initDate"; "required": false; }; "restart": { "alias": "restart"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "integratedMode": { "alias": "integratedMode"; "required": false; }; }, { "clearSelection": "clearSelection"; "response": "response"; }, never, never, false, never>;
71
+ }
@@ -0,0 +1,72 @@
1
+ import { changeDate, isPeriodAvailable } from "../../shared/date-picker.utils";
2
+ import { DatePickerAppearance, DatePickerConfig } from "../../shared/date-picker.modal";
3
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class YearCalendarComponent implements OnChanges, OnInit {
6
+ config: DatePickerConfig;
7
+ initDate: Date | Date[];
8
+ restart: boolean;
9
+ appearance: DatePickerAppearance;
10
+ integratedMode: boolean;
11
+ clearSelection: EventEmitter<void>;
12
+ response: EventEmitter<Date[] | Date>;
13
+ selectedYear: number;
14
+ currentDate: Date;
15
+ startYear: number;
16
+ get i18n(): {
17
+ readonly apply: "Apply";
18
+ readonly date_placeholder: "mm/dd/yyyy";
19
+ readonly date_unavailable: "This date isn’t available. Please choose another one.";
20
+ readonly end_after_start: "End date must be after the start date.";
21
+ readonly end_date: "End date";
22
+ readonly invalid_date: "Invalid date";
23
+ readonly next_month: "Next month";
24
+ readonly next_year: "Next year";
25
+ readonly next_years: "Next years";
26
+ readonly preview_month: "Preview month";
27
+ readonly preview_year: "Preview year";
28
+ readonly preview_years: "Preview years";
29
+ readonly select_date: "Select a date";
30
+ readonly select_range: "Select a date range";
31
+ readonly select_valid_date: "select a valid date to continue your range.";
32
+ readonly start_before_end: "Start date must be before the end date.";
33
+ readonly start_date: "Start date";
34
+ readonly clear: "Clear selection";
35
+ readonly no_date_applied: "Selected dates pending application.";
36
+ } | {
37
+ readonly apply: "Aplicar";
38
+ readonly clear: "Limpiar selección";
39
+ readonly date_placeholder: "dd/mm/aaaa";
40
+ readonly date_unavailable: "Esta fecha no está disponible. Por favor, elige otra.";
41
+ readonly end_after_start: "La fecha final debe ser posterior a la fecha de inicio.";
42
+ readonly end_date: "Fecha final";
43
+ readonly invalid_date: "Fecha inválida";
44
+ readonly next_month: "Mes siguiente";
45
+ readonly next_year: "Año siguiente";
46
+ readonly next_years: "Años siguientes";
47
+ readonly preview_month: "Mes anterior";
48
+ readonly preview_year: "Año anterior";
49
+ readonly preview_years: "Años anteriores";
50
+ readonly select_date: "Selecciona una fecha";
51
+ readonly select_range: "Selecciona un rango de fechas";
52
+ readonly select_valid_date: "Selecciona una fecha válida para continuar con tu rango.";
53
+ readonly start_before_end: "La fecha de inicio debe ser anterior a la final.";
54
+ readonly start_date: "Fecha inicial";
55
+ readonly no_date_applied: "Fechas seleccionadas pendientes de aplicar.";
56
+ };
57
+ trackByYear(_: number, year: number): string;
58
+ ngOnInit(): void;
59
+ ngOnChanges(changes: SimpleChanges): void;
60
+ private processInitDate;
61
+ setYearsBlock(year: number): void;
62
+ onSelectYear(year: number): void;
63
+ getYearSelectionClass(year: number): string;
64
+ isCurrentYear(year: number): boolean;
65
+ clearSelectedYear(): void;
66
+ applySelectedYear(): void;
67
+ getYearList(): number[];
68
+ protected readonly changeDate: typeof changeDate;
69
+ protected readonly isPeriodAvailable: typeof isPeriodAvailable;
70
+ static ɵfac: i0.ɵɵFactoryDeclaration<YearCalendarComponent, never>;
71
+ static ɵcmp: i0.ɵɵComponentDeclaration<YearCalendarComponent, "year-calendar", never, { "config": { "alias": "config"; "required": false; }; "initDate": { "alias": "initDate"; "required": false; }; "restart": { "alias": "restart"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "integratedMode": { "alias": "integratedMode"; "required": false; }; }, { "clearSelection": "clearSelection"; "response": "response"; }, never, never, false, never>;
72
+ }
@@ -0,0 +1,63 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DatePickerAppearance, DatePickerConfig, DatePickerResponse } from "./shared/date-picker.modal";
3
+ import * as i0 from "@angular/core";
4
+ export declare class GravityDatePickerComponent {
5
+ cypressTag: string;
6
+ datePickerType: 'day' | 'range' | 'month' | 'year';
7
+ private _config;
8
+ private _appearance;
9
+ get i18n(): {
10
+ readonly apply: "Apply";
11
+ readonly date_placeholder: "mm/dd/yyyy";
12
+ readonly date_unavailable: "This date isn’t available. Please choose another one.";
13
+ readonly end_after_start: "End date must be after the start date.";
14
+ readonly end_date: "End date";
15
+ readonly invalid_date: "Invalid date";
16
+ readonly next_month: "Next month";
17
+ readonly next_year: "Next year";
18
+ readonly next_years: "Next years";
19
+ readonly preview_month: "Preview month";
20
+ readonly preview_year: "Preview year";
21
+ readonly preview_years: "Preview years";
22
+ readonly select_date: "Select a date";
23
+ readonly select_range: "Select a date range";
24
+ readonly select_valid_date: "select a valid date to continue your range.";
25
+ readonly start_before_end: "Start date must be before the end date.";
26
+ readonly start_date: "Start date";
27
+ readonly clear: "Clear selection";
28
+ readonly no_date_applied: "Selected dates pending application.";
29
+ } | {
30
+ readonly apply: "Aplicar";
31
+ readonly clear: "Limpiar selección";
32
+ readonly date_placeholder: "dd/mm/aaaa";
33
+ readonly date_unavailable: "Esta fecha no está disponible. Por favor, elige otra.";
34
+ readonly end_after_start: "La fecha final debe ser posterior a la fecha de inicio.";
35
+ readonly end_date: "Fecha final";
36
+ readonly invalid_date: "Fecha inválida";
37
+ readonly next_month: "Mes siguiente";
38
+ readonly next_year: "Año siguiente";
39
+ readonly next_years: "Años siguientes";
40
+ readonly preview_month: "Mes anterior";
41
+ readonly preview_year: "Año anterior";
42
+ readonly preview_years: "Años anteriores";
43
+ readonly select_date: "Selecciona una fecha";
44
+ readonly select_range: "Selecciona un rango de fechas";
45
+ readonly select_valid_date: "Selecciona una fecha válida para continuar con tu rango.";
46
+ readonly start_before_end: "La fecha de inicio debe ser anterior a la final.";
47
+ readonly start_date: "Fecha inicial";
48
+ readonly no_date_applied: "Fechas seleccionadas pendientes de aplicar.";
49
+ };
50
+ set config(value: DatePickerConfig);
51
+ get config(): DatePickerConfig;
52
+ set appearance(value: DatePickerAppearance);
53
+ get appearance(): DatePickerAppearance;
54
+ clear: EventEmitter<void>;
55
+ close: EventEmitter<void>;
56
+ response: EventEmitter<DatePickerResponse>;
57
+ handleClear(): void;
58
+ handleResponse(value: Date[] | Date): void;
59
+ handleCloseButton(): void;
60
+ applyOnClose(): boolean;
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<GravityDatePickerComponent, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityDatePickerComponent, "gravity-date-picker", never, { "cypressTag": { "alias": "cypressTag"; "required": false; }; "datePickerType": { "alias": "datePickerType"; "required": false; }; "config": { "alias": "config"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; }, { "clear": "clear"; "close": "close"; "response": "response"; }, never, never, false, never>;
63
+ }
@@ -0,0 +1,52 @@
1
+ export declare const DAYS_EN: string[];
2
+ export declare const DAYS_ES: string[];
3
+ export declare const DAYS_SHORT_ES: string[];
4
+ export declare const DAYS_SHORT_EN: string[];
5
+ export declare const MONTHS_ES: string[];
6
+ export declare const MONTHS_EN: string[];
7
+ export declare const MONTHS_SHORT_ES: string[];
8
+ export declare const MONTHS_SHORT_EN: string[];
9
+ export declare const CALENDAR_I18N: {
10
+ readonly en: {
11
+ readonly apply: "Apply";
12
+ readonly date_placeholder: "mm/dd/yyyy";
13
+ readonly date_unavailable: "This date isn’t available. Please choose another one.";
14
+ readonly end_after_start: "End date must be after the start date.";
15
+ readonly end_date: "End date";
16
+ readonly invalid_date: "Invalid date";
17
+ readonly next_month: "Next month";
18
+ readonly next_year: "Next year";
19
+ readonly next_years: "Next years";
20
+ readonly preview_month: "Preview month";
21
+ readonly preview_year: "Preview year";
22
+ readonly preview_years: "Preview years";
23
+ readonly select_date: "Select a date";
24
+ readonly select_range: "Select a date range";
25
+ readonly select_valid_date: "select a valid date to continue your range.";
26
+ readonly start_before_end: "Start date must be before the end date.";
27
+ readonly start_date: "Start date";
28
+ readonly clear: "Clear selection";
29
+ readonly no_date_applied: "Selected dates pending application.";
30
+ };
31
+ readonly es: {
32
+ readonly apply: "Aplicar";
33
+ readonly clear: "Limpiar selección";
34
+ readonly date_placeholder: "dd/mm/aaaa";
35
+ readonly date_unavailable: "Esta fecha no está disponible. Por favor, elige otra.";
36
+ readonly end_after_start: "La fecha final debe ser posterior a la fecha de inicio.";
37
+ readonly end_date: "Fecha final";
38
+ readonly invalid_date: "Fecha inválida";
39
+ readonly next_month: "Mes siguiente";
40
+ readonly next_year: "Año siguiente";
41
+ readonly next_years: "Años siguientes";
42
+ readonly preview_month: "Mes anterior";
43
+ readonly preview_year: "Año anterior";
44
+ readonly preview_years: "Años anteriores";
45
+ readonly select_date: "Selecciona una fecha";
46
+ readonly select_range: "Selecciona un rango de fechas";
47
+ readonly select_valid_date: "Selecciona una fecha válida para continuar con tu rango.";
48
+ readonly start_before_end: "La fecha de inicio debe ser anterior a la final.";
49
+ readonly start_date: "Fecha inicial";
50
+ readonly no_date_applied: "Fechas seleccionadas pendientes de aplicar.";
51
+ };
52
+ };
@@ -1,18 +1,22 @@
1
- export interface CalendarConfig {
1
+ export interface DatePickerConfig {
2
2
  maxDate?: Date | null;
3
3
  minDate?: Date | null;
4
4
  initDate?: Date | Date[] | null;
5
5
  }
6
- export interface CalendarAppearance {
6
+ export interface DatePickerAppearance {
7
7
  actions?: boolean;
8
8
  isMobile?: boolean;
9
9
  language?: 'es' | 'en';
10
- state?: 'active' | 'hidden' | 'disabled';
10
+ state?: 'active' | 'hidden' | 'disabled' | 'destroy';
11
+ }
12
+ export interface DatePickerResponse {
13
+ dates: Date | Date[];
14
+ formatedDate?: string;
11
15
  }
12
16
  export interface CalendarDate {
13
17
  day: number;
14
18
  weekDay: number;
15
- isToday: boolean;
19
+ isToday?: boolean;
16
20
  inCurrentMonth: boolean;
17
21
  monthYear: CalendarPeriod;
18
22
  }
@@ -0,0 +1,10 @@
1
+ import { CalendarDate } from "./date-picker.modal";
2
+ export declare function getStartDate(date: Date): Date;
3
+ export declare function changeDate(offset: number, currentDate: Date, isMonth: boolean): Date;
4
+ export declare function isPeriodAvailable(currentDate: Date, limitDate: Date, period: 'month' | 'year', direction: 'prev' | 'next', startYearBlock?: number): boolean;
5
+ export declare function dateToCalendarDay(date: Date): CalendarDate;
6
+ export declare function dateToString(date: Date, language: 'en' | 'es'): string;
7
+ export declare function stringToCalendarDate(value: string, language: 'en' | 'es'): CalendarDate | null;
8
+ export declare function stringToDate(dateStr: string, language: 'en' | 'es'): Date | null;
9
+ export declare function calendarDateToDate(cd: CalendarDate): Date;
10
+ export declare function formatDatetime(value: string | string[], formatMonth?: 'short' | 'long', language?: 'en' | 'es'): string;
@@ -1,11 +1,11 @@
1
- import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
1
+ import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class GravityTextFieldComponent implements OnInit, OnChanges {
4
4
  leftIconResponse: EventEmitter<void>;
5
5
  rightIconResponse: EventEmitter<void>;
6
6
  textFieldValueResponse: EventEmitter<string>;
7
- private inputElement;
8
- private textAreaElement;
7
+ inputElement: ElementRef<HTMLInputElement>;
8
+ textAreaElement: ElementRef<HTMLInputElement>;
9
9
  currentLang: string;
10
10
  customInputValue: string;
11
11
  customState: 'default' | 'active' | 'hover' | 'typing' | 'typed' | 'typed-error' | 'typed-positive' | 'disabled' | 'readonly' | 'autofill';
@@ -33,6 +33,8 @@ export declare class GravityTextFieldComponent implements OnInit, OnChanges {
33
33
  inputValue: string;
34
34
  ngOnInit(): void;
35
35
  ngOnChanges(changes: SimpleChanges): void;
36
+ focus(): void;
37
+ isFocused(): boolean;
36
38
  getPlaceholder(): string;
37
39
  clearInput(): void;
38
40
  changeInputValue(clearInput?: boolean): void;
@@ -61,26 +61,25 @@ import * as i59 from "./components/gravity-dropdown-label/gravity-dropdown-label
61
61
  import * as i60 from "./components/gravity-navigation-card/gravity-navigation-card.component";
62
62
  import * as i61 from "./components/gravity-generic-avatar-secondary/gravity-generic-avatar-secondary.component";
63
63
  import * as i62 from "./components/gravity-backdrop/gravity-backdrop.component";
64
- import * as i63 from "./components/gravity-calendar-next/gravity-calendar-next.component";
65
- import * as i64 from "./components/gravity-calendar-next/components/day-calendar/day-calendar.component";
66
- import * as i65 from "./components/gravity-calendar-next/components/month-calendar/month-calendar.component";
67
- import * as i66 from "./components/gravity-calendar-next/components/year-calendar/year-calendar.component";
68
- import * as i67 from "./components/gravity-calendar-next/components/dual-month-calendar/dual-month-calendar.component";
69
- import * as i68 from "./components/gravity-segmented-button/gravity-segmented-button.component";
70
- import * as i69 from "./components/gravity-currency-display-v2/gravity-currency-display-v2.component";
71
- import * as i70 from "./layout/gravity-header/gravity-header.component";
72
- import * as i71 from "./components/gravity-push-notifications/gravity-push-notifications.component";
73
- import * as i72 from "./layout/gravity-menu/gravity-menu.component";
74
- import * as i73 from "angular-svg-icon";
75
- import * as i74 from "angular-svg-icon-preloader";
76
- import * as i75 from "ngx-bootstrap/datepicker";
77
- import * as i76 from "@angular/common";
78
- import * as i77 from "@angular/forms";
79
- import * as i78 from "./vendor/gravity-tooltip/gravity-tooltip.module";
80
- import * as i79 from "@ng-bootstrap/ng-bootstrap";
81
- import * as i80 from "@angular/router";
64
+ import * as i63 from "./components/gravity-date-picker/gravity-date-picker.component";
65
+ import * as i64 from "./components/gravity-date-picker/components/day-calendar/day-calendar.component";
66
+ import * as i65 from "./components/gravity-date-picker/components/month-calendar/month-calendar.component";
67
+ import * as i66 from "./components/gravity-date-picker/components/year-calendar/year-calendar.component";
68
+ import * as i67 from "./components/gravity-segmented-button/gravity-segmented-button.component";
69
+ import * as i68 from "./components/gravity-currency-display-v2/gravity-currency-display-v2.component";
70
+ import * as i69 from "./layout/gravity-header/gravity-header.component";
71
+ import * as i70 from "./components/gravity-push-notifications/gravity-push-notifications.component";
72
+ import * as i71 from "./layout/gravity-menu/gravity-menu.component";
73
+ import * as i72 from "angular-svg-icon";
74
+ import * as i73 from "angular-svg-icon-preloader";
75
+ import * as i74 from "ngx-bootstrap/datepicker";
76
+ import * as i75 from "@angular/common";
77
+ import * as i76 from "@angular/forms";
78
+ import * as i77 from "./vendor/gravity-tooltip/gravity-tooltip.module";
79
+ import * as i78 from "@ng-bootstrap/ng-bootstrap";
80
+ import * as i79 from "@angular/router";
82
81
  export declare class GravityDesignSystemModule {
83
82
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityDesignSystemModule, never>;
84
- static ɵmod: i0.ɵɵNgModuleDeclaration<GravityDesignSystemModule, [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i11.GravityDataViewComponent, typeof i12.GravityDataViewsV2Component, typeof i13.GravityDialogComponent, typeof i14.GravityDetailContainerComponent, typeof i15.GravityDropdownListComponent, typeof i16.GravityDropdownListDisplayComponent, typeof i17.GravityIconButtonComponent, typeof i18.GravityIconComponent, typeof i19.GravityMultiLanguageComponent, typeof i20.GravityNetworkPillComponent, typeof i21.GravityNotificationComponent, typeof i22.GravityNotificationInstantContainerComponent, typeof i23.GravityRadioButtonComponent, typeof i24.GravityStatusIndicatorComponent, typeof i25.GravityStepperComponent, typeof i26.GravitySwitchComponent, typeof i27.GravityTableComponent, typeof i28.GravityTablesV2Component, typeof i29.GravityTextFieldComponent, typeof i30.GravityTextFieldNumberOnlyComponent, typeof i31.GravityTreeViewComponent, typeof i32.NodeComponent, typeof i33.NodeToggleComponent, typeof i34.NodeCheckboxComponent, typeof i35.NodeNameComponent, typeof i36.FilterByPipe, typeof i37.DateAbbreviationPipe, typeof i38.BsDatepickerDayDecoratorComponent, typeof i39.BsDatepickerNavigationViewComponent, typeof i40.BsDaysCalendarViewComponent, typeof i41.BsMonthCalendarViewComponent, typeof i42.BsYearsCalendarViewComponent, typeof i43.BsDatepickerContainerComponent, typeof i44.BsDatepickerDirective, typeof i45.BsDatepickerInlineContainerComponent, typeof i46.BsDatepickerInlineDirective, typeof i47.BsDaterangepickerContainerComponent, typeof i48.BsDaterangepickerDirective, typeof i49.BsDaterangepickerInlineContainerComponent, typeof i50.BsDaterangepickerInlineDirective, typeof i51.GravityModalComponent, typeof i52.GravityLinkComponent, typeof i53.GravityTabPrimaryComponent, typeof i54.GravityTabSecondaryComponent, typeof i55.GravityChipComponent, typeof i56.GravityChipGroupComponent, typeof i57.GravityEditableInputComponent, typeof i58.GravityCardButtonComponent, typeof i59.GravityDropdownLabelComponent, typeof i60.GravityNavigationCardComponent, typeof i61.GravityGenericAvatarSecondaryComponent, typeof i62.GravityBackdropComponent, typeof i63.GravityCalendarNextComponent, typeof i64.DayCalendarComponent, typeof i65.MonthCalendarComponent, typeof i66.YearCalendarComponent, typeof i67.DualMonthCalendarComponent, typeof i68.GravitySegmentedButtonComponent, typeof i69.GravityCurrencyDisplayV2Component, typeof i70.GravityHeaderComponent, typeof i71.GravityPushNotificationsComponent, typeof i72.GravityMenuComponent], [typeof i73.AngularSvgIconModule, typeof i74.AngularSvgIconPreloaderModule, typeof i75.BsDatepickerModule, typeof i76.CommonModule, typeof i77.FormsModule, typeof i78.GravityTooltipModule, typeof i79.NgbDatepickerModule, typeof i79.NgbOffcanvasModule, typeof i79.NgbProgressbarModule, typeof i79.NgbToastModule, typeof i77.ReactiveFormsModule, typeof i80.RouterLink], [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i69.GravityCurrencyDisplayV2Component, typeof i11.GravityDataViewComponent, typeof i12.GravityDataViewsV2Component, typeof i13.GravityDialogComponent, typeof i14.GravityDetailContainerComponent, typeof i15.GravityDropdownListComponent, typeof i16.GravityDropdownListDisplayComponent, typeof i17.GravityIconButtonComponent, typeof i18.GravityIconComponent, typeof i19.GravityMultiLanguageComponent, typeof i20.GravityNetworkPillComponent, typeof i22.GravityNotificationInstantContainerComponent, typeof i23.GravityRadioButtonComponent, typeof i24.GravityStatusIndicatorComponent, typeof i25.GravityStepperComponent, typeof i26.GravitySwitchComponent, typeof i27.GravityTableComponent, typeof i28.GravityTablesV2Component, typeof i29.GravityTextFieldComponent, typeof i30.GravityTextFieldNumberOnlyComponent, typeof i78.GravityTooltipModule, typeof i31.GravityTreeViewComponent, typeof i51.GravityModalComponent, typeof i52.GravityLinkComponent, typeof i53.GravityTabPrimaryComponent, typeof i54.GravityTabSecondaryComponent, typeof i55.GravityChipComponent, typeof i56.GravityChipGroupComponent, typeof i57.GravityEditableInputComponent, typeof i58.GravityCardButtonComponent, typeof i60.GravityNavigationCardComponent, typeof i61.GravityGenericAvatarSecondaryComponent, typeof i62.GravityBackdropComponent, typeof i63.GravityCalendarNextComponent, typeof i68.GravitySegmentedButtonComponent, typeof i70.GravityHeaderComponent, typeof i71.GravityPushNotificationsComponent, typeof i72.GravityMenuComponent]>;
83
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GravityDesignSystemModule, [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i11.GravityDataViewComponent, typeof i12.GravityDataViewsV2Component, typeof i13.GravityDialogComponent, typeof i14.GravityDetailContainerComponent, typeof i15.GravityDropdownListComponent, typeof i16.GravityDropdownListDisplayComponent, typeof i17.GravityIconButtonComponent, typeof i18.GravityIconComponent, typeof i19.GravityMultiLanguageComponent, typeof i20.GravityNetworkPillComponent, typeof i21.GravityNotificationComponent, typeof i22.GravityNotificationInstantContainerComponent, typeof i23.GravityRadioButtonComponent, typeof i24.GravityStatusIndicatorComponent, typeof i25.GravityStepperComponent, typeof i26.GravitySwitchComponent, typeof i27.GravityTableComponent, typeof i28.GravityTablesV2Component, typeof i29.GravityTextFieldComponent, typeof i30.GravityTextFieldNumberOnlyComponent, typeof i31.GravityTreeViewComponent, typeof i32.NodeComponent, typeof i33.NodeToggleComponent, typeof i34.NodeCheckboxComponent, typeof i35.NodeNameComponent, typeof i36.FilterByPipe, typeof i37.DateAbbreviationPipe, typeof i38.BsDatepickerDayDecoratorComponent, typeof i39.BsDatepickerNavigationViewComponent, typeof i40.BsDaysCalendarViewComponent, typeof i41.BsMonthCalendarViewComponent, typeof i42.BsYearsCalendarViewComponent, typeof i43.BsDatepickerContainerComponent, typeof i44.BsDatepickerDirective, typeof i45.BsDatepickerInlineContainerComponent, typeof i46.BsDatepickerInlineDirective, typeof i47.BsDaterangepickerContainerComponent, typeof i48.BsDaterangepickerDirective, typeof i49.BsDaterangepickerInlineContainerComponent, typeof i50.BsDaterangepickerInlineDirective, typeof i51.GravityModalComponent, typeof i52.GravityLinkComponent, typeof i53.GravityTabPrimaryComponent, typeof i54.GravityTabSecondaryComponent, typeof i55.GravityChipComponent, typeof i56.GravityChipGroupComponent, typeof i57.GravityEditableInputComponent, typeof i58.GravityCardButtonComponent, typeof i59.GravityDropdownLabelComponent, typeof i60.GravityNavigationCardComponent, typeof i61.GravityGenericAvatarSecondaryComponent, typeof i62.GravityBackdropComponent, typeof i63.GravityDatePickerComponent, typeof i64.DayCalendarComponent, typeof i65.MonthCalendarComponent, typeof i66.YearCalendarComponent, typeof i67.GravitySegmentedButtonComponent, typeof i68.GravityCurrencyDisplayV2Component, typeof i69.GravityHeaderComponent, typeof i70.GravityPushNotificationsComponent, typeof i71.GravityMenuComponent], [typeof i72.AngularSvgIconModule, typeof i73.AngularSvgIconPreloaderModule, typeof i74.BsDatepickerModule, typeof i75.CommonModule, typeof i76.FormsModule, typeof i77.GravityTooltipModule, typeof i78.NgbDatepickerModule, typeof i78.NgbOffcanvasModule, typeof i78.NgbProgressbarModule, typeof i78.NgbToastModule, typeof i76.ReactiveFormsModule, typeof i79.RouterLink], [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i68.GravityCurrencyDisplayV2Component, typeof i11.GravityDataViewComponent, typeof i12.GravityDataViewsV2Component, typeof i13.GravityDialogComponent, typeof i14.GravityDetailContainerComponent, typeof i15.GravityDropdownListComponent, typeof i16.GravityDropdownListDisplayComponent, typeof i17.GravityIconButtonComponent, typeof i18.GravityIconComponent, typeof i19.GravityMultiLanguageComponent, typeof i20.GravityNetworkPillComponent, typeof i22.GravityNotificationInstantContainerComponent, typeof i23.GravityRadioButtonComponent, typeof i24.GravityStatusIndicatorComponent, typeof i25.GravityStepperComponent, typeof i26.GravitySwitchComponent, typeof i27.GravityTableComponent, typeof i28.GravityTablesV2Component, typeof i29.GravityTextFieldComponent, typeof i30.GravityTextFieldNumberOnlyComponent, typeof i77.GravityTooltipModule, typeof i31.GravityTreeViewComponent, typeof i51.GravityModalComponent, typeof i52.GravityLinkComponent, typeof i53.GravityTabPrimaryComponent, typeof i54.GravityTabSecondaryComponent, typeof i55.GravityChipComponent, typeof i56.GravityChipGroupComponent, typeof i57.GravityEditableInputComponent, typeof i58.GravityCardButtonComponent, typeof i60.GravityNavigationCardComponent, typeof i61.GravityGenericAvatarSecondaryComponent, typeof i62.GravityBackdropComponent, typeof i63.GravityDatePickerComponent, typeof i67.GravitySegmentedButtonComponent, typeof i69.GravityHeaderComponent, typeof i70.GravityPushNotificationsComponent, typeof i71.GravityMenuComponent]>;
85
84
  static ɵinj: i0.ɵɵInjectorDeclaration<GravityDesignSystemModule>;
86
85
  }
@@ -3,8 +3,8 @@ import { MenuHeader, MenuOption, SecondaryActions, UserInfo } from "../../model/
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class GravityMenuComponent implements AfterViewInit, OnDestroy {
5
5
  logoUrl: string;
6
+ items: MenuHeader[];
6
7
  userInfo: UserInfo[];
7
- items: Array<MenuHeader>;
8
8
  cardButtons: SecondaryActions[];
9
9
  maxCardButtonsPerRow: number;
10
10
  secondaryActions: SecondaryActions[];
@@ -25,5 +25,5 @@ export declare class GravityMenuComponent implements AfterViewInit, OnDestroy {
25
25
  private updateOverflow;
26
26
  getCardButtonsRows(): any[][];
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityMenuComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<GravityMenuComponent, "gravity-menu", never, { "logoUrl": { "alias": "logoUrl"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "items": { "alias": "items"; "required": false; }; "cardButtons": { "alias": "cardButtons"; "required": false; }; "maxCardButtonsPerRow": { "alias": "maxCardButtonsPerRow"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "mainFooterAction": { "alias": "mainFooterAction"; "required": false; }; }, { "closeMenu": "closeMenu"; }, never, never, false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityMenuComponent, "gravity-menu", never, { "logoUrl": { "alias": "logoUrl"; "required": false; }; "items": { "alias": "items"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "cardButtons": { "alias": "cardButtons"; "required": false; }; "maxCardButtonsPerRow": { "alias": "maxCardButtonsPerRow"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "mainFooterAction": { "alias": "mainFooterAction"; "required": false; }; }, { "closeMenu": "closeMenu"; }, never, never, false, never>;
29
29
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progressio_resources/gravity-design-system",
3
3
  "description": "Gravity Design System",
4
- "version": "3.6.6",
4
+ "version": "3.6.8",
5
5
  "license": "SEE LICENSE IN LIBRARY-LICENSE",
6
6
  "peerDependencies": {
7
7
  "@angular/common": "^16.2.12",
package/public-api.d.ts CHANGED
@@ -4,7 +4,7 @@ export * from './lib/components/gravity-avatar-stack/gravity-avatar-stack.compon
4
4
  export * from './lib/components/gravity-button/gravity-button.component';
5
5
  export * from './lib/components/gravity-calendar/gravity-calendar.component';
6
6
  export * from './lib/components/gravity-calendar-v2/gravity-calendar-v2.component';
7
- export * from './lib/components/gravity-calendar-next/gravity-calendar-next.component';
7
+ export * from './lib/components/gravity-date-picker/gravity-date-picker.component';
8
8
  export * from './lib/components/gravity-card-list/gravity-card-list.component';
9
9
  export * from './lib/components/gravity-checkbox/gravity-checkbox.component';
10
10
  export * from './lib/components/gravity-currency/gravity-currency.component';