@eui/components 17.0.2 → 17.0.3-snapshot-1703039070543
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/EuiDatepickerComponent.html +459 -1518
- package/docs/components/EuiTimepickerComponent.html +73 -1
- package/docs/dependencies.html +2 -2
- package/docs/interfaces/EuiDateTimePickerConfig.html +117 -0
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/directives/eui-tooltip/eui-tooltip.directive.mjs +2 -2
- package/esm2022/eui-datepicker/eui-datepicker.component.mjs +79 -105
- package/esm2022/eui-timepicker/eui-timepicker.component.mjs +25 -15
- package/esm2022/eui-timepicker/models/eui-date-time-picker.config.model.mjs +1 -1
- package/esm2022/layout/eui-app/eui-app-breadcrumb/breadcrumb.component.mjs +2 -2
- package/esm2022/layout/eui-breadcrumb/breadcrumb.component.mjs +2 -2
- package/esm2022/layout/eui-breadcrumb/collapsed-breadcrumb/collapsed-breadcrumb.component.mjs +2 -2
- package/esm2022/layout/eui-breadcrumb/item/breadcrumb-item.component.mjs +2 -2
- package/eui-datepicker/eui-datepicker.component.d.ts +31 -36
- package/eui-datepicker/eui-datepicker.component.d.ts.map +1 -1
- package/eui-timepicker/eui-timepicker.component.d.ts +7 -4
- package/eui-timepicker/eui-timepicker.component.d.ts.map +1 -1
- package/eui-timepicker/models/eui-date-time-picker.config.model.d.ts +3 -0
- package/eui-timepicker/models/eui-date-time-picker.config.model.d.ts.map +1 -1
- package/fesm2022/eui-components-directives.mjs +1 -1
- package/fesm2022/eui-components-directives.mjs.map +1 -1
- package/fesm2022/eui-components-eui-datepicker.mjs +78 -104
- package/fesm2022/eui-components-eui-datepicker.mjs.map +1 -1
- package/fesm2022/eui-components-eui-timepicker.mjs +24 -14
- package/fesm2022/eui-components-eui-timepicker.mjs.map +1 -1
- package/fesm2022/eui-components-layout.mjs +8 -8
- package/fesm2022/eui-components-layout.mjs.map +1 -1
- package/package.json +8 -8
@@ -7,9 +7,10 @@ import { TranslateService } from '@ngx-translate/core';
|
|
7
7
|
import { Moment } from 'moment-timezone';
|
8
8
|
import { EuiTimepickerComponent } from '@eui/components/eui-timepicker';
|
9
9
|
import { LocaleService, EuiAppShellService } from '@eui/core';
|
10
|
-
import {
|
10
|
+
import { BaseStatesDirective } from '@eui/components/shared';
|
11
11
|
import * as i0 from "@angular/core";
|
12
|
-
|
12
|
+
import * as i1 from "@eui/components/shared";
|
13
|
+
export declare class EuiDatepickerComponent implements OnInit, AfterViewInit, ControlValueAccessor, OnDestroy, OnChanges, DoCheck {
|
13
14
|
private adapter;
|
14
15
|
private translateService;
|
15
16
|
private localeService;
|
@@ -18,8 +19,10 @@ export declare class EuiDatepickerComponent extends BaseDirective implements OnI
|
|
18
19
|
private injector;
|
19
20
|
private appRef;
|
20
21
|
private viewContainerRef;
|
22
|
+
baseStatesDirective: BaseStatesDirective;
|
21
23
|
euiLetterFormat: EuiLetterFormatDirective;
|
22
24
|
private control;
|
25
|
+
get cssClasses(): string;
|
23
26
|
inputFormControl: FormControl<any>;
|
24
27
|
breakpointsValue: any;
|
25
28
|
showDateButton: boolean;
|
@@ -44,50 +47,32 @@ export declare class EuiDatepickerComponent extends BaseDirective implements OnI
|
|
44
47
|
dateOutputFormat: string;
|
45
48
|
customHeader: any;
|
46
49
|
dateClass: MatCalendarCellClassFunction<any>;
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
set isDatepickerBlock(value: BooleanInput);
|
61
|
-
private _isDatepickerBlock;
|
62
|
-
get isReadOnly(): boolean;
|
63
|
-
set isReadOnly(value: BooleanInput);
|
64
|
-
private _isReadOnly;
|
65
|
-
get isDisabled(): boolean;
|
66
|
-
set isDisabled(value: BooleanInput);
|
67
|
-
private _isDisabled;
|
68
|
-
get isInputDisabled(): boolean;
|
69
|
-
set isInputDisabled(value: BooleanInput);
|
70
|
-
private _isInputDisabled;
|
71
|
-
get isButtonDisabled(): boolean;
|
72
|
-
set isButtonDisabled(value: BooleanInput);
|
73
|
-
private _isButtonDisabled;
|
74
|
-
get isPickerDisabled(): boolean;
|
75
|
-
set isPickerDisabled(value: BooleanInput);
|
76
|
-
private _isPickerDisabled;
|
50
|
+
stepHours: number;
|
51
|
+
stepMinutes: number;
|
52
|
+
stepSeconds: number;
|
53
|
+
isDatetimepicker: boolean;
|
54
|
+
hasSeconds: boolean;
|
55
|
+
isOneInputField: boolean;
|
56
|
+
hasNoButton: boolean;
|
57
|
+
isDatepickerBlock: boolean;
|
58
|
+
isReadOnly: boolean;
|
59
|
+
isDisabled: boolean;
|
60
|
+
isInputDisabled: boolean;
|
61
|
+
isButtonDisabled: boolean;
|
62
|
+
isPickerDisabled: boolean;
|
77
63
|
get isClearable(): boolean;
|
78
64
|
set isClearable(value: BooleanInput);
|
79
65
|
private _isClearable;
|
80
66
|
get restrictToRegex(): RegExp;
|
81
67
|
set restrictToRegex(value: string | RegExp);
|
82
68
|
private _restrictToRegex;
|
83
|
-
get cssClasses(): string;
|
84
69
|
private destroy$;
|
85
70
|
private format;
|
86
71
|
private portalHost;
|
87
72
|
private portal;
|
88
73
|
private templatePortal;
|
89
74
|
private isNull;
|
90
|
-
constructor(adapter: DateAdapter<any>, translateService: TranslateService, localeService: LocaleService, EuiAppShellService: EuiAppShellService, componentFactoryResolver: ComponentFactoryResolver, injector: Injector, appRef: ApplicationRef, viewContainerRef: ViewContainerRef, euiLetterFormat: EuiLetterFormatDirective, control: NgControl, format: MatDateFormats);
|
75
|
+
constructor(adapter: DateAdapter<any>, translateService: TranslateService, localeService: LocaleService, EuiAppShellService: EuiAppShellService, componentFactoryResolver: ComponentFactoryResolver, injector: Injector, appRef: ApplicationRef, viewContainerRef: ViewContainerRef, baseStatesDirective: BaseStatesDirective, euiLetterFormat: EuiLetterFormatDirective, control: NgControl, format: MatDateFormats);
|
91
76
|
ngOnInit(): void;
|
92
77
|
ngAfterViewInit(): void;
|
93
78
|
ngDoCheck(): void;
|
@@ -130,8 +115,18 @@ export declare class EuiDatepickerComponent extends BaseDirective implements OnI
|
|
130
115
|
private areSameDates;
|
131
116
|
private propagateChange;
|
132
117
|
private propagateTouched;
|
133
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiDatepickerComponent, [null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; self: true; }, null]>;
|
134
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiDatepickerComponent, "eui-datepicker", never, { "styleClass": { "alias": "styleClass"; "required": false; }; "value": { "alias": "value"; "required": false; }; "togglerIcon": { "alias": "togglerIcon"; "required": false; }; "togglerIconSvg": { "alias": "togglerIconSvg"; "required": false; }; "togglerLabel": { "alias": "togglerLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "startView": { "alias": "startView"; "required": false; }; "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "datepickerFilter": { "alias": "datepickerFilter"; "required": false; }; "dateOutputFormat": { "alias": "dateOutputFormat"; "required": false; }; "customHeader": { "alias": "customHeader"; "required": false; }; "dateClass": { "alias": "dateClass"; "required": false; }; "isDatetimepicker": { "alias": "isDatetimepicker"; "required": false; }; "hasSeconds": { "alias": "hasSeconds"; "required": false; }; "isOneInputField": { "alias": "isOneInputField"; "required": false; }; "hasNoButton": { "alias": "hasNoButton"; "required": false; }; "isDatepickerBlock": { "alias": "isDatepickerBlock"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isInputDisabled": { "alias": "isInputDisabled"; "required": false; }; "isButtonDisabled": { "alias": "isButtonDisabled"; "required": false; }; "isPickerDisabled": { "alias": "isPickerDisabled"; "required": false; }; "isClearable": { "alias": "isClearable"; "required": false; }; "restrictToRegex": { "alias": "restrictToRegex"; "required": false; }; }, { "inputChange": "inputChange"; "dateSelect": "dateSelect"; }, ["euiActionButtons"], ["eui-action-buttons"], false,
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EuiDatepickerComponent, [null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; self: true; }, null]>;
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiDatepickerComponent, "eui-datepicker", never, { "styleClass": { "alias": "styleClass"; "required": false; }; "value": { "alias": "value"; "required": false; }; "togglerIcon": { "alias": "togglerIcon"; "required": false; }; "togglerIconSvg": { "alias": "togglerIconSvg"; "required": false; }; "togglerLabel": { "alias": "togglerLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "startView": { "alias": "startView"; "required": false; }; "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "datepickerFilter": { "alias": "datepickerFilter"; "required": false; }; "dateOutputFormat": { "alias": "dateOutputFormat"; "required": false; }; "customHeader": { "alias": "customHeader"; "required": false; }; "dateClass": { "alias": "dateClass"; "required": false; }; "stepHours": { "alias": "stepHours"; "required": false; }; "stepMinutes": { "alias": "stepMinutes"; "required": false; }; "stepSeconds": { "alias": "stepSeconds"; "required": false; }; "isDatetimepicker": { "alias": "isDatetimepicker"; "required": false; }; "hasSeconds": { "alias": "hasSeconds"; "required": false; }; "isOneInputField": { "alias": "isOneInputField"; "required": false; }; "hasNoButton": { "alias": "hasNoButton"; "required": false; }; "isDatepickerBlock": { "alias": "isDatepickerBlock"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isInputDisabled": { "alias": "isInputDisabled"; "required": false; }; "isButtonDisabled": { "alias": "isButtonDisabled"; "required": false; }; "isPickerDisabled": { "alias": "isPickerDisabled"; "required": false; }; "isClearable": { "alias": "isClearable"; "required": false; }; "restrictToRegex": { "alias": "restrictToRegex"; "required": false; }; }, { "inputChange": "inputChange"; "dateSelect": "dateSelect"; }, ["euiActionButtons"], ["eui-action-buttons"], false, [{ directive: typeof i1.BaseStatesDirective; inputs: { "euiSuccess": "euiSuccess"; "euiInfo": "euiInfo"; "euiWarning": "euiWarning"; "euiDanger": "euiDanger"; "euiVariant": "euiVariant"; }; outputs: {}; }]>;
|
120
|
+
static ngAcceptInputType_isDatetimepicker: unknown;
|
121
|
+
static ngAcceptInputType_hasSeconds: unknown;
|
122
|
+
static ngAcceptInputType_isOneInputField: unknown;
|
123
|
+
static ngAcceptInputType_hasNoButton: unknown;
|
124
|
+
static ngAcceptInputType_isDatepickerBlock: unknown;
|
125
|
+
static ngAcceptInputType_isReadOnly: unknown;
|
126
|
+
static ngAcceptInputType_isDisabled: unknown;
|
127
|
+
static ngAcceptInputType_isInputDisabled: unknown;
|
128
|
+
static ngAcceptInputType_isButtonDisabled: unknown;
|
129
|
+
static ngAcceptInputType_isPickerDisabled: unknown;
|
135
130
|
}
|
136
131
|
export declare const LETTER_FORMAT: {
|
137
132
|
parse: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-datepicker.component.d.ts","sourceRoot":"","sources":["../../eui-datepicker/eui-datepicker.component.ts"],"names":[],"mappings":"AACA,OAAO,EACH,cAAc,EAEd,wBAAwB,EACxB,YAAY,EAEZ,QAAQ,EAER,SAAS,EACT,SAAS,EACT,OAAO,EACP,MAAM,EAIN,aAAa,EAQb,aAAa,EACb,WAAW,EACX,gBAAgB,
|
1
|
+
{"version":3,"file":"eui-datepicker.component.d.ts","sourceRoot":"","sources":["../../eui-datepicker/eui-datepicker.component.ts"],"names":[],"mappings":"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"}
|
@@ -20,9 +20,11 @@ export declare class EuiTimepickerComponent implements ControlValueAccessor, OnI
|
|
20
20
|
minutesDownDisabled: boolean;
|
21
21
|
secondsUpDisabled: boolean;
|
22
22
|
secondsDownDisabled: boolean;
|
23
|
-
private propagatedValues;
|
24
|
-
private destroy$;
|
25
23
|
e2eAttr: string;
|
24
|
+
timeMask: string;
|
25
|
+
stepHours: number;
|
26
|
+
stepMinutes: number;
|
27
|
+
stepSeconds: number;
|
26
28
|
get isreadOnly(): boolean;
|
27
29
|
set isreadOnly(value: BooleanInput);
|
28
30
|
private _isreadOnly;
|
@@ -32,7 +34,8 @@ export declare class EuiTimepickerComponent implements ControlValueAccessor, OnI
|
|
32
34
|
get hasSeconds(): boolean;
|
33
35
|
set hasSeconds(value: BooleanInput);
|
34
36
|
private _hasSeconds;
|
35
|
-
|
37
|
+
private propagatedValues;
|
38
|
+
private destroy$;
|
36
39
|
protected inputHoursElement: ElementRef<HTMLInputElement>;
|
37
40
|
protected inputMinsElement: ElementRef<HTMLInputElement>;
|
38
41
|
protected inputSecsElement: ElementRef<HTMLInputElement>;
|
@@ -71,6 +74,6 @@ export declare class EuiTimepickerComponent implements ControlValueAccessor, OnI
|
|
71
74
|
private propagateChange;
|
72
75
|
private propagateTouched;
|
73
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiTimepickerComponent, [{ optional: true; }, { optional: true; self: true; }]>;
|
74
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiTimepickerComponent, "eui-timepicker", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiTimepickerComponent, "eui-timepicker", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "timeMask": { "alias": "timeMask"; "required": false; }; "stepHours": { "alias": "stepHours"; "required": false; }; "stepMinutes": { "alias": "stepMinutes"; "required": false; }; "stepSeconds": { "alias": "stepSeconds"; "required": false; }; "isreadOnly": { "alias": "isreadOnly"; "required": false; }; "isOneInputField": { "alias": "isOneInputField"; "required": false; }; "hasSeconds": { "alias": "hasSeconds"; "required": false; }; }, {}, never, never, false, never>;
|
75
78
|
}
|
76
79
|
//# sourceMappingURL=eui-timepicker.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-timepicker.component.d.ts","sourceRoot":"","sources":["../../eui-timepicker/eui-timepicker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC5E,OAAO,EAEH,UAAU,EAGV,MAAM,EAKN,OAAO,EACP,SAAS,EACZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAK9E,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;;AAE9D,qBAMa,sBAAuB,YAAW,oBAAoB,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS;
|
1
|
+
{"version":3,"file":"eui-timepicker.component.d.ts","sourceRoot":"","sources":["../../eui-timepicker/eui-timepicker.component.ts"],"names":[],"mappings":"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"}
|
@@ -5,6 +5,9 @@ export interface EuiDateTimePickerConfig {
|
|
5
5
|
isDatetimepicker: boolean;
|
6
6
|
hasSeconds: boolean;
|
7
7
|
isOneInputField: boolean;
|
8
|
+
stepHours: number;
|
9
|
+
stepMinutes: number;
|
10
|
+
stepSeconds: number;
|
8
11
|
callbackFn: (hours: number, mins: number, secs?: number) => void;
|
9
12
|
}
|
10
13
|
//# sourceMappingURL=eui-date-time-picker.config.model.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-date-time-picker.config.model.d.ts","sourceRoot":"","sources":["../../../eui-timepicker/models/eui-date-time-picker.config.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,uBAAuB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gBAAgB,EAAE,OAAO,CAAC;IAC1B,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CACpE"}
|
1
|
+
{"version":3,"file":"eui-date-time-picker.config.model.d.ts","sourceRoot":"","sources":["../../../eui-timepicker/models/eui-date-time-picker.config.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,uBAAuB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gBAAgB,EAAE,OAAO,CAAC;IAC1B,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CACpE"}
|
@@ -251,7 +251,7 @@ class EuiTooltipDirective {
|
|
251
251
|
this.overlayRef.removePanelClass(positionClasses);
|
252
252
|
this.overlayRef.addPanelClass(['eui-tooltip--' + this.position]);
|
253
253
|
});
|
254
|
-
let colorClass =
|
254
|
+
let colorClass = 'secondary';
|
255
255
|
if (this.euiTooltipPrimary) {
|
256
256
|
colorClass = 'primary';
|
257
257
|
}
|