@syncfusion/ej2-dropdowns 20.1.60 → 20.2.38

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 (95) hide show
  1. package/CHANGELOG.md +2 -62
  2. package/dist/ej2-dropdowns.umd.min.js +2 -2
  3. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-dropdowns.es2015.js +110 -104
  5. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es5.js +73 -67
  7. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  8. package/dist/global/ej2-dropdowns.min.js +2 -2
  9. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/helpers/e2e/autocomplete.js +59 -43
  12. package/helpers/e2e/combobox.js +62 -46
  13. package/helpers/e2e/dropdownlist.js +71 -55
  14. package/helpers/e2e/index.js +11 -9
  15. package/helpers/e2e/listboxHelper.js +55 -38
  16. package/helpers/e2e/multiselect.js +104 -88
  17. package/package.json +11 -11
  18. package/src/common/incremental-search.js +1 -1
  19. package/src/drop-down-base/drop-down-base-model.d.ts +1 -1
  20. package/src/drop-down-base/drop-down-base.d.ts +5 -1
  21. package/src/drop-down-base/drop-down-base.js +3 -5
  22. package/src/drop-down-list/drop-down-list.js +13 -15
  23. package/src/drop-down-tree/drop-down-tree-model.d.ts +2 -2
  24. package/src/drop-down-tree/drop-down-tree.js +5 -5
  25. package/src/list-box/list-box.d.ts +1 -0
  26. package/src/list-box/list-box.js +22 -13
  27. package/src/multi-select/multi-select-model.d.ts +1 -1
  28. package/src/multi-select/multi-select.d.ts +2 -1
  29. package/src/multi-select/multi-select.js +29 -28
  30. package/styles/auto-complete/_fusionnew-definition.scss +2 -0
  31. package/styles/auto-complete/_material3-definition.scss +2 -0
  32. package/styles/bootstrap-dark.css +59 -11
  33. package/styles/bootstrap.css +59 -11
  34. package/styles/bootstrap4.css +59 -11
  35. package/styles/bootstrap5-dark.css +60 -12
  36. package/styles/bootstrap5.css +60 -12
  37. package/styles/combo-box/_fusionnew-definition.scss +2 -0
  38. package/styles/combo-box/_material3-definition.scss +2 -0
  39. package/styles/drop-down-base/_fusionnew-definition.scss +111 -0
  40. package/styles/drop-down-base/_material3-definition.scss +111 -0
  41. package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
  42. package/styles/drop-down-list/_material3-definition.scss +201 -0
  43. package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
  44. package/styles/drop-down-list/icons/_material3.scss +14 -0
  45. package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
  46. package/styles/drop-down-tree/_material3-definition.scss +60 -0
  47. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
  48. package/styles/drop-down-tree/icons/_material3.scss +11 -0
  49. package/styles/fabric-dark.css +59 -11
  50. package/styles/fabric.css +59 -11
  51. package/styles/fluent-dark.css +63 -15
  52. package/styles/fluent.css +60 -12
  53. package/styles/highcontrast-light.css +59 -11
  54. package/styles/highcontrast.css +59 -11
  55. package/styles/list-box/_bootstrap-dark-definition.scss +5 -1
  56. package/styles/list-box/_bootstrap-definition.scss +5 -1
  57. package/styles/list-box/_bootstrap4-definition.scss +5 -1
  58. package/styles/list-box/_bootstrap5-definition.scss +7 -2
  59. package/styles/list-box/_fabric-dark-definition.scss +5 -1
  60. package/styles/list-box/_fabric-definition.scss +5 -1
  61. package/styles/list-box/_fluent-definition.scss +7 -2
  62. package/styles/list-box/_fusionnew-definition.scss +113 -0
  63. package/styles/list-box/_highcontrast-definition.scss +5 -1
  64. package/styles/list-box/_highcontrast-light-definition.scss +5 -1
  65. package/styles/list-box/_layout.scss +36 -1
  66. package/styles/list-box/_material-dark-definition.scss +6 -2
  67. package/styles/list-box/_material-definition.scss +6 -2
  68. package/styles/list-box/_material3-definition.scss +119 -0
  69. package/styles/list-box/_tailwind-definition.scss +6 -2
  70. package/styles/list-box/_theme.scss +40 -8
  71. package/styles/list-box/bootstrap-dark.css +49 -11
  72. package/styles/list-box/bootstrap.css +59 -11
  73. package/styles/list-box/bootstrap4.css +59 -11
  74. package/styles/list-box/bootstrap5-dark.css +60 -12
  75. package/styles/list-box/bootstrap5.css +60 -12
  76. package/styles/list-box/fabric-dark.css +49 -11
  77. package/styles/list-box/fabric.css +59 -11
  78. package/styles/list-box/fluent-dark.css +63 -15
  79. package/styles/list-box/fluent.css +60 -12
  80. package/styles/list-box/highcontrast-light.css +49 -11
  81. package/styles/list-box/highcontrast.css +59 -11
  82. package/styles/list-box/icons/_fusionnew.scss +25 -0
  83. package/styles/list-box/icons/_material3.scss +25 -0
  84. package/styles/list-box/material-dark.css +50 -12
  85. package/styles/list-box/material.css +60 -12
  86. package/styles/list-box/tailwind-dark.css +60 -12
  87. package/styles/list-box/tailwind.css +60 -12
  88. package/styles/material-dark.css +60 -12
  89. package/styles/material.css +60 -12
  90. package/styles/multi-select/_fusionnew-definition.scss +219 -0
  91. package/styles/multi-select/_material3-definition.scss +219 -0
  92. package/styles/multi-select/icons/_fusionnew.scss +27 -0
  93. package/styles/multi-select/icons/_material3.scss +27 -0
  94. package/styles/tailwind-dark.css +60 -12
  95. package/styles/tailwind.css +60 -12
