@syncfusion/ej2-dropdowns 19.3.48 → 19.4.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.
- package/CHANGELOG.md +32 -0
- package/README.md +1 -1
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +123 -42
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +125 -42
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/combo-box/combo-box.js +2 -2
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +1 -1
- package/src/drop-down-base/drop-down-base.js +17 -0
- package/src/drop-down-list/drop-down-list.js +1 -1
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
- package/src/drop-down-tree/drop-down-tree.js +21 -6
- package/src/list-box/list-box.d.ts +0 -4
- package/src/list-box/list-box.js +0 -3
- package/src/multi-select/checkbox-selection.js +1 -1
- package/src/multi-select/multi-select-model.d.ts +10 -1
- package/src/multi-select/multi-select.d.ts +10 -0
- package/src/multi-select/multi-select.js +82 -28
- package/styles/auto-complete/_fluent-definition.scss +2 -0
- package/styles/bootstrap5-dark.css +12 -5
- package/styles/bootstrap5.css +12 -5
- package/styles/combo-box/_fluent-definition.scss +2 -0
- package/styles/drop-down-base/_fluent-definition.scss +109 -0
- package/styles/drop-down-list/_fluent-definition.scss +193 -0
- package/styles/drop-down-list/icons/_bootstrap5.scss +0 -1
- package/styles/drop-down-list/icons/_fluent.scss +14 -0
- package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -58
- package/styles/drop-down-tree/_fluent-definition.scss +71 -0
- package/styles/drop-down-tree/_layout.scss +12 -4
- package/styles/drop-down-tree/_tailwind-definition.scss +1 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +11 -4
- package/styles/drop-down-tree/bootstrap5.css +11 -4
- package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent.scss +11 -0
- package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
- package/styles/drop-down-tree/tailwind-dark.css +1 -0
- package/styles/drop-down-tree/tailwind.css +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +2 -2
- package/styles/list-box/_fluent-definition.scss +115 -0
- package/styles/list-box/_layout.scss +1 -6
- package/styles/list-box/bootstrap5-dark.css +1 -1
- package/styles/list-box/bootstrap5.css +1 -1
- package/styles/list-box/icons/_fluent.scss +25 -0
- package/styles/list-box/icons/_tailwind-dark.scss +2 -2
- package/styles/list-box/tailwind-dark.css +3 -3
- package/styles/list-box/tailwind.css +1 -1
- package/styles/material-dark.css +0 -94
- package/styles/material.css +0 -94
- package/styles/multi-select/_fluent-definition.scss +214 -0
- package/styles/multi-select/_layout.scss +0 -116
- package/styles/multi-select/_material-dark-definition.scss +0 -22
- package/styles/multi-select/_material-definition.scss +0 -22
- package/styles/multi-select/icons/_fluent.scss +27 -0
- package/styles/multi-select/material-dark.css +0 -94
- package/styles/multi-select/material.css +0 -94
- package/styles/tailwind-dark.css +4 -3
- package/styles/tailwind.css +2 -1
- package/styles/_all.scss +0 -3
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
$ddl-list-line-height: 36px !default;
|
|
2
|
+
$ddl-header-font-weight: $font-weight-medium !default;
|
|
3
|
+
$ddl-last-child-bottom-border: 0 !default;
|
|
4
|
+
$ddl-default-font-family: $font-family !default;
|
|
5
|
+
$ddl-line-height: 32px !default;
|
|
6
|
+
$ddl-list-border-size: 0 !default;
|
|
7
|
+
$ddl-list-bottom-border: $ddl-list-border-size !default;
|
|
8
|
+
|
|
9
|
+
$ddl-list-font-size: $text-sm !default;
|
|
10
|
+
$ddl-list-font-family: $font-family !default;
|
|
11
|
+
$ddl-list-focus-border: 0 solid $border-focus !default;
|
|
12
|
+
$ddl-group-list-padding-left: 12px !default;
|
|
13
|
+
$ddl-group-list-small-padding-left: 8px !default;
|
|
14
|
+
$ddl-group-list-bigger-padding-left: 16px !default;
|
|
15
|
+
$ddl-group-list-bigger-small-padding-left: 14px !default;
|
|
16
|
+
$ddl-list-header-padding-left: 12px !default;
|
|
17
|
+
$ddl-list-header-small-padding-left: 8px !default;
|
|
18
|
+
$ddl-list-header-bigger-small-padding-left: 14px !default;
|
|
19
|
+
$ddl-list-header-bigger-padding-left: 16px !default;
|
|
20
|
+
$ddl-list-text-indent: 12px !default;
|
|
21
|
+
$ddl-list-rtl-padding-right: 0 !default;
|
|
22
|
+
$ddl-list-padding-right: 16px !default;
|
|
23
|
+
$ddl-list-rtl-padding-left: 16px !default;
|
|
24
|
+
$ddl-multi-column-border-width: 0 0 1px 0 !default;
|
|
25
|
+
$ddl-bigger-list-header-font-size: $text-base !default;
|
|
26
|
+
$ddl-group-list-font-size: $text-sm !default;
|
|
27
|
+
$ddl-list-header-font-size: $text-sm !default;
|
|
28
|
+
|
|
29
|
+
// Small Size
|
|
30
|
+
|
|
31
|
+
$ddl-small-icon-font-size: 14px !default;
|
|
32
|
+
$ddl-small-line-height: 26px !default;
|
|
33
|
+
$ddl-small-list-text-indent: 8px !default;
|
|
34
|
+
$ddl-small-list-header-font-size: $text-xxs !default;
|
|
35
|
+
|
|
36
|
+
// Touch Small
|
|
37
|
+
|
|
38
|
+
$ddl-bigger-small-icon-font-size: 18px !default;
|
|
39
|
+
$ddl-bigger-small-line-height: 30px !default;
|
|
40
|
+
$ddl-bigger-small-list-text-indent: 16px !default;
|
|
41
|
+
$ddl-bigger-text-indent: 16px !default;
|
|
42
|
+
$ddl-bigger-small-list-header-font-size: $text-xs !default;
|
|
43
|
+
|
|
44
|
+
//
|
|
45
|
+
|
|
46
|
+
$ddl-list-border-color: $border-light !default;
|
|
47
|
+
$ddl-list-gradient-color: $border-light !default;
|
|
48
|
+
$ddl-list-bg-color: $flyout-bg-color !default;
|
|
49
|
+
$ddl-list-header-bg-color: $transparent !default;
|
|
50
|
+
$ddl-list-header-border-color: $border-light !default;
|
|
51
|
+
$ddl-nodata-font-color: $flyout-text-color !default;
|
|
52
|
+
$ddl-list-default-font-color: $flyout-text-color !default;
|
|
53
|
+
$ddl-list-active-border-color: $flyout-bg-color !default;
|
|
54
|
+
$ddl-list-active-font-color: $primary-outline !default;
|
|
55
|
+
$ddl-list-active-bg-color: $flyout-bg-color-selected !default;
|
|
56
|
+
$ddl-list-hover-border-color: $flyout-bg-color !default;
|
|
57
|
+
$ddl-list-hover-bg-color: $flyout-bg-color-hover !default;
|
|
58
|
+
$ddl-list-hover-font-color: $flyout-text-color-hover !default;
|
|
59
|
+
$ddl-list-header-font-color: $primary-outline !default;
|
|
60
|
+
$ddl-default-header-font-color: $primary-outline !default;
|
|
61
|
+
$ddl-list-focus-color: $flyout-text-color-focus !default;
|
|
62
|
+
$ddl-multi-column-border-color: $flyout-border !default;
|
|
63
|
+
// Small Size color
|
|
64
|
+
$ddl-small-list-font-color: $flyout-text-color !default;
|
|
65
|
+
// Touch Small color
|
|
66
|
+
$ddl-bigger-small-list-font-color: $flyout-text-color !default;
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
@include export-module('dropdownbase-bootstrap5') {
|
|
70
|
+
|
|
71
|
+
.e-dropdownbase .e-list-group-item,
|
|
72
|
+
.e-fixed-head {
|
|
73
|
+
font-size: $text-xs;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-small .e-dropdownbase .e-list-group-item,
|
|
77
|
+
.e-small .e-fixed-head,
|
|
78
|
+
.e-small.e-dropdownbase .e-list-group-item,
|
|
79
|
+
.e-small.e-fixed-head {
|
|
80
|
+
font-size: $text-xxs;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-bigger .e-dropdownbase .e-list-group-item,
|
|
84
|
+
.e-bigger .e-fixed-head,
|
|
85
|
+
.e-bigger.e-dropdownbase .e-list-group-item,
|
|
86
|
+
.e-bigger.e-fixed-head {
|
|
87
|
+
font-size: $text-sm;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-bigger.e-small .e-dropdownbase .e-list-group-item,
|
|
91
|
+
.e-bigger.e-small .e-fixed-head,
|
|
92
|
+
.e-bigger.e-small.e-dropdownbase .e-list-group-item,
|
|
93
|
+
.e-bigger.e-small.e-fixed-head {
|
|
94
|
+
font-size: $text-xs;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-dropdownbase .e-list-item .e-list-icon {
|
|
98
|
+
padding: 0 8px 0 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-bigger .e-dropdownbase .e-list-item .e-list-icon,
|
|
102
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
103
|
+
padding: 0 12px 0 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
107
|
+
padding: 0 6px 0 0;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -0,0 +1,193 @@
|
|
|
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: 5px 8px !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: 8px !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
|
+
|
|
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: $flyout-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: $flyout-bg-color !default;
|
|
34
|
+
$ddl-filter-bg: $flyout-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:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon,
|
|
136
|
+
.e-input-group.e-disabled.e-ddl .e-control#{&}.e-dropdownlist ~ .e-input-group-icon,
|
|
137
|
+
.e-control#{&}.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
138
|
+
.e-control#{&}.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
|
|
139
|
+
border: 0;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist~.e-input-group-icon:active,
|
|
143
|
+
.e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
144
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
145
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
146
|
+
box-shadow: none;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
150
|
+
background: transparent;
|
|
151
|
+
display: flex;
|
|
152
|
+
position: relative;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-ddl#{&}.e-popup .e-filter-parent .e-input-group,
|
|
156
|
+
.e-ddl#{&}.e-popup .e-filter-parent {
|
|
157
|
+
background: $ddl-filter-bg;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
161
|
+
font-size: 14px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
165
|
+
font-size: 16px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
169
|
+
@at-root {
|
|
170
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
171
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
172
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
173
|
+
font-size: 14px;
|
|
174
|
+
line-height: 34px;
|
|
175
|
+
padding-left: 0;
|
|
176
|
+
text-indent: 16px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
180
|
+
padding-left: 4px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
184
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
185
|
+
height: 30px;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
191
|
+
min-height: 34px;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@include export-module('dropdownlist-fluent-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: '\e7c3';
|
|
12
|
+
font-family: 'e-icons';
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -1,59 +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-
|
|
18
|
-
$ddt-
|
|
19
|
-
$ddt-
|
|
20
|
-
$ddt-
|
|
21
|
-
$ddt-chip-
|
|
22
|
-
$ddt-chip-close-
|
|
23
|
-
$ddt-chip-close-
|
|
24
|
-
$ddt-
|
|
25
|
-
$ddt-last-chip-
|
|
26
|
-
$ddt-
|
|
27
|
-
$ddt-select-all-
|
|
28
|
-
$ddt-select-all-
|
|
29
|
-
$ddt-select-all-
|
|
30
|
-
$ddt-select-all-text-
|
|
31
|
-
$ddt-
|
|
32
|
-
$ddt-
|
|
33
|
-
$ddt-
|
|
34
|
-
$ddt-chip-
|
|
35
|
-
$ddt-chip-
|
|
36
|
-
$ddt-chip-
|
|
37
|
-
$ddt-
|
|
38
|
-
$ddt-big-chip-
|
|
39
|
-
$ddt-big-chip-
|
|
40
|
-
$ddt-
|
|
41
|
-
$ddt-
|
|
42
|
-
$ddt-
|
|
43
|
-
$ddt-
|
|
44
|
-
$ddt-
|
|
45
|
-
$ddt-delim-
|
|
46
|
-
$ddt-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
$ddt-
|
|
51
|
-
$ddt-popup-
|
|
52
|
-
$ddt-
|
|
53
|
-
$ddt-chip-
|
|
54
|
-
$ddt-chip-
|
|
55
|
-
$ddt-chip-hover-
|
|
56
|
-
$ddt-
|
|
57
|
-
$ddt-
|
|
58
|
-
$ddt-
|
|
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: 0 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;
|
|
59
60
|
$ddt-readonly-input-bg-color: $content-bg-color !default;
|
|
@@ -0,0 +1,71 @@
|
|
|
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: 0 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-chip-content-padding: 0 4px 0 0 !default;
|
|
18
|
+
$ddt-rtl-chip-content-padding: 0 0 0 4px !default;
|
|
19
|
+
$ddt-big-chip-content-padding: 0 8px 0 0 !default;
|
|
20
|
+
$ddt-rtl-big-chip-content-padding: 0 0 0 8px !default;
|
|
21
|
+
$ddt-chip-close-font: 10px !default;
|
|
22
|
+
$ddt-chip-close-height: 16px !default;
|
|
23
|
+
$ddt-chip-close-width: 16px !default;
|
|
24
|
+
$ddt-last-chip-right-margin: 48px !default;
|
|
25
|
+
$ddt-last-chip-bigger-right-margin: 52px !default;
|
|
26
|
+
$ddt-select-all-height: 34px !default;
|
|
27
|
+
$ddt-select-all-checkbox-margin: 0 8px !default;
|
|
28
|
+
$ddt-select-all-text-indent: 0 !default;
|
|
29
|
+
$ddt-select-all-bigger-text-indent: 0 !default;
|
|
30
|
+
$ddt-select-all-text-font-size: $text-sm !default;
|
|
31
|
+
$ddt-popup-reorder-border: $border-light !default;
|
|
32
|
+
$ddt-treeview-padding: 0 8px !default;
|
|
33
|
+
$ddt-chip-width: calc(100% - 2px) !default;
|
|
34
|
+
$ddt-chip-ddi-width: calc(100% - 31px) !default;
|
|
35
|
+
$ddt-chip-ci-width: calc(100% - 31px) !default;
|
|
36
|
+
$ddt-chip-ddi-ci-width: calc(100% - 62px) !default;
|
|
37
|
+
$ddt-big-chip-ddi-width: calc(100% - 37px) !default;
|
|
38
|
+
$ddt-big-chip-ci-width: calc(100% - 37px) !default;
|
|
39
|
+
$ddt-big-chip-ddi-ci-width: calc(100% - 73px) !default;
|
|
40
|
+
$ddt-remains-padding: 0 0 0 8px !default;
|
|
41
|
+
$ddt-rtl-remains-padding: 0 8px 0 0 !default;
|
|
42
|
+
$ddt-chip-font-size: $text-sm !default;
|
|
43
|
+
$ddt-overflow-count-padding: 5px 4px !default;
|
|
44
|
+
$ddt-delim-padding : 0 8px !default;
|
|
45
|
+
$ddt-delim-bigger-padding: 0 12px !default;
|
|
46
|
+
$ddt-remains-count-padding-top: 0 !default;
|
|
47
|
+
$ddt-close-icon-min-height: 32px !default;
|
|
48
|
+
$ddt-chip-icon-line-height: 24px !default;
|
|
49
|
+
$ddt-overflow-count-padding-top: 4px !default;
|
|
50
|
+
$ddt-list-filter-text-indent: 0 20px !default;
|
|
51
|
+
$ddt-treeview-fullrow-height: 36px !default;
|
|
52
|
+
$ddt-treeview-content-padding-top: 2px !default;
|
|
53
|
+
$ddt-treeview-content-padding-bottom: 2px !default;
|
|
54
|
+
$ddt-dd-icon-bigger-width: 32px !default;
|
|
55
|
+
$ddt-close-icon-bigger-min-height: 36px !default;
|
|
56
|
+
$ddt-close-icon-bigger-width: 35px !default;
|
|
57
|
+
$ddt-treeview-fullrow-bigger-height: 44px !default;
|
|
58
|
+
$ddt-icon-bg-color: $content-bg-color !default;
|
|
59
|
+
|
|
60
|
+
// color variables
|
|
61
|
+
$ddt-chip-bg-color: $content-bg-color-alt2!default;
|
|
62
|
+
$ddt-popup-background-color: $flyout-bg-color !default;
|
|
63
|
+
$ddt-popup-border-color: $border-light !default;
|
|
64
|
+
$ddt-chip-close: $secondary-text-color !default;
|
|
65
|
+
$ddt-chip-font-color: $content-text-color !default;
|
|
66
|
+
$ddt-chip-hover-bg-color: $content-bg-color-alt3 !default;;
|
|
67
|
+
$ddt-chip-hover-font-color: $content-text-color !default;
|
|
68
|
+
$ddt-nodata-font-color: $content-text-color !default;
|
|
69
|
+
$ddt-select-all-font-color: $content-text-color !default;
|
|
70
|
+
$ddt-remains-font-color: $content-text-color-alt3 !default;
|
|
71
|
+
$ddt-readonly-input-bg-color: $content-bg-color !default;
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
&.e-show-chip {
|
|
89
89
|
|
|
90
90
|
.e-chips-close {
|
|
91
|
-
@if $ddt-skin-name != '
|
|
91
|
+
@if $ddt-skin-name != 'bootstrap5' {
|
|
92
92
|
line-height: $ddt-chip-icon-line-height;
|
|
93
93
|
}
|
|
94
94
|
min-height: $ddt-chip-close-height;
|
|
@@ -847,14 +847,22 @@
|
|
|
847
847
|
right: 33px;
|
|
848
848
|
}
|
|
849
849
|
@else if $ddt-skin-name == 'bootstrap5' {
|
|
850
|
-
bottom:
|
|
851
|
-
right:
|
|
850
|
+
bottom: auto;
|
|
851
|
+
right: 36px;
|
|
852
852
|
}
|
|
853
853
|
@else {
|
|
854
854
|
right: $ddt-dd-icon-bigger-width;
|
|
855
855
|
}
|
|
856
856
|
}
|
|
857
857
|
|
|
858
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
859
|
+
&.e-show-chip {
|
|
860
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
861
|
+
bottom: 0;
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
|
|
858
866
|
.e-ddt-icon {
|
|
859
867
|
bottom: $ddt-dd-icon-bigger-bottom;
|
|
860
868
|
}
|
|
@@ -867,7 +875,7 @@
|
|
|
867
875
|
}
|
|
868
876
|
|
|
869
877
|
.e-clear-icon {
|
|
870
|
-
@if $ddt-skin-name == 'tailwind'
|
|
878
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
871
879
|
min-width: 0;
|
|
872
880
|
padding: 6px;
|
|
873
881
|
}
|
|
@@ -21,6 +21,7 @@ $ddt-big-chip-content-padding: 0 8px 0 0 !default;
|
|
|
21
21
|
$ddt-rtl-big-chip-content-padding: 0 0 0 8px !default;
|
|
22
22
|
$ddt-chip-close-font: 16px !default;
|
|
23
23
|
$ddt-chip-close-height: 16px !default;
|
|
24
|
+
$ddt-chip-icon-line-height: 10px !default;
|
|
24
25
|
$ddt-chip-close-width: 16px !default;
|
|
25
26
|
$ddt-last-chip-right-margin: 45px !default;
|
|
26
27
|
$ddt-last-chip-bigger-right-margin: 52px !default;
|
|
@@ -402,8 +402,16 @@
|
|
|
402
402
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon,
|
|
403
403
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
404
404
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon {
|
|
405
|
-
bottom:
|
|
406
|
-
right:
|
|
405
|
+
bottom: auto;
|
|
406
|
+
right: 36px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
410
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
411
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
412
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
413
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
414
|
+
bottom: 0;
|
|
407
415
|
}
|
|
408
416
|
|
|
409
417
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
@@ -417,8 +425,7 @@
|
|
|
417
425
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
|
|
418
426
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
419
427
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
420
|
-
min-
|
|
421
|
-
padding: 6px;
|
|
428
|
+
min-height: 36px;
|
|
422
429
|
}
|
|
423
430
|
|
|
424
431
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
@@ -402,8 +402,16 @@
|
|
|
402
402
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon,
|
|
403
403
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
404
404
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon {
|
|
405
|
-
bottom:
|
|
406
|
-
right:
|
|
405
|
+
bottom: auto;
|
|
406
|
+
right: 36px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
410
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
411
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
412
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
413
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
414
|
+
bottom: 0;
|
|
407
415
|
}
|
|
408
416
|
|
|
409
417
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
@@ -417,8 +425,7 @@
|
|
|
417
425
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
|
|
418
426
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
419
427
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
420
|
-
min-
|
|
421
|
-
padding: 6px;
|
|
428
|
+
min-height: 36px;
|
|
422
429
|
}
|
|
423
430
|
|
|
424
431
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
@include export-module('dropdowntree-bootstrap5-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
|
-
}
|
|
1
|
+
@include export-module('dropdowntree-bootstrap5-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
|
+
}
|