@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
 
@@ -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,10 +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 = 80;
3411
- const ADDRESS_ZIP_MAX_LENGTH = 20;
3412
3461
  const LABEL_STRING_MAX_LENGTH = 100;
3413
3462
  const SEARCH_STRING_MAX_LENGTH = 100;
3414
3463
  function nameField({ key = 'name', label = 'Name', placeholder = 'John Doe', required = false, minLength, maxLength, attributes } = {}) {
@@ -3435,45 +3484,43 @@ function emailField(config = {}) {
3435
3484
  };
3436
3485
  return emailFieldConfig;
3437
3486
  }
3438
- function cityField({ key = 'city', required = false } = {}) {
3439
- return textField({
3440
- key,
3441
- label: 'City',
3442
- placeholder: '',
3487
+ function cityField(config = {}) {
3488
+ const { key = 'city', placeholder = '', label = 'City', autocomplete = 'city', maxLength = ADDRESS_CITY_MAX_LENGTH, required = false } = config;
3489
+ return textField(Object.assign(Object.assign({}, config), { key,
3490
+ placeholder,
3491
+ label,
3492
+ autocomplete,
3443
3493
  required,
3444
- autocomplete: 'city',
3445
- maxLength: ADDRESS_CITY_MAX_LENGTH
3446
- });
3494
+ maxLength }));
3447
3495
  }
3448
- function stateField({ key = 'state', required = false } = {}) {
3449
- return textField({
3450
- key,
3451
- label: 'State',
3452
- placeholder: '',
3496
+ function stateField(config = {}) {
3497
+ 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;
3498
+ return textField(Object.assign(Object.assign({}, config), { key,
3499
+ placeholder,
3500
+ label,
3501
+ pattern,
3502
+ autocomplete,
3453
3503
  required,
3454
- autocomplete: 'state',
3455
- maxLength: ADDRESS_STATE_MAX_LENGTH
3456
- });
3504
+ maxLength }));
3457
3505
  }
3458
- function countryField({ key = 'country', required = false } = {}) {
3459
- return textField({
3460
- key,
3461
- label: 'Country',
3462
- placeholder: '',
3506
+ function countryField(config = {}) {
3507
+ const { key = 'country', placeholder = '', label = 'Country', autocomplete = 'country', maxLength = ADDRESS_COUNTRY_MAX_LENGTH, required = false } = config;
3508
+ return textField(Object.assign(Object.assign({}, config), { key,
3509
+ placeholder,
3510
+ label,
3511
+ autocomplete,
3463
3512
  required,
3464
- autocomplete: 'country',
3465
- maxLength: ADDRESS_COUNTRY_MAX_LENGTH
3466
- });
3513
+ maxLength }));
3467
3514
  }
3468
- function zipCodeField({ key = 'zip', required = false } = {}) {
3469
- return textField({
3470
- key,
3471
- label: 'Zip Code',
3472
- placeholder: '',
3515
+ function zipCodeField(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;
3517
+ return textField(Object.assign(Object.assign({}, config), { key,
3518
+ placeholder,
3519
+ label,
3520
+ pattern,
3521
+ autocomplete,
3473
3522
  required,
3474
- autocomplete: 'postal-code',
3475
- maxLength: ADDRESS_ZIP_MAX_LENGTH
3476
- });
3523
+ maxLength }));
3477
3524
  }
3478
3525
  const DEFAULT_LAT_LNG_TEXT_FIELD_PLACEHOLDER = '12.345,-67.8910';
3479
3526
  const DEFAULT_LAT_LNG_TEXT_FIELD_PATTERN_MESSAGE = `Invalid/unknown coordinates`;
@@ -3492,54 +3539,51 @@ function latLngTextField({ key = 'latLng' } = {}) {
3492
3539
  return field;
3493
3540
  }
3494
3541
 
3495
- const ADDRESS_LINE_MAX_LENGTH = 100;
3496
- function addressFormlyFields() {
3497
- return [
3498
- textField({
3499
- key: 'line1',
3500
- label: 'Line 1',
3501
- placeholder: '',
3502
- required: false,
3503
- autocomplete: 'address-line1',
3504
- maxLength: ADDRESS_LINE_MAX_LENGTH
3505
- }),
3506
- textField({
3507
- key: 'line2',
3508
- label: 'Line 2',
3509
- placeholder: '',
3510
- required: false,
3511
- autocomplete: 'address-line2',
3512
- maxLength: ADDRESS_LINE_MAX_LENGTH
3513
- }),
3514
- flexLayoutWrapper([
3515
- {
3516
- field: cityField({})
3517
- },
3518
- {
3519
- field: stateField({})
3520
- },
3521
- {
3522
- field: zipCodeField({})
3523
- },
3524
- {
3525
- field: countryField({})
3526
- }
3527
- ], { size: 1, relative: true })
3528
- ];
3542
+ function addressLineField(config = {}) {
3543
+ const { line = 1 } = config;
3544
+ const lineCode = Math.max(1, line); // minimum of line 1
3545
+ const { key = `line${lineCode}`, placeholder = '', label = line ? `Line ${line}` : 'Street', autocomplete = `address-line${lineCode}`, maxLength = ADDRESS_LINE_MAX_LENGTH, required = false } = config;
3546
+ return textField(Object.assign(Object.assign({}, config), { key,
3547
+ placeholder,
3548
+ label,
3549
+ autocomplete,
3550
+ required,
3551
+ maxLength }));
3529
3552
  }
3530
- function addressField({ key = 'address', required = false } = {}) {
3531
- return {
3532
- key,
3533
- wrappers: ['section'],
3534
- props: {
3535
- label: 'Address',
3536
- placeholder: '',
3537
- required
3553
+ function addressFormlyFields(config = {}) {
3554
+ const { requiredFields = true, includeLine2 = true, includeCountry = true } = config;
3555
+ const singleLineFields = [
3556
+ {
3557
+ field: cityField(Object.assign({ required: requiredFields }, config.cityField))
3538
3558
  },
3539
- fieldGroup: addressFormlyFields()
3540
- };
3559
+ {
3560
+ field: stateField(Object.assign({ required: requiredFields }, config.stateField))
3561
+ },
3562
+ {
3563
+ field: zipCodeField(Object.assign({ required: requiredFields }, config.zipCodeField))
3564
+ }
3565
+ ];
3566
+ if (includeCountry) {
3567
+ singleLineFields.push({
3568
+ field: countryField(Object.assign({ required: requiredFields }, config.countryField))
3569
+ });
3570
+ }
3571
+ let lines;
3572
+ if (includeLine2) {
3573
+ lines = [addressLineField(Object.assign(Object.assign({ required: requiredFields }, config.line1Field), { line: 1 })), addressLineField(Object.assign(Object.assign({}, config.line2Field), { line: 2 }))];
3574
+ }
3575
+ else {
3576
+ lines = [addressLineField(Object.assign(Object.assign({ required: requiredFields }, config.line1Field), { line: 0 }))];
3577
+ }
3578
+ return [...lines, flexLayoutWrapper(singleLineFields, { size: 1, relative: true })];
3579
+ }
3580
+ function addressField(config = {}) {
3581
+ const { key = 'address', header = 'Address', hint, required = false } = config;
3582
+ return sectionWrapper(Object.assign(Object.assign({}, config), { key, fieldGroup: addressFormlyFields(config), required }), Object.assign(Object.assign({}, config), { header,
3583
+ hint }));
3541
3584
  }
3542
- function addressListField({ key = 'addresses', required = false, maxAddresses = 6 } = {}) {
3585
+ function addressListField(config = {}) {
3586
+ const { key = 'addresses', required = false, maxAddresses = 6 } = config;
3543
3587
  return repeatArrayField({
3544
3588
  key,
3545
3589
  required,
@@ -3548,7 +3592,7 @@ function addressListField({ key = 'addresses', required = false, maxAddresses =
3548
3592
  addText: 'Add Address',
3549
3593
  removeText: 'Remove Address',
3550
3594
  maxLength: maxAddresses,
3551
- repeatFieldGroup: addressFormlyFields()
3595
+ repeatFieldGroup: addressFormlyFields(config)
3552
3596
  });
3553
3597
  }
3554
3598
 
@@ -4192,5 +4236,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
4192
4236
  * Generated bundle index. Do not edit.
4193
4237
  */
4194
4238
 
4195
- 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 };
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 };
4196
4240
  //# sourceMappingURL=dereekb-dbx-form.mjs.map