@syncfusion/ej2-angular-dropdowns 21.2.8-ngcc → 21.2.10-ngcc

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 (37) hide show
  1. package/CHANGELOG.md +38 -6
  2. package/dist/ej2-angular-dropdowns.umd.js +1 -1
  3. package/dist/ej2-angular-dropdowns.umd.min.js +1 -1
  4. package/package.json +7 -7
  5. package/schematics/utils/lib-details.d.ts +2 -2
  6. package/schematics/utils/lib-details.js +2 -2
  7. package/schematics/utils/lib-details.ts +2 -2
  8. package/styles/bootstrap-dark.css +207 -99
  9. package/styles/bootstrap.css +209 -100
  10. package/styles/bootstrap4.css +209 -100
  11. package/styles/bootstrap5-dark.css +207 -99
  12. package/styles/bootstrap5.css +207 -99
  13. package/styles/fabric-dark.css +207 -99
  14. package/styles/fabric.css +209 -100
  15. package/styles/fluent-dark.css +209 -100
  16. package/styles/fluent.css +209 -100
  17. package/styles/highcontrast-light.css +207 -99
  18. package/styles/highcontrast.css +209 -100
  19. package/styles/list-box/bootstrap-dark.css +207 -99
  20. package/styles/list-box/bootstrap.css +209 -100
  21. package/styles/list-box/bootstrap4.css +209 -100
  22. package/styles/list-box/bootstrap5-dark.css +207 -99
  23. package/styles/list-box/bootstrap5.css +207 -99
  24. package/styles/list-box/fabric-dark.css +207 -99
  25. package/styles/list-box/fabric.css +209 -100
  26. package/styles/list-box/fluent-dark.css +209 -100
  27. package/styles/list-box/fluent.css +209 -100
  28. package/styles/list-box/highcontrast-light.css +207 -99
  29. package/styles/list-box/highcontrast.css +209 -100
  30. package/styles/list-box/material-dark.css +207 -99
  31. package/styles/list-box/material.css +209 -100
  32. package/styles/list-box/tailwind-dark.css +209 -100
  33. package/styles/list-box/tailwind.css +209 -100
  34. package/styles/material-dark.css +207 -99
  35. package/styles/material.css +209 -100
  36. package/styles/tailwind-dark.css +209 -100
  37. package/styles/tailwind.css +209 -100
package/CHANGELOG.md CHANGED
@@ -6,6 +6,32 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
10
+
11
+ ### MultiSelect
12
+
13
+ #### Bug Fixes
14
+
15
+ - `#I467953` - Issue with "Query construct incorrectly when preselect the value second time beyond the data source value" has been resolved.
16
+
17
+ ### DropDownList
18
+
19
+ #### Bug Fixes
20
+
21
+ - `I469452` - Issue with "A console error is thrown when the datasource value field has a null value in the dropdown list" has been resolved.
22
+
23
+ ### ComboBox
24
+
25
+ #### Bug Fixes
26
+
27
+ - `#I467673` - The issue with "Selected value is read twice in the NVDA reader in the combobox component" has been resolved.
28
+
29
+ ## 21.2.8 (2023-05-30)
30
+
31
+ ### ListBox
32
+
33
+ #### Bug Fixes
34
+
9
35
  - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
10
36
 
11
37
  ### AutoComplete
@@ -14,6 +40,12 @@
14
40
 
15
41
  - `#I460876` - Issue with "The header and footer template are not working" has been resolved.
16
42
 
43
+ ### Multiselect
44
+
45
+ #### Bug Fixes
46
+
47
+ - `#SF-445456` - Issue with "Preselect value beyond take property not shown in Multiselect component" has been resolved.
48
+
17
49
  ## 21.2.6 (2023-05-23)
18
50
 
19
51
  ### MultiSelect
@@ -22,19 +54,19 @@
22
54
 
23
55
  - `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
24
56
 
25
- ## 21.2.5 (2023-05-16)
26
-
27
- ### ListBox
57
+ ### DropDownList
28
58
 
29
59
  #### Bug Fixes
30
60
 
31
- - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
61
+ - `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
32
62
 
33
- ### DropDownList
63
+ ## 21.2.5 (2023-05-16)
64
+
65
+ ### ListBox
34
66
 
35
67
  #### Bug Fixes
36
68
 
37
- - `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
69
+ - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
38
70
 
39
71
  ### ComboBox
40
72
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-dropdowns.umd.js
3
- * version : 21.2.8
3
+ * version : 21.2.10
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-dropdowns.umd.min.js
3
- * version : 21.2.8
3
+ * version : 21.2.10
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-dropdowns@*",
3
- "_id": "@syncfusion/ej2-angular-dropdowns@21.2.6",
3
+ "_id": "@syncfusion/ej2-angular-dropdowns@21.2.8",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-ps938bsbfOUfqUWcuB+UdEl3C36d+UjGflbA4YDsSGSRocejg+XdP/+ax+Z1+keuj4nKAKOY6r4UE4D58HLzeg==",
5
+ "_integrity": "sha512-8kBmqeJDWt/Myr0D6rZRZ4znc+zm261aU3faVtUBILRIrTLbT9bchOo5ARZlQk3H6tmcUBBFVbMQmiIAR14Zmg==",
6
6
  "_location": "/@syncfusion/ej2-angular-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-21.2.6.tgz",
23
- "_shasum": "5f7bf473114672cbeb6947d65e069a2a9b098e2e",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-21.2.8.tgz",
23
+ "_shasum": "5256e669978f90dc0b3c6940e65de789866f0a1c",
24
24
  "_spec": "@syncfusion/ej2-angular-dropdowns@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
26
26
  "author": {
@@ -32,8 +32,8 @@
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-angular-base": "~21.2.3",
35
- "@syncfusion/ej2-base": "~21.2.3",
36
- "@syncfusion/ej2-dropdowns": "21.2.8"
35
+ "@syncfusion/ej2-base": "~21.2.9",
36
+ "@syncfusion/ej2-dropdowns": "21.2.10"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 DropDown Components for Angular",
@@ -63,5 +63,5 @@
63
63
  "schematics": "./schematics/collection.json",
64
64
  "sideEffects": false,
65
65
  "typings": "ej2-angular-dropdowns.d.ts",
66
- "version": "21.2.8-ngcc"
66
+ "version": "21.2.10-ngcc"
67
67
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-dropdowns";
2
- export declare const pkgVer = "^21.2.6";
2
+ export declare const pkgVer = "^21.2.8";
3
3
  export declare const moduleName = "DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule";
4
- export declare const themeVer = "~21.2.6";
4
+ export declare const themeVer = "~21.2.8";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-dropdowns';
4
- exports.pkgVer = '^21.2.8';
4
+ exports.pkgVer = '^21.2.10';
5
5
  exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
6
- exports.themeVer = '~21.2.8';
6
+ exports.themeVer = '~21.2.10';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-dropdowns';
2
- export const pkgVer = '^21.2.8';
2
+ export const pkgVer = '^21.2.10';
3
3
  export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
4
- export const themeVer = '~21.2.8';
4
+ export const themeVer = '~21.2.10';