ca-components 1.2.15 → 1.2.16
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/assets/scss/input-dropdown.scss +27 -3
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +24 -11
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.mjs +37 -0
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.mjs +8 -5
- package/esm2022/lib/components/ca-input-dropdown/models/input-dropdown-option.model.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/pipes/dropdown-options.pipe.mjs +28 -27
- package/fesm2022/ca-components.mjs +89 -41
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-input/config/ca-input.config.d.ts +1 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.d.ts +11 -0
- package/lib/components/ca-input-dropdown/models/input-dropdown-option.model.d.ts +1 -0
- package/lib/components/ca-input-dropdown/pipes/dropdown-options.pipe.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1199,6 +1199,15 @@
|
|
|
1199
1199
|
}
|
|
1200
1200
|
}
|
|
1201
1201
|
|
|
1202
|
+
.dropdown-option-hovered {
|
|
1203
|
+
border-radius: 2px;
|
|
1204
|
+
background-color: #1d1d1d;
|
|
1205
|
+
|
|
1206
|
+
.dropdown-subgroup-text {
|
|
1207
|
+
color: #ffffff !important;
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1202
1211
|
.dropdown-subgroup-options {
|
|
1203
1212
|
display: grid;
|
|
1204
1213
|
grid-template-columns: 141px 135px;
|
|
@@ -1210,6 +1219,10 @@
|
|
|
1210
1219
|
// margin-bottom: 2px;
|
|
1211
1220
|
cursor: pointer;
|
|
1212
1221
|
|
|
1222
|
+
&.selected-option {
|
|
1223
|
+
padding: 0px 4px;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1213
1226
|
&:hover {
|
|
1214
1227
|
border-radius: 2px;
|
|
1215
1228
|
background-color: #1d1d1d;
|
|
@@ -1219,10 +1232,22 @@
|
|
|
1219
1232
|
}
|
|
1220
1233
|
}
|
|
1221
1234
|
|
|
1235
|
+
&:not(.selected-option) {
|
|
1236
|
+
.dropdown-subgroup-text {
|
|
1237
|
+
color: #ffffff;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.dropdown-subgroup-additional-text {
|
|
1241
|
+
&.active {
|
|
1242
|
+
color: #6f9ee0;
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1222
1247
|
.dropdown-subgroup-text {
|
|
1223
1248
|
font-size: 14px;
|
|
1224
1249
|
font-weight: 400;
|
|
1225
|
-
|
|
1250
|
+
|
|
1226
1251
|
display: block;
|
|
1227
1252
|
width: 100%;
|
|
1228
1253
|
|
|
@@ -1257,7 +1282,6 @@
|
|
|
1257
1282
|
|
|
1258
1283
|
&.active {
|
|
1259
1284
|
font-weight: 400;
|
|
1260
|
-
color: #6f9ee0;
|
|
1261
1285
|
}
|
|
1262
1286
|
|
|
1263
1287
|
// Higlight text
|
|
@@ -1321,7 +1345,7 @@
|
|
|
1321
1345
|
//------------------------ Load Shipper Contact Template -----------------------
|
|
1322
1346
|
.load-shipper-template {
|
|
1323
1347
|
display: grid;
|
|
1324
|
-
grid-template-columns:
|
|
1348
|
+
grid-template-columns: 1fr 1fr;
|
|
1325
1349
|
align-items: center;
|
|
1326
1350
|
padding-right: 25px;
|
|
1327
1351
|
|