@sproutsocial/racine 11.3.1-beta-deps.1 → 11.3.1-beta-deps.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/__flow__/Button/index.js +2 -1
- package/__flow__/Button/styles.js +1 -1
- package/__flow__/Menu/__snapshots__/index.test.js.snap +1 -1
- package/commonjs/Button/index.js +1 -1
- package/commonjs/Button/styles.js +1 -0
- package/lib/Button/index.js +1 -1
- package/lib/Button/styles.js +1 -0
- package/package.json +1 -1
package/__flow__/Button/index.js
CHANGED
package/commonjs/Button/index.js
CHANGED
|
@@ -46,7 +46,6 @@ var Button = function Button(_ref) {
|
|
|
46
46
|
|
|
47
47
|
var appearanceCheck = appearance === "default" ? "unstyled" : appearance;
|
|
48
48
|
return /*#__PURE__*/React.createElement(_styles.default, _extends({
|
|
49
|
-
className: "container",
|
|
50
49
|
title: title,
|
|
51
50
|
active: active,
|
|
52
51
|
href: href,
|
|
@@ -66,5 +65,6 @@ var Button = function Button(_ref) {
|
|
|
66
65
|
}, qa, rest), children);
|
|
67
66
|
};
|
|
68
67
|
|
|
68
|
+
Button.displayName = "Button";
|
|
69
69
|
var _default = Button;
|
|
70
70
|
exports.default = _default;
|
|
@@ -60,6 +60,7 @@ var Container = _styledComponents.default.button.withConfig({
|
|
|
60
60
|
return props.appearance === "pill" && (0, _styledComponents.css)(["display:inline-flex;align-items:center;justify-content:center;mix-blend-mode:", ";", ""], props.theme.mode === "dark" ? "screen" : "multiply", _mixins.pill);
|
|
61
61
|
}, _styles.default, _systemProps.LAYOUT, _systemProps.COMMON);
|
|
62
62
|
|
|
63
|
+
Container.displayName = "Button-Container";
|
|
63
64
|
var _default = Container; //${props.theme.mode === "dark" ? "screen" : "multiply"}
|
|
64
65
|
|
|
65
66
|
exports.default = _default;
|
package/lib/Button/index.js
CHANGED
|
@@ -34,7 +34,6 @@ var Button = function Button(_ref) {
|
|
|
34
34
|
|
|
35
35
|
var appearanceCheck = appearance === "default" ? "unstyled" : appearance;
|
|
36
36
|
return /*#__PURE__*/React.createElement(Container, _extends({
|
|
37
|
-
className: "container",
|
|
38
37
|
title: title,
|
|
39
38
|
active: active,
|
|
40
39
|
href: href,
|
|
@@ -54,4 +53,5 @@ var Button = function Button(_ref) {
|
|
|
54
53
|
}, qa, rest), children);
|
|
55
54
|
};
|
|
56
55
|
|
|
56
|
+
Button.displayName = "Button";
|
|
57
57
|
export default Button;
|
package/lib/Button/styles.js
CHANGED
|
@@ -44,4 +44,5 @@ var Container = styled.button.withConfig({
|
|
|
44
44
|
}, function (props) {
|
|
45
45
|
return props.appearance === "pill" && css(["display:inline-flex;align-items:center;justify-content:center;mix-blend-mode:", ";", ""], props.theme.mode === "dark" ? "screen" : "multiply", pill);
|
|
46
46
|
}, Icon, LAYOUT, COMMON);
|
|
47
|
+
Container.displayName = "Button-Container";
|
|
47
48
|
export default Container; //${props.theme.mode === "dark" ? "screen" : "multiply"}
|