@dereekb/dbx-form 9.15.1 → 9.15.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.
@@ -26,7 +26,7 @@ import * as i1$2 from '@angular/material/button';
26
26
  import { MatButtonModule } from '@angular/material/button';
27
27
  import * as i3$3 from '@angular/flex-layout/flex';
28
28
  import { FlexLayoutModule } from '@angular/flex-layout';
29
- import { objectIsEmpty, mergeObjectsFunction, filterFromPOJOFunction, mergeObjects, filterFromPOJO, asArray, objectHasNoKeys, addPlusPrefixToNumber, convertMaybeToArray, makeValuesGroupMap, findUnique, searchStringFilterFunction, caseInsensitiveFilterByIndexOfDecisionFactory, mergeIntoArray, lastValue, separateValues, arrayToMap, getValueFromGetter, dateFromLogicalDate, WEBSITE_DOMAIN_NAME_REGEX, KeyValueTypleValueFilter, valuesFromPOJO, allObjectsAreEqual, isNumberDivisibleBy, nearestDivisibleValues, US_STATE_CODE_STRING_REGEX, LAT_LNG_PATTERN, capitalizeFirstLetter, BooleanStringKeyArrayUtilityInstance } from '@dereekb/util';
29
+ import { objectIsEmpty, mergeObjectsFunction, filterFromPOJOFunction, mergeObjects, filterFromPOJO, asArray, objectHasNoKeys, addPlusPrefixToNumber, convertMaybeToArray, makeValuesGroupMap, findUnique, searchStringFilterFunction, caseInsensitiveFilterByIndexOfDecisionFactory, mergeIntoArray, lastValue, separateValues, arrayToMap, getValueFromGetter, dateFromLogicalDate, WEBSITE_DOMAIN_NAME_REGEX, KeyValueTypleValueFilter, valuesFromPOJO, allObjectsAreEqual, isNumberDivisibleBy, nearestDivisibleValues, US_STATE_CODE_STRING_REGEX, ZIP_CODE_STRING_REGEX, LAT_LNG_PATTERN, capitalizeFirstLetter, BooleanStringKeyArrayUtilityInstance } from '@dereekb/util';
30
30
  import * as i2$1 from '@angular/material/slide-toggle';
31
31
  import { MatSlideToggleModule } from '@angular/material/slide-toggle';
32
32
  import * as i2$2 from '@angular/flex-layout/extended';
@@ -44,7 +44,7 @@ import { MatListModule } from '@angular/material/list';
44
44
  import * as i3$4 from '@angular/material/form-field';
45
45
  import { MatFormFieldModule } from '@angular/material/form-field';
46
46
  import { ENTER, COMMA } from '@angular/cdk/keycodes';
47
- import { skipUntilTimeElapsedAfterLastEmission, guessCurrentTimezone, toReadableTimeString, utcDayForDate, readableTimeStringToDate, DateTimeMinuteInstance, toLocalReadableTimeString, allTimezoneInfos, timezoneInfoForSystem, searchTimezoneInfos } from '@dereekb/date';
47
+ import { skipUntilTimeElapsedAfterLastEmission, toJsDate, parseISO8601DayStringToDate, formatToISO8601DayString, formatToISO8601DateString, guessCurrentTimezone, toReadableTimeString, utcDayForDate, readableTimeStringToDate, DateTimeMinuteInstance, toLocalReadableTimeString, allTimezoneInfos, timezoneInfoForSystem, searchTimezoneInfos } from '@dereekb/date';
48
48
  import * as i4$4 from 'ngx-editor';
49
49
  import { Editor, NgxEditorModule } from 'ngx-editor';
50
50
  import * as i4$5 from '@angular/cdk/drag-drop';
@@ -56,6 +56,7 @@ import { MatMenuModule } from '@angular/material/menu';
56
56
  import * as i2$3 from 'ngx-mat-intl-tel-input';
57
57
  import { NgxMatIntlTelInputComponent } from 'ngx-mat-intl-tel-input';
58
58
  import { FormlyMatFormFieldModule } from '@ngx-formly/material/form-field';
