@syncfusion/ej2-dropdowns 34.1.32 → 34.2.2

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 (91) hide show
  1. package/.eslintrc.json +263 -0
  2. package/aceconfig.js +17 -0
  3. package/dist/ej2-dropdowns.min.js +2 -2
  4. package/dist/ej2-dropdowns.umd.min.js +2 -2
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +183 -6
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +191 -6
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +2 -2
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +8 -8
  14. package/src/drop-down-tree/drop-down-tree.d.ts +5 -0
  15. package/src/drop-down-tree/drop-down-tree.js +142 -0
  16. package/src/list-box/list-box.js +5 -5
  17. package/src/multi-select/multi-select.d.ts +2 -0
  18. package/src/multi-select/multi-select.js +44 -1
  19. package/styles/auto-complete/_variables.scss +1 -1
  20. package/styles/bds-lite.css +4 -1
  21. package/styles/bds.css +4 -1
  22. package/styles/bootstrap-dark-lite.css +4 -0
  23. package/styles/bootstrap-dark.css +4 -0
  24. package/styles/bootstrap-lite.css +4 -0
  25. package/styles/bootstrap.css +4 -0
  26. package/styles/bootstrap4-lite.css +4 -0
  27. package/styles/bootstrap4.css +4 -0
  28. package/styles/bootstrap5-dark-lite.css +4 -0
  29. package/styles/bootstrap5-dark.css +4 -0
  30. package/styles/bootstrap5-lite.css +4 -1
  31. package/styles/bootstrap5.3-lite.css +4 -1
  32. package/styles/bootstrap5.3.css +4 -1
  33. package/styles/bootstrap5.css +4 -1
  34. package/styles/combo-box/_variables.scss +1 -1
  35. package/styles/drop-down-base/_variables.scss +1 -1
  36. package/styles/drop-down-list/_variables.scss +1 -1
  37. package/styles/drop-down-tree/_variables.scss +1 -1
  38. package/styles/fabric-dark-lite.css +4 -0
  39. package/styles/fabric-dark.css +4 -0
  40. package/styles/fabric-lite.css +4 -0
  41. package/styles/fabric.css +4 -0
  42. package/styles/fluent-dark-lite.css +4 -0
  43. package/styles/fluent-dark.css +4 -0
  44. package/styles/fluent-lite.css +4 -1
  45. package/styles/fluent.css +4 -1
  46. package/styles/fluent2-lite.css +4 -1
  47. package/styles/fluent2.css +4 -1
  48. package/styles/highcontrast-light-lite.css +4 -0
  49. package/styles/highcontrast-light.css +4 -0
  50. package/styles/highcontrast-lite.css +4 -0
  51. package/styles/highcontrast.css +4 -0
  52. package/styles/list-box/_variables.scss +1 -1
  53. package/styles/material-dark-lite.css +4 -0
  54. package/styles/material-dark.css +4 -0
  55. package/styles/material-lite.css +4 -0
  56. package/styles/material.css +4 -0
  57. package/styles/material3-dark-lite.css +4 -0
  58. package/styles/material3-dark.css +4 -0
  59. package/styles/material3-lite.css +4 -1
  60. package/styles/material3.css +4 -1
  61. package/styles/mention/_layout.scss +3 -4
  62. package/styles/mention/_variables.scss +1 -1
  63. package/styles/mention/bds.css +5 -0
  64. package/styles/mention/bootstrap-dark.css +3 -0
  65. package/styles/mention/bootstrap.css +3 -0
  66. package/styles/mention/bootstrap4.css +3 -0
  67. package/styles/mention/bootstrap5-dark.css +3 -0
  68. package/styles/mention/bootstrap5.3.css +4 -1
  69. package/styles/mention/bootstrap5.css +4 -1
  70. package/styles/mention/fabric-dark.css +3 -0
  71. package/styles/mention/fabric.css +3 -0
  72. package/styles/mention/fluent-dark.css +3 -0
  73. package/styles/mention/fluent.css +4 -1
  74. package/styles/mention/fluent2.css +5 -0
  75. package/styles/mention/highcontrast-light.css +3 -0
  76. package/styles/mention/highcontrast.css +3 -0
  77. package/styles/mention/material-dark.css +3 -0
  78. package/styles/mention/material.css +3 -0
  79. package/styles/mention/material3-dark.css +4 -1
  80. package/styles/mention/material3.css +5 -0
  81. package/styles/mention/tailwind-dark.css +3 -0
  82. package/styles/mention/tailwind.css +4 -1
  83. package/styles/mention/tailwind3.css +5 -0
  84. package/styles/multi-select/_variables.scss +1 -1
  85. package/styles/tailwind-dark-lite.css +4 -0
  86. package/styles/tailwind-dark.css +4 -0
  87. package/styles/tailwind-lite.css +4 -1
  88. package/styles/tailwind.css +4 -1
  89. package/styles/tailwind3-lite.css +4 -1
  90. package/styles/tailwind3.css +4 -1
  91. package/tslint.json +111 -0
