@syncfusion/ej2-dropdowns 20.1.61 → 20.2.39

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 +3 -77
  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 +95 -96
  5. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es5.js +58 -59
  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 +8 -8
  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 -1
  26. package/src/list-box/list-box.js +13 -14
  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 +28 -26
  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 +69 -11
  33. package/styles/bootstrap.css +69 -11
  34. package/styles/bootstrap4.css +69 -11
  35. package/styles/bootstrap5-dark.css +70 -12
  36. package/styles/bootstrap5.css +70 -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 +69 -11
  50. package/styles/fabric.css +69 -11
  51. package/styles/fluent-dark.css +73 -15
  52. package/styles/fluent.css +70 -12
  53. package/styles/highcontrast-light.css +69 -11
  54. package/styles/highcontrast.css +69 -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 +45 -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 +59 -11
  72. package/styles/list-box/bootstrap.css +69 -11
  73. package/styles/list-box/bootstrap4.css +69 -11
  74. package/styles/list-box/bootstrap5-dark.css +70 -12
  75. package/styles/list-box/bootstrap5.css +70 -12
  76. package/styles/list-box/fabric-dark.css +59 -11
  77. package/styles/list-box/fabric.css +69 -11
  78. package/styles/list-box/fluent-dark.css +73 -15
  79. package/styles/list-box/fluent.css +70 -12
  80. package/styles/list-box/highcontrast-light.css +59 -11
  81. package/styles/list-box/highcontrast.css +69 -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 +60 -12
  85. package/styles/list-box/material.css +70 -12
  86. package/styles/list-box/tailwind-dark.css +70 -12
  87. package/styles/list-box/tailwind.css +70 -12
  88. package/styles/material-dark.css +70 -12
  89. package/styles/material.css +70 -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 +70 -12
  95. package/styles/tailwind.css +70 -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,22 @@ 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
+ }
2718
+
2719
+ .e-listboxtool-container .e-left {
2720
+ -ms-flex-direction: row-reverse;
2721
+ flex-direction: row-reverse;
2722
+ }
2723
+
2724
+ .e-listboxtool-wrapper .e-left {
2725
+ -ms-flex-direction: column-reverse;
2726
+ flex-direction: column-reverse;
2727
+ }
2708
2728
 
2709
2729
  .e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
2710
2730
  .e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
@@ -2715,6 +2735,12 @@ ejs-listbox {
2715
2735
  margin-left: 15px;
2716
2736
  }
2717
2737
 
2738
+ .e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
2739
+ .e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
2740
+ .e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
2741
+ .e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
2742
+ width: 83% !important;
2743
+ }
2718
2744
  .e-bigger .e-listbox-wrapper .e-list-item,
2719
2745
  .e-listbox-wrapper.e-bigger .e-list-item,
2720
2746
  .e-bigger .e-listbox-container .e-list-item,
@@ -2802,21 +2828,48 @@ ejs-listbox {
2802
2828
  .e-listbox-container.e-bigger .e-list-header .e-text {
2803
2829
  font-size: 15px;
2804
2830
  }
2805
- .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
2806
- .e-small .e-listbox-container.e-filter-list .e-list-parent {
2831
+ .e-listbox-wrapper.e-filter-list .e-list-parent {
2832
+ height: calc(100% - 51px);
2833
+ }
2834
+
2835
+ .e-listbox-container.e-filter-list .e-list-wrap {
2836
+ height: calc(100% - 51px) !important;
2837
+ }
2838
+
2839
+ .e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
2807
2840
  height: calc(100% - 45px);
2808
2841
  }
2809
2842
 
2810
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
2811
- .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
2843
+ .e-small .e-listbox-container.e-filter-list .e-list-wrap {
2844
+ height: calc(100% - 45px) !important;
2845
+ }
2846
+
2847
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2812
2848
  height: calc(100% - 59px);
2813
2849
  }
2814
2850
 
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 {
2851
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2852
+ height: calc(100% - 59px) !important;
2853
+ }
2854
+
2855
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2856
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2857
+ height: calc(100% - 104px);
2858
+ }
2859
+
2860
+ .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2861
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
2862
+ height: calc(100% - 45px);
2863
+ }
2864
+
2865
+ .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2817
2866
  height: calc(100% - 55px);
