@eui/mobile-core 16.8.0-snapshot-1710507304234 → 16.8.0-snapshot-1711018751488
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/EuimChipSelectorComponent.html +284 -1
- package/docs/dependencies.html +2 -2
- package/docs/directives/EuimChipSelectorItemDirective.html +23 -0
- package/docs/js/menu-wc_es5.js +3 -4
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/lib/components/euim-chip-selector/euim-chip-selector-item/euim-chip-selector-item.directive.mjs +2 -1
- package/esm2022/lib/components/euim-chip-selector/euim-chip-selector.component.mjs +83 -14
- package/fesm2022/eui-mobile-core.mjs +80 -12
- package/fesm2022/eui-mobile-core.mjs.map +1 -1
- package/lib/components/euim-chip-selector/euim-chip-selector-item/euim-chip-selector-item.directive.d.ts +1 -0
- package/lib/components/euim-chip-selector/euim-chip-selector-item/euim-chip-selector-item.directive.d.ts.map +1 -1
- package/lib/components/euim-chip-selector/euim-chip-selector.component.d.ts +13 -3
- package/lib/components/euim-chip-selector/euim-chip-selector.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"euim-chip-selector-item.directive.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/euim-chip-selector/euim-chip-selector-item/euim-chip-selector-item.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiC,UAAU,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACrF,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;;AAGrD,qBAGa,6BAA6B;
|
|
1
|
+
{"version":3,"file":"euim-chip-selector-item.directive.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/euim-chip-selector/euim-chip-selector-item/euim-chip-selector-item.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiC,UAAU,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACrF,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;;AAGrD,qBAGa,6BAA6B;IAUnB,QAAQ,EAAE,SAAS;IAAS,EAAE,EAAE,UAAU;IAT7D,eAAe,UAAS;IAEf,EAAE,EAAE,MAAM,CAAC;IAGpB,mBAAmB,EAAE,YAAY,CAAS;IAEpB,SAAS,SAA8B;gBAE1C,QAAQ,EAAE,SAAS,EAAS,EAAE,EAAE,UAAU;yCAVpD,6BAA6B;2CAA7B,6BAA6B;CAYzC"}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { QueryList, OnChanges, SimpleChanges, AfterContentInit, AfterViewInit, EventEmitter } from '@angular/core';
|
|
1
|
+
import { QueryList, OnChanges, SimpleChanges, AfterContentInit, AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
3
3
|
import { EuimChipSelectorItemDirective } from './euim-chip-selector-item/euim-chip-selector-item.directive';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class EuimChipSelectorComponent implements AfterViewInit, AfterContentInit, OnChanges {
|
|
6
|
+
export declare class EuimChipSelectorComponent implements AfterViewInit, AfterContentInit, OnChanges, OnDestroy {
|
|
7
|
+
euimChipSelectorItemSubscription: Subscription;
|
|
8
|
+
clickEventHandled: boolean;
|
|
6
9
|
backgroundColor: 'primary' | 'white' | '';
|
|
7
10
|
/**
|
|
8
11
|
* @deprecated Will be removed in v17.
|
|
@@ -15,19 +18,26 @@ export declare class EuimChipSelectorComponent implements AfterViewInit, AfterCo
|
|
|
15
18
|
sourceData: FilteredData[];
|
|
16
19
|
selectedChips: any[];
|
|
17
20
|
isMultiSelectionMode: BooleanInput;
|
|
21
|
+
euimKeepSelection: BooleanInput;
|
|
22
|
+
hasSearchbar: BooleanInput;
|
|
18
23
|
filterData: EventEmitter<FilteredData[]>;
|
|
19
24
|
clickItems: EventEmitter<string[]>;
|
|
20
25
|
get cssClasses(): string;
|
|
21
26
|
euimChipSelectorItemComponent: QueryList<EuimChipSelectorItemDirective>;
|
|
22
27
|
filteredData: FilteredData[];
|
|
23
28
|
filterConditions: any[];
|
|
29
|
+
searchInput: string;
|
|
24
30
|
ngAfterViewInit(): void;
|
|
25
31
|
ngAfterContentInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
subscribeToChanges(): void;
|
|
26
34
|
ngOnChanges(changes: SimpleChanges): void;
|
|
27
35
|
getCssClasses(): string;
|
|
28
36
|
setCssItemClasses(): void;
|
|
29
37
|
getCssItemClasses(): string;
|
|
30
38
|
updateChipsAndFilters(): void;
|
|
39
|
+
clickEventHandler(chip: any): void;
|
|
40
|
+
handleChange(event: any): void;
|
|
31
41
|
clearFiltersAndSelectAll(): void;
|
|
32
42
|
updateChipsAndFilterDataAfterInit(): void;
|
|
33
43
|
onFilterChange(filterCondition: string, isFilterAll: BooleanInput, item: any): void;
|
|
@@ -38,7 +48,7 @@ export declare class EuimChipSelectorComponent implements AfterViewInit, AfterCo
|
|
|
38
48
|
private handleSingleSelectionMode;
|
|
39
49
|
private clearAllSelections;
|
|
40
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<EuimChipSelectorComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuimChipSelectorComponent, "euim-chip-selector", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "color": { "alias": "color"; "required": false; }; "chipSelectedColor": { "alias": "chipSelectedColor"; "required": false; }; "chipFill": { "alias": "chipFill"; "required": false; }; "sourceData": { "alias": "sourceData"; "required": false; }; "selectedChips": { "alias": "selectedChips"; "required": false; }; "isMultiSelectionMode": { "alias": "isMultiSelectionMode"; "required": false; }; }, { "filterData": "filterData"; "clickItems": "clickItems"; }, ["euimChipSelectorItemComponent"], ["*"], false, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EuimChipSelectorComponent, "euim-chip-selector", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "color": { "alias": "color"; "required": false; }; "chipSelectedColor": { "alias": "chipSelectedColor"; "required": false; }; "chipFill": { "alias": "chipFill"; "required": false; }; "sourceData": { "alias": "sourceData"; "required": false; }; "selectedChips": { "alias": "selectedChips"; "required": false; }; "isMultiSelectionMode": { "alias": "isMultiSelectionMode"; "required": false; }; "euimKeepSelection": { "alias": "euimKeepSelection"; "required": false; }; "hasSearchbar": { "alias": "hasSearchbar"; "required": false; }; }, { "filterData": "filterData"; "clickItems": "clickItems"; }, ["euimChipSelectorItemComponent"], ["*"], false, never>;
|
|
42
52
|
}
|
|
43
53
|
interface FilteredData {
|
|
44
54
|
[key: string]: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"euim-chip-selector.component.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/euim-chip-selector/euim-chip-selector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,SAAS,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"euim-chip-selector.component.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/euim-chip-selector/euim-chip-selector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,SAAS,EAAE,aAAa,EAAwD,gBAAgB,EAAyC,aAAa,EAAU,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC9O,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,OAAO,EAAE,6BAA6B,EAAE,MAAM,6DAA6D,CAAC;AAC5G,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;;AAEpC,qBAQa,yBAA0B,YAAW,aAAa,EAAE,gBAAgB,EAAE,SAAS,EAAE,SAAS;IACnG,gCAAgC,EAAE,YAAY,CAAC;IAC/C,iBAAiB,UAAS;IACjB,eAAe,EAAE,SAAS,GAAI,OAAO,GAAG,EAAE,CAAa;IAChE;;;OAGG;IACM,SAAS,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAW;IAC1G,KAAK,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAW;IACtG,iBAAiB,EAAE,MAAM,GAAG,OAAO,CAAW;IAC9C,QAAQ,EAAE,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,eAAe,GAAG,OAAO,CAAa;IAClF,UAAU,EAAE,YAAY,EAAE,CAAM;IAChC,aAAa,QAAM;IAG5B,oBAAoB,EAAE,YAAY,CAAS;IAG3C,iBAAiB,EAAE,YAAY,CAAS;IAGxC,YAAY,EAAE,YAAY,CAAS;IACzB,UAAU,+BAAsC;IAChD,UAAU,yBAAgC;IAEpD,IACI,UAAU,IAAI,MAAM,CAEvB;IAGD,6BAA6B,EAAE,SAAS,CAAC,6BAA6B,CAAC,CAAC;IAExE,YAAY,iBAAwB;IACpC,gBAAgB,QAAK;IACrB,WAAW,SAAM;IAEjB,eAAe,IAAI,IAAI;IAKvB,kBAAkB,IAAI,IAAI;IAM1B,WAAW,IAAI,IAAI;IAMnB,kBAAkB,IAAI,IAAI;IAW1B,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAQzC,aAAa,IAAI,MAAM;IAOvB,iBAAiB,IAAI,IAAI;IASzB,iBAAiB,IAAI,MAAM;IAiB3B,qBAAqB,IAAI,IAAI;IA2B7B,iBAAiB,CAAC,IAAI,KAAA,GAAG,IAAI;IAqB7B,YAAY,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAgB9B,wBAAwB,IAAI,IAAI;IAehC,iCAAiC,IAAI,IAAI;IA6BzC,cAAc,CAAC,eAAe,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,IAAI,KAAA,GAAG,IAAI;IAW9E,WAAW,CAAC,eAAe,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,wBAAwB,EAAE,MAAM,EAAE,GAAG,IAAI;IAiBzG,iBAAiB,CAAC,IAAI,KAAA,GAAG,IAAI;IAK7B,oBAAoB,CAAC,IAAI,KAAA,GAAG,IAAI;IAKhC,OAAO,CAAC,wBAAwB;IAiBhC,OAAO,CAAC,yBAAyB;IAQjC,OAAO,CAAC,kBAAkB;yCAtRjB,yBAAyB;2CAAzB,yBAAyB;CA6RrC;AAED,UAAU,YAAY;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB"}
|