@dereekb/dbx-form 9.14.2 → 9.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/formly/field/value/text/text.additional.field.mjs +34 -24
- package/esm2020/lib/formly/field/value/text/text.address.field.mjs +55 -46
- package/esm2020/lib/formly/field/wrapper/section.wrapper.component.mjs +1 -1
- package/fesm2015/dereekb-dbx-form.mjs +78 -82
- package/fesm2015/dereekb-dbx-form.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-form.mjs +88 -69
- package/fesm2020/dereekb-dbx-form.mjs.map +1 -1
- package/lib/formly/field/value/text/text.additional.field.d.ts +16 -6
- package/lib/formly/field/value/text/text.address.field.d.ts +33 -5
- package/mapbox/package.json +4 -4
- package/package.json +3 -3
|
@@ -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, 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';
|
|
@@ -652,7 +652,7 @@ DbxFormSectionWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
|
652
652
|
<dbx-section [header]="header" [hint]="hint">
|
|
653
653
|
<ng-container #fieldComponent></ng-container>
|
|
654
654
|
</dbx-section>
|
|
655
|
-
`, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxSectionComponent, selector: "dbx-section", inputs: ["
|
|
655
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxSectionComponent, selector: "dbx-section", inputs: ["elevate"] }] });
|
|
656
656
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFormSectionWrapperComponent, decorators: [{
|
|
657
657
|
type: Component,
|
|
658
658
|
args: [{
|
|
@@ -3499,8 +3499,9 @@ function phoneListField(repeatConfig = {}) {
|
|
|
3499
3499
|
const PHONE_LABEL_MAX_LENGTH = 100;
|
|
3500
3500
|
const ADDRESS_COUNTRY_MAX_LENGTH = 80;
|
|
3501
3501
|
const ADDRESS_CITY_MAX_LENGTH = 80;
|
|
3502
|
-
const ADDRESS_STATE_MAX_LENGTH =
|
|
3503
|
-
const
|
|
3502
|
+
const ADDRESS_STATE_MAX_LENGTH = 30;
|
|
3503
|
+
const ADDRESS_STATE_CODE_MAX_LENGTH = 2;
|
|
3504
|
+
const ADDRESS_ZIP_MAX_LENGTH = 11;
|
|
3504
3505
|
const LABEL_STRING_MAX_LENGTH = 100;
|
|
3505
3506
|
const SEARCH_STRING_MAX_LENGTH = 100;
|
|
3506
3507
|
function nameField({ key = 'name', label = 'Name', placeholder = 'John Doe', required = false, minLength, maxLength, attributes } = {}) {
|
|
@@ -3531,44 +3532,53 @@ function emailField(config = {}) {
|
|
|
3531
3532
|
};
|
|
3532
3533
|
return emailFieldConfig;
|
|
3533
3534
|
}
|
|
3534
|
-
function cityField(
|
|
3535
|
+
function cityField(config = {}) {
|
|
3536
|
+
const { key = 'city', placeholder = '', label = 'City', autocomplete = 'city', maxLength = ADDRESS_CITY_MAX_LENGTH, required = false } = config;
|
|
3535
3537
|
return textField({
|
|
3538
|
+
...config,
|
|
3536
3539
|
key,
|
|
3537
|
-
|
|
3538
|
-
|
|
3540
|
+
placeholder,
|
|
3541
|
+
label,
|
|
3542
|
+
autocomplete,
|
|
3539
3543
|
required,
|
|
3540
|
-
|
|
3541
|
-
maxLength: ADDRESS_CITY_MAX_LENGTH
|
|
3544
|
+
maxLength
|
|
3542
3545
|
});
|
|
3543
3546
|
}
|
|
3544
|
-
function stateField(
|
|
3547
|
+
function stateField(config = {}) {
|
|
3548
|
+
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
3549
|
return textField({
|
|
3550
|
+
...config,
|
|
3546
3551
|
key,
|
|
3547
|
-
|
|
3548
|
-
|
|
3552
|
+
placeholder,
|
|
3553
|
+
label,
|
|
3554
|
+
pattern,
|
|
3555
|
+
autocomplete,
|
|
3549
3556
|
required,
|
|
3550
|
-
|
|
3551
|
-
maxLength: ADDRESS_STATE_MAX_LENGTH
|
|
3557
|
+
maxLength
|
|
3552
3558
|
});
|
|
3553
3559
|
}
|
|
3554
|
-
function countryField(
|
|
3560
|
+
function countryField(config = {}) {
|
|
3561
|
+
const { key = 'country', placeholder = '', label = 'Country', autocomplete = 'country', maxLength = ADDRESS_COUNTRY_MAX_LENGTH, required = false } = config;
|
|
3555
3562
|
return textField({
|
|
3563
|
+
...config,
|
|
3556
3564
|
key,
|
|
3557
|
-
|
|
3558
|
-
|
|
3565
|
+
placeholder,
|
|
3566
|
+
label,
|
|
3567
|
+
autocomplete,
|
|
3559
3568
|
required,
|
|
3560
|
-
|
|
3561
|
-
maxLength: ADDRESS_COUNTRY_MAX_LENGTH
|
|
3569
|
+
maxLength
|
|
3562
3570
|
});
|
|
3563
3571
|
}
|
|
3564
|
-
function zipCodeField(
|
|
3572
|
+
function zipCodeField(config = {}) {
|
|
3573
|
+
const { key = 'zip', placeholder = '', label = 'Zip Code', autocomplete = 'postal-code', maxLength = ADDRESS_ZIP_MAX_LENGTH, required = false } = config;
|
|
3565
3574
|
return textField({
|
|
3575
|
+
...config,
|
|
3566
3576
|
key,
|
|
3567
|
-
|
|
3568
|
-
|
|
3577
|
+
placeholder,
|
|
3578
|
+
label,
|
|
3579
|
+
autocomplete,
|
|
3569
3580
|
required,
|
|
3570
|
-
|
|
3571
|
-
maxLength: ADDRESS_ZIP_MAX_LENGTH
|
|
3581
|
+
maxLength
|
|
3572
3582
|
});
|
|
3573
3583
|
}
|
|
3574
3584
|
const DEFAULT_LAT_LNG_TEXT_FIELD_PLACEHOLDER = '12.345,-67.8910';
|
|
@@ -3592,53 +3602,62 @@ function latLngTextField({ key = 'latLng' } = {}) {
|
|
|
3592
3602
|
}
|
|
3593
3603
|
|
|
3594
3604
|
const ADDRESS_LINE_MAX_LENGTH = 100;
|
|
3595
|
-
function
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
field: zipCodeField({})
|
|
3622
|
-
},
|
|
3623
|
-
{
|
|
3624
|
-
field: countryField({})
|
|
3625
|
-
}
|
|
3626
|
-
], { size: 1, relative: true })
|
|
3605
|
+
function addressLineField(config = {}) {
|
|
3606
|
+
const { line = 1 } = config;
|
|
3607
|
+
const lineCode = Math.min(1, line);
|
|
3608
|
+
const { key = `line${lineCode}`, placeholder = '', label = line ? `Line ${line}` : 'Street', autocomplete = `address-line${lineCode}`, maxLength = ADDRESS_LINE_MAX_LENGTH, required = false } = config;
|
|
3609
|
+
return textField({
|
|
3610
|
+
...config,
|
|
3611
|
+
key,
|
|
3612
|
+
placeholder,
|
|
3613
|
+
label,
|
|
3614
|
+
autocomplete,
|
|
3615
|
+
required,
|
|
3616
|
+
maxLength
|
|
3617
|
+
});
|
|
3618
|
+
}
|
|
3619
|
+
function addressFormlyFields(config = {}) {
|
|
3620
|
+
const { includeLine2 = true, includeCountry = true } = config;
|
|
3621
|
+
const singleLineFields = [
|
|
3622
|
+
{
|
|
3623
|
+
field: cityField(config.cityField)
|
|
3624
|
+
},
|
|
3625
|
+
{
|
|
3626
|
+
field: stateField(config.stateField)
|
|
3627
|
+
},
|
|
3628
|
+
{
|
|
3629
|
+
field: zipCodeField(config.zipCodeField)
|
|
3630
|
+
}
|
|
3627
3631
|
];
|
|
3632
|
+
if (includeCountry) {
|
|
3633
|
+
singleLineFields.push({
|
|
3634
|
+
field: countryField(config.countryField)
|
|
3635
|
+
});
|
|
3636
|
+
}
|
|
3637
|
+
let lines;
|
|
3638
|
+
if (includeLine2) {
|
|
3639
|
+
lines = [addressLineField({ ...config.line1Field, line: 1 }), addressLineField({ ...config.line2Field, line: 2 })];
|
|
3640
|
+
}
|
|
3641
|
+
else {
|
|
3642
|
+
lines = [addressLineField({ ...config.line1Field, line: 0 })];
|
|
3643
|
+
}
|
|
3644
|
+
return [...lines, flexLayoutWrapper(singleLineFields, { size: 1, relative: true })];
|
|
3628
3645
|
}
|
|
3629
|
-
function addressField(
|
|
3630
|
-
|
|
3646
|
+
function addressField(config = {}) {
|
|
3647
|
+
const { key = 'address', header = 'Address', hint, required = false } = config;
|
|
3648
|
+
return sectionWrapper({
|
|
3649
|
+
...config,
|
|
3631
3650
|
key,
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
};
|
|
3651
|
+
fieldGroup: addressFormlyFields(config),
|
|
3652
|
+
required
|
|
3653
|
+
}, {
|
|
3654
|
+
...config,
|
|
3655
|
+
header,
|
|
3656
|
+
hint
|
|
3657
|
+
});
|
|
3640
3658
|
}
|
|
3641
|
-
function addressListField(
|
|
3659
|
+
function addressListField(config = {}) {
|
|
3660
|
+
const { key = 'addresses', required = false, maxAddresses = 6 } = config;
|
|
3642
3661
|
return repeatArrayField({
|
|
3643
3662
|
key,
|
|
3644
3663
|
required,
|
|
@@ -3647,7 +3666,7 @@ function addressListField({ key = 'addresses', required = false, maxAddresses =
|
|
|
3647
3666
|
addText: 'Add Address',
|
|
3648
3667
|
removeText: 'Remove Address',
|
|
3649
3668
|
maxLength: maxAddresses,
|
|
3650
|
-
repeatFieldGroup: addressFormlyFields()
|
|
3669
|
+
repeatFieldGroup: addressFormlyFields(config)
|
|
3651
3670
|
});
|
|
3652
3671
|
}
|
|
3653
3672
|
|
|
@@ -4314,5 +4333,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
4314
4333
|
* Generated bundle index. Do not edit.
|
|
4315
4334
|
*/
|
|
4316
4335
|
|
|
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 };
|
|
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 };
|
|
4318
4337
|
//# sourceMappingURL=dereekb-dbx-form.mjs.map
|