@eui/components 19.0.3 → 19.0.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/directives/eui-has-permission.directive.d.ts +70 -2
- package/directives/eui-has-permission.directive.d.ts.map +1 -1
- package/directives/eui-maxlength.directive.d.ts +94 -10
- package/directives/eui-maxlength.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/EuiInputCheckboxComponent.html +169 -10
- package/docs/components/EuiInputGroupAddOnComponent.html +22 -0
- package/docs/components/EuiInputGroupAddOnItemComponent.html +30 -0
- package/docs/components/EuiInputGroupComponent.html +35 -0
- package/docs/components/EuiInputNumberComponent.html +83 -4
- package/docs/components/EuiInputRadioComponent.html +228 -0
- package/docs/components/EuiInputTextComponent.html +50 -0
- package/docs/components/EuiPaginatorComponent.html +204 -0
- package/docs/components/EuiTextareaComponent.html +207 -1
- package/docs/dependencies.html +2 -2
- package/docs/directives/AutoResizeDirective.html +49 -1
- package/docs/directives/EuiHasPermissionDirective.html +34 -0
- package/docs/directives/EuiInputNumberDirective.html +17 -0
- package/docs/directives/EuiMaxLengthDirective.html +35 -7
- package/docs/js/menu-wc.js +65 -119
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/functions.html +14 -0
- package/docs/modules/EuiAlertModule.html +11 -0
- package/docs/modules/EuiChipModule.html +11 -0
- package/docs/modules/EuiHasPermissionDirectiveModule.html +17 -3
- package/docs/modules/EuiInputCheckboxModule.html +25 -4
- package/docs/modules/EuiInputGroupModule.html +20 -5
- package/docs/modules/EuiInputNumberModule.html +26 -5
- package/docs/modules/EuiInputRadioModule.html +27 -4
- package/docs/modules/EuiInputTextModule.html +25 -4
- package/docs/modules/EuiMaxLengthDirectiveModule.html +25 -4
- package/docs/modules/EuiPaginatorModule.html +11 -0
- package/docs/modules/EuiTextAreaModule.html +20 -4
- 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-input-checkbox/eui-input-checkbox.component.d.ts +88 -11
- package/eui-input-checkbox/eui-input-checkbox.component.d.ts.map +1 -1
- package/eui-input-checkbox/eui-input-checkbox.module.d.ts +17 -3
- package/eui-input-checkbox/eui-input-checkbox.module.d.ts.map +1 -1
- package/eui-input-group/eui-input-group-addon-item.component.d.ts +33 -1
- package/eui-input-group/eui-input-group-addon-item.component.d.ts.map +1 -1
- package/eui-input-group/eui-input-group-addon.component.d.ts +40 -2
- package/eui-input-group/eui-input-group-addon.component.d.ts.map +1 -1
- package/eui-input-group/eui-input-group.component.d.ts +44 -1
- package/eui-input-group/eui-input-group.component.d.ts.map +1 -1
- package/eui-input-group/eui-input-group.module.d.ts +21 -5
- package/eui-input-group/eui-input-group.module.d.ts.map +1 -1
- package/eui-input-number/eui-input-number.component.d.ts +73 -9
- package/eui-input-number/eui-input-number.component.d.ts.map +1 -1
- package/eui-input-number/eui-input-number.module.d.ts +19 -4
- package/eui-input-number/eui-input-number.module.d.ts.map +1 -1
- package/eui-input-number/eui-number-control.directive.d.ts +27 -2
- package/eui-input-number/eui-number-control.directive.d.ts.map +1 -1
- package/eui-input-radio/eui-input-radio.component.d.ts +96 -1
- package/eui-input-radio/eui-input-radio.component.d.ts.map +1 -1
- package/eui-input-radio/eui-input-radio.module.d.ts +20 -3
- package/eui-input-radio/eui-input-radio.module.d.ts.map +1 -1
- package/eui-input-text/eui-input-text.component.d.ts +54 -1
- package/eui-input-text/eui-input-text.component.d.ts.map +1 -1
- package/eui-input-text/eui-input-text.module.d.ts +19 -3
- package/eui-input-text/eui-input-text.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-textarea/auto-resize.directive.d.ts +90 -3
- package/eui-textarea/auto-resize.directive.d.ts.map +1 -1
- package/eui-textarea/eui-textarea.component.d.ts +111 -5
- package/eui-textarea/eui-textarea.component.d.ts.map +1 -1
- package/eui-textarea/eui-textarea.module.d.ts +23 -4
- package/eui-textarea/eui-textarea.module.d.ts.map +1 -1
- package/eui-timepicker/eui-timepicker.component.d.ts.map +1 -1
- package/fesm2022/eui-components-directives.mjs +180 -34
- package/fesm2022/eui-components-directives.mjs.map +1 -1
- package/fesm2022/eui-components-eui-accordion.mjs +1 -1
- package/fesm2022/eui-components-eui-alert.mjs +85 -3
- package/fesm2022/eui-components-eui-alert.mjs.map +1 -1
- package/fesm2022/eui-components-eui-autocomplete.mjs +2 -2
- package/fesm2022/eui-components-eui-avatar.mjs +1 -1
- package/fesm2022/eui-components-eui-badge.mjs +1 -1
- package/fesm2022/eui-components-eui-block-content.mjs +1 -1
- package/fesm2022/eui-components-eui-block-document.mjs +1 -1
- package/fesm2022/eui-components-eui-breadcrumb.mjs +1 -1
- package/fesm2022/eui-components-eui-button-group.mjs +1 -1
- package/fesm2022/eui-components-eui-button-v2.mjs +1 -1
- package/fesm2022/eui-components-eui-button.mjs +1 -1
- package/fesm2022/eui-components-eui-card.mjs +3 -3
- package/fesm2022/eui-components-eui-card.mjs.map +1 -1
- package/fesm2022/eui-components-eui-chip-group.mjs +1 -1
- package/fesm2022/eui-components-eui-chip-list.mjs +1 -1
- package/fesm2022/eui-components-eui-chip.mjs +75 -1
- package/fesm2022/eui-components-eui-chip.mjs.map +1 -1
- package/fesm2022/eui-components-eui-dashboard-button.mjs +1 -1
- package/fesm2022/eui-components-eui-dashboard-card.mjs +1 -1
- package/fesm2022/eui-components-eui-date-range-selector.mjs +5 -5
- package/fesm2022/eui-components-eui-date-range-selector.mjs.map +1 -1
- package/fesm2022/eui-components-eui-datepicker.mjs +1 -1
- package/fesm2022/eui-components-eui-dialog.mjs +1 -1
- package/fesm2022/eui-components-eui-dimmer.mjs +1 -1
- package/fesm2022/eui-components-eui-disable-content.mjs +1 -1
- package/fesm2022/eui-components-eui-discussion-thread.mjs +1 -1
- package/fesm2022/eui-components-eui-dropdown.mjs +2 -2
- package/fesm2022/eui-components-eui-feedback-message.mjs +1 -1
- package/fesm2022/eui-components-eui-fieldset.mjs +1 -1
- package/fesm2022/eui-components-eui-file-upload.mjs +1 -1
- package/fesm2022/eui-components-eui-growl.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-button-expander.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-button.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-color.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-input.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-state.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-toggle.mjs +1 -1
- package/fesm2022/eui-components-eui-icon.mjs +1 -1
- package/fesm2022/eui-components-eui-input-checkbox.mjs +104 -14
- package/fesm2022/eui-components-eui-input-checkbox.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-group.mjs +142 -12
- package/fesm2022/eui-components-eui-input-group.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-number.mjs +109 -13
- package/fesm2022/eui-components-eui-input-number.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-radio.mjs +117 -6
- package/fesm2022/eui-components-eui-input-radio.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-text.mjs +73 -6
- package/fesm2022/eui-components-eui-input-text.mjs.map +1 -1
- package/fesm2022/eui-components-eui-label.mjs +1 -1
- package/fesm2022/eui-components-eui-language-selector.mjs +1 -1
- package/fesm2022/eui-components-eui-list.mjs +1 -1
- package/fesm2022/eui-components-eui-menu.mjs +1 -1
- package/fesm2022/eui-components-eui-message-box.mjs +1 -1
- package/fesm2022/eui-components-eui-navbar.mjs +1 -1
- package/fesm2022/eui-components-eui-overlay.mjs +1 -1
- package/fesm2022/eui-components-eui-page.mjs +1 -1
- package/fesm2022/eui-components-eui-paginator.mjs +153 -6
- package/fesm2022/eui-components-eui-paginator.mjs.map +1 -1
- package/fesm2022/eui-components-eui-popover.mjs +1 -1
- package/fesm2022/eui-components-eui-progress-bar.mjs +1 -1
- package/fesm2022/eui-components-eui-progress-circle.mjs +1 -1
- package/fesm2022/eui-components-eui-select.mjs +1 -1
- package/fesm2022/eui-components-eui-sidebar-menu.mjs +1 -1
- package/fesm2022/eui-components-eui-skeleton.mjs +1 -1
- package/fesm2022/eui-components-eui-slide-toggle.mjs +2 -2
- package/fesm2022/eui-components-eui-split-button.mjs +1 -1
- package/fesm2022/eui-components-eui-table-v2.mjs +1 -1
- package/fesm2022/eui-components-eui-table.mjs +1 -1
- package/fesm2022/eui-components-eui-tabs.mjs +1 -1
- package/fesm2022/eui-components-eui-textarea.mjs +221 -15
- package/fesm2022/eui-components-eui-textarea.mjs.map +1 -1
- package/fesm2022/eui-components-eui-timebar.mjs +1 -1
- package/fesm2022/eui-components-eui-timeline.mjs +1 -1
- package/fesm2022/eui-components-eui-timepicker.mjs +36 -29
- package/fesm2022/eui-components-eui-timepicker.mjs.map +1 -1
- package/fesm2022/eui-components-eui-tree-list.mjs +1 -1
- package/fesm2022/eui-components-eui-tree.mjs +1 -1
- package/fesm2022/eui-components-eui-user-profile.mjs +1 -1
- package/fesm2022/eui-components-eui-wizard.mjs +1 -1
- package/fesm2022/eui-components-externals-eui-editor.mjs +1 -1
- package/fesm2022/eui-components-externals-quill.mjs +1 -1
- package/fesm2022/eui-components-layout.mjs +2 -2
- package/fesm2022/eui-components-shared.mjs +2 -2
- package/package.json +3 -3
@@ -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"}
|
@@ -3,52 +3,129 @@ import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { InputDirective } from '@eui/components/shared';
|
4
4
|
import { BooleanInput } from '@angular/cdk/coercion';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
+
/**
|
7
|
+
* Angular component that provides a custom checkbox input implementation.
|
8
|
+
* Extends {@link InputDirective} and implements form control functionality.
|
9
|
+
*
|
10
|
+
* @component
|
11
|
+
* @selector input[euiInputCheckBox]
|
12
|
+
* @implements {@link OnInit}
|
13
|
+
* @implements {@link DoCheck}
|
14
|
+
* @implements {@link OnChanges}
|
15
|
+
* @implements {@link ControlValueAccessor}
|
16
|
+
*
|
17
|
+
* @example
|
18
|
+
* <input euiInputCheckBox
|
19
|
+
* [(ngModel)]="isChecked"
|
20
|
+
* [indeterminate]="isIndeterminate"
|
21
|
+
* [isInvalid]="hasError">
|
22
|
+
*/
|
6
23
|
export declare class EuiInputCheckboxComponent extends InputDirective implements OnInit, DoCheck, OnChanges, ControlValueAccessor {
|
7
24
|
protected ngControl: NgControl;
|
8
25
|
protected _elementRef: ElementRef<HTMLInputElement>;
|
9
26
|
protected _renderer: Renderer2;
|
27
|
+
/**
|
28
|
+
* Gets the CSS classes for the checkbox component.
|
29
|
+
* Combines base classes with validation state classes.
|
30
|
+
*
|
31
|
+
* @returns {string} Space-separated list of CSS classes
|
32
|
+
*/
|
10
33
|
get cssClasses(): string;
|
11
|
-
/**
|
34
|
+
/**
|
35
|
+
* Event emitter that fires when the indeterminate state changes.
|
36
|
+
*
|
37
|
+
* @event indeterminateChange
|
38
|
+
* @type {EventEmitter<boolean>}
|
39
|
+
*/
|
12
40
|
readonly indeterminateChange: EventEmitter<boolean>;
|
13
41
|
/**
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
42
|
+
* Controls the indeterminate (mixed) state of the checkbox.
|
43
|
+
* When true, the checkbox appears in an indeterminate state.
|
44
|
+
* This state is automatically cleared when the checkbox is clicked.
|
45
|
+
*
|
46
|
+
* @property {boolean} indeterminate
|
18
47
|
*/
|
19
48
|
get indeterminate(): boolean;
|
20
49
|
set indeterminate(value: BooleanInput);
|
50
|
+
/**
|
51
|
+
* Controls the invalid state of the checkbox. Used for displaying validation errors.
|
52
|
+
*
|
53
|
+
* @property {boolean} isInvalid
|
54
|
+
*/
|
21
55
|
get isInvalid(): boolean;
|
22
56
|
set isInvalid(state: any);
|
23
57
|
protected _isInvalid: boolean;
|
24
58
|
protected type: string;
|
59
|
+
/**
|
60
|
+
* Controls the checked state of the checkbox.
|
61
|
+
*
|
62
|
+
* @property {boolean} checked
|
63
|
+
*/
|
25
64
|
get checked(): boolean;
|
26
65
|
set checked(value: BooleanInput);
|
27
66
|
protected _checked: boolean;
|
28
67
|
private _indeterminate;
|
29
68
|
constructor(ngControl: NgControl, _elementRef: ElementRef<HTMLInputElement>, _renderer: Renderer2, injector: Injector);
|
69
|
+
/**
|
70
|
+
* Lifecycle hook that is called after data-bound properties are initialized.
|
71
|
+
* Sets default control value if needed.
|
72
|
+
*/
|
30
73
|
ngOnInit(): void;
|
74
|
+
/**
|
75
|
+
* Lifecycle hook that performs custom change detection.
|
76
|
+
* Updates invalid state based on control status.
|
77
|
+
*/
|
31
78
|
ngDoCheck(): void;
|
79
|
+
/**
|
80
|
+
* Lifecycle hook that is called when data-bound properties change.
|
81
|
+
* Handles changes to checked and readonly states.
|
82
|
+
*
|
83
|
+
* @param {SimpleChanges} changes - Object containing changed properties
|
84
|
+
*/
|
32
85
|
ngOnChanges(changes: SimpleChanges): void;
|
86
|
+
/**
|
87
|
+
* Implements ControlValueAccessor writeValue method.
|
88
|
+
* Updates the checked state of the checkbox.
|
89
|
+
*
|
90
|
+
* @param {boolean} obj - The value to write
|
91
|
+
*/
|
33
92
|
writeValue(obj: boolean): void;
|
34
93
|
registerOnChange(fn: any): void;
|
35
94
|
registerOnTouched(fn: any): void;
|
36
95
|
setDisabledState?(isDisabled: boolean): void;
|
37
|
-
|
96
|
+
/**
|
97
|
+
* Event handler for checkbox change events.
|
98
|
+
*
|
99
|
+
* @param {boolean} checked - The new checked state
|
100
|
+
* @protected
|
101
|
+
*/
|
102
|
+
protected onChanged(checked: boolean): void;
|
103
|
+
/**
|
104
|
+
* Event handler for space key press.
|
105
|
+
* Prevents space key action when checkbox is readonly.
|
106
|
+
*
|
107
|
+
* @param {KeyboardEvent} event - The keyboard event
|
108
|
+
* @protected
|
109
|
+
*/
|
38
110
|
protected onSpacePressed(event: KeyboardEvent): void;
|
39
|
-
protected onChange: (_:
|
111
|
+
protected onChange: <T>(_: T) => void;
|
40
112
|
protected onBlur: (_: any) => void;
|
41
|
-
|
113
|
+
/**
|
114
|
+
* Sets the invalid state of the checkbox.
|
115
|
+
*
|
116
|
+
* @param {any} state - The invalid state to set (true/false)
|
117
|
+
* @protected
|
118
|
+
*/
|
119
|
+
protected setInvalid(state?: boolean): void;
|
42
120
|
/**
|
43
121
|
* Sets the indeterminate state of the checkbox. This is also known as "mixed" mode and can be used to
|
44
122
|
* represent a checkbox with three states, e.g. a checkbox that represents a nested list of
|
45
|
-
*
|
123
|
+
* check-able items.
|
46
124
|
*
|
47
125
|
* @param value
|
48
|
-
* @private
|
49
126
|
*/
|
50
127
|
private _syncIndeterminate;
|
51
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiInputCheckboxComponent, [{ optional: true; self: true; }, null, null, null]>;
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputCheckboxComponent, "input[euiInputCheckBox]", never, { "indeterminate": { "alias": "indeterminate"; "required": false; }; "isInvalid": { "alias": "isInvalid"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "indeterminateChange": "indeterminateChange"; }, never, never,
|
129
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputCheckboxComponent, "input[euiInputCheckBox]", never, { "indeterminate": { "alias": "indeterminate"; "required": false; }; "isInvalid": { "alias": "isInvalid"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "indeterminateChange": "indeterminateChange"; }, never, never, true, never>;
|
53
130
|
}
|
54
131
|
//# sourceMappingURL=eui-input-checkbox.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-input-checkbox.component.d.ts","sourceRoot":"","sources":["../../eui-input-checkbox/eui-input-checkbox.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EACP,UAAU,EAGV,SAAS,EAET,SAAS,EAET,aAAa,EACb,MAAM,EAGN,QAAQ,EAER,YAAY,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAyB,YAAY,EAAE,MAAM,uBAAuB,CAAC;;AAE5E,qBAOa,yBAA0B,SAAQ,cAAe,YAAW,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,oBAAoB;
|
1
|
+
{"version":3,"file":"eui-input-checkbox.component.d.ts","sourceRoot":"","sources":["../../eui-input-checkbox/eui-input-checkbox.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,OAAO,EACP,UAAU,EAGV,SAAS,EAET,SAAS,EAET,aAAa,EACb,MAAM,EAGN,QAAQ,EAER,YAAY,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAyB,YAAY,EAAE,MAAM,uBAAuB,CAAC;;AAE5E;;;;;;;;;;;;;;;;GAgBG;AACH,qBAOa,yBAA0B,SAAQ,cAAe,YAAW,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,oBAAoB;IAgF7F,SAAS,CAAC,SAAS,EAAE,SAAS;IAClD,SAAS,CAAC,WAAW,EAAE,UAAU,CAAC,gBAAgB,CAAC;IACnD,SAAS,CAAC,SAAS,EAAE,SAAS;IAjFlC;;;;;OAKG;IACH,IACW,UAAU,IAAI,MAAM,CAE9B;IACD;;;;;OAKG;IACO,QAAQ,CAAC,mBAAmB,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAE5F;;;;;;OAMG;IACH,IACI,aAAa,IAAI,OAAO,CAE3B;IACD,IAAI,aAAa,CAAC,KAAK,EAAE,YAAY,EASpC;IAED;;;;OAIG;IACH,IACW,SAAS,IAAI,OAAO,CAE9B;IAID,IAAW,SAAS,CAAC,KAAK,EAAE,GAAG,EAE9B;IAED,SAAS,CAAC,UAAU,EAAE,OAAO,CAAC;IAEJ,SAAS,CAAC,IAAI,SAAc;IAEtD;;;;OAIG;IACH,IAEW,OAAO,IAAI,OAAO,CAE5B;IAED,IAAW,OAAO,CAAC,KAAK,EAAE,YAAY,EAErC;IAED,SAAS,CAAC,QAAQ,EAAE,OAAO,CAAC;IAC5B,OAAO,CAAC,cAAc,CAAS;gBAGG,SAAS,EAAE,SAAS,EACxC,WAAW,EAAE,UAAU,CAAC,gBAAgB,CAAC,EACzC,SAAS,EAAE,SAAS,EAC9B,QAAQ,EAAE,QAAQ;IAetB;;;OAGG;IACH,QAAQ,IAAI,IAAI;IAahB;;;OAGG;IACH,SAAS,IAAI,IAAI;IAMjB;;;;;OAKG;IACH,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAmBzC;;;;;OAKG;IACH,UAAU,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAO9B,gBAAgB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAM/B,iBAAiB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAIhC,gBAAgB,CAAC,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAI5C;;;;;OAKG;IAEH,SAAS,CAAC,SAAS,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAI3C;;;;;;OAMG;IAEH,SAAS,CAAC,cAAc,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI;IAOpD,SAAS,CAAC,QAAQ,GAAI,CAAC,KAAK,CAAC,KAAG,IAAI,CAElC;IAIF,SAAS,CAAC,MAAM,MAAO,GAAG,KAAG,IAAI,CAE/B;IAEF;;;;;OAKG;IACH,SAAS,CAAC,UAAU,CAAC,KAAK,CAAC,EAAE,OAAO,GAAG,IAAI;IAe3C;;;;;;OAMG;IACH,OAAO,CAAC,kBAAkB;yCAjPjB,yBAAyB;2CAAzB,yBAAyB;CAsPrC"}
|
@@ -1,9 +1,23 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "
|
3
|
-
import * as i2 from "
|
2
|
+
import * as i1 from "@angular/common";
|
3
|
+
import * as i2 from "./eui-input-checkbox.component";
|
4
|
+
/**
|
5
|
+
* Angular module for the EUI Input Checkbox component. Provides the checkbox
|
6
|
+
* component and its dependencies.
|
7
|
+
*
|
8
|
+
* @example
|
9
|
+
* ```typescript
|
10
|
+
* @NgModule({
|
11
|
+
* imports: [EuiInputCheckboxModule]
|
12
|
+
* })
|
13
|
+
* export class YourModule { }
|
14
|
+
* ```
|
15
|
+
*
|
16
|
+
* @deprecated Use {@link `EuiInputCheckboxComponent`} instead.
|
17
|
+
*/
|
4
18
|
export declare class EuiInputCheckboxModule {
|
5
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiInputCheckboxModule, never>;
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiInputCheckboxModule, [typeof i1.
|
20
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiInputCheckboxModule, never, [typeof i1.CommonModule, typeof i2.EuiInputCheckboxComponent], [typeof i2.EuiInputCheckboxComponent]>;
|
7
21
|
static ɵinj: i0.ɵɵInjectorDeclaration<EuiInputCheckboxModule>;
|
8
22
|
}
|
9
23
|
//# sourceMappingURL=eui-input-checkbox.module.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-input-checkbox.module.d.ts","sourceRoot":"","sources":["../../eui-input-checkbox/eui-input-checkbox.module.ts"],"names":[],"mappings":";;;AAIA,
|
1
|
+
{"version":3,"file":"eui-input-checkbox.module.d.ts","sourceRoot":"","sources":["../../eui-input-checkbox/eui-input-checkbox.module.ts"],"names":[],"mappings":";;;AAIA;;;;;;;;;;;;;GAaG;AACH,qBAIa,sBAAsB;yCAAtB,sBAAsB;0CAAtB,sBAAsB;0CAAtB,sBAAsB;CAAG"}
|
@@ -1,8 +1,40 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
+
/**
|
3
|
+
* @description
|
4
|
+
* A component that represents an individual item within an input group add-on.
|
5
|
+
* Can be used either as an attribute selector on a div or as a custom element.
|
6
|
+
*
|
7
|
+
* @example
|
8
|
+
* As an attribute
|
9
|
+
* ```html
|
10
|
+
* <div euiInputGroupAddOnItem>Content</div>
|
11
|
+
* ```
|
12
|
+
*
|
13
|
+
* As an element
|
14
|
+
* ```html
|
15
|
+
* <eui-input-group-addon-item>Content</eui-input-group-addon-item>
|
16
|
+
* ```
|
17
|
+
*
|
18
|
+
* @selector div[euiInputGroupAddOnItem], eui-input-group-addon-item
|
19
|
+
*/
|
2
20
|
export declare class EuiInputGroupAddOnItemComponent {
|
21
|
+
/**
|
22
|
+
* @description
|
23
|
+
* Input property for setting the data-e2e attribute value.
|
24
|
+
* Used for end-to-end testing purposes.
|
25
|
+
*
|
26
|
+
* @default 'eui-input-group-addon-item'
|
27
|
+
*/
|
3
28
|
e2eAttr: string;
|
29
|
+
/**
|
30
|
+
* @description
|
31
|
+
* Getter that returns the CSS class for the component.
|
32
|
+
* Bound to the host element's class attribute.
|
33
|
+
*
|
34
|
+
* @returns {string} The CSS class name
|
35
|
+
*/
|
4
36
|
get cssClasses(): string;
|
5
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiInputGroupAddOnItemComponent, never>;
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputGroupAddOnItemComponent, "div[euiInputGroupAddOnItem], eui-input-group-addon-item", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; }, {}, never, ["*"],
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputGroupAddOnItemComponent, "div[euiInputGroupAddOnItem], eui-input-group-addon-item", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; }, {}, never, ["*"], true, never>;
|
7
39
|
}
|
8
40
|
//# sourceMappingURL=eui-input-group-addon-item.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-input-group-addon-item.component.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group-addon-item.component.ts"],"names":[],"mappings":";AAEA,qBAOa,+BAA+B;
|
1
|
+
{"version":3,"file":"eui-input-group-addon-item.component.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group-addon-item.component.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAOa,+BAA+B;IACxC;;;;;;OAMG;IACoC,OAAO,SAAgC;IAC9E;;;;;;OAMG;IACH,IACW,UAAU,IAAI,MAAM,CAE9B;yCAnBQ,+BAA+B;2CAA/B,+BAA+B;CAoB3C"}
|
@@ -1,8 +1,46 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
+
/**
|
3
|
+
* @description
|
4
|
+
* A component that serves as a container for input group add-on items.
|
5
|
+
* Can be used either as an attribute selector on a div or as a custom element.
|
6
|
+
*
|
7
|
+
* @example
|
8
|
+
* As an attribute
|
9
|
+
* ```html
|
10
|
+
* <div euiInputGroupAddOn>
|
11
|
+
* <div euiInputGroupAddOnItem>Item 1</div>
|
12
|
+
* <div euiInputGroupAddOnItem>Item 2</div>
|
13
|
+
* </div>
|
14
|
+
* ```
|
15
|
+
*
|
16
|
+
* As an element
|
17
|
+
* ```html
|
18
|
+
* <eui-input-group-addon>
|
19
|
+
* <eui-input-group-addon-item>Item 1</eui-input-group-addon-item>
|
20
|
+
* <eui-input-group-addon-item>Item 2</eui-input-group-addon-item>
|
21
|
+
* </eui-input-group-addon>
|
22
|
+
* ```
|
23
|
+
*
|
24
|
+
* @selector div[euiInputGroupAddOn], eui-input-group-addon
|
25
|
+
* @standalone false
|
26
|
+
*/
|
2
27
|
export declare class EuiInputGroupAddOnComponent {
|
3
|
-
|
28
|
+
/**
|
29
|
+
* @description
|
30
|
+
* Input property for setting the data-e2e attribute value.
|
31
|
+
* Used for end-to-end testing purposes.
|
32
|
+
*
|
33
|
+
* @default 'eui-input-group-addon'
|
34
|
+
*/
|
35
|
+
e2eAttr: string; /**
|
36
|
+
* @description
|
37
|
+
* Getter that returns the CSS class for the component.
|
38
|
+
* Bound to the host element's class attribute.
|
39
|
+
*
|
40
|
+
* @returns {string} The CSS class name
|
41
|
+
*/
|
4
42
|
get cssClasses(): string;
|
5
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiInputGroupAddOnComponent, never>;
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputGroupAddOnComponent, "div[euiInputGroupAddOn], eui-input-group-addon", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; }, {}, never, ["*"],
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputGroupAddOnComponent, "div[euiInputGroupAddOn], eui-input-group-addon", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; }, {}, never, ["*"], true, never>;
|
7
45
|
}
|
8
46
|
//# sourceMappingURL=eui-input-group-addon.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-input-group-addon.component.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group-addon.component.ts"],"names":[],"mappings":";AAEA,qBAOa,2BAA2B;
|
1
|
+
{"version":3,"file":"eui-input-group-addon.component.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group-addon.component.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBAOa,2BAA2B;IACpC;;;;;;OAMG;IACoC,OAAO,SAA2B,CAAA;;;;;;OAMtE;IACH,IACW,UAAU,IAAI,MAAM,CAE9B;yCAlBQ,2BAA2B;2CAA3B,2BAA2B;CAmBvC"}
|
@@ -1,9 +1,52 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
+
/**
|
3
|
+
* @description
|
4
|
+
* A component that serves as the main container for input group elements.
|
5
|
+
* Can only be used as an attribute selector on a div element.
|
6
|
+
*
|
7
|
+
* @example
|
8
|
+
* ```html
|
9
|
+
* <div euiInputGroup>
|
10
|
+
* <eui-input-group-addon>
|
11
|
+
* <eui-input-group-addon-item>Prefix</eui-input-group-addon-item>
|
12
|
+
* </eui-input-group-addon>
|
13
|
+
* <input type="text">
|
14
|
+
* <eui-input-group-addon>
|
15
|
+
* <eui-input-group-addon-item>Suffix</eui-input-group-addon-item>
|
16
|
+
* </eui-input-group-addon>
|
17
|
+
* </div>
|
18
|
+
* ```
|
19
|
+
*
|
20
|
+
* @selector div[euiInputGroup]
|
21
|
+
* @standalone false
|
22
|
+
*/
|
2
23
|
export declare class EuiInputGroupComponent {
|
24
|
+
/**
|
25
|
+
* @description
|
26
|
+
* Input property for setting the data-e2e attribute value.
|
27
|
+
* Used for end-to-end testing purposes.
|
28
|
+
*
|
29
|
+
* @default 'eui-input-group'
|
30
|
+
*/
|
3
31
|
e2eAttr: string;
|
32
|
+
/**
|
33
|
+
* @description
|
34
|
+
* Getter that returns the CSS class for the component.
|
35
|
+
* Bound to the host element's class attribute.
|
36
|
+
*
|
37
|
+
* @returns {string} The CSS class name
|
38
|
+
*/
|
4
39
|
get cssClasses(): string;
|
40
|
+
/**
|
41
|
+
* @description
|
42
|
+
* Protected property that defines the type of the input group.
|
43
|
+
* Bound to the host element's type attribute.
|
44
|
+
*
|
45
|
+
* @protected
|
46
|
+
* @default 'inputGroup'
|
47
|
+
*/
|
5
48
|
protected type: string;
|
6
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiInputGroupComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputGroupComponent, "div[euiInputGroup]", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; }, {}, never, ["*"],
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuiInputGroupComponent, "div[euiInputGroup]", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; }, {}, never, ["*"], true, never>;
|
8
51
|
}
|
9
52
|
//# sourceMappingURL=eui-input-group.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-input-group.component.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group.component.ts"],"names":[],"mappings":";AAEA,qBAOa,sBAAsB;
|
1
|
+
{"version":3,"file":"eui-input-group.component.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group.component.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,qBAOa,sBAAsB;IAC/B;;;;;;OAMG;IACoC,OAAO,SAAqB;IACnE;;;;;;OAMG;IACH,IACW,UAAU,IAAI,MAAM,CAE9B;IAED;;;;;;;OAOG;IACuB,SAAS,CAAC,IAAI,SAAgB;yCA7B/C,sBAAsB;2CAAtB,sBAAsB;CA8BlC"}
|
@@ -1,11 +1,27 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "
|
3
|
-
import * as i2 from "./eui-input-group
|
4
|
-
import * as i3 from "./eui-input-group-addon
|
5
|
-
import * as i4 from "
|
2
|
+
import * as i1 from "@angular/common";
|
3
|
+
import * as i2 from "./eui-input-group.component";
|
4
|
+
import * as i3 from "./eui-input-group-addon.component";
|
5
|
+
import * as i4 from "./eui-input-group-addon-item.component";
|
6
|
+
/**
|
7
|
+
* @description
|
8
|
+
* Angular module that provides input group components for the EUI framework.
|
9
|
+
* Includes the main input group component and its add-on components.
|
10
|
+
*
|
11
|
+
* @example
|
12
|
+
* // In your app.module.ts or feature module:
|
13
|
+
* import { EuiInputGroupModule } from '@eui/input-group';
|
14
|
+
*
|
15
|
+
* @NgModule({
|
16
|
+
* imports: [
|
17
|
+
* EuiInputGroupModule
|
18
|
+
* ]
|
19
|
+
* })
|
20
|
+
* export class YourModule { }
|
21
|
+
*/
|
6
22
|
export declare class EuiInputGroupModule {
|
7
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuiInputGroupModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiInputGroupModule, [typeof i1.
|
24
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EuiInputGroupModule, never, [typeof i1.CommonModule, typeof i2.EuiInputGroupComponent, typeof i3.EuiInputGroupAddOnComponent, typeof i4.EuiInputGroupAddOnItemComponent], [typeof i2.EuiInputGroupComponent, typeof i3.EuiInputGroupAddOnComponent, typeof i4.EuiInputGroupAddOnItemComponent]>;
|
9
25
|
static ɵinj: i0.ɵɵInjectorDeclaration<EuiInputGroupModule>;
|
10
26
|
}
|
11
27
|
//# sourceMappingURL=eui-input-group.module.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-input-group.module.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group.module.ts"],"names":[],"mappings":";;;;;AAMA,qBAaa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
|
1
|
+
{"version":3,"file":"eui-input-group.module.d.ts","sourceRoot":"","sources":["../../eui-input-group/eui-input-group.module.ts"],"names":[],"mappings":";;;;;AAMA;;;;;;;;;;;;;;;GAeG;AACH,qBAaa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
|