@ringcentral/juno 1.12.1-beta.5746-a8a4867a → 1.12.3-beta.5828-dc41552f

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 (173) hide show
  1. package/components/Buttons/Button/Button.d.ts +3 -3
  2. package/components/Buttons/Button/styles/StyledButton.js +4 -2
  3. package/components/Buttons/IconButton/IconButton.d.ts +1 -1
  4. package/components/Buttons/ToggleButton/ToggleButton.d.ts +1 -1
  5. package/components/Card/Card/Card.d.ts +2 -2
  6. package/components/Chip/Chip.d.ts +10 -3
  7. package/components/Chip/Chip.js +5 -3
  8. package/components/Chip/styles/ChipStyle.js +5 -4
  9. package/components/Chip/utils/ChipUtils.d.ts +1 -1
  10. package/components/Chip/utils/ChipUtils.js +1 -1
  11. package/components/Dialer/DialPad/index.d.ts +2 -0
  12. package/components/Dialer/DialPad/index.js +2 -0
  13. package/components/Dialer/DialTextField/DialTextField.d.ts +1 -1
  14. package/components/Dialog/Dialog.js +1 -1
  15. package/components/Downshift/Downshift.d.ts +21 -10
  16. package/components/Downshift/Downshift.js +15 -5
  17. package/components/Downshift/SuggestionList/SuggestionList.d.ts +2 -2
  18. package/components/Downshift/SuggestionList/SuggestionList.js +12 -6
  19. package/components/Downshift/SuggestionList/utils/index.d.ts +1 -0
  20. package/components/Downshift/SuggestionList/utils/index.js +1 -0
  21. package/components/Downshift/SuggestionList/utils/useSuggestionList.d.ts +298 -0
  22. package/components/Downshift/SuggestionList/utils/useSuggestionList.js +239 -0
  23. package/components/Downshift/styles/DownshiftStyle.d.ts +1 -1
  24. package/components/Downshift/styles/StyledTextField.d.ts +1 -1
  25. package/components/Downshift/utils/DownshiftUtils.d.ts +12 -0
  26. package/components/Downshift/utils/DownshiftUtils.js +19 -1
  27. package/components/Downshift/utils/SelectItem.d.ts +19 -0
  28. package/components/Downshift/utils/useDownshift.d.ts +5 -2
  29. package/components/Downshift/utils/useDownshift.interface.d.ts +5 -0
  30. package/components/Downshift/utils/useDownshift.js +31 -13
  31. package/components/Downshift/utils/useDownshiftGroup.d.ts +7 -7
  32. package/components/Downshift/utils/useDownshiftGroup.js +45 -19
  33. package/components/Forms/Checkbox/Checkbox.d.ts +1 -1
  34. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +1 -1
  35. package/components/Forms/Picker/TimePicker/NumberPicker.js +1 -3
  36. package/components/Forms/Picker/TimePicker/utils/TimePickerHelper.js +1 -1
  37. package/components/Forms/Picker/styles/StyledPickerTextField.d.ts +1 -1
  38. package/components/Forms/Radio/Radio.d.ts +1 -1
  39. package/components/Forms/Select/PlainSelect/PlainSelect.d.ts +1 -1
  40. package/components/Forms/Select/PlainSelect/PlainSelect.js +5 -4
  41. package/components/Forms/Select/PlainSelect/styles/StyledSelect.js +4 -3
  42. package/components/Forms/Select/Select.d.ts +2 -2
  43. package/components/Forms/Select/Select.js +2 -2
  44. package/components/Forms/Select/styles/StyledSelect.js +22 -18
  45. package/components/Forms/Select/utils/SelectInput/SelectInput.d.ts +1 -1
  46. package/components/Forms/TextField/TextField.d.ts +5 -3
  47. package/components/Forms/TextField/TextField.js +2 -2
  48. package/components/Forms/TextField/styles/ClearIconButton.d.ts +2 -2
  49. package/components/Forms/TextField/styles/OutlineTextFieldStyle.js +4 -2
  50. package/components/Forms/TextField/styles/TextFieldStyle.js +8 -4
  51. package/components/Forms/Textarea/Textarea.d.ts +1 -1
  52. package/components/Forms/Textarea/Textarea.js +8 -3
  53. package/components/Icon/assets/icon-Description.svg +5 -0
  54. package/components/Icon/assets/icon-poll.svg +5 -0
  55. package/components/Icon/assets/icon-poll_border.svg +5 -0
  56. package/components/Icon/icon-symbol.d.ts +1 -1
  57. package/components/Icon/icon-symbol.js +1 -1
  58. package/components/List/ListItem/ListItem.d.ts +1 -1
  59. package/components/Menu/MenuItem/MenuItem.d.ts +13 -5
  60. package/components/Menu/SubMenu/SubMenu.js +1 -1
  61. package/components/PopupBox/PopupBox.js +11 -3
  62. package/components/PortalHost/PortalManager/PortalManager.d.ts +2 -2
  63. package/components/PortalHost/PortalManager/PortalManager.js +9 -3
  64. package/components/PortalHost/PortalManager/types.d.ts +2 -1
  65. package/components/Snackbar/Snackbar.js +1 -1
  66. package/components/TablePagination/styles/TablePaginationStyle.d.ts +13 -5
  67. package/components/Tooltip/withTooltip/withTooltip.d.ts +6 -4
  68. package/components/Typography/Typography.d.ts +1 -1
  69. package/components/Virtuoso/react-virtuoso/Grid.d.ts +1 -1
  70. package/components/Virtuoso/react-virtuoso/List.d.ts +1 -1
  71. package/components/Virtuoso/utils/useHighlightScroll.d.ts +1 -1
  72. package/es6/components/Buttons/Button/styles/StyledButton.js +4 -2
  73. package/es6/components/Chip/Chip.js +6 -4
  74. package/es6/components/Chip/styles/ChipStyle.js +6 -5
  75. package/es6/components/Chip/utils/ChipUtils.js +1 -1
  76. package/es6/components/Dialer/DialPad/index.js +2 -0
  77. package/es6/components/Dialog/Dialog.js +2 -2
  78. package/es6/components/Downshift/Downshift.js +16 -7
  79. package/es6/components/Downshift/SuggestionList/SuggestionList.js +13 -7
  80. package/es6/components/Downshift/SuggestionList/utils/index.js +1 -0
  81. package/es6/components/Downshift/SuggestionList/utils/useSuggestionList.js +237 -0
  82. package/es6/components/Downshift/utils/DownshiftUtils.js +19 -1
  83. package/es6/components/Downshift/utils/useDownshift.js +31 -13
  84. package/es6/components/Downshift/utils/useDownshiftGroup.js +46 -20
  85. package/es6/components/Forms/Picker/TimePicker/NumberPicker.js +1 -3
  86. package/es6/components/Forms/Picker/TimePicker/utils/TimePickerHelper.js +1 -1
  87. package/es6/components/Forms/Select/PlainSelect/PlainSelect.js +5 -4
  88. package/es6/components/Forms/Select/PlainSelect/styles/StyledSelect.js +4 -3
  89. package/es6/components/Forms/Select/Select.js +2 -2
  90. package/es6/components/Forms/Select/styles/StyledSelect.js +24 -20
  91. package/es6/components/Forms/TextField/TextField.js +2 -2
  92. package/es6/components/Forms/TextField/styles/OutlineTextFieldStyle.js +5 -3
  93. package/es6/components/Forms/TextField/styles/TextFieldStyle.js +9 -5
  94. package/es6/components/Forms/Textarea/Textarea.js +8 -3
  95. package/es6/components/Icon/assets/icon-Description.svg +5 -0
  96. package/es6/components/Icon/assets/icon-poll.svg +5 -0
  97. package/es6/components/Icon/assets/icon-poll_border.svg +5 -0
  98. package/es6/components/Icon/icon-symbol.js +1 -1
  99. package/es6/components/Menu/SubMenu/SubMenu.js +1 -1
  100. package/es6/components/PopupBox/PopupBox.js +13 -5
  101. package/es6/components/PortalHost/PortalManager/PortalManager.js +9 -3
  102. package/es6/components/Snackbar/Snackbar.js +2 -2
  103. package/es6/foundation/hooks/index.js +1 -0
  104. package/es6/foundation/hooks/useAnnouncer/useAnnouncer.js +7 -0
  105. package/es6/foundation/hooks/useInterval/index.js +1 -0
  106. package/es6/foundation/hooks/useInterval/useInterval.js +86 -0
  107. package/es6/foundation/hooks/useKeyboardMoveFocus/useKeyboardMoveFocus.js +2 -1
  108. package/es6/icon/DefaultFile.js +1 -1
  109. package/es6/icon/DefaultGdrive.js +1 -1
  110. package/es6/icon/DefaultMusic.js +1 -1
  111. package/es6/icon/DefaultVideo.js +1 -1
  112. package/es6/icon/DeletedFile.js +1 -1
  113. package/es6/icon/Description.js +7 -0
  114. package/es6/icon/Doc.js +1 -1
  115. package/es6/icon/Excel.js +1 -1
  116. package/es6/icon/GifFile.js +1 -1
  117. package/es6/icon/GoogleDoc.js +1 -1
  118. package/es6/icon/GoogleSheet.js +1 -1
  119. package/es6/icon/GoogleSlide.js +1 -1
  120. package/es6/icon/ImageBroken.js +1 -1
  121. package/es6/icon/ImagePreview.js +1 -1
  122. package/es6/icon/MacKeynote.js +1 -1
  123. package/es6/icon/MacNumbers.js +1 -1
  124. package/es6/icon/MacPages.js +1 -1
  125. package/es6/icon/Pdf.js +1 -1
  126. package/es6/icon/Poll.js +7 -0
  127. package/es6/icon/PollBorder.js +7 -0
  128. package/es6/icon/Ppt.js +1 -1
  129. package/es6/icon/Zip.js +1 -1
  130. package/es6/icon/index.js +3 -0
  131. package/es6/icons/icon-Description.svg +5 -0
  132. package/es6/icons/icon-poll.svg +5 -0
  133. package/es6/icons/icon-poll_border.svg +5 -0
  134. package/foundation/hooks/index.d.ts +1 -0
  135. package/foundation/hooks/index.js +1 -0
  136. package/foundation/hooks/useAnnouncer/useAnnouncer.d.ts +7 -0
  137. package/foundation/hooks/useAnnouncer/useAnnouncer.js +7 -0
  138. package/foundation/hooks/useInterval/index.d.ts +1 -0
  139. package/foundation/hooks/useInterval/index.js +4 -0
  140. package/foundation/hooks/useInterval/useInterval.d.ts +43 -0
  141. package/foundation/hooks/useInterval/useInterval.js +88 -0
  142. package/foundation/hooks/useKeyboardMoveFocus/useKeyboardMoveFocus.js +2 -1
  143. package/icon/DefaultFile.js +1 -1
  144. package/icon/DefaultGdrive.js +1 -1
  145. package/icon/DefaultMusic.js +1 -1
  146. package/icon/DefaultVideo.js +1 -1
  147. package/icon/DeletedFile.js +1 -1
  148. package/icon/Description.d.ts +3 -0
  149. package/icon/Description.js +9 -0
  150. package/icon/Doc.js +1 -1
  151. package/icon/Excel.js +1 -1
  152. package/icon/GifFile.js +1 -1
  153. package/icon/GoogleDoc.js +1 -1
  154. package/icon/GoogleSheet.js +1 -1
  155. package/icon/GoogleSlide.js +1 -1
  156. package/icon/ImageBroken.js +1 -1
  157. package/icon/ImagePreview.js +1 -1
  158. package/icon/MacKeynote.js +1 -1
  159. package/icon/MacNumbers.js +1 -1
  160. package/icon/MacPages.js +1 -1
  161. package/icon/Pdf.js +1 -1
  162. package/icon/Poll.d.ts +3 -0
  163. package/icon/Poll.js +9 -0
  164. package/icon/PollBorder.d.ts +3 -0
  165. package/icon/PollBorder.js +9 -0
  166. package/icon/Ppt.js +1 -1
  167. package/icon/Zip.js +1 -1
  168. package/icon/index.d.ts +3 -0
  169. package/icon/index.js +6 -0
  170. package/icons/icon-Description.svg +5 -0
  171. package/icons/icon-poll.svg +5 -0
  172. package/icons/icon-poll_border.svg +5 -0
  173. package/package.json +3 -3
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var react_1 = require("react");
4
+ var useEventCallback_1 = require("../useEventCallback");
5
+ /**
6
+ * controllable interval, provide easy way to control interval
7
+ *
8
+ * - cancel: cancel current interval
9
+ * - pause: pause current interval
10
+ * - play: play current interval
11
+ * - getRunning: return current interval running state
12
+ *
13
+ * @example
14
+ * ```ts
15
+ * const { cancel, play, pause } = useInterval(() => {
16
+ * console.log('interval be triggered');
17
+ * }, 1000)
18
+ *
19
+ * // get current run times
20
+ * useInterval((times) => {
21
+ * console.log('current times start from 1', times);
22
+ * }, 2000)
23
+ *
24
+ * // not start interval immediately
25
+ * useInterval((times) => {
26
+ * console.log('current times start from 1', times);
27
+ * }, 2000, false)
28
+ * ```
29
+ */
30
+ exports.useInterval = function (
31
+ /** callback with times, times start from 1 */
32
+ callback,
33
+ /** what delay time of that interval */
34
+ delay,
35
+ /** is that start interval immediately */
36
+ startImmediately) {
37
+ if (delay === void 0) { delay = 0; }
38
+ if (startImmediately === void 0) { startImmediately = true; }
39
+ var intervalRef = react_1.useRef();
40
+ var countRef = react_1.useRef(0);
41
+ var getRunning = useEventCallback_1.useEventCallback(function () { return !!intervalRef.current; });
42
+ var savedCallback = useEventCallback_1.useEventCallback(function (times) {
43
+ callback(times);
44
+ });
45
+ var pause = react_1.useCallback(function () {
46
+ if (intervalRef.current) {
47
+ clearInterval(intervalRef.current);
48
+ intervalRef.current = undefined;
49
+ }
50
+ }, []);
51
+ var cancel = react_1.useCallback(function () {
52
+ pause();
53
+ countRef.current = 0;
54
+ }, [pause]);
55
+ var play = react_1.useCallback(function () {
56
+ var isRunning = getRunning();
57
+ if (isRunning)
58
+ return;
59
+ intervalRef.current = window.setInterval(function () {
60
+ countRef.current++;
61
+ savedCallback(countRef.current);
62
+ }, delay);
63
+ }, [delay, getRunning, savedCallback]);
64
+ react_1.useEffect(function () {
65
+ if (startImmediately) {
66
+ play();
67
+ }
68
+ return function () { return cancel(); };
69
+ }, [cancel, play, startImmediately]);
70
+ return {
71
+ /**
72
+ * cancel current interval
73
+ */
74
+ cancel: cancel,
75
+ /**
76
+ * pause current interval
77
+ */
78
+ pause: pause,
79
+ /**
80
+ * play current interval
81
+ */
82
+ play: play,
83
+ /**
84
+ * return current interval running state
85
+ */
86
+ getRunning: getRunning,
87
+ };
88
+ };
@@ -58,7 +58,8 @@ exports.useKeyboardMoveFocus = function (_a) {
58
58
  // * mean that item is disabled, use same direction find next
59
59
  else {
60
60
  // * find toIndex is same as current, mean that already find all
61
- if (toIndex === Math.max(focusedIndexRef.current, 0)) {
61
+ if (focusedIndexRef.current !== -1 &&
62
+ toIndex === Math.max(focusedIndexRef.current, 0)) {
62
63
  break;
63
64
  }
64
65
  currIndex = toIndex;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var DefaultFileD_1 = tslib_1.__importDefault(require("./DefaultFileD"));
7
7
  var DefaultFile = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var DefaultGdriveD_1 = tslib_1.__importDefault(require("./DefaultGdriveD"));
7
7
  var DefaultGdrive = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var DefaultMusicD_1 = tslib_1.__importDefault(require("./DefaultMusicD"));
7
7
  var DefaultMusic = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var DefaultVideoD_1 = tslib_1.__importDefault(require("./DefaultVideoD"));
7
7
  var DefaultVideo = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var DeletedFileD_1 = tslib_1.__importDefault(require("./DeletedFileD"));
7
7
  var DeletedFile = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const Description: 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" | "fr" | "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"> & React.RefAttributes<SVGSVGElement>>>;
3
+ export default Description;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tslib_1 = require("tslib");
4
+ var react_1 = tslib_1.__importStar(require("react"));
5
+ var Description = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", tslib_1.__assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
6
+ react_1.default.createElement("path", { d: "M19.25 24c.414 0 .75.448.75 1s-.336 1-.75 1H2.75c-.414 0-.75-.448-.75-1s.336-1 .75-1h16.5zm9.583-9c.644 0 1.167.448 1.167 1s-.522 1-1.167 1H3.166c-.644 0-1.167-.448-1.167-1s.522-1 1.167-1h25.667zm0-9C29.477 6 30 6.448 30 7s-.522 1-1.167 1H3.166c-.644 0-1.167-.448-1.167-1s.522-1 1.167-1h25.667z" }))); }));
7
+ Description.displayName = 'Description';
8
+ Description['iconName'] = 'Description';
9
+ exports.default = Description;
package/icon/Doc.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var DocD_1 = tslib_1.__importDefault(require("./DocD"));
7
7
  var Doc = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/Excel.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var ExcelD_1 = tslib_1.__importDefault(require("./ExcelD"));
