@megafon/ui-core 6.4.0 → 6.4.2

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.
@@ -1 +1,4 @@
1
- <svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M29.188 40.75l2.625-9.752-.42-.407A16.63 16.63 0 0020 26.312a16.642 16.642 0 00-11.393 4.292l-.42.394 2.626 9.752h18.374zM12.125 15.813a7.875 7.875 0 1015.75 0 7.875 7.875 0 00-15.75 0z"/></svg>
1
+ <svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M29.1875 40.75L31.8125 30.9981L31.3925 30.5913C28.272 27.7768 24.2017 26.2481 20 26.3125C15.7967 26.253 11.7267 27.7863 8.6075 30.6044L8.1875 30.9981L10.8125 40.75H29.1875Z" />
3
+ <path d="M12.125 15.8125C12.125 17.37 12.5869 18.8926 13.4522 20.1876C14.3175 21.4827 15.5474 22.492 16.9864 23.0881C18.4253 23.6841 20.0087 23.84 21.5363 23.5362C23.0639 23.2323 24.4671 22.4823 25.5685 21.381C26.6698 20.2796 27.4198 18.8764 27.7237 17.3488C28.0275 15.8212 27.8716 14.2378 27.2756 12.7989C26.6795 11.3599 25.6702 10.13 24.3751 9.26468C23.0801 8.39936 21.5575 7.9375 20 7.9375C17.9114 7.9375 15.9084 8.76719 14.4315 10.244C12.9547 11.7209 12.125 13.7239 12.125 15.8125Z" />
4
+ </svg>
@@ -48,6 +48,9 @@
48
48
  .mfui-v6-button_size-all_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
49
49
  margin-right: 2px;
50
50
  }
51
+ .mfui-v6-button_size-all_extra-small .mfui-v6-button__icon-arrow {
52
+ margin-left: 0;
53
+ }
51
54
  .mfui-v6-button_size-all_small {
52
55
  min-width: 40px;
53
56
  height: 40px;
@@ -117,6 +120,9 @@
117
120
  .mfui-v6-button_size-desktop_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
118
121
  margin-right: 2px;
119
122
  }
123
+ .mfui-v6-button_size-desktop_extra-small .mfui-v6-button__icon-arrow {
124
+ margin-left: 0;
125
+ }
120
126
  .mfui-v6-button_size-desktop_small {
121
127
  min-width: 40px;
122
128
  height: 40px;
@@ -187,6 +193,9 @@
187
193
  .mfui-v6-button_size-wide_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
188
194
  margin-right: 2px;
189
195
  }
196
+ .mfui-v6-button_size-wide_extra-small .mfui-v6-button__icon-arrow {
197
+ margin-left: 0;
198
+ }
190
199
  .mfui-v6-button_size-wide_small {
191
200
  min-width: 40px;
192
201
  height: 40px;
@@ -257,6 +266,9 @@
257
266
  .mfui-v6-button_size-tablet_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
258
267
  margin-right: 2px;
259
268
  }
269
+ .mfui-v6-button_size-tablet_extra-small .mfui-v6-button__icon-arrow {
270
+ margin-left: 0;
271
+ }
260
272
  .mfui-v6-button_size-tablet_small {
261
273
  min-width: 40px;
262
274
  height: 40px;
@@ -327,6 +339,9 @@
327
339
  .mfui-v6-button_size-mobile_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
328
340
  margin-right: 2px;
329
341
  }
