@dereekb/dbx-form 10.1.4 → 10.1.6
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/calendar/lib/calendar.schedule.selection.days.component.d.ts +2 -3
- package/esm2022/calendar/lib/calendar.schedule.selection.days.component.mjs +1 -1
- package/esm2022/calendar/lib/calendar.schedule.selection.store.mjs +1 -1
- package/esm2022/lib/formly/field/selection/sourceselect/sourceselect.field.component.mjs +1 -1
- package/esm2022/lib/formly/field/value/date/datetime.field.component.mjs +18 -9
- package/fesm2022/dereekb-dbx-form-calendar.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-form.mjs +17 -8
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -1
- package/lib/formly/field/selection/sourceselect/sourceselect.field.component.d.ts +2 -3
- package/lib/formly/field/value/date/datetime.field.component.d.ts +1 -1
- package/mapbox/package.json +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { LoadingState, LoadingStateWithMaybeSoValue } from '@dereekb/rxjs';
|
|
1
|
+
import { LoadingState, LoadingStateWithMaybeSoValue, WorkUsingContext } from '@dereekb/rxjs';
|
|
2
2
|
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { HandleActionWithContext } from '@dereekb/dbx-core';
|
|
5
4
|
import { PrimativeKey } from '@dereekb/util';
|
|
6
5
|
import { FieldType, FormlyFieldProps } from '@ngx-formly/material/form-field';
|
|
7
6
|
import { FieldTypeConfig } from '@ngx-formly/core';
|
|
@@ -85,7 +84,7 @@ export declare class DbxFormSourceSelectFieldComponent<T extends PrimativeKey =
|
|
|
85
84
|
readonly context: import("@dereekb/rxjs").LoadingStateContextInstance<unknown, LoadingState<SourceSelectDisplayValueGroup<T, M>[]>>;
|
|
86
85
|
ngOnInit(): void;
|
|
87
86
|
ngOnDestroy(): void;
|
|
88
|
-
readonly handleSelectOptions:
|
|
87
|
+
readonly handleSelectOptions: WorkUsingContext<unknown>;
|
|
89
88
|
private addToOpenSourceMap;
|
|
90
89
|
private addToCurrentValue;
|
|
91
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFormSourceSelectFieldComponent<any, any>, never>;
|
|
@@ -200,7 +200,7 @@ export declare class DbxDateTimeFieldComponent extends FieldType<FieldTypeConfig
|
|
|
200
200
|
readonly syncConfigBeforeValue$: Observable<Date | null>;
|
|
201
201
|
readonly syncConfigAfterValue$: Observable<Date | null>;
|
|
202
202
|
readonly rawDateTime$: Observable<Maybe<Date>>;
|
|
203
|
-
readonly
|
|
203
|
+
readonly dateTimePickerConfig$: Observable<Maybe<DbxDateTimePickerConfiguration>>;
|
|
204
204
|
readonly dateInputMin$: Observable<Date | null>;
|
|
205
205
|
readonly dateInputMax$: Observable<Date | null>;
|
|
206
206
|
readonly pickerFilter$: Observable<DecisionFunction<Date | null>>;
|
package/mapbox/package.json
CHANGED