7
7
  var Excel = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/GifFile.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var GifFileD_1 = tslib_1.__importDefault(require("./GifFileD"));
7
7
  var GifFile = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/GoogleDoc.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var GoogleDocD_1 = tslib_1.__importDefault(require("./GoogleDocD"));
7
7
  var GoogleDoc = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var GoogleSheetD_1 = tslib_1.__importDefault(require("./GoogleSheetD"));
7
7
  var GoogleSheet = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var GoogleSlideD_1 = tslib_1.__importDefault(require("./GoogleSlideD"));
7
7
  var GoogleSlide = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var ImageBrokenD_1 = tslib_1.__importDefault(require("./ImageBrokenD"));
7
7
  var ImageBroken = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var ImagePreviewD_1 = tslib_1.__importDefault(require("./ImagePreviewD"));
7
7
  var ImagePreview = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var MacKeynoteD_1 = tslib_1.__importDefault(require("./MacKeynoteD"));
7
7
  var MacKeynote = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var MacNumbersD_1 = tslib_1.__importDefault(require("./MacNumbersD"));
7
7
  var MacNumbers = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/MacPages.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var MacPagesD_1 = tslib_1.__importDefault(require("./MacPagesD"));
7
7
  var MacPages = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/Pdf.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var PdfD_1 = tslib_1.__importDefault(require("./PdfD"));
