@dsivd/prestations-ng 15.2.3-beta12 → 15.2.3-beta13
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/CHANGELOG.md +3 -0
- package/directives/currency-formatter.directive.d.ts +2 -0
- package/dsivd-prestations-ng-v15.2.3-beta13.tgz +0 -0
- package/esm2020/directives/currency-formatter.directive.mjs +10 -5
- package/esm2020/foehn-input/foehn-input-number.component.mjs +16 -8
- package/fesm2015/dsivd-prestations-ng.mjs +131 -119
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +131 -119
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-input/foehn-input-number.component.d.ts +1 -0
- package/package.json +1 -1
- package/dsivd-prestations-ng-v15.2.3-beta12.tgz +0 -0
|
@@ -6537,6 +6537,122 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
6537
6537
|
}]
|
|
6538
6538
|
}] });
|
|
6539
6539
|
|
|
6540
|
+
// eslint-disable max-classes-per-file
|
|
6541
|
+
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
6542
|
+
function removeFormatting(value) {
|
|
6543
|
+
if (value === undefined || value === null) {
|
|
6544
|
+
// It's important to return null as the backend will consider this as no value.
|
|
6545
|
+
return null;
|
|
6546
|
+
}
|
|
6547
|
+
return value
|
|
6548
|
+
.toString()
|
|
6549
|
+
.trim()
|
|
6550
|
+
.replace(new RegExp(THOUSANDS_SEPARATOR, 'g'), '');
|
|
6551
|
+
}
|
|
6552
|
+
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
6553
|
+
function formatWithThousandSeparators(value) {
|
|
6554
|
+
return value.replace(CURRENCY_REGEXP, THOUSANDS_SEPARATOR);
|
|
6555
|
+
}
|
|
6556
|
+
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
6557
|
+
function formatDecimalCurrency(value, maxDecimalCount, maxLength, allowFreeInput) {
|
|
6558
|
+
if (value === undefined || value === null || value === '') {
|
|
6559
|
+
return null;
|
|
6560
|
+
}
|
|
6561
|
+
const [intg, dec] = removeFormatting(value).split(DECIMALS_SEPARATOR);
|
|
6562
|
+
if (allowFreeInput) {
|
|
6563
|
+
return (formatWithThousandSeparators(intg) +
|
|
6564
|
+
DECIMALS_SEPARATOR +
|
|
6565
|
+
(dec || '0').padEnd(maxDecimalCount, '0'));
|
|
6566
|
+
}
|
|
6567
|
+
if (maxDecimalCount === 0 || !maxDecimalCount) {
|
|
6568
|
+
return formatWithThousandSeparators(intg);
|
|
6569
|
+
}
|
|
6570
|
+
const validEmptyEnd = '0'.repeat(maxDecimalCount);
|
|
6571
|
+
let newEnd = dec ? dec + validEmptyEnd : validEmptyEnd;
|
|
6572
|
+
if (newEnd && newEnd.length >= maxDecimalCount) {
|
|
6573
|
+
newEnd = newEnd.substring(0, maxDecimalCount);
|
|
6574
|
+
}
|
|
6575
|
+
let newDecimal = intg + DECIMALS_SEPARATOR + newEnd;
|
|
6576
|
+
if (newDecimal.length > maxLength) {
|
|
6577
|
+
newDecimal = newDecimal.substring(0, maxLength);
|
|
6578
|
+
}
|
|
6579
|
+
[, newEnd] = newDecimal.split(DECIMALS_SEPARATOR);
|
|
6580
|
+
if (!newEnd) {
|
|
6581
|
+
return formatWithThousandSeparators(intg);
|
|
6582
|
+
}
|
|
6583
|
+
return formatWithThousandSeparators(intg) + DECIMALS_SEPARATOR + newEnd;
|
|
6584
|
+
}
|
|
6585
|
+
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
6586
|
+
function formatNonDecimalCurrency(value) {
|
|
6587
|
+
if (value === undefined || value === null) {
|
|
6588
|
+
return null;
|
|
6589
|
+
}
|
|
6590
|
+
return formatWithThousandSeparators(removeFormatting(value));
|
|
6591
|
+
}
|
|
6592
|
+
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
6593
|
+
class NumberCurrencyFormatterDirective {
|
|
6594
|
+
constructor(host, ngZone) {
|
|
6595
|
+
this.host = host;
|
|
6596
|
+
this.ngZone = ngZone;
|
|
6597
|
+
this.hasFocus = false;
|
|
6598
|
+
}
|
|
6599
|
+
onBlur(value) {
|
|
6600
|
+
this.hasFocus = false;
|
|
6601
|
+
this.setFormatting(value);
|
|
6602
|
+
}
|
|
6603
|
+
onFocus(value) {
|
|
6604
|
+
this.hasFocus = true;
|
|
6605
|
+
this.host.forceUpdateNgModel(removeFormatting(value));
|
|
6606
|
+
}
|
|
6607
|
+
onModelChange(value) {
|
|
6608
|
+
if (!!value && !this.hasFocus) {
|
|
6609
|
+
this.setFormatting(value);
|
|
6610
|
+
}
|
|
6611
|
+
}
|
|
6612
|
+
ngOnInit() {
|
|
6613
|
+
// sometimes, when the view is "simple" and doesn't require lot a processing
|
|
6614
|
+
// we arrive in this method with this.host.model not already initialized, so the formatting is not working
|
|
6615
|
+
this.ngZone.onMicrotaskEmpty.pipe(first()).subscribe(() => {
|
|
6616
|
+
this.setFormatting(this.host.model);
|
|
6617
|
+
});
|
|
6618
|
+
}
|
|
6619
|
+
setFormatting(value) {
|
|
6620
|
+
// Hooks on the inputs of the component to customize the behavior
|
|
6621
|
+
const formattedValue = this.host.allowDecimal
|
|
6622
|
+
? formatDecimalCurrency(value, this.host.maxDecimalCount, this.host.maxlength, this.host.allowFreeInput)
|
|
6623
|
+
: formatNonDecimalCurrency(value);
|
|
6624
|
+
const newValueWithoutFormatting = removeFormatting(formattedValue);
|
|
6625
|
+
if (this.hasValueChanged(newValueWithoutFormatting)) {
|
|
6626
|
+
// Since we have altered the model (i.e. by removing some decimals), we have to update it
|
|
6627
|
+
this.host.updateNgModel(newValueWithoutFormatting);
|
|
6628
|
+
}
|
|
6629
|
+
// Due to ngModel being possibly updated, we need to wait for a micro task empty
|
|
6630
|
+
this.ngZone.onMicrotaskEmpty.pipe(first()).subscribe(() => {
|
|
6631
|
+
// We're injection non-decimal characters, hence the force.
|
|
6632
|
+
this.host.forceUpdateNgModel(formattedValue);
|
|
6633
|
+
});
|
|
6634
|
+
}
|
|
6635
|
+
hasValueChanged(newValueWithoutFormatting) {
|
|
6636
|
+
return (!this.host.model ||
|
|
6637
|
+
this.host.model.toString() !== newValueWithoutFormatting);
|
|
6638
|
+
}
|
|
6639
|
+
}
|
|
6640
|
+
NumberCurrencyFormatterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NumberCurrencyFormatterDirective, deps: [{ token: FoehnInputNumberComponent }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6641
|
+
NumberCurrencyFormatterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: NumberCurrencyFormatterDirective, selector: "[numberCurrencyFormatter]", host: { listeners: { "blur": "onBlur($event.target.value)", "focus": "onFocus($event.target.value)", "modelChange": "onModelChange($event)" } }, ngImport: i0 });
|
|
6642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NumberCurrencyFormatterDirective, decorators: [{
|
|
6643
|
+
type: Directive,
|
|
6644
|
+
args: [{ selector: '[numberCurrencyFormatter]' }]
|
|
6645
|
+
}], ctorParameters: function () { return [{ type: FoehnInputNumberComponent }, { type: i0.NgZone }]; }, propDecorators: { onBlur: [{
|
|
6646
|
+
type: HostListener,
|
|
6647
|
+
args: ['blur', ['$event.target.value']]
|
|
6648
|
+
}], onFocus: [{
|
|
6649
|
+
type: HostListener,
|
|
6650
|
+
args: ['focus', ['$event.target.value']]
|
|
6651
|
+
}], onModelChange: [{
|
|
6652
|
+
type: HostListener,
|
|
6653
|
+
args: ['modelChange', ['$event']]
|
|
6654
|
+
}] } });
|
|
6655
|
+
|
|
6540
6656
|
class FoehnInputNumberComponent extends FoehnInputStringComponent {
|
|
6541
6657
|
constructor(currencyHelper, dictionaryService) {
|
|
6542
6658
|
super();
|
|
@@ -6580,7 +6696,6 @@ class FoehnInputNumberComponent extends FoehnInputStringComponent {
|
|
|
6580
6696
|
this.setToEmpty(value);
|
|
6581
6697
|
return;
|
|
6582
6698
|
}
|
|
6583
|
-
console.log('value', value);
|
|
6584
6699
|
let cleanNumber;
|
|
6585
6700
|
if (!this.allowFreeInput) {
|
|
6586
6701
|
cleanNumber = this.getCleanNumber(value.toString());
|
|
@@ -6595,7 +6710,6 @@ class FoehnInputNumberComponent extends FoehnInputStringComponent {
|
|
|
6595
6710
|
? value.replace(CLEAN_NEGATIVE_AND_DECIMAL_NUMBERS_PATTERN, '')
|
|
6596
6711
|
: value;
|
|
6597
6712
|
}
|
|
6598
|
-
console.log('cleanNumber', cleanNumber);
|
|
6599
6713
|
super.updateNgModel(cleanNumber);
|
|
6600
6714
|
// Need to update HTML input value because we let user input what he wants and then we clean model
|
|
6601
6715
|
this.updateInputElementValue(cleanNumber);
|
|
@@ -6729,7 +6843,6 @@ class FoehnInputNumberComponent extends FoehnInputStringComponent {
|
|
|
6729
6843
|
maxAsString += `.${'9'.repeat(this.maxDecimalCount)}`;
|
|
6730
6844
|
}
|
|
6731
6845
|
}
|
|
6732
|
-
const max = this.currencyHelper.formatCurrency(Number(maxAsString), '', this.allowDecimal ? this.maxDecimalCount : null, true);
|
|
6733
6846
|
let minAsString;
|
|
6734
6847
|
if (this.min) {
|
|
6735
6848
|
minAsString = this.min;
|
|
@@ -6738,12 +6851,22 @@ class FoehnInputNumberComponent extends FoehnInputStringComponent {
|
|
|
6738
6851
|
minAsString = this.allowNegative
|
|
6739
6852
|
? `-${'9'.repeat(maxIntegerCount - 1)}`
|
|
6740
6853
|
: '0';
|
|
6741
|
-
if (this.allowDecimal
|
|
6742
|
-
minAsString +=
|
|
6854
|
+
if (this.allowDecimal) {
|
|
6855
|
+
minAsString += this.allowNegative
|
|
6856
|
+
? `.${'9'.repeat(this.maxDecimalCount || 0)}`
|
|
6857
|
+
: `.${'0'.repeat(this.maxDecimalCount || 0)}`;
|
|
6743
6858
|
}
|
|
6744
6859
|
}
|
|
6745
|
-
|
|
6746
|
-
|
|
6860
|
+
this.helpText += this.dictionaryService.getKeySync('foehn-input-number.standard-help-text.label', {
|
|
6861
|
+
minValue: this.formatValue(minAsString),
|
|
6862
|
+
maxValue: this.formatValue(maxAsString)
|
|
6863
|
+
});
|
|
6864
|
+
}
|
|
6865
|
+
formatValue(value) {
|
|
6866
|
+
if (this.allowDecimal) {
|
|
6867
|
+
return formatDecimalCurrency(value?.toString(), this.maxDecimalCount, this.maxlength, this.allowFreeInput);
|
|
6868
|
+
}
|
|
6869
|
+
return formatNonDecimalCurrency(value?.toString());
|
|
6747
6870
|
}
|
|
6748
6871
|
}
|
|
6749
6872
|
FoehnInputNumberComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FoehnInputNumberComponent, deps: [{ token: CurrencyHelper }, { token: SdkDictionaryService }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -11488,117 +11611,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11488
11611
|
class FoehnConfirmModalContent {
|
|
11489
11612
|
}
|
|
11490
11613
|
|
|
11491
|
-
// eslint-disable max-classes-per-file
|
|
11492
|
-
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
11493
|
-
function removeFormatting(value) {
|
|
11494
|
-
if (value === undefined || value === null) {
|
|
11495
|
-
// It's important to return null as the backend will consider this as no value.
|
|
11496
|
-
return null;
|
|
11497
|
-
}
|
|
11498
|
-
return value
|
|
11499
|
-
.toString()
|
|
11500
|
-
.trim()
|
|
11501
|
-
.replace(new RegExp(THOUSANDS_SEPARATOR, 'g'), '');
|
|
11502
|
-
}
|
|
11503
|
-
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
11504
|
-
function formatWithThousandSeparators(value) {
|
|
11505
|
-
return value.replace(CURRENCY_REGEXP, THOUSANDS_SEPARATOR);
|
|
11506
|
-
}
|
|
11507
|
-
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
11508
|
-
function formatDecimalCurrency(value, maxDecimalCount, maxLength) {
|
|
11509
|
-
if (value === undefined || value === null || value === '') {
|
|
11510
|
-
return null;
|
|
11511
|
-
}
|
|
11512
|
-
const [intg, dec] = removeFormatting(value).split(DECIMALS_SEPARATOR);
|
|
11513
|
-
if (maxDecimalCount === 0) {
|
|
11514
|
-
return formatWithThousandSeparators(intg);
|
|
11515
|
-
}
|
|
11516
|
-
const validEmptyEnd = '0'.repeat(maxDecimalCount);
|
|
11517
|
-
let newEnd = dec ? dec + validEmptyEnd : validEmptyEnd;
|
|
11518
|
-
if (newEnd && newEnd.length >= maxDecimalCount) {
|
|
11519
|
-
newEnd = newEnd.substring(0, maxDecimalCount);
|
|
11520
|
-
}
|
|
11521
|
-
let newDecimal = intg + DECIMALS_SEPARATOR + newEnd;
|
|
11522
|
-
if (newDecimal.length > maxLength) {
|
|
11523
|
-
newDecimal = newDecimal.substring(0, maxLength);
|
|
11524
|
-
}
|
|
11525
|
-
[, newEnd] = newDecimal.split(DECIMALS_SEPARATOR);
|
|
11526
|
-
if (!newEnd) {
|
|
11527
|
-
return formatWithThousandSeparators(intg);
|
|
11528
|
-
}
|
|
11529
|
-
return formatWithThousandSeparators(intg) + DECIMALS_SEPARATOR + newEnd;
|
|
11530
|
-
}
|
|
11531
|
-
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions,jsdoc/require-jsdoc
|
|
11532
|
-
function formatNonDecimalCurrency(value) {
|
|
11533
|
-
if (value === undefined || value === null) {
|
|
11534
|
-
return null;
|
|
11535
|
-
}
|
|
11536
|
-
return formatWithThousandSeparators(removeFormatting(value));
|
|
11537
|
-
}
|
|
11538
|
-
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
11539
|
-
class NumberCurrencyFormatterDirective {
|
|
11540
|
-
constructor(host, ngZone) {
|
|
11541
|
-
this.host = host;
|
|
11542
|
-
this.ngZone = ngZone;
|
|
11543
|
-
this.hasFocus = false;
|
|
11544
|
-
}
|
|
11545
|
-
onBlur(value) {
|
|
11546
|
-
this.hasFocus = false;
|
|
11547
|
-
this.setFormatting(value);
|
|
11548
|
-
}
|
|
11549
|
-
onFocus(value) {
|
|
11550
|
-
this.hasFocus = true;
|
|
11551
|
-
this.host.forceUpdateNgModel(removeFormatting(value));
|
|
11552
|
-
}
|
|
11553
|
-
onModelChange(value) {
|
|
11554
|
-
if (!!value && !this.hasFocus) {
|
|
11555
|
-
this.setFormatting(value);
|
|
11556
|
-
}
|
|
11557
|
-
}
|
|
11558
|
-
ngOnInit() {
|
|
11559
|
-
// sometimes, when the view is "simple" and doesn't require lot a processing
|
|
11560
|
-
// we arrive in this method with this.host.model not already initialized, so the formatting is not working
|
|
11561
|
-
this.ngZone.onMicrotaskEmpty.pipe(first()).subscribe(() => {
|
|
11562
|
-
this.setFormatting(this.host.model);
|
|
11563
|
-
});
|
|
11564
|
-
}
|
|
11565
|
-
setFormatting(value) {
|
|
11566
|
-
// Hooks on the inputs of the component to customize the behavior
|
|
11567
|
-
const formattedValue = this.host.allowDecimal
|
|
11568
|
-
? formatDecimalCurrency(value, this.host.maxDecimalCount, this.host.maxlength)
|
|
11569
|
-
: formatNonDecimalCurrency(value);
|
|
11570
|
-
const newValueWithoutFormatting = removeFormatting(formattedValue);
|
|
11571
|
-
if (this.hasValueChanged(newValueWithoutFormatting)) {
|
|
11572
|
-
// Since we have altered the model (i.e. by removing some decimals), we have to update it
|
|
11573
|
-
this.host.updateNgModel(newValueWithoutFormatting);
|
|
11574
|
-
}
|
|
11575
|
-
// Due to ngModel being possibly updated, we need to wait for a micro task empty
|
|
11576
|
-
this.ngZone.onMicrotaskEmpty.pipe(first()).subscribe(() => {
|
|
11577
|
-
// We're injection non-decimal characters, hence the force.
|
|
11578
|
-
this.host.forceUpdateNgModel(formattedValue);
|
|
11579
|
-
});
|
|
11580
|
-
}
|
|
11581
|
-
hasValueChanged(newValueWithoutFormatting) {
|
|
11582
|
-
return (!this.host.model ||
|
|
11583
|
-
this.host.model.toString() !== newValueWithoutFormatting);
|
|
11584
|
-
}
|
|
11585
|
-
}
|
|
11586
|
-
NumberCurrencyFormatterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NumberCurrencyFormatterDirective, deps: [{ token: FoehnInputNumberComponent }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11587
|
-
NumberCurrencyFormatterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: NumberCurrencyFormatterDirective, selector: "[numberCurrencyFormatter]", host: { listeners: { "blur": "onBlur($event.target.value)", "focus": "onFocus($event.target.value)", "modelChange": "onModelChange($event)" } }, ngImport: i0 });
|
|
11588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NumberCurrencyFormatterDirective, decorators: [{
|
|
11589
|
-
type: Directive,
|
|
11590
|
-
args: [{ selector: '[numberCurrencyFormatter]' }]
|
|
11591
|
-
}], ctorParameters: function () { return [{ type: FoehnInputNumberComponent }, { type: i0.NgZone }]; }, propDecorators: { onBlur: [{
|
|
11592
|
-
type: HostListener,
|
|
11593
|
-
args: ['blur', ['$event.target.value']]
|
|
11594
|
-
}], onFocus: [{
|
|
11595
|
-
type: HostListener,
|
|
11596
|
-
args: ['focus', ['$event.target.value']]
|
|
11597
|
-
}], onModelChange: [{
|
|
11598
|
-
type: HostListener,
|
|
11599
|
-
args: ['modelChange', ['$event']]
|
|
11600
|
-
}] } });
|
|
11601
|
-
|
|
11602
11614
|
const NO_CONTRIB_PATTERN = '^((\\d\\.?){0,7})(\\d)$';
|
|
11603
11615
|
const NO_CONTRIB_PATTERN_WITH_NO_DOT = '^(\\d{1,2})$';
|
|
11604
11616
|
const NO_CONTRIB_PATTERN_WITH_ONE_DOT = '^(\\d{1,3})(\\d{2})$';
|
|
@@ -12719,5 +12731,5 @@ class SelectedSlot {
|
|
|
12719
12731
|
* Generated bundle index. Do not edit.
|
|
12720
12732
|
*/
|
|
12721
12733
|
|
|
12722
|
-
export { APP_INFO_API_URL, AbstractFoehnUploaderComponent, AbstractListDetailPageComponent, AbstractMenuPageComponent, AbstractPageComponent, AbstractPageFromMenuComponent, ActionStatut, Address, AddressTypeLight, ApplicationInfo, ApplicationInfoService, BAD_PARAMS_HELP_TEXT, BoDocumentError, BoDocumentsWithErrors, BoMultiUploadService, Breadcrumb, BreadcrumbEventService, BreadcrumbItem, CAPTCHA_ERROR_NAME, CURRENCY_REGEXP, Calendar, Canton, Captcha, ComponentError, Configuration, Country, CurrencyHelper, CurrentWeek, DECIMALS_SEPARATOR, DEFAULT_INTERNATIONAL_AND_NO_SWISS, DEFAULT_INTERNATIONAL_AND_NO_SWISS_MOBILE, DEFAULT_INTERNATIONAL_AND_NO_SWISS_PHONE, DEFAULT_INTERNATIONAL_HELP_TEXT, DEFAULT_SWISS_HELP_TEXT, DEFAULT_SWISS_MOBILE_PHONE_HELP_TEXT, DEFAULT_SWISS_PHONE_HELP_TEXT, DICTIONARY_BASE_URL, DateHelper, DatePickerHelper, DatePickerNavigationHelper, DayMonth, DaySlots, DisplayCurrencyPipe, DisplayDatePipe, DisplayLoginMessagesData, District, Document, DocumentError, DocumentReference, DocumentReferenceWithFile, DocumentsWithErrors, EPaymentService, EtapeInfo, FORM_SUPPORT_CYBER_TITLE_FALLBACK, FocusedDay, FoehnAbbrComponent, FoehnAddressModule, FoehnAgendaComponent, FoehnAgendaModule, FoehnAgendaNavigationComponent, FoehnAgendaTimeslotPanelComponent, FoehnAutocompleteComponent, FoehnAutocompleteModule, FoehnBoMultiUploadComponent, FoehnBoMultiUploadModule, FoehnBooleanCheckboxComponent, FoehnBooleanModule, FoehnBooleanRadioComponent, FoehnBreadcrumbComponent, FoehnBreadcrumbModule, FoehnCheckableGroupComponent, FoehnCheckablesModule, FoehnCheckboxComponent, FoehnConfirmModalComponent, FoehnConfirmModalContent, FoehnConfirmModalModule, FoehnConfirmModalService, FoehnDateComponent, FoehnDatePickerButtonComponent, FoehnDatePickerButtonModule, FoehnDatePickerComponent, FoehnDatePickerModule, FoehnDecisionElectroniqueComponent, FoehnDecisionElectroniqueModule, FoehnDisplayAddressComponent, FoehnErrorPillComponent, FoehnFormComponent, FoehnFormModule, FoehnHeaderComponent, FoehnHeaderModule, FoehnHelpModalComponent, FoehnHelpModalModule, FoehnIconCalendarComponent, FoehnIconCheckComponent, FoehnIconCheckSquareOComponent, FoehnIconChevronDownComponent, FoehnIconChevronLeftComponent, FoehnIconChevronRightComponent, FoehnIconChevronUpComponent, FoehnIconClockComponent, FoehnIconCommentDotsComponent, FoehnIconEditComponent, FoehnIconExternalLinkAltComponent, FoehnIconFilePdfComponent, FoehnIconInfoCircleComponent, FoehnIconLockComponent, FoehnIconMapMarkerComponent, FoehnIconMinusCircleComponent, FoehnIconPlusCircleComponent, FoehnIconPlusSquareComponent, FoehnIconSearchComponent, FoehnIconTimesComponent, FoehnIconTrashAltComponent, FoehnIconUnlockAltComponent, FoehnIconsModule, FoehnInputAddressComponent, FoehnInputComponent, FoehnInputEmailComponent, FoehnInputForeignLocalityComponent, FoehnInputForeignStreetComponent, FoehnInputHiddenComponent, FoehnInputModule, FoehnInputNav13Component, FoehnInputNav13Module, FoehnInputNumberComponent, FoehnInputPasswordComponent, FoehnInputPhoneComponent, FoehnInputStringComponent, FoehnInputTextComponent, FoehnInputTextareaComponent, FoehnListComponent, FoehnListItem, FoehnListModule, FoehnListSummaryComponent, FoehnMenuItemComponent, FoehnMenuItemTransmitComponent, FoehnMenuPrestationModule, FoehnMiscModule, FoehnModalComponent, FoehnModalModule, FoehnMultiUploadComponent, FoehnMultiUploadModule, FoehnMultiselectAutocompleteComponent, FoehnMultiselectAutocompleteModule, FoehnNavigationComponent, FoehnNavigationModule, FoehnNavigationService, FoehnNotFoundModule, FoehnNotfoundComponent, FoehnPageComponent, FoehnPageCounterComponent, FoehnPageModalComponent, FoehnPageModule, FoehnPageService, FoehnPictureUploadComponent, FoehnPictureUploadModule, FoehnRadioComponent, FoehnRecapSectionComponent, FoehnRecapSectionModule, FoehnRemainingAlertsSummaryComponent, FoehnRemainingAlertsSummaryModule, FoehnSelectComponent, FoehnSkipLinkComponent, FoehnStatusProgressBarComponent, FoehnStatusProgressBarModule, FoehnTableColumnConfiguration, FoehnTableComponent, FoehnTableModule, FoehnTablePageChangeEvent, FoehnTimeComponent, FoehnUserConnectedAsComponent, FoehnUserConnectedAsModule, FoehnValidationAlertSummaryComponent, FoehnValidationAlertSummaryModule, FoehnValidationAlertsComponent, FoehnValidationAlertsModule, FooterLink, FormMetadata, FormPostResponse, FormSelectOption, FormatIdePipe, FormatterModule, GESDEM_MAX_DATA_LENGTH, GesdemActionRecoveryLoginComponent, GesdemActionRecoveryModule, GesdemActionRecoveryRegistrationComponent, GesdemConfirmationComponent, GesdemConfirmationModule, GesdemErrorComponent, GesdemErrorModule, GesdemEventService, GesdemHandlerService, GesdemLoaderGuard, GesdemStatutUtils, GrowlBrokerService, GrowlMessage, GrowlType, I18nForm, IbanFormatterDirective, IdeFormatterDirective, Locality, MonthYear, MultiUploadService, Municipality, NDCFormatterDirective, NavigationDirection, NumberCurrencyFormatterDirective, ObjectHelper, PORTAIL_BASE_URL_INT, PageChangeEvent, PaginationWeek, PendingFiles, PendingUploadService, PipeModule, PlaceOfOrigin, Portail, PostalLocality, Preferences, PrestationsNgCoreModule, RECAPTCHA_API_URL, RecaptchaService, RedirectComponent, SESSION_INFO_API_URL, SWISS_ISO_ID, SdkDictionaryModule, SdkDictionaryPipe, SdkDictionaryService, SdkEpaymentComponent, SdkEpaymentModule, SdkRecaptchaComponent, SdkRecaptchaModule, SdkRedirectModule, SdkStatisticsService, SelectedSlot, ServiceLocator, SessionInfo, SessionInfoData, SessionInfoWithApplicationService, Street, StreetNumber, THOUSANDS_SEPARATOR, TableSort, UploaderHelper, ValidationHandlerService, replaceAll };
|
|
12734
|
+
export { APP_INFO_API_URL, AbstractFoehnUploaderComponent, AbstractListDetailPageComponent, AbstractMenuPageComponent, AbstractPageComponent, AbstractPageFromMenuComponent, ActionStatut, Address, AddressTypeLight, ApplicationInfo, ApplicationInfoService, BAD_PARAMS_HELP_TEXT, BoDocumentError, BoDocumentsWithErrors, BoMultiUploadService, Breadcrumb, BreadcrumbEventService, BreadcrumbItem, CAPTCHA_ERROR_NAME, CURRENCY_REGEXP, Calendar, Canton, Captcha, ComponentError, Configuration, Country, CurrencyHelper, CurrentWeek, DECIMALS_SEPARATOR, DEFAULT_INTERNATIONAL_AND_NO_SWISS, DEFAULT_INTERNATIONAL_AND_NO_SWISS_MOBILE, DEFAULT_INTERNATIONAL_AND_NO_SWISS_PHONE, DEFAULT_INTERNATIONAL_HELP_TEXT, DEFAULT_SWISS_HELP_TEXT, DEFAULT_SWISS_MOBILE_PHONE_HELP_TEXT, DEFAULT_SWISS_PHONE_HELP_TEXT, DICTIONARY_BASE_URL, DateHelper, DatePickerHelper, DatePickerNavigationHelper, DayMonth, DaySlots, DisplayCurrencyPipe, DisplayDatePipe, DisplayLoginMessagesData, District, Document, DocumentError, DocumentReference, DocumentReferenceWithFile, DocumentsWithErrors, EPaymentService, EtapeInfo, FORM_SUPPORT_CYBER_TITLE_FALLBACK, FocusedDay, FoehnAbbrComponent, FoehnAddressModule, FoehnAgendaComponent, FoehnAgendaModule, FoehnAgendaNavigationComponent, FoehnAgendaTimeslotPanelComponent, FoehnAutocompleteComponent, FoehnAutocompleteModule, FoehnBoMultiUploadComponent, FoehnBoMultiUploadModule, FoehnBooleanCheckboxComponent, FoehnBooleanModule, FoehnBooleanRadioComponent, FoehnBreadcrumbComponent, FoehnBreadcrumbModule, FoehnCheckableGroupComponent, FoehnCheckablesModule, FoehnCheckboxComponent, FoehnConfirmModalComponent, FoehnConfirmModalContent, FoehnConfirmModalModule, FoehnConfirmModalService, FoehnDateComponent, FoehnDatePickerButtonComponent, FoehnDatePickerButtonModule, FoehnDatePickerComponent, FoehnDatePickerModule, FoehnDecisionElectroniqueComponent, FoehnDecisionElectroniqueModule, FoehnDisplayAddressComponent, FoehnErrorPillComponent, FoehnFormComponent, FoehnFormModule, FoehnHeaderComponent, FoehnHeaderModule, FoehnHelpModalComponent, FoehnHelpModalModule, FoehnIconCalendarComponent, FoehnIconCheckComponent, FoehnIconCheckSquareOComponent, FoehnIconChevronDownComponent, FoehnIconChevronLeftComponent, FoehnIconChevronRightComponent, FoehnIconChevronUpComponent, FoehnIconClockComponent, FoehnIconCommentDotsComponent, FoehnIconEditComponent, FoehnIconExternalLinkAltComponent, FoehnIconFilePdfComponent, FoehnIconInfoCircleComponent, FoehnIconLockComponent, FoehnIconMapMarkerComponent, FoehnIconMinusCircleComponent, FoehnIconPlusCircleComponent, FoehnIconPlusSquareComponent, FoehnIconSearchComponent, FoehnIconTimesComponent, FoehnIconTrashAltComponent, FoehnIconUnlockAltComponent, FoehnIconsModule, FoehnInputAddressComponent, FoehnInputComponent, FoehnInputEmailComponent, FoehnInputForeignLocalityComponent, FoehnInputForeignStreetComponent, FoehnInputHiddenComponent, FoehnInputModule, FoehnInputNav13Component, FoehnInputNav13Module, FoehnInputNumberComponent, FoehnInputPasswordComponent, FoehnInputPhoneComponent, FoehnInputStringComponent, FoehnInputTextComponent, FoehnInputTextareaComponent, FoehnListComponent, FoehnListItem, FoehnListModule, FoehnListSummaryComponent, FoehnMenuItemComponent, FoehnMenuItemTransmitComponent, FoehnMenuPrestationModule, FoehnMiscModule, FoehnModalComponent, FoehnModalModule, FoehnMultiUploadComponent, FoehnMultiUploadModule, FoehnMultiselectAutocompleteComponent, FoehnMultiselectAutocompleteModule, FoehnNavigationComponent, FoehnNavigationModule, FoehnNavigationService, FoehnNotFoundModule, FoehnNotfoundComponent, FoehnPageComponent, FoehnPageCounterComponent, FoehnPageModalComponent, FoehnPageModule, FoehnPageService, FoehnPictureUploadComponent, FoehnPictureUploadModule, FoehnRadioComponent, FoehnRecapSectionComponent, FoehnRecapSectionModule, FoehnRemainingAlertsSummaryComponent, FoehnRemainingAlertsSummaryModule, FoehnSelectComponent, FoehnSkipLinkComponent, FoehnStatusProgressBarComponent, FoehnStatusProgressBarModule, FoehnTableColumnConfiguration, FoehnTableComponent, FoehnTableModule, FoehnTablePageChangeEvent, FoehnTimeComponent, FoehnUserConnectedAsComponent, FoehnUserConnectedAsModule, FoehnValidationAlertSummaryComponent, FoehnValidationAlertSummaryModule, FoehnValidationAlertsComponent, FoehnValidationAlertsModule, FooterLink, FormMetadata, FormPostResponse, FormSelectOption, FormatIdePipe, FormatterModule, GESDEM_MAX_DATA_LENGTH, GesdemActionRecoveryLoginComponent, GesdemActionRecoveryModule, GesdemActionRecoveryRegistrationComponent, GesdemConfirmationComponent, GesdemConfirmationModule, GesdemErrorComponent, GesdemErrorModule, GesdemEventService, GesdemHandlerService, GesdemLoaderGuard, GesdemStatutUtils, GrowlBrokerService, GrowlMessage, GrowlType, I18nForm, IbanFormatterDirective, IdeFormatterDirective, Locality, MonthYear, MultiUploadService, Municipality, NDCFormatterDirective, NavigationDirection, NumberCurrencyFormatterDirective, ObjectHelper, PORTAIL_BASE_URL_INT, PageChangeEvent, PaginationWeek, PendingFiles, PendingUploadService, PipeModule, PlaceOfOrigin, Portail, PostalLocality, Preferences, PrestationsNgCoreModule, RECAPTCHA_API_URL, RecaptchaService, RedirectComponent, SESSION_INFO_API_URL, SWISS_ISO_ID, SdkDictionaryModule, SdkDictionaryPipe, SdkDictionaryService, SdkEpaymentComponent, SdkEpaymentModule, SdkRecaptchaComponent, SdkRecaptchaModule, SdkRedirectModule, SdkStatisticsService, SelectedSlot, ServiceLocator, SessionInfo, SessionInfoData, SessionInfoWithApplicationService, Street, StreetNumber, THOUSANDS_SEPARATOR, TableSort, UploaderHelper, ValidationHandlerService, formatDecimalCurrency, formatNonDecimalCurrency, replaceAll };
|
|
12723
12735
|
//# sourceMappingURL=dsivd-prestations-ng.mjs.map
|