novo-elements 5.11.0 → 5.13.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "novo-elements",
3
- "version": "5.11.0",
3
+ "version": "5.13.1",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=10",
6
6
  "@angular/cdk": ">=10",
@@ -6,8 +6,8 @@ export declare class DateFormatService {
6
6
  getDateMask(): Array<RegExp>;
7
7
  getDateTimeMask(militaryTime?: boolean): Array<RegExp>;
8
8
  getTimePlaceHolder(militaryTime: boolean): string;
9
- parseDateString(dateString: string): [Date, string];
9
+ parseDateString(dateString: string): [Date, string, boolean];
10
10
  parseTimeString(timeString: string, militaryTime: boolean): [Date, string];
11
- parseString(dateTimeString: string, militaryTime: boolean, type: string): [Date, string];
11
+ parseString(dateTimeString: string, militaryTime: boolean, type: string): [Date, string, boolean?];
12
12
  isValidDatePart(value: string, format: string): boolean;
13
13
  }
@@ -78,6 +78,7 @@ export declare class NovoLabelService {
78
78
  noItems: string;
79
79
  dateFormat: string;
80
80
  dateFormatPlaceholder: string;
81
+ localDatePlaceholder: string;
81
82
  timeFormatPlaceholderAM: string;
82
83
  timeFormatPlaceholder24Hour: string;
83
84
  timeFormatAM: string;
@@ -109,6 +110,7 @@ export declare class NovoLabelService {
109
110
  showingXofXResults(shown: number, total: number): string;
110
111
  totalRecords(total: number, select?: boolean): string;
111
112
  dateFormatString(): string;
113
+ localizedDatePlaceholder(): string;
112
114
  tabbedGroupClearSuggestion(tabLabelPlural: string): string;
113
115
  formatDateWithFormat(value: any, format: Intl.DateTimeFormatOptions): any;
114
116
  formatToTimeOnly(param: any): void;