7
7
  var Pdf = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/Poll.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const Poll: 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" | "fr" | "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"> & React.RefAttributes<SVGSVGElement>>>;
3
+ export default Poll;
package/icon/Poll.js ADDED
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tslib_1 = require("tslib");
4
+ var react_1 = tslib_1.__importStar(require("react"));
5
+ var Poll = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", tslib_1.__assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
6
+ react_1.default.createElement("path", { d: "M25 5a2 2 0 012 2v18a2 2 0 01-2 2H7a2 2 0 01-2-2V7a2 2 0 012-2h18zm-14 8a1 1 0 00-1 1v7a1 1 0 002 0v-7a1 1 0 00-1-1zm5-3a1 1 0 00-1 1v10a1 1 0 002 0V11a1 1 0 00-1-1zm5 5a1 1 0 00-1 1v5a1 1 0 002 0v-5a1 1 0 00-1-1z" }))); }));
7
+ Poll.displayName = 'Poll';
8
+ Poll['iconName'] = 'poll';
9
+ exports.default = Poll;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const PollBorder: 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" | "fr" | "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"> & React.RefAttributes<SVGSVGElement>>>;
3
+ export default PollBorder;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tslib_1 = require("tslib");
4
+ var react_1 = tslib_1.__importStar(require("react"));
5
+ var PollBorder = react_1.memo(react_1.forwardRef(function (props, svgRef) { return (react_1.default.createElement("svg", tslib_1.__assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: svgRef }, props),
6
+ react_1.default.createElement("path", { d: "M25 5a2 2 0 012 2v18a2 2 0 01-2 2H7a2 2 0 01-2-2V7a2 2 0 012-2h18zm-1 2H8a1 1 0 00-.993.883L7 8v16a1 1 0 00.883.993L8 25h16a1 1 0 00.993-.883L25 24V8a1 1 0 00-1-1zm-13 6a1 1 0 011 1v7a1 1 0 01-2 0v-7a1 1 0 011-1zm5-3a1 1 0 011 1v10a1 1 0 01-2 0V11a1 1 0 011-1zm5 5a1 1 0 011 1v5a1 1 0 01-2 0v-5a1 1 0 011-1z" }))); }));
7
+ PollBorder.displayName = 'PollBorder';
8
+ PollBorder['iconName'] = 'poll_border';
9
+ exports.default = PollBorder;
package/icon/Ppt.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var PptD_1 = tslib_1.__importDefault(require("./PptD"));
7
7
  var Ppt = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/Zip.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- var react_1 = tslib_1.__importStar(require("react"));
