beem-component 1.8.1 → 1.8.3

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.
Files changed (111) hide show
  1. package/.babelrc +17 -0
  2. package/.eslintrc +16 -27
  3. package/.prettierrc +3 -2
  4. package/dist/components/Accordion/Accordion.js +14 -8
  5. package/dist/components/Avatars/avatars.js +3 -3
  6. package/dist/components/BannerCard/bannerCards.js +8 -6
  7. package/dist/components/ButtonGroup/buttonGroup.js +37 -0
  8. package/dist/components/Buttons/buttonAlertIcons.js +3 -3
  9. package/dist/components/Buttons/buttonDropdown copy.js +51 -50
  10. package/dist/components/Buttons/buttonDropdown.js +2 -2
  11. package/dist/components/Buttons/buttonIconsOnly.js +6 -4
  12. package/dist/components/Buttons/buttons.js +12 -6
  13. package/dist/components/Cards/cards.js +12 -6
  14. package/dist/components/ChatComponents/ChatBody/FeedPostComments.js +15 -7
  15. package/dist/components/ChatComponents/ChatBody/chatBody.js +33 -13
  16. package/dist/components/ChatComponents/ChatBody/sessionDetails.js +3 -3
  17. package/dist/components/ChatComponents/ChatBody/sessionTimeline.js +6 -4
  18. package/dist/components/ChatComponents/ChatHeader/chatHeader.js +3 -3
  19. package/dist/components/ChatComponents/ColorPicker/colorPicker.js +3 -3
  20. package/dist/components/ChatComponents/ContactCards/contactCards.js +14 -8
  21. package/dist/components/ChatComponents/FormAccordion/FormAccordion.js +12 -6
  22. package/dist/components/ChatComponents/InfoTab/infoTab.js +9 -5
  23. package/dist/components/ChatComponents/LabelAccordion/LabelAccordion.js +3 -3
  24. package/dist/components/ChatComponents/NoteAccordion/NoteAccordion.js +9 -5
  25. package/dist/components/Chats/chat.js +47 -29
  26. package/dist/components/Chats/chatInput.js +16 -8
  27. package/dist/components/Chats/chatwrapper.js +18 -8
  28. package/dist/components/Checkbox/checkboxToggler.js +12 -6
  29. package/dist/components/Checkbox/checkboxToggler.stories.js +2 -2
  30. package/dist/components/InputDatePicker.js +53 -0
  31. package/dist/components/Jumbotron/Jumbotron.js +35 -0
  32. package/dist/components/Jumbotron/Jumbotron.stories.js +32 -0
  33. package/dist/components/Lists/listBox.js +3 -3
  34. package/dist/components/Lists/listBox.stories.js +2 -2
  35. package/dist/components/Lists/listheader.js +3 -3
  36. package/dist/components/Lists/rowLabels.js +12 -6
  37. package/dist/components/Lists/rowLabels.stories.js +4 -1
  38. package/dist/components/Loader/loader.js +3 -3
  39. package/dist/components/MainWrapper/index.js +3 -3
  40. package/dist/components/MessageCounter/messageCounter.js +3 -3
  41. package/dist/components/Modals/modal.js +33 -21
  42. package/dist/components/Modals/modals.stories.js +2 -2
  43. package/dist/components/NoteBar/noteBar.js +5 -5
  44. package/dist/components/PaymentBox/paymentBox.js +12 -6
  45. package/dist/components/PerformanceIndicator/performanceIndicator.js +3 -3
  46. package/dist/components/Pills/pills.js +5 -5
  47. package/dist/components/ProfileIcon/ProfileIcon.js +12 -6
  48. package/dist/components/ProgressBar/progressbar.js +12 -6
  49. package/dist/components/ProgressRing/progressRing.js +14 -8
  50. package/dist/components/RouteLink/link.js +3 -3
  51. package/dist/components/ScrollBar/scrollBar.js +9 -5
  52. package/dist/components/SuperFluid/Content/index.js +3 -3
  53. package/dist/components/SuperFluid/ContentTitle.js/index.js +12 -6
  54. package/dist/components/SuperFluid/SegmentCard/index.js +20 -8
  55. package/dist/components/Tabs/tabs.js +3 -3
  56. package/dist/components/Tags/tags.js +5 -5
  57. package/dist/components/chatHeader.js +15 -7
  58. package/dist/components/checkbox.js +15 -7
  59. package/dist/components/contacts.js +33 -13
  60. package/dist/components/dropdown.js +25 -13
  61. package/dist/components/dropdownButton.js +9 -5
  62. package/dist/components/dropdownItems.js +22 -10
  63. package/dist/components/examples/App.js +8 -8
  64. package/dist/components/examples/chatBodyExample.js +1 -1
  65. package/dist/components/examples/selectExample.js +5 -5
  66. package/dist/components/globalStyles.js +1 -3
  67. package/dist/components/index.js +14 -0
  68. package/dist/components/input.js +9 -5
  69. package/dist/components/logo.js +3 -3
  70. package/dist/components/navbar.js +23 -9
  71. package/dist/components/search.js +17 -12
  72. package/dist/components/shadow.js +1 -1
  73. package/dist/components/wrapper.js +6 -4
  74. package/package.json +31 -16
  75. package/src/App.js +35 -253
  76. package/src/examples/AlertIcons.js +10 -5
  77. package/src/examples/Avatars.js +3 -2
  78. package/src/examples/Buttons.js +7 -10
  79. package/src/examples/Chat.js +9 -9
  80. package/src/examples/Input.js +79 -70
  81. package/src/examples/Logo.js +2 -2
  82. package/src/examples/Navbar.js +12 -12
  83. package/src/examples/Search.js +3 -2
  84. package/src/examples/SideBar.js +11 -11
  85. package/src/examples/Tags.js +3 -3
  86. package/src/lib/components/ButtonGroup/buttonGroup.js +38 -0
  87. package/src/lib/components/Buttons/buttonDropdown copy.js +51 -54
  88. package/src/lib/components/Buttons/buttonDropdown.js +6 -6
  89. package/src/lib/components/Chats/chat.js +23 -23
  90. package/src/lib/components/Chats/chatInput.js +8 -8
  91. package/src/lib/components/Chats/chatwrapper.js +2 -2
  92. package/src/lib/components/Checkbox/checkboxToggler.stories.js +0 -1
  93. package/src/lib/components/InputDatePicker.js +45 -0
  94. package/src/lib/components/Jumbotron/Jumbotron.js +54 -0
  95. package/src/lib/components/Jumbotron/Jumbotron.stories.js +31 -0
  96. package/src/lib/components/chatHeader.js +8 -3
  97. package/src/lib/components/contacts.js +3 -3
  98. package/src/lib/components/dropdown.js +7 -7
  99. package/src/lib/components/dropdownItems.js +6 -6
  100. package/src/lib/components/examples/App.js +53 -43
  101. package/src/lib/components/examples/InfoAccordion.js +6 -5
  102. package/src/lib/components/examples/chatBodyExample.js +5 -5
  103. package/src/lib/components/examples/selectExample.js +7 -7
  104. package/src/lib/components/index-copy.js +49 -49
  105. package/src/lib/components/index.js +4 -0
  106. package/src/lib/components/logo.js +2 -2
  107. package/src/lib/components/navbar.js +5 -5
  108. package/src/lib/components/search.js +10 -11
  109. package/src/lib/components/shadow.js +1 -1
  110. package/src/lib/components/wrapper.js +1 -2
  111. package/babel.config.js +0 -11
