ngx-material-entity 20.0.1 → 20.0.2
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/index.d.ts
CHANGED
|
@@ -985,7 +985,14 @@ declare abstract class DateUtilities {
|
|
|
985
985
|
* @returns Times in the 24 hour format from 0:00 until 23:30 in 30 minute steps.
|
|
986
986
|
*/
|
|
987
987
|
static getDefaultTimes(format?: 12 | 24, minuteSteps?: MinuteSteps): DropdownValue<Time>[];
|
|
988
|
-
|
|
988
|
+
/**
|
|
989
|
+
* Creates a time dropdown value for the given data.
|
|
990
|
+
* @param format - The time format. Defaults to 24.
|
|
991
|
+
* @param hour - The hour value of the time.
|
|
992
|
+
* @param minute - The minute value of the time.
|
|
993
|
+
* @returns The dropdown value.
|
|
994
|
+
*/
|
|
995
|
+
static getTimeDropdownValue(format: 12 | 24, hour: Hour, minute: Minute): DropdownValue<Time>;
|
|
989
996
|
private static getFormattedHour;
|
|
990
997
|
private static getFormattedMinute;
|
|
991
998
|
/**
|