@dereekb/dbx-form 10.1.17 → 10.1.18
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/datetime.field.component.mjs +8 -3
- package/fesm2022/dereekb-dbx-form.mjs +7 -2
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -1
- package/lib/formly/field/value/date/datetime.field.component.d.ts +2 -0
- package/mapbox/package.json +1 -1
- package/package.json +1 -1
|
@@ -156,6 +156,7 @@ export declare class DbxDateTimeFieldComponent extends FieldType<FieldTypeConfig
|
|
|
156
156
|
private _sub;
|
|
157
157
|
private _valueSub;
|
|
158
158
|
private _config;
|
|
159
|
+
readonly latestConfig$: Observable<Maybe<DbxDateTimePickerConfiguration>>;
|
|
159
160
|
private _syncConfigObs;
|
|
160
161
|
private _defaultTimezone;
|
|
161
162
|
private _timeDate;
|
|
@@ -168,6 +169,7 @@ export declare class DbxDateTimeFieldComponent extends FieldType<FieldTypeConfig
|
|
|
168
169
|
readonly formControl$: Observable<AbstractControl<Maybe<Date>, Maybe<Date>>>;
|
|
169
170
|
private _cleared;
|
|
170
171
|
private _updateTime;
|
|
172
|
+
private _configUpdateTimeSync;
|
|
171
173
|
readonly timezone$: Observable<Maybe<TimezoneString>>;
|
|
172
174
|
readonly timezoneInstance$: Observable<Maybe<DateTimezoneUtcNormalInstance>>;
|
|
173
175
|
readonly timeDate$: Observable<Maybe<Date>>;
|
package/mapbox/package.json
CHANGED