@@ -1,14 +1,14 @@
1
- import React from "react";
2
- import styled from "styled-components";
1
+ import React from 'react';
2
+ import styled from 'styled-components';
3
+ import { Send } from '@material-ui/icons';
3
4
  import {
4
5
  BmGrey400,
5
6
  BmGrey50,
6
7
  BmPrimaryWhite,
7
8
  BmSecondaryGrey,
8
- } from "../colors";
9
- import { BmEmojiIcon } from "../iconStyles";
10
- import { Send } from "@material-ui/icons";
11
- import { BmInputField } from "../input";
9
+ } from '../colors';
10
+ import { BmEmojiIcon } from '../iconStyles';
11
+ import { BmInputField } from '../input';
12
12
 
13
13
  // Main wrapper
14
14
  export const BmMessageTab = styled.div`
@@ -49,13 +49,13 @@ export const BmSend = (props) => {
49
49
  };
50
50
 
51
51
  // Div for attachments
52
- export const BmAttachment = styled("div")`
52
+ export const BmAttachment = styled('div')`
53
53
  justify-content: center;
54
54
  padding-right: 1.143rem !important;
55
55
  `;
56
56
 
57
57
  // Div for message input
58
- export const BmMessage = styled("div")`
58
+ export const BmMessage = styled('div')`
59
59
  display: flex;
