beem-component 1.0.8 → 1.0.9
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/components/ChatBody/chatBody.js +3 -1
- package/dist/components/ChatHeader/chatHeader.js +4 -3
- package/dist/components/InfoTab/infoTab.js +4 -3
- package/package.json +1 -1
- package/src/lib/components/ChatBody/chatBody.js +1 -1
- package/src/lib/components/ChatHeader/chatHeader.js +2 -2
- package/src/lib/components/InfoTab/infoTab.js +2 -2
|
@@ -133,6 +133,8 @@ BmChat.Details = function (_ref6) {
|
|
|
133
133
|
}));
|
|
134
134
|
};
|
|
135
135
|
|
|
136
|
-
BmChat.Footer = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n border-top: 0.071rem solid ", ";\n padding: 0.5rem 0rem;\n align-items: center;\n justify-content: center;\n
|
|
136
|
+
BmChat.Footer = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n border-top: 0.071rem solid ", ";\n padding: 0.5rem 0rem;\n align-items: center;\n justify-content: center;\n ", "\n > *:not(:last-child) {\n margin-right: 0.5rem;\n }\n"])), _colors.BmGrey400, ''
|
|
137
|
+
/* background: ${BmGrey50}; */
|
|
138
|
+
);
|
|
137
139
|
var _default = BmChat;
|
|
138
140
|
exports.default = _default;
|
|
@@ -7,14 +7,15 @@ exports.BmChatHeader = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
9
9
|
|
|
10
|
-
var _colors = require("../colors");
|
|
11
|
-
|
|
12
10
|
var _templateObject;
|
|
13
11
|
|
|
14
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
13
|
|
|
16
14
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
// import { BmGrey400 } from "../colors";
|
|
17
|
+
var BmChatHeader = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", "\n padding: 1rem;\n > *:not(:last-child) {\n margin-right: 0.5rem;\n }\n button {\n margin-left: auto;\n }\n"])), ''
|
|
18
|
+
/* border: 0.071rem solid ${BmGrey400}; */
|
|
19
|
+
);
|
|
19
20
|
|
|
20
21
|
exports.BmChatHeader = BmChatHeader;
|
|
@@ -7,15 +7,16 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
9
9
|
|
|
10
|
-
var _colors = require("../colors");
|
|
11
|
-
|
|
12
10
|
var _templateObject, _templateObject2, _templateObject3;
|
|
13
11
|
|
|
14
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
13
|
|
|
16
14
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
// import { BmGrey400 } from "../colors";
|
|
17
|
+
var BmInfoTab = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n padding: 1.5rem;\n ", "\n > *:not(:last-child) {\n margin-bottom: 1rem;\n }\n"])), ''
|
|
18
|
+
/* border: 0.071rem solid ${BmGrey400}; */
|
|
19
|
+
);
|
|
19
20
|
|
|
20
21
|
BmInfoTab.Content = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n"])));
|
|
21
22
|
BmInfoTab.Tabs = _styledComponents.default.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n >*:not(:first-child) {\n margin-top: 0.5rem;\n }\n"])));
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
|
-
import { BmGrey400 } from "../colors";
|
|
2
|
+
// import { BmGrey400 } from "../colors";
|
|
3
3
|
|
|
4
4
|
export const BmChatHeader = styled.div`
|
|
5
5
|
display: flex;
|
|
6
6
|
flex-direction: row;
|
|
7
7
|
align-items: center;
|
|
8
|
-
border: 0.071rem solid ${BmGrey400};
|
|
8
|
+
${'' /* border: 0.071rem solid ${BmGrey400}; */}
|
|
9
9
|
padding: 1rem;
|
|
10
10
|
> *:not(:last-child) {
|
|
11
11
|
margin-right: 0.5rem;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
|
-
import { BmGrey400 } from "../colors";
|
|
2
|
+
// import { BmGrey400 } from "../colors";
|
|
3
3
|
|
|
4
4
|
const BmInfoTab = styled.div`
|
|
5
5
|
display: flex;
|
|
6
6
|
flex-direction: column;
|
|
7
7
|
padding: 1.5rem;
|
|
8
|
-
border: 0.071rem solid ${BmGrey400};
|
|
8
|
+
${'' /* border: 0.071rem solid ${BmGrey400}; */}
|
|
9
9
|
> *:not(:last-child) {
|
|
10
10
|
margin-bottom: 1rem;
|
|
11
11
|
}
|