@dereekb/dbx-form 10.1.24 → 10.1.26
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/fixeddaterange.field.component.mjs +35 -4
- package/fesm2022/dereekb-dbx-form.mjs +34 -3
- package/fesm2022/dereekb-dbx-form.mjs.map +1 -1
- package/lib/formly/field/value/date/fixeddaterange.field.component.d.ts +1 -1
- package/mapbox/package.json +1 -1
- package/package.json +1 -1
|
@@ -58,7 +58,7 @@ export interface DbxFixedDateRangeFieldProps extends FormlyFieldProps {
|
|
|
58
58
|
*/
|
|
59
59
|
showRangeInput?: boolean;
|
|
60
60
|
}
|
|
61
|
-
export type FixedDateRangeScanType = 'start' | 'end';
|
|
61
|
+
export type FixedDateRangeScanType = 'start' | 'end' | 'startRepeat';
|
|
62
62
|
export interface FixedDateRangeScan {
|
|
63
63
|
/**
|
|
64
64
|
* Picked the start or end of the range on the last pick.
|
package/mapbox/package.json
CHANGED