@ringcentral/juno 1.11.2 → 1.11.3-beta.5620-d9154e6b

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 (164) hide show
  1. package/README.md +0 -10
  2. package/components/Dialog/Dialog.d.ts +17 -4
  3. package/components/Dialog/Dialog.js +21 -8
  4. package/components/Dialog/DialogActions/DialogActions.d.ts +15 -5
  5. package/components/Dialog/DialogActions/DialogActions.js +13 -7
  6. package/components/Dialog/DialogActions/styles/DialogActionsStyle.js +20 -8
  7. package/components/Dialog/DialogActions/utils/DialogActionsUtils.d.ts +2 -2
  8. package/components/Dialog/DialogActions/utils/DialogActionsUtils.js +2 -5
  9. package/components/Dialog/DialogContent/DialogContent.d.ts +4 -4
  10. package/components/Dialog/DialogContent/DialogContent.js +5 -6
  11. package/components/Dialog/DialogContent/styles/DialogContentStyle.js +2 -4
  12. package/components/Dialog/DialogContent/utils/DialogContentUtils.d.ts +1 -2
  13. package/components/Dialog/DialogContent/utils/DialogContentUtils.js +6 -6
  14. package/components/Dialog/DialogContentText/DialogContentText.d.ts +4 -3
  15. package/components/Dialog/DialogContentText/DialogContentText.js +9 -8
  16. package/components/Dialog/DialogContentText/styles/DialogContentTextStyle.js +4 -2
  17. package/components/Dialog/DialogTitle/DialogTitle.d.ts +4 -4
  18. package/components/Dialog/DialogTitle/DialogTitle.js +6 -7
  19. package/components/Dialog/DialogTitle/styles/DialogTitleStyle.js +4 -5
  20. package/components/Dialog/DialogTitle/utils/DialogTitleUtils.d.ts +4 -2
  21. package/components/Dialog/DialogTitle/utils/DialogTitleUtils.js +6 -5
  22. package/components/Dialog/utils/DialogContext.d.ts +15 -0
  23. package/components/Dialog/utils/DialogContext.js +33 -0
  24. package/components/Dialog/utils/index.d.ts +1 -0
  25. package/components/Dialog/utils/index.js +1 -0
  26. package/components/Downshift/Downshift.d.ts +23 -2
  27. package/components/Downshift/Downshift.js +11 -8
  28. package/components/Downshift/SuggestionList/SuggestionList.d.ts +6 -4
  29. package/components/Downshift/SuggestionList/SuggestionList.js +17 -10
  30. package/components/Downshift/SuggestionList/utils/SuggestionListUtils.d.ts +1 -1
  31. package/components/Downshift/SuggestionList/utils/SuggestionListUtils.js +1 -1
  32. package/components/Downshift/utils/useDownshift.d.ts +3 -2
  33. package/components/Downshift/utils/useDownshift.js +7 -3
  34. package/components/Downshift/utils/useDownshiftGroup.d.ts +6 -4
  35. package/components/Downshift/utils/useDownshiftGroup.js +31 -9
  36. package/components/Forms/Picker/DatePicker/Calendar.js +5 -4
  37. package/components/Forms/Picker/DatePicker/DatePickerHeader.js +1 -1
  38. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +1 -1
  39. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +1 -1
  40. package/components/Forms/Switch/styles/SwitchStyle.js +1 -1
  41. package/components/Icon/assets/icon-add-reactions.svg +5 -1
  42. package/components/Icon/assets/icon-connect.svg +5 -0
  43. package/components/Icon/assets/icon-customize-tabs.svg +5 -0
  44. package/components/Icon/icon-symbol.d.ts +1 -1
  45. package/components/Icon/icon-symbol.js +1 -1
  46. package/components/List/ListItem/ListItem.js +0 -1
  47. package/components/List/ListItem/styles/ListItemStyle.js +1 -1
  48. package/components/PopupBox/PopupBox.d.ts +2 -2
  49. package/components/PopupBox/PopupBox.js +8 -10
  50. package/components/PortalHost/Connectable/Connectable.d.ts +11 -0
  51. package/components/PortalHost/Connectable/Connectable.js +50 -0
  52. package/components/PortalHost/Connectable/ThrottleScheduler.d.ts +8 -0
  53. package/components/PortalHost/Connectable/ThrottleScheduler.js +27 -0
  54. package/components/PortalHost/Connectable/index.d.ts +3 -0
  55. package/components/PortalHost/Connectable/index.js +8 -0
  56. package/components/PortalHost/Connectable/types.d.ts +7 -0
  57. package/components/PortalHost/Connectable/types.js +3 -0
  58. package/components/PortalHost/PortalHost.d.ts +7 -0
  59. package/components/PortalHost/PortalHost.js +44 -0
  60. package/components/PortalHost/PortalManager/PortalManager.d.ts +65 -0
  61. package/components/PortalHost/PortalManager/PortalManager.js +274 -0
  62. package/components/PortalHost/PortalManager/PortalStore.d.ts +20 -0
  63. package/components/PortalHost/PortalManager/PortalStore.js +134 -0
  64. package/components/PortalHost/PortalManager/index.d.ts +4 -0
  65. package/components/PortalHost/PortalManager/index.js +9 -0
  66. package/components/PortalHost/PortalManager/types.d.ts +86 -0
  67. package/components/PortalHost/PortalManager/types.js +3 -0
  68. package/components/PortalHost/PortalManager/utils.d.ts +8 -0
  69. package/components/PortalHost/PortalManager/utils.js +19 -0
  70. package/components/PortalHost/PortalRenderer.d.ts +10 -0
  71. package/components/PortalHost/PortalRenderer.js +43 -0
  72. package/components/PortalHost/context/PortalIDContext.d.ts +5 -0
  73. package/components/PortalHost/context/PortalIDContext.js +5 -0
  74. package/components/PortalHost/context/PortalManagerContext.d.ts +6 -0
  75. package/components/PortalHost/context/PortalManagerContext.js +5 -0
  76. package/components/PortalHost/context/index.d.ts +2 -0
  77. package/components/PortalHost/context/index.js +7 -0
  78. package/components/PortalHost/index.d.ts +4 -0
  79. package/components/PortalHost/index.js +9 -0
  80. package/components/PortalHost/utils/index.d.ts +2 -0
  81. package/components/PortalHost/utils/index.js +7 -0
  82. package/components/PortalHost/utils/usePortalManagerWithID.d.ts +8 -0
  83. package/components/PortalHost/utils/usePortalManagerWithID.js +12 -0
  84. package/components/PortalHost/utils/useUnmountPortalHandler.d.ts +5 -0
  85. package/components/PortalHost/utils/useUnmountPortalHandler.js +16 -0
  86. package/components/Snackbar/Snackbar.js +4 -2
  87. package/components/Virtuoso/utils/useHighlightScroll.d.ts +2 -1
  88. package/components/Virtuoso/utils/useHighlightScroll.js +4 -2
  89. package/components/index.d.ts +2 -1
  90. package/components/index.js +2 -1
  91. package/es6/components/Dialog/Dialog.js +22 -10
  92. package/es6/components/Dialog/DialogActions/DialogActions.js +11 -5
  93. package/es6/components/Dialog/DialogActions/styles/DialogActionsStyle.js +19 -7
  94. package/es6/components/Dialog/DialogActions/utils/DialogActionsUtils.js +2 -5
  95. package/es6/components/Dialog/DialogContent/DialogContent.js +3 -4
  96. package/es6/components/Dialog/DialogContent/styles/DialogContentStyle.js +3 -5
  97. package/es6/components/Dialog/DialogContent/utils/DialogContentUtils.js +6 -6
  98. package/es6/components/Dialog/DialogContentText/DialogContentText.js +7 -6
  99. package/es6/components/Dialog/DialogContentText/styles/DialogContentTextStyle.js +4 -2
  100. package/es6/components/Dialog/DialogTitle/DialogTitle.js +5 -6
  101. package/es6/components/Dialog/DialogTitle/styles/DialogTitleStyle.js +4 -5
  102. package/es6/components/Dialog/DialogTitle/utils/DialogTitleUtils.js +6 -5
  103. package/es6/components/Dialog/utils/DialogContext.js +31 -0
  104. package/es6/components/Dialog/utils/index.js +1 -0
  105. package/es6/components/Downshift/Downshift.js +11 -8
  106. package/es6/components/Downshift/SuggestionList/SuggestionList.js +17 -10
  107. package/es6/components/Downshift/SuggestionList/utils/SuggestionListUtils.js +1 -1
  108. package/es6/components/Downshift/utils/useDownshift.js +7 -3
  109. package/es6/components/Downshift/utils/useDownshiftGroup.js +33 -11
  110. package/es6/components/Forms/Picker/DatePicker/Calendar.js +6 -5
  111. package/es6/components/Forms/Picker/DatePicker/DatePickerHeader.js +1 -1
  112. package/es6/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +2 -2
  113. package/es6/components/Forms/Switch/styles/SwitchStyle.js +1 -1
  114. package/es6/components/Icon/assets/icon-add-reactions.svg +5 -1
  115. package/es6/components/Icon/assets/icon-connect.svg +5 -0
  116. package/es6/components/Icon/assets/icon-customize-tabs.svg +5 -0
  117. package/es6/components/Icon/icon-symbol.js +1 -1
  118. package/es6/components/List/ListItem/ListItem.js +0 -1
  119. package/es6/components/List/ListItem/styles/ListItemStyle.js +1 -1
  120. package/es6/components/PopupBox/PopupBox.js +8 -10
  121. package/es6/components/PortalHost/Connectable/Connectable.js +48 -0
  122. package/es6/components/PortalHost/Connectable/ThrottleScheduler.js +25 -0
  123. package/es6/components/PortalHost/Connectable/index.js +3 -0
  124. package/es6/components/PortalHost/Connectable/types.js +1 -0
  125. package/es6/components/PortalHost/PortalHost.js +35 -0
  126. package/es6/components/PortalHost/PortalManager/PortalManager.js +272 -0
  127. package/es6/components/PortalHost/PortalManager/PortalStore.js +132 -0
  128. package/es6/components/PortalHost/PortalManager/index.js +4 -0
  129. package/es6/components/PortalHost/PortalManager/types.js +1 -0
  130. package/es6/components/PortalHost/PortalManager/utils.js +17 -0
  131. package/es6/components/PortalHost/PortalRenderer.js +34 -0
  132. package/es6/components/PortalHost/context/PortalIDContext.js +3 -0
  133. package/es6/components/PortalHost/context/PortalManagerContext.js +3 -0
  134. package/es6/components/PortalHost/context/index.js +2 -0
  135. package/es6/components/PortalHost/index.js +4 -0
  136. package/es6/components/PortalHost/utils/index.js +2 -0
  137. package/es6/components/PortalHost/utils/usePortalManagerWithID.js +10 -0
  138. package/es6/components/PortalHost/utils/useUnmountPortalHandler.js +14 -0
  139. package/es6/components/Snackbar/Snackbar.js +4 -2
  140. package/es6/components/Virtuoso/utils/useHighlightScroll.js +4 -2
  141. package/es6/components/index.js +2 -1
  142. package/es6/icon/AddReactions.js +3 -1
  143. package/es6/icon/Connect.js +17 -0
  144. package/es6/icon/CustomizeTabs.js +17 -0
  145. package/es6/icon/index.js +2 -1
  146. package/es6/icons/icon-add-reactions.svg +5 -1
  147. package/es6/icons/icon-connect.svg +5 -0
  148. package/es6/icons/icon-customize-tabs.svg +5 -0
  149. package/icon/AddReactions.js +3 -1
  150. package/icon/{MenuFax.d.ts → Connect.d.ts} +2 -2
  151. package/icon/{MenuFax.js → Connect.js} +5 -5
  152. package/icon/CustomizeTabs.d.ts +3 -0
  153. package/icon/CustomizeTabs.js +26 -0
  154. package/icon/index.d.ts +2 -1
  155. package/icon/index.js +4 -2
  156. package/icons/icon-add-reactions.svg +5 -1
  157. package/icons/icon-connect.svg +5 -0
  158. package/icons/icon-customize-tabs.svg +5 -0
  159. package/package.json +1 -1
  160. package/components/Icon/assets/icon-menu-fax.svg +0 -5
  161. package/es6/components/Icon/assets/icon-menu-fax.svg +0 -5
  162. package/es6/icon/MenuFax.js +0 -17
  163. package/es6/icons/icon-menu-fax.svg +0 -5
  164. package/icons/icon-menu-fax.svg +0 -5
