@messenger-box/platform-browser 0.0.1-alpha.189 → 0.0.1-alpha.190

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/platform-browser",
3
- "version": "0.0.1-alpha.189",
3
+ "version": "0.0.1-alpha.190",
4
4
  "description": "Sample core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -24,8 +24,8 @@
24
24
  "@container-stack/file-info-client": "^0.0.35-alpha.1",
25
25
  "@emotion/react": "^11",
26
26
  "@emotion/styled": "^11",
27
- "@messenger-box/core": "0.0.1-alpha.186",
28
- "@messenger-box/platform-client": "0.0.1-alpha.186",
27
+ "@messenger-box/core": "0.0.1-alpha.190",
28
+ "@messenger-box/platform-client": "0.0.1-alpha.190",
29
29
  "bootstrap": "3.4.1",
30
30
  "css-vars-ponyfill": "2.4.5",
31
31
  "dynamic-virtualized-list": "github:mattermost/dynamic-virtualized-list#119db968c96643c7106d4d2c965f05b2e251bc83",
@@ -58,5 +58,5 @@
58
58
  "typescript": {
59
59
  "definition": "lib/index.d.ts"
60
60
  },
61
- "gitHead": "f695473157eb7e630fa9c75cfcbbd07fd157dcd1"
61
+ "gitHead": "f25fb61c1f7d29a08355d18ca5c29321d53516c3"
62
62
  }
@@ -1,36 +1,34 @@
1
- import React, {FC, useEffect, useState} from 'react';
2
- import {Col, Row} from 'antd';
3
- import {IPostPropsFragment} from '@messenger-box/platform-client';
4
- import {useSelector} from 'react-redux';
1
+ import React, { FC, useState } from 'react';
2
+ import { Avatar, Col, Comment, Popover, Row } from 'antd';
3
+ import { useSelector } from 'react-redux';
5
4
  import 'antd/dist/antd.css';
6
- import {Comment, Popover, Avatar, Divider} from 'antd';
7
- import {BiDotsVerticalRounded, BiPaperPlane} from 'react-icons/bi';
5
+ import { BiDotsVerticalRounded, BiPaperPlane } from 'react-icons/bi';
8
6
  import Moment from 'moment';
9
- import {useFela} from 'react-fela';
10
- import {styleSheet3} from './style';
11
- import {IoBookmarkOutline} from 'react-icons/io5';
7
+ import { useFela } from 'react-fela';
8
+ import { styleSheet3 } from './style';
9
+ import { IoBookmarkOutline } from 'react-icons/io5';
12
10
  import {
13
- AiOutlineClose,
14
11
  BiDotsHorizontalRounded,
15
12
  BsReply,
16
13
  FaRobot,
17
14
  GrClose,
18
- IoIosClose,
19
15
  MdModeEditOutline,
20
- MdOutlineAddReaction, MdOutlineCloudDownload, MdOutlineDesktopMac,
21
- MdOutlineEmojiEmotions, RiShareForwardLine,
16
+ MdOutlineAddReaction,
17
+ MdOutlineCloudDownload,
18
+ MdOutlineDesktopMac,
19
+ MdOutlineEmojiEmotions,
20
+ RiShareForwardLine,
22
21
  TiUserAdd,
23
22
  VscChromeClose,
24
23
  } from 'react-icons/all';
25
- import {styleSheet2} from '../../post/style';
26
- import {Picker} from 'emoji-mart';
24
+ import { styleSheet2 } from '../../post/style';
25
+ import { Picker } from 'emoji-mart';
27
26
  import MoreAction from '../more_action';
28
- import {Button, Modal} from 'react-bootstrap';
29
- import {styleSheet} from "../../../style";
30
- import Select from "react-select";
27
+ import { Button, Modal } from 'react-bootstrap';
28
+ import { IPostFragment } from '@messenger-box/core';
31
29
 
32
30
  interface IProps {
33
- userMessagesList: IPostPropsFragment[];
31
+ userMessagesList: IPostFragment[];
34
32
  handleShowSideBar: () => void;
35
33
  handleDeleteMessage: any;
36
34
  handleEditMessage: any;