ng-jvx-multiselect 16.0.3 → 16.0.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ng-jvx-multiselect",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.5",
|
|
4
4
|
"description": "ng-jvx-multiselect is a select based on angular material. It handles both single and multiple selections and allows to retrieves the options via asynchronous calls.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
flex: 1 1 100%;
|
|
42
42
|
max-width: calc(100% - 28px);
|
|
43
43
|
display: flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
/* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */
|
|
46
|
-
/* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */
|
|
44
|
+
align-items: center;
|
|
45
|
+
/* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */
|
|
46
|
+
/* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */
|
|
47
47
|
.mat-chip-list-wrapper {
|
|
48
48
|
.mat-mdc-standard-chip {
|
|
49
49
|
padding: 0 5px 0 7px;
|
|
@@ -160,8 +160,8 @@
|
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
-
}
|
|
164
|
-
/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version. */
|
|
163
|
+
}
|
|
164
|
+
/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version. */
|
|
165
165
|
.mat-select-test {
|
|
166
166
|
width: 250px;
|
|
167
167
|
}
|
|
@@ -181,6 +181,7 @@
|
|
|
181
181
|
max-width: 100%;
|
|
182
182
|
position: relative;
|
|
183
183
|
overflow: visible;
|
|
184
|
+
|
|
184
185
|
.closeMenuButton {
|
|
185
186
|
height: 22px;
|
|
186
187
|
width: 22px;
|
|
@@ -192,7 +193,8 @@
|
|
|
192
193
|
cursor: pointer;
|
|
193
194
|
color: #fff;
|
|
194
195
|
z-index: 10;
|
|
195
|
-
|
|
196
|
+
|
|
197
|
+
mat-icon {
|
|
196
198
|
color: #fff;
|
|
197
199
|
font-size: 15px;
|
|
198
200
|
height: 100%;
|
|
@@ -202,9 +204,11 @@
|
|
|
202
204
|
justify-content: center;
|
|
203
205
|
}
|
|
204
206
|
}
|
|
207
|
+
|
|
205
208
|
.mat-mdc-menu-content {
|
|
206
209
|
padding-top: 0 !important;
|
|
207
210
|
padding-bottom: 0 !important;
|
|
211
|
+
|
|
208
212
|
.menu-list-container {
|
|
209
213
|
ng-scrollbar {
|
|
210
214
|
--scrollbar-color: transparent;
|
|
@@ -242,10 +246,10 @@
|
|
|
242
246
|
|
|
243
247
|
.mat-mdc-selection-list {
|
|
244
248
|
padding-top: 0 !important;
|
|
245
|
-
padding-bottom: 0 !important;
|
|
246
|
-
|
|
247
|
-
mat-list-option[aria-selected="true"], mat-list-option[aria-selected="false"] {
|
|
248
|
-
|
|
249
|
+
padding-bottom: 0 !important;
|
|
250
|
+
|
|
251
|
+
.mat-mdc-list-option[aria-selected="true"], .mat-mdc-list-option[aria-selected="false"] {
|
|
252
|
+
.mdc-checkbox {
|
|
249
253
|
display: none
|
|
250
254
|
}
|
|
251
255
|
}
|
|
@@ -9,12 +9,10 @@
|
|
|
9
9
|
$primary: mat.get-color-from-palette(map.get($theme, primary));
|
|
10
10
|
$accent: mat.get-color-from-palette(map.get($theme, accent));
|
|
11
11
|
$warn: mat.get-color-from-palette(map.get($theme, warn));
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
mat-list-option.mat-mdc-list-item.mat-list-option.ng-jvx-option {
|
|
12
|
+
}
|
|
13
|
+
.mat-mdc-list-item.mat-mdc-list-option.ng-jvx-option {
|
|
15
14
|
height: auto;
|
|
16
|
-
min-height: 48px;
|
|
17
|
-
/* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version. */
|
|
15
|
+
min-height: 48px;
|
|
18
16
|
.mat-list-text {
|
|
19
17
|
min-height: 48px;
|
|
20
18
|
display: flex;
|