@shoplflow/base 0.32.24 → 0.32.26
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 +5 -2
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2699,12 +2699,15 @@ exports.SplitButtonStyleVariants = {
|
|
|
2699
2699
|
SECONDARY: "SECONDARY"
|
|
2700
2700
|
};
|
|
2701
2701
|
var informationStyle = react$1.css`
|
|
2702
|
-
background: ${exports.colorTokens.
|
|
2702
|
+
background: ${exports.colorTokens.neutral400_5};
|
|
2703
2703
|
& > span {
|
|
2704
2704
|
color: ${exports.colorTokens.neutral600};
|
|
2705
2705
|
}
|
|
2706
|
+
& > svg > circle {
|
|
2707
|
+
fill: ${exports.colorTokens.neutral200};
|
|
2708
|
+
}
|
|
2706
2709
|
& > svg > path {
|
|
2707
|
-
fill: ${exports.colorTokens.
|
|
2710
|
+
fill: ${exports.colorTokens.neutral400};
|
|
2708
2711
|
}
|
|
2709
2712
|
`;
|
|
2710
2713
|
var alertStyle = react$1.css`
|
package/dist/index.js
CHANGED
|
@@ -2672,12 +2672,15 @@ var SplitButtonStyleVariants = {
|
|
|
2672
2672
|
SECONDARY: "SECONDARY"
|
|
2673
2673
|
};
|
|
2674
2674
|
var informationStyle = css`
|
|
2675
|
-
background: ${colorTokens.
|
|
2675
|
+
background: ${colorTokens.neutral400_5};
|
|
2676
2676
|
& > span {
|
|
2677
2677
|
color: ${colorTokens.neutral600};
|
|
2678
2678
|
}
|
|
2679
|
+
& > svg > circle {
|
|
2680
|
+
fill: ${colorTokens.neutral200};
|
|
2681
|
+
}
|
|
2679
2682
|
& > svg > path {
|
|
2680
|
-
fill: ${colorTokens.
|
|
2683
|
+
fill: ${colorTokens.neutral400};
|
|
2681
2684
|
}
|
|
2682
2685
|
`;
|
|
2683
2686
|
var alertStyle = css`
|