60
60
  flex-direction: row;
61
61
  align-items: center;
@@ -1,5 +1,5 @@
1
- import styled from "styled-components";
2
- import { BmBgGreyBlue, BmGrey400 } from "../colors";
1
+ import styled from 'styled-components';
2
+ import { BmBgGreyBlue, BmGrey400 } from '../colors';
3
3
 
4
4
  // Main wrapper
5
5
  export const Main = styled.div`
@@ -61,4 +61,3 @@ export const hiddenToggleLabel = () => {
61
61
  />
62
62
  );
63
63
  };
64
-
@@ -0,0 +1,45 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+
4
+ const InputDatePicker = ({ value, placeholder, onClick }) => (
5
+ <>
6
+ <input
7
+ type="text"
8
+ className="form-control"
9
+ placeholder={placeholder}
10
+ value={value}
11
+ onFocus={onClick}
12
+ />
13
+ <i className="icon-schedule-date form-control-icon" />
14
+ </>
15
+ );
16
+
17
+ InputDatePicker.propTypes = {
18
+ value: PropTypes.string,
19
+ placeholder: PropTypes.string,
20
+ onClick: PropTypes.func.isRequired,
21
+ };
22
+
23
+ InputDatePicker.defaultProps = {
24
+ value: undefined,
25
+ placeholder: undefined,
26
+ };
27
+
28
+ export const ScheduleDateInput = ({ onClick, value, placeholder }) => (
29
+ <button
30
+ type="button"
31
+ aria-label="button"
32
+ className="btn btn-warning my-1 mr-2"
33
+ onClick={onClick}
34
+ >
35
+ {value || placeholder} <i className="fa fa-calendar-alt" />
36
+ </button>
37
+ );
38
+
39
+ ScheduleDateInput.propTypes = {
40
+ value: PropTypes.string.isRequired,
41
+ onClick: PropTypes.func.isRequired,
42
+ placeholder: PropTypes.string.isRequired,
43
+ };
44
+
45
+ export default InputDatePicker;
@@ -0,0 +1,54 @@
1
+ /* eslint-disable import/prefer-default-export */
2
+ /* eslint-disable react/jsx-props-no-spreading */
3
+ import styled from 'styled-components';
4
+ import { BmPrimaryBlue, BmGrey200 } from '../colors';
5
+
6
+ const Title = styled.div`
7
+ display: flex;
8
+ justify-content: space-between;
9
+ padding: 1rem 0.5rem;
10
+ background: ${(props) => (props.bgColor ? props.bgColor : BmPrimaryBlue)};
11
+ `;
12
+
13
+ const Body = styled.div`
14
+ display: flex;
15
+ padding: 0.5rem;
16
+ > * {
17
+ display: flex;
18
+ flex-direction: column;
19
+ flex-wrap: wrap;
20
+ overflow-wrap: break-word !important;
21
+ word-wrap: break-word !important;
22
+ flex-grow: grow;
23
+ > *:not(:last-child) {
24
+ margin-bottom: 0.5rem;
25
+ }
26
+ }
27
+ @media all and (max-width: 960px) {
28
+ flex-direction: column;
29
+ }
30
+ `;
31
+
32
+ const BmJumbotron = styled.div`
33
+ display: flex;
34
+ flex-direction: column;
35
+ border: 0.071rem solid ${BmGrey200};
36
+ border-radius: 0.25rem;
37
+ `;
38
+
39
+ const text = styled.div`
40
+ width: 100%;
41
+ `;
42
+ const image = styled.div`
43
+ width: 20%;
44
+ @media all and (max-width: 960px) {
45
+ width: 100%;
46
+ }
47
+ `;
48
+
49
+ BmJumbotron.Title = Title;
50
+ BmJumbotron.Body = Body;
51
+ BmJumbotron.Body.Text = text;
52
+ BmJumbotron.Body.Image = image;
53
+
54
+ export default BmJumbotron;
@@ -0,0 +1,31 @@
1
+ /* eslint-disable import/no-anonymous-default-export */
2
+ import React from 'react';
3
+ import { text } from '@storybook/addon-knobs';
4
+ import BmJumbotron from './Jumbotron';
5
+ import Image from '../../assets/beem.jpeg';
6
+
7
+ export default {
8
+ component: BmJumbotron,
9
+ title: 'components/Jumbotron',
10
+ argTypes: {
11
+ children: {
12
+ description: 'Accordion Title Text',
13
+ defaultValue: { summary: undefined },
14
+ },
15
+ },
16
+ };
17
+ export const BasicJumbotronSample = () => {
18
+ return (
19
+ <div>
20
+ <BmJumbotron>
21
+ <BmJumbotron.Title>
22
+ <h3>{text('children', 'Title')}</h3>
23
+ </BmJumbotron.Title>
24
+ <BmJumbotron.Body.Text>Body Text</BmJumbotron.Body.Text>
25
+ <BmJumbotron.Body.Image>
26
+ <img src={Image} alt="sampleImage" />
27
+ </BmJumbotron.Body.Image>
28
+ </BmJumbotron>
29
+ </div>
30
+ );
31
+ };
@@ -1,5 +1,10 @@
1
- import styled from "styled-components";
2
- import { BmGrey400, BmPrimaryBlack, BmPrimaryWhite, BmSecondaryGrey } from "./colors";
1
+ import styled from 'styled-components';
2
+ import {
3
+ BmGrey400,
4
+ BmPrimaryBlack,
5
+ BmPrimaryWhite,
6
+ BmSecondaryGrey,
7
+ } from './colors';
3
8
 
4
9
  export const BmChatHeaderWrapper = styled.div`