342
+ .mfui-v6-button_size-mobile_extra-small .mfui-v6-button__icon-arrow {
343
+ margin-left: 0;
344
+ }
330
345
  .mfui-v6-button_size-mobile_small {
331
346
  min-width: 40px;
332
347
  height: 40px;
@@ -33,7 +33,7 @@ var Collapse = function Collapse(_ref) {
33
33
  var duration = animation ? animationDuration : 0;
34
34
  var animationStart = React.useRef(null);
35
35
  var animationId = React.useRef(null);
36
- var canUpdate = React.useRef(false);
36
+ var isBeforeOpened = React.useRef(false);
37
37
  var rootNode = React.useRef(null);
38
38
  useEffect(function () {
39
39
  animationId.current && window.cancelAnimationFrame(animationId.current);
@@ -76,28 +76,14 @@ var Collapse = function Collapse(_ref) {
76
76
  var _rootNode$current$scr = rootNode.current.scrollHeight,
77
77
  scrollHeight = _rootNode$current$scr === void 0 ? 0 : _rootNode$current$scr;
78
78
 
79
- switch (true) {
80
- case !canUpdate.current && isOpened:
81
- rootNode.current.style.height = 'auto';
82
- break;
83
-
84
- case !canUpdate.current && !isOpened:
85
- rootNode.current.style.height = '0px';
86
- break;
87
-
88
- case isOpened:
89
- animationId.current = window.requestAnimationFrame(function (timePassed) {
90
- return animateSlide(scrollHeight, duration, timePassed, true);
91
- });
92
- break;
93
-
94
- default:
95
- animationId.current = window.requestAnimationFrame(function (timePassed) {
96
- return animateSlide(scrollHeight, duration, timePassed);
97
- });
79
+ if (isBeforeOpened.current === isOpened) {
80
+ rootNode.current.style.height = isOpened ? 'auto' : '0px';
81
+ } else {
82
+ animationId.current = window.requestAnimationFrame(function (timePassed) {
83
+ return animateSlide(scrollHeight, duration, timePassed, isOpened);
84
+ });
85
+ isBeforeOpened.current = isOpened;
98
86
  }
99
-
100
- canUpdate.current = true;
101
87
  }, [isOpened, duration, animateSlide]);
102
88
  return /*#__PURE__*/React.createElement("div", _extends({}, filterDataAttrs(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.root), {
103
89
  className: cn([className]),
@@ -1 +1,3 @@
1
- <svg viewBox="0 0 14 12" xmlns="http://www.w3.org/2000/svg"><path d="M4.523 8.368L12.386 0 14 1.914 4.523 12 0 7.187l1.614-1.914 2.909 3.095z"/></svg>
1
+ <svg viewBox="0 0 14 12" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.5228 8.36841L12.386 0L14 1.91387L4.5228 12L0 7.1866L1.61401 5.27272L4.5228 8.36841Z"/>
3
+ </svg>
@@ -88,6 +88,7 @@ h5 {
88
88
  justify-content: space-between;
89
89
  min-height: 64px;
90
90
  padding: 12px 16px 12px 12px;
91
+ border: 2px solid var(--stcWhite10);
91
92
  background-color: var(--content);
92
93
  opacity: 0;
93
94
  -webkit-animation: 200ms linear 200ms 1 forwards snackbar-show;
@@ -1 +1,4 @@
1
- <svg width="12" height="12" xmlns="http://www.w3.org/2000/svg"><path d="M1 11L11 1M7 11l4-4"/></svg>
1
+ <svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 11L11 1" stroke-opacity="0.2" stroke-width="2" stroke-linecap="round"/>
3
+ <path d="M7 11L11 7" stroke-opacity="0.2" stroke-width="2" stroke-linecap="round"/>
4
+ </svg>
@@ -1 +1,4 @@
1
- <svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M29.188 40.75l2.625-9.752-.42-.407A16.63 16.63 0 0020 26.312a16.642 16.642 0 00-11.393 4.292l-.42.394 2.626 9.752h18.374zM12.125 15.813a7.875 7.875 0 1015.75 0 7.875 7.875 0 00-15.75 0z"/></svg>
1
+ <svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M29.1875 40.75L31.8125 30.9981L31.3925 30.5913C28.272 27.7768 24.2017 26.2481 20 26.3125C15.7967 26.253 11.7267 27.7863 8.6075 30.6044L8.1875 30.9981L10.8125 40.75H29.1875Z" />
3
+ <path d="M12.125 15.8125C12.125 17.37 12.5869 18.8926 13.4522 20.1876C14.3175 21.4827 15.5474 22.492 16.9864 23.0881C18.4253 23.6841 20.0087 23.84 21.5363 23.5362C23.0639 23.2323 24.4671 22.4823 25.5685 21.381C26.6698 20.2796 27.4198 18.8764 27.7237 17.3488C28.0275 15.8212 27.8716 14.2378 27.2756 12.7989C26.6795 11.3599 25.6702 10.13 24.3751 9.26468C23.0801 8.39936 21.5575 7.9375 20 7.9375C17.9114 7.9375 15.9084 8.76719 14.4315 10.244C12.9547 11.7209 12.125 13.7239 12.125 15.8125Z" />
4
+ </svg>
@@ -48,6 +48,9 @@
48
48
  .mfui-v6-button_size-all_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
49
49
  margin-right: 2px;
50
50
  }
51
+ .mfui-v6-button_size-all_extra-small .mfui-v6-button__icon-arrow {
52
+ margin-left: 0;
53
+ }
51
54
  .mfui-v6-button_size-all_small {
52
55
  min-width: 40px;
53
56
  height: 40px;
@@ -117,6 +120,9 @@
117
120
  .mfui-v6-button_size-desktop_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
118
121
  margin-right: 2px;
119
122
  }
123
+ .mfui-v6-button_size-desktop_extra-small .mfui-v6-button__icon-arrow {
124
+ margin-left: 0;
125
+ }
120
126
  .mfui-v6-button_size-desktop_small {
121
127
  min-width: 40px;
122
128
  height: 40px;
@@ -187,6 +193,9 @@
187
193
  .mfui-v6-button_size-wide_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
188
194
  margin-right: 2px;
189
195
  }
196
+ .mfui-v6-button_size-wide_extra-small .mfui-v6-button__icon-arrow {
197
+ margin-left: 0;
198
+ }
190
199
  .mfui-v6-button_size-wide_small {
191
200
  min-width: 40px;
192
201
  height: 40px;
@@ -257,6 +266,9 @@
257
266
  .mfui-v6-button_size-tablet_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
258
267
  margin-right: 2px;
259
268
  }
269
+ .mfui-v6-button_size-tablet_extra-small .mfui-v6-button__icon-arrow {
270
+ margin-left: 0;
271
+ }
260
272
  .mfui-v6-button_size-tablet_small {
261
273
  min-width: 40px;
262
274
  height: 40px;
@@ -327,6 +339,9 @@
327
339
  .mfui-v6-button_size-mobile_extra-small.mfui-v6-button_content-type_icon-text .mfui-v6-button__icon {
328
340
  margin-right: 2px;
329
341
  }
342
+ .mfui-v6-button_size-mobile_extra-small .mfui-v6-button__icon-arrow {
343
+ margin-left: 0;
344
+ }
330
345
  .mfui-v6-button_size-mobile_small {
331
346
  min-width: 40px;
332
347
  height: 40px;
@@ -50,7 +50,7 @@ var Collapse = function Collapse(_ref) {
50
50
  var duration = animation ? animationDuration : 0;
51
51
  var animationStart = React.useRef(null);
52
52
  var animationId = React.useRef(null);
53
- var canUpdate = React.useRef(false);
53
+ var isBeforeOpened = React.useRef(false);
54
54
  var rootNode = React.useRef(null);
55
55
  (0, React.useEffect)(function () {
56
56
  animationId.current && window.cancelAnimationFrame(animationId.current);
@@ -93,28 +93,14 @@ var Collapse = function Collapse(_ref) {
93
93
  var _rootNode$current$scr = rootNode.current.scrollHeight,
94
94
  scrollHeight = _rootNode$current$scr === void 0 ? 0 : _rootNode$current$scr;
95
95
 
96
- switch (true) {
97
- case !canUpdate.current && isOpened:
98
- rootNode.current.style.height = 'auto';
99
- break;
100
-
101
- case !canUpdate.current && !isOpened:
102
- rootNode.current.style.height = '0px';
103
- break;
104
-
105
- case isOpened:
106
- animationId.current = window.requestAnimationFrame(function (timePassed) {
107
- return animateSlide(scrollHeight, duration, timePassed, true);
108
- });
109
- break;
110
-
111
- default:
112
- animationId.current = window.requestAnimationFrame(function (timePassed) {
113
- return animateSlide(scrollHeight, duration, timePassed);
114
- });
96
+ if (isBeforeOpened.current === isOpened) {
97
+ rootNode.current.style.height = isOpened ? 'auto' : '0px';
98
+ } else {
99
+ animationId.current = window.requestAnimationFrame(function (timePassed) {
100
+ return animateSlide(scrollHeight, duration, timePassed, isOpened);
101
+ });
102
+ isBeforeOpened.current = isOpened;
115
103
  }
116
-
117
- canUpdate.current = true;
118
104
  }, [isOpened, duration, animateSlide]);
119
105
  return /*#__PURE__*/React.createElement("div", (0, _extends2["default"])({}, (0, _uiHelpers.filterDataAttrs)(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.root), {
120
106
  className: cn([className]),
@@ -1 +1,3 @@
1
- <svg viewBox="0 0 14 12" xmlns="http://www.w3.org/2000/svg"><path d="M4.523 8.368L12.386 0 14 1.914 4.523 12 0 7.187l1.614-1.914 2.909 3.095z"/></svg>
1
+ <svg viewBox="0 0 14 12" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.5228 8.36841L12.386 0L14 1.91387L4.5228 12L0 7.1866L1.61401 5.27272L4.5228 8.36841Z"/>
3
+ </svg>
@@ -88,6 +88,7 @@ h5 {
88
88
  justify-content: space-between;
89
89
  min-height: 64px;
90
90
  padding: 12px 16px 12px 12px;
91
+ border: 2px solid var(--stcWhite10);
91
92
  background-color: var(--content);
92
93
  opacity: 0;
93
94
  -webkit-animation: 200ms linear 200ms 1 forwards snackbar-show;
@@ -1 +1,4 @@
1
- <svg width="12" height="12" xmlns="http://www.w3.org/2000/svg"><path d="M1 11L11 1M7 11l4-4"/></svg>
1
+ <svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 11L11 1" stroke-opacity="0.2" stroke-width="2" stroke-linecap="round"/>
3
+ <path d="M7 11L11 7" stroke-opacity="0.2" stroke-width="2" stroke-linecap="round"/>
4
+ </svg>
package/package.json CHANGED
@@ -1,103 +1,103 @@
1
1
  {
2
- "name": "@megafon/ui-core",
3
- "version": "6.4.0",
4
- "files": [
5
- "dist",
6
- "styles"
7
- ],
8
- "main": "dist/lib/index.js",
9
- "module": "dist/es/index.js",
10
- "typings": "dist/lib/index.d.ts",
11
- "sideEffects": [
12
- "*.css",
13
- "*.less"
14
- ],
15
- "author": "MegaFon",
16
- "license": "MIT",
17
- "scripts": {
18
- "build": "gulp build",
19
- "cleanDist": "rm -rf dist styles",
20
- "coverage": "yarn coverage:unit",
21
- "coverage:unit": "jest --coverage",
22
- "typecheck": "tsc --noEmit -p .",
23
- "prettier:check": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx}\"",
24
- "prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
25
- "lint": "yarn lint:ts && yarn lint:less",
26
- "lint:ts": "eslint --ext .js,.jsx,.ts,.tsx src --max-warnings=0",
27
- "lint:less": "stylelint --syntax less src/**/*.less src/**/**/*.less",
28
- "lint:less:fix": "yarn lint:less --fix",
29
- "test": "yarn test:unit",
30
- "test:unit": "jest",
31
- "test:update": "jest --updateSnapshot"
32
- },
33
- "publishConfig": {
34
- "access": "public"
35
- },
36
- "lint-staged": {
37
- "src/**/**/*.(js|jsx|ts|tsx)": [
38
- "eslint --max-warnings=0 --config ../../.eslintrc.json"
39
- ]
40
- },
41
- "peerDependencies": {
42
- "@megafon/ui-icons": "^2.0.0",
43
- "react": ">=16.13.0",
44
- "react-dom": ">=16.13.0"
45
- },
46
- "devDependencies": {
47
- "@babel/core": "^7.8.6",
48
- "@babel/plugin-transform-object-assign": "^7.8.3",
49
- "@babel/plugin-transform-runtime": "^7.8.3",
50
- "@babel/preset-env": "^7.8.6",
51
- "@babel/preset-react": "^7.8.3",
52
- "@babel/preset-typescript": "^7.8.3",
53
- "@megafon/ui-icons": "^2.29.0",
54
- "@svgr/core": "^2.4.1",
55
- "@testing-library/jest-dom": "5.16.2",
56
- "@testing-library/react": "12.1.2",
57
- "@testing-library/react-hooks": "^7.0.1",
58
- "@testing-library/user-event": "13.5.0",
59
- "@types/enzyme": "^3.10.5",
60
- "@types/enzyme-adapter-react-16": "^1.0.6",
61
- "@types/jest": "^25.1.3",
62
- "@types/node": "^13.9.1",
63
- "@types/prop-types": "^15.7.3",
64
- "@types/react": "^16.9.23",
65
- "@types/react-dom": "^16.9.5",
66
- "babel-plugin-module-resolver": "^3.2.0",
67
- "del": "^3.0.0",
68
- "enzyme": "^3.11.0",
69
- "enzyme-adapter-react-16": "^1.15.2",
70
- "enzyme-to-json": "^3.4.4",
71
- "glob": "^7.1.6",
72
- "gulp": "^4.0.2",
73
- "gulp-babel": "^8.0.0-beta.2",
74
- "gulp-imagemin": "^7.1.0",
75
- "gulp-less": "^4.0.1",
76
- "gulp-typescript": "^5.0.1",
77
- "jest": "^25.1.0",
78
- "less-plugin-autoprefix": "^2.0.0",
79
- "merge2": "^1.3.0",
80
- "react": "^16.13.0",
81
- "react-dom": "^16.13.0",
82
- "stylelint": "^9.10.1",
83
- "through2": "^2.0.5",
84
- "typescript": "^3.8.3"
85
- },
86
- "dependencies": {
87
- "@babel/runtime": "^7.8.4",
88
- "@datepicker-react/hooks": "^2.7.0",
89
- "@dnd-kit/core": "^6.1.0",
90
- "@dnd-kit/sortable": "^8.0.0",
91
- "@megafon/ui-helpers": "^2.6.0",
92
- "@popperjs/core": "^2.5.3",
93
- "core-js": "^3.6.4",
94
- "date-fns": "^2.16.1",
95
- "lodash.debounce": "^4.0.8",
96
- "lodash.throttle": "^4.1.1",
97
- "prop-types": "^15.7.2",
98
- "react-input-mask": "^2.0.4",
99
- "react-popper": "^2.2.3",
100
- "swiper": "^6.5.6"
101
- },
102
- "gitHead": "b1eeb93c7ce3fb201938cc46130367d0334c2914"
2
+ "name": "@megafon/ui-core",
3
+ "version": "6.4.2",
4
+ "files": [
5
+ "dist",
6
+ "styles"
7
+ ],
8
+ "main": "dist/lib/index.js",
9
+ "module": "dist/es/index.js",
10
+ "typings": "dist/lib/index.d.ts",
11
+ "sideEffects": [
12
+ "*.css",
13
+ "*.less"
14
+ ],
15
+ "author": "MegaFon",
16
+ "license": "MIT",
17
+ "scripts": {
18
+ "build": "gulp build",
19
+ "cleanDist": "rm -rf dist styles",
20
+ "coverage": "yarn coverage:unit",
21
+ "coverage:unit": "jest --coverage",
22
+ "typecheck": "tsc --noEmit -p .",
23
+ "prettier:check": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx}\"",
24
+ "prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
25
+ "lint": "yarn lint:ts && yarn lint:less",
26
+ "lint:ts": "eslint --ext .js,.jsx,.ts,.tsx src --max-warnings=0",
27
+ "lint:less": "stylelint --syntax less src/**/*.less src/**/**/*.less",
28
+ "lint:less:fix": "yarn lint:less --fix",
29
+ "test": "yarn test:unit",
30
+ "test:unit": "jest",
31
+ "test:update": "jest --updateSnapshot"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "lint-staged": {
37
+ "src/**/**/*.(js|jsx|ts|tsx)": [
38
+ "eslint --max-warnings=0 --config ../../.eslintrc.json"
39
+ ]
40
+ },
41
+ "peerDependencies": {
42
+ "@megafon/ui-icons": "^2.0.0",
43
+ "react": ">=16.13.0",
44
+ "react-dom": ">=16.13.0"
45
+ },
46
+ "devDependencies": {
47
+ "@babel/core": "^7.8.6",
48
+ "@babel/plugin-transform-object-assign": "^7.8.3",
49
+ "@babel/plugin-transform-runtime": "^7.8.3",
50
+ "@babel/preset-env": "^7.8.6",
51
+ "@babel/preset-react": "^7.8.3",
52
+ "@babel/preset-typescript": "^7.8.3",
53
+ "@megafon/ui-icons": "^2.30.0",
54
+ "@svgr/core": "^2.4.1",
55
+ "@testing-library/jest-dom": "5.16.2",
56
+ "@testing-library/react": "12.1.2",
57
+ "@testing-library/react-hooks": "^7.0.1",
58
+ "@testing-library/user-event": "13.5.0",
59
+ "@types/enzyme": "^3.10.5",
60
+ "@types/enzyme-adapter-react-16": "^1.0.6",
61
+ "@types/jest": "^25.1.3",
62
+ "@types/node": "^13.9.1",
63
+ "@types/prop-types": "^15.7.3",
64
+ "@types/react": "^16.9.23",
65
+ "@types/react-dom": "^16.9.5",
66
+ "babel-plugin-module-resolver": "^3.2.0",
67
+ "del": "^3.0.0",
68
+ "enzyme": "^3.11.0",
69
+ "enzyme-adapter-react-16": "^1.15.2",
70
+ "enzyme-to-json": "^3.4.4",
71
+ "glob": "^7.1.6",
72
+ "gulp": "^4.0.2",
73
+ "gulp-babel": "^8.0.0-beta.2",
74
+ "gulp-imagemin": "^7.1.0",
75
+ "gulp-less": "^4.0.1",
76
+ "gulp-typescript": "^5.0.1",
77
+ "jest": "^25.1.0",
78
+ "less-plugin-autoprefix": "^2.0.0",
79
+ "merge2": "^1.3.0",
80
+ "react": "^16.13.0",
81
+ "react-dom": "^16.13.0",
82
+ "stylelint": "^9.10.1",
83
+ "through2": "^2.0.5",
84
+ "typescript": "^3.8.3"
85
+ },
86
+ "dependencies": {
87
+ "@babel/runtime": "^7.8.4",
88
+ "@datepicker-react/hooks": "^2.7.0",
89
+ "@dnd-kit/core": "^6.1.0",
90
+ "@dnd-kit/sortable": "^8.0.0",
91
+ "@megafon/ui-helpers": "^2.6.0",
92
+ "@popperjs/core": "^2.5.3",
93
+ "core-js": "^3.6.4",
94
+ "date-fns": "^2.16.1",
95
+ "lodash.debounce": "^4.0.8",
96
+ "lodash.throttle": "^4.1.1",
97
+ "prop-types": "^15.7.2",
98
+ "react-input-mask": "^2.0.4",
99
+ "react-popper": "^2.2.3",
100
+ "swiper": "^6.5.6"
101
+ },
102
+ "gitHead": "fea7e711b2427c835cd6ec8016df37d7996ef4de"
103
103
  }