@luscii-healthtech/web-ui 54.4.3 → 54.4.4
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/dist/index.development.js +20 -1
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -4490,7 +4490,26 @@ function generateCustomStyles(hasError) {
|
|
|
4490
4490
|
return Object.assign(Object.assign({}, baseStyles), { padding: 0, margin: 0 });
|
|
4491
4491
|
},
|
|
4492
4492
|
multiValue: (baseStyles) => {
|
|
4493
|
-
return Object.assign(Object.assign({}, baseStyles), {
|
|
4493
|
+
return Object.assign(Object.assign({}, baseStyles), {
|
|
4494
|
+
// background-info-primary-default (blue-300)
|
|
4495
|
+
backgroundColor: "#d7e3fb",
|
|
4496
|
+
borderRadius: "4px",
|
|
4497
|
+
lineHeight: "1rem"
|
|
4498
|
+
});
|
|
4499
|
+
},
|
|
4500
|
+
multiValueLabel: (baseStyles) => {
|
|
4501
|
+
return Object.assign(Object.assign({}, baseStyles), {
|
|
4502
|
+
// text-info-primary-default (brand-900)
|
|
4503
|
+
color: "#112d9c",
|
|
4504
|
+
fontSize: "14px"
|
|
4505
|
+
});
|
|
4506
|
+
},
|
|
4507
|
+
multiValueRemove: (baseStyles) => {
|
|
4508
|
+
return Object.assign(Object.assign({}, baseStyles), { color: "#112d9c", borderRadius: "0 4px 4px 0", "&:hover": {
|
|
4509
|
+
// background-info-primary-hovered (blue-500)
|
|
4510
|
+
backgroundColor: "#b3cafc",
|
|
4511
|
+
color: "#112d9c"
|
|
4512
|
+
} });
|
|
4494
4513
|
},
|
|
4495
4514
|
valueContainer: (baseStyles) => {
|
|
4496
4515
|
return Object.assign(Object.assign({}, baseStyles), { padding: ".5rem", margin: 0 });
|