5
10
  display: flex;
@@ -33,6 +38,6 @@ export const BmChatHeader = styled.div`
33
38
  flex-direction: row;
34
39
  justify-content: space-between;
35
40
  align-items: center;
36
- padding : 1.286rem 0rem;
41
+ padding: 1.286rem 0rem;
37
42
  margin: 0rem;
38
43
  `;
@@ -1,11 +1,11 @@
1
- import React from "react";
2
- import styled from "styled-components";
1
+ import React from 'react';
2
+ import styled from 'styled-components';
3
3
  import {
4
4
  BmGrey100,
5
5
  BmPrimaryBlack,
6
6
  BmPrimaryBlue,
7
7
  BmPrimaryWhite,
8
- } from "./colors";
8
+ } from './colors';
9
9
 
10
10
  export const BmContactSideBar = styled.div`
11
11
  display: flex;
@@ -1,14 +1,14 @@
1
- import React, { useState } from "react";
2
- import styled from "styled-components";
3
- import { BmPrimaryWhite, BmSecondaryGrey, BmGrey400 } from "./colors";
4
- import { BmDropdownIcon } from "./iconStyles";
1
+ import React, { useState } from 'react';
2
+ import styled from 'styled-components';
3
+ import { BmPrimaryWhite, BmSecondaryGrey, BmGrey400 } from './colors';
4
+ import { BmDropdownIcon } from './iconStyles';
5
5
 
6
6
  const BmDropdownWrapper = styled.div`
7
7
  display: flex;