@@ -0,0 +1,4 @@
1
+ export * from './PortalManager';
2
+ export * from './PortalStore';
3
+ export * from './types';
4
+ export * from './utils';
@@ -0,0 +1 @@
1
+ export var UnmountSymbol = Symbol('UmountPortal');
@@ -0,0 +1,17 @@
1
+ export var createPromise = function () {
2
+ var resolvePromise = null;
3
+ var promise = new Promise(function (resolve) {
4
+ resolvePromise = resolve;
5
+ });
6
+ return [promise, resolvePromise];
7
+ };
8
+ var UniqIdUtil = /** @class */ (function () {
9
+ function UniqIdUtil() {
10
+ this._currentNumber = 0;
11
+ }
12
+ UniqIdUtil.prototype.get = function () {
13
+ return String(this._currentNumber++);
14
+ };
15
+ return UniqIdUtil;
16
+ }());
17
+ export { UniqIdUtil };
@@ -0,0 +1,34 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React, { useEffect, useMemo } from 'react';
13
+ import { PortalIDProvider } from './context';
14
+ /**
15
+ * private, do not use this directly
16
+ */
17
+ var RcPortalRenderer = function (_a) {
18
+ var portalDescriptor = _a.portalDescriptor;
19
+ var Component = portalDescriptor.Component, _props = portalDescriptor.props, onMounted = portalDescriptor.onMounted, onUnmounted = portalDescriptor.onUnmounted, onClose = portalDescriptor.onClose, open = portalDescriptor.open, id = portalDescriptor.id;
20
+ useEffect(function () {
21
+ onMounted();
22
+ return function () { return onUnmounted(); };
23
+ // eslint-disable-next-line react-hooks/exhaustive-deps
24
+ }, []);
25
+ var element = useMemo(function () {
26
+ // onClose, open must be covered
27
+ var props = __assign(__assign({}, _props), { onClose: onClose, open: open });
28
+ return React.createElement(Component, __assign({}, props));
29
+ // eslint-disable-next-line react-hooks/exhaustive-deps
30
+ }, [_props, open]);
31
+ return React.createElement(PortalIDProvider, { value: id }, element);
32
+ };
33
+ RcPortalRenderer.displayName = 'RcPortalRenderer';
34
+ export { RcPortalRenderer };
@@ -0,0 +1,3 @@
1
+ import { createContext } from 'react';
2
+ export var PortalIDContext = createContext(undefined);
3
+ export var PortalIDProvider = PortalIDContext.Provider;
@@ -0,0 +1,3 @@
1
+ import { createContext } from 'react';
2
+ export var PortalManagerContext = createContext(undefined);
3
+ export var PortalManagerProvider = PortalManagerContext.Provider;
@@ -0,0 +1,2 @@
1
+ export * from './PortalIDContext';
2
+ export * from './PortalManagerContext';
@@ -0,0 +1,4 @@
1
+ export * from './Connectable';
2
+ export * from './PortalHost';
3
+ export * from './PortalManager';
4
+ export * from './utils';
@@ -0,0 +1,2 @@
1
+ export * from './usePortalManagerWithID';
2
+ export * from './useUnmountPortalHandler';
@@ -0,0 +1,10 @@
1
+ import { useContext } from 'react';
2
+ import { PortalIDContext, PortalManagerContext } from '../context';
3
+ export var usePortalManagerWithID = function () {
4
+ var manager = useContext(PortalManagerContext);
5
+ var id = useContext(PortalIDContext);
6
+ if (manager && id !== undefined) {
7
+ return { manager: manager, id: id };
8
+ }
9
+ return undefined;
10
+ };
@@ -0,0 +1,14 @@
1
+ import { useEventCallback } from '../../../foundation';
2
+ import { UnmountSymbol } from '../PortalManager';
3
+ import { usePortalManagerWithID } from './usePortalManagerWithID';
4
+ export var useUnmountPortalHandler = function (handler) {
5
+ var managerWithID = usePortalManagerWithID();
6
+ var handleExited = useEventCallback(function (node) {
7
+ handler === null || handler === void 0 ? void 0 : handler(node);
8
+ if (managerWithID) {
9
+ var manager = managerWithID.manager, id = managerWithID.id;
10
+ manager[UnmountSymbol](id);
11
+ }
12
+ });
13
+ return handleExited;
14
+ };
@@ -28,14 +28,16 @@ import Slide from '@material-ui/core/Slide';
28
28
  import MuiSnackbar from '@material-ui/core/Snackbar';
