@syncfusion/ej2-angular-dropdowns 22.1.34 → 22.1.35

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.
Files changed (32) hide show
  1. package/README.md +205 -107
  2. package/esm2020/src/auto-complete/autocomplete.component.mjs +1 -1
  3. package/esm2020/src/combo-box/combobox.component.mjs +1 -1
  4. package/esm2020/src/drop-down-list/dropdownlist.component.mjs +1 -1
  5. package/esm2020/src/drop-down-tree/dropdowntree.component.mjs +3 -3
  6. package/esm2020/src/index.mjs +4 -1
  7. package/esm2020/src/list-box/listbox.component.mjs +1 -1
  8. package/esm2020/src/mention/mention-all.module.mjs +23 -0
  9. package/esm2020/src/mention/mention.component.mjs +84 -0
  10. package/esm2020/src/mention/mention.module.mjs +25 -0
  11. package/esm2020/src/multi-select/multiselect.component.mjs +1 -1
  12. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +162 -45
  13. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -1
  14. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +162 -45
  15. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -1
  16. package/package.json +1 -1
  17. package/schematics/utils/lib-details.ts +3 -3
  18. package/src/auto-complete/autocomplete.component.d.ts +4 -0
  19. package/src/combo-box/combobox.component.d.ts +4 -0
  20. package/src/drop-down-list/dropdownlist.component.d.ts +5 -0
  21. package/src/drop-down-tree/dropdowntree.component.d.ts +13 -1
  22. package/src/index.d.ts +3 -0
  23. package/src/list-box/listbox.component.d.ts +1 -0
  24. package/src/mention/mention-all.module.d.ts +11 -0
  25. package/src/mention/mention.component.d.ts +59 -0
  26. package/src/mention/mention.module.d.ts +11 -0
  27. package/src/multi-select/multiselect.component.d.ts +5 -0
  28. package/styles/material3-dark.css +0 -6
  29. package/styles/material3.css +0 -6
  30. package/styles/multi-select/_layout.scss +4 -2
  31. package/styles/multi-select/material3-dark.css +0 -6
  32. package/styles/multi-select/material3.css +0 -6
package/src/index.d.ts CHANGED
@@ -16,4 +16,7 @@ export { ListBoxAllModule } from './list-box/listbox-all.module';
16
16
  export { DropDownTreeComponent } from './drop-down-tree/dropdowntree.component';
17
17
  export { DropDownTreeModule } from './drop-down-tree/dropdowntree.module';
18
18
  export { DropDownTreeAllModule } from './drop-down-tree/dropdowntree-all.module';
19
+ export { MentionComponent } from './mention/mention.component';
20
+ export { MentionModule } from './mention/mention.module';
21
+ export { MentionAllModule } from './mention/mention-all.module';
19
22
  export * from '@syncfusion/ej2-dropdowns';
@@ -42,6 +42,7 @@ export declare class ListBoxComponent extends ListBox implements IComponentBase
42
42
  *For EX: We have expression evolution as like ES6 expression string literals.
43
43
  *
44
44
  * @default null
45
+ * @asptype string
45
46
  * @deprecated
46
47
  */
47
48
  itemTemplate: any;
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./mention.module";
4
+ /**
5
+ * NgModule definition for the Mention component with providers.
6
+ */
7
+ export declare class MentionAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MentionAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MentionAllModule, never, [typeof i1.CommonModule, typeof i2.MentionModule], [typeof i2.MentionModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MentionAllModule>;
11
+ }
@@ -0,0 +1,59 @@
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Mention } from '@syncfusion/ej2-dropdowns';
4
+ import * as i0 from "@angular/core";
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ *The Mention component contains a list of predefined values, from which the user can choose a single value.
10
+ *```html
11
+ *<ejs-mention></ejs-mention>
12
+ *```
13
+ */
14
+ export declare class MentionComponent extends Mention implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ containerContext: any;
20
+ tagObjects: any;
21
+ actionBegin: any;
22
+ actionComplete: any;
23
+ actionFailure: any;
24
+ beforeOpen: any;
25
+ change: any;
26
+ closed: any;
27
+ created: any;
28
+ destroyed: any;
29
+ filtering: any;
30
+ opened: any;
31
+ select: any;
32
+ /**
33
+ * Specifies the template for the selected value from the suggestion list.
34
+ * @default null
35
+ * @asptype string
36
+ */
37
+ displayTemplate: any;
38
+ /**
39
+ * Specifies the template for the suggestion list.
40
+ * @default null
41
+ */
42
+ itemTemplate: any;
43
+ /**
44
+ * Specifies the template for showing until data is loaded in the popup.
45
+ * @default null
46
+ * @asptype string
47
+ */
48
+ spinnerTemplate: any;
49
+ noRecordsTemplate: any;
50
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
51
+ ngOnInit(): void;
52
+ ngAfterViewInit(): void;
53
+ ngOnDestroy(): void;
54
+ ngAfterContentChecked(): void;
55
+ registerEvents: (eventList: string[]) => void;
56
+ addTwoWay: (propList: string[]) => void;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<MentionComponent, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<MentionComponent, "ejs-mention", never, { "allowSpaces": "allowSpaces"; "cssClass": "cssClass"; "dataSource": "dataSource"; "displayTemplate": "displayTemplate"; "fields": "fields"; "filterType": "filterType"; "highlight": "highlight"; "ignoreCase": "ignoreCase"; "itemTemplate": "itemTemplate"; "locale": "locale"; "mentionChar": "mentionChar"; "minLength": "minLength"; "noRecordsTemplate": "noRecordsTemplate"; "popupHeight": "popupHeight"; "popupWidth": "popupWidth"; "query": "query"; "showMentionChar": "showMentionChar"; "sortOrder": "sortOrder"; "spinnerTemplate": "spinnerTemplate"; "suffixText": "suffixText"; "suggestionCount": "suggestionCount"; "target": "target"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "beforeOpen": "beforeOpen"; "change": "change"; "closed": "closed"; "created": "created"; "destroyed": "destroyed"; "filtering": "filtering"; "opened": "opened"; "select": "select"; }, ["displayTemplate", "itemTemplate", "spinnerTemplate", "noRecordsTemplate"], ["*"]>;
59
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./mention.component";
3
+ import * as i2 from "@angular/common";
4
+ /**
5
+ * NgModule definition for the Mention component.
6
+ */
7
+ export declare class MentionModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MentionModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MentionModule, [typeof i1.MentionComponent], [typeof i2.CommonModule], [typeof i1.MentionComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MentionModule>;
11
+ }
@@ -45,12 +45,14 @@ export declare class MultiSelectComponent extends MultiSelect implements ICompon
45
45
  * Accepts the template design and assigns it to the footer container of the popup list.