8
8
  justify-content: center;
9
9
  align-items: center;
10
10
  position: static;
11
- ${"" /* box-sizing: border-box; */}
11
+ ${'' /* box-sizing: border-box; */}
12
12
  margin: 0rem;
13
13
  padding: 0.5rem 1.143rem;
14
14
  background: ${BmPrimaryWhite};
@@ -80,8 +80,8 @@ export const BmDropdown = ({ ...rest }) => {
80
80
  <DownIcon />
81
81
  {isOpen && (
82
82
  <DropDownContent>
83
- <BmDropdownItem onClick={() => setValue("any")}>ANY</BmDropdownItem>
84
- <BmDropdownItem onClick={() => setValue("all")}>ALL</BmDropdownItem>
83
+ <BmDropdownItem onClick={() => setValue('any')}>ANY</BmDropdownItem>
84
+ <BmDropdownItem onClick={() => setValue('all')}>ALL</BmDropdownItem>
85
85
  </DropDownContent>
86
86
  )}
87
87
  </BmDropdownWrapper>
@@ -1,7 +1,7 @@
1
- import React from "react";
2
- import styled from "styled-components";
3
- import { BmGrey100, BmGrey400, BmPrimaryBlack, BmPrimaryWhite } from "./colors";
4
- import { BmIcons } from "./iconStyles";
1
+ import React from 'react';
2
+ import styled from 'styled-components';
3
+ import { BmGrey100, BmGrey400, BmPrimaryBlack, BmPrimaryWhite } from './colors';
4
+ import { BmIcons } from './iconStyles';
5
5
 
6
6
  export const BmCustomizedDropdown = styled.div`
7
7
  display: flex;
@@ -9,8 +9,8 @@ export const BmCustomizedDropdown = styled.div`
9
9
  `;
10
10
 
11
11
  export const BmButtonDropdownItem = styled.div`
12
- ${"" /* display: inline-block; */}
13
- display: ${({ isOpen }) => (isOpen ? "flex" : "none")}};
12
+ ${'' /* display: inline-block; */}
13
+ display: ${({ isOpen }) => (isOpen ? 'flex' : 'none')}};
14
14
  flex-direction: column;
15
15
  ${'' /* align-items: flex-start; */}
16
16
  padding: 0.286rem 0rem;
@@ -1,11 +1,11 @@
1
- import React from "react";
2
- import { AttachFile } from "@material-ui/icons";
3
- import EmojiEmotionsIcon from "@material-ui/icons/EmojiEmotions";
4
- import QuickreplyIcon from "@mui/icons-material/Quickreply";
5
- import SendIcon from "@mui/icons-material/Send";
6
- import { BmChat, BmIcons, BmInput } from "./lib/components";
7
- import "../src/lib/assets/css/sidebar.scss";
8
- import image from "../src/lib/assets/chart-img.png";
1
+ import React from 'react';
2
+ import { AttachFile } from '@material-ui/icons';
3
+ import EmojiEmotionsIcon from '@material-ui/icons/EmojiEmotions';
4
+ import QuickreplyIcon from '@mui/icons-material/Quickreply';
5
+ import SendIcon from '@mui/icons-material/Send';
6
+ import { BmChat, BmIcons, BmInput } from './lib/components';
7
+ import '../src/lib/assets/css/sidebar.scss';
8
+ import image from '../src/lib/assets/chart-img.png';
9
9
 