@@ -2935,4 +2935,8 @@ ejs-listbox {
2935
2935
 
2936
2936
  .e-listbox-container .e-selectall-parent + .e-list-wrap {
2937
2937
  height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
2938
+ }
2939
+
2940
+ .e-mention-placeholder {
2941
+ display: block;
2938
2942
  }
@@ -3630,4 +3630,8 @@ ejs-listbox {
3630
3630
 
3631
3631
  .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
3632
3632
  height: calc(100% - 104px) !important; /* stylelint-disable-line declaration-no-important */
3633
+ }
3634
+
3635
+ .e-mention-placeholder {
3636
+ display: block;
3633
3637
  }
@@ -1,2 +1,2 @@
1
- @forward '../../node_modules/@syncfusion/ej2-base/styles/common/_base-variables';
1
+ @forward '@syncfusion/ej2-base/styles/common/_base-variables';
2
2
  @forward '_material3-definition';
@@ -3548,4 +3548,8 @@ ejs-listbox {
3548
3548
 
3549
3549
  .e-listbox-container .e-selectall-parent + .e-list-wrap {
3550
3550
  height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3551
+ }
3552
+
3553
+ .e-mention-placeholder {
3554
+ display: block;
3551
3555
  }
@@ -5021,4 +5021,8 @@ ejs-listbox {
5021
5021
 
5022
5022
  .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
5023
5023
  height: calc(100% - 103px) !important; /* stylelint-disable-line declaration-no-important */
5024
+ }
5025
+
5026
+ .e-mention-placeholder {
5027
+ display: block;
5024
5028
  }
@@ -3558,4 +3558,8 @@ ejs-listbox {
3558
3558
 
3559
3559
  .e-listbox-container .e-selectall-parent + .e-list-wrap {
3560
3560
  height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3561
+ }
3562
+
3563
+ .e-mention-placeholder {
3564
+ display: block;
3561
3565
  }
@@ -5058,4 +5058,8 @@ ejs-listbox {
5058
5058
 
5059
5059
  .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
5060
5060
  height: calc(100% - 103px) !important; /* stylelint-disable-line declaration-no-important */
5061
+ }
5062
+
5063
+ .e-mention-placeholder {
5064
+ display: block;
5061
5065
  }
@@ -3983,4 +3983,8 @@ ejs-listbox {
3983
3983
 
3984
3984
  .e-listbox-container .e-selectall-parent + .e-list-wrap {
3985
3985
  height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3986
+ }
3987
+
3988
+ .e-mention-placeholder {
3989
+ display: block;
3986
3990
  }
@@ -5384,4 +5384,8 @@ ejs-listbox {
5384
5384
 
5385
5385
  .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
5386
5386
  height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
5387
+ }
5388
+
5389
+ .e-mention-placeholder {
5390
+ display: block;
5387
5391
  }
@@ -3987,4 +3987,7 @@ ejs-listbox {
3987
3987
  height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3988
3988
  }
3989
3989
 
3990
- /* stylelint-disable-line no-empty-source */
3990
+ /* stylelint-disable-line no-empty-source */
3991
+ .e-mention-placeholder {
3992
+ display: block;
3993
+ }
@@ -5388,4 +5388,7 @@ ejs-listbox {
5388
5388
  height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
5389
5389
  }
5390
5390
 
5391
- /* stylelint-disable-line no-empty-source */
5391
+ /* stylelint-disable-line no-empty-source */
5392
+ .e-mention-placeholder {
5393
+ display: block;
5394
+ }
@@ -1,7 +1,6 @@
1
1
  @use 'variables' as *;
2
2
  @include export-module('mention-layout') {
3
-
4
- //default
5
- //undefined
6
- //enddefault
3
+ .e-mention-placeholder {
4
+ display: block;
5
+ }
7
6
  }
@@ -1,2 +1,2 @@
1
- @forward '../../node_modules/@syncfusion/ej2-base/styles/common/_base-variables';
1
+ @forward '@syncfusion/ej2-base/styles/common/_base-variables';
2
2
  @forward '_material3-definition';
@@ -1,3 +1,8 @@
1
1
  /* stylelint-disable-line no-empty-source */
2
2
 
3
3
 
4
+
5
+
6
+ .e-mention-placeholder {
7
+ display: block;
8
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -82,4 +82,7 @@
82
82
  /* 13px */
83
83
  /* 14px */
84
84
  /* 15px */
85
- /* 16px */
85
+ /* 16px */
86
+ .e-mention-placeholder {
87
+ display: block;
88
+ }
@@ -1 +1,4 @@
1
- /* stylelint-disable-line no-empty-source */
1
+ /* stylelint-disable-line no-empty-source */
2
+ .e-mention-placeholder {
3
+ display: block;
4
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -1 +1,4 @@
1
- /* stylelint-disable-line no-empty-source */
1
+ /* stylelint-disable-line no-empty-source */
2
+ .e-mention-placeholder {
3
+ display: block;
4
+ }
@@ -83,3 +83,8 @@
83
83
  /* 16px */
84
84
 
85
85
 
86
+
87
+
88
+ .e-mention-placeholder {
89
+ display: block;
90
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -79,4 +79,7 @@
79
79
  /* 13px */
80
80
  /* 14px */
81
81
  /* 15px */
82
- /* 16px */
82
+ /* 16px */
83
+ .e-mention-placeholder {
84
+ display: block;
85
+ }
@@ -81,3 +81,8 @@
81
81
  /* 14px */
82
82
  /* 15px */
83
83
  /* 16px */
84
+
85
+
86
+ .e-mention-placeholder {
87
+ display: block;
88
+ }
@@ -0,0 +1,3 @@
1
+ .e-mention-placeholder {
2
+ display: block;
3
+ }
@@ -1 +1,4 @@
1
- /* stylelint-disable-line no-empty-source */
1
+ /* stylelint-disable-line no-empty-source */
2
+ .e-mention-placeholder {
3
+ display: block;
4
+ }
@@ -71,3 +71,8 @@
71
71
  /* 49px */
72
72
  /* 50px */
73
73
  /* 5em */
74
+
75
+
76
+ .e-mention-placeholder {
77
+ display: block;
78
+ }
@@ -1,2 +1,2 @@
1
- @forward '../../node_modules/@syncfusion/ej2-base/styles/common/_base-variables';
1
+ @forward '@syncfusion/ej2-base/styles/common/_base-variables';
2
2
  @forward '_material3-definition';
@@ -2851,4 +2851,8 @@ ejs-listbox {
2851
2851
 
2852
2852
  .e-listbox-container .e-selectall-parent + .e-list-wrap {
2853
2853
  height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
2854
+ }
2855
+
2856
+ .e-mention-placeholder {
2857
+ display: block;
2854
2858
  }
@@ -3703,4 +3703,8 @@ ejs-listbox {
3703
3703
  .e-bigger.e-listbox-container .e-list-header,
3704
3704
  .e-bigger.e-listbox-container .e-list-group-item {
3705
3705
  font-size: 14px;
3706
+ }
3707
+
3708
+ .e-mention-placeholder {
3709
+ display: block;
3706
3710
  }
@@ -2853,4 +2853,7 @@ ejs-listbox {
2853
2853
  height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
2854
2854
  }
2855
2855
 
2856
- /* stylelint-disable-line no-empty-source */
2856
+ /* stylelint-disable-line no-empty-source */
2857
+ .e-mention-placeholder {
2858
+ display: block;
2859
+ }
@@ -3705,4 +3705,7 @@ ejs-listbox {
3705
3705
  font-size: 14px;
3706
3706
  }
3707
3707
 
3708
- /* stylelint-disable-line no-empty-source */
3708
+ /* stylelint-disable-line no-empty-source */
3709
+ .e-mention-placeholder {
3710
+ display: block;
3711
+ }
@@ -2961,4 +2961,7 @@ ejs-listbox {
2961
2961
  height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
2962
2962
  }
2963
2963
 
2964
- /* stylelint-disable-line no-empty-source */
2964
+ /* stylelint-disable-line no-empty-source */
2965
+ .e-mention-placeholder {
2966
+ display: block;
2967
+ }
@@ -3637,4 +3637,7 @@ ejs-listbox {
3637
3637
  padding: 12px;
3638
3638
  }
3639
3639
 
3640
- /* stylelint-disable-line no-empty-source */
3640
+ /* stylelint-disable-line no-empty-source */
3641
+ .e-mention-placeholder {
3642
+ display: block;
3643
+ }
package/tslint.json ADDED
@@ -0,0 +1,111 @@
1
+ {
2
+ "rules": {
3
+ "chai-vague-errors": true,
4
+ "use-isnan": true,
5
+ "missing-jsdoc": true,
6
+ "missing-optional-annotation": true,
7
+ "no-backbone-get-set-outside-model": true,
8
+ "no-banned-terms": true,
9
+ "no-constant-condition": true,
10
+ "no-control-regex": true,
11
+ "no-cookies": true,
12
+ "no-delete-expression": true,
13
+ "no-document-write": true,
14
+ "no-document-domain": true,
15
+ "no-disable-auto-sanitization": true,
16
+ "no-duplicate-case": true,
17
+ "no-duplicate-parameter-names": true,
18
+ "no-empty-interfaces": true,
19
+ "no-exec-script": true,
20
+ "no-function-constructor-with-string-args": true,
21
+ "no-function-expression": true,
22
+ "no-invalid-regexp": true,
23
+ "no-for-in": true,
24
+ "member-access": true,
25
+ "no-multiline-string": true,
26
+ "no-multiple-var-decl": true,
27
+ "no-unnecessary-bind": true,
28
+ "no-unnecessary-semicolons": true,
29
+ "no-octal-literal": true,
30
+ "no-regex-spaces": true,
31
+ "no-sparse-arrays": true,
32
+ "no-string-based-set-immediate": true,
33
+ "no-string-based-set-interval": true,
34
+ "no-unused-imports": true,
35
+ "no-with-statement": true,
36
+ "prefer-array-literal": true,
37
+ "promise-must-complete": false,
38
+ "react-no-dangerous-html": true,
39
+ "use-named-parameter": true,
40
+ "valid-typeof": true,
41
+ "max-func-body-length": [true, 100, {
42
+ "ignore-parameters-to-function-regex": "describe"
43
+ }],
44
+ "class-name": true,
45
+ "curly": true,
46
+ "eofline": false,
47
+ "forin": true,
48
+ "indent": [
49
+ true,
50
+ "spaces"
51
+ ],
52
+ "label-position": true,
53
+ "max-line-length": [true, 140],
54
+ "no-arg": true,
55
+ "no-console": [true,
56
+ "debug",
57
+ "info",
58
+ "log",
59
+ "time",
60
+ "timeEnd",
61
+ "trace"
62
+ ],
63
+ "no-construct": true,
64
+ "no-parameter-properties": true,
65
+ "no-debugger": true,
66
+ "no-duplicate-variable": true,
67
+ "no-empty": true,
68
+ "no-eval": true,
69
+ "no-string-literal": true,
70
+ "no-switch-case-fall-through": true,
71
+ "trailing-comma": true,
72
+ "no-trailing-whitespace": true,
73
+ "no-unused-expression": true,
74
+ "no-use-before-declare": false,
75
+ "no-var-requires": true,
76
+ "one-line": [true,
77
+ "check-open-brace",
78
+ "check-catch",
79
+ "check-else",
80
+ "check-whitespace"
81
+ ],
82
+ "no-any": true,
83
+ "no-conditional-assignment": true,
84
+ "no-angle-bracket-type-assertion": false,
85
+ "align": [true, "parameters", "arguments", "statements"],
86
+ "no-empty-line-after-opening-brace": false,
87
+ "typedef-whitespace": [false],
88
+ "ban": true,
89
+ "quotemark": [true, "single"],
90
+ "semicolon": true,
91
+ "triple-equals": [true, "allow-null-check"],
92
+ "typedef": [true,
93
+ "call-signature",
94
+ "parameter",
95
+ "property-declaration",
96
+ "variable-declaration",
97
+ "arrow-parameter",
98
+ "member-variable-declaration"],
99
+ "variable-name": true,
100
+ "whitespace": [true,
101
+ "check-branch",
102
+ "check-decl",
103
+ "check-operator",
104
+ "check-separator",
105
+ "check-type"
106
+ ],
107
+ "jsdoc-format": true,
108
+ "no-var-keyword": true,
109
+ "radix": true
110
+ }
111
+ }