@prom-ui/core 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Body/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Body",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Box/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Box",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Button/index.d.ts CHANGED
@@ -1,8 +1,5 @@
1
1
  import React from 'react';
2
- declare type Props = {
3
- type?: string;
2
+ export interface ButtonProps extends React.ComponentProps<"button"> {
4
3
  loading?: boolean;
5
- children?: React.ReactNode;
6
- };
7
- export declare const Button: React.FC<Props>;
8
- export {};
4
+ }
5
+ export declare const Button: React.ForwardRefExoticComponent<Pick<ButtonProps, "form" | "slot" | "style" | "title" | "loading" | "type" | "children" | "key" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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<HTMLButtonElement>>;
package/Button/index.js CHANGED
@@ -78,7 +78,6 @@ var Button = React.forwardRef(function (_a, ref) {
78
78
  });
79
79
  Button.displayName = 'Button';
80
80
  Button.propTypes = {
81
- type: PropTypes__default["default"].oneOf(['button', 'submit', 'reset']),
82
81
  loading: PropTypes__default["default"].bool
83
82
  };
84
83
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Button",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,2 +1,11 @@
1
1
  import React from 'react';
2
- export declare const ButtonPageUp: React.NamedExoticComponent<object>;
2
+ export declare type Props = {
3
+ scrollDelay?: number;
4
+ scrollOffset?: number;
5
+ scrollRef?: React.RefObject<HTMLElement>;
6
+ onClick?: (e: MouseEvent) => void;
7
+ margin?: number | string;
8
+ zIndex?: number;
9
+ children?: React.ReactNode;
10
+ };
11
+ export declare const ButtonPageUp: React.FC<Props>;
@@ -0,0 +1,174 @@
1
+ 'use strict';
2
+
3
+ require("./style.css");
4
+
5
+ Object.defineProperty(exports, '__esModule', { value: true });
6
+
7
+ var React = require('react');
8
+ var PropTypes = require('prop-types');
9
+ var ttag = require('ttag');
10
+ var tsDebounce = require('ts-debounce');
11
+ var Portal = require('@prom-ui/core/Portal');
12
+ var Button = require('@prom-ui/core/Button');
13
+ var Icon = require('@prom-ui/core/Icon');
14
+ var ArrowUp = require('@prom-ui/icons/ArrowUp');
15
+
16
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
17
+
18
+ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
19
+ var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
20
+
21
+ /******************************************************************************
22
+ Copyright (c) Microsoft Corporation.
23
+
24
+ Permission to use, copy, modify, and/or distribute this software for any
25
+ purpose with or without fee is hereby granted.
26
+
27
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
28
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
29
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
30
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
31
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
32
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
33
+ PERFORMANCE OF THIS SOFTWARE.
34
+ ***************************************************************************** */
35
+
36
+ var __assign = function() {
37
+ __assign = Object.assign || function __assign(t) {
38
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
39
+ s = arguments[i];
40
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
41
+ }
42
+ return t;
43
+ };
44
+ return __assign.apply(this, arguments);
45
+ };
46
+
47
+ function __rest(s, e) {
48
+ var t = {};
49
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
50
+ t[p] = s[p];
51
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
52
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
53
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
54
+ t[p[i]] = s[p[i]];
55
+ }
56
+ return t;
57
+ }
58
+
59
+ function __makeTemplateObject(cooked, raw) {
60
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
61
+ return cooked;
62
+ }
63
+
64
+ var POSITION_FIXED = {
65
+ position: 'fixed',
66
+ right: 0,
67
+ bottom: 0,
68
+ width: '100%'
69
+ };
70
+ var POSITION_STICKY = {
71
+ position: 'sticky',
72
+ bottom: 0,
73
+ height: 0,
74
+ width: '100%'
75
+ };
76
+ var ButtonPageUp = React.memo(function (_a) {
77
+ var _b = _a.children,
78
+ children = _b === void 0 ? null : _b,
79
+ _c = _a.scrollDelay,
80
+ scrollDelay = _c === void 0 ? 100 : _c,
81
+ _d = _a.scrollOffset,
82
+ scrollOffset = _d === void 0 ? 100 : _d,
83
+ _e = _a.scrollRef,
84
+ scrollRef = _e === void 0 ? null : _e,
85
+ _f = _a.onClick,
86
+ onClick = _f === void 0 ? function () {} : _f,
87
+ _g = _a.margin,
88
+ margin = _g === void 0 ? '0 18px 18px 0' : _g,
89
+ _h = _a.zIndex,
90
+ zIndex = _h === void 0 ? 10 : _h,
91
+ props = __rest(_a, ["children", "scrollDelay", "scrollOffset", "scrollRef", "onClick", "margin", "zIndex"]);
92
+
93
+ var _j = React.useState(false),
94
+ visible = _j[0],
95
+ setVisible = _j[1];
96
+
97
+ var getRootElement = function () {
98
+ return (scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) || document.documentElement;
99
+ };
100
+
101
+ var handleScrollToTop = function (e) {
102
+ if (typeof onClick === 'function') {
103
+ onClick(e);
104
+ }
105
+
106
+ getRootElement().scroll({
107
+ top: 0,
108
+ behavior: 'smooth'
109
+ });
110
+ };
111
+
112
+ var handleSetVisible = tsDebounce.debounce(function () {
113
+ var rootElement = getRootElement();
114
+ var isScrollAllow = rootElement.scrollHeight - rootElement.clientHeight > 0;
115
+ var isScrollСorrect = rootElement.scrollTop >= scrollOffset;
116
+ setVisible(isScrollAllow && isScrollСorrect);
117
+ }, scrollDelay);
118
+ React.useEffect(function () {
119
+ var rootElement = (scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) || document;
120
+ rootElement.addEventListener('resize', handleSetVisible);
121
+ rootElement.addEventListener('scroll', handleSetVisible);
122
+ handleSetVisible();
123
+ return function () {
124
+ rootElement.removeEventListener('resize', handleSetVisible);
125
+ rootElement.removeEventListener('scroll', handleSetVisible);
126
+ };
127
+ }, []);
128
+ if (!visible) return null;
129
+ var Parent = (scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) ? React.Fragment : Portal.Portal;
130
+ var positionStyle = (scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) ? POSITION_STICKY : POSITION_FIXED;
131
+ return React__default["default"].createElement(Parent, null, React__default["default"].createElement("div", {
132
+ style: __assign(__assign({}, positionStyle), {
133
+ zIndex: zIndex
134
+ })
135
+ }, React__default["default"].createElement(Button.Button, __assign({
136
+ "button-padding": 'xs',
137
+ "button-theme": 'white',
138
+ "button-round": 'full',
139
+ "aria-label": ttag.t(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\u041D\u0430\u0432\u0435\u0440\u0445"], ["\u041D\u0430\u0432\u0435\u0440\u0445"])))
140
+ }, props, {
141
+ style: {
142
+ position: 'absolute',
143
+ right: 0,
144
+ bottom: 0,
145
+ margin: margin
146
+ },
147
+ onClick: handleScrollToTop
148
+ }), children || React__default["default"].createElement(Icon.Icon, {
149
+ "icon-as": ArrowUp.ArrowUp,
150
+ style: {
151
+ width: 24,
152
+ height: 24
153
+ }
154
+ }))));
155
+ });
156
+ ButtonPageUp.propTypes = {
157
+ /** Задержка в `ms` */
158
+ scrollDelay: PropTypes__default["default"].number,
159
+
160
+ /** Смещение скрола для отображения в `px` */
161
+ scrollOffset: PropTypes__default["default"].number,
162
+
163
+ /** Для аналитики */
164
+ onClick: PropTypes__default["default"].func,
165
+
166
+ /** Внешние отступы */
167
+ margin: PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].number]),
168
+
169
+ /** CSS z-index */
170
+ zIndex: PropTypes__default["default"].number
171
+ };
172
+ var templateObject_1;
173
+
174
+ exports.ButtonPageUp = ButtonPageUp;
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@prom-ui/core/ButtonPageUp",
3
+ "version": "0.0.13",
4
+ "main": "index.js",
5
+ "types": "index.d.ts",
6
+ "dependencies": {
7
+ "@prom-ui/icons": "^0.0.5",
8
+ "ts-debounce": "4.0.0",
9
+ "ttag": "1.7.24"
10
+ }
11
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Checkbox",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Flex/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Flex",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Grid/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Grid",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Icon/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Icon",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Image",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/ImageEmoji",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Input",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/KeyPress",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Line/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Line",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Link/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Link",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/List/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/List",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/OutsideClick",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Picture",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Portal",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Rating",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Scroll",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Skeleton",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Spinner",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/Text/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Text",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/TextEmoji",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prom-ui/core/Tumbler",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prom-ui/core",
3
3
  "author": "e.marchenko",