10
10
  const Chat = () => {
11
11
  return (
@@ -19,7 +19,7 @@ const Chat = () => {
19
19
  src={image}
20
20
  fileName={<p>attachment.jpg</p>}
21
21
  />
22
- <BmChat.Details
22
+ <BmChat.Details
23
23
  state="outbound"
24
24
  session="bot"
25
25
  displayTime={<p>12:00pm</p>}
@@ -27,19 +27,24 @@ const Chat = () => {
27
27
  // src={image}
28
28
  // fileName={<p>attachment.jpg</p>}
29
29
  >
30
- <p>Technical No Signal - Ili kupata chaneli au chaneli zifunguke kwa wakati ukilipia kifurushi, hakikisha kwanza kama unapata signal vizuri kutoka kwenye dish kwa kutumia remote control.
31
- Bonyeza MENU, Bonyeza OK kwenye SEARCH, Bonyeza OK kwenye TP LIST.
32
- Angalia asilimia ya QUALITY pale chini.
33
- Angalia Transponder zote, 001, 002, 003 na 004 zinatakiwa ziwe na QUALITY si pungufu ya asilimia 60%.
34
- Au kama una aina nyingine ya kisimbuzi;
35
- Bonyeza MENU, Bonyeza OK kwenye SETTINGS, Bonyeza OK kwenye INSTALLATION, Bonyeza OK kwenye AUTOMATIC SEARCH.
36
- Shuka kwenye frequency na uangalie frequency zote kuanzia 11044, 10981, 11106 na 10971.
37
- Au
38
- Bonyeza MENU, Bonyeza OK kwenye SETTINGS, Bonyeza OK kwenye INSTALLATION, kwenye EUTELSAT 7C bonyeza kitufe cha KIJANI.
39
- Angalia QUALITY kwenye frequency zote kuanzia 11044, 10981, 11106 na 10971.
40
- Angalia asilimia ya QUALITY pale chini.
41
- QUALITY inatakiwa isiwe pungufu ya asilimia 60%.
42
- Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish arekebishe.</p>
30
+ <p>
31
+ Technical No Signal - Ili kupata chaneli au chaneli zifunguke kwa
32
+ wakati ukilipia kifurushi, hakikisha kwanza kama unapata signal
33
+ vizuri kutoka kwenye dish kwa kutumia remote control. Bonyeza MENU,
34
+ Bonyeza OK kwenye SEARCH, Bonyeza OK kwenye TP LIST. Angalia
35
+ asilimia ya QUALITY pale chini. Angalia Transponder zote, 001, 002,
36
+ 003 na 004 zinatakiwa ziwe na QUALITY si pungufu ya asilimia 60%. Au
37
+ kama una aina nyingine ya kisimbuzi; Bonyeza MENU, Bonyeza OK kwenye
38
+ SETTINGS, Bonyeza OK kwenye INSTALLATION, Bonyeza OK kwenye
39
+ AUTOMATIC SEARCH. Shuka kwenye frequency na uangalie frequency zote
40
+ kuanzia 11044, 10981, 11106 na 10971. Au Bonyeza MENU, Bonyeza OK
41
+ kwenye SETTINGS, Bonyeza OK kwenye INSTALLATION, kwenye EUTELSAT 7C
42
+ bonyeza kitufe cha KIJANI. Angalia QUALITY kwenye frequency zote
43
+ kuanzia 11044, 10981, 11106 na 10971. Angalia asilimia ya QUALITY
44
+ pale chini. QUALITY inatakiwa isiwe pungufu ya asilimia 60%. Je,
45
+ kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na
46
+ aliyekufungia dish arekebishe.
47
+ </p>
43
48
  </BmChat.Details>
44
49
  <BmChat.Details
45
50
  state="inbound"
@@ -49,19 +54,24 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
49
54
  // src={image}
50
55
  // fileName={<p>attachment.jpg</p>}
51
56
  >
52
- <p>Technical No Signal - Ili kupata chaneli au chaneli zifunguke kwa wakati ukilipia kifurushi, hakikisha kwanza kama unapata signal vizuri kutoka kwenye dish kwa kutumia remote control.
53
- Bonyeza MENU, Bonyeza OK kwenye SEARCH, Bonyeza OK kwenye TP LIST.
54
- Angalia asilimia ya QUALITY pale chini.
55
- Angalia Transponder zote, 001, 002, 003 na 004 zinatakiwa ziwe na QUALITY si pungufu ya asilimia 60%.
56
- Au kama una aina nyingine ya kisimbuzi;
57
- Bonyeza MENU, Bonyeza OK kwenye SETTINGS, Bonyeza OK kwenye INSTALLATION, Bonyeza OK kwenye AUTOMATIC SEARCH.
58
- Shuka kwenye frequency na uangalie frequency zote kuanzia 11044, 10981, 11106 na 10971.
59
- Au
60
- Bonyeza MENU, Bonyeza OK kwenye SETTINGS, Bonyeza OK kwenye INSTALLATION, kwenye EUTELSAT 7C bonyeza kitufe cha KIJANI.
61
- Angalia QUALITY kwenye frequency zote kuanzia 11044, 10981, 11106 na 10971.
62
- Angalia asilimia ya QUALITY pale chini.
63
- QUALITY inatakiwa isiwe pungufu ya asilimia 60%.
64
- Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish arekebishe.</p>
57
+ <p>
58
+ Technical No Signal - Ili kupata chaneli au chaneli zifunguke kwa
59
+ wakati ukilipia kifurushi, hakikisha kwanza kama unapata signal
60
+ vizuri kutoka kwenye dish kwa kutumia remote control. Bonyeza MENU,
61
+ Bonyeza OK kwenye SEARCH, Bonyeza OK kwenye TP LIST. Angalia
62
+ asilimia ya QUALITY pale chini. Angalia Transponder zote, 001, 002,
63
+ 003 na 004 zinatakiwa ziwe na QUALITY si pungufu ya asilimia 60%. Au
64
+ kama una aina nyingine ya kisimbuzi; Bonyeza MENU, Bonyeza OK kwenye
65
+ SETTINGS, Bonyeza OK kwenye INSTALLATION, Bonyeza OK kwenye
66
+ AUTOMATIC SEARCH. Shuka kwenye frequency na uangalie frequency zote
67
+ kuanzia 11044, 10981, 11106 na 10971. Au Bonyeza MENU, Bonyeza OK
68
+ kwenye SETTINGS, Bonyeza OK kwenye INSTALLATION, kwenye EUTELSAT 7C
69
+ bonyeza kitufe cha KIJANI. Angalia QUALITY kwenye frequency zote
70
+ kuanzia 11044, 10981, 11106 na 10971. Angalia asilimia ya QUALITY
71
+ pale chini. QUALITY inatakiwa isiwe pungufu ya asilimia 60%. Je,
72
+ kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na
73
+ aliyekufungia dish arekebishe.
74
+ </p>
65
75
  </BmChat.Details>
66
76
  <BmChat.Details
67
77
  state="outbound"
@@ -96,7 +106,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
96
106
  status="failed"
97
107
  >
98
108
  <p>Outbound</p>
99
- </BmChat.Details>{" "}
109
+ </BmChat.Details>{' '}
100
110
  <BmChat.Details
101
111
  state="outbound"
102
112
  session="live"
@@ -112,7 +122,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
112
122
  kwa mteja) 6. Change language 0. Au ungependa kutuuliza swali
113
123
  lingine?
114
124
  </p>
115
- </BmChat.Details>{" "}
125
+ </BmChat.Details>{' '}
116
126
  <BmChat.Details
117
127
  state="outbound"
118
128
  session="live"
@@ -120,7 +130,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
120
130
  status="failed"
121
131
  >
122
132
  <p>Outbound</p>
123
- </BmChat.Details>{" "}
133
+ </BmChat.Details>{' '}
124
134
  <BmChat.Details
125
135
  state="outbound"
126
136
  session="live"
@@ -128,7 +138,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
128
138
  status="failed"
129
139
  >
130
140
  <p>Outbound</p>
131
- </BmChat.Details>{" "}
141
+ </BmChat.Details>{' '}
132
142
  <BmChat.Details
133
143
  state="outbound"
134
144
  session="live"
@@ -136,7 +146,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
136
146
  status="failed"
137
147
  >
138
148
  <p>Outbound</p>
139
- </BmChat.Details>{" "}
149
+ </BmChat.Details>{' '}
140
150
  <BmChat.Details
141
151
  state="outbound"
142
152
  session="live"
@@ -144,7 +154,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
144
154
  status="failed"
145
155
  >
146
156
  <p>Outbound</p>
147
- </BmChat.Details>{" "}
157
+ </BmChat.Details>{' '}
148
158
  <BmChat.Details
149
159
  state="outbound"
150
160
  session="live"
@@ -152,7 +162,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
152
162
  status="failed"
153
163
  >
154
164
  <p>Outbound</p>
155
- </BmChat.Details>{" "}
165
+ </BmChat.Details>{' '}
156
166
  <BmChat.Details
157
167
  state="outbound"
158
168
  session="live"
@@ -162,7 +172,7 @@ Je, kwako inasoma ngapi? Kama ipo chini ya 60%, wasiliana na aliyekufungia dish
162
172
  <p>Outbound</p>
163
173
  </BmChat.Details>
164
174
  </BmChat.Body>
165
- <BmChat.Footer style={{ justifyContent: "flex-start" }}>
175
+ <BmChat.Footer style={{ justifyContent: 'flex-start' }}>
166
176
  <div class="chat-footer">
167
177
  <BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
168
178
  </div>
@@ -1,7 +1,6 @@
1
-
2
- import React from "react";
3
- import { BmAccordion } from "./lib/components";
4
- import BmForm from "./lib/components/ChatComponents/FormAccordion/FormAccordion";
1
+ import React from 'react';
2
+ import { BmAccordion } from './lib/components';
3
+ import BmForm from './lib/components/ChatComponents/FormAccordion/FormAccordion';
5
4
 
6
5
  const InfoAccordion = () => {
7
6
  return (
@@ -12,7 +11,9 @@ const InfoAccordion = () => {
12
11
  </BmAccordion.Title>
13
12
  <BmAccordion.Body>
14
13
  <BmForm>
15
- <BmForm.Label><h4>Hello</h4></BmForm.Label>
14
+ <BmForm.Label>
15
+ <h4>Hello</h4>
16
+ </BmForm.Label>
16
17
  <BmForm.Input placeholder="Hello" />
17
18
  </BmForm>
18
19
  </BmAccordion.Body>
@@ -1,7 +1,7 @@
1
- import React, { useState } from "react";
2
- import { GlobalStyle, BmChat } from "..";
3
- import "./list.scss";
4
- import { ScrollbarWrapper } from "../ScrollBar/scrollBar";
1
+ import React, { useState } from 'react';
2
+ import { GlobalStyle, BmChat } from '..';
3
+ import './list.scss';
4
+ import { ScrollbarWrapper } from '../ScrollBar/scrollBar';
5
5
 
6
6
  const App = () => {
7
7
  return (
@@ -62,7 +62,7 @@ const App = () => {
62
62
  status="failed"
63
63
  fileName={<p>file.csv</p>}
64
64
  onDownload={() => {
65
- alert("hello");
65
+ alert('hello');
66
66
  }}
67
67
  />
68
68
  </BmChat.Body>
@@ -1,14 +1,14 @@
1
- import React, { useState } from "react";
2
- import map from "lodash/map";
3
- import { GlobalStyle, BmModal, BmButton } from "./lib/components";
4
- import Select from "react-select";
1
+ import React, { useState } from 'react';
2
+ import map from 'lodash/map';
3
+ import Select from 'react-select';
4
+ import { GlobalStyle, BmModal, BmButton } from './lib/components';
5
5
 
6
6
  const App = () => {
7
7
  const [showModal, setShowModal] = useState(false);
8
8
 
9
9
  const VENDOR_ACCOUNT_STATUSES = {
10
- 0: "Inactive",
11
- 1: "Active",
10
+ 0: 'Inactive',
11
+ 1: 'Active',
12
12
  };
13
13
 
14
14
  const VENDOR_ACCOUNT_STATUS_OPTIONS = map(
@@ -16,7 +16,7 @@ const App = () => {
16
16
  (type, key) => ({
17
17
  value: key,
18
18
  label: type,
19
- }),
19
+ })
20
20
  );
21
21
  return (
22
22
  <>