beem-component 1.0.2 → 1.0.6
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/.storybook/favicon.ico +0 -0
- package/.storybook/logo-blue.png +0 -0
- package/.storybook/main.js +18 -0
- package/.storybook/manager-head.html +14 -0
- package/.storybook/manager.js +6 -0
- package/.storybook/preview.js +10 -0
- package/.storybook/theme.js +10 -0
- package/Dockerfile +30 -0
- package/Jenkinsfile +73 -0
- package/build-storybook.log +14621 -0
- package/dist/assets/beem.jpeg +0 -0
- package/dist/assets/css/sidebar.css +12 -0
- package/dist/components/{Accordion.js → Accordion/Accordion.js} +13 -7
- package/dist/components/Accordion/Accordion.stories.js +86 -0
- package/dist/components/{avatars.js → Avatars/avatars.js} +32 -11
- package/dist/components/Avatars/avatars.stories.js +69 -0
- package/dist/components/Buttons/Stories/basicbutton.stories.js +67 -0
- package/dist/components/Buttons/Stories/buttonAlertIcons.stories.js +65 -0
- package/dist/components/Buttons/Stories/buttonIconsOnly.stories.js +65 -0
- package/dist/components/{buttonAlertIcons.js → Buttons/buttonAlertIcons.js} +17 -9
- package/dist/components/Buttons/buttonDropdown copy.js +158 -0
- package/dist/components/Buttons/buttonDropdown.js +30 -0
- package/dist/components/{buttonIconsOnly.js → Buttons/buttonIconsOnly.js} +14 -5
- package/dist/components/{buttons.js → Buttons/buttons.js} +12 -11
- package/dist/components/Cards/cards.js +24 -0
- package/dist/components/Cards/cards.stories.js +57 -0
- package/dist/components/ChatBody/chatBody.js +138 -0
- package/dist/components/ChatBody/chatBody.stories.js +65 -0
- package/dist/components/{Modals/noteModalBody.js → ChatHeader/chatHeader.js} +5 -5
- package/dist/components/ChatHeader/chatHeader.stories.js +29 -0
- package/dist/components/Chats/chat.js +1 -1
- package/dist/components/Chats/chatInput.js +1 -1
- package/dist/components/Chats/chatwrapper.js +1 -1
- package/dist/components/ContactCards/contactCards.js +34 -0
- package/dist/components/ContactCards/contactCards.stories.js +41 -0
- package/dist/components/InfoTab/infoTab.js +23 -0
- package/dist/components/InfoTab/infoTab.stories.js +49 -0
- package/dist/components/Lists/listBox.js +41 -0
- package/dist/components/Lists/listBox.stories.js +78 -0
- package/dist/components/Lists/listHeader.stories.js +58 -0
- package/dist/components/Lists/listheader.js +17 -12
- package/dist/components/Lists/rowLabels.js +34 -16
- package/dist/components/Lists/rowLabels.stories.js +85 -0
- package/dist/components/{loaders.js → Loader/loader.js} +13 -7
- package/dist/components/Loader/loader.stories.js +52 -0
- package/dist/components/{Reports/buttons.js → MainWrapper/index.js} +5 -3
- package/dist/components/MessageCounter/MessageCounter.stories.js +52 -0
- package/dist/components/MessageCounter/messageCounter.js +49 -0
- package/dist/components/Modals/modal copy.js +160 -0
- package/dist/components/Modals/modal.js +166 -0
- package/dist/components/Modals/modals.stories.js +117 -0
- package/dist/components/{infoNote.js → NoteBar/noteBar.js} +23 -19
- package/dist/components/NoteBar/noteBar.stories.js +66 -0
- package/dist/components/PerformanceIndicator/performaceIndicator.stories.js +66 -0
- package/dist/components/PerformanceIndicator/performanceIndicator.js +68 -0
- package/dist/components/Pills/pills.js +126 -0
- package/dist/components/Pills/pills.stories.js +110 -0
- package/dist/components/{progressbar.js → ProgressBar/progressbar.js} +8 -2
- package/dist/components/ProgressBar/progressbar.stories.js +45 -0
- package/dist/components/{Link.js → RouteLink/link.js} +8 -3
- package/dist/components/RouteLink/link.stories.js +29 -0
- package/dist/components/SuperFluid/ContentTitle.js/index.js +1 -1
- package/dist/components/SuperFluid/SegmentCard/index.js +1 -1
- package/dist/components/Tabs/tabs.js +85 -0
- package/dist/components/Tabs/tabs.stories.js +60 -0
- package/dist/components/breakpoints.js +18 -0
- package/dist/components/chatHeader.js +1 -1
- package/dist/components/checkboxToggler.js +2 -2
- package/dist/components/colors.js +5 -3
- package/dist/components/contacts.js +1 -1
- package/dist/components/dropdown.js +1 -1
- package/dist/components/dropdownButton.js +3 -3
- package/dist/components/dropdownItems.js +1 -1
- package/dist/components/example.js +47 -0
- package/dist/components/iconStyles.js +69 -119
- package/dist/components/index-copy.js +1285 -0
- package/dist/components/index.js +88 -1134
- package/dist/components/input.js +9 -3
- package/dist/components/logo.js +1 -1
- package/dist/components/navbar.js +1 -1
- package/dist/components/sidebar.js +4 -6
- package/dist/components/tabs.js +1 -1
- package/dist/components/text.js +1 -1
- package/dist/components/typography.js +1 -1
- package/nginx.conf +17 -0
- package/package.json +30 -11
- package/public/favicon.ico +0 -0
- package/public/index.html +1 -1
- package/src/App.js +85 -30
- package/src/examples/Navbar.js +1 -1
- package/src/lib/assets/beem.jpeg +0 -0
- package/src/lib/assets/css/sidebar.css +12 -0
- package/src/lib/components/{Accordion.js → Accordion/Accordion.js} +6 -5
- package/src/lib/components/Accordion/Accordion.stories.js +63 -0
- package/src/lib/components/{avatars.js → Avatars/avatars.js} +27 -9
- package/src/lib/components/Avatars/avatars.stories.js +45 -0
- package/src/lib/components/Buttons/Stories/basicbutton.stories.js +51 -0
- package/src/lib/components/Buttons/Stories/buttonAlertIcons.stories.js +42 -0
- package/src/lib/components/Buttons/Stories/buttonIconsOnly.stories.js +49 -0
- package/src/lib/components/{buttonAlertIcons.js → Buttons/buttonAlertIcons.js} +20 -9
- package/src/lib/components/Buttons/buttonDropdown copy.js +147 -0
- package/src/lib/components/Buttons/buttonDropdown.js +13 -0
- package/src/lib/components/{buttonIconsOnly.js → Buttons/buttonIconsOnly.js} +13 -3
- package/src/lib/components/{buttons.js → Buttons/buttons.js} +14 -14
- package/src/lib/components/Cards/cards.js +37 -0
- package/src/lib/components/Cards/cards.stories.js +50 -0
- package/src/lib/components/ChatBody/chatBody.js +145 -0
- package/src/lib/components/ChatBody/chatBody.stories.js +48 -0
- package/src/lib/components/ChatHeader/chatHeader.js +16 -0
- package/src/lib/components/ChatHeader/chatHeader.stories.js +19 -0
- package/src/lib/components/ContactCards/contactCards.js +58 -0
- package/src/lib/components/ContactCards/contactCards.stories.js +34 -0
- package/src/lib/components/InfoTab/infoTab.js +28 -0
- package/src/lib/components/InfoTab/infoTab.stories.js +47 -0
- package/src/lib/components/Lists/listBox.js +34 -0
- package/src/lib/components/Lists/listBox.stories.js +47 -0
- package/src/lib/components/Lists/listHeader.stories.js +36 -0
- package/src/lib/components/Lists/listheader.js +17 -11
- package/src/lib/components/Lists/rowLabels.js +47 -16
- package/src/lib/components/Lists/rowLabels.stories.js +59 -0
- package/src/lib/components/{loaders.js → Loader/loader.js} +18 -7
- package/src/lib/components/Loader/loader.stories.js +30 -0
- package/src/lib/components/MainWrapper/index.js +7 -0
- package/src/lib/components/MessageCounter/MessageCounter.stories.js +35 -0
- package/src/lib/components/MessageCounter/messageCounter.js +42 -0
- package/src/lib/components/Modals/modal copy.js +159 -0
- package/src/lib/components/Modals/modal.js +152 -0
- package/src/lib/components/Modals/modals.stories.js +82 -0
- package/src/lib/components/{infoNote.js → NoteBar/noteBar.js} +24 -25
- package/src/lib/components/NoteBar/noteBar.stories.js +40 -0
- package/src/lib/components/PerformanceIndicator/performaceIndicator.stories.js +40 -0
- package/src/lib/components/PerformanceIndicator/performanceIndicator.js +56 -0
- package/src/lib/components/Pills/pills.js +91 -0
- package/src/lib/components/Pills/pills.stories.js +74 -0
- package/src/lib/components/{progressbar.js → ProgressBar/progressbar.js} +8 -1
- package/src/lib/components/ProgressBar/progressbar.stories.js +26 -0
- package/src/lib/components/{Link.js → RouteLink/link.js} +5 -4
- package/src/lib/components/RouteLink/link.stories.js +21 -0
- package/src/lib/components/Tabs/tabs.js +84 -0
- package/src/lib/components/Tabs/tabs.stories.js +37 -0
- package/src/lib/components/breakpoints.js +11 -0
- package/src/lib/components/colors.js +2 -0
- package/src/lib/components/dropdownButton.js +2 -2
- package/src/lib/components/example.js +30 -0
- package/src/lib/components/iconStyles.js +44 -101
- package/src/lib/components/index-copy.js +468 -0
- package/src/lib/components/index.js +50 -446
- package/src/lib/components/input.js +8 -2
- package/src/lib/components/sidebar.js +4 -4
- package/storybook-static/0.00c62ec79c260aedbb98.manager.bundle.js +2 -0
- package/storybook-static/0.00c62ec79c260aedbb98.manager.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/0.96c45dd8.iframe.bundle.js +1 -0
- package/storybook-static/1.dc6acfa9.iframe.bundle.js +3 -0
- package/storybook-static/1.dc6acfa9.iframe.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/1.dc6acfa9.iframe.bundle.js.map +1 -0
- package/storybook-static/1.dc7dcdaec2def2f224fd.manager.bundle.js +1 -0
- package/storybook-static/2.24353ddc.iframe.bundle.js +1 -0
- package/storybook-static/3.8bb2173c.iframe.bundle.js +1 -0
- package/storybook-static/5.0779e3847d325dece216.manager.bundle.js +1 -0
- package/storybook-static/6.8bd405c2576206749a16.manager.bundle.js +2 -0
- package/storybook-static/6.8bd405c2576206749a16.manager.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/7.9d4ba19cf58425e7ff0d.manager.bundle.js +1 -0
- package/storybook-static/7.f0cfc757.iframe.bundle.js +1 -0
- package/storybook-static/8.91de97de.iframe.bundle.js +3 -0
- package/storybook-static/8.91de97de.iframe.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/8.91de97de.iframe.bundle.js.map +1 -0
- package/storybook-static/8.b4e9ec0ec7648e02a923.manager.bundle.js +1 -0
- package/storybook-static/9.40ec65d6.iframe.bundle.js +1 -0
- package/storybook-static/asset-manifest.json +30 -0
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/iframe.html +348 -0
- package/storybook-static/index.html +110 -0
- package/storybook-static/main.3c8d8027.iframe.bundle.js +1 -0
- package/storybook-static/main.3e5804fe56d1f580b088.manager.bundle.js +1 -0
- package/storybook-static/runtime~main.d3a18d6a.iframe.bundle.js +1 -0
- package/storybook-static/runtime~main.ff106120648356c6069d.manager.bundle.js +1 -0
- package/storybook-static/static/css/main.b44a190d.chunk.css +4 -0
- package/storybook-static/static/css/main.b44a190d.chunk.css.map +1 -0
- package/storybook-static/static/media/OpenSans-Regular.1b0809d5.ttf +0 -0
- package/storybook-static/static/media/PoppinsBold.1eae2d48.woff2 +0 -0
- package/storybook-static/static/media/PoppinsBold.53ff6749.eot +0 -0
- package/storybook-static/static/media/PoppinsBold.53ff971f.ttf +0 -0
- package/storybook-static/static/media/PoppinsBold.850fc4f3.svg +3066 -0
- package/storybook-static/static/media/PoppinsBold.b33c148b.woff +0 -0
- package/storybook-static/static/media/PoppinsMedium.0ba26f6c.woff +0 -0
- package/storybook-static/static/media/PoppinsMedium.49b46ace.eot +0 -0
- package/storybook-static/static/media/PoppinsMedium.57a99fa8.woff2 +0 -0
- package/storybook-static/static/media/PoppinsMedium.b7e43707.svg +3103 -0
- package/storybook-static/static/media/PoppinsMedium.c98dddbd.ttf +0 -0
- package/storybook-static/static/media/PoppinsRegular.13b9af9c.eot +0 -0
- package/storybook-static/static/media/PoppinsRegular.43e9b50d.svg +3138 -0
- package/storybook-static/static/media/PoppinsRegular.4a4d5420.woff +0 -0
- package/storybook-static/static/media/PoppinsRegular.9a7cc7ec.woff2 +0 -0
- package/storybook-static/static/media/PoppinsRegular.e1bc9021.ttf +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.5692c77f.ttf +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.80138c67.woff +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.c442695a.eot +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.e1948d56.svg +3098 -0
- package/storybook-static/static/media/PoppinsSemiBold.f27050e2.woff2 +0 -0
- package/storybook-static/static/media/logo-blue.bfc5ba6d.png +0 -0
- package/storybook-static/vendors~main.1750028c2d68e574fb1d.manager.bundle.js +2 -0
- package/storybook-static/vendors~main.1750028c2d68e574fb1d.manager.bundle.js.LICENSE.txt +104 -0
- package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js +3 -0
- package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js.LICENSE.txt +122 -0
- package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js.map +1 -0
- package/dist/assets/content_copy_black.svg +0 -1
- package/dist/assets/profile-pic.jpg +0 -0
- package/dist/components/Accordicon.js +0 -51
- package/dist/components/CustomerInfo/customerInfo.js +0 -89
- package/dist/components/CustomerInfo/customerInfoBar.js +0 -24
- package/dist/components/CustomerInfo/infoAccordion.js +0 -78
- package/dist/components/CustomerInfo/labelsInfo.js +0 -37
- package/dist/components/CustomerInfo/notesInfo.js +0 -39
- package/dist/components/Modals/modalBody.js +0 -61
- package/dist/components/Modals/noteModalFooter.js +0 -24
- package/dist/components/Modals/noteModalHeader.js +0 -93
- package/dist/components/Reports/cards.js +0 -62
- package/dist/components/Reports/charts.js +0 -70
- package/dist/components/Reports/infoHeader.js +0 -65
- package/dist/components/Reports/reportsBody.js +0 -28
- package/dist/components/Reports/title.js +0 -28
- package/dist/components/performanceIndicator.js +0 -41
- package/dist/components/pills.js +0 -73
- package/src/App1.js +0 -229
- package/src/CHAT.js +0 -170
- package/src/Complete.js +0 -48
- package/src/CreateSegments.js +0 -48
- package/src/FileUploadSFL.js +0 -110
- package/src/examples/CustomerInfo.js +0 -248
- package/src/lib/assets/content_copy_black.svg +0 -1
- package/src/lib/assets/profile-pic.jpg +0 -0
- package/src/lib/components/Accordicon.js +0 -43
- package/src/lib/components/CustomerInfo/customerInfo.js +0 -91
- package/src/lib/components/CustomerInfo/customerInfoBar.js +0 -23
- package/src/lib/components/CustomerInfo/infoAccordion.js +0 -96
- package/src/lib/components/CustomerInfo/labelsInfo.js +0 -37
- package/src/lib/components/CustomerInfo/notesInfo.js +0 -61
- package/src/lib/components/Modals/modalBody.js +0 -66
- package/src/lib/components/Modals/noteModalBody.js +0 -10
- package/src/lib/components/Modals/noteModalFooter.js +0 -16
- package/src/lib/components/Modals/noteModalHeader.js +0 -103
- package/src/lib/components/Reports/buttons.js +0 -5
- package/src/lib/components/Reports/cards.js +0 -78
- package/src/lib/components/Reports/charts.js +0 -79
- package/src/lib/components/Reports/infoHeader.js +0 -63
- package/src/lib/components/Reports/reportsBody.js +0 -29
- package/src/lib/components/Reports/title.js +0 -19
- package/src/lib/components/performanceIndicator.js +0 -27
- package/src/lib/components/pills.js +0 -65
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import React, { useState } from "react";
|
|
2
|
+
import Proptypes from "prop-types";
|
|
3
|
+
// eslint-disable-next-line no-unused-vars
|
|
4
|
+
import { Clear, KeyboardArrowDown } from "@material-ui/icons";
|
|
5
|
+
import styled from "styled-components";
|
|
6
|
+
import { BmAvatar } from "../Avatars/avatars";
|
|
7
|
+
import { BmGrey100 } from "../colors";
|
|
8
|
+
import { BmIcons } from "../iconStyles";
|
|
9
|
+
import { p } from "../text";
|
|
10
|
+
|
|
11
|
+
export const BmPillWrapper = styled.div`
|
|
12
|
+
display: ${({ clicked }) => {
|
|
13
|
+
if (clicked) {
|
|
14
|
+
return "flex";
|
|
15
|
+
}
|
|
16
|
+
return "none";
|
|
17
|
+
}};
|
|
18
|
+
flex-direction: row;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
align-items: center;
|
|
21
|
+
padding: 0.214rem 0.571rem;
|
|
22
|
+
background: ${BmGrey100};
|
|
23
|
+
border-radius: 0.25rem;
|
|
24
|
+
${({ label, color }) =>
|
|
25
|
+
label &&
|
|
26
|
+
`
|
|
27
|
+
${p}
|
|
28
|
+
text-transform: uppercase;
|
|
29
|
+
color: ${color};
|
|
30
|
+
`}
|
|
31
|
+
> * {
|
|
32
|
+
margin-right: 0.25rem;
|
|
33
|
+
}
|
|
34
|
+
`;
|
|
35
|
+
|
|
36
|
+
export const BmPill = ({
|
|
37
|
+
type,
|
|
38
|
+
icon,
|
|
39
|
+
avatarIcon,
|
|
40
|
+
size,
|
|
41
|
+
avatarSize,
|
|
42
|
+
color,
|
|
43
|
+
label,
|
|
44
|
+
onDelete,
|
|
45
|
+
deleteIcon,
|
|
46
|
+
...rest
|
|
47
|
+
}) => {
|
|
48
|
+
const [clicked, setClicked] = useState(true);
|
|
49
|
+
return (
|
|
50
|
+
<>
|
|
51
|
+
<BmPillWrapper
|
|
52
|
+
label={label}
|
|
53
|
+
onDelete={onDelete}
|
|
54
|
+
onClick={() => (onDelete ? setClicked(false) : setClicked(true))}
|
|
55
|
+
color={color}
|
|
56
|
+
clicked={clicked}
|
|
57
|
+
{...rest}
|
|
58
|
+
>
|
|
59
|
+
{icon && <BmIcons size={size || "xsmall"} icon={icon} color={color} />}
|
|
60
|
+
{avatarIcon && (
|
|
61
|
+
<BmAvatar
|
|
62
|
+
user={avatarIcon}
|
|
63
|
+
size={avatarSize || "xsmall"}
|
|
64
|
+
type="circle"
|
|
65
|
+
color={color}
|
|
66
|
+
/>
|
|
67
|
+
)}
|
|
68
|
+
{label}
|
|
69
|
+
{onDelete && (
|
|
70
|
+
<BmIcons
|
|
71
|
+
style={{ margin: "0rem 0rem 0rem 1rem" }}
|
|
72
|
+
size={size || "xsmall"}
|
|
73
|
+
icon={deleteIcon ? deleteIcon : <Clear />}
|
|
74
|
+
color={color || "black"}
|
|
75
|
+
/>
|
|
76
|
+
)}
|
|
77
|
+
</BmPillWrapper>
|
|
78
|
+
</>
|
|
79
|
+
);
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
BmPill.propTypes = {
|
|
83
|
+
icon: Proptypes.object,
|
|
84
|
+
avatarIcon: Proptypes.object,
|
|
85
|
+
size: Proptypes.string,
|
|
86
|
+
avatarSize: Proptypes.string,
|
|
87
|
+
color: Proptypes.string,
|
|
88
|
+
label: Proptypes.string,
|
|
89
|
+
onDelete: Proptypes.object,
|
|
90
|
+
deleteIcon: Proptypes.object,
|
|
91
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/* eslint-disable import/no-anonymous-default-export */
|
|
2
|
+
import { Delete, Favorite, Person } from "@material-ui/icons";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { BmPrimaryBlue } from "../colors";
|
|
5
|
+
import { BmPill } from "./pills";
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
component: BmPill,
|
|
9
|
+
title: "components/Pills",
|
|
10
|
+
argTypes: {
|
|
11
|
+
icon: {
|
|
12
|
+
description: "Material-UI icon(optional)",
|
|
13
|
+
defaultValue: { summary: undefined },
|
|
14
|
+
},
|
|
15
|
+
avatarIcon: {
|
|
16
|
+
description: "Material-UI icon(optional)",
|
|
17
|
+
defaultValue: { summary: undefined },
|
|
18
|
+
},
|
|
19
|
+
size: {
|
|
20
|
+
options: ["xsmall", "small", "medium", "large", "xlarge"],
|
|
21
|
+
control: { type: "select" },
|
|
22
|
+
description: "Size of the Icon (Can also be predefined e.g. 10px)",
|
|
23
|
+
defaultValue: { summary: "xsmall" },
|
|
24
|
+
},
|
|
25
|
+
avatarSize: {
|
|
26
|
+
options: ["xsmall", "small", "medium", "large", "xlarge"],
|
|
27
|
+
control: { type: "select" },
|
|
28
|
+
description: "Size of the AvatarIcon (Can also be predefined e.g. 10px)",
|
|
29
|
+
defaultValue: { summary: "xsmall" },
|
|
30
|
+
},
|
|
31
|
+
label: {
|
|
32
|
+
description: "Pill label in uppercase",
|
|
33
|
+
defaultValue: { summary: "undefined" },
|
|
34
|
+
},
|
|
35
|
+
color: {
|
|
36
|
+
description: "Color of Pill ",
|
|
37
|
+
defaultValue: { summary: "black" },
|
|
38
|
+
},
|
|
39
|
+
onDelete: {
|
|
40
|
+
description: "Handles Deleting Pill",
|
|
41
|
+
defaultValue: { summary: undefined },
|
|
42
|
+
},
|
|
43
|
+
deleteIcon: {
|
|
44
|
+
description: "Material-UI icon (Used only when OnDelete is present)",
|
|
45
|
+
defaultValue: { summary: undefined },
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const MainPill = (args) => <BmPill {...args} />;
|
|
51
|
+
|
|
52
|
+
export const BasicPill = MainPill.bind({});
|
|
53
|
+
BasicPill.args = {
|
|
54
|
+
icon: <Favorite />,
|
|
55
|
+
label: "label",
|
|
56
|
+
color: undefined,
|
|
57
|
+
onDelete: undefined,
|
|
58
|
+
deleteIcon: undefined,
|
|
59
|
+
avatarIcon: undefined,
|
|
60
|
+
avatarSize: undefined,
|
|
61
|
+
size: undefined,
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const CustomPill = MainPill.bind({});
|
|
65
|
+
CustomPill.args = {
|
|
66
|
+
icon: undefined,
|
|
67
|
+
label: "label",
|
|
68
|
+
color: undefined,
|
|
69
|
+
onDelete: true,
|
|
70
|
+
deleteIcon: <Delete />,
|
|
71
|
+
avatarIcon: <Person />,
|
|
72
|
+
avatarSize: undefined,
|
|
73
|
+
size: undefined,
|
|
74
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import styled from "styled-components";
|
|
3
|
-
import
|
|
3
|
+
import Proptypes from 'prop-types';
|
|
4
|
+
import { BmGrey100, BmPrimaryBlue } from "../colors";
|
|
4
5
|
|
|
5
6
|
const Container = styled.div`
|
|
6
7
|
height: 0.75rem;
|
|
@@ -34,3 +35,9 @@ export const BmProgressBar = (props) => {
|
|
|
34
35
|
</Container>
|
|
35
36
|
);
|
|
36
37
|
};
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
BmProgressBar.propTypes = {
|
|
41
|
+
value: Proptypes.string.isRequired,
|
|
42
|
+
color: Proptypes.string,
|
|
43
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* eslint-disable import/no-anonymous-default-export */
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { BmProgressBar } from "./progressbar";
|
|
4
|
+
import { Home } from "@material-ui/icons";
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
component: BmProgressBar,
|
|
8
|
+
title: "components/ProgressBar",
|
|
9
|
+
argTypes: {
|
|
10
|
+
value: {
|
|
11
|
+
control: { type: "text" },
|
|
12
|
+
description: "Progress value",
|
|
13
|
+
},
|
|
14
|
+
color: {
|
|
15
|
+
control: { type: "text" },
|
|
16
|
+
description: "Color of the progress bar",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const MainProgressBar = (args) => <BmProgressBar {...args} />;
|
|
22
|
+
|
|
23
|
+
export const ProgressBar = MainProgressBar.bind({});
|
|
24
|
+
ProgressBar.args = {
|
|
25
|
+
value: "50",
|
|
26
|
+
};
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
2
|
import { Link } from "react-router-dom";
|
|
3
|
-
import {
|
|
4
|
-
import { p } from "../
|
|
3
|
+
import { BmPrimaryBlue } from "../colors";
|
|
4
|
+
import { p } from "../text";
|
|
5
5
|
|
|
6
6
|
export const BmRouteLink = styled(Link)`
|
|
7
7
|
${p}
|
|
8
|
-
color: ${
|
|
8
|
+
color: ${(props) => (props.color ? props.color : `${BmPrimaryBlue} `)};
|
|
9
9
|
text-decoration: none;
|
|
10
10
|
&:hover,
|
|
11
11
|
&:focus,
|
|
12
12
|
&:active {
|
|
13
|
-
color: ${
|
|
13
|
+
${'' /* color: ${(props) =>
|
|
14
|
+
darken(0.1, props.color ? props.color : `${BmPrimaryBlue} `)} !important; */}
|
|
14
15
|
font-weight: 600;
|
|
15
16
|
&:before {
|
|
16
17
|
font-weight: normal;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* eslint-disable import/no-anonymous-default-export */
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { BrowserRouter, Switch } from "react-router-dom";
|
|
4
|
+
import { BmRouteLink } from "./link";
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
component: BmRouteLink,
|
|
8
|
+
title: "components/RouteLink",
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const SampleLink = () => {
|
|
12
|
+
return (
|
|
13
|
+
<>
|
|
14
|
+
<BrowserRouter>
|
|
15
|
+
<Switch>
|
|
16
|
+
<BmRouteLink to="#">Click Me!</BmRouteLink>
|
|
17
|
+
</Switch>
|
|
18
|
+
</BrowserRouter>
|
|
19
|
+
</>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import styled from "styled-components";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import { BmGrey400, BmPrimaryBlue, BmPrimaryWhite } from "../colors";
|
|
5
|
+
import { BmIcons } from "../iconStyles";
|
|
6
|
+
|
|
7
|
+
const BmTabWrapper = styled.div`
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: row;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
align-items: center;
|
|
12
|
+
padding: 0.714rem 1.714rem;
|
|
13
|
+
background: ${BmPrimaryWhite};
|
|
14
|
+
box-shadow: ${({ state }) => {
|
|
15
|
+
if (state === "active") {
|
|
16
|
+
return `inset 0px -3px 0px ${BmPrimaryBlue}`;
|
|
17
|
+
}
|
|
18
|
+
if (state === "inactive") {
|
|
19
|
+
return `inset 0px -3px 0px ${BmGrey400}`;
|
|
20
|
+
}
|
|
21
|
+
return "none";
|
|
22
|
+
}};
|
|
23
|
+
> *:not(:last-child) {
|
|
24
|
+
margin-right: 0.5rem;
|
|
25
|
+
}
|
|
26
|
+
${({ color, children, disabled }) =>
|
|
27
|
+
children && disabled
|
|
28
|
+
? `
|
|
29
|
+
> * {
|
|
30
|
+
color: ${BmGrey400};
|
|
31
|
+
}
|
|
32
|
+
`
|
|
33
|
+
: `
|
|
34
|
+
> * {
|
|
35
|
+
color: ${color};
|
|
36
|
+
}
|
|
37
|
+
`}
|
|
38
|
+
`;
|
|
39
|
+
|
|
40
|
+
export const BmTab = ({
|
|
41
|
+
leadingIcon,
|
|
42
|
+
trailingIcon,
|
|
43
|
+
children,
|
|
44
|
+
size,
|
|
45
|
+
color,
|
|
46
|
+
icon,
|
|
47
|
+
disabled,
|
|
48
|
+
...rest
|
|
49
|
+
}) => {
|
|
50
|
+
return (
|
|
51
|
+
<BmTabWrapper
|
|
52
|
+
leadingIcon={leadingIcon}
|
|
53
|
+
trailingIcon={trailingIcon}
|
|
54
|
+
color={color}
|
|
55
|
+
disabled={disabled}
|
|
56
|
+
{...rest}
|
|
57
|
+
>
|
|
58
|
+
{leadingIcon && (
|
|
59
|
+
<BmIcons
|
|
60
|
+
icon={leadingIcon}
|
|
61
|
+
size={size || 'large'}
|
|
62
|
+
color={disabled ? `${BmGrey400}` : color}
|
|
63
|
+
/>
|
|
64
|
+
)}
|
|
65
|
+
{children}
|
|
66
|
+
{trailingIcon && (
|
|
67
|
+
<BmIcons
|
|
68
|
+
icon={trailingIcon}
|
|
69
|
+
size={size || 'large'}
|
|
70
|
+
color={disabled ? `${BmGrey400}` : color}
|
|
71
|
+
/>
|
|
72
|
+
)}
|
|
73
|
+
</BmTabWrapper>
|
|
74
|
+
);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
BmTab.propTypes = {
|
|
78
|
+
children: PropTypes.object,
|
|
79
|
+
trailingIcon: PropTypes.node,
|
|
80
|
+
leadingIcon: PropTypes.node,
|
|
81
|
+
state: PropTypes.string,
|
|
82
|
+
color: PropTypes.string,
|
|
83
|
+
size: PropTypes.string,
|
|
84
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* eslint-disable import/no-anonymous-default-export */
|
|
2
|
+
import { Favorite, KeyboardArrowDown } from "@material-ui/icons";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { BmTab } from "./tabs";
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
component: BmTab,
|
|
8
|
+
title: "components/Tabs",
|
|
9
|
+
argTypes: {
|
|
10
|
+
color: {
|
|
11
|
+
control: { type: "text" },
|
|
12
|
+
description: "Color of the Icons and Text",
|
|
13
|
+
},
|
|
14
|
+
state: {
|
|
15
|
+
options: ["active", "inactive"],
|
|
16
|
+
control: { type: "select" },
|
|
17
|
+
description: "State of the Tabs (optional)",
|
|
18
|
+
},
|
|
19
|
+
size: {
|
|
20
|
+
options: ["small", "medium", "large"],
|
|
21
|
+
control: { type: "select" },
|
|
22
|
+
description: "Size of the icons",
|
|
23
|
+
defaultValue: { summary: "large" },
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const MainTab = (args) => <BmTab {...args} />;
|
|
29
|
+
|
|
30
|
+
export const Tabs = MainTab.bind({});
|
|
31
|
+
Tabs.args = {
|
|
32
|
+
children: <h3>Tabs</h3>,
|
|
33
|
+
leadingIcon: <Favorite />,
|
|
34
|
+
trailingIcon: <KeyboardArrowDown />,
|
|
35
|
+
disabled: false,
|
|
36
|
+
state: 'active',
|
|
37
|
+
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { KeyboardArrowDown } from "@material-ui/icons";
|
|
3
3
|
import styled from "styled-components";
|
|
4
|
-
import { BmBtnIcon } from "
|
|
5
|
-
import { BmButton } from "
|
|
4
|
+
import { BmBtnIcon } from "../components/Buttons/buttonIconsOnly";
|
|
5
|
+
import { BmButton } from "../components/Buttons/buttons";
|
|
6
6
|
import {
|
|
7
7
|
BmPrimaryWhite,
|
|
8
8
|
BmPrimaryBlue,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const btnVariants = {
|
|
2
|
+
primary: "primary",
|
|
3
|
+
danger: "danger",
|
|
4
|
+
tertiary: "tertiary",
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
// Variant styles
|
|
8
|
+
const variantStyles = {
|
|
9
|
+
[btnVariants.primary]: {
|
|
10
|
+
background: "#1890ff",
|
|
11
|
+
},
|
|
12
|
+
[btnVariants.danger]: {
|
|
13
|
+
background: "#f81d22",
|
|
14
|
+
},
|
|
15
|
+
[btnVariants.tertiary]: {
|
|
16
|
+
background: "#fff",
|
|
17
|
+
color: "#000",
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
function BaseButton({ variant, ...props }) {
|
|
22
|
+
const btnStyle = {
|
|
23
|
+
color: "#fff",
|
|
24
|
+
border: "none",
|
|
25
|
+
padding: "5px 10px",
|
|
26
|
+
...variantStyles[variant],
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
return <button {...props} style={btnStyle} />;
|
|
30
|
+
}
|