4
- "version": "0.0.12",
4
+ "version": "0.0.13",
5
5
  "description": "core ui blocks",
6
6
  "scripts": {
7
7
  "prebuild": "rm -rf dist && mkdir dist && cp -v package.json README.md CHANGELOG.md dist",
@@ -21,12 +21,14 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@prom-ui/core": "file:../core/src",
24
- "@prom-ui/hooks": "file:../hooks/src"
24
+ "@prom-ui/hooks": "file:../hooks/src",
25
+ "@prom-ui/icons": "file:../icons/src"
25
26
  },
26
27
  "dependencies": {
27
28
  "@evo/emoji": "0.2.0",
28
29
  "@evo/emoji-text": "0.1.1",
29
30
  "@prom-ui/hooks": "^0.0.3",
31
+ "@prom-ui/icons": "^0.0.5",
30
32
  "classnames": "2.3.1",
31
33
  "evokit": "3.2.3",
32
34
  "evokit-body": "3.2.0",
@@ -41,6 +43,7 @@
41
43
  "evokit-picture": "3.2.0",
42
44
  "evokit-text": "3.2.0",
43
45
  "react-transition-group": "4.4.2",
46
+ "ts-debounce": "4.0.0",
44
47
  "ttag": "1.7.24"
45
48
  },
46
49
  "peerDependencies": {
@@ -48,5 +51,5 @@
48
51
  "react": "*",
49
52
  "react-dom": "*"
50
53
  },
51
- "gitHead": "18dbf3d65450fa350dda6d8e741683b40c2de855"
54
+ "gitHead": "d98ac68fa5d224dc68cebadc95b2a03257f698c2"
52
55
  }