@eui/components 19.0.4-snapshot-1738753092246 → 19.0.5-snapshot-1739184007407
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/directives/eui-tooltip/eui-tooltip.directive.d.ts.map +1 -1
- package/docs/components/EuiAlertComponent.html +129 -0
- package/docs/components/EuiAlertTitleComponent.html +12 -0
- package/docs/components/EuiChipComponent.html +108 -1
- package/docs/components/EuiPaginatorComponent.html +204 -0
- package/docs/dependencies.html +2 -2
- package/docs/js/menu-wc.js +12 -12
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/modules/EuiAlertModule.html +11 -0
- package/docs/modules/EuiChipModule.html +11 -0
- package/docs/modules/EuiPaginatorModule.html +11 -0
- package/eui-alert/components/eui-alert-title.component.d.ts +1 -0
- package/eui-alert/components/eui-alert-title.component.d.ts.map +1 -1
- package/eui-alert/eui-alert.component.d.ts +74 -0
- package/eui-alert/eui-alert.component.d.ts.map +1 -1
- package/eui-alert/eui-alert.module.d.ts +12 -0
- package/eui-alert/eui-alert.module.d.ts.map +1 -1
- package/eui-chip/eui-chip.component.d.ts +71 -0
- package/eui-chip/eui-chip.component.d.ts.map +1 -1
- package/eui-chip/eui-chip.module.d.ts +12 -0
- package/eui-chip/eui-chip.module.d.ts.map +1 -1
- package/eui-paginator/eui-paginator.component.d.ts +148 -4
- package/eui-paginator/eui-paginator.component.d.ts.map +1 -1
- package/eui-paginator/eui-paginator.module.d.ts +12 -0
- package/eui-paginator/eui-paginator.module.d.ts.map +1 -1
- package/eui-timepicker/eui-timepicker.component.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-alert.mjs +84 -2
- package/fesm2022/eui-components-eui-alert.mjs.map +1 -1
- package/fesm2022/eui-components-eui-chip.mjs +74 -0
- package/fesm2022/eui-components-eui-chip.mjs.map +1 -1
- package/fesm2022/eui-components-eui-date-range-selector.mjs +4 -4
- package/fesm2022/eui-components-eui-date-range-selector.mjs.map +1 -1
- package/fesm2022/eui-components-eui-paginator.mjs +152 -5
- package/fesm2022/eui-components-eui-paginator.mjs.map +1 -1
- package/fesm2022/eui-components-eui-timepicker.mjs +35 -28
- package/fesm2022/eui-components-eui-timepicker.mjs.map +1 -1
- package/package.json +3 -3
@@ -112,6 +112,17 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
+
<p class="comment">
|
116
|
+
<h3>Description</h3>
|
117
|
+
</p>
|
118
|
+
<p class="comment">
|
119
|
+
<p>Module that provides the EuiAlert component and its dependencies</p>
|
120
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">```typescript
|
121
|
+
\@NgModule({
|
122
|
+
imports: [EuiAlertModule]
|
123
|
+
})
|
124
|
+
export class YourModule { }</code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-none"></code></pre></div>
|
125
|
+
</p>
|
115
126
|
|
116
127
|
|
117
128
|
<div class="container-fluid module">
|
@@ -112,6 +112,17 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
+
<p class="comment">
|
116
|
+
<h3>Description</h3>
|
117
|
+
</p>
|
118
|
+
<p class="comment">
|
119
|
+
<p>Module that provides the EuiChip component and its dependencies</p>
|
120
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">```typescript
|
121
|
+
\@NgModule({
|
122
|
+
imports: [EuiChipModule]
|
123
|
+
})
|
124
|
+
export class YourModule { }</code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-none"></code></pre></div>
|
125
|
+
</p>
|
115
126
|
|
116
127
|
|
117
128
|
<div class="container-fluid module">
|
@@ -112,6 +112,17 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
+
<p class="comment">
|
116
|
+
<h3>Description</h3>
|
117
|
+
</p>
|
118
|
+
<p class="comment">
|
119
|
+
<p>Module that provides the EuiPaginator component and its dependencies</p>
|
120
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">```typescript
|
121
|
+
\@NgModule({
|
122
|
+
imports: [EuiPaginatorModule]
|
123
|
+
})
|
124
|
+
export class YourModule { }</code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-none"></code></pre></div>
|
125
|
+
</p>
|
115
126
|
|
116
127
|
|
117
128
|
<div class="container-fluid module">
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class EuiAlertTitleComponent {
|
3
|
+
/** Sets the `class` attribute for the host element. */
|
3
4
|
class: string;
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAlertTitleComponent, never>;
|
5
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAlertTitleComponent, "eui-alert-title", never, {}, {}, never, ["*"], false, never>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-alert-title.component.d.ts","sourceRoot":"","sources":["../../../eui-alert/components/eui-alert-title.component.ts"],"names":[],"mappings":";AAEA,qBAKa,sBAAsB;
|
1
|
+
{"version":3,"file":"eui-alert-title.component.d.ts","sourceRoot":"","sources":["../../../eui-alert/components/eui-alert-title.component.ts"],"names":[],"mappings":";AAEA,qBAKa,sBAAsB;IAC/B,uDAAuD;IACjC,KAAK,SAAqB;yCAFvC,sBAAsB;2CAAtB,sBAAsB;CAGlC"}
|
@@ -3,25 +3,99 @@ import { BaseStatesDirective } from '@eui/components/shared';
|
|
3
3
|
import { EuiAlertTitleComponent } from './components/eui-alert-title.component';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
import * as i1 from "@eui/components/shared";
|
6
|
+
/**
|
7
|
+
* @description
|
8
|
+
* Alert displays a short, important message to attract the user's attention without interrupting its task.
|
9
|
+
*
|
10
|
+
* @example
|
11
|
+
*
|
12
|
+
* ```html
|
13
|
+
* <eui-alert>
|
14
|
+
* Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam accumsan semper lorem, ac mollis lacus tincidunt eu.
|
15
|
+
* </eui-alert>
|
16
|
+
* ```
|
17
|
+
*
|
18
|
+
* See {@link https://eui.ecdevops.eu/eui-showcase-ux-components-19.x/style-guide/components/eui-alert}.
|
19
|
+
*/
|
6
20
|
export declare class EuiAlertComponent implements OnInit {
|
7
21
|
baseStatesDirective: BaseStatesDirective;
|
22
|
+
/**
|
23
|
+
* Sets the `class` attribute for the host element.
|
24
|
+
*
|
25
|
+
* @returns A string with all CSS classes applied.
|
26
|
+
*/
|
8
27
|
get cssClasses(): string;
|
28
|
+
/**
|
29
|
+
* Sets the `role` attribute for the host element.
|
30
|
+
*
|
31
|
+
* @default 'alert'
|
32
|
+
*/
|
9
33
|
role: string;
|
34
|
+
/**
|
35
|
+
* Sets the `aria-describedby` attribute for the host element.
|
36
|
+
*
|
37
|
+
* @default `alertContent-${uniqueId}`
|
38
|
+
* @returns The ID of the element associated with the alert.
|
39
|
+
*/
|
10
40
|
get ariaDescribedBy(): string;
|
41
|
+
/**
|
42
|
+
* Sets the `tabindex` attribute for the host element.
|
43
|
+
*
|
44
|
+
* @returns '0' if defined as focusable else '1' as string.
|
45
|
+
*/
|
11
46
|
get tabindex(): string;
|
47
|
+
/**
|
48
|
+
* Sets the `data-e2e` attribute for the host element. Default: `eui-alert`.
|
49
|
+
*
|
50
|
+
* @default 'eui-alert'
|
51
|
+
*/
|
12
52
|
e2eAttr: string;
|
53
|
+
/**
|
54
|
+
* Removes the left border and icon from the alert.
|
55
|
+
*
|
56
|
+
* @default false
|
57
|
+
*/
|
13
58
|
isMuted: boolean;
|
59
|
+
/**
|
60
|
+
* Removes the left border and icon from the alert.
|
61
|
+
*
|
62
|
+
* @default false
|
63
|
+
*/
|
14
64
|
isBordered: boolean;
|
65
|
+
/**
|
66
|
+
* Allows the alert to be closed by the user.
|
67
|
+
*
|
68
|
+
* @default false
|
69
|
+
*/
|
15
70
|
isCloseable: boolean;
|
71
|
+
/**
|
72
|
+
* Allows the alert to be focused by the user.
|
73
|
+
*
|
74
|
+
* @default false
|
75
|
+
*/
|
16
76
|
isFocusable: boolean;
|
77
|
+
/**
|
78
|
+
* Controls the visibility of the alert. Default: true
|
79
|
+
*
|
80
|
+
* @default true
|
81
|
+
*/
|
17
82
|
isVisible: boolean;
|
83
|
+
/**
|
84
|
+
* Event emitted when the alert is closed.
|
85
|
+
*/
|
18
86
|
closeAlert: EventEmitter<boolean>;
|
87
|
+
/**
|
88
|
+
* Content for the alert title given by `<eui-alert-title>`.
|
89
|
+
*/
|
19
90
|
alertTitle: QueryList<EuiAlertTitleComponent>;
|
20
91
|
alertIconType: string;
|
21
92
|
alertIconFillColor: string;
|
22
93
|
private uniqueId;
|
23
94
|
constructor(baseStatesDirective: BaseStatesDirective);
|
24
95
|
ngOnInit(): void;
|
96
|
+
/**
|
97
|
+
* Hide the alert and emits the `closeAlert` event when the close button is clicked.
|
98
|
+
*/
|
25
99
|
onCloseClick(): void;
|
26
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAlertComponent, never>;
|
27
101
|
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAlertComponent, "div[euiAlert], eui-alert", never, { "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; }; "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "isMuted": { "alias": "isMuted"; "required": false; }; "isBordered": { "alias": "isBordered"; "required": false; }; "isCloseable": { "alias": "isCloseable"; "required": false; }; "isFocusable": { "alias": "isFocusable"; "required": false; }; "isVisible": { "alias": "isVisible"; "required": false; }; }, { "closeAlert": "closeAlert"; }, ["alertTitle"], ["*", "eui-alert-title", "*", "*", "*", "*"], false, [{ directive: typeof i1.BaseStatesDirective; inputs: { "euiPrimary": "euiPrimary"; "euiSuccess": "euiSuccess"; "euiInfo": "euiInfo"; "euiWarning": "euiWarning"; "euiDanger": "euiDanger"; "euiVariant": "euiVariant"; }; outputs: {}; }]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-alert.component.d.ts","sourceRoot":"","sources":["../../eui-alert/eui-alert.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,YAAY,EAIZ,MAAM,EAGN,SAAS,EAEZ,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;;;AAEhF,
|
1
|
+
{"version":3,"file":"eui-alert.component.d.ts","sourceRoot":"","sources":["../../eui-alert/eui-alert.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,YAAY,EAIZ,MAAM,EAGN,SAAS,EAEZ,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;;;AAEhF;;;;;;;;;;;;;GAaG;AACH,qBAqBa,iBAAkB,YAAW,MAAM;IAsGzB,mBAAmB,EAAE,mBAAmB;IArG3D;;;;OAIG;IACH,IACW,UAAU,IAAI,MAAM,CAW9B;IAED;;;;OAIG;IACuB,IAAI,SAAW;IAEzC;;;;;OAKG;IACH,IAEI,eAAe,IAAI,MAAM,CAE5B;IACD;;;;OAIG;IACH,IACI,QAAQ,IAAI,MAAM,CAErB;IACD;;;;OAIG;IAGH,OAAO,SAAe;IAEtB;;;;OAIG;IACqC,OAAO,UAAS;IACxD;;;;OAIG;IACqC,UAAU,UAAS;IAC3D;;;;OAIG;IACqC,WAAW,UAAS;IAC5D;;;;OAIG;IACqC,WAAW,UAAS;IAC5D;;;;OAIG;IACqC,SAAS,UAAQ;IAEzD;;OAEG;IACO,UAAU,wBAA+B;IAEnD;;OAEG;IACwE,UAAU,EAAE,SAAS,CAAC,sBAAsB,CAAC,CAAC;IAEzH,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAE3B,OAAO,CAAC,QAAQ,CAAS;gBAEN,mBAAmB,EAAE,mBAAmB;IAE3D,QAAQ,IAAI,IAAI;IAIhB;;OAEG;IACH,YAAY,IAAI,IAAI;yCA/GX,iBAAiB;2CAAjB,iBAAiB;sCAoHkgtC,OAAQ;yCAAR,OAAQ;0CAAR,OAAQ;0CAAR,OAAQ;wCAAR,OAAQ;CADvitC"}
|
@@ -9,6 +9,18 @@ import * as i7 from "@eui/components/eui-label";
|
|
9
9
|
import * as i8 from "@eui/components/eui-button";
|
10
10
|
import * as i9 from "@eui/components/eui-icon-state";
|
11
11
|
import * as i10 from "@eui/components/eui-icon-button";
|
12
|
+
/**
|
13
|
+
* @description
|
14
|
+
* Module that provides the EuiAlert component and its dependencies
|
15
|
+
*
|
16
|
+
* @example
|
17
|
+
* ```typescript
|
18
|
+
* \@NgModule({
|
19
|
+
* imports: [EuiAlertModule]
|
20
|
+
* })
|
21
|
+
* export class YourModule { }
|
22
|
+
* ```
|
23
|
+
*/
|
12
24
|
export declare class EuiAlertModule {
|
13
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAlertModule, never>;
|
14
26
|
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiAlertModule, [typeof i1.EuiAlertComponent, typeof i2.EuiAlertTitleComponent], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.BaseStatesDirective, typeof i6.EuiIconModule, typeof i7.EuiLabelModule, typeof i8.EuiButtonModule, typeof i9.EuiIconStateModule, typeof i10.EuiIconButtonModule], [typeof i1.EuiAlertComponent, typeof i2.EuiAlertTitleComponent]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-alert.module.d.ts","sourceRoot":"","sources":["../../eui-alert/eui-alert.module.ts"],"names":[],"mappings":";;;;;;;;;;;
|
1
|
+
{"version":3,"file":"eui-alert.module.d.ts","sourceRoot":"","sources":["../../eui-alert/eui-alert.module.ts"],"names":[],"mappings":";;;;;;;;;;;AA2BA;;;;;;;;;;;GAWG;AACH,qBAYa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
|
@@ -4,28 +4,99 @@ import { EuiIconSvgComponent } from '@eui/components/eui-icon';
|
|
4
4
|
import { EuiChip } from './models/eui-chip.model';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
import * as i1 from "@eui/components/shared";
|
7
|
+
/**
|
8
|
+
* @description
|
9
|
+
* Chips are compact elements that allow users to enter information, select a choice, filter content or trigger an action.
|
10
|
+
* The eui-chip component can also be displayed dynamically as a group of multiple interactive elements, see eui-chip-list.
|
11
|
+
*
|
12
|
+
* @example
|
13
|
+
*
|
14
|
+
* ```html
|
15
|
+
* <eui-chip>Chip label</eui-chip>
|
16
|
+
* ```
|
17
|
+
*
|
18
|
+
* See {@link https://eui.ecdevops.eu/eui-showcase-ux-components-19.x/style-guide/components/eui-chip}.
|
19
|
+
*/
|
7
20
|
export declare class EuiChipComponent implements AfterContentInit {
|
8
21
|
private _elementRef;
|
9
22
|
baseStatesDirective: BaseStatesDirective;
|
23
|
+
/**
|
24
|
+
* Sets the `class` attribute for the host element.
|
25
|
+
*
|
26
|
+
* @returns A string with all CSS classes applied.
|
27
|
+
*/
|
10
28
|
get cssClasses(): string;
|
29
|
+
/**
|
30
|
+
* Sets the `role` attribute for the host element.
|
31
|
+
*
|
32
|
+
* @default 'status'
|
33
|
+
*/
|
11
34
|
role: string;
|
35
|
+
/**
|
36
|
+
* Sets the `aria-label` attribute for the host element.
|
37
|
+
*
|
38
|
+
* @default 'Chip content'
|
39
|
+
*/
|
12
40
|
ariaLabel: string;
|
41
|
+
/**
|
42
|
+
* Sets the `data-e2e` attribute for the host element.
|
43
|
+
*
|
44
|
+
* @default 'eui-chip'
|
45
|
+
*/
|
13
46
|
e2eAttr: string;
|
47
|
+
/**
|
48
|
+
* Sets the euiInternalId of the chip.
|
49
|
+
*
|
50
|
+
* @default null
|
51
|
+
*/
|
14
52
|
euiInternalId: string;
|
53
|
+
/**
|
54
|
+
* Sets the label of the tooltip to diaply on hover.
|
55
|
+
*/
|
15
56
|
tooltipMessage: string;
|
57
|
+
/**
|
58
|
+
* Sets the id of the chip.
|
59
|
+
*/
|
16
60
|
id: string | number;
|
61
|
+
/**
|
62
|
+
* Sets the data of the chip like tooltip configuration.
|
63
|
+
*/
|
17
64
|
data: any;
|
65
|
+
/**
|
66
|
+
* Wether the chip can be removed.
|
67
|
+
*
|
68
|
+
* @default false
|
69
|
+
*/
|
18
70
|
isChipRemovable: boolean;
|
71
|
+
/**
|
72
|
+
* @deprecated This option is not applicable anymore to comply design System.
|
73
|
+
*/
|
19
74
|
isSquared: boolean;
|
75
|
+
/**
|
76
|
+
* Wether the chip is filled with color.
|
77
|
+
*
|
78
|
+
* @default false
|
79
|
+
*/
|
20
80
|
isFilled: boolean;
|
81
|
+
/**
|
82
|
+
* Event emitted when the chip is removed.
|
83
|
+
*/
|
21
84
|
remove: EventEmitter<EuiChip | EuiChipComponent | {
|
22
85
|
chip: EuiChipComponent | EuiChip;
|
23
86
|
event?: Event;
|
24
87
|
}>;
|
88
|
+
/**
|
89
|
+
* Icon declares by user in the chip
|
90
|
+
*/
|
25
91
|
euiIcons: QueryList<EuiIconSvgComponent>;
|
26
92
|
chipLabel: ElementRef<HTMLInputElement>;
|
27
93
|
constructor(_elementRef: ElementRef, baseStatesDirective: BaseStatesDirective);
|
28
94
|
ngAfterContentInit(): void;
|
95
|
+
/**
|
96
|
+
* Remove chip handler
|
97
|
+
*
|
98
|
+
* @param event Click event
|
99
|
+
*/
|
29
100
|
onRemove(event?: Event): void;
|
30
101
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiChipComponent, never>;
|
31
102
|
static ɵcmp: i0.ɵɵComponentDeclaration<EuiChipComponent, "eui-chip, span[euiChip], li[euiChip]", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "euiInternalId": { "alias": "euiInternalId"; "required": false; }; "tooltipMessage": { "alias": "tooltipMessage"; "required": false; }; "id": { "alias": "id"; "required": false; }; "data": { "alias": "data"; "required": false; }; "isChipRemovable": { "alias": "isChipRemovable"; "required": false; }; "isSquared": { "alias": "isSquared"; "required": false; }; "isFilled": { "alias": "isFilled"; "required": false; }; }, { "remove": "remove"; }, ["euiIcons"], ["*"], false, [{ directive: typeof i1.BaseStatesDirective; inputs: { "euiPrimary": "euiPrimary"; "euiSecondary": "euiSecondary"; "euiSuccess": "euiSuccess"; "euiInfo": "euiInfo"; "euiWarning": "euiWarning"; "euiDanger": "euiDanger"; "euiAccent": "euiAccent"; "euiVariant": "euiVariant"; "euiSizeS": "euiSizeS"; "euiOutline": "euiOutline"; "euiDisabled": "euiDisabled"; }; outputs: {}; }]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-chip.component.d.ts","sourceRoot":"","sources":["../../eui-chip/eui-chip.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAOH,SAAS,EACT,gBAAgB,EAEhB,YAAY,EAEZ,UAAU,EAEb,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;;;AAElD,qBAyBa,gBAAiB,YAAW,gBAAgB;
|
1
|
+
{"version":3,"file":"eui-chip.component.d.ts","sourceRoot":"","sources":["../../eui-chip/eui-chip.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAOH,SAAS,EACT,gBAAgB,EAEhB,YAAY,EAEZ,UAAU,EAEb,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;;;AAElD;;;;;;;;;;;;GAYG;AACH,qBAyBa,gBAAiB,YAAW,gBAAgB;IA+FjD,OAAO,CAAC,WAAW;IACZ,mBAAmB,EAAE,mBAAmB;IA/FnD;;;;OAIG;IACH,IACI,UAAU,IAAI,MAAM,CAMvB;IAED;;;;OAIG;IACuB,IAAI,SAAY;IAC1C;;;;OAIG;IACsC,SAAS,SAAkB;IAEpE;;;;OAIG;IAGH,OAAO,SAAc;IAErB;;;;OAIG;IACM,aAAa,EAAE,MAAM,CAAQ;IACtC;;OAEG;IACM,cAAc,EAAE,MAAM,CAAC;IAChC;;OAEG;IACM,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;IAC7B;;OAEG;IAIM,IAAI,EAAE,GAAG,CAOhB;IAEF;;;;OAIG;IACqC,eAAe,UAAS;IAChE;;OAEG;IACqC,SAAS,UAAS;IAC1D;;;;OAIG;IACqC,QAAQ,UAAS;IAEzD;;OAEG;IACO,MAAM;cAAyD,gBAAgB,GAAG,OAAO;gBAAU,KAAK;OAAM;IAExH;;OAEG;IACqD,QAAQ,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC;IACzE,SAAS,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGpD,WAAW,EAAE,UAAU,EACxB,mBAAmB,EAAE,mBAAmB;IAInD,kBAAkB,IAAI,IAAI;IAU1B;;;;OAIG;IACI,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI;yCAnH3B,gBAAgB;2CAAhB,gBAAgB;8CA2Hm+rC,OAAQ;wCAAR,OAAQ;uCAAR,OAAQ;CADvgsC"}
|
@@ -4,6 +4,18 @@ import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@eui/components/eui-icon";
|
5
5
|
import * as i4 from "@eui/components/eui-icon-button";
|
6
6
|
import * as i5 from "@eui/components/directives";
|
7
|
+
/**
|
8
|
+
* @description
|
9
|
+
* Module that provides the EuiChip component and its dependencies
|
10
|
+
*
|
11
|
+
* @example
|
12
|
+
* ```typescript
|
13
|
+
* \@NgModule({
|
14
|
+
* imports: [EuiChipModule]
|
15
|
+
* })
|
16
|
+
* export class YourModule { }
|
17
|
+
* ```
|
18
|
+
*/
|
7
19
|
export declare class EuiChipModule {
|
8
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiChipModule, never>;
|
9
21
|
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiChipModule, [typeof i1.EuiChipComponent], [typeof i2.CommonModule, typeof i3.EuiIconModule, typeof i4.EuiIconButtonModule, typeof i5.EuiTooltipDirectiveModule], [typeof i1.EuiChipComponent]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-chip.module.d.ts","sourceRoot":"","sources":["../../eui-chip/eui-chip.module.ts"],"names":[],"mappings":";;;;;;AASA,qBAKa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
1
|
+
{"version":3,"file":"eui-chip.module.d.ts","sourceRoot":"","sources":["../../eui-chip/eui-chip.module.ts"],"names":[],"mappings":";;;;;;AASA;;;;;;;;;;;GAWG;AACH,qBAKa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
@@ -4,26 +4,134 @@ import { EuiAppShellService } from '@eui/core';
|
|
4
4
|
import { EuiPaginationEvent } from './models/pagination-event.model';
|
5
5
|
import { DecimalPipe } from '@angular/common';
|
6
6
|
import * as i0 from "@angular/core";
|
7
|
+
/**
|
8
|
+
* @description
|
9
|
+
* The eui-paginator component is in charge of the pagination by splitting up content or data into several pages and adding visual controls for better user experience like:
|
10
|
+
* - identifying the current page : clearly identify which page the user is on by displaying the current page number.
|
11
|
+
* - providing context into how many pages there are in total : can help provide clarity around the data displayed.
|
12
|
+
* - providing various options for navigating : previous and next chevrons or links are the most useful way for the user to move forward or backward through pages of data.
|
13
|
+
* - items per page : allows to select the amount of data displayed per page.
|
14
|
+
*
|
15
|
+
* Best practices & Usage
|
16
|
+
* Generally, pagination is recommended to be used if there are more than 25 items displayed in one view. The default number of displayed items may vary depending on the context.
|
17
|
+
*
|
18
|
+
* The main benefits of using pagination :
|
19
|
+
* - delivers structure and feedback over the displayed data
|
20
|
+
* - supports embedded navigation (and in particular back and forward, first and last)
|
21
|
+
* - pagination is accessible (see A11Y)
|
22
|
+
* - pagination typically means smaller, shorter pages and as a result reduced load times
|
23
|
+
* - compared to infinite scroll display, it helps to focus the user's mind and not continue to offer more and more choices.
|
24
|
+
*
|
25
|
+
* @example
|
26
|
+
* ```typescript
|
27
|
+
* public dataSource: any[] = [
|
28
|
+
* { id: 0 },
|
29
|
+
* ];
|
30
|
+
* ```
|
31
|
+
*
|
32
|
+
* ```html
|
33
|
+
* <eui-paginator [length]="dataSource.length"></eui-paginator>
|
34
|
+
* ```
|
35
|
+
*
|
36
|
+
* See {@link https://eui.ecdevops.eu/eui-showcase-ux-components-19.x/style-guide/components/eui-paginator}.
|
37
|
+
*/
|
7
38
|
export declare class EuiPaginatorComponent implements OnInit, OnDestroy, OnChanges {
|
8
39
|
EuiAppShellService: EuiAppShellService;
|
9
40
|
private decimal;
|
41
|
+
/**
|
42
|
+
* Sets the `data-e2e` attribute for the host element.
|
43
|
+
*
|
44
|
+
* @default 'eui-paginator'
|
45
|
+
*/
|
10
46
|
e2eAttr: string;
|
47
|
+
/**
|
48
|
+
* Sets the `class` attribute for the host element.
|
49
|
+
*
|
50
|
+
* @returns A string with all CSS classes applied.
|
51
|
+
*/
|
11
52
|
get cssClasses(): string;
|
53
|
+
/**
|
54
|
+
* Sets the page size options that will be displayed in the dropdown.
|
55
|
+
*
|
56
|
+
* @default [5, 10, 25, 50, 100]
|
57
|
+
*/
|
12
58
|
pageSizeOptions: number[];
|
59
|
+
/**
|
60
|
+
* Sets the number of items displayed in the page.
|
61
|
+
*
|
62
|
+
* @default 10
|
63
|
+
*/
|
13
64
|
pageSize: number;
|
65
|
+
/**
|
66
|
+
* Sets the current page number.
|
67
|
+
*
|
68
|
+
* @default 0
|
69
|
+
*/
|
14
70
|
page: number;
|
71
|
+
/**
|
72
|
+
* Sets the total number of items.
|
73
|
+
*
|
74
|
+
* @default 0
|
75
|
+
*/
|
15
76
|
length: number;
|
77
|
+
/**
|
78
|
+
* In combination with `hasPageNumberNavigation`, sets the number of page numbers displayed in the paginator.
|
79
|
+
*
|
80
|
+
* @default 5
|
81
|
+
*/
|
16
82
|
nbPageNumberNavigation: number;
|
83
|
+
/**
|
84
|
+
* Wheter the paginator is hidden or not.
|
85
|
+
*
|
86
|
+
* @default false (visible)
|
87
|
+
*/
|
17
88
|
isHidden: boolean;
|
89
|
+
/**
|
90
|
+
* Wheter the paginator is in basic mode or not.
|
91
|
+
* In this mode, the paginator will only display the previous and next buttons.
|
92
|
+
*
|
93
|
+
* @default false
|
94
|
+
*/
|
18
95
|
isBasicMode: boolean;
|
96
|
+
/**
|
97
|
+
* Wheter the page number are displayed or not.
|
98
|
+
*
|
99
|
+
* @default false
|
100
|
+
*/
|
19
101
|
hasPageNumberNavigation: boolean;
|
102
|
+
/**
|
103
|
+
* Wheter the datasource length is dynamic or not.
|
104
|
+
*
|
105
|
+
* @default false
|
106
|
+
*/
|
20
107
|
hasDynamicLength: boolean;
|
108
|
+
/**
|
109
|
+
* Wheter the page size is displayed or not. Default: true.
|
110
|
+
*
|
111
|
+
* @default true
|
112
|
+
*/
|
21
113
|
hasPageSize: boolean;
|
114
|
+
/** Event emitted when the page has changed. */
|
22
115
|
pageChange: EventEmitter<EuiPaginationEvent>;
|
116
|
+
/**
|
117
|
+
* Observable that emits the current page number, the page size and the number of pages.
|
118
|
+
*/
|
23
119
|
page$: BehaviorSubject<EuiPaginationEvent>;
|
120
|
+
/**
|
121
|
+
* Observable that emits the length of the datasource
|
122
|
+
*/
|
24
123
|
length$: BehaviorSubject<number>;
|
124
|
+
/**
|
125
|
+
* The range of items displayed in the paginator.
|
126
|
+
*/
|
25
127
|
range: string;
|
128
|
+
/**
|
129
|
+
* The range length of items displayed in the paginator.
|
130
|
+
*/
|
26
131
|
rangeLength: string;
|
132
|
+
/**
|
133
|
+
* The number of pages.
|
134
|
+
*/
|
27
135
|
nbPage: number;
|
28
136
|
private nbPageNumberNav;
|
29
137
|
private destroy$;
|
@@ -31,25 +139,61 @@ export declare class EuiPaginatorComponent implements OnInit, OnDestroy, OnChang
|
|
31
139
|
ngOnChanges(c: SimpleChanges): void;
|
32
140
|
ngOnInit(): void;
|
33
141
|
ngOnDestroy(): void;
|
142
|
+
/**
|
143
|
+
* Returns the page number navigation array.
|
144
|
+
*
|
145
|
+
* @returns An array of page numbers.
|
146
|
+
*/
|
34
147
|
get pageNumberNavigation(): number[];
|
148
|
+
/**
|
149
|
+
* Changes the page size by the one provided as parameter.
|
150
|
+
*
|
151
|
+
* @param size New page size.
|
152
|
+
*/
|
35
153
|
changePageSize(size: string): void;
|
154
|
+
/**
|
155
|
+
* Sets the page number to the one provided as parameter.
|
156
|
+
*
|
157
|
+
* @param page New page
|
158
|
+
* @param options
|
159
|
+
* `emitEvent`: When true or not provided, event is emitted. When false, no events are emitted
|
160
|
+
*/
|
36
161
|
goToPage(page: number, options?: {
|
37
162
|
emitEvent: boolean;
|
38
163
|
}): void;
|
164
|
+
/**
|
165
|
+
* Sets the page number to 0 (first page).
|
166
|
+
*
|
167
|
+
* @param options
|
168
|
+
* `emitEvent`: When true or not provided, event is emitted. When false, no events are emitted
|
169
|
+
*/
|
39
170
|
goFirstPage(options?: {
|
40
171
|
emitEvent: boolean;
|
41
172
|
}): void;
|
173
|
+
/**
|
174
|
+
* Sets the page number to current - 1.
|
175
|
+
*/
|
42
176
|
goPreviousPage(): void;
|
177
|
+
/**
|
178
|
+
* Sets the page number to current + 1.
|
179
|
+
*/
|
43
180
|
goNextPage(): void;
|
181
|
+
/**
|
182
|
+
* Sets the page number to last page.
|
183
|
+
*/
|
44
184
|
goLastPage(): void;
|
185
|
+
/**
|
186
|
+
* Gives new values to page number, page size and number of pages.
|
187
|
+
*/
|
45
188
|
setPage(page: EuiPaginationEvent): void;
|
189
|
+
/**
|
190
|
+
* Gives new value to the length of the datasource.
|
191
|
+
*/
|
46
192
|
setLength(length: number): void;
|
47
|
-
getRange(): void;
|
48
193
|
/**
|
49
|
-
*
|
50
|
-
*
|
51
|
-
* @param page 0-based page number to be displayed
|
194
|
+
* Calculates the range of items displayed in the paginator.
|
52
195
|
*/
|
196
|
+
getRange(): void;
|
53
197
|
/**
|
54
198
|
* Change the pagination to the given page number
|
55
199
|
*
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-paginator.component.d.ts","sourceRoot":"","sources":["../../eui-paginator/eui-paginator.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,MAAM,EAEN,SAAS,EACT,YAAY,EAEZ,SAAS,EACT,aAAa,EAGhB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAW,eAAe,EAAE,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;;AAE9C,qBAOa,qBAAsB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;
|
1
|
+
{"version":3,"file":"eui-paginator.component.d.ts","sourceRoot":"","sources":["../../eui-paginator/eui-paginator.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,MAAM,EAEN,SAAS,EACT,YAAY,EAEZ,SAAS,EACT,aAAa,EAGhB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAW,eAAe,EAAE,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;;AAE9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,qBAOa,qBAAsB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IA6G3D,kBAAkB,EAAE,kBAAkB;IAC7C,OAAO,CAAC,OAAO;IA7GnB;;;;OAIG;IACoC,OAAO,SAAmB;IACjE;;;;OAIG;IACH,IACI,UAAU,IAAI,MAAM,CAKvB;IACD;;;;OAIG;IACM,eAAe,EAAE,MAAM,EAAE,CAAwB;IAC1D;;;;OAIG;IACM,QAAQ,SAAM;IACvB;;;;OAIG;IACM,IAAI,SAAK;IAClB;;;;OAIG;IACM,MAAM,SAAK;IACpB;;;;OAIG;IACM,sBAAsB,SAAK;IACpC;;;;OAIG;IACqC,QAAQ,UAAS;IACzD;;;;;OAKG;IACqC,WAAW,UAAS;IAC5D;;;;OAIG;IACqC,uBAAuB,UAAS;IACxE;;;;OAIG;IACqC,gBAAgB,UAAS;IACjE;;;;OAIG;IACqC,WAAW,UAAQ;IAE3D,+CAA+C;IACrC,UAAU,mCAA0C;IAE9D;;OAEG;IACI,KAAK,EAAE,eAAe,CAAC,kBAAkB,CAAC,CAA6B;IAC9E;;OAEG;IACI,OAAO,EAAE,eAAe,CAAC,MAAM,CAAC,CAA0B;IACjE;;OAEG;IACI,KAAK,EAAE,MAAM,CAAC;IACrB;;OAEG;IACI,WAAW,EAAE,MAAM,CAAC;IAC3B;;OAEG;IACI,MAAM,EAAE,MAAM,CAAC;IAEtB,OAAO,CAAC,eAAe,CAAS;IAChC,OAAO,CAAC,QAAQ,CAA4C;gBAGjD,kBAAkB,EAAE,kBAAkB,EACrC,OAAO,EAAE,WAAW;IAGhC,WAAW,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAenC,QAAQ,IAAI,IAAI;IA0BhB,WAAW,IAAI,IAAI;IAKnB;;;;OAIG;IACH,IAAI,oBAAoB,IAAI,MAAM,EAAE,CAwBnC;IAED;;;;OAIG;IACI,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAgBzC;;;;;;OAMG;IACI,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,SAAS,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI;IAUrE;;;;;OAKG;IACI,WAAW,CAAC,OAAO,CAAC,EAAE;QAAE,SAAS,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI;IAU1D;;OAEG;IACI,cAAc,IAAI,IAAI;IAO7B;;OAEG;IACI,UAAU,IAAI,IAAI;IAOzB;;OAEG;IACI,UAAU,IAAI,IAAI;IAOzB;;OAEG;IACI,OAAO,CAAC,IAAI,EAAE,kBAAkB,GAAG,IAAI;IAI9C;;OAEG;IACI,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAItC;;OAEG;IACI,QAAQ,IAAI,IAAI;IAQvB;;;;;;OAMG;IACI,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,SAAS,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI;yCAlT3D,qBAAqB;2CAArB,qBAAqB;uCAwTqv+B,OAAQ;0CAAR,OAAQ;sDAAR,OAAQ;+CAAR,OAAQ;0CAAR,OAAQ;CAD9x+B"}
|
@@ -6,6 +6,18 @@ import * as i4 from "@eui/components/eui-button";
|
|
6
6
|
import * as i5 from "@ngx-translate/core";
|
7
7
|
import * as i6 from "@angular/forms";
|
8
8
|
import * as i7 from "@eui/components/eui-select";
|
9
|
+
/**
|
10
|
+
* @description
|
11
|
+
* Module that provides the EuiPaginator component and its dependencies
|
12
|
+
*
|
13
|
+
* @example
|
14
|
+
* ```typescript
|
15
|
+
* \@NgModule({
|
16
|
+
* imports: [EuiPaginatorModule]
|
17
|
+
* })
|
18
|
+
* export class YourModule { }
|
19
|
+
* ```
|
20
|
+
*/
|
9
21
|
export declare class EuiPaginatorModule {
|
10
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiPaginatorModule, never>;
|
11
23
|
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiPaginatorModule, [typeof i1.EuiPaginatorComponent], [typeof i2.CommonModule, typeof i3.EuiIconModule, typeof i4.EuiButtonModule, typeof i5.TranslateModule, typeof i6.FormsModule, typeof i7.EuiSelectModule], [typeof i1.EuiPaginatorComponent]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-paginator.module.d.ts","sourceRoot":"","sources":["../../eui-paginator/eui-paginator.module.ts"],"names":[],"mappings":";;;;;;;;AAWA,qBAYa,kBAAkB;yCAAlB,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAAG"}
|
1
|
+
{"version":3,"file":"eui-paginator.module.d.ts","sourceRoot":"","sources":["../../eui-paginator/eui-paginator.module.ts"],"names":[],"mappings":";;;;;;;;AAWA;;;;;;;;;;;GAWG;AACH,qBAYa,kBAAkB;yCAAlB,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAAG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-timepicker.component.d.ts","sourceRoot":"","sources":["../../eui-timepicker/eui-timepicker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIH,MAAM,EAIN,OAAO,EACP,SAAS,EACT,aAAa,EACb,SAAS,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,SAAS,EAAE,WAAW,EAAc,MAAM,gBAAgB,CAAC;AAK1F,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;;AAE9D,qBAOa,sBAAuB,YAAW,oBAAoB,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,EAAE,SAAS;IA0C9E,OAAO,CAAC,OAAO;IAzCvC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,OAAO,CAAC;IAC1B,mBAAmB,mBAAqB;IACxC,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IAEd,eAAe,UAAS;IACxB,iBAAiB,UAAS;IAC1B,iBAAiB,UAAS;IAC1B,mBAAmB,UAAS;IAC5B,iBAAiB,UAAS;IAC1B,mBAAmB,UAAS;IAE1B,OAAO,SAAoB;IAC3B,OAAO,SAAkC;IAEzC,QAAQ,SAAU;IAClB,WAAW,SAAiB;IAE5B,SAAS,SAAK;IACd,WAAW,SAAK;IAChB,WAAW,SAAK;IAChB,QAAQ,SAAO;IAEgB,UAAU,UAAS;IACnB,eAAe,UAAS;IACxB,UAAU,UAAS;IAE3D,SAAS,CAAC,wBAAwB,EAAE,OAAO,CAAC;IAC5C,OAAO,CAAC,gBAAgB,CAItB;IACF,OAAO,CAAC,QAAQ,CAA4C;gBAGV,MAAM,EAAE,uBAAuB,EACjD,OAAO,EAAE,SAAS;IAsBlD,QAAQ,IAAI,IAAI;
|
1
|
+
{"version":3,"file":"eui-timepicker.component.d.ts","sourceRoot":"","sources":["../../eui-timepicker/eui-timepicker.component.ts"],"names":[],"mappings":"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"}
|
@@ -168,7 +168,7 @@ class EuiTooltipDirective {
|
|
168
168
|
const scrollStrategy = this.overlay.scrollStrategies.reposition({ scrollThrottle: 10 });
|
169
169
|
this.overlayRef = this.overlay.create({
|
170
170
|
hasBackdrop: false,
|
171
|
-
panelClass: 'eui-tooltip__container',
|
171
|
+
panelClass: ['eui-tooltip__container', 'eui-19'],
|
172
172
|
positionStrategy,
|
173
173
|
scrollStrategy,
|
174
174
|
});
|