@homebound/beam 3.42.0 → 3.42.2
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.cjs +11 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/truss.css +2 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -17388,7 +17388,7 @@ var VirtualRoot = (0, import_memoize_one.default)((gs, _columns, id, xss) => {
|
|
|
17388
17388
|
}), "data-testid": id, children });
|
|
17389
17389
|
});
|
|
17390
17390
|
});
|
|
17391
|
-
var CARD_MIN_WIDTH_PX =
|
|
17391
|
+
var CARD_MIN_WIDTH_PX = 330;
|
|
17392
17392
|
|
|
17393
17393
|
// src/components/ToggleChip.tsx
|
|
17394
17394
|
var import_runtime57 = require("@homebound/truss/runtime");
|
|
@@ -22132,7 +22132,7 @@ function getPrimaryStyles(type) {
|
|
|
22132
22132
|
},
|
|
22133
22133
|
iconColor: "rgba(37, 99, 235, 1)" /* Blue600 */
|
|
22134
22134
|
};
|
|
22135
|
-
case "
|
|
22135
|
+
case "update":
|
|
22136
22136
|
return {
|
|
22137
22137
|
background: {
|
|
22138
22138
|
backgroundColor: "bgYellow200"
|
|
@@ -22142,14 +22142,21 @@ function getPrimaryStyles(type) {
|
|
|
22142
22142
|
case "warning":
|
|
22143
22143
|
return {
|
|
22144
22144
|
background: {
|
|
22145
|
-
backgroundColor: "
|
|
22145
|
+
backgroundColor: "bgOrange100"
|
|
22146
|
+
},
|
|
22147
|
+
iconColor: "rgba(194, 65, 12, 1)" /* Orange700 */
|
|
22148
|
+
};
|
|
22149
|
+
case "error":
|
|
22150
|
+
return {
|
|
22151
|
+
background: {
|
|
22152
|
+
backgroundColor: "bgRed100"
|
|
22146
22153
|
},
|
|
22147
22154
|
iconColor: "rgba(194, 65, 12, 1)" /* Orange700 */
|
|
22148
22155
|
};
|
|
22149
22156
|
case "success":
|
|
22150
22157
|
return {
|
|
22151
22158
|
background: {
|
|
22152
|
-
backgroundColor: "
|
|
22159
|
+
backgroundColor: "bgGreen100"
|
|
22153
22160
|
},
|
|
22154
22161
|
iconColor: "rgba(5, 150, 105, 1)" /* Green600 */
|
|
22155
22162
|
};
|