29
29
  import React, { forwardRef, useMemo } from 'react';
30
30
  import { combineClasses, styled, useThemeProps, } from '../../foundation';
31
+ import { useUnmountPortalHandler } from '../PortalHost';
31
32
  import { RcSnackbarContent } from './SnackbarContent';
32
33
  import { SnackbarStyle } from './styles';
33
34
  import { RcSnackbarClasses } from './utils';
34
35
  var _RcSnackbar = forwardRef(function (inProps, ref) {
35
36
  var props = useThemeProps({ props: inProps, name: 'RcSnackbar' });
36
- var classesProp = props.classes, size = props.size, type = props.type, message = props.message, action = props.action, ContentProps = props.ContentProps, children = props.children, rest = __rest(props, ["classes", "size", "type", "message", "action", "ContentProps", "children"]);
37
+ var classesProp = props.classes, size = props.size, type = props.type, message = props.message, action = props.action, ContentProps = props.ContentProps, children = props.children, onExitedProp = props.onExited, rest = __rest(props, ["classes", "size", "type", "message", "action", "ContentProps", "children", "onExited"]);
37
38
  var classes = useMemo(function () { return combineClasses(RcSnackbarClasses, classesProp); }, [classesProp]);
38
- return (React.createElement(MuiSnackbar, __assign({ ref: ref, classes: classes }, rest), children || (React.createElement(RcSnackbarContent, __assign({ size: size, type: type, message: message, action: action }, ContentProps)))));
39
+ var onExited = useUnmountPortalHandler(onExitedProp);
40
+ return (React.createElement(MuiSnackbar, __assign({ ref: ref, classes: classes }, rest, { onExited: onExited }), children || (React.createElement(RcSnackbarContent, __assign({ size: size, type: type, message: message, action: action }, ContentProps)))));
39
41
  });
40
42
  var RcSnackbar = styled(_RcSnackbar)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), SnackbarStyle);