5
4
  var core_1 = require("@material-ui/core");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
6
  var ZipD_1 = tslib_1.__importDefault(require("./ZipD"));
7
7
  var Zip = react_1.memo(react_1.forwardRef(function (inProps, svgRef) {
8
8
  var theme = core_1.useTheme();
package/icon/index.d.ts CHANGED
@@ -10,6 +10,7 @@ export { default as Svg8 } from './8';
10
10
  export { default as Svg9 } from './9';
11
11
  export { default as CompanySetupBorder } from './CompanySetupBorder';
12
12
  export { default as CompanySetup } from './CompanySetup';
13
+ export { default as Description } from './Description';
13
14
  export { default as Hud } from './Hud';
14
15
  export { default as Logout } from './Logout';
15
16
  export { default as NewEmail } from './NewEmail';
@@ -280,6 +281,8 @@ export { default as PlayBorder } from './PlayBorder';
280
281
  export { default as PlayCircle } from './PlayCircle';
281
282
  export { default as PlayCircleBorder } from './PlayCircleBorder';
282
283
  export { default as Play } from './Play';
284
+ export { default as PollBorder } from './PollBorder';
285
+ export { default as Poll } from './Poll';
283
286
  export { default as PoorConnection } from './PoorConnection';
284
287
  export { default as PptD } from './PptD';
285
288
  export { default as Ppt } from './Ppt';
package/icon/index.js CHANGED
@@ -24,6 +24,8 @@ var CompanySetupBorder_1 = require("./CompanySetupBorder");
24
24
  exports.CompanySetupBorder = CompanySetupBorder_1.default;
25
25
  var CompanySetup_1 = require("./CompanySetup");
26
26
  exports.CompanySetup = CompanySetup_1.default;
27
+ var Description_1 = require("./Description");
28
+ exports.Description = Description_1.default;
27
29
  var Hud_1 = require("./Hud");
28
30
  exports.Hud = Hud_1.default;
29
31
  var Logout_1 = require("./Logout");
@@ -564,6 +566,10 @@ var PlayCircleBorder_1 = require("./PlayCircleBorder");
564
566
  exports.PlayCircleBorder = PlayCircleBorder_1.default;
565
567
  var Play_1 = require("./Play");
566
568
  exports.Play = Play_1.default;
569
+ var PollBorder_1 = require("./PollBorder");
570
+ exports.PollBorder = PollBorder_1.default;
571
+ var Poll_1 = require("./Poll");
572
+ exports.Poll = Poll_1.default;
567
573
  var PoorConnection_1 = require("./PoorConnection");
568
574
  exports.PoorConnection = PoorConnection_1.default;
569
575
  var PptD_1 = require("./PptD");
@@ -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>Description</title>
4
+ <path d="M19.25 24c0.414 0 0.75 0.448 0.75 1s-0.336 1-0.75 1h-16.5c-0.414 0-0.75-0.448-0.75-1s0.336-1 0.75-1h16.5zM28.833 15c0.644 0 1.167 0.448 1.167 1s-0.522 1-1.167 1h-25.667c-0.644 0-1.167-0.448-1.167-1s0.522-1 1.167-1h25.667zM28.833 6c0.644 0 1.167 0.448 1.167 1s-0.522 1-1.167 1h-25.667c-0.644 0-1.167-0.448-1.167-1s0.522-1 1.167-1h25.667z"></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>poll</title>
4
+ <path d="M25 5c1.105 0 2 0.895 2 2v18c0 1.105-0.895 2-2 2h-18c-1.105 0-2-0.895-2-2v-18c0-1.105 0.895-2 2-2h18zM11 13c-0.552 0-1 0.448-1 1v0 7c0 0.552 0.448 1 1 1s1-0.448 1-1v0-7c0-0.552-0.448-1-1-1zM16 10c-0.552 0-1 0.448-1 1v0 10c0 0.552 0.448 1 1 1s1-0.448 1-1v0-10c0-0.552-0.448-1-1-1zM21 15c-0.552 0-1 0.448-1 1v0 5c0 0.552 0.448 1 1 1s1-0.448 1-1v0-5c0-0.552-0.448-1-1-1z"></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>poll_border</title>
4
+ <path d="M25 5c1.105 0 2 0.895 2 2v18c0 1.105-0.895 2-2 2h-18c-1.105 0-2-0.895-2-2v-18c0-1.105 0.895-2 2-2h18zM24 7h-16c-0.513 0-0.936 0.386-0.993 0.883l-0.007 0.117v16c0 0.513 0.386 0.936 0.883 0.993l0.117 0.007h16c0.513 0 0.936-0.386 0.993-0.883l0.007-0.117v-16c0-0.552-0.448-1-1-1zM11 13c0.552 0 1 0.448 1 1v7c0 0.552-0.448 1-1 1s-1-0.448-1-1v-7c0-0.552 0.448-1 1-1zM16 10c0.552 0 1 0.448 1 1v10c0 0.552-0.448 1-1 1s-1-0.448-1-1v-10c0-0.552 0.448-1 1-1zM21 15c0.552 0 1 0.448 1 1v5c0 0.552-0.448 1-1 1s-1-0.448-1-1v-5c0-0.552 0.448-1 1-1z"></path>
5
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ringcentral/juno",
3
- "version": "1.12.1-beta.5746-a8a4867a",
3
+ "version": "1.12.3-beta.5828-dc41552f",
4
4
  "main": "./index.js",
5
5
  "module": "./es6/index.js",
6
6
  "author": "RingCentral",
@@ -29,8 +29,8 @@
29
29
  "react-beautiful-dnd": "^13.0.0",
30
30
  "react-virtuoso": "^1.9.3",
31
31
  "resize-observer-polyfill": "^1.5.1",
32
- "typeface-lato": "^0.0.75",
33
- "tslib": ">=2.0.0"
32
+ "tslib": ">=2.0.0",
33
+ "typeface-lato": "^0.0.75"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "moment": "^2.29.1",