@dereekb/dbx-form 9.15.1 → 9.15.3

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
 
@@ -2878,6 +2879,51 @@ var DbxDateTimeFieldTimeMode;
2878
2879
  */
2879
2880
  DbxDateTimeFieldTimeMode["NONE"] = "none";
2880
2881
  })(DbxDateTimeFieldTimeMode || (DbxDateTimeFieldTimeMode = {}));
2882
+ var DbxDateTimeValueMode;
2883
+ (function (DbxDateTimeValueMode) {
2884
+ /**
2885
+ * Value is returned/parsed as a Date.
2886
+ */
2887
+ DbxDateTimeValueMode[DbxDateTimeValueMode["DATE"] = 0] = "DATE";
2888
+ /**
2889
+ * Value is returned/parsed as an ISO8601DateString
2890
+ */
2891
+ DbxDateTimeValueMode[DbxDateTimeValueMode["DATE_STRING"] = 1] = "DATE_STRING";
2892
+ /**
2893
+ * Value is returned/parsed as an ISO8601DayString, relative to the current timezone.
2894
+ */
2895
+ DbxDateTimeValueMode[DbxDateTimeValueMode["DAY_STRING"] = 2] = "DAY_STRING";
2896
+ })(DbxDateTimeValueMode || (DbxDateTimeValueMode = {}));
2897
+ function dbxDateTimeInputValueParseFactory(mode) {
2898
+ let factory;
2899
+ switch (mode) {
2900
+ case DbxDateTimeValueMode.DAY_STRING:
2901
+ factory = (x) => (typeof x === 'string' ? parseISO8601DayStringToDate(x) : x);
2902
+ break;
2903
+ case DbxDateTimeValueMode.DATE_STRING:
2904
+ case DbxDateTimeValueMode.DATE:
2905
+ default:
2906
+ factory = (x) => (x != null ? toJsDate(x) : x);
2907
+ break;
2908
+ }
2909
+ return factory;
2910
+ }
2911
+ function dbxDateTimeOutputValueFactory(mode) {
2912
+ let factory;
2913
+ switch (mode) {
2914
+ case DbxDateTimeValueMode.DATE_STRING:
2915
+ factory = (x) => (x != null ? formatToISO8601DateString(x) : x);
2916
+ break;
2917
+ case DbxDateTimeValueMode.DAY_STRING:
2918
+ factory = (x) => (x != null ? formatToISO8601DayString(x) : x);
2919
+ break;
2920
+ case DbxDateTimeValueMode.DATE:
2921
+ default:
2922
+ factory = (x) => x;
2923
+ break;
2924
+ }
2925
+ return factory;
2926
+ }
2881
2927
  class DbxDateTimeFieldComponent extends FieldType$1 {
2882
2928
  constructor(cdRef) {
2883
2929
  super();
@@ -2890,7 +2936,7 @@ class DbxDateTimeFieldComponent extends FieldType$1 {
2890
2936
  this._formControlObs = new BehaviorSubject(undefined);
2891
2937
  this.formControl$ = this._formControlObs.pipe(filterMaybe());
2892
2938
  this._updateTime = new Subject();
2893
- this.value$ = this.formControl$.pipe(switchMap((control) => control.valueChanges.pipe(startWith(control.value))), distinctUntilChanged((a, b) => isSameMinute(a, b)), shareReplay(1));
2939
+ 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));
2894
2940
  /**
2895
2941
  * Used to trigger/display visual updates (specifically on timeDistance, etc.).
2896
2942
  */
@@ -2967,13 +3013,18 @@ class DbxDateTimeFieldComponent extends FieldType$1 {
2967
3013
  get timeMode() {
2968
3014
  return this.timeOnly ? DbxDateTimeFieldTimeMode.REQUIRED : this.dateTimeField.timeMode ?? DbxDateTimeFieldTimeMode.REQUIRED;
2969
3015
  }
3016
+ get valueMode() {
3017
+ return this.field.props.valueMode ?? DbxDateTimeValueMode.DATE;
3018
+ }
2970
3019
  get description() {
2971
3020
  return this.field.props.description;
2972
3021
  }
2973
3022
  ngOnInit() {
2974
3023
  this._formControlObs.next(this.formControl);
2975
3024
  this._config.next(this.dateTimeField.getConfigObs?.());
2976
- this._sub.subscription = this.timeOutput$.pipe(skipFirstMaybe()).subscribe((value) => {
3025
+ const valueFactory = dbxDateTimeOutputValueFactory(this.valueMode);
3026
+ this._sub.subscription = this.timeOutput$.pipe(skipFirstMaybe()).subscribe((dateValue) => {
3027
+ const value = valueFactory(dateValue);
2977
3028
  this.formControl.setValue(value);
2978
3029
  this.formControl.markAsDirty();
2979
3030
  this.formControl.markAsTouched();
@@ -3176,7 +3227,7 @@ function timeOnlyField(config = {}) {
3176
3227
  });
3177
3228
  }
3178
3229
  function dateTimeField(config = {}) {
3179
- const { key = 'date', timeMode = DbxDateTimeFieldTimeMode.REQUIRED, fullDayFieldName, getConfigObs, timeOnly = false } = config;
3230
+ const { key = 'date', timeMode = DbxDateTimeFieldTimeMode.REQUIRED, valueMode, fullDayFieldName, getConfigObs, timeOnly = false } = config;
3180
3231
  const fieldConfig = formlyField({
3181
3232
  key,
3182
3233
  type: 'datetime',
@@ -3184,6 +3235,7 @@ function dateTimeField(config = {}) {
3184
3235
  timeMode: timeOnly ? DbxDateTimeFieldTimeMode.REQUIRED : timeMode,
3185
3236
  fullDayFieldName,
3186
3237
  getConfigObs,
3238
+ valueMode,
3187
3239
  timeOnly
3188
3240
  })
3189
3241
  });
@@ -3497,11 +3549,6 @@ function phoneListField(repeatConfig = {}) {
3497
3549
  }
3498
3550
 
3499
3551
  const PHONE_LABEL_MAX_LENGTH = 100;
3500
- const ADDRESS_COUNTRY_MAX_LENGTH = 80;
3501
- const ADDRESS_CITY_MAX_LENGTH = 80;
3502
- const ADDRESS_STATE_MAX_LENGTH = 30;
3503
- const ADDRESS_STATE_CODE_MAX_LENGTH = 2;
3504
- const ADDRESS_ZIP_MAX_LENGTH = 11;
3505
3552
  const LABEL_STRING_MAX_LENGTH = 100;
3506
3553
  const SEARCH_STRING_MAX_LENGTH = 100;
3507
3554
  function nameField({ key = 'name', label = 'Name', placeholder = 'John Doe', required = false, minLength, maxLength, attributes } = {}) {
@@ -3570,12 +3617,13 @@ function countryField(config = {}) {
3570
3617
  });
3571
3618
  }
3572
3619
  function zipCodeField(config = {}) {
3573
- const { key = 'zip', placeholder = '', label = 'Zip Code', autocomplete = 'postal-code', maxLength = ADDRESS_ZIP_MAX_LENGTH, required = false } = config;
3620
+ const { key = 'zip', placeholder = '', label = 'Zip Code', autocomplete = 'postal-code', pattern = ZIP_CODE_STRING_REGEX, maxLength = ADDRESS_ZIP_MAX_LENGTH, required = false } = config;
3574
3621
  return textField({
3575
3622
  ...config,
3576
3623
  key,
3577
3624
  placeholder,
3578
3625
  label,
3626
+ pattern,
3579
3627
  autocomplete,
3580
3628
  required,
3581
3629
  maxLength
@@ -3601,10 +3649,9 @@ function latLngTextField({ key = 'latLng' } = {}) {
3601
3649
  return field;
3602
3650
  }
3603
3651
 
3604
- const ADDRESS_LINE_MAX_LENGTH = 100;
3605
3652
  function addressLineField(config = {}) {
3606
3653
  const { line = 1 } = config;
3607
- const lineCode = Math.min(1, line);
3654
+ const lineCode = Math.max(1, line); // minimum of line 1
3608
3655
  const { key = `line${lineCode}`, placeholder = '', label = line ? `Line ${line}` : 'Street', autocomplete = `address-line${lineCode}`, maxLength = ADDRESS_LINE_MAX_LENGTH, required = false } = config;
3609
3656
  return textField({
3610
3657
  ...config,
@@ -3617,29 +3664,29 @@ function addressLineField(config = {}) {
3617
3664
  });
3618
3665
  }
3619
3666
  function addressFormlyFields(config = {}) {
3620
- const { includeLine2 = true, includeCountry = true } = config;
3667
+ const { requiredFields = true, includeLine2 = true, includeCountry = true } = config;
3621
3668
  const singleLineFields = [
3622
3669
  {
3623
- field: cityField(config.cityField)
3670
+ field: cityField({ required: requiredFields, ...config.cityField })
3624
3671
  },
3625
3672
  {
3626
- field: stateField(config.stateField)
3673
+ field: stateField({ required: requiredFields, ...config.stateField })
3627
3674
  },
3628
3675
  {
3629
- field: zipCodeField(config.zipCodeField)
3676
+ field: zipCodeField({ required: requiredFields, ...config.zipCodeField })
3630
3677
  }
3631
3678
  ];
3632
3679
  if (includeCountry) {
3633
3680
  singleLineFields.push({
3634
- field: countryField(config.countryField)
3681
+ field: countryField({ required: requiredFields, ...config.countryField })
3635
3682
  });
3636
3683
  }
3637
3684
  let lines;
3638
3685
  if (includeLine2) {
3639
- lines = [addressLineField({ ...config.line1Field, line: 1 }), addressLineField({ ...config.line2Field, line: 2 })];
3686
+ lines = [addressLineField({ required: requiredFields, ...config.line1Field, line: 1 }), addressLineField({ ...config.line2Field, line: 2 })];
3640
3687
  }
3641
3688
  else {
3642
- lines = [addressLineField({ ...config.line1Field, line: 0 })];
3689
+ lines = [addressLineField({ required: requiredFields, ...config.line1Field, line: 0 })];
3643
3690
  }
3644
3691
  return [...lines, flexLayoutWrapper(singleLineFields, { size: 1, relative: true })];
3645
3692
  }
@@ -4333,5 +4380,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
4333
4380
  * Generated bundle index. Do not edit.
4334
4381
  */
4335
4382
 
4336
- 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 };
4383
+ 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 };
4337
4384
  //# sourceMappingURL=dereekb-dbx-form.mjs.map