@@ -0,0 +1,201 @@
1
+ $ddl-input-font-size: $text-sm !default;
2
+ $ddl-zero-value: 0 !default;
3
+ $ddl-input-border: 1px $border-light !default;
4
+ $ddl-input-font-family: inherit !default;
5
+ $ddl-input-margin-bottom: 4px !default;
6
+ $ddl-input-padding: 8px $ddl-zero-value 4px !default;
7
+ $ddl-input-group-border-width: $ddl-zero-value !default;
8
+ $ddl-list-search-icon-padding: 12px 8px 8px !default;
9
+ $ddl-list-filter-text-indent: 0 !default;
10
+ $ddl-bigger-list-font-size: $text-base !default;
11
+ $ddl-filter-border: 0 !default;
12
+ $ddl-filter-top-border: 0 !default;
13
+ $ddl-filter-padding: 5px !default;
14
+ $ddl-clear-icon-margin-right: 66px !default;
15
+ $ddl-back-icon-margin: 0 10px 0 -52px !default;
16
+ $ddl-back-icon-padding: 0 8px !default;
17
+ $ddl-popup-shadow: $shadow-lg !default;
18
+ $ddl-readonly-bg-color: $content-bg-color-alt2 !default;
19
+ $ddl-filter-margin: 0 !default;
20
+ // Small Size
21
+ $ddl-small-list-font-size: $text-xs !default;
22
+
23
+ // touch small
24
+ $ddl-bigger-small-list-font-size: $text-sm !default;
25
+
26
+ // color
27
+
28
+ $ddl-default-border-color: $border-light !default;
29
+ $ddl-active-font-color: $content-text-color-selected !default;
30
+ $ddl-list-box-shadow-color: rgba(0, 0, 0, .21) !default;
31
+ $ddl-filter-box-shadow-color: rgba(0, 0, 0, .3) !default;
32
+ $ddl-popup-background-color: $flyout-bg-color !default;
33
+ $ddl-filter-background-color: $content-bg-color !default;
34
+ $ddl-filter-bg: $content-bg-color !default;
35
+ $ddl-list-icon-color: $icon-color !default;
36
+ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
37
+
38
+ @include export-module('dropdownlist-bootstrap5') {
39
+ #{&}.e-popup.e-ddl {
40
+ border-radius: 4px;
41
+ box-shadow: none;
42
+ margin-top: 3px;
43
+ @at-root {
44
+ #{if(&, '&', '*')} .e-input-group {
45
+ width: auto;
46
+
47
+ #{if(&, '&', '*')} input {
48
+ line-height: 15px;
49
+ }
50
+ }
51
+ }
52
+ }
53
+
54
+ #{&}.e-popup.e-ddl .e-dropdownbase {
55
+ min-height: 26px;
56
+ }
57
+
58
+ #{&}.e-popup.e-ddl .e-filter-parent .e-input-group {
59
+ display: flex;
60
+ width: auto;
61
+ @at-root {
62
+ #{if(&, '&', '*')} .e-back-icon {
63
+ border: 0;
64
+ }
65
+ }
66
+ }
67
+
68
+ .e-bigger #{&}.e-popup.e-ddl-device-filter {
69
+ margin-top: 0;
70
+ }
71
+
72
+ .e-bigger #{&}.e-popup.e-ddl {
73
+ @at-root {
74
+ #{if(&, '&', '*')} .e-list-item {
75
+ font-size: 16px;
76
+ line-height: 32px;
77
+ padding-left: 0;
78
+ text-indent: 16px;
79
+ }
80
+
81
+ #{if(&, '&', '*')} .e-list-group-item,
82
+ #{if(&, '&', '*')} .e-fixed-head {
83
+ font-size: 14px;
84
+ line-height: 32px;
85
+ padding-left: 0;
86
+ text-indent: 16px;
87
+ }
88
+
89
+ #{if(&, '&', '*')} .e-dd-group .e-list-item {
90
+ padding-left: 0;
91
+ }
92
+
93
+ #{if(&, '&', '*')} .e-input-group input,
94
+ #{if(&, '&', '*')} .e-input-group input.e-input {
95
+ font-size: 16px;
96
+ height: 36px;
97
+ }
98
+ }
99
+ }
100
+
101
+ .e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
102
+ min-height: 40px;
103
+ }
104
+
105
+ .e-input-group#{&}.e-control-wrapper.e-ddl .e-input[readonly],
106
+ .e-float-input#{&}.e-control-wrapper.e-ddl input[readonly] {
107
+ background: transparent;
108
+ }
109
+
110
+ .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
111
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
112
+ background: $ddl-readonly-bg-color;
113
+ }
114
+
115
+ .e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon:active,
116
+ .e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon:hover,
117
+ .e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
118
+ .e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
119
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
120
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
121
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
122
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
123
+ background: transparent;
124
+ color: $ddl-list-icon-color;
125
+ }
126
+
127
+ .e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
128
+ .e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
129
+ .e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
130
+ .e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
131
+ background: transparent;
132
+ color: $ddl-list-icon-color;
133
+ }
134
+
135
+ .e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
136
+ .e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
137
+ .e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
138
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
139
+ background: $content-bg-color-alt2;
140
+ }
141
+
142
+
143
+ .e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon,
144
+ .e-input-group.e-disabled.e-ddl .e-control#{&}.e-dropdownlist ~ .e-input-group-icon,
145
+ .e-control#{&}.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
146
+ .e-control#{&}.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
147
+ border: 0;
148
+ }
149
+
150
+ .e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist~.e-input-group-icon:active,
151
+ .e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
152
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
153
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
154
+ box-shadow: none;
155
+ }
156
+
157
+ .e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
158
+ background: transparent;
159
+ display: flex;
160
+ position: relative;
161
+ }
162
+
163
+ .e-ddl#{&}.e-popup .e-filter-parent .e-input-group,
164
+ .e-ddl#{&}.e-popup .e-filter-parent {
165
+ background: $ddl-filter-bg;
166
+ }
167
+
168
+ .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
169
+ font-size: 14px;
170
+ }
171
+
172
+ .e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
173
+ font-size: 16px;
174
+ }
175
+
176
+ .e-bigger.e-small .e-ddl#{&}.e-popup {
177
+ @at-root {
178
+ #{if(&, '&', '*')} .e-list-item,
179
+ #{if(&, '&', '*')} .e-list-group-item,
180
+ #{if(&, '&', '*')} .e-fixed-head {
181
+ font-size: 14px;
182
+ line-height: 34px;
183
+ padding-left: 0;
184
+ text-indent: 16px;
185
+ }
186
+
187
+ #{if(&, '&', '*')} .e-dd-group .e-list-item {
188
+ padding-left: 4px;
189
+ }
190
+
191
+ #{if(&, '&', '*')} .e-input-group input,
192
+ #{if(&, '&', '*')} .e-input-group input.e-input {
193
+ height: 30px;
194
+ }
195
+ }
196
+ }
197
+
198
+ .e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
199
+ min-height: 34px;
200
+ }
201
+ }
@@ -0,0 +1,14 @@
1
+ @include export-module('dropdownlist-fusionnew-icons') {
2
+ .e-ddl .e-search-icon::before {
3
+ content: '\e754';
4
+ }
5
+
6
+ .e-ddl .e-back-icon::before {
7
+ content: '\e773';
8
+ }
9
+
10
+ .e-ddl.e-input-group.e-control-wrapper .e-ddl-icon::before {
11
+ content: '\e729';
12
+ font-family: 'e-icons';
13
+ }
14
+ }
@@ -0,0 +1,14 @@
1
+ @include export-module('dropdownlist-material3-icons') {
2
+ .e-ddl .e-search-icon::before {
3
+ content: '\e754';
4
+ }
5
+
6
+ .e-ddl .e-back-icon::before {
7
+ content: '\e773';
8
+ }
9
+
10
+ .e-ddl.e-input-group.e-control-wrapper .e-ddl-icon::before {
11
+ content: '\e729';
12
+ font-family: 'e-icons';
13
+ }
14
+ }
@@ -0,0 +1,60 @@
1
+ // sass-lint:disable-all
2
+ $ddt-skin-name: $skin-name !default;
3
+ $ddt-box-shadow: none !default;
4
+ $ddt-close-icon-bottom: 10px !default;
5
+ $ddt-dd-icon-bottom: 0 !default;
6
+ $ddt-dd-icon-width: 30px !default;
7
+ $ddt-close-icon-width: 20px !default;
8
+ $ddt-dd-icon-bigger-bottom: 0 !default;
9
+ $ddt-filter-border: 1px solid $border-light !default;
10
+ $ddt-filter-top-border: 0 !default;
11
+ $ddt-filter-padding: 4px !default;
12
+ $ddt-chip-margin: 3px 4px !default;
13
+ $ddt-chip-padding: 0 8px 0 8px !default;
14
+ $ddt-chip-radius: 4px !default;
15
+ $ddt-chip-height: 24px !default;
16
+ $ddt-chip-bigger-height: 30px !default;
17
+ $ddt-close-icon-bigger-min-height: 36px !default;
18
+ $ddt-chip-content-padding: 0 4px 0 0 !default;
19
+ $ddt-rtl-chip-content-padding: 0 0 0 4px !default;
20
+ $ddt-big-chip-content-padding: 0 8px 0 0 !default;
21
+ $ddt-rtl-big-chip-content-padding: 0 0 0 8px !default;
22
+ $ddt-chip-close-font: 10px !default;
23
+ $ddt-chip-close-height: 16px !default;
24
+ $ddt-chip-close-width: 16px !default;
25
+ $ddt-last-chip-right-margin: 48px !default;
26
+ $ddt-last-chip-bigger-right-margin: 52px !default;
27
+ $ddt-select-all-height: 34px !default;
28
+ $ddt-select-all-checkbox-margin: 0 8px !default;
29
+ $ddt-select-all-text-indent: 0 !default;
30
+ $ddt-select-all-bigger-text-indent: 0 !default;
31
+ $ddt-select-all-text-font-size: $text-sm !default;
32
+ $ddt-popup-reorder-border: $border-light !default;
33
+ $ddt-treeview-padding: 6px 8px !default;
34
+ $ddt-chip-width: calc(100% - 2px) !default;
35
+ $ddt-chip-ddi-width: calc(100% - 31px) !default;
36
+ $ddt-chip-ci-width: calc(100% - 31px) !default;
37
+ $ddt-chip-ddi-ci-width: calc(100% - 62px) !default;
38
+ $ddt-big-chip-ddi-width: calc(100% - 37px) !default;
39
+ $ddt-big-chip-ci-width: calc(100% - 37px) !default;
40
+ $ddt-big-chip-ddi-ci-width: calc(100% - 73px) !default;
41
+ $ddt-remains-padding: 0 0 0 8px !default;
42
+ $ddt-rtl-remains-padding: 0 8px 0 0 !default;
43
+ $ddt-chip-font-size: $text-sm !default;
44
+ $ddt-overflow-count-padding: 5px 4px !default;
45
+ $ddt-delim-padding : 0 8px !default;
46
+ $ddt-delim-bigger-padding: 0 12px !default;
47
+ $ddt-remains-count-padding-top: 0 !default;
48
+
49
+ // color variables
50
+ $ddt-chip-bg-color: $secondary-bg-color !default;
51
+ $ddt-popup-background-color: $flyout-bg-color !default;
52
+ $ddt-popup-border-color: $border-light !default;
53
+ $ddt-chip-close: $secondary-text-color !default;
54
+ $ddt-chip-font-color: $secondary-text-color !default;
55
+ $ddt-chip-hover-bg-color: $secondary-border-color-hover !default;;
56
+ $ddt-chip-hover-font-color: $secondary-text-color-hover !default;
57
+ $ddt-nodata-font-color: $content-text-color !default;
58
+ $ddt-select-all-font-color: $content-text-color !default;
59
+ $ddt-remains-font-color: $content-text-color-alt3 !default;
60
+ $ddt-readonly-input-bg-color: $content-bg-color !default;
@@ -0,0 +1,60 @@
1
+ // sass-lint:disable-all
2
+ $ddt-skin-name: $skin-name !default;
3
+ $ddt-box-shadow: none !default;
4
+ $ddt-close-icon-bottom: 10px !default;
5
+ $ddt-dd-icon-bottom: 0 !default;
6
+ $ddt-dd-icon-width: 30px !default;
7
+ $ddt-close-icon-width: 20px !default;
8
+ $ddt-dd-icon-bigger-bottom: 0 !default;
9
+ $ddt-filter-border: 1px solid $border-light !default;
10
+ $ddt-filter-top-border: 0 !default;
11
+ $ddt-filter-padding: 4px !default;
12
+ $ddt-chip-margin: 3px 4px !default;
13
+ $ddt-chip-padding: 0 8px 0 8px !default;
14
+ $ddt-chip-radius: 4px !default;
15
+ $ddt-chip-height: 24px !default;
16
+ $ddt-chip-bigger-height: 30px !default;
17
+ $ddt-close-icon-bigger-min-height: 36px !default;
18
+ $ddt-chip-content-padding: 0 4px 0 0 !default;
19
+ $ddt-rtl-chip-content-padding: 0 0 0 4px !default;
20
+ $ddt-big-chip-content-padding: 0 8px 0 0 !default;
21
+ $ddt-rtl-big-chip-content-padding: 0 0 0 8px !default;
22
+ $ddt-chip-close-font: 10px !default;
23
+ $ddt-chip-close-height: 16px !default;
24
+ $ddt-chip-close-width: 16px !default;
25
+ $ddt-last-chip-right-margin: 48px !default;
26
+ $ddt-last-chip-bigger-right-margin: 52px !default;
27
+ $ddt-select-all-height: 34px !default;
28
+ $ddt-select-all-checkbox-margin: 0 8px !default;
29
+ $ddt-select-all-text-indent: 0 !default;
30
+ $ddt-select-all-bigger-text-indent: 0 !default;
31
+ $ddt-select-all-text-font-size: $text-sm !default;
32
+ $ddt-popup-reorder-border: $border-light !default;
33
+ $ddt-treeview-padding: 6px 8px !default;
34
+ $ddt-chip-width: calc(100% - 2px) !default;
35
+ $ddt-chip-ddi-width: calc(100% - 31px) !default;
36
+ $ddt-chip-ci-width: calc(100% - 31px) !default;
37
+ $ddt-chip-ddi-ci-width: calc(100% - 62px) !default;
38
+ $ddt-big-chip-ddi-width: calc(100% - 37px) !default;
39
+ $ddt-big-chip-ci-width: calc(100% - 37px) !default;
40
+ $ddt-big-chip-ddi-ci-width: calc(100% - 73px) !default;
41
+ $ddt-remains-padding: 0 0 0 8px !default;
42
+ $ddt-rtl-remains-padding: 0 8px 0 0 !default;
43
+ $ddt-chip-font-size: $text-sm !default;
44
+ $ddt-overflow-count-padding: 5px 4px !default;
45
+ $ddt-delim-padding : 0 8px !default;
46
+ $ddt-delim-bigger-padding: 0 12px !default;
47
+ $ddt-remains-count-padding-top: 0 !default;
48
+
49
+ // color variables
50
+ $ddt-chip-bg-color: $secondary-bg-color !default;
51
+ $ddt-popup-background-color: $flyout-bg-color !default;
52
+ $ddt-popup-border-color: $border-light !default;
53
+ $ddt-chip-close: $secondary-text-color !default;
54
+ $ddt-chip-font-color: $secondary-text-color !default;
55
+ $ddt-chip-hover-bg-color: $secondary-border-color-hover !default;;
56
+ $ddt-chip-hover-font-color: $secondary-text-color-hover !default;
57
+ $ddt-nodata-font-color: $content-text-color !default;
58
+ $ddt-select-all-font-color: $content-text-color !default;
59
+ $ddt-remains-font-color: $content-text-color-alt3 !default;
60
+ $ddt-readonly-input-bg-color: $content-bg-color !default;
@@ -0,0 +1,11 @@
1
+ @include export-module('dropdowntree-fusionnew-icons') {
2
+ .e-ddt {
3
+ .e-ddt-icon::before {
4
+ content: '\e734';
5
+ }
6
+
7
+ .e-chips-close::before {
8
+ content: '\e7e7';
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,11 @@
1
+ @include export-module('dropdowntree-material3-icons') {
2
+ .e-ddt {
3
+ .e-ddt-icon::before {
4
+ content: '\e734';
5
+ }
6
+
7
+ .e-chips-close::before {
8
+ content: '\e7e7';
9
+ }
10
+ }
11
+ }
@@ -2355,6 +2355,10 @@ ejs-multiselect {
2355
2355
  .e-listbox-container * {
2356
2356
  box-sizing: border-box;
2357
2357
  }
2358
+ .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
2359
+ .e-listbox-container.e-listboxtool-container .e-list-wrap {
2360
+ width: 86% !important;
2361
+ }
2358
2362
  .e-listbox-wrapper:focus,
2359
2363
  .e-listbox-container:focus {
2360
2364
  outline: none;
@@ -2585,8 +2589,8 @@ ejs-multiselect {
2585
2589
  text-indent: 0;
2586
2590
  vertical-align: middle;
2587
2591
  }
2588
- .e-listbox-wrapper.e-right .e-checkbox-wrapper,
2589
- .e-listbox-container.e-right .e-checkbox-wrapper {
2592
+ .e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
2593
+ .e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
2590
2594
  position: absolute;
2591
2595
  right: 0;
2592
2596
  top: 30%;
@@ -2705,6 +2709,12 @@ ejs-listbox {
2705
2709
  list-style-type: none;
2706
2710
  margin-bottom: 10px;
2707
2711
  }
2712
+ .e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
2713
+ .e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
2714
+ position: absolute;
2715
+ right: 0;
2716
+ top: 30%;
2717
+ }
2708
2718
 
2709
2719
  .e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
2710
2720
  .e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
@@ -2715,6 +2725,12 @@ ejs-listbox {
2715
2725
  margin-left: 15px;
2716
2726
  }
2717
2727
 
2728
+ .e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
2729
+ .e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
2730
+ .e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
2731
+ .e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
2732
+ width: 83% !important;
2733
+ }
2718
2734
  .e-bigger .e-listbox-wrapper .e-list-item,
2719
2735
  .e-listbox-wrapper.e-bigger .e-list-item,
2720
2736
  .e-bigger .e-listbox-container .e-list-item,
@@ -2802,21 +2818,48 @@ ejs-listbox {
2802
2818
  .e-listbox-container.e-bigger .e-list-header .e-text {
2803
2819
  font-size: 15px;
2804
2820
  }
2805
- .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
2806
- .e-small .e-listbox-container.e-filter-list .e-list-parent {
2821
+ .e-listbox-wrapper.e-filter-list .e-list-parent {
2822
+ height: calc(100% - 51px);
2823
+ }
2824
+
2825
+ .e-listbox-container.e-filter-list .e-list-wrap {
2826
+ height: calc(100% - 51px) !important;
2827
+ }
2828
+
2829
+ .e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
2807
2830
  height: calc(100% - 45px);
2808
2831
  }
2809
2832
 
2810
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
2811
- .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
2833
+ .e-small .e-listbox-container.e-filter-list .e-list-wrap {
2834
+ height: calc(100% - 45px) !important;
2835
+ }
2836
+
2837
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2812
2838
  height: calc(100% - 59px);
2813
2839
  }
2814
2840
 
2815
- .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
2816
- .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
2841
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2842
+ height: calc(100% - 59px) !important;
2843
+ }
2844
+
2845
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2846
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2847
+ height: calc(100% - 104px);
2848
+ }
2849
+
2850
+ .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2851
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
2852
+ height: calc(100% - 45px);
2853
+ }
2854
+
2855
+ .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2817
2856
  height: calc(100% - 55px);
2818
2857
  }
