@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.d.cts
CHANGED
|
@@ -5028,7 +5028,7 @@ type MenuSection = MenuItem & {
|
|
|
5028
5028
|
};
|
|
5029
5029
|
|
|
5030
5030
|
type TagXss = Margin | "backgroundColor" | "color";
|
|
5031
|
-
type TagType = "info" | "
|
|
5031
|
+
type TagType = "info" | "update" | "warning" | "error" | "success" | "neutral";
|
|
5032
5032
|
type TagVariant = "primary" | "secondary";
|
|
5033
5033
|
type TagPropsBase<X> = {
|
|
5034
5034
|
text: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -5028,7 +5028,7 @@ type MenuSection = MenuItem & {
|
|
|
5028
5028
|
};
|
|
5029
5029
|
|
|
5030
5030
|
type TagXss = Margin | "backgroundColor" | "color";
|
|
5031
|
-
type TagType = "info" | "
|
|
5031
|
+
type TagType = "info" | "update" | "warning" | "error" | "success" | "neutral";
|
|
5032
5032
|
type TagVariant = "primary" | "secondary";
|
|
5033
5033
|
type TagPropsBase<X> = {
|
|
5034
5034
|
text: ReactNode;
|
package/dist/index.js
CHANGED
|
@@ -16925,7 +16925,7 @@ var VirtualRoot = memoizeOne((gs, _columns, id, xss) => {
|
|
|
16925
16925
|
}), "data-testid": id, children });
|
|
16926
16926
|
});
|
|
16927
16927
|
});
|
|
16928
|
-
var CARD_MIN_WIDTH_PX =
|
|
16928
|
+
var CARD_MIN_WIDTH_PX = 330;
|
|
16929
16929
|
|
|
16930
16930
|
// src/components/ToggleChip.tsx
|
|
16931
16931
|
import { trussProps as trussProps53 } from "@homebound/truss/runtime";
|
|
@@ -21669,7 +21669,7 @@ function getPrimaryStyles(type) {
|
|
|
21669
21669
|
},
|
|
21670
21670
|
iconColor: "rgba(37, 99, 235, 1)" /* Blue600 */
|
|
21671
21671
|
};
|
|
21672
|
-
case "
|
|
21672
|
+
case "update":
|
|
21673
21673
|
return {
|
|
21674
21674
|
background: {
|
|
21675
21675
|
backgroundColor: "bgYellow200"
|
|
@@ -21679,14 +21679,21 @@ function getPrimaryStyles(type) {
|
|
|
21679
21679
|
case "warning":
|
|
21680
21680
|
return {
|
|
21681
21681
|
background: {
|
|
21682
|
-
backgroundColor: "
|
|
21682
|
+
backgroundColor: "bgOrange100"
|
|
21683
|
+
},
|
|
21684
|
+
iconColor: "rgba(194, 65, 12, 1)" /* Orange700 */
|
|
21685
|
+
};
|
|
21686
|
+
case "error":
|
|
21687
|
+
return {
|
|
21688
|
+
background: {
|
|
21689
|
+
backgroundColor: "bgRed100"
|
|
21683
21690
|
},
|
|
21684
21691
|
iconColor: "rgba(194, 65, 12, 1)" /* Orange700 */
|
|
21685
21692
|
};
|
|
21686
21693
|
case "success":
|
|
21687
21694
|
return {
|
|
21688
21695
|
background: {
|
|
21689
|
-
backgroundColor: "
|
|
21696
|
+
backgroundColor: "bgGreen100"
|
|
21690
21697
|
},
|
|
21691
21698
|
iconColor: "rgba(5, 150, 105, 1)" /* Green600 */
|
|
21692
21699
|
};
|