@eui/components 19.1.0-snapshot-1740057996064 → 19.1.0-snapshot-1740147515499
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/EuiAccordionComponent.html +30 -0
- package/docs/components/EuiAccordionItemComponent.html +49 -0
- package/docs/components/EuiBlockContentComponent.html +71 -2
- package/docs/dependencies.html +2 -2
- package/docs/directives/EuiAccordionItemHeaderDirective.html +18 -0
- package/docs/js/menu-wc.js +22 -13
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/modules/EuiAccordionModule.html +28 -17
- package/docs/modules/EuiBlockContentModule.html +29 -4
- package/eui-accordion/eui-accordion-item.component.d.ts +45 -2
- package/eui-accordion/eui-accordion-item.component.d.ts.map +1 -1
- package/eui-accordion/eui-accordion.component.d.ts +27 -1
- package/eui-accordion/eui-accordion.component.d.ts.map +1 -1
- package/eui-accordion/eui-accordion.module.d.ts +27 -5
- package/eui-accordion/eui-accordion.module.d.ts.map +1 -1
- package/eui-block-content/eui-block-content.component.d.ts +52 -7
- package/eui-block-content/eui-block-content.component.d.ts.map +1 -1
- package/eui-block-content/eui-block-content.module.d.ts +23 -2
- package/eui-block-content/eui-block-content.module.d.ts.map +1 -1
- package/eui-datepicker/eui-datepicker.component.d.ts.map +1 -1
- package/fesm2022/eui-components-eui-accordion.mjs +112 -13
- package/fesm2022/eui-components-eui-accordion.mjs.map +1 -1
- package/fesm2022/eui-components-eui-block-content.mjs +81 -17
- package/fesm2022/eui-components-eui-block-content.mjs.map +1 -1
- package/fesm2022/eui-components-eui-datepicker.mjs +1 -0
- package/fesm2022/eui-components-eui-datepicker.mjs.map +1 -1
- package/package.json +3 -3
@@ -112,35 +112,46 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
+
<p class="comment">
|
116
|
+
<h3>Description</h3>
|
117
|
+
</p>
|
118
|
+
<p class="comment">
|
119
|
+
<p>Module providing accordion functionality with expandable items.</p>
|
120
|
+
<p>Contains:</p>
|
121
|
+
<ul>
|
122
|
+
<li><a href="../components/EuiAccordionComponent.html">EuiAccordionComponent</a> - Main accordion container</li>
|
123
|
+
<li><a href="../components/EuiAccordionItemComponent.html">EuiAccordionItemComponent</a> - Individual expandable items</li>
|
124
|
+
<li><a href="../directives/EuiAccordionItemHeaderDirective.html">EuiAccordionItemHeaderDirective</a> - Custom header content for items</li>
|
125
|
+
</ul>
|
126
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">import { EuiAccordionModule } from '@eui/components/eui-accordion';</code></pre></div><p> imports: [EuiAccordionModule]
|
127
|
+
})
|
128
|
+
export class MyModule {}</p>
|
129
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"><eui-accordion>
|
130
|
+
<eui-accordion-item>
|
131
|
+
<ng-container euiAccordionItemHeader>
|
132
|
+
Custom Header Content
|
133
|
+
</ng-container>
|
134
|
+
Item content
|
135
|
+
</eui-accordion-item>
|
136
|
+
</eui-accordion></code></pre></div>
|
137
|
+
</p>
|
115
138
|
|
116
139
|
|
117
140
|
<div class="container-fluid module">
|
118
141
|
<div class="row">
|
119
|
-
<div class="col-sm-3">
|
120
|
-
<h3>Declarations<a href="https://angular.io/api/core/NgModule#declarations" target="_blank" rel="noopener noreferrer"
|
121
|
-
title="Official documentation about module declarations"><span class="icon ion-ios-information-circle-outline"></span></a></h3>
|
122
|
-
<ul class="list-group">
|
123
|
-
<li class="list-group-item">
|
124
|
-
<a href="../components/EuiAccordionComponent.html">EuiAccordionComponent</a>
|
125
|
-
</li>
|
126
|
-
<li class="list-group-item">
|
127
|
-
<a href="../components/EuiAccordionItemComponent.html">EuiAccordionItemComponent</a>
|
128
|
-
</li>
|
129
|
-
<li class="list-group-item">
|
130
|
-
<a href="../directives/EuiAccordionItemHeaderDirective.html">EuiAccordionItemHeaderDirective</a>
|
131
|
-
</li>
|
132
|
-
</ul>
|
133
|
-
</div>
|
134
142
|
<div class="col-sm-3">
|
135
143
|
<h3>Imports<a href="https://angular.io/api/core/NgModule#imports" target="_blank" rel="noopener noreferrer"
|
136
144
|
title="Official documentation about module imports"><span
|
137
145
|
class="icon ion-ios-information-circle-outline"></a></h3>
|
138
146
|
<ul class="list-group">
|
139
147
|
<li class="list-group-item">
|
140
|
-
<a href="../modules/
|
148
|
+
<a href="../modules/EuiAccordionComponent.html">EuiAccordionComponent</a>
|
149
|
+
</li>
|
150
|
+
<li class="list-group-item">
|
151
|
+
<a href="../modules/EuiAccordionItemComponent.html">EuiAccordionItemComponent</a>
|
141
152
|
</li>
|
142
153
|
<li class="list-group-item">
|
143
|
-
<a href="../modules/
|
154
|
+
<a href="../modules/EuiAccordionItemHeaderDirective.html">EuiAccordionItemHeaderDirective</a>
|
144
155
|
</li>
|
145
156
|
</ul>
|
146
157
|
</div>
|
@@ -87,7 +87,9 @@
|
|
87
87
|
|
88
88
|
<ol class="breadcrumb">
|
89
89
|
<li class="breadcrumb-item">Modules</li>
|
90
|
-
<li class="breadcrumb-item"
|
90
|
+
<li class="breadcrumb-item"
|
91
|
+
class="breadcrumb-item deprecated-name"
|
92
|
+
>EuiBlockContentModule</li>
|
91
93
|
</ol>
|
92
94
|
|
93
95
|
|
@@ -111,17 +113,40 @@
|
|
111
113
|
</p>
|
112
114
|
|
113
115
|
|
116
|
+
<p class="comment">
|
117
|
+
<h3 class="deprecated">Deprecated</h3>
|
118
|
+
</p>
|
119
|
+
<p class="comment">
|
120
|
+
[object Object],[object Object],[object Object]
|
121
|
+
</p>
|
114
122
|
|
123
|
+
<p class="comment">
|
124
|
+
<h3>Description</h3>
|
125
|
+
</p>
|
126
|
+
<p class="comment">
|
127
|
+
<p>This module is maintained for backward compatibility.</p>
|
128
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">// Instead of importing the module:
|
129
|
+
// import { EuiBlockContentModule } from '@eui/components/eui-block-content';</code></pre></div><p>// Import the standalone component:
|
130
|
+
import { EuiBlockContentComponent } from '@eui/components/eui-block-content';</p>
|
131
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">// Instead of adding to NgModule imports:
|
132
|
+
// @NgModule({
|
133
|
+
// imports: [EuiBlockContentModule]
|
134
|
+
// })</code></pre></div><p>// Add the standalone component:
|
135
|
+
imports: [EuiBlockContentComponent]
|
136
|
+
})</p>
|
137
|
+
|
138
|
+
</p>
|
115
139
|
|
116
140
|
|
117
141
|
<div class="container-fluid module">
|
118
142
|
<div class="row">
|
119
143
|
<div class="col-sm-3">
|
120
|
-
<h3>
|
121
|
-
title="Official documentation about module
|
144
|
+
<h3>Imports<a href="https://angular.io/api/core/NgModule#imports" target="_blank" rel="noopener noreferrer"
|
145
|
+
title="Official documentation about module imports"><span
|
146
|
+
class="icon ion-ios-information-circle-outline"></a></h3>
|
122
147
|
<ul class="list-group">
|
123
148
|
<li class="list-group-item">
|
124
|
-
<a href="../
|
149
|
+
<a href="../modules/EuiBlockContentComponent.html">EuiBlockContentComponent</a>
|
125
150
|
</li>
|
126
151
|
</ul>
|
127
152
|
</div>
|
@@ -1,16 +1,59 @@
|
|
1
1
|
import { CdkAccordionItem } from '@angular/cdk/accordion';
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
import * as i1 from "@angular/cdk/accordion";
|
4
|
+
/**
|
5
|
+
* Individual accordion item component that can be expanded/collapsed.
|
6
|
+
* Uses Angular CDK's accordion item functionality for managing expansion state
|
7
|
+
* and includes collapse animation.
|
8
|
+
*
|
9
|
+
* @example
|
10
|
+
* <eui-accordion-item [isExpanded]="true">
|
11
|
+
* <!-- Custom header using directive -->
|
12
|
+
* <eui-accordion-item-header>
|
13
|
+
* Custom Header Content
|
14
|
+
* </eui-accordion-item-header>
|
15
|
+
*
|
16
|
+
* <!-- Content -->
|
17
|
+
* <p>Accordion item content</p>
|
18
|
+
* </eui-accordion-item>
|
19
|
+
*
|
20
|
+
* @property {boolean} isExpanded - Controls whether the item is expanded or collapsed
|
21
|
+
*/
|
4
22
|
export declare class EuiAccordionItemComponent {
|
5
23
|
protected accItem: CdkAccordionItem;
|
24
|
+
/**
|
25
|
+
* @description
|
26
|
+
* Computes and returns the CSS classes for the component based on its current state.
|
27
|
+
*
|
28
|
+
* @returns {string} Space-separated string of CSS class names
|
29
|
+
*/
|
6
30
|
get cssClasses(): string;
|
7
31
|
constructor(accItem: CdkAccordionItem);
|
32
|
+
/**
|
33
|
+
* Handles the toggle event for expanding/collapsing the accordion item
|
34
|
+
* Prevents event propagation to avoid interfering with parent handlers
|
35
|
+
*
|
36
|
+
* @param event - The toggle event
|
37
|
+
*/
|
8
38
|
onToggle(event: Event): void;
|
9
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAccordionItemComponent, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAccordionItemComponent, "eui-accordion-item", never, {}, {}, never, ["eui-accordion-item-header", "*"],
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAccordionItemComponent, "eui-accordion-item", never, {}, {}, never, ["eui-accordion-item-header", "*"], true, [{ directive: typeof i1.CdkAccordionItem; inputs: { "expanded": "isExpanded"; }; outputs: {}; }]>;
|
11
41
|
}
|
42
|
+
/**
|
43
|
+
* Directive for customizing the header content of an accordion item.
|
44
|
+
*
|
45
|
+
* @example
|
46
|
+
* <eui-accordion-item>
|
47
|
+
* <eui-accordion-item-header>
|
48
|
+
* <div class="custom-header">
|
49
|
+
* <eui-icon name="info"></eui-icon>
|
50
|
+
* <span>Custom Header</span>
|
51
|
+
* </div>
|
52
|
+
* </eui-accordion-item-header>
|
53
|
+
* </eui-accordion-item>
|
54
|
+
*/
|
12
55
|
export declare class EuiAccordionItemHeaderDirective {
|
13
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAccordionItemHeaderDirective, never>;
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EuiAccordionItemHeaderDirective, "eui-accordion-item-header", never, {}, {}, never, never,
|
57
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EuiAccordionItemHeaderDirective, "eui-accordion-item-header", never, {}, {}, never, never, true, never>;
|
15
58
|
}
|
16
59
|
//# sourceMappingURL=eui-accordion-item.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-accordion-item.component.d.ts","sourceRoot":"","sources":["../../eui-accordion/eui-accordion-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,
|
1
|
+
{"version":3,"file":"eui-accordion-item.component.d.ts","sourceRoot":"","sources":["../../eui-accordion/eui-accordion-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAsB,MAAM,wBAAwB,CAAC;;;AAQ9E;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAuBa,yBAAyB;IAe9B,SAAS,CAAC,OAAO,EAAE,gBAAgB;IAdvC;;;;;OAKG;IACH,IACW,UAAU,IAAI,MAAM,CAI9B;gBAGa,OAAO,EAAE,gBAAgB;IAIvC;;;;;OAKG;IACH,QAAQ,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;yCAzBnB,yBAAyB;2CAAzB,yBAAyB;CA6BrC;AAED;;;;;;;;;;;;GAYG;AAEH,qBACa,+BAA+B;yCAA/B,+BAA+B;2CAA/B,+BAA+B;CAAI"}
|
@@ -1,8 +1,34 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "@angular/cdk/accordion";
|
3
|
+
/**
|
4
|
+
* Accordion container component that manages expandable items.
|
5
|
+
* Uses Angular CDK's accordion functionality for managing expansion state.
|
6
|
+
*
|
7
|
+
* @example
|
8
|
+
* <!-- Single expansion mode -->
|
9
|
+
* <eui-accordion>
|
10
|
+
* <eui-accordion-item>First item</eui-accordion-item>
|
11
|
+
* <eui-accordion-item>Second item</eui-accordion-item>
|
12
|
+
* </eui-accordion>
|
13
|
+
*
|
14
|
+
* <!-- Multiple expansion mode -->
|
15
|
+
* <eui-accordion [isMulti]="true">
|
16
|
+
* <eui-accordion-item>First item</eui-accordion-item>
|
17
|
+
* <eui-accordion-item>Second item</eui-accordion-item>
|
18
|
+
* </eui-accordion>
|
19
|
+
*
|
20
|
+
* @property {boolean} isMulti - When true, allows multiple items to be expanded simultaneously.
|
21
|
+
* When false (default), only one item can be expanded at a time.
|
22
|
+
*/
|
3
23
|
export declare class EuiAccordionComponent {
|
24
|
+
/**
|
25
|
+
* @description
|
26
|
+
* Computes and returns the CSS classes for the component based on its current state.
|
27
|
+
*
|
28
|
+
* @returns {string} Space-separated string of CSS class names
|
29
|
+
*/
|
4
30
|
get cssClasses(): string;
|
5
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAccordionComponent, never>;
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAccordionComponent, "eui-accordion", never, {}, {}, never, ["*"],
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAccordionComponent, "eui-accordion", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.CdkAccordion; inputs: { "multi": "isMulti"; }; outputs: {}; }]>;
|
7
33
|
}
|
8
34
|
//# sourceMappingURL=eui-accordion.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-accordion.component.d.ts","sourceRoot":"","sources":["../../eui-accordion/eui-accordion.component.ts"],"names":[],"mappings":";;AAGA,
|
1
|
+
{"version":3,"file":"eui-accordion.component.d.ts","sourceRoot":"","sources":["../../eui-accordion/eui-accordion.component.ts"],"names":[],"mappings":";;AAGA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,qBAYa,qBAAqB;IAC9B;;;;;OAKG;IACH,IACW,UAAU,IAAI,MAAM,CAI9B;yCAZQ,qBAAqB;2CAArB,qBAAqB;CAajC"}
|
@@ -1,13 +1,35 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./eui-accordion.component";
|
3
3
|
import * as i2 from "./eui-accordion-item.component";
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
/**
|
5
|
+
* Module providing accordion functionality with expandable items.
|
6
|
+
*
|
7
|
+
* Contains:
|
8
|
+
* - {@link EuiAccordionComponent} - Main accordion container
|
9
|
+
* - {@link EuiAccordionItemComponent} - Individual expandable items
|
10
|
+
* - {@link EuiAccordionItemHeaderDirective} - Custom header content for items
|
11
|
+
*
|
12
|
+
* @example
|
13
|
+
* import { EuiAccordionModule } from '@eui/components/eui-accordion';
|
14
|
+
*
|
15
|
+
* @NgModule({
|
16
|
+
* imports: [EuiAccordionModule]
|
17
|
+
* })
|
18
|
+
* export class MyModule {}
|
19
|
+
*
|
20
|
+
* @example
|
21
|
+
* <eui-accordion>
|
22
|
+
* <eui-accordion-item>
|
23
|
+
* <ng-container euiAccordionItemHeader>
|
24
|
+
* Custom Header Content
|
25
|
+
* </ng-container>
|
26
|
+
* Item content
|
27
|
+
* </eui-accordion-item>
|
28
|
+
* </eui-accordion>
|
29
|
+
*/
|
8
30
|
export declare class EuiAccordionModule {
|
9
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAccordionModule, never>;
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiAccordionModule, [typeof i1.EuiAccordionComponent, typeof i2.EuiAccordionItemComponent, typeof i2.EuiAccordionItemHeaderDirective], [typeof
|
32
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiAccordionModule, never, [typeof i1.EuiAccordionComponent, typeof i2.EuiAccordionItemComponent, typeof i2.EuiAccordionItemHeaderDirective], [typeof i1.EuiAccordionComponent, typeof i2.EuiAccordionItemComponent, typeof i2.EuiAccordionItemHeaderDirective]>;
|
11
33
|
static ɵinj: i0.ɵɵInjectorDeclaration<EuiAccordionModule>;
|
12
34
|
}
|
13
35
|
//# sourceMappingURL=eui-accordion.module.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-accordion.module.d.ts","sourceRoot":"","sources":["../../eui-accordion/eui-accordion.module.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"eui-accordion.module.d.ts","sourceRoot":"","sources":["../../eui-accordion/eui-accordion.module.ts"],"names":[],"mappings":";;;AAIA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,qBAIa,kBAAkB;yCAAlB,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAAG"}
|
@@ -1,36 +1,81 @@
|
|
1
1
|
import { ElementRef, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* @description
|
5
|
+
* Component that wraps content and manages focus state when content is blocked.
|
6
|
+
* Provides accessibility attributes and handles focus restoration when blocking/unblocking.
|
7
|
+
*
|
8
|
+
* @example
|
9
|
+
* <!-- Basic usage -->
|
10
|
+
* <eui-block-content>
|
11
|
+
* <div>Content that can be blocked</div>
|
12
|
+
* </eui-block-content>
|
13
|
+
*
|
14
|
+
* <!-- Blocked state with custom accessibility -->
|
15
|
+
* <eui-block-content
|
16
|
+
* [isBlocked]="true"
|
17
|
+
* role="dialog"
|
18
|
+
* ariaLabel="Loading content">
|
19
|
+
* <div>This content is blocked</div>
|
20
|
+
* </eui-block-content>
|
21
|
+
*/
|
3
22
|
export declare class EuiBlockContentComponent implements OnChanges {
|
4
23
|
private elRef;
|
5
24
|
private renderer;
|
25
|
+
/** CSS classes applied to the host element */
|
6
26
|
get cssClasses(): string;
|
27
|
+
/**
|
28
|
+
* ARIA role for the content wrapper
|
29
|
+
* @default 'region'
|
30
|
+
*/
|
7
31
|
role: string;
|
32
|
+
/**
|
33
|
+
* ARIA label for the content wrapper
|
34
|
+
* @default 'block content wrapper'
|
35
|
+
*/
|
8
36
|
ariaLabel: string;
|
37
|
+
/**
|
38
|
+
* Whether the content is currently blocked
|
39
|
+
* When true, focused elements within will be blurred and state saved
|
40
|
+
* @default false
|
41
|
+
*/
|
9
42
|
isBlocked: boolean;
|
10
|
-
/**
|
43
|
+
/** Stores the element that was focused before content was blocked */
|
11
44
|
private lastActiveElement;
|
12
45
|
constructor(elRef: ElementRef, renderer: Renderer2);
|
46
|
+
/**
|
47
|
+
* Handles changes to the blocked state.
|
48
|
+
* Manages focus when content is blocked or unblocked.
|
49
|
+
*/
|
13
50
|
ngOnChanges(changes: SimpleChanges): void;
|
14
51
|
/**
|
15
|
-
*
|
52
|
+
* Removes focus from the currently focused element when blocking
|
53
|
+
* Stores the element reference for later restoration
|
54
|
+
*
|
55
|
+
* @param activeElement - The currently focused element
|
16
56
|
*/
|
17
57
|
deactivateElement(activeElement: HTMLElement): void;
|
18
58
|
/**
|
19
|
-
* focus
|
59
|
+
* Restores focus to the previously focused element when unblocking
|
60
|
+
*
|
61
|
+
* @param element - The element that was previously focused
|
20
62
|
*/
|
21
63
|
reactivateElement(element: HTMLElement): void;
|
22
64
|
/**
|
23
|
-
*
|
65
|
+
* Determines if the content is transitioning to a blocked state
|
24
66
|
*
|
25
|
-
* @param
|
67
|
+
* @param change - Angular SimpleChange object
|
68
|
+
* @returns true if the content is being blocked, false otherwise
|
26
69
|
*/
|
27
70
|
private isAboutToBlock;
|
28
71
|
/**
|
29
|
-
*
|
72
|
+
* Finds the currently focused element within the block content
|
73
|
+
*
|
74
|
+
* @returns The currently focused HTMLElement or null if none found
|
30
75
|
*/
|
31
76
|
private getActiveElement;
|
32
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiBlockContentComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiBlockContentComponent, "eui-block-content", never, { "role": { "alias": "role"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "isBlocked": { "alias": "isBlocked"; "required": false; }; }, {}, never, ["*"],
|
78
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiBlockContentComponent, "eui-block-content", never, { "role": { "alias": "role"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "isBlocked": { "alias": "isBlocked"; "required": false; }; }, {}, never, ["*"], true, never>;
|
34
79
|
static ngAcceptInputType_isBlocked: unknown;
|
35
80
|
}
|
36
81
|
//# sourceMappingURL=eui-block-content.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-block-content.component.d.ts","sourceRoot":"","sources":["../../eui-block-content/eui-block-content.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,UAAU,EAEV,SAAS,EACT,SAAS,EACT,aAAa,
|
1
|
+
{"version":3,"file":"eui-block-content.component.d.ts","sourceRoot":"","sources":["../../eui-block-content/eui-block-content.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,UAAU,EAEV,SAAS,EACT,SAAS,EACT,aAAa,EAKhB,MAAM,eAAe,CAAC;;AAEvB;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAMa,wBAAyB,YAAW,SAAS;IAiClD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ;IAjCpB,8CAA8C;IAC9C,IACW,UAAU,IAAI,MAAM,CAK9B;IAED;;;OAGG;IACgC,IAAI,SAAY;IAEnD;;;OAGG;IACsC,SAAS,SAA2B;IAE7E;;;;OAIG;IACqC,SAAS,UAAS;IAE1D,qEAAqE;IACrE,OAAO,CAAC,iBAAiB,CAAqB;gBAGlC,KAAK,EAAE,UAAU,EACjB,QAAQ,EAAE,SAAS;IAG/B;;;OAGG;IACH,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAazC;;;;;OAKG;IACH,iBAAiB,CAAC,aAAa,EAAE,WAAW,GAAG,IAAI;IASnD;;;;OAIG;IACH,iBAAiB,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAM7C;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAItB;;;;OAIG;IACH,OAAO,CAAC,gBAAgB;yCA/Ff,wBAAwB;2CAAxB,wBAAwB;wCAmGoguC,OAAQ;CADhjuC"}
|
@@ -1,9 +1,30 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./eui-block-content.component";
|
3
|
-
|
3
|
+
/**
|
4
|
+
* @deprecated Import the standalone {@link EuiBlockContentComponent} instead.
|
5
|
+
* This module is maintained for backward compatibility.
|
6
|
+
*
|
7
|
+
* @example
|
8
|
+
* // Instead of importing the module:
|
9
|
+
* // import { EuiBlockContentModule } from '@eui/components/eui-block-content';
|
10
|
+
*
|
11
|
+
* // Import the standalone component:
|
12
|
+
* import { EuiBlockContentComponent } from '@eui/components/eui-block-content';
|
13
|
+
*
|
14
|
+
* @example
|
15
|
+
* // Instead of adding to NgModule imports:
|
16
|
+
* // @NgModule({
|
17
|
+
* // imports: [EuiBlockContentModule]
|
18
|
+
* // })
|
19
|
+
*
|
20
|
+
* // Add the standalone component:
|
21
|
+
* @NgModule({
|
22
|
+
* imports: [EuiBlockContentComponent]
|
23
|
+
* })
|
24
|
+
*/
|
4
25
|
export declare class EuiBlockContentModule {
|
5
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiBlockContentModule, never>;
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiBlockContentModule, [typeof i1.EuiBlockContentComponent], [typeof
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiBlockContentModule, never, [typeof i1.EuiBlockContentComponent], [typeof i1.EuiBlockContentComponent]>;
|
7
28
|
static ɵinj: i0.ɵɵInjectorDeclaration<EuiBlockContentModule>;
|
8
29
|
}
|
9
30
|
//# sourceMappingURL=eui-block-content.module.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-block-content.module.d.ts","sourceRoot":"","sources":["../../eui-block-content/eui-block-content.module.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"eui-block-content.module.d.ts","sourceRoot":"","sources":["../../eui-block-content/eui-block-content.module.ts"],"names":[],"mappings":";;AAGA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAIa,qBAAqB;yCAArB,qBAAqB;0CAArB,qBAAqB;0CAArB,qBAAqB;CAAG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-datepicker.component.d.ts","sourceRoot":"","sources":["../../eui-datepicker/eui-datepicker.component.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"eui-datepicker.component.d.ts","sourceRoot":"","sources":["../../eui-datepicker/eui-datepicker.component.ts"],"names":[],"mappings":"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"}
|