41
43
  RcSnackbar.defaultProps = {
@@ -6,9 +6,10 @@ export function useHighlightScroll(_a) {
6
6
  var containerHeighRef = _a.containerHeighRef, scrollToIndex = _a.scrollToIndex;
7
7
  var renderedItemsRef = useRef([]);
8
8
  var scrollerRef = useRef();
9
- var scrollToHighlightedIndex = function (prevHighlightedIndex, currHighlightedIndex) {
9
+ var scrollToHighlightedIndex = function (prevHighlightedIndex, currHighlightedIndex, topHighlightIndex) {
10
+ if (topHighlightIndex === void 0) { topHighlightIndex = 0; }
10
11
  if (!scrollerRef.current) {
11
- if (currHighlightedIndex !== 0) {
12
+ if (currHighlightedIndex !== topHighlightIndex) {
12
13
  setTimeout(function () {
13
14
  scrollToIndex({
14
15
  index: currHighlightedIndex,
@@ -84,6 +85,7 @@ export function useHighlightScroll(_a) {
84
85
  * Scroll to target highlighted index
85
86
  * @param prevHighlightedIndex previous highlightedIndex
86
87
  * @param currHighlightedIndex current highlightedIndex
88
+ * @param topHighlightIndex top highlighIndex for check should scroll when init
87
89
  */
88
90
  scrollToHighlightedIndex: scrollToHighlightedIndex,
89
91
  /**
@@ -33,6 +33,7 @@ export * from './Popover';
33
33
  export * from './Popper';
34
34
  export * from './PopupBox';
35
35
  export * from './Portal';
36
+ export * from './PortalHost';
36
37
  export * from './Presence';
37
38
  export * from './Progress';
38
39
  export * from './Rating';
@@ -49,6 +50,6 @@ export * from './Toolbar';
49
50
  export * from './Tooltip';
50
51
  export * from './Transitions';
51
52
  export * from './Typography';
52
- export * from './Virtuoso';
53
53
  export * from './VirtualizedMenu';
54
+ export * from './Virtuoso';
54
55
  export * from './VisuallyHidden';
@@ -11,7 +11,9 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React, { forwardRef, memo } from 'react';
13
13
  var AddReactions = memo(forwardRef(function (props, svgRef) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
14
- React.createElement("path", { d: "M13.786 4c6.509 0 11.786 5.366 11.786 11.986l-.004.288a6.574 6.574 0 00-1.684.028c.003-.105.004-.21.004-.316 0-5.674-4.523-10.273-10.102-10.273s-10.102 4.6-10.102 10.273c0 5.674 4.523 10.273 10.102 10.273a9.926 9.926 0 004.743-1.2c.175.55.419 1.07.72 1.549a11.555 11.555 0 01-5.463 1.364C7.277 27.972 2 22.606 2 15.986S7.277 4 13.786 4zm11.61 14.707c.45 0 .822.337.877.773l.007.111v2.484l2.529.001a.883.883 0 01.11 1.76l-.111.007-2.529-.001v2.485a.883.883 0 01-1.76.11l-.007-.111v-2.485l-2.529.001a.883.883 0 01-.11-1.76l.111-.007 2.529-.001V19.59c0-.488.396-.883.883-.883zm-6.816-.887a.864.864 0 01.306 1.17c-1.047 1.835-2.975 2.989-5.1 2.989-2.109 0-4.025-1.137-5.077-2.949-.236-.407-.104-.932.297-1.172s.916-.105 1.153.302a4.194 4.194 0 003.628 2.108 4.195 4.195 0 003.644-2.136.835.835 0 011.151-.311zm-9.003-6.971c.93 0 1.684.767 1.684 1.712s-.754 1.712-1.684 1.712c-.93 0-1.684-.767-1.684-1.712s.754-1.712 1.684-1.712zm8.418 0c.93 0 1.684.767 1.684 1.712s-.754 1.712-1.684 1.712c-.93 0-1.684-.767-1.684-1.712s.754-1.712 1.684-1.712z" }))); }));
14
+ React.createElement("path", { d: "M19.921 18.612c.44.23.589.737.334 1.133-1.145 1.776-3.253 2.893-5.576 2.893-2.306 0-4.4-1.1-5.551-2.855-.258-.394-.113-.902.325-1.135s1.002-.102 1.261.292c.823 1.255 2.318 2.04 3.966 2.04 1.66 0 3.165-.798 3.984-2.068.255-.396.818-.531 1.258-.301z" }),
15
+ React.createElement("path", { d: "M13.867 3.049c7.152-.626 13.458 4.665 14.084 11.818.012.142.022.283.03.424a7.435 7.435 0 00-2.021-.233l-.002-.016c-.529-6.052-5.865-10.529-11.917-9.999S3.512 10.908 4.042 16.96c.529 6.052 5.865 10.529 11.917 9.999a10.981 10.981 0 003.518-.907 7.424 7.424 0 001.185 1.656 12.966 12.966 0 01-4.528 1.244c-7.152.626-13.458-4.665-14.084-11.818S6.715 3.676 13.868 3.05z" }),
16
+ React.createElement("path", { d: "M26.379 18.517a1 1 0 011 1l-.001 2.62 2.621.001a1 1 0 011 1v.069a1 1 0 01-1 1l-2.621-.001.001 2.621a1 1 0 01-1 1h-.069a1 1 0 01-1-1l-.001-2.621-2.62.001a1 1 0 01-1-1v-.069a1 1 0 011-1l2.62-.001.001-2.62a1 1 0 011-1h.069zM12.5 12.25a1.75 1.75 0 11-3.501-.001 1.75 1.75 0 013.501.001zM20.5 12.25a1.75 1.75 0 11-3.501-.001 1.75 1.75 0 013.501.001z" }))); }));
15
17
  AddReactions.displayName = 'AddReactions';
16
18
  AddReactions['iconName'] = 'add-reactions';
17
19
  export default AddReactions;
@@ -0,0 +1,17 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React, { forwardRef, memo } from 'react';
13
+ var Connect = memo(forwardRef(function (props, svgRef) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
14
+ React.createElement("path", { d: "M23.344 16.945a1 1 0 00-1.32.083l-.083.094a1 1 0 00.083 1.32l2.562 2.563L12.953 21a1 1 0 00.117 1.993l11.518.012-2.564 2.565-.083.094a1 1 0 001.497 1.32l4.271-4.271.083-.094a1 1 0 00-.083-1.32l-4.271-4.271zM8.654 4.962l-.094.083-4.271 4.271a1 1 0 00-.083 1.32l.083.094 4.271 4.271a.999.999 0 001.497-1.32l-.083-.094-2.564-2.565 12.586-.012a1 1 0 00.117-1.993l-.117-.007-12.584.012 2.562-2.563a1 1 0 00.083-1.32l-.083-.094a1 1 0 00-1.32-.083z" }))); }));
15
+ Connect.displayName = 'Connect';
16
+ Connect['iconName'] = 'connect';
17
+ export default Connect;
@@ -0,0 +1,17 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React, { forwardRef, memo } from 'react';
13
+ var CustomizeTabs = memo(forwardRef(function (props, svgRef) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
14
+ React.createElement("path", { d: "M22.32 22.967a1.742 1.742 0 010 3.484H4.306a1.742 1.742 0 010-3.484H22.32zm5.374-8.709a1.742 1.742 0 010 3.484H13.263a1.742 1.742 0 010-3.484h14.431zM22.32 5.55a1.742 1.742 0 010 3.484H4.306a1.742 1.742 0 010-3.484H22.32z" }))); }));
15
+ CustomizeTabs.displayName = 'CustomizeTabs';
16
+ CustomizeTabs['iconName'] = 'customize-tabs';
17
+ export default CustomizeTabs;
package/es6/icon/index.js CHANGED
@@ -80,10 +80,12 @@ export { default as Comments } from './Comments';
80
80
  export { default as Computer } from './Computer';
81
81
  export { default as ConferenceBorder } from './ConferenceBorder';
82
82
  export { default as Conference } from './Conference';
83
+ export { default as Connect } from './Connect';
83
84
  export { default as ContactsAndCalendars } from './ContactsAndCalendars';
84
85
  export { default as ContactsBorder } from './ContactsBorder';
85
86
  export { default as Contacts } from './Contacts';
86
87
  export { default as Copy } from './Copy';
88
+ export { default as CustomizeTabs } from './CustomizeTabs';
87
89
  export { default as DashboardBorder } from './DashboardBorder';
88
90
  export { default as Dashboard } from './Dashboard';
89
91
  export { default as DateBorder } from './DateBorder';
@@ -218,7 +220,6 @@ export { default as MarkerS } from './MarkerS';
218
220
  export { default as MemberBorder } from './MemberBorder';
219
221
  export { default as MentionBorder } from './MentionBorder';
220
222
  export { default as Mention } from './Mention';
221
- export { default as MenuFax } from './MenuFax';
222
223
  export { default as Merge } from './Merge';
223
224
  export { default as MicBorder } from './MicBorder';
224
225
  export { default as MicOffBorder } from './MicOffBorder';
@@ -1,5 +1,9 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
3
  <title>add-reactions</title>
4
- <path d="M13.786 4c6.509 0 11.786 5.366 11.786 11.986l-0.004 0.288c-0.241-0.027-0.485-0.041-0.733-0.041-0.323 0-0.641 0.023-0.951 0.069 0.003-0.105 0.004-0.21 0.004-0.316 0-5.674-4.523-10.273-10.102-10.273s-10.102 4.6-10.102 10.273c0 5.674 4.523 10.273 10.102 10.273 1.714 0 3.329-0.434 4.743-1.2 0.175 0.55 0.419 1.070 0.72 1.549-1.632 0.872-3.491 1.364-5.463 1.364-6.509 0-11.786-5.366-11.786-11.986s5.277-11.986 11.786-11.986zM25.396 18.707c0.45 0 0.822 0.337 0.877 0.773l0.007 0.111-0 2.484 2.529 0.001c0.488 0 0.883 0.396 0.883 0.883 0 0.45-0.337 0.822-0.773 0.877l-0.111 0.007-2.529-0.001 0 2.485c0 0.488-0.396 0.883-0.883 0.883-0.45 0-0.822-0.337-0.877-0.773l-0.007-0.111-0-2.485-2.529 0.001c-0.488 0-0.883-0.396-0.883-0.883 0-0.45 0.337-0.822 0.773-0.877l0.111-0.007 2.529-0.001 0-2.484c0-0.488 0.396-0.883 0.883-0.883zM18.58 17.82c0.402 0.237 0.539 0.761 0.306 1.17-1.047 1.835-2.975 2.989-5.1 2.989-2.109 0-4.025-1.137-5.077-2.949-0.236-0.407-0.104-0.932 0.297-1.172s0.916-0.105 1.153 0.302c0.753 1.296 2.12 2.108 3.628 2.108 1.519 0 2.895-0.824 3.644-2.136 0.233-0.409 0.749-0.548 1.151-0.311zM9.577 10.849c0.93 0 1.684 0.767 1.684 1.712s-0.754 1.712-1.684 1.712c-0.93 0-1.684-0.767-1.684-1.712s0.754-1.712 1.684-1.712zM17.995 10.849c0.93 0 1.684 0.767 1.684 1.712s-0.754 1.712-1.684 1.712c-0.93 0-1.684-0.767-1.684-1.712s0.754-1.712 1.684-1.712z"></path>
4
+ <path d="M19.921 18.612c0.44 0.23 0.589 0.737 0.334 1.133-1.145 1.776-3.253 2.893-5.576 2.893-2.306 0-4.4-1.1-5.551-2.855-0.258-0.394-0.113-0.902 0.325-1.135s1.002-0.102 1.261 0.292c0.823 1.255 2.318 2.040 3.966 2.040 1.66 0 3.165-0.798 3.984-2.068 0.255-0.396 0.818-0.531 1.258-0.301v-0z"></path>
5
+ <path d="M13.867 3.049c7.152-0.626 13.458 4.665 14.084 11.818 0.012 0.142 0.022 0.283 0.030 0.424-0.647-0.167-1.325-0.248-2.021-0.233l-0.002-0.016c-0.529-6.052-5.865-10.529-11.917-9.999s-10.529 5.865-9.999 11.917c0.529 6.052 5.865 10.529 11.917 9.999 1.25-0.109 2.433-0.424 3.518-0.907 0.319 0.608 0.719 1.164 1.185 1.656-1.382 0.669-2.907 1.102-4.528 1.244-7.152 0.626-13.458-4.665-14.084-11.818s4.665-13.458 11.818-14.084z"></path>
6
+ <path d="M26.379 18.517c0.552 0 1 0.448 1 1l-0.001 2.62 2.621 0.001c0.552 0 1 0.448 1 1v0.069c0 0.552-0.448 1-1 1l-2.621-0.001 0.001 2.621c0 0.552-0.448 1-1 1h-0.069c-0.552 0-1-0.448-1-1l-0.001-2.621-2.62 0.001c-0.552 0-1-0.448-1-1v-0.069c0-0.552 0.448-1 1-1l2.62-0.001 0.001-2.62c0-0.552 0.448-1 1-1h0.069z"></path>
7
+ <path d="M12.5 12.25c0 0.966-0.784 1.75-1.75 1.75s-1.75-0.784-1.75-1.75c0-0.966 0.784-1.75 1.75-1.75s1.75 0.784 1.75 1.75z"></path>
8
+ <path d="M20.5 12.25c0 0.966-0.784 1.75-1.75 1.75s-1.75-0.784-1.75-1.75c0-0.966 0.784-1.75 1.75-1.75s1.75 0.784 1.75 1.75z"></path>
5
9
  </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>connect</title>
4
+ <path d="M23.344 16.945c-0.392-0.305-0.96-0.277-1.32 0.083v0l-0.083 0.094c-0.305 0.392-0.277 0.96 0.083 1.32v0l2.562 2.563-11.633-0.005c-0.497 0.058-0.883 0.48-0.883 0.993 0 0.552 0.448 1 1 1v0l11.518 0.012-2.564 2.565-0.083 0.094c-0.305 0.392-0.277 0.96 0.083 1.32 0.391 0.391 1.024 0.391 1.414 0v0l4.271-4.271 0.083-0.094c0.305-0.392 0.277-0.96-0.083-1.32v0l-4.271-4.271zM8.654 4.962l-0.094 0.083-4.271 4.271c-0.36 0.36-0.388 0.928-0.083 1.32l0.083 0.094 4.271 4.271c0.391 0.391 1.024 0.391 1.414 0 0.36-0.36 0.388-0.928 0.083-1.32l-0.083-0.094-2.564-2.565 12.586-0.012c0.552 0 1-0.448 1-1 0-0.513-0.386-0.935-0.883-0.993l-0.117-0.007-12.584 0.012 2.562-2.563c0.36-0.36 0.388-0.928 0.083-1.32l-0.083-0.094c-0.36-0.36-0.928-0.388-1.32-0.083z"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>customize-tabs</title>
4
+ <path d="M22.32 22.967c0.962 0 1.742 0.78 1.742 1.742s-0.78 1.742-1.742 1.742h-18.014c-0.962 0-1.742-0.78-1.742-1.742s0.78-1.742 1.742-1.742h18.014zM27.694 14.258c0.962 0 1.742 0.78 1.742 1.742s-0.78 1.742-1.742 1.742h-14.431c-0.962 0-1.742-0.78-1.742-1.742s0.78-1.742 1.742-1.742h14.431zM22.32 5.55c0.962 0 1.742 0.78 1.742 1.742s-0.78 1.742-1.742 1.742h-18.014c-0.962 0-1.742-0.78-1.742-1.742s0.78-1.742 1.742-1.742h18.014z"></path>
5
+ </svg>
@@ -20,7 +20,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
21
  var react_1 = __importStar(require("react"));
22
22
  var AddReactions = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
23
- react_1.default.createElement("path", { d: "M13.786 4c6.509 0 11.786 5.366 11.786 11.986l-.004.288a6.574 6.574 0 00-1.684.028c.003-.105.004-.21.004-.316 0-5.674-4.523-10.273-10.102-10.273s-10.102 4.6-10.102 10.273c0 5.674 4.523 10.273 10.102 10.273a9.926 9.926 0 004.743-1.2c.175.55.419 1.07.72 1.549a11.555 11.555 0 01-5.463 1.364C7.277 27.972 2 22.606 2 15.986S7.277 4 13.786 4zm11.61 14.707c.45 0 .822.337.877.773l.007.111v2.484l2.529.001a.883.883 0 01.11 1.76l-.111.007-2.529-.001v2.485a.883.883 0 01-1.76.11l-.007-.111v-2.485l-2.529.001a.883.883 0 01-.11-1.76l.111-.007 2.529-.001V19.59c0-.488.396-.883.883-.883zm-6.816-.887a.864.864 0 01.306 1.17c-1.047 1.835-2.975 2.989-5.1 2.989-2.109 0-4.025-1.137-5.077-2.949-.236-.407-.104-.932.297-1.172s.916-.105 1.153.302a4.194 4.194 0 003.628 2.108 4.195 4.195 0 003.644-2.136.835.835 0 011.151-.311zm-9.003-6.971c.93 0 1.684.767 1.684 1.712s-.754 1.712-1.684 1.712c-.93 0-1.684-.767-1.684-1.712s.754-1.712 1.684-1.712zm8.418 0c.93 0 1.684.767 1.684 1.712s-.754 1.712-1.684 1.712c-.93 0-1.684-.767-1.684-1.712s.754-1.712 1.684-1.712z" }))); }));
23
+ react_1.default.createElement("path", { d: "M19.921 18.612c.44.23.589.737.334 1.133-1.145 1.776-3.253 2.893-5.576 2.893-2.306 0-4.4-1.1-5.551-2.855-.258-.394-.113-.902.325-1.135s1.002-.102 1.261.292c.823 1.255 2.318 2.04 3.966 2.04 1.66 0 3.165-.798 3.984-2.068.255-.396.818-.531 1.258-.301z" }),
24
+ react_1.default.createElement("path", { d: "M13.867 3.049c7.152-.626 13.458 4.665 14.084 11.818.012.142.022.283.03.424a7.435 7.435 0 00-2.021-.233l-.002-.016c-.529-6.052-5.865-10.529-11.917-9.999S3.512 10.908 4.042 16.96c.529 6.052 5.865 10.529 11.917 9.999a10.981 10.981 0 003.518-.907 7.424 7.424 0 001.185 1.656 12.966 12.966 0 01-4.528 1.244c-7.152.626-13.458-4.665-14.084-11.818S6.715 3.676 13.868 3.05z" }),
25
+ react_1.default.createElement("path", { d: "M26.379 18.517a1 1 0 011 1l-.001 2.62 2.621.001a1 1 0 011 1v.069a1 1 0 01-1 1l-2.621-.001.001 2.621a1 1 0 01-1 1h-.069a1 1 0 01-1-1l-.001-2.621-2.62.001a1 1 0 01-1-1v-.069a1 1 0 011-1l2.62-.001.001-2.62a1 1 0 011-1h.069zM12.5 12.25a1.75 1.75 0 11-3.501-.001 1.75 1.75 0 013.501.001zM20.5 12.25a1.75 1.75 0 11-3.501-.001 1.75 1.75 0 013.501.001z" }))); }));
24
26
  AddReactions.displayName = 'AddReactions';
25
27
  AddReactions['iconName'] = 'add-reactions';
26
28
  exports.default = AddReactions;
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
- declare const MenuFax: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<React.SVGProps<SVGSVGElement>, "string" | "key" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<SVGSVGElement>>>;
3
- export default MenuFax;
2
+ declare const Connect: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<React.SVGProps<SVGSVGElement>, "string" | "key" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<SVGSVGElement>>>;
3
+ export default Connect;
@@ -19,8 +19,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
21
  var react_1 = __importStar(require("react"));
22
- var MenuFax = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
23
- react_1.default.createElement("path", { d: "M27.3 0a2 2 0 012 2v22h-6.1a2 2 0 00-1.994 1.851L21.2 26v6H4.3a2 2 0 01-2-2V2a2 2 0 012-2h23zm.972 25.814a1 1 0 01.703 1.712l-4.201 4.149a1 1 0 01-1.702-.712v-4.149a1 1 0 011-1h4.201zM17.383 19H8.216c-.506 0-.917.672-.917 1.5s.41 1.5.917 1.5h9.167c.506 0 .917-.672.917-1.5s-.41-1.5-.917-1.5zm5.584-8H9.634c-.736 0-1.333.672-1.333 1.5S8.898 14 9.634 14h13.333c.736 0 1.333-.672 1.333-1.5s-.597-1.5-1.333-1.5z" }))); }));
24
- MenuFax.displayName = 'MenuFax';
25
- MenuFax['iconName'] = 'menu-fax';
26
- exports.default = MenuFax;
22
+ var Connect = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
23
+ react_1.default.createElement("path", { d: "M23.344 16.945a1 1 0 00-1.32.083l-.083.094a1 1 0 00.083 1.32l2.562 2.563L12.953 21a1 1 0 00.117 1.993l11.518.012-2.564 2.565-.083.094a1 1 0 001.497 1.32l4.271-4.271.083-.094a1 1 0 00-.083-1.32l-4.271-4.271zM8.654 4.962l-.094.083-4.271 4.271a1 1 0 00-.083 1.32l.083.094 4.271 4.271a.999.999 0 001.497-1.32l-.083-.094-2.564-2.565 12.586-.012a1 1 0 00.117-1.993l-.117-.007-12.584.012 2.562-2.563a1 1 0 00.083-1.32l-.083-.094a1 1 0 00-1.32-.083z" }))); }));
24
+ Connect.displayName = 'Connect';
25
+ Connect['iconName'] = 'connect';
26
+ exports.default = Connect;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const CustomizeTabs: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<React.SVGProps<SVGSVGElement>, "string" | "key" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<SVGSVGElement>>>;
3
+ export default CustomizeTabs;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __importStar = (this && this.__importStar) || function (mod) {
14
+ if (mod && mod.__esModule) return mod;
15
+ var result = {};
16
+ if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
17
+ result["default"] = mod;
18
+ return result;
19
+ };
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ var react_1 = __importStar(require("react"));
22
+ var CustomizeTabs = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
23
+ react_1.default.createElement("path", { d: "M22.32 22.967a1.742 1.742 0 010 3.484H4.306a1.742 1.742 0 010-3.484H22.32zm5.374-8.709a1.742 1.742 0 010 3.484H13.263a1.742 1.742 0 010-3.484h14.431zM22.32 5.55a1.742 1.742 0 010 3.484H4.306a1.742 1.742 0 010-3.484H22.32z" }))); }));
24
+ CustomizeTabs.displayName = 'CustomizeTabs';
25
+ CustomizeTabs['iconName'] = 'customize-tabs';
26
+ exports.default = CustomizeTabs;
package/icon/index.d.ts CHANGED
@@ -80,10 +80,12 @@ export { default as Comments } from './Comments';
80
80
  export { default as Computer } from './Computer';
81
81
  export { default as ConferenceBorder } from './ConferenceBorder';
82
82
  export { default as Conference } from './Conference';
83
+ export { default as Connect } from './Connect';
83
84
  export { default as ContactsAndCalendars } from './ContactsAndCalendars';
84
85
  export { default as ContactsBorder } from './ContactsBorder';
85
86
  export { default as Contacts } from './Contacts';
86
87
  export { default as Copy } from './Copy';
88
+ export { default as CustomizeTabs } from './CustomizeTabs';
87
89
  export { default as DashboardBorder } from './DashboardBorder';
88
90
  export { default as Dashboard } from './Dashboard';
89
91
  export { default as DateBorder } from './DateBorder';
@@ -218,7 +220,6 @@ export { default as MarkerS } from './MarkerS';
218
220
  export { default as MemberBorder } from './MemberBorder';
219
221
  export { default as MentionBorder } from './MentionBorder';
220
222
  export { default as Mention } from './Mention';
221
- export { default as MenuFax } from './MenuFax';
222
223
  export { default as Merge } from './Merge';
223
224
  export { default as MicBorder } from './MicBorder';
224
225
  export { default as MicOffBorder } from './MicOffBorder';
package/icon/index.js CHANGED
@@ -164,6 +164,8 @@ var ConferenceBorder_1 = require("./ConferenceBorder");
164
164
  exports.ConferenceBorder = ConferenceBorder_1.default;
165
165
  var Conference_1 = require("./Conference");
166
166
  exports.Conference = Conference_1.default;
167
+ var Connect_1 = require("./Connect");
168
+ exports.Connect = Connect_1.default;
167
169
  var ContactsAndCalendars_1 = require("./ContactsAndCalendars");
168
170
  exports.ContactsAndCalendars = ContactsAndCalendars_1.default;
169
171
  var ContactsBorder_1 = require("./ContactsBorder");
@@ -172,6 +174,8 @@ var Contacts_1 = require("./Contacts");
172
174
  exports.Contacts = Contacts_1.default;
173
175
  var Copy_1 = require("./Copy");
174
176
  exports.Copy = Copy_1.default;
177
+ var CustomizeTabs_1 = require("./CustomizeTabs");
178
+ exports.CustomizeTabs = CustomizeTabs_1.default;
175
179
  var DashboardBorder_1 = require("./DashboardBorder");
176
180
  exports.DashboardBorder = DashboardBorder_1.default;
177
181
  var Dashboard_1 = require("./Dashboard");
@@ -440,8 +444,6 @@ var MentionBorder_1 = require("./MentionBorder");
440
444
  exports.MentionBorder = MentionBorder_1.default;
441
445
  var Mention_1 = require("./Mention");
442
446
  exports.Mention = Mention_1.default;
443
- var MenuFax_1 = require("./MenuFax");
444
- exports.MenuFax = MenuFax_1.default;
445
447
  var Merge_1 = require("./Merge");
446
448
  exports.Merge = Merge_1.default;
447
449
  var MicBorder_1 = require("./MicBorder");
@@ -1,5 +1,9 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
3
  <title>add-reactions</title>
4
- <path d="M13.786 4c6.509 0 11.786 5.366 11.786 11.986l-0.004 0.288c-0.241-0.027-0.485-0.041-0.733-0.041-0.323 0-0.641 0.023-0.951 0.069 0.003-0.105 0.004-0.21 0.004-0.316 0-5.674-4.523-10.273-10.102-10.273s-10.102 4.6-10.102 10.273c0 5.674 4.523 10.273 10.102 10.273 1.714 0 3.329-0.434 4.743-1.2 0.175 0.55 0.419 1.070 0.72 1.549-1.632 0.872-3.491 1.364-5.463 1.364-6.509 0-11.786-5.366-11.786-11.986s5.277-11.986 11.786-11.986zM25.396 18.707c0.45 0 0.822 0.337 0.877 0.773l0.007 0.111-0 2.484 2.529 0.001c0.488 0 0.883 0.396 0.883 0.883 0 0.45-0.337 0.822-0.773 0.877l-0.111 0.007-2.529-0.001 0 2.485c0 0.488-0.396 0.883-0.883 0.883-0.45 0-0.822-0.337-0.877-0.773l-0.007-0.111-0-2.485-2.529 0.001c-0.488 0-0.883-0.396-0.883-0.883 0-0.45 0.337-0.822 0.773-0.877l0.111-0.007 2.529-0.001 0-2.484c0-0.488 0.396-0.883 0.883-0.883zM18.58 17.82c0.402 0.237 0.539 0.761 0.306 1.17-1.047 1.835-2.975 2.989-5.1 2.989-2.109 0-4.025-1.137-5.077-2.949-0.236-0.407-0.104-0.932 0.297-1.172s0.916-0.105 1.153 0.302c0.753 1.296 2.12 2.108 3.628 2.108 1.519 0 2.895-0.824 3.644-2.136 0.233-0.409 0.749-0.548 1.151-0.311zM9.577 10.849c0.93 0 1.684 0.767 1.684 1.712s-0.754 1.712-1.684 1.712c-0.93 0-1.684-0.767-1.684-1.712s0.754-1.712 1.684-1.712zM17.995 10.849c0.93 0 1.684 0.767 1.684 1.712s-0.754 1.712-1.684 1.712c-0.93 0-1.684-0.767-1.684-1.712s0.754-1.712 1.684-1.712z"></path>
4
+ <path d="M19.921 18.612c0.44 0.23 0.589 0.737 0.334 1.133-1.145 1.776-3.253 2.893-5.576 2.893-2.306 0-4.4-1.1-5.551-2.855-0.258-0.394-0.113-0.902 0.325-1.135s1.002-0.102 1.261 0.292c0.823 1.255 2.318 2.040 3.966 2.040 1.66 0 3.165-0.798 3.984-2.068 0.255-0.396 0.818-0.531 1.258-0.301v-0z"></path>
5
+ <path d="M13.867 3.049c7.152-0.626 13.458 4.665 14.084 11.818 0.012 0.142 0.022 0.283 0.030 0.424-0.647-0.167-1.325-0.248-2.021-0.233l-0.002-0.016c-0.529-6.052-5.865-10.529-11.917-9.999s-10.529 5.865-9.999 11.917c0.529 6.052 5.865 10.529 11.917 9.999 1.25-0.109 2.433-0.424 3.518-0.907 0.319 0.608 0.719 1.164 1.185 1.656-1.382 0.669-2.907 1.102-4.528 1.244-7.152 0.626-13.458-4.665-14.084-11.818s4.665-13.458 11.818-14.084z"></path>
6
+ <path d="M26.379 18.517c0.552 0 1 0.448 1 1l-0.001 2.62 2.621 0.001c0.552 0 1 0.448 1 1v0.069c0 0.552-0.448 1-1 1l-2.621-0.001 0.001 2.621c0 0.552-0.448 1-1 1h-0.069c-0.552 0-1-0.448-1-1l-0.001-2.621-2.62 0.001c-0.552 0-1-0.448-1-1v-0.069c0-0.552 0.448-1 1-1l2.62-0.001 0.001-2.62c0-0.552 0.448-1 1-1h0.069z"></path>
7
+ <path d="M12.5 12.25c0 0.966-0.784 1.75-1.75 1.75s-1.75-0.784-1.75-1.75c0-0.966 0.784-1.75 1.75-1.75s1.75 0.784 1.75 1.75z"></path>
8
+ <path d="M20.5 12.25c0 0.966-0.784 1.75-1.75 1.75s-1.75-0.784-1.75-1.75c0-0.966 0.784-1.75 1.75-1.75s1.75 0.784 1.75 1.75z"></path>
5
9
  </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>connect</title>
4
+ <path d="M23.344 16.945c-0.392-0.305-0.96-0.277-1.32 0.083v0l-0.083 0.094c-0.305 0.392-0.277 0.96 0.083 1.32v0l2.562 2.563-11.633-0.005c-0.497 0.058-0.883 0.48-0.883 0.993 0 0.552 0.448 1 1 1v0l11.518 0.012-2.564 2.565-0.083 0.094c-0.305 0.392-0.277 0.96 0.083 1.32 0.391 0.391 1.024 0.391 1.414 0v0l4.271-4.271 0.083-0.094c0.305-0.392 0.277-0.96-0.083-1.32v0l-4.271-4.271zM8.654 4.962l-0.094 0.083-4.271 4.271c-0.36 0.36-0.388 0.928-0.083 1.32l0.083 0.094 4.271 4.271c0.391 0.391 1.024 0.391 1.414 0 0.36-0.36 0.388-0.928 0.083-1.32l-0.083-0.094-2.564-2.565 12.586-0.012c0.552 0 1-0.448 1-1 0-0.513-0.386-0.935-0.883-0.993l-0.117-0.007-12.584 0.012 2.562-2.563c0.36-0.36 0.388-0.928 0.083-1.32l-0.083-0.094c-0.36-0.36-0.928-0.388-1.32-0.083z"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>customize-tabs</title>
4
+ <path d="M22.32 22.967c0.962 0 1.742 0.78 1.742 1.742s-0.78 1.742-1.742 1.742h-18.014c-0.962 0-1.742-0.78-1.742-1.742s0.78-1.742 1.742-1.742h18.014zM27.694 14.258c0.962 0 1.742 0.78 1.742 1.742s-0.78 1.742-1.742 1.742h-14.431c-0.962 0-1.742-0.78-1.742-1.742s0.78-1.742 1.742-1.742h14.431zM22.32 5.55c0.962 0 1.742 0.78 1.742 1.742s-0.78 1.742-1.742 1.742h-18.014c-0.962 0-1.742-0.78-1.742-1.742s0.78-1.742 1.742-1.742h18.014z"></path>
5
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ringcentral/juno",
3
- "version": "1.11.2",
3
+ "version": "1.11.3-beta.5620-d9154e6b",
4
4
  "main": "./index.js",
5
5
  "module": "./es6/index.js",
6
6
  "author": "RingCentral",
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>menu-fax</title>
4
- <path d="M27.3 0c1.105 0 2 0.895 2 2v22h-6.1c-1.054 0-1.918 0.816-1.994 1.851l-0.006 0.149v6h-16.9c-1.105 0-2-0.895-2-2v-28c0-1.105 0.895-2 2-2h23zM28.272 25.814c0.552 0 1 0.448 1 1 0 0.267-0.107 0.524-0.297 0.712l-4.201 4.149c-0.393 0.388-1.026 0.384-1.414-0.009-0.185-0.187-0.288-0.44-0.288-0.703v-4.149c0-0.552 0.448-1 1-1h4.201zM17.383 19h-9.167c-0.506 0-0.917 0.672-0.917 1.5s0.41 1.5 0.917 1.5v0h9.167c0.506 0 0.917-0.672 0.917-1.5s-0.41-1.5-0.917-1.5v0zM22.967 11h-13.333c-0.736 0-1.333 0.672-1.333 1.5s0.597 1.5 1.333 1.5v0h13.333c0.736 0 1.333-0.672 1.333-1.5s-0.597-1.5-1.333-1.5v0z"></path>
5
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>menu-fax</title>
4
- <path d="M27.3 0c1.105 0 2 0.895 2 2v22h-6.1c-1.054 0-1.918 0.816-1.994 1.851l-0.006 0.149v6h-16.9c-1.105 0-2-0.895-2-2v-28c0-1.105 0.895-2 2-2h23zM28.272 25.814c0.552 0 1 0.448 1 1 0 0.267-0.107 0.524-0.297 0.712l-4.201 4.149c-0.393 0.388-1.026 0.384-1.414-0.009-0.185-0.187-0.288-0.44-0.288-0.703v-4.149c0-0.552 0.448-1 1-1h4.201zM17.383 19h-9.167c-0.506 0-0.917 0.672-0.917 1.5s0.41 1.5 0.917 1.5v0h9.167c0.506 0 0.917-0.672 0.917-1.5s-0.41-1.5-0.917-1.5v0zM22.967 11h-13.333c-0.736 0-1.333 0.672-1.333 1.5s0.597 1.5 1.333 1.5v0h13.333c0.736 0 1.333-0.672 1.333-1.5s-0.597-1.5-1.333-1.5v0z"></path>
5
- </svg>
@@ -1,17 +0,0 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import React, { forwardRef, memo } from 'react';
13
- var MenuFax = memo(forwardRef(function (props, svgRef) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
14
- React.createElement("path", { d: "M27.3 0a2 2 0 012 2v22h-6.1a2 2 0 00-1.994 1.851L21.2 26v6H4.3a2 2 0 01-2-2V2a2 2 0 012-2h23zm.972 25.814a1 1 0 01.703 1.712l-4.201 4.149a1 1 0 01-1.702-.712v-4.149a1 1 0 011-1h4.201zM17.383 19H8.216c-.506 0-.917.672-.917 1.5s.41 1.5.917 1.5h9.167c.506 0 .917-.672.917-1.5s-.41-1.5-.917-1.5zm5.584-8H9.634c-.736 0-1.333.672-1.333 1.5S8.898 14 9.634 14h13.333c.736 0 1.333-.672 1.333-1.5s-.597-1.5-1.333-1.5z" }))); }));
15
- MenuFax.displayName = 'MenuFax';
16
- MenuFax['iconName'] = 'menu-fax';
17
- export default MenuFax;