46
46
  * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.
47
47
  * @default null
48
+ * @asptype string
48
49
  */
49
50
  footerTemplate: any;
50
51
  /**
51
52
  * Accepts the template design and assigns it to the header container of the popup list.
52
53
  * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.
53
54
  * @default null
55
+ * @asptype string
54
56
  */
55
57
  headerTemplate: any;
56
58
  /**
@@ -63,6 +65,7 @@ export declare class MultiSelectComponent extends MultiSelect implements ICompon
63
65
  *For EX: We have expression evolution as like ES6 expression string literals.
64
66
  *
65
67
  * @default null
68
+ * @asptype string
66
69
  */
67
70
  valueTemplate: any;
68
71
  /**
@@ -74,11 +77,13 @@ export declare class MultiSelectComponent extends MultiSelect implements ICompon
74
77
  *For EX: We have expression evolution as like ES6 expression string literals.
75
78
  *
76
79
  * @default null
80
+ * @asptype string
77
81
  */
78
82
  itemTemplate: any;
79
83
  /**
80
84
  * Accepts the template design and assigns it to the group headers present in the MultiSelect popup list.
81
85
  * @default null
86
+ * @asptype string
82
87
  */
83
88
  groupTemplate: any;
84
89
  noRecordsTemplate: any;
@@ -2584,12 +2584,6 @@ ejs-dropdownlist {
2584
2584
  padding: 4px 12px 4px;
2585
2585
  }
2586
2586
 
2587
- .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon,
2588
- .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
2589
- padding-left: 8px;
2590
- padding-right: 8px;
2591
- }
2592
-
2593
2587
  .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-back-icon {
2594
2588
  padding: 0 8px;
2595
2589
  }
@@ -2640,12 +2640,6 @@ ejs-dropdownlist {
2640
2640
  padding: 4px 12px 4px;
2641
2641
  }
2642
2642
 
2643
- .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon,
2644
- .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
2645
- padding-left: 8px;
2646
- padding-right: 8px;
2647
- }
2648
-
2649
2643
  .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-back-icon {
2650
2644
  padding: 0 8px;
2651
2645
  }
@@ -1055,8 +1055,10 @@
1055
1055
 
1056
1056
  .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon,
1057
1057
  .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
1058
- padding-left: 8px;
1059
- @if $ddl-multiselect-skin-name == 'material' or $ddl-multiselect-skin-name == 'Material3' {
1058
+ @if $ddl-multiselect-skin-name != 'Material3' {
1059
+ padding-left: 8px;
1060
+ }
1061
+ @if $ddl-multiselect-skin-name == 'material' {
1060
1062
  padding-right: 8px;
1061
1063
  }
1062
1064
  }
@@ -1376,12 +1376,6 @@
1376
1376
  padding: 4px 12px 4px;
1377
1377
  }
1378
1378
 
1379
- .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon,
1380
- .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
1381
- padding-left: 8px;
1382
- padding-right: 8px;
1383
- }
1384
-
1385
1379
  .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-back-icon {
1386
1380
  padding: 0 8px;
1387
1381
  }
@@ -1432,12 +1432,6 @@
1432
1432
  padding: 4px 12px 4px;
1433
1433
  }
1434
1434
 
1435
- .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon,
1436
- .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
1437
- padding-left: 8px;
1438
- padding-right: 8px;
1439
- }
1440
-
1441
1435
  .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-back-icon {
1442
1436
  padding: 0 8px;
1443
1437
  }