@mohamed-karawia/library 0.1.4 → 0.1.5

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.
@@ -12,22 +12,6 @@ var _io = require("react-icons/io");
12
12
  // Icons
13
13
  // List and Gallery controls
14
14
  var controls = [{
15
- icon: /*#__PURE__*/React.createElement(_ai.AiOutlineUserAdd, null),
16
- action: 'add',
17
- name: 'Add member'
18
- }, {
19
- icon: /*#__PURE__*/React.createElement(_ai.AiOutlineDelete, null),
20
- action: 'remove',
21
- name: 'Add member'
22
- }, {
23
- icon: /*#__PURE__*/React.createElement(_io.IoIosAirplane, null),
24
- action: 'add',
25
- name: 'Some Icon'
26
- }, {
27
- icon: /*#__PURE__*/React.createElement(_io.IoIosAlarm, null),
28
- action: 'alarm',
29
- name: 'Another Icons'
30
- }, {
31
15
  icon: /*#__PURE__*/React.createElement(_io.IoIosAlarm, null),
32
16
  action: 'alarm',
33
17
  name: 'Another Icons'
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  ]
11
11
  ]
12
12
  },
13
- "version": "0.1.4",
13
+ "version": "0.1.5",
14
14
  "private": false,
15
15
  "dependencies": {
16
16
  "@babel/cli": "^7.16.7",
@@ -3,10 +3,6 @@ import { AiOutlineUserAdd, AiOutlineDelete, AiOutlineHeart, AiOutlineAudioMuted
3
3
  import { IoIosAirplane, IoIosAlarm } from "react-icons/io";
4
4
  // List and Gallery controls
5
5
  export const controls = [
6
- { icon: (<AiOutlineUserAdd />), action: 'add', name: 'Add member' },
7
- { icon: (<AiOutlineDelete />), action: 'remove', name: 'Add member' },
8
- { icon: (<IoIosAirplane />), action: 'add', name: 'Some Icon' },
9
- { icon: (<IoIosAlarm />), action: 'alarm', name: 'Another Icons' },
10
6
  { icon: (<IoIosAlarm />), action: 'alarm', name: 'Another Icons' },
11
7
  { icon: (<IoIosAlarm />), action: 'alarm', name: 'Another Icons' },
12
8
  ]