59
+ import { ADDRESS_CITY_MAX_LENGTH, ADDRESS_STATE_CODE_MAX_LENGTH, ADDRESS_STATE_MAX_LENGTH, ADDRESS_COUNTRY_MAX_LENGTH, ADDRESS_ZIP_MAX_LENGTH, ADDRESS_LINE_MAX_LENGTH } from '@dereekb/model';
59
60
  import { cloneDeep } from 'lodash';
60
61
  import { FormlyMatToggleModule } from '@ngx-formly/material/toggle';
61
62
 
@@ -2821,6 +2822,51 @@ var DbxDateTimeFieldTimeMode;
2821
2822
  */
2822
2823
  DbxDateTimeFieldTimeMode["NONE"] = "none";
2823
2824
  })(DbxDateTimeFieldTimeMode || (DbxDateTimeFieldTimeMode = {}));
2825
+ var DbxDateTimeValueMode;
2826
+ (function (DbxDateTimeValueMode) {
2827
+ /**
2828
+ * Value is returned/parsed as a Date.
2829
+ */
2830
+ DbxDateTimeValueMode[DbxDateTimeValueMode["DATE"] = 0] = "DATE";
2831
+ /**
2832
+ * Value is returned/parsed as an ISO8601DateString
2833
+ */
2834
+ DbxDateTimeValueMode[DbxDateTimeValueMode["DATE_STRING"] = 1] = "DATE_STRING";
2835
+ /**
2836
+ * Value is returned/parsed as an ISO8601DayString, relative to the current timezone.
2837
+ */
2838
+ DbxDateTimeValueMode[DbxDateTimeValueMode["DAY_STRING"] = 2] = "DAY_STRING";
2839
+ })(DbxDateTimeValueMode || (DbxDateTimeValueMode = {}));
2840
+ function dbxDateTimeInputValueParseFactory(mode) {
2841
+ let factory;
2842
+ switch (mode) {
2843
+ case DbxDateTimeValueMode.DAY_STRING:
2844
+ factory = (x) => (typeof x === 'string' ? parseISO8601DayStringToDate(x) : x);
2845
+ break;
2846
+ case DbxDateTimeValueMode.DATE_STRING:
2847
+ case DbxDateTimeValueMode.DATE:
2848
+ default:
2849
+ factory = (x) => (x != null ? toJsDate(x) : x);
2850
+ break;
2851
+ }
2852
+ return factory;
2853
+ }
2854
+ function dbxDateTimeOutputValueFactory(mode) {
2855
+ let factory;
2856
+ switch (mode) {
2857
+ case DbxDateTimeValueMode.DATE_STRING:
2858
+ factory = (x) => (x != null ? formatToISO8601DateString(x) : x);
2859
+ break;
2860
+ case DbxDateTimeValueMode.DAY_STRING:
2861
+ factory = (x) => (x != null ? formatToISO8601DayString(x) : x);
2862
+ break;
2863
+ case DbxDateTimeValueMode.DATE:
2864
+ default:
2865
+ factory = (x) => x;
2866
+ break;
2867
+ }
2868
+ return factory;
2869
+ }
2824
2870
  class DbxDateTimeFieldComponent extends FieldType$1 {
2825
2871
  constructor(cdRef) {
2826
2872
  super();
@@ -2833,7 +2879,7 @@ class DbxDateTimeFieldComponent extends FieldType$1 {
2833
2879
  this._formControlObs = new BehaviorSubject(undefined);
2834
2880
  this.formControl$ = this._formControlObs.pipe(filterMaybe());
2835
2881
  this._updateTime = new Subject();
2836
- this.value$ = this.formControl$.pipe(switchMap((control) => control.valueChanges.pipe(startWith(control.value))), distinctUntilChanged((a, b) => isSameMinute(a, b)), shareReplay(1));
2882
+ this.value$ = this.formControl$.pipe(switchMap((control) => control.valueChanges.pipe(startWith(control.value), map(dbxDateTimeInputValueParseFactory(this.valueMode)))), distinctUntilChanged((a, b) => (a != null && b != null ? isSameMinute(a, b) : a === b)), shareReplay(1));
2837
2883
  /**
2838
2884
  * Used to trigger/display visual updates (specifically on timeDistance, etc.).
2839
2885
  */
@@ -2908,6 +2954,10 @@ class DbxDateTimeFieldComponent extends FieldType$1 {
2908
2954
  var _a;
2909
2955
  return this.timeOnly ? DbxDateTimeFieldTimeMode.REQUIRED : (_a = this.dateTimeField.timeMode) !== null && _a !== void 0 ? _a : DbxDateTimeFieldTimeMode.REQUIRED;
2910
2956
  }
2957
+ get valueMode() {
2958
+ var _a;
2959
+ return (_a = this.field.props.valueMode) !== null && _a !== void 0 ? _a : DbxDateTimeValueMode.DATE;
2960
+ }
2911
2961
  get description() {
2912
2962
  return this.field.props.description;
2913
2963
  }
@@ -2915,7 +2965,9 @@ class DbxDateTimeFieldComponent extends FieldType$1 {
2915
2965
  var _a, _b;
2916
2966
  this._formControlObs.next(this.formControl);
2917
2967
  this._config.next((_b = (_a = this.dateTimeField).getConfigObs) === null || _b === void 0 ? void 0 : _b.call(_a));
2918
- this._sub.subscription = this.timeOutput$.pipe(skipFirstMaybe()).subscribe((value) => {
2968
+ const valueFactory = dbxDateTimeOutputValueFactory(this.valueMode);
2969
+ this._sub.subscription = this.timeOutput$.pipe(skipFirstMaybe()).subscribe((dateValue) => {
2970
+ const value = valueFactory(dateValue);
2919
2971
  this.formControl.setValue(value);
2920
2972
  this.formControl.markAsDirty();
2921
2973
  this.formControl.markAsTouched();
@@ -3115,11 +3167,12 @@ function timeOnlyField(config = {}) {
3115
3167
  return dateTimeField(Object.assign(Object.assign({}, config), { timeMode: DbxDateTimeFieldTimeMode.REQUIRED, timeOnly: true }));
3116
3168
  }
3117
3169
  function dateTimeField(config = {}) {
3118
- const { key = 'date', timeMode = DbxDateTimeFieldTimeMode.REQUIRED, fullDayFieldName, getConfigObs, timeOnly = false } = config;
3170
+ const { key = 'date', timeMode = DbxDateTimeFieldTimeMode.REQUIRED, valueMode, fullDayFieldName, getConfigObs, timeOnly = false } = config;
3119
3171
  const fieldConfig = formlyField(Object.assign({ key, type: 'datetime' }, propsForFieldConfig(config, {
3120
3172
  timeMode: timeOnly ? DbxDateTimeFieldTimeMode.REQUIRED : timeMode,
3121
3173
  fullDayFieldName,
3122
3174
  getConfigObs,
3175
+ valueMode,
3123
3176
  timeOnly
3124
3177
  })));
3125
3178
  return styleWrapper(fieldConfig, {
@@ -3405,11 +3458,6 @@ function phoneListField(repeatConfig = {}) {
3405
3458
  }
3406
3459
 
3407
3460
  const PHONE_LABEL_MAX_LENGTH = 100;
3408
- const ADDRESS_COUNTRY_MAX_LENGTH = 80;
3409
- const ADDRESS_CITY_MAX_LENGTH = 80;
3410
- const ADDRESS_STATE_MAX_LENGTH = 30;
3411
- const ADDRESS_STATE_CODE_MAX_LENGTH = 2;
3412
- const ADDRESS_ZIP_MAX_LENGTH = 11;
3413
3461
  const LABEL_STRING_MAX_LENGTH = 100;
3414
3462
  const SEARCH_STRING_MAX_LENGTH = 100;
3415
3463
  function nameField({ key = 'name', label = 'Name', placeholder = 'John Doe', required = false, minLength, maxLength, attributes } = {}) {
@@ -3465,10 +3513,11 @@ function countryField(config = {}) {
3465
3513
  maxLength }));
3466
3514
  }
3467
3515
  function zipCodeField(config = {}) {
3468
- const { key = 'zip', placeholder = '', label = 'Zip Code', autocomplete = 'postal-code', maxLength = ADDRESS_ZIP_MAX_LENGTH, required = false } = config;
3516
+ const { key = 'zip', placeholder = '', label = 'Zip Code', autocomplete = 'postal-code', pattern = ZIP_CODE_STRING_REGEX, maxLength = ADDRESS_ZIP_MAX_LENGTH, required = false } = config;
3469
3517
  return textField(Object.assign(Object.assign({}, config), { key,
3470
3518
  placeholder,
3471
3519
  label,
3520
+ pattern,
3472
3521
  autocomplete,
3473
3522
  required,
3474
3523
  maxLength }));
@@ -3490,10 +3539,9 @@ function latLngTextField({ key = 'latLng' } = {}) {
3490
3539
  return field;
3491
3540
  }
3492
3541
 
3493
- const ADDRESS_LINE_MAX_LENGTH = 100;
3494
3542
  function addressLineField(config = {}) {
3495
3543
  const { line = 1 } = config;
3496
- const lineCode = Math.min(1, line);
3544
+ const lineCode = Math.max(1, line); // minimum of line 1
3497
3545
  const { key = `line${lineCode}`, placeholder = '', label = line ? `Line ${line}` : 'Street', autocomplete = `address-line${lineCode}`, maxLength = ADDRESS_LINE_MAX_LENGTH, required = false } = config;
3498
3546
  return textField(Object.assign(Object.assign({}, config), { key,
3499
3547
  placeholder,
@@ -3503,29 +3551,29 @@ function addressLineField(config = {}) {
3503
3551
  maxLength }));
3504
3552
  }
3505
3553
  function addressFormlyFields(config = {}) {
3506
- const { includeLine2 = true, includeCountry = true } = config;
3554
+ const { requiredFields = true, includeLine2 = true, includeCountry = true } = config;
3507
3555
  const singleLineFields = [
3508
3556
  {
3509
- field: cityField(config.cityField)
3557
+ field: cityField(Object.assign({ required: requiredFields }, config.cityField))
3510
3558
  },
3511
3559
  {
3512
- field: stateField(config.stateField)
3560
+ field: stateField(Object.assign({ required: requiredFields }, config.stateField))
3513
3561
  },
3514
3562
  {
3515
- field: zipCodeField(config.zipCodeField)
3563
+ field: zipCodeField(Object.assign({ required: requiredFields }, config.zipCodeField))
3516
3564
  }
3517
3565
  ];
3518
3566
  if (includeCountry) {
3519
3567
  singleLineFields.push({
3520
- field: countryField(config.countryField)
3568
+ field: countryField(Object.assign({ required: requiredFields }, config.countryField))
3521
3569
  });
3522
3570
  }
3523
3571
  let lines;
3524
3572
  if (includeLine2) {
3525
- lines = [addressLineField(Object.assign(Object.assign({}, config.line1Field), { line: 1 })), addressLineField(Object.assign(Object.assign({}, config.line2Field), { line: 2 }))];
3573
+ lines = [addressLineField(Object.assign(Object.assign({ required: requiredFields }, config.line1Field), { line: 1 })), addressLineField(Object.assign(Object.assign({}, config.line2Field), { line: 2 }))];
3526
3574
  }
3527
3575
  else {
3528
- lines = [addressLineField(Object.assign(Object.assign({}, config.line1Field), { line: 0 }))];
3576
+ lines = [addressLineField(Object.assign(Object.assign({ required: requiredFields }, config.line1Field), { line: 0 }))];
3529
3577
  }
3530
3578
  return [...lines, flexLayoutWrapper(singleLineFields, { size: 1, relative: true })];
3531
3579
  }
@@ -4188,5 +4236,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
4188
4236
  * Generated bundle index. Do not edit.
4189
4237
  */
4190
4238
 
4191
- export { ADDRESS_CITY_MAX_LENGTH, ADDRESS_COUNTRY_MAX_LENGTH, ADDRESS_LINE_MAX_LENGTH, ADDRESS_STATE_CODE_MAX_LENGTH, ADDRESS_STATE_MAX_LENGTH, ADDRESS_ZIP_MAX_LENGTH, APP_ACTION_FORM_DISABLED_KEY, AUTO_TOUCH_WRAPPER_KEY, AbstractAsyncFormlyFormDirective, AbstractConfigAsyncFormlyFormDirective, AbstractDbxPickableItemFieldDirective, AbstractDbxSearchableFieldDisplayDirective, AbstractDbxSearchableValueFieldDirective, AbstractFormExpandableSectionWrapperDirective, AbstractFormlyFormDirective, AbstractSyncFormlyFormDirective, AutoTouchFieldWrapperComponent, ChecklistItemFieldDataSetBuilder, DBX_SEARCHABLE_FIELD_COMPONENT_DATA_TOKEN, DEFAULT_FORM_DISABLED_KEY, DEFAULT_HAS_VALUE_FN, DEFAULT_LAT_LNG_TEXT_FIELD_PATTERN_MESSAGE, DEFAULT_LAT_LNG_TEXT_FIELD_PLACEHOLDER, DEFAULT_PREFERRED_COUNTRIES, DISPLAY_FOR_TIMEZONE_STRING_VALUE, DbxActionFormDirective, DbxActionFormSafetyDirective, DbxChecklistItemContentComponent, DbxChecklistItemFieldComponent, DbxDateTimeFieldComponent, DbxDateTimeFieldTimeMode, DbxDefaultChecklistItemFieldDisplayComponent, DbxDefaultSearchableFieldDisplayComponent, DbxForm, DbxFormActionModule, DbxFormActionTransitionModule, DbxFormComponentFieldComponent, DbxFormExpandWrapperComponent, DbxFormExtensionModule, DbxFormFlexWrapperComponent, DbxFormFormlyArrayFieldModule, DbxFormFormlyBooleanFieldModule, DbxFormFormlyChecklistItemFieldModule, DbxFormFormlyComponentFieldModule, DbxFormFormlyDateFieldModule, DbxFormFormlyFieldModule, DbxFormFormlyNumberFieldModule, DbxFormFormlyPhoneFieldModule, DbxFormFormlyPickableFieldModule, DbxFormFormlySearchableFieldModule, DbxFormFormlySelectionModule, DbxFormFormlyTextEditorFieldModule, DbxFormFormlyTextFieldModule, DbxFormFormlyValueModule, DbxFormFormlyWrapperModule, DbxFormInfoWrapperComponent, DbxFormIoModule, DbxFormLayoutModule, DbxFormLoadingSourceDirective, DbxFormModule, DbxFormRepeatArrayTypeComponent, DbxFormSectionWrapperComponent, DbxFormSourceDirective, DbxFormSpacerComponent, DbxFormState, DbxFormSubsectionWrapperComponent, DbxFormToggleWrapperComponent, DbxFormValueChangesDirective, DbxFormWorkingWrapperComponent, DbxFormlyContext, DbxFormlyFieldsContextDirective, DbxFormlyFormComponent, DbxFormlyModule, DbxMutableForm, DbxPhoneFieldComponent, DbxPickableChipListFieldComponent, DbxPickableListFieldComponent, DbxPickableListFieldItemListComponent, DbxPickableListFieldItemListViewComponent, DbxPickableListFieldItemListViewItemComponent, DbxSearchableChipFieldComponent, DbxSearchableFieldAutocompleteItemComponent, DbxSearchableTextFieldComponent, DbxTextEditorFieldComponent, EXPANDABLE_WRAPPER_KEY, FIELD_VALUES_ARE_EQUAL_VALIDATION_KEY, FIELD_VALUE_IS_AVAILABLE_ERROR_VALIDATION_KEY, FIELD_VALUE_IS_AVAILABLE_VALIDATION_KEY, FLEX_WRAPPER_KEY, INFO_WRAPPER_KEY, INVALID_PHONE_NUMBER_MESSAGE, IS_DIVISIBLE_BY_VALIDATION_KEY, LABEL_STRING_MAX_LENGTH, MAX_LENGTH_VALIDATION_MESSAGE, MAX_VALIDATION_MESSAGE, MIN_LENGTH_VALIDATION_MESSAGE, MIN_VALIDATION_MESSAGE, PHONE_LABEL_MAX_LENGTH, REQUIRED_VALIDATION_MESSAGE, SEARCH_STRING_MAX_LENGTH, SECTION_WRAPPER_KEY, STYLE_WRAPPER_KEY, SUBSECTION_WRAPPER_KEY, TAKE_NEXT_UPCOMING_TIME_CONFIG_OBS, TOGGLE_WRAPPER_KEY, WORKING_WRAPPER_KEY, addWrapperToFormlyFieldConfig, addressField, addressFormlyFields, addressLineField, addressListField, autoTouchWrapper, checkIsFieldFlexLayoutGroupFieldConfig, checkboxField, checklistItemField, chipTextField, cityField, componentField, countryField, dateTimeField, dbxFormSourceObservable, defaultValidationMessages, disableFormlyFieldAutofillAttributes, emailField, expandWrapper, fieldValueIsAvailableValidator, fieldValuesAreEqualValidator, filterPartialPotentialFieldConfigValuesFromObject, filterPickableItemFieldValuesByLabel, filterPickableItemFieldValuesByLabelFilterFunction, flexLayoutWrapper, formlyField, hiddenField, infoWrapper, isDivisibleBy, isDomain, isInRange, isTruthy, latLngTextField, makeMetaFilterSearchableFieldValueDisplayFn, maxLengthValidationMessage, maxValidationMessage, mergePropsValueObjects, minLengthValidationMessage, minValidationMessage, nameField, numberField, partialPotentialFieldConfigKeys, partialPotentialFieldConfigKeysFilter, phoneAndLabelSectionField, phoneField, phoneListField, pickableItemChipField, pickableItemListField, propsForFieldConfig, propsValueForFieldConfig, provideDbxForm, provideDbxMutableForm, provideFormlyContext, repeatArrayField, searchableChipField, searchableStringChipField, searchableTextField, sectionWrapper, sortPickableItemsByLabel, stateField, styleWrapper, subsectionWrapper, textAreaField, textEditorField, textField, textIsAvailableField, textPasswordField, textPasswordWithVerifyFieldGroup, textVerifyPasswordField, timeOnlyField, timezoneStringField, timezoneStringSearchFunction, toggleField, toggleWrapper, usernamePasswordLoginFields, validatorsForFieldConfig, valueSelectionField, workingWrapper, wrappedPhoneAndLabelField, zipCodeField };
4239
+ export { APP_ACTION_FORM_DISABLED_KEY, AUTO_TOUCH_WRAPPER_KEY, AbstractAsyncFormlyFormDirective, AbstractConfigAsyncFormlyFormDirective, AbstractDbxPickableItemFieldDirective, AbstractDbxSearchableFieldDisplayDirective, AbstractDbxSearchableValueFieldDirective, AbstractFormExpandableSectionWrapperDirective, AbstractFormlyFormDirective, AbstractSyncFormlyFormDirective, AutoTouchFieldWrapperComponent, ChecklistItemFieldDataSetBuilder, DBX_SEARCHABLE_FIELD_COMPONENT_DATA_TOKEN, DEFAULT_FORM_DISABLED_KEY, DEFAULT_HAS_VALUE_FN, DEFAULT_LAT_LNG_TEXT_FIELD_PATTERN_MESSAGE, DEFAULT_LAT_LNG_TEXT_FIELD_PLACEHOLDER, DEFAULT_PREFERRED_COUNTRIES, DISPLAY_FOR_TIMEZONE_STRING_VALUE, DbxActionFormDirective, DbxActionFormSafetyDirective, DbxChecklistItemContentComponent, DbxChecklistItemFieldComponent, DbxDateTimeFieldComponent, DbxDateTimeFieldTimeMode, DbxDateTimeValueMode, DbxDefaultChecklistItemFieldDisplayComponent, DbxDefaultSearchableFieldDisplayComponent, DbxForm, DbxFormActionModule, DbxFormActionTransitionModule, DbxFormComponentFieldComponent, DbxFormExpandWrapperComponent, DbxFormExtensionModule, DbxFormFlexWrapperComponent, DbxFormFormlyArrayFieldModule, DbxFormFormlyBooleanFieldModule, DbxFormFormlyChecklistItemFieldModule, DbxFormFormlyComponentFieldModule, DbxFormFormlyDateFieldModule, DbxFormFormlyFieldModule, DbxFormFormlyNumberFieldModule, DbxFormFormlyPhoneFieldModule, DbxFormFormlyPickableFieldModule, DbxFormFormlySearchableFieldModule, DbxFormFormlySelectionModule, DbxFormFormlyTextEditorFieldModule, DbxFormFormlyTextFieldModule, DbxFormFormlyValueModule, DbxFormFormlyWrapperModule, DbxFormInfoWrapperComponent, DbxFormIoModule, DbxFormLayoutModule, DbxFormLoadingSourceDirective, DbxFormModule, DbxFormRepeatArrayTypeComponent, DbxFormSectionWrapperComponent, DbxFormSourceDirective, DbxFormSpacerComponent, DbxFormState, DbxFormSubsectionWrapperComponent, DbxFormToggleWrapperComponent, DbxFormValueChangesDirective, DbxFormWorkingWrapperComponent, DbxFormlyContext, DbxFormlyFieldsContextDirective, DbxFormlyFormComponent, DbxFormlyModule, DbxMutableForm, DbxPhoneFieldComponent, DbxPickableChipListFieldComponent, DbxPickableListFieldComponent, DbxPickableListFieldItemListComponent, DbxPickableListFieldItemListViewComponent, DbxPickableListFieldItemListViewItemComponent, DbxSearchableChipFieldComponent, DbxSearchableFieldAutocompleteItemComponent, DbxSearchableTextFieldComponent, DbxTextEditorFieldComponent, EXPANDABLE_WRAPPER_KEY, FIELD_VALUES_ARE_EQUAL_VALIDATION_KEY, FIELD_VALUE_IS_AVAILABLE_ERROR_VALIDATION_KEY, FIELD_VALUE_IS_AVAILABLE_VALIDATION_KEY, FLEX_WRAPPER_KEY, INFO_WRAPPER_KEY, INVALID_PHONE_NUMBER_MESSAGE, IS_DIVISIBLE_BY_VALIDATION_KEY, LABEL_STRING_MAX_LENGTH, MAX_LENGTH_VALIDATION_MESSAGE, MAX_VALIDATION_MESSAGE, MIN_LENGTH_VALIDATION_MESSAGE, MIN_VALIDATION_MESSAGE, PHONE_LABEL_MAX_LENGTH, REQUIRED_VALIDATION_MESSAGE, SEARCH_STRING_MAX_LENGTH, SECTION_WRAPPER_KEY, STYLE_WRAPPER_KEY, SUBSECTION_WRAPPER_KEY, TAKE_NEXT_UPCOMING_TIME_CONFIG_OBS, TOGGLE_WRAPPER_KEY, WORKING_WRAPPER_KEY, addWrapperToFormlyFieldConfig, addressField, addressFormlyFields, addressLineField, addressListField, autoTouchWrapper, checkIsFieldFlexLayoutGroupFieldConfig, checkboxField, checklistItemField, chipTextField, cityField, componentField, countryField, dateTimeField, dbxDateTimeInputValueParseFactory, dbxDateTimeOutputValueFactory, dbxFormSourceObservable, defaultValidationMessages, disableFormlyFieldAutofillAttributes, emailField, expandWrapper, fieldValueIsAvailableValidator, fieldValuesAreEqualValidator, filterPartialPotentialFieldConfigValuesFromObject, filterPickableItemFieldValuesByLabel, filterPickableItemFieldValuesByLabelFilterFunction, flexLayoutWrapper, formlyField, hiddenField, infoWrapper, isDivisibleBy, isDomain, isInRange, isTruthy, latLngTextField, makeMetaFilterSearchableFieldValueDisplayFn, maxLengthValidationMessage, maxValidationMessage, mergePropsValueObjects, minLengthValidationMessage, minValidationMessage, nameField, numberField, partialPotentialFieldConfigKeys, partialPotentialFieldConfigKeysFilter, phoneAndLabelSectionField, phoneField, phoneListField, pickableItemChipField, pickableItemListField, propsForFieldConfig, propsValueForFieldConfig, provideDbxForm, provideDbxMutableForm, provideFormlyContext, repeatArrayField, searchableChipField, searchableStringChipField, searchableTextField, sectionWrapper, sortPickableItemsByLabel, stateField, styleWrapper, subsectionWrapper, textAreaField, textEditorField, textField, textIsAvailableField, textPasswordField, textPasswordWithVerifyFieldGroup, textVerifyPasswordField, timeOnlyField, timezoneStringField, timezoneStringSearchFunction, toggleField, toggleWrapper, usernamePasswordLoginFields, validatorsForFieldConfig, valueSelectionField, workingWrapper, wrappedPhoneAndLabelField, zipCodeField };
4192
4240
  //# sourceMappingURL=dereekb-dbx-form.mjs.map