@dereekb/dbx-form 10.1.15 → 10.1.16
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/esm2022/lib/formly/field/value/date/date.value.mjs +13 -1
- package/esm2022/lib/formly/field/value/date/datetime.field.component.mjs +2 -2
- package/esm2022/lib/formly/field/value/date/datetime.field.mjs +2 -1
- package/fesm2022/dereekb-dbx-form.mjs +14 -1
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -1
- package/lib/formly/field/value/date/date.value.d.ts +5 -1
- package/mapbox/package.json +1 -1
- package/package.json +1 -1
|
@@ -20,7 +20,11 @@ export declare enum DbxDateTimeValueMode {
|
|
|
20
20
|
/**
|
|
21
21
|
* Value is returned/parsed as a minute of the day, relative to the current timezone.
|
|
22
22
|
*/
|
|
23
|
-
MINUTE_OF_DAY = 4
|
|
23
|
+
MINUTE_OF_DAY = 4,
|
|
24
|
+
/**
|
|
25
|
+
* Value is returned/parsed as a minute of the day, relative to the system timezone.
|
|
26
|
+
*/
|
|
27
|
+
SYSTEM_MINUTE_OF_DAY = 5
|
|
24
28
|
}
|
|
25
29
|
export declare function dbxDateTimeInputValueParseFactory(mode: DbxDateTimeValueMode, timezoneInstance: Maybe<DateTimezoneUtcNormalInstance>): (date: Maybe<Date | string | number>) => Maybe<Date>;
|
|
26
30
|
export declare function dbxDateTimeOutputValueFactory(mode: DbxDateTimeValueMode, timezoneInstance: Maybe<DateTimezoneUtcNormalInstance>): (date: Maybe<Date>) => Maybe<Date | string | number>;
|
package/mapbox/package.json
CHANGED