2818
2867
  }
2819
2868
 
2869
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2870
+ height: calc(100% - 55px) !important;
2871
+ }
2872
+
2820
2873
  .e-listbox-wrapper,
2821
2874
  .e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
2822
2875
  .e-listboxtool-container.e-listbox-container .e-ul {
@@ -2836,9 +2889,14 @@ ejs-listbox {
2836
2889
  font-size: 14px;
2837
2890
  }
2838
2891
 
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);
2892
+ .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2893
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2894
+ height: calc(100% - 87px);
2895
+ }
2896
+
2897
+ .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2898
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
2899
+ height: calc(100% - 36px);
2842
2900
  }
2843
2901
 
2844
2902
  .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,22 @@ 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
+ }
2712
+
2713
+ .e-listboxtool-container .e-left {
2714
+ -ms-flex-direction: row-reverse;
2715
+ flex-direction: row-reverse;
2716
+ }
2717
+
2718
+ .e-listboxtool-wrapper .e-left {
2719
+ -ms-flex-direction: column-reverse;
2720
+ flex-direction: column-reverse;
2721
+ }
2702
2722
 
2703
2723
  .e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
2704
2724
  .e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
@@ -2709,6 +2729,12 @@ ejs-listbox {
2709
2729
  margin-left: 15px;
2710
2730
  }
2711
2731
 
2732
+ .e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
2733
+ .e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
2734
+ .e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
2735
+ .e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
2736
+ width: 83% !important;
2737
+ }
2712
2738
  .e-bigger .e-listbox-wrapper .e-list-item,
2713
2739
  .e-listbox-wrapper.e-bigger .e-list-item,
2714
2740
  .e-bigger .e-listbox-container .e-list-item,
@@ -2796,21 +2822,48 @@ ejs-listbox {
2796
2822
  .e-listbox-container.e-bigger .e-list-header .e-text {
2797
2823
  font-size: 15px;
2798
2824
  }
2799
- .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
2800
- .e-small .e-listbox-container.e-filter-list .e-list-parent {
2825
+ .e-listbox-wrapper.e-filter-list .e-list-parent {
2826
+ height: calc(100% - 51px);
2827
+ }
2828
+
2829
+ .e-listbox-container.e-filter-list .e-list-wrap {
2830
+ height: calc(100% - 51px) !important;
2831
+ }
2832
+
2833
+ .e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
2801
2834
  height: calc(100% - 45px);
2802
2835
  }
2803
2836
 
2804
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
2805
- .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
2837
+ .e-small .e-listbox-container.e-filter-list .e-list-wrap {
2838
+ height: calc(100% - 45px) !important;
2839
+ }
2840
+
2841
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2806
2842
  height: calc(100% - 59px);
2807
2843
  }
2808
2844
 
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 {
2845
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2846
+ height: calc(100% - 59px) !important;
2847
+ }
2848
+
2849
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2850
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2851
+ height: calc(100% - 104px);
2852
+ }
2853
+
2854
+ .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2855
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
2856
+ height: calc(100% - 45px);
2857
+ }
2858
+
2859
+ .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
2811
2860
  height: calc(100% - 55px);
2812
2861
  }
2813
2862
 
2863
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
2864
+ height: calc(100% - 55px) !important;
2865
+ }
2866
+
2814
2867
  .e-listbox-wrapper,
2815
2868
  .e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
2816
2869
  .e-listboxtool-container.e-listbox-container .e-ul {
@@ -2830,9 +2883,14 @@ ejs-listbox {
2830
2883
  font-size: 14px;
2831
2884
  }
2832
2885
 
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);
2886
+ .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
2887
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
2888
+ height: calc(100% - 87px);
2889
+ }
2890
+
2891
+ .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
2892
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
2893
+ height: calc(100% - 36px);
2836
2894
  }
2837
2895
 
2838
2896
  .e-listbox-wrapper .e-icons,