@eui/mobile-core 18.0.2-snapshot-1736326513935 → 18.0.2-snapshot-1737014430100
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/docs/components/EuimToolbarDatepickerComponent.html +113 -2
- package/docs/components/EuimUserProfileComponent.html +1 -1
- package/docs/dependencies.html +4 -4
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/lib/components/atoms/euim-label/euim-label.component.mjs +2 -2
- package/esm2022/lib/components/euim-badge/euim-badge.component.mjs +2 -2
- package/esm2022/lib/components/euim-toolbar-datepicker/euim-toolbar-datepicker.component.mjs +34 -13
- package/esm2022/lib/components/layout/euim-header-details/euim-header-details.component.mjs +2 -2
- package/esm2022/lib/components/layout/euim-sidebar/euim-sidebar.component.mjs +2 -2
- package/esm2022/lib/components/layout/euim-user-profile/euim-user-profile.component.mjs +3 -3
- package/fesm2022/eui-mobile-core.mjs +78 -59
- package/fesm2022/eui-mobile-core.mjs.map +1 -1
- package/lib/components/euim-toolbar-datepicker/euim-toolbar-datepicker.component.d.ts +11 -2
- package/lib/components/euim-toolbar-datepicker/euim-toolbar-datepicker.component.d.ts.map +1 -1
- package/lib/components/layout/euim-user-profile/euim-user-profile.component.d.ts +1 -1
- package/lib/components/layout/euim-user-profile/euim-user-profile.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2,10 +2,14 @@ import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { ModalController } from '@ionic/angular';
|
|
3
3
|
import { BaseStatesDirective } from '../base-states.directive';
|
|
4
4
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { Location } from '@angular/common';
|
|
6
|
+
import { Router } from '@angular/router';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
import * as i1 from "../base-states.directive";
|
|
7
9
|
export declare class EuimToolbarDatepickerComponent implements OnInit, OnDestroy {
|
|
8
10
|
baseStatesDirective: BaseStatesDirective;
|
|
11
|
+
private router;
|
|
12
|
+
private location;
|
|
9
13
|
private translate;
|
|
10
14
|
private modalController;
|
|
11
15
|
icon: string;
|
|
@@ -14,6 +18,7 @@ export declare class EuimToolbarDatepickerComponent implements OnInit, OnDestroy
|
|
|
14
18
|
euimPrevBtnDisabled: boolean;
|
|
15
19
|
euimNextBtnDisabled: boolean;
|
|
16
20
|
euimReadOnly: boolean;
|
|
21
|
+
closeModalOnBack: boolean;
|
|
17
22
|
selectDateBy: 'week';
|
|
18
23
|
prevBtnClick: EventEmitter<Date>;
|
|
19
24
|
nextBtnClick: EventEmitter<Date>;
|
|
@@ -21,13 +26,14 @@ export declare class EuimToolbarDatepickerComponent implements OnInit, OnDestroy
|
|
|
21
26
|
weekDayName: string;
|
|
22
27
|
protected formattedDate: string;
|
|
23
28
|
protected selectedDate: string;
|
|
29
|
+
private isModalOpen;
|
|
24
30
|
private weekdays;
|
|
25
31
|
private _dateTimeId;
|
|
26
32
|
private langChangeSubscription;
|
|
27
33
|
protected currentLang: string;
|
|
28
34
|
protected modalId: string;
|
|
29
35
|
get cssClasses(): string;
|
|
30
|
-
constructor(baseStatesDirective: BaseStatesDirective, translate: TranslateService, modalController: ModalController);
|
|
36
|
+
constructor(baseStatesDirective: BaseStatesDirective, router: Router, location: Location, translate: TranslateService, modalController: ModalController);
|
|
31
37
|
dismissModal(): Promise<void>;
|
|
32
38
|
get dateTimeId(): string;
|
|
33
39
|
protected set dateTimeId(val: string);
|
|
@@ -35,6 +41,8 @@ export declare class EuimToolbarDatepickerComponent implements OnInit, OnDestroy
|
|
|
35
41
|
ngOnInit(): void;
|
|
36
42
|
ngOnDestroy(): void;
|
|
37
43
|
getCssClasses(): string;
|
|
44
|
+
onModalPresent(): void;
|
|
45
|
+
onModalDismiss(): void;
|
|
38
46
|
updateCurrentDate(date: string): void;
|
|
39
47
|
calendarDateChanged(event: Event): void;
|
|
40
48
|
protected selectPrevDate(): void;
|
|
@@ -42,9 +50,10 @@ export declare class EuimToolbarDatepickerComponent implements OnInit, OnDestroy
|
|
|
42
50
|
private loadWeekdaysTranslation;
|
|
43
51
|
private formatDateAndWeekDay;
|
|
44
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuimToolbarDatepickerComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuimToolbarDatepickerComponent, "euim-toolbar-datepicker", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "euimPrevBtnDisabled": { "alias": "euimPrevBtnDisabled"; "required": false; }; "euimNextBtnDisabled": { "alias": "euimNextBtnDisabled"; "required": false; }; "euimReadOnly": { "alias": "euimReadOnly"; "required": false; }; "selectDateBy": { "alias": "selectDateBy"; "required": false; }; }, { "prevBtnClick": "prevBtnClick"; "nextBtnClick": "nextBtnClick"; "dateChanged": "dateChanged"; }, never, never, false, [{ directive: typeof i1.BaseStatesDirective; inputs: { "color": "color"; }; outputs: {}; }]>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuimToolbarDatepickerComponent, "euim-toolbar-datepicker", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "euimPrevBtnDisabled": { "alias": "euimPrevBtnDisabled"; "required": false; }; "euimNextBtnDisabled": { "alias": "euimNextBtnDisabled"; "required": false; }; "euimReadOnly": { "alias": "euimReadOnly"; "required": false; }; "closeModalOnBack": { "alias": "closeModalOnBack"; "required": false; }; "selectDateBy": { "alias": "selectDateBy"; "required": false; }; }, { "prevBtnClick": "prevBtnClick"; "nextBtnClick": "nextBtnClick"; "dateChanged": "dateChanged"; }, never, never, false, [{ directive: typeof i1.BaseStatesDirective; inputs: { "color": "color"; }; outputs: {}; }]>;
|
|
46
54
|
static ngAcceptInputType_euimPrevBtnDisabled: unknown;
|
|
47
55
|
static ngAcceptInputType_euimNextBtnDisabled: unknown;
|
|
48
56
|
static ngAcceptInputType_euimReadOnly: unknown;
|
|
57
|
+
static ngAcceptInputType_closeModalOnBack: unknown;
|
|
49
58
|
}
|
|
50
59
|
//# sourceMappingURL=euim-toolbar-datepicker.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"euim-toolbar-datepicker.component.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/euim-toolbar-datepicker/euim-toolbar-datepicker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,YAAY,EAGL,MAAM,EAEb,SAAS,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAmB,MAAM,qBAAqB,CAAC;;;
|
|
1
|
+
{"version":3,"file":"euim-toolbar-datepicker.component.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/euim-toolbar-datepicker/euim-toolbar-datepicker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,YAAY,EAGL,MAAM,EAEb,SAAS,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAmB,MAAM,qBAAqB,CAAC;AAExE,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;;;AAEzC,qBAca,8BACT,YAAW,MAAM,EAAE,SAAS;IAkCT,mBAAmB,EAAE,mBAAmB;IAAE,OAAO,CAAC,MAAM;IAAU,OAAO,CAAC,QAAQ;IAAY,OAAO,CAAC,SAAS;IAAoB,OAAO,CAAC,eAAe;IAjCpK,IAAI,SAAoB;IACxB,KAAK,EAAG,MAAM,CAAC;IACf,QAAQ,EAAG,MAAM,CAAC;IAE3B,mBAAmB,EAAE,OAAO,CAAC;IAE7B,mBAAmB,EAAC,OAAO,CAAC;IAE5B,YAAY,EAAC,OAAO,CAAC;IAErB,gBAAgB,EAAC,OAAO,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IAEpB,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAC5D,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAC5D,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAErE,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,aAAa,EAAE,MAAM,CAAC;IAChC,SAAS,CAAC,YAAY,EAAE,MAAM,CAAC;IAE/B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,QAAQ,CAAM;IACtB,OAAO,CAAC,WAAW,CAAU;IAC7B,OAAO,CAAC,sBAAsB,CAAe;IAC7C,SAAS,CAAC,WAAW,EAAE,MAAM,CAAC;IAE9B,SAAS,CAAC,OAAO,EAAE,MAAM,CAAC;IAC1B,IACW,UAAU,IAAI,MAAM,CAE9B;gBAEkB,mBAAmB,EAAE,mBAAmB,EAAU,MAAM,EAAE,MAAM,EAAU,QAAQ,EAAE,QAAQ,EAAU,SAAS,EAAE,gBAAgB,EAAU,eAAe,EAAE,eAAe;IAOxL,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC;IAOnC,IAAI,UAAU,IAAI,MAAM,CAEvB;IAED,SAAS,KAAK,UAAU,CAAC,GAAG,EAAC,MAAM,EAElC;IAED,SAAS,CAAC,WAAW,EAAE,IAAI,CAAC;IAE5B,QAAQ,IAAK,IAAI;IAejB,WAAW,IAAI,IAAI;IASnB,aAAa,IAAI,MAAM;IAMvB,cAAc,IAAI,IAAI;IAStB,cAAc,IAAI,IAAI;IAItB,iBAAiB,CAAC,IAAI,EAAC,MAAM,GAAG,IAAI;IAOpC,mBAAmB,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IASvC,SAAS,CAAC,cAAc,IAAI,IAAI;IAahC,SAAS,CAAC,cAAc,IAAI,IAAI;IAahC,OAAO,CAAC,uBAAuB;IAM/B,OAAO,CAAC,oBAAoB;yCAtJnB,8BAA8B;2CAA9B,8BAA8B;kDA2J8+gC,OAAQ;kDAAR,OAAQ;2CAAR,OAAQ;+CAAR,OAAQ;CADhihC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class EuimUserProfileComponent {
|
|
3
|
-
color: 'dark' | 'white' | 'primary' | 'info' | 'success' | 'warning' | 'danger';
|
|
3
|
+
color: 'dark' | 'white' | 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'branding';
|
|
4
4
|
get cssClasses(): string;
|
|
5
5
|
getCssClasses(): string;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuimUserProfileComponent, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"euim-user-profile.component.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/layout/euim-user-profile/euim-user-profile.component.ts"],"names":[],"mappings":";AACA,qBAQa,wBAAwB;IACxB,KAAK,EAAG,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"euim-user-profile.component.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/layout/euim-user-profile/euim-user-profile.component.ts"],"names":[],"mappings":";AACA,qBAQa,wBAAwB;IACxB,KAAK,EAAG,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;IAEvG,IACI,UAAU,IAAI,MAAM,CAEvB;IAED,aAAa,IAAI,MAAM;yCARd,wBAAwB;2CAAxB,wBAAwB;CAcpC"}
|