2819
2858
 
2859
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2860
+ height: calc(100% - 55px) !important;
2861
+ }
2862
+
2820
2863
  .e-listbox-wrapper,
2821
2864
  .e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
2822
2865
  .e-listboxtool-container.e-listbox-container .e-ul {
@@ -2836,9 +2879,14 @@ ejs-listbox {
2836
2879
  font-size: 14px;
2837
2880
  }
2838
2881
 
2839
- .e-listbox-wrapper.e-filter-list .e-list-parent,
2840
- .e-listbox-container.e-filter-list .e-list-parent {
2841
- height: calc(100% - 51px);
2882
+ .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2883
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2884
+ height: calc(100% - 87px);
2885
+ }
2886
+
2887
+ .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2888
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
2889
+ height: calc(100% - 36px);
2842
2890
  }
2843
2891
 
2844
2892
  .e-listbox-wrapper .e-icons,
package/styles/fabric.css CHANGED
@@ -2349,6 +2349,10 @@ ejs-multiselect {
2349
2349
  .e-listbox-container * {
2350
2350
  box-sizing: border-box;
2351
2351
  }
2352
+ .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
2353
+ .e-listbox-container.e-listboxtool-container .e-list-wrap {
2354
+ width: 86% !important;
2355
+ }
2352
2356
  .e-listbox-wrapper:focus,
2353
2357
  .e-listbox-container:focus {
2354
2358
  outline: none;
@@ -2579,8 +2583,8 @@ ejs-multiselect {
2579
2583
  text-indent: 0;
2580
2584
  vertical-align: middle;
2581
2585
  }
2582
- .e-listbox-wrapper.e-right .e-checkbox-wrapper,
2583
- .e-listbox-container.e-right .e-checkbox-wrapper {
2586
+ .e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
2587
+ .e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
2584
2588
  position: absolute;
2585
2589
  right: 0;
2586
2590
  top: 30%;
@@ -2699,6 +2703,12 @@ ejs-listbox {
2699
2703
  list-style-type: none;
2700
2704
  margin-bottom: 10px;
2701
2705
  }
2706
+ .e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
2707
+ .e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
2708
+ position: absolute;
2709
+ right: 0;
2710
+ top: 30%;
2711
+ }
2702
2712
 
2703
2713
  .e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
2704
2714
  .e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
@@ -2709,6 +2719,12 @@ ejs-listbox {
2709
2719
  margin-left: 15px;
2710
2720
  }
2711
2721
 
2722
+ .e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
2723
+ .e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
2724
+ .e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
2725
+ .e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
2726
+ width: 83% !important;
2727
+ }
2712
2728
  .e-bigger .e-listbox-wrapper .e-list-item,
2713
2729
  .e-listbox-wrapper.e-bigger .e-list-item,
2714
2730
  .e-bigger .e-listbox-container .e-list-item,
@@ -2796,21 +2812,48 @@ ejs-listbox {
2796
2812
  .e-listbox-container.e-bigger .e-list-header .e-text {
2797
2813
  font-size: 15px;
2798
2814
  }
2799
- .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
2800
- .e-small .e-listbox-container.e-filter-list .e-list-parent {
2815
+ .e-listbox-wrapper.e-filter-list .e-list-parent {
2816
+ height: calc(100% - 51px);
2817
+ }
2818
+
2819
+ .e-listbox-container.e-filter-list .e-list-wrap {
2820
+ height: calc(100% - 51px) !important;
2821
+ }
2822
+
2823
+ .e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
2801
2824
  height: calc(100% - 45px);
2802
2825
  }
2803
2826
 
2804
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
2805
- .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
2827
+ .e-small .e-listbox-container.e-filter-list .e-list-wrap {
2828
+ height: calc(100% - 45px) !important;
2829
+ }
2830
+
2831
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2806
2832
  height: calc(100% - 59px);
2807
2833
  }
2808
2834
 
2809
- .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
2810
- .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
2835
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2836
+ height: calc(100% - 59px) !important;
2837
+ }
2838
+
2839
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2840
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2841
+ height: calc(100% - 104px);
2842
+ }
2843
+
2844
+ .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2845
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
2846
+ height: calc(100% - 45px);
2847
+ }
2848
+
2849
+ .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2811
2850
  height: calc(100% - 55px);
2812
2851
  }
2813
2852
 
2853
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2854
+ height: calc(100% - 55px) !important;
2855
+ }
2856
+
2814
2857
  .e-listbox-wrapper,
2815
2858
  .e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
2816
2859
  .e-listboxtool-container.e-listbox-container .e-ul {
@@ -2830,9 +2873,14 @@ ejs-listbox {
2830
2873
  font-size: 14px;
2831
2874
  }
2832
2875
 
2833
- .e-listbox-wrapper.e-filter-list .e-list-parent,
2834
- .e-listbox-container.e-filter-list .e-list-parent {
2835
- height: calc(100% - 51px);
2876
+ .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2877
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2878
+ height: calc(100% - 87px);
2879
+ }
2880
+
2881
+ .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2882
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
2883
+ height: calc(100% - 36px);
2836
2884
  }
2837
2885
 
2838
2886
  .e-listbox-wrapper .e-icons,