@dereekb/dbx-form 9.15.0 → 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, 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,10 +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 = 80;
3503
- const ADDRESS_ZIP_MAX_LENGTH = 20;
3504
3552
  const LABEL_STRING_MAX_LENGTH = 100;
3505
3553
  const SEARCH_STRING_MAX_LENGTH = 100;
3506
3554
  function nameField({ key = 'name', label = 'Name', placeholder = 'John Doe', required = false, minLength, maxLength, attributes } = {}) {
@@ -3531,44 +3579,54 @@ function emailField(config = {}) {
3531
3579
  };
3532
3580
  return emailFieldConfig;
3533
3581
  }
3534
- function cityField({ key = 'city', required = false } = {}) {
3582
+ function cityField(config = {}) {
3583
+ const { key = 'city', placeholder = '', label = 'City', autocomplete = 'city', maxLength = ADDRESS_CITY_MAX_LENGTH, required = false } = config;
3535
3584
  return textField({
3585
+ ...config,
3536
3586
  key,
3537
- label: 'City',
3538
- placeholder: '',
3587
+ placeholder,
3588
+ label,
3589
+ autocomplete,
3539
3590
  required,
3540
- autocomplete: 'city',
3541
- maxLength: ADDRESS_CITY_MAX_LENGTH
3591
+ maxLength
3542
3592
  });
3543
3593
  }
3544
- function stateField({ key = 'state', required = false } = {}) {
3594
+ function stateField(config = {}) {
3595
+ const { asCode = false, pattern = asCode ? US_STATE_CODE_STRING_REGEX : undefined, key = 'state', placeholder = '', label = 'State', autocomplete = 'state', maxLength = asCode ? ADDRESS_STATE_CODE_MAX_LENGTH : ADDRESS_STATE_MAX_LENGTH, required = false } = config;
3545
3596
  return textField({
3597
+ ...config,
3546
3598
  key,
3547
- label: 'State',
3548
- placeholder: '',
3599
+ placeholder,
3600
+ label,
3601
+ pattern,
3602
+ autocomplete,
3549
3603
  required,
3550
- autocomplete: 'state',
3551
- maxLength: ADDRESS_STATE_MAX_LENGTH
3604
+ maxLength
3552
3605
  });
3553
3606
  }
3554
- function countryField({ key = 'country', required = false } = {}) {
3607
+ function countryField(config = {}) {
3608
+ const { key = 'country', placeholder = '', label = 'Country', autocomplete = 'country', maxLength = ADDRESS_COUNTRY_MAX_LENGTH, required = false } = config;
3555
3609
  return textField({
3610
+ ...config,
3556
3611
  key,
3557
- label: 'Country',
3558
- placeholder: '',
3612
+ placeholder,
3613
+ label,
3614
+ autocomplete,
3559
3615
  required,
3560
- autocomplete: 'country',
3561
- maxLength: ADDRESS_COUNTRY_MAX_LENGTH
3616
+ maxLength
3562
3617
  });
3563
3618
  }
3564
- function zipCodeField({ key = 'zip', required = false } = {}) {
3619
+ function zipCodeField(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;
3565
3621
  return textField({
3622
+ ...config,
3566
3623
  key,
3567
- label: 'Zip Code',
3568
- placeholder: '',
3624
+ placeholder,
3625
+ label,
3626
+ pattern,
3627
+ autocomplete,
3569
3628
  required,
3570
- autocomplete: 'postal-code',
3571
- maxLength: ADDRESS_ZIP_MAX_LENGTH
3629
+ maxLength
3572
3630
  });
3573
3631
  }
3574
3632
  const DEFAULT_LAT_LNG_TEXT_FIELD_PLACEHOLDER = '12.345,-67.8910';
@@ -3591,54 +3649,62 @@ function latLngTextField({ key = 'latLng' } = {}) {
3591
3649
  return field;
3592
3650
  }
3593
3651
 
3594
- const ADDRESS_LINE_MAX_LENGTH = 100;
3595
- function addressFormlyFields() {
3596
- return [
3597
- textField({
3598
- key: 'line1',
3599
- label: 'Line 1',
3600
- placeholder: '',
3601
- required: false,
3602
- autocomplete: 'address-line1',
3603
- maxLength: ADDRESS_LINE_MAX_LENGTH
3604
- }),
3605
- textField({
3606
- key: 'line2',
3607
- label: 'Line 2',
3608
- placeholder: '',
3609
- required: false,
3610
- autocomplete: 'address-line2',
3611
- maxLength: ADDRESS_LINE_MAX_LENGTH
3612
- }),
3613
- flexLayoutWrapper([
3614
- {
3615
- field: cityField({})
3616
- },
3617
- {
3618
- field: stateField({})
3619
- },
3620
- {
3621
- field: zipCodeField({})
3622
- },
3623
- {
3624
- field: countryField({})
3625
- }
3626
- ], { size: 1, relative: true })
3652
+ function addressLineField(config = {}) {
3653
+ const { line = 1 } = config;
3654
+ const lineCode = Math.max(1, line); // minimum of line 1
3655
+ const { key = `line${lineCode}`, placeholder = '', label = line ? `Line ${line}` : 'Street', autocomplete = `address-line${lineCode}`, maxLength = ADDRESS_LINE_MAX_LENGTH, required = false } = config;
3656
+ return textField({
3657
+ ...config,
3658
+ key,
3659
+ placeholder,
3660
+ label,
3661
+ autocomplete,
3662
+ required,
3663
+ maxLength
3664
+ });
3665
+ }
3666
+ function addressFormlyFields(config = {}) {
3667
+ const { requiredFields = true, includeLine2 = true, includeCountry = true } = config;
3668
+ const singleLineFields = [
3669
+ {
3670
+ field: cityField({ required: requiredFields, ...config.cityField })
3671
+ },
3672
+ {
3673
+ field: stateField({ required: requiredFields, ...config.stateField })
3674
+ },
3675
+ {
3676
+ field: zipCodeField({ required: requiredFields, ...config.zipCodeField })
3677
+ }
3627
3678
  ];
3679
+ if (includeCountry) {
3680
+ singleLineFields.push({
3681
+ field: countryField({ required: requiredFields, ...config.countryField })
3682
+ });
3683
+ }
3684
+ let lines;
3685
+ if (includeLine2) {
3686
+ lines = [addressLineField({ required: requiredFields, ...config.line1Field, line: 1 }), addressLineField({ ...config.line2Field, line: 2 })];
3687
+ }
3688
+ else {
3689
+ lines = [addressLineField({ required: requiredFields, ...config.line1Field, line: 0 })];
3690
+ }
3691
+ return [...lines, flexLayoutWrapper(singleLineFields, { size: 1, relative: true })];
3628
3692
  }
3629
- function addressField({ key = 'address', required = false } = {}) {
3630
- return {
3693
+ function addressField(config = {}) {
3694
+ const { key = 'address', header = 'Address', hint, required = false } = config;
3695
+ return sectionWrapper({
3696
+ ...config,
3631
3697
  key,
3632
- wrappers: ['section'],
3633
- props: {
3634
- label: 'Address',
3635
- placeholder: '',
3636
- required
3637
- },
3638
- fieldGroup: addressFormlyFields()
3639
- };
3698
+ fieldGroup: addressFormlyFields(config),
3699
+ required
3700
+ }, {
3701
+ ...config,
3702
+ header,
3703
+ hint
3704
+ });
3640
3705
  }
3641
- function addressListField({ key = 'addresses', required = false, maxAddresses = 6 } = {}) {
3706
+ function addressListField(config = {}) {
3707
+ const { key = 'addresses', required = false, maxAddresses = 6 } = config;
3642
3708
  return repeatArrayField({
3643
3709
  key,
3644
3710
  required,
@@ -3647,7 +3713,7 @@ function addressListField({ key = 'addresses', required = false, maxAddresses =
3647
3713
  addText: 'Add Address',
3648
3714
  removeText: 'Remove Address',
3649
3715
  maxLength: maxAddresses,
3650
- repeatFieldGroup: addressFormlyFields()
3716
+ repeatFieldGroup: addressFormlyFields(config)
3651
3717
  });
3652
3718
  }
3653
3719
 
@@ -4314,5 +4380,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
4314
4380
  * Generated bundle index. Do not edit.
4315
4381
  */
4316
4382
 
4317
- export { ADDRESS_CITY_MAX_LENGTH, ADDRESS_COUNTRY_MAX_LENGTH, ADDRESS_LINE_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, 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 };
4318
4384
  //# sourceMappingURL=dereekb-dbx-form.mjs.map