@syncfusion/ej2-dropdowns 18.1.57 → 18.2.44-4569
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/.eslintrc.json +244 -0
- package/CHANGELOG.md +1524 -1514
- package/README.md +118 -118
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +198 -126
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +290 -217
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/auto-complete/auto-complete.ts +527 -0
- package/dist/ts/combo-box/combo-box.ts +957 -0
- package/dist/ts/common/highlight-search.ts +47 -0
- package/dist/ts/common/incremental-search.ts +81 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
- package/dist/ts/list-box/list-box.ts +2317 -0
- package/dist/ts/multi-select/checkbox-selection.ts +528 -0
- package/dist/ts/multi-select/float-label.ts +155 -0
- package/dist/ts/multi-select/interface.ts +66 -0
- package/dist/ts/multi-select/multi-select.ts +4216 -0
- package/helpers/e2e/index.js +3 -3
- package/license +2 -2
- package/package.json +77 -77
- package/src/auto-complete/auto-complete-model.d.ts +179 -179
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +21 -21
- package/src/combo-box/combo-box-model.d.ts +212 -212
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +4 -2
- package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
- package/src/drop-down-base/drop-down-base.d.ts +17 -17
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
- package/src/drop-down-list/drop-down-list.d.ts +3 -2
- package/src/drop-down-list/drop-down-list.js +43 -30
- package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
- package/src/drop-down-tree/drop-down-tree.js +32 -26
- package/src/list-box/index.d.ts +1 -0
- package/src/list-box/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +156 -156
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +57 -59
- package/src/multi-select/index.d.ts +1 -0
- package/src/multi-select/index.js +1 -0
- package/src/multi-select/multi-select-model.d.ts +452 -452
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +98 -43
- package/styles/_all.scss +3 -3
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/bootstrap-dark.css +67 -61
- package/styles/bootstrap.css +69 -63
- package/styles/bootstrap4.css +81 -61
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
- package/styles/drop-down-base/_fabric-definition.scss +66 -66
- package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
- package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-base/_layout.scss +108 -108
- package/styles/drop-down-base/_material-dark-definition.scss +67 -67
- package/styles/drop-down-base/_material-definition.scss +65 -65
- package/styles/drop-down-base/_theme.scss +242 -242
- package/styles/drop-down-list/_all.scss +2 -2
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
- package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
- package/styles/drop-down-list/_fabric-definition.scss +122 -122
- package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
- package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
- package/styles/drop-down-list/_layout.scss +218 -218
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +166 -166
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/material.css +9 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap4-definition.scss +63 -50
- package/styles/drop-down-tree/_fabric-dark-definition.scss +63 -49
- package/styles/drop-down-tree/_fabric-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +63 -49
- package/styles/drop-down-tree/_layout.scss +437 -398
- package/styles/drop-down-tree/_material-dark-definition.scss +61 -54
- package/styles/drop-down-tree/_material-definition.scss +61 -54
- package/styles/drop-down-tree/_theme.scss +68 -63
- package/styles/drop-down-tree/bootstrap-dark.css +67 -61
- package/styles/drop-down-tree/bootstrap.css +69 -63
- package/styles/drop-down-tree/bootstrap4.css +81 -61
- package/styles/drop-down-tree/fabric-dark.css +71 -63
- package/styles/drop-down-tree/fabric.css +71 -63
- package/styles/drop-down-tree/highcontrast-light.css +71 -63
- package/styles/drop-down-tree/highcontrast.css +75 -63
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/material-dark.css +76 -85
- package/styles/drop-down-tree/material.css +93 -85
- package/styles/fabric-dark.css +71 -63
- package/styles/fabric.css +71 -63
- package/styles/highcontrast-light.css +71 -63
- package/styles/highcontrast.css +75 -63
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
- package/styles/list-box/_bootstrap-definition.scss +112 -112
- package/styles/list-box/_bootstrap4-definition.scss +118 -118
- package/styles/list-box/_fabric-dark-definition.scss +118 -118
- package/styles/list-box/_fabric-definition.scss +112 -112
- package/styles/list-box/_highcontrast-definition.scss +112 -112
- package/styles/list-box/_highcontrast-light-definition.scss +118 -118
- package/styles/list-box/_layout.scss +458 -458
- package/styles/list-box/_material-dark-definition.scss +118 -118
- package/styles/list-box/_material-definition.scss +112 -112
- package/styles/list-box/_theme.scss +273 -273
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/material-dark.css +4 -4
- package/styles/list-box/material.css +4 -4
- package/styles/material-dark.css +80 -89
- package/styles/material.css +115 -89
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
- package/styles/multi-select/_bootstrap-definition.scss +166 -166
- package/styles/multi-select/_bootstrap4-definition.scss +233 -233
- package/styles/multi-select/_fabric-dark-definition.scss +170 -170
- package/styles/multi-select/_fabric-definition.scss +167 -167
- package/styles/multi-select/_highcontrast-definition.scss +257 -257
- package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
- package/styles/multi-select/_layout.scss +1153 -1153
- package/styles/multi-select/_material-dark-definition.scss +186 -186
- package/styles/multi-select/_material-definition.scss +191 -191
- package/styles/multi-select/_theme.scss +384 -384
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +26 -26
- package/styles/multi-select/icons/_material.scss +324 -324
- package/styles/multi-select/material.css +9 -0
package/styles/material-dark.css
CHANGED
|
@@ -734,13 +734,13 @@ ejs-dropdownlist {
|
|
|
734
734
|
outline: none;
|
|
735
735
|
}
|
|
736
736
|
|
|
737
|
-
.e-ddt
|
|
738
|
-
transform: rotate(
|
|
737
|
+
.e-ddt .e-ddt-icon::before {
|
|
738
|
+
transform: rotate(0deg);
|
|
739
739
|
transition: transform 300ms ease;
|
|
740
740
|
}
|
|
741
741
|
|
|
742
|
-
.e-ddt .e-ddt-icon::before {
|
|
743
|
-
transform: rotate(
|
|
742
|
+
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
743
|
+
transform: rotate(180deg);
|
|
744
744
|
transition: transform 300ms ease;
|
|
745
745
|
}
|
|
746
746
|
|
|
@@ -757,9 +757,6 @@ ejs-dropdownlist {
|
|
|
757
757
|
|
|
758
758
|
.e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
|
|
759
759
|
border: 0;
|
|
760
|
-
margin-bottom: 0;
|
|
761
|
-
margin-top: 0;
|
|
762
|
-
padding: 5px 4px;
|
|
763
760
|
}
|
|
764
761
|
|
|
765
762
|
.e-ddt.e-input-group.e-control-wrapper .e-icon-hide, .e-ddt.e-float-input.e-control-wrapper .e-icon-hide {
|
|
@@ -773,7 +770,7 @@ ejs-dropdownlist {
|
|
|
773
770
|
}
|
|
774
771
|
|
|
775
772
|
.e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
776
|
-
right:
|
|
773
|
+
right: 18px;
|
|
777
774
|
}
|
|
778
775
|
|
|
779
776
|
.e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
@@ -802,19 +799,22 @@ ejs-dropdownlist {
|
|
|
802
799
|
|
|
803
800
|
.e-ddt .e-chips-wrapper .e-chips-close::before {
|
|
804
801
|
font-size: 16px;
|
|
802
|
+
vertical-align: middle;
|
|
805
803
|
}
|
|
806
804
|
|
|
807
805
|
.e-ddt .e-chips-wrapper .e-chips {
|
|
808
806
|
-ms-flex-align: center;
|
|
809
807
|
align-items: center;
|
|
808
|
+
border-radius: 16px;
|
|
809
|
+
box-sizing: border-box;
|
|
810
810
|
display: -ms-inline-flexbox;
|
|
811
811
|
display: inline-flex;
|
|
812
812
|
float: left;
|
|
813
813
|
height: 24px;
|
|
814
|
-
margin:
|
|
815
|
-
max-width: 100
|
|
814
|
+
margin: 3px 1px;
|
|
815
|
+
max-width: calc(100% - 2px);
|
|
816
816
|
overflow: hidden;
|
|
817
|
-
padding: 0 4px 0
|
|
817
|
+
padding: 0 4px 0 4px;
|
|
818
818
|
text-overflow: ellipsis;
|
|
819
819
|
white-space: nowrap;
|
|
820
820
|
}
|
|
@@ -822,22 +822,25 @@ ejs-dropdownlist {
|
|
|
822
822
|
.e-ddt .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
823
823
|
max-width: 100%;
|
|
824
824
|
overflow: hidden;
|
|
825
|
-
padding: 0 4px 0
|
|
825
|
+
padding: 0 4px 0 4px;
|
|
826
826
|
text-indent: 0;
|
|
827
827
|
text-overflow: ellipsis;
|
|
828
828
|
white-space: nowrap;
|
|
829
829
|
}
|
|
830
830
|
|
|
831
|
-
.e-ddt.e-show-
|
|
832
|
-
margin-right:
|
|
831
|
+
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
832
|
+
margin-right: 18px;
|
|
833
|
+
max-width: calc(100% - 19px);
|
|
833
834
|
}
|
|
834
835
|
|
|
835
|
-
.e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
836
|
+
.e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
836
837
|
margin-right: 26px;
|
|
838
|
+
max-width: calc(100% - 27px);
|
|
837
839
|
}
|
|
838
840
|
|
|
839
|
-
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
840
|
-
margin-right:
|
|
841
|
+
.e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
842
|
+
margin-right: 45px;
|
|
843
|
+
max-width: calc(100% - 45px);
|
|
841
844
|
}
|
|
842
845
|
|
|
843
846
|
.e-ddt input[readonly],
|
|
@@ -853,9 +856,7 @@ ejs-dropdownlist {
|
|
|
853
856
|
}
|
|
854
857
|
|
|
855
858
|
.e-ddt.e-popup {
|
|
856
|
-
border: 1px solid;
|
|
857
859
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
858
|
-
margin-top: 2px;
|
|
859
860
|
position: absolute;
|
|
860
861
|
}
|
|
861
862
|
|
|
@@ -866,7 +867,7 @@ ejs-dropdownlist {
|
|
|
866
867
|
line-height: 36px;
|
|
867
868
|
overflow: hidden;
|
|
868
869
|
position: relative;
|
|
869
|
-
text-indent:
|
|
870
|
+
text-indent: 38px;
|
|
870
871
|
white-space: nowrap;
|
|
871
872
|
width: 100%;
|
|
872
873
|
}
|
|
@@ -876,7 +877,6 @@ ejs-dropdownlist {
|
|
|
876
877
|
}
|
|
877
878
|
|
|
878
879
|
.e-ddt.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
879
|
-
margin-right: 10px;
|
|
880
880
|
position: relative;
|
|
881
881
|
text-indent: 0;
|
|
882
882
|
}
|
|
@@ -884,10 +884,30 @@ ejs-dropdownlist {
|
|
|
884
884
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|
|
885
885
|
font-family: inherit;
|
|
886
886
|
font-size: 14px;
|
|
887
|
+
margin: 10px;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
891
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
892
|
+
padding: 8px 16px 8px;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
896
|
+
border: 0;
|
|
897
|
+
border-top-width: 0;
|
|
898
|
+
display: block;
|
|
899
|
+
padding: 0;
|
|
887
900
|
}
|
|
888
901
|
|
|
889
902
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
890
|
-
|
|
903
|
+
margin-bottom: 0;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.e-ddt.e-popup .e-filter-wrap .e-input-group .e-clear-icon {
|
|
907
|
+
margin: 6px 6px 5px;
|
|
908
|
+
min-height: 12px;
|
|
909
|
+
min-width: 12px;
|
|
910
|
+
padding: 6px;
|
|
891
911
|
}
|
|
892
912
|
|
|
893
913
|
.e-ddt.e-popup .e-popup-content {
|
|
@@ -950,49 +970,32 @@ ejs-dropdownlist {
|
|
|
950
970
|
|
|
951
971
|
.e-ddt.e-rtl .e-chips-wrapper .e-chips {
|
|
952
972
|
float: right;
|
|
953
|
-
padding: 0 8px 0 4px;
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
.e-ddt.e-rtl .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
957
|
-
padding: 0 0 0 4px;
|
|
958
973
|
}
|
|
959
974
|
|
|
960
|
-
.e-ddt.e-rtl.e-show-
|
|
961
|
-
margin-left:
|
|
975
|
+
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
976
|
+
margin-left: 18px;
|
|
962
977
|
margin-right: 1px;
|
|
963
978
|
}
|
|
964
979
|
|
|
965
|
-
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
980
|
+
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
966
981
|
margin-left: 26px;
|
|
967
982
|
margin-right: 1px;
|
|
968
983
|
}
|
|
969
984
|
|
|
970
|
-
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
971
|
-
margin-left:
|
|
985
|
+
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
986
|
+
margin-left: 45px;
|
|
972
987
|
margin-right: 1px;
|
|
973
988
|
}
|
|
974
989
|
|
|
975
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon {
|
|
990
|
+
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
991
|
+
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
992
|
+
.e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
980
993
|
left: 0;
|
|
981
994
|
right: auto;
|
|
982
995
|
}
|
|
983
996
|
|
|
984
997
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
985
|
-
left:
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
989
|
-
left: 0;
|
|
990
|
-
right: auto;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.e-ddt.e-rtl.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
994
|
-
margin-left: 10px;
|
|
995
|
-
margin-right: 0;
|
|
998
|
+
left: 18px;
|
|
996
999
|
}
|
|
997
1000
|
|
|
998
1001
|
.e-ddt.e-rtl.e-popup .e-treeview .e-list-item .e-ul {
|
|
@@ -1001,52 +1004,48 @@ ejs-dropdownlist {
|
|
|
1001
1004
|
|
|
1002
1005
|
.e-bigger .e-ddt .e-chips,
|
|
1003
1006
|
.e-ddt.e-bigger .e-chips {
|
|
1004
|
-
height:
|
|
1007
|
+
height: 31px;
|
|
1005
1008
|
}
|
|
1006
1009
|
|
|
1007
1010
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.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-dd-icon .e-clear-icon,
|
|
1008
1011
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1009
1012
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
1010
|
-
right:
|
|
1013
|
+
right: 20px;
|
|
1011
1014
|
}
|
|
1012
1015
|
|
|
1013
1016
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon,
|
|
1014
1017
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon,
|
|
1015
1018
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
1016
|
-
bottom:
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon,
|
|
1020
|
-
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon,
|
|
1021
|
-
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
|
|
1022
|
-
padding: 9px 4px;
|
|
1019
|
+
bottom: 3px;
|
|
1023
1020
|
}
|
|
1024
1021
|
|
|
1025
1022
|
.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,
|
|
1026
1023
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
1027
1024
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
1028
1025
|
min-height: 26px;
|
|
1029
|
-
padding: 6px 9px 5px 9px;
|
|
1030
1026
|
}
|
|
1031
1027
|
|
|
1032
|
-
.e-bigger .e-ddt.e-show-
|
|
1033
|
-
.e-ddt.e-bigger.e-show-
|
|
1034
|
-
margin-right:
|
|
1028
|
+
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
1029
|
+
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1030
|
+
margin-right: 20px;
|
|
1031
|
+
max-width: calc(100% - 21px);
|
|
1035
1032
|
}
|
|
1036
1033
|
|
|
1037
|
-
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
1038
|
-
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips
|
|
1034
|
+
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
1035
|
+
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
1039
1036
|
margin-right: 32px;
|
|
1037
|
+
max-width: calc(100% - 33px);
|
|
1040
1038
|
}
|
|
1041
1039
|
|
|
1042
|
-
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
1043
|
-
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
1044
|
-
margin-right:
|
|
1040
|
+
.e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
1041
|
+
.e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1042
|
+
margin-right: 52px;
|
|
1043
|
+
max-width: calc(100% - 53px);
|
|
1045
1044
|
}
|
|
1046
1045
|
|
|
1047
1046
|
.e-bigger .e-ddt.e-popup .e-selectall-parent,
|
|
1048
1047
|
.e-ddt.e-bigger.e-popup .e-selectall-parent {
|
|
1049
|
-
text-indent:
|
|
1048
|
+
text-indent: 43px;
|
|
1050
1049
|
}
|
|
1051
1050
|
|
|
1052
1051
|
.e-bigger .e-ddt.e-popup .e-treeview .e-fullrow,
|
|
@@ -1054,40 +1053,32 @@ ejs-dropdownlist {
|
|
|
1054
1053
|
height: 44px;
|
|
1055
1054
|
}
|
|
1056
1055
|
|
|
1057
|
-
.e-bigger .e-ddt.e-rtl.e-
|
|
1058
|
-
.e-
|
|
1059
|
-
|
|
1060
|
-
.e-ddt.e-bigger.e-rtl.e-float-input.e-control-wrapper .e-clear-icon {
|
|
1061
|
-
padding: 6px 9px 5px 9px;
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
|
|
1065
|
-
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
|
|
1066
|
-
margin-left: 66px;
|
|
1056
|
+
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
1057
|
+
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1058
|
+
margin-left: 20px;
|
|
1067
1059
|
margin-right: 1px;
|
|
1068
1060
|
}
|
|
1069
1061
|
|
|
1070
|
-
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
1071
|
-
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
1062
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
1063
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
1072
1064
|
margin-left: 32px;
|
|
1073
1065
|
margin-right: 1px;
|
|
1074
1066
|
}
|
|
1075
1067
|
|
|
1076
|
-
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
1077
|
-
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
1078
|
-
margin-left:
|
|
1068
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
1069
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1070
|
+
margin-left: 52px;
|
|
1079
1071
|
margin-right: 1px;
|
|
1080
1072
|
}
|
|
1081
1073
|
|
|
1082
1074
|
.e-bigger .e-ddt.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
1083
1075
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon {
|
|
1084
|
-
left:
|
|
1076
|
+
left: 20px;
|
|
1085
1077
|
right: auto;
|
|
1086
1078
|
}
|
|
1087
1079
|
|
|
1088
1080
|
.e-ddt .e-chips {
|
|
1089
1081
|
background-color: #424242;
|
|
1090
|
-
border-radius: 16px;
|
|
1091
1082
|
}
|
|
1092
1083
|
|
|
1093
1084
|
.e-ddt .e-chips .e-chips-close::before {
|
|
@@ -1124,7 +1115,7 @@ ejs-dropdownlist {
|
|
|
1124
1115
|
}
|
|
1125
1116
|
|
|
1126
1117
|
.e-ddt.e-popup .e-selectall-parent {
|
|
1127
|
-
border-bottom:
|
|
1118
|
+
border-bottom-color: rgba(0, 0, 0, 0.12);
|
|
1128
1119
|
}
|
|
1129
1120
|
|
|
1130
1121
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|
|
@@ -2869,15 +2860,15 @@ ejs-listbox {
|
|
|
2869
2860
|
}
|
|
2870
2861
|
|
|
2871
2862
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2872
|
-
height: calc(100% -
|
|
2863
|
+
height: calc(100% - 39px);
|
|
2873
2864
|
}
|
|
2874
2865
|
|
|
2875
2866
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2876
|
-
height: calc(100% -
|
|
2867
|
+
height: calc(100% - 51px);
|
|
2877
2868
|
}
|
|
2878
2869
|
|
|
2879
2870
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2880
|
-
height: calc(100% -
|
|
2871
|
+
height: calc(100% - 41px);
|
|
2881
2872
|
}
|
|
2882
2873
|
|
|
2883
2874
|
.e-listbox-wrapper {
|
|
@@ -2894,7 +2885,7 @@ ejs-listbox {
|
|
|
2894
2885
|
}
|
|
2895
2886
|
|
|
2896
2887
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2897
|
-
height: calc(100% -
|
|
2888
|
+
height: calc(100% - 43px);
|
|
2898
2889
|
}
|
|
2899
2890
|
|
|
2900
2891
|
.e-listbox-wrapper .e-icons {
|