@onemrvapublic/design-system 20.3.0-develop.2 → 20.3.0-develop.4
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/fesm2022/onemrvapublic-design-system-mat-address.mjs +52 -20
- package/fesm2022/onemrvapublic-design-system-mat-address.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system-mat-input-enterprise-number.mjs +2 -2
- package/fesm2022/onemrvapublic-design-system-mat-input-enterprise-number.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system-mat-multi-select.mjs +4 -2
- package/fesm2022/onemrvapublic-design-system-mat-multi-select.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system-shared.mjs +21 -18
- package/fesm2022/onemrvapublic-design-system-shared.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system.mjs +77 -40
- package/fesm2022/onemrvapublic-design-system.mjs.map +1 -1
- package/index.d.ts +26 -17
- package/mat-address/index.d.ts +18 -8
- package/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.scss +7 -0
- package/package.json +5 -5
- package/shared/index.d.ts +9 -10
package/index.d.ts
CHANGED
|
@@ -32,9 +32,8 @@ import * as i8 from '@angular/material/dialog';
|
|
|
32
32
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
33
33
|
import { OnemRvaCDNMimeService as OnemRvaCDNMimeService$1, OSMResult as OSMResult$1, OnemRvaCommonCountry as OnemRvaCommonCountry$1, OnemrvaMaterialCountry as OnemrvaMaterialCountry$1 } from '@onemrvapublic/design-system/shared';
|
|
34
34
|
import * as i5 from '@angular/forms';
|
|
35
|
-
import { FormControl,
|
|
35
|
+
import { FormControl, FormGroup, ControlValueAccessor, NgControl, ValidationErrors, AbstractControl, ValidatorFn } from '@angular/forms';
|
|
36
36
|
import * as i11 from '@angular/material/input';
|
|
37
|
-
import { MatInput } from '@angular/material/input';
|
|
38
37
|
import { ComponentStore } from '@ngrx/component-store';
|
|
39
38
|
import { HttpEvent, HttpClient } from '@angular/common/http';
|
|
40
39
|
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
@@ -979,23 +978,33 @@ declare class OnemrvaMatInputAddressComponent implements OnInit {
|
|
|
979
978
|
}
|
|
980
979
|
|
|
981
980
|
declare class OnemRvaAddress implements OnInit {
|
|
981
|
+
defaultCountry: string;
|
|
982
|
+
form: FormGroup<{
|
|
983
|
+
country: FormControl<string | null>;
|
|
984
|
+
street: FormControl<string | null>;
|
|
985
|
+
postal_code: FormControl<string | null>;
|
|
986
|
+
city: FormControl<string | null>;
|
|
987
|
+
street_number: FormControl<string | null>;
|
|
988
|
+
box: FormControl<string | null>;
|
|
989
|
+
}>;
|
|
982
990
|
update: EventEmitter<{
|
|
983
991
|
country?: string;
|
|
984
992
|
street?: string;
|
|
985
993
|
postal_code?: string;
|
|
986
994
|
city?: string;
|
|
987
995
|
street_number?: string;
|
|
996
|
+
box?: string;
|
|
988
997
|
}>;
|
|
989
|
-
countryForm: FormControl<string | null>;
|
|
990
|
-
|
|
991
|
-
postalCodeControl: FormControl<string | null>;
|
|
992
|
-
cityControl: FormControl<string | null>;
|
|
993
|
-
|
|
994
|
-
numeroControl: FormControl<string | null>;
|
|
998
|
+
get countryForm(): FormControl<string | null>;
|
|
999
|
+
get streetControl(): FormControl<string | null>;
|
|
1000
|
+
get postalCodeControl(): FormControl<string | null>;
|
|
1001
|
+
get cityControl(): FormControl<string | null>;
|
|
1002
|
+
get boxControl(): FormControl<string | null>;
|
|
1003
|
+
get numeroControl(): FormControl<string | null>;
|
|
995
1004
|
ngOnInit(): void;
|
|
996
1005
|
onAddressSelected(result: OSMResult$1): void;
|
|
997
1006
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemRvaAddress, never>;
|
|
998
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OnemRvaAddress, "onemrva-address", never, {}, { "update": "update"; }, never, never, true, never>;
|
|
1007
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnemRvaAddress, "onemrva-address", never, { "defaultCountry": { "alias": "defaultCountry"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, { "update": "update"; }, never, never, true, never>;
|
|
999
1008
|
}
|
|
1000
1009
|
|
|
1001
1010
|
declare class OnemrvaMatInputBirthPlaceComponent implements OnInit, OnDestroy {
|
|
@@ -2781,12 +2790,12 @@ declare class OnemRvaSizeDirective {
|
|
|
2781
2790
|
static ɵdir: i0.ɵɵDirectiveDeclaration<OnemRvaSizeDirective, "mat-icon[size], onemrva-mat-skeleton[size], onemrva-mat-avatar[size], button[size]", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
2782
2791
|
}
|
|
2783
2792
|
|
|
2784
|
-
declare class
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
2789
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
2793
|
+
declare class OnemRvaReadonlyDirective {
|
|
2794
|
+
readonly: boolean;
|
|
2795
|
+
/** @hidden @internal */
|
|
2796
|
+
get isReadOnly(): boolean;
|
|
2797
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnemRvaReadonlyDirective, never>;
|
|
2798
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OnemRvaReadonlyDirective, "form[readonly], mat-checkbox[readonly], mat-form-field[readonly], onemrva-mat-input-phone[readonly],onemrva-mat-input-birthplace[readonly],onemrva-mat-input-country[readonly],onemrva-mat-input-enterprise-number[readonly]", never, { "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never, true, never>;
|
|
2790
2799
|
}
|
|
2791
2800
|
|
|
2792
2801
|
declare const directives: any[];
|
|
@@ -3018,7 +3027,7 @@ declare const bankAccountValidator: (allowEmptyCountry?: boolean) => ValidatorFn
|
|
|
3018
3027
|
|
|
3019
3028
|
declare class OnemrvaSharedModule {
|
|
3020
3029
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemrvaSharedModule, never>;
|
|
3021
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OnemrvaSharedModule, never, [typeof DigitOnlyDirective, typeof MatRowClickableDirective, typeof OnemRvaClipboardDirective, typeof OnemRvaIconRightDirective, typeof IfWidthIsDirective, typeof OnemRvaColorDirective, typeof OnemrvaMaskDirective, typeof OnemrvaDateFormatDirective, typeof
|
|
3030
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OnemrvaSharedModule, never, [typeof DigitOnlyDirective, typeof MatRowClickableDirective, typeof OnemRvaClipboardDirective, typeof OnemRvaIconRightDirective, typeof IfWidthIsDirective, typeof OnemRvaColorDirective, typeof OnemrvaMaskDirective, typeof OnemrvaDateFormatDirective, typeof OnemRvaReadonlyDirective], [typeof DigitOnlyDirective, typeof MatRowClickableDirective, typeof OnemRvaClipboardDirective, typeof OnemRvaIconRightDirective, typeof IfWidthIsDirective, typeof OnemRvaColorDirective, typeof OnemrvaMaskDirective, typeof OnemrvaDateFormatDirective, typeof OnemRvaReadonlyDirective]>;
|
|
3022
3031
|
static ɵinj: i0.ɵɵInjectorDeclaration<OnemrvaSharedModule>;
|
|
3023
3032
|
}
|
|
3024
3033
|
|
|
@@ -3095,5 +3104,5 @@ declare function onemrvaThemeProvider(): Provider[];
|
|
|
3095
3104
|
declare const LOOKUP_COUNTRY_SERVICE_URL: InjectionToken<string>;
|
|
3096
3105
|
declare const ONEMRVA_THEME_CLASS: InjectionToken<string>;
|
|
3097
3106
|
|
|
3098
|
-
export { CDNUrlModeOptions, CDN_URLS, CDN_URL_MODE, CUSTOM_VALIDATION_FN, CacheService, ClipboardIconComponent, ClockComponent, CoerceBooleanInput, CommonCountryLookupService, DefaultStorage, DigitOnlyDirective, DndDirective, DrawerHostDirective, Environment, FlagIconComponent, HttpRequestCache, IBAN_SUPPORTED_COUNTRIES, IfWidthIsDirective, LOOKUP_COUNTRY_SERVICE_URL, LOOKUP_COUNTRY_URL, LayoutAfterNavComponent, LayoutComponent, LayoutContentComponent, LayoutDrawerActionsComponent, LayoutDrawerContentComponent, LayoutDrawerTitleComponent, LayoutFooterComponent, LayoutLeftSidenavComponent, LayoutLoginMenuComponent, LayoutRouteComponent, LayoutSidenavComponent, LayoutSidenavTitleComponent, LayoutSubrouteComponent, LayoutTitleComponent, MAT_SELECTSEARCH_DEFAULT_OPTIONS, MatAvatarType, MatRowClickableDirective, MatSelectNoEntriesFoundDirective, MatSelectSearchClearDirective, MatSelectSearchComponent, MatSelectSearchModule, MatTimePickerToggle, MatTimepickerComponentDialogComponent, MatTimepickerDirective, MatTimepickerToggleIconDirective, NISS_MASK, ONEMRVA_MAT_LUXON_DATE_FORMATS, ONEMRVA_MAT_LUXON_YEAR_MONTH_FORMATS, ONEMRVA_MAT_NATIVE_DATE_FORMAT, ONEMRVA_MAT_NATIVE_YEAR_MONTH_FORMAT, ONEMRVA_THEME, ONEMRVA_THEME_CLASS, ObservableContent, OnemRvaAddress, OnemRvaCDNCountryService, OnemRvaCDNMimeService, OnemRvaCDNService, OnemRvaClipboardDirective, OnemRvaColorDirective, OnemRvaIconRightDirective, OnemRvaOSMService, OnemRvaProfile, OnemRvaSizeDirective, OnemrvaBcePipe, OnemrvaCopyToClipboardComponent, OnemrvaCountryItemComponent, OnemrvaDateFormatDirective, OnemrvaDrawerService, OnemrvaErrorHandler, OnemrvaFilePanelComponent, OnemrvaLayoutModule, OnemrvaLeftSidenavService, OnemrvaLuxonDateAdapter, OnemrvaMaskDirective, OnemrvaMatAvatarComponent, OnemrvaMatAvatarModule, OnemrvaMatBreadcrumbComponent, OnemrvaMatBreadcrumbModule, OnemrvaMatBreadcrumbService, OnemrvaMatCarouselComponent, OnemrvaMatCarouselItemComponent, OnemrvaMatChoiceChipComponent, OnemrvaMatDatepickerHeaderComponent, OnemrvaMatEmptyRowComponent, OnemrvaMatFileUploadComponent, OnemrvaMatFileUploadModule, OnemrvaMatFileUploadService, OnemrvaMatFileUploadStore, OnemrvaMatInputAddressComponent, OnemrvaMatInputBirthPlaceComponent, OnemrvaMatInputCountryComponent, OnemrvaMatInputEnterpriseNumberComponent, OnemrvaMatInputIbanComponent, OnemrvaMatInputPhoneComponent, OnemrvaMatLoadingDirective, OnemrvaMatMessageBoxComponent, OnemrvaMatMessageBoxModule, OnemrvaMatMultiSelectComponent, OnemrvaMatMultiSelectModule, OnemrvaMatNavigationComponent, OnemrvaMatNavigationItemComponent, OnemrvaMatNotificationComponent, OnemrvaMatPaginatorComponent, OnemrvaMatPaginatorModule, OnemrvaMatPanelComponent, OnemrvaMatPanelContentComponent, OnemrvaMatPanelIconComponent, OnemrvaMatPanelModule, OnemrvaMatPanelTitleActionComponent, OnemrvaMatPanelTitleComponent, OnemrvaMatPopOverComponent, OnemrvaMatPopOverContentComponent, OnemrvaMatPopOverModule, OnemrvaMatPopOverTriggerComponent, OnemrvaMatProgressBarComponent, OnemrvaMatSelectableBoxComponent, OnemrvaMatSelectableBoxModule, OnemrvaMatSideMenuComponent, OnemrvaMatSideMenuModule, OnemrvaMatSkeletoTypes, OnemrvaMatSkeletonAnimations, OnemrvaMatSkeletonComponent, OnemrvaMatSkeletonModule, OnemrvaMatSpinnerComponent, OnemrvaMatSpinnerModule, OnemrvaMatStepperComponent, OnemrvaMatStepperModule, OnemrvaMatStickerComponent, OnemrvaMatStickerModule, OnemrvaMatTableOfContentComponent, OnemrvaMatTableOfContentDirective, OnemrvaMatTableOfContentService, OnemrvaMatTaskComponent, OnemrvaMatTaskContentComponent, OnemrvaMatTaskListComponent, OnemrvaMatTaskListModule, OnemrvaMatTaskTitleComponent, OnemrvaMatTimepickerComponent, OnemrvaMatTimepickerModule, OnemrvaMatToastComponent, OnemrvaMatToastModule, OnemrvaMatTocAnchorLevel, OnemrvaMatTocAnchorStatus, OnemrvaMatTooltipComponent, OnemrvaMatTooltipDirective, OnemrvaMatTooltipModule, OnemrvaMissingTranslationHandler, OnemrvaNativeDateAdapter, OnemrvaNissPipe, OnemrvaPageNotFoundModule, OnemrvaSharedModule, OnemrvaTranslateCDNLoader, OnemrvaTranslateHttpLoader, OnemrvaValidators, PageNotFoundActionComponent, PageNotFoundComponent, PageNotFoundExtraComponent, PageNotFoundInvaderComponent, PhoneNumberDirective,
|
|
3107
|
+
export { CDNUrlModeOptions, CDN_URLS, CDN_URL_MODE, CUSTOM_VALIDATION_FN, CacheService, ClipboardIconComponent, ClockComponent, CoerceBooleanInput, CommonCountryLookupService, DefaultStorage, DigitOnlyDirective, DndDirective, DrawerHostDirective, Environment, FlagIconComponent, HttpRequestCache, IBAN_SUPPORTED_COUNTRIES, IfWidthIsDirective, LOOKUP_COUNTRY_SERVICE_URL, LOOKUP_COUNTRY_URL, LayoutAfterNavComponent, LayoutComponent, LayoutContentComponent, LayoutDrawerActionsComponent, LayoutDrawerContentComponent, LayoutDrawerTitleComponent, LayoutFooterComponent, LayoutLeftSidenavComponent, LayoutLoginMenuComponent, LayoutRouteComponent, LayoutSidenavComponent, LayoutSidenavTitleComponent, LayoutSubrouteComponent, LayoutTitleComponent, MAT_SELECTSEARCH_DEFAULT_OPTIONS, MatAvatarType, MatRowClickableDirective, MatSelectNoEntriesFoundDirective, MatSelectSearchClearDirective, MatSelectSearchComponent, MatSelectSearchModule, MatTimePickerToggle, MatTimepickerComponentDialogComponent, MatTimepickerDirective, MatTimepickerToggleIconDirective, NISS_MASK, ONEMRVA_MAT_LUXON_DATE_FORMATS, ONEMRVA_MAT_LUXON_YEAR_MONTH_FORMATS, ONEMRVA_MAT_NATIVE_DATE_FORMAT, ONEMRVA_MAT_NATIVE_YEAR_MONTH_FORMAT, ONEMRVA_THEME, ONEMRVA_THEME_CLASS, ObservableContent, OnemRvaAddress, OnemRvaCDNCountryService, OnemRvaCDNMimeService, OnemRvaCDNService, OnemRvaClipboardDirective, OnemRvaColorDirective, OnemRvaIconRightDirective, OnemRvaOSMService, OnemRvaProfile, OnemRvaReadonlyDirective, OnemRvaSizeDirective, OnemrvaBcePipe, OnemrvaCopyToClipboardComponent, OnemrvaCountryItemComponent, OnemrvaDateFormatDirective, OnemrvaDrawerService, OnemrvaErrorHandler, OnemrvaFilePanelComponent, OnemrvaLayoutModule, OnemrvaLeftSidenavService, OnemrvaLuxonDateAdapter, OnemrvaMaskDirective, OnemrvaMatAvatarComponent, OnemrvaMatAvatarModule, OnemrvaMatBreadcrumbComponent, OnemrvaMatBreadcrumbModule, OnemrvaMatBreadcrumbService, OnemrvaMatCarouselComponent, OnemrvaMatCarouselItemComponent, OnemrvaMatChoiceChipComponent, OnemrvaMatDatepickerHeaderComponent, OnemrvaMatEmptyRowComponent, OnemrvaMatFileUploadComponent, OnemrvaMatFileUploadModule, OnemrvaMatFileUploadService, OnemrvaMatFileUploadStore, OnemrvaMatInputAddressComponent, OnemrvaMatInputBirthPlaceComponent, OnemrvaMatInputCountryComponent, OnemrvaMatInputEnterpriseNumberComponent, OnemrvaMatInputIbanComponent, OnemrvaMatInputPhoneComponent, OnemrvaMatLoadingDirective, OnemrvaMatMessageBoxComponent, OnemrvaMatMessageBoxModule, OnemrvaMatMultiSelectComponent, OnemrvaMatMultiSelectModule, OnemrvaMatNavigationComponent, OnemrvaMatNavigationItemComponent, OnemrvaMatNotificationComponent, OnemrvaMatPaginatorComponent, OnemrvaMatPaginatorModule, OnemrvaMatPanelComponent, OnemrvaMatPanelContentComponent, OnemrvaMatPanelIconComponent, OnemrvaMatPanelModule, OnemrvaMatPanelTitleActionComponent, OnemrvaMatPanelTitleComponent, OnemrvaMatPopOverComponent, OnemrvaMatPopOverContentComponent, OnemrvaMatPopOverModule, OnemrvaMatPopOverTriggerComponent, OnemrvaMatProgressBarComponent, OnemrvaMatSelectableBoxComponent, OnemrvaMatSelectableBoxModule, OnemrvaMatSideMenuComponent, OnemrvaMatSideMenuModule, OnemrvaMatSkeletoTypes, OnemrvaMatSkeletonAnimations, OnemrvaMatSkeletonComponent, OnemrvaMatSkeletonModule, OnemrvaMatSpinnerComponent, OnemrvaMatSpinnerModule, OnemrvaMatStepperComponent, OnemrvaMatStepperModule, OnemrvaMatStickerComponent, OnemrvaMatStickerModule, OnemrvaMatTableOfContentComponent, OnemrvaMatTableOfContentDirective, OnemrvaMatTableOfContentService, OnemrvaMatTaskComponent, OnemrvaMatTaskContentComponent, OnemrvaMatTaskListComponent, OnemrvaMatTaskListModule, OnemrvaMatTaskTitleComponent, OnemrvaMatTimepickerComponent, OnemrvaMatTimepickerModule, OnemrvaMatToastComponent, OnemrvaMatToastModule, OnemrvaMatTocAnchorLevel, OnemrvaMatTocAnchorStatus, OnemrvaMatTooltipComponent, OnemrvaMatTooltipDirective, OnemrvaMatTooltipModule, OnemrvaMissingTranslationHandler, OnemrvaNativeDateAdapter, OnemrvaNissPipe, OnemrvaPageNotFoundModule, OnemrvaSharedModule, OnemrvaTranslateCDNLoader, OnemrvaTranslateHttpLoader, OnemrvaValidators, PageNotFoundActionComponent, PageNotFoundComponent, PageNotFoundExtraComponent, PageNotFoundInvaderComponent, PhoneNumberDirective, RequestTimes, SEPA_ONLY_SUPPORTED_COUNTRIES, StripHtmlPipe, ToastType, WebComponentOverlayContainer, bankAccountValidator, components, configurableDefaultOptions, convertToProgressFile, convertToReferencedProgressFile, directives, formatBytes, formattedSize, layoutComponents, onemrvaDateLuxonProvider, onemrvaDateLuxonYearMonthProvider, onemrvaDateNativeProvider, onemrvaDateNativeYearMonthProvider, onemrvaThemeProvider, setTranslationLanguage, setTranslationLanguageFromWO };
|
|
3099
3108
|
export type { ActionConfig, ConfigurableDefaultOptions, CustomValidationFn, FileUploadStoreEvent, HttpCacheOptions, HttpCacheStorage, MatSelectSearchOptions, MimeDefinition, NavItem, OSMAddress, OSMResult, OnemRvaCommonCountry, OnemRvaLanguage, OnemrvaMatFileUploadInterface, OnemrvaMatFileUploadStoreItf, OnemrvaMatToc, OnemrvaMatTocAnchor, OnemrvaMaterialCountry, OnemrvaMenu, OnemrvaSkeletonLoaderConfigTheme, ProgressFile, ReferencedProgressFile, UploadState };
|
package/mat-address/index.d.ts
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
3
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { FormGroup, FormControl } from '@angular/forms';
|
|
4
4
|
import { OSMResult } from '@onemrvapublic/design-system/shared';
|
|
5
5
|
|
|
6
6
|
declare class OnemRvaAddress implements OnInit {
|
|
7
|
+
defaultCountry: string;
|
|
8
|
+
form: FormGroup<{
|
|
9
|
+
country: FormControl<string | null>;
|
|
10
|
+
street: FormControl<string | null>;
|
|
11
|
+
postal_code: FormControl<string | null>;
|
|
12
|
+
city: FormControl<string | null>;
|
|
13
|
+
street_number: FormControl<string | null>;
|
|
14
|
+
box: FormControl<string | null>;
|
|
15
|
+
}>;
|
|
7
16
|
update: EventEmitter<{
|
|
8
17
|
country?: string;
|
|
9
18
|
street?: string;
|
|
10
19
|
postal_code?: string;
|
|
11
20
|
city?: string;
|
|
12
21
|
street_number?: string;
|
|
22
|
+
box?: string;
|
|
13
23
|
}>;
|
|
14
|
-
countryForm: FormControl<string | null>;
|
|
15
|
-
|
|
16
|
-
postalCodeControl: FormControl<string | null>;
|
|
17
|
-
cityControl: FormControl<string | null>;
|
|
18
|
-
|
|
19
|
-
numeroControl: FormControl<string | null>;
|
|
24
|
+
get countryForm(): FormControl<string | null>;
|
|
25
|
+
get streetControl(): FormControl<string | null>;
|
|
26
|
+
get postalCodeControl(): FormControl<string | null>;
|
|
27
|
+
get cityControl(): FormControl<string | null>;
|
|
28
|
+
get boxControl(): FormControl<string | null>;
|
|
29
|
+
get numeroControl(): FormControl<string | null>;
|
|
20
30
|
ngOnInit(): void;
|
|
21
31
|
onAddressSelected(result: OSMResult): void;
|
|
22
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemRvaAddress, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OnemRvaAddress, "onemrva-address", never, {}, { "update": "update"; }, never, never, true, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnemRvaAddress, "onemrva-address", never, { "defaultCountry": { "alias": "defaultCountry"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, { "update": "update"; }, never, never, true, never>;
|
|
24
34
|
}
|
|
25
35
|
|
|
26
36
|
export { OnemRvaAddress };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onemrvapublic/design-system",
|
|
3
|
-
"version": "20.3.0-develop.
|
|
3
|
+
"version": "20.3.0-develop.4",
|
|
4
4
|
"description": "Design System Onem/Rva without theme included",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"types": "./mat-breadcrumb/index.d.ts",
|
|
61
61
|
"default": "./fesm2022/onemrvapublic-design-system-mat-breadcrumb.mjs"
|
|
62
62
|
},
|
|
63
|
-
"./mat-carousel": {
|
|
64
|
-
"types": "./mat-carousel/index.d.ts",
|
|
65
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-carousel.mjs"
|
|
66
|
-
},
|
|
67
63
|
"./mat-choice-chip": {
|
|
68
64
|
"types": "./mat-choice-chip/index.d.ts",
|
|
69
65
|
"default": "./fesm2022/onemrvapublic-design-system-mat-choice-chip.mjs"
|
|
70
66
|
},
|
|
67
|
+
"./mat-carousel": {
|
|
68
|
+
"types": "./mat-carousel/index.d.ts",
|
|
69
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-carousel.mjs"
|
|
70
|
+
},
|
|
71
71
|
"./mat-copy-to-clipboard": {
|
|
72
72
|
"types": "./mat-copy-to-clipboard/index.d.ts",
|
|
73
73
|
"default": "./fesm2022/onemrvapublic-design-system-mat-copy-to-clipboard.mjs"
|
package/shared/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, InjectionToken, OnDestroy, EventEmitter, OnInit,
|
|
2
|
+
import { ElementRef, InjectionToken, OnDestroy, EventEmitter, OnInit, ErrorHandler, PipeTransform, Provider } from '@angular/core';
|
|
3
3
|
import { MatDateFormats, NativeDateAdapter, DateAdapter } from '@angular/material/core';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, Subject, BehaviorSubject, ReplaySubject } from 'rxjs';
|
|
@@ -8,7 +8,6 @@ import { HttpClient } from '@angular/common/http';
|
|
|
8
8
|
import { ValidatorFn } from '@angular/forms';
|
|
9
9
|
import { OnemrvaMatColor, OnemrvaMatSize } from '@onemrvapublic/design-system/utils';
|
|
10
10
|
import { BreakpointObserver, Breakpoints } from '@angular/cdk/layout';
|
|
11
|
-
import { MatInput } from '@angular/material/input';
|
|
12
11
|
import { DateTime } from 'luxon';
|
|
13
12
|
|
|
14
13
|
declare class ClipboardIconComponent {
|
|
@@ -224,12 +223,12 @@ declare class OnemRvaSizeDirective {
|
|
|
224
223
|
static ɵdir: i0.ɵɵDirectiveDeclaration<OnemRvaSizeDirective, "mat-icon[size], onemrva-mat-skeleton[size], onemrva-mat-avatar[size], button[size]", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
225
224
|
}
|
|
226
225
|
|
|
227
|
-
declare class
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
232
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
226
|
+
declare class OnemRvaReadonlyDirective {
|
|
227
|
+
readonly: boolean;
|
|
228
|
+
/** @hidden @internal */
|
|
229
|
+
get isReadOnly(): boolean;
|
|
230
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnemRvaReadonlyDirective, never>;
|
|
231
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OnemRvaReadonlyDirective, "form[readonly], mat-checkbox[readonly], mat-form-field[readonly], onemrva-mat-input-phone[readonly],onemrva-mat-input-birthplace[readonly],onemrva-mat-input-country[readonly],onemrva-mat-input-enterprise-number[readonly]", never, { "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never, true, never>;
|
|
233
232
|
}
|
|
234
233
|
|
|
235
234
|
declare const directives: any[];
|
|
@@ -461,7 +460,7 @@ declare const bankAccountValidator: (allowEmptyCountry?: boolean) => ValidatorFn
|
|
|
461
460
|
|
|
462
461
|
declare class OnemrvaSharedModule {
|
|
463
462
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemrvaSharedModule, never>;
|
|
464
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OnemrvaSharedModule, never, [typeof DigitOnlyDirective, typeof MatRowClickableDirective, typeof OnemRvaClipboardDirective, typeof OnemRvaIconRightDirective, typeof IfWidthIsDirective, typeof OnemRvaColorDirective, typeof OnemrvaMaskDirective, typeof OnemrvaDateFormatDirective, typeof
|
|
463
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OnemrvaSharedModule, never, [typeof DigitOnlyDirective, typeof MatRowClickableDirective, typeof OnemRvaClipboardDirective, typeof OnemRvaIconRightDirective, typeof IfWidthIsDirective, typeof OnemRvaColorDirective, typeof OnemrvaMaskDirective, typeof OnemrvaDateFormatDirective, typeof OnemRvaReadonlyDirective], [typeof DigitOnlyDirective, typeof MatRowClickableDirective, typeof OnemRvaClipboardDirective, typeof OnemRvaIconRightDirective, typeof IfWidthIsDirective, typeof OnemRvaColorDirective, typeof OnemrvaMaskDirective, typeof OnemrvaDateFormatDirective, typeof OnemRvaReadonlyDirective]>;
|
|
465
464
|
static ɵinj: i0.ɵɵInjectorDeclaration<OnemrvaSharedModule>;
|
|
466
465
|
}
|
|
467
466
|
|
|
@@ -538,5 +537,5 @@ declare function onemrvaThemeProvider(): Provider[];
|
|
|
538
537
|
declare const LOOKUP_COUNTRY_SERVICE_URL: InjectionToken<string>;
|
|
539
538
|
declare const ONEMRVA_THEME_CLASS: InjectionToken<string>;
|
|
540
539
|
|
|
541
|
-
export { CDNUrlModeOptions, CDN_URLS, CDN_URL_MODE, CacheService, ClipboardIconComponent, CommonCountryLookupService, DefaultStorage, DigitOnlyDirective, HttpRequestCache, IBAN_SUPPORTED_COUNTRIES, IfWidthIsDirective, LOOKUP_COUNTRY_SERVICE_URL, LOOKUP_COUNTRY_URL, MatRowClickableDirective, NISS_MASK, ONEMRVA_MAT_LUXON_DATE_FORMATS, ONEMRVA_MAT_LUXON_YEAR_MONTH_FORMATS, ONEMRVA_MAT_NATIVE_DATE_FORMAT, ONEMRVA_MAT_NATIVE_YEAR_MONTH_FORMAT, ONEMRVA_THEME, ONEMRVA_THEME_CLASS, OnemRvaCDNCountryService, OnemRvaCDNMimeService, OnemRvaCDNService, OnemRvaClipboardDirective, OnemRvaColorDirective, OnemRvaIconRightDirective, OnemRvaOSMService, OnemRvaSizeDirective, OnemrvaBcePipe, OnemrvaDateFormatDirective, OnemrvaErrorHandler, OnemrvaLuxonDateAdapter, OnemrvaMaskDirective, OnemrvaMissingTranslationHandler, OnemrvaNativeDateAdapter, OnemrvaNissPipe, OnemrvaSharedModule, OnemrvaTranslateCDNLoader, OnemrvaTranslateHttpLoader, OnemrvaValidators,
|
|
540
|
+
export { CDNUrlModeOptions, CDN_URLS, CDN_URL_MODE, CacheService, ClipboardIconComponent, CommonCountryLookupService, DefaultStorage, DigitOnlyDirective, HttpRequestCache, IBAN_SUPPORTED_COUNTRIES, IfWidthIsDirective, LOOKUP_COUNTRY_SERVICE_URL, LOOKUP_COUNTRY_URL, MatRowClickableDirective, NISS_MASK, ONEMRVA_MAT_LUXON_DATE_FORMATS, ONEMRVA_MAT_LUXON_YEAR_MONTH_FORMATS, ONEMRVA_MAT_NATIVE_DATE_FORMAT, ONEMRVA_MAT_NATIVE_YEAR_MONTH_FORMAT, ONEMRVA_THEME, ONEMRVA_THEME_CLASS, OnemRvaCDNCountryService, OnemRvaCDNMimeService, OnemRvaCDNService, OnemRvaClipboardDirective, OnemRvaColorDirective, OnemRvaIconRightDirective, OnemRvaOSMService, OnemRvaReadonlyDirective, OnemRvaSizeDirective, OnemrvaBcePipe, OnemrvaDateFormatDirective, OnemrvaErrorHandler, OnemrvaLuxonDateAdapter, OnemrvaMaskDirective, OnemrvaMissingTranslationHandler, OnemrvaNativeDateAdapter, OnemrvaNissPipe, OnemrvaSharedModule, OnemrvaTranslateCDNLoader, OnemrvaTranslateHttpLoader, OnemrvaValidators, RequestTimes, SEPA_ONLY_SUPPORTED_COUNTRIES, WebComponentOverlayContainer, bankAccountValidator, directives, onemrvaDateLuxonProvider, onemrvaDateLuxonYearMonthProvider, onemrvaDateNativeProvider, onemrvaDateNativeYearMonthProvider, onemrvaThemeProvider, setTranslationLanguage, setTranslationLanguageFromWO };
|
|
542
541
|
export type { HttpCacheOptions, HttpCacheStorage, MimeDefinition, OSMAddress, OSMResult, OnemRvaCommonCountry, OnemrvaMaterialCountry };
|