@gravity-ui/page-constructor 3.11.0 → 3.12.0

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 (87) hide show
  1. package/README.md +6 -6
  2. package/build/cjs/components/Media/Image/Image.js +3 -2
  3. package/build/cjs/hooks/useHeightCalculator.js +1 -1
  4. package/build/cjs/models/navigation.d.ts +3 -2
  5. package/build/{esm/navigation/components/Header/Header.css → cjs/navigation/components/DesktopNavigation/DesktopNavigation.css} +28 -36
  6. package/build/cjs/navigation/components/DesktopNavigation/DesktopNavigation.d.ts +4 -0
  7. package/build/cjs/navigation/components/DesktopNavigation/DesktopNavigation.js +21 -0
  8. package/build/cjs/navigation/components/MobileMenuButton/MobileMenuButton.css +7 -0
  9. package/build/cjs/navigation/components/MobileMenuButton/MobileMenuButton.d.ts +3 -0
  10. package/build/cjs/navigation/components/MobileMenuButton/MobileMenuButton.js +15 -0
  11. package/build/cjs/navigation/components/MobileNavigation/MobileNavigation.css +10 -5
  12. package/build/cjs/navigation/components/MobileNavigation/MobileNavigation.d.ts +1 -10
  13. package/build/cjs/navigation/components/MobileNavigation/MobileNavigation.js +7 -30
  14. package/build/cjs/navigation/components/Navigation/Navigation.css +8 -13
  15. package/build/cjs/navigation/components/Navigation/Navigation.d.ts +4 -7
  16. package/build/cjs/navigation/components/Navigation/Navigation.js +37 -15
  17. package/build/cjs/navigation/components/NavigationItem/NavigationItem.css +28 -0
  18. package/build/cjs/navigation/components/NavigationItem/NavigationItem.d.ts +3 -9
  19. package/build/cjs/navigation/components/NavigationItem/NavigationItem.js +15 -6
  20. package/build/cjs/navigation/components/NavigationItem/components/GithubButton/GithubButton.d.ts +1 -1
  21. package/build/cjs/navigation/components/NavigationItem/components/NavigationButton/NavigationButton.d.ts +1 -1
  22. package/build/cjs/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.d.ts +5 -4
  23. package/build/cjs/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.js +12 -7
  24. package/build/cjs/navigation/components/NavigationItem/components/NavigationLink/NavigationLink.d.ts +1 -1
  25. package/build/cjs/navigation/components/NavigationList/NavigationList.d.ts +3 -0
  26. package/build/cjs/navigation/components/NavigationList/NavigationList.js +11 -0
  27. package/build/cjs/navigation/components/NavigationListItem/NavigationListItem.d.ts +4 -13
  28. package/build/cjs/navigation/components/NavigationListItem/NavigationListItem.js +6 -13
  29. package/build/cjs/navigation/components/NavigationPopup/NavigationPopup.css +5 -4
  30. package/build/cjs/navigation/components/NavigationPopup/NavigationPopup.d.ts +1 -8
  31. package/build/cjs/navigation/components/NavigationPopup/NavigationPopup.js +6 -6
  32. package/build/cjs/navigation/containers/Layout/Layout.js +2 -2
  33. package/build/cjs/navigation/models.d.ts +63 -0
  34. package/build/cjs/navigation/{constants.js → models.js} +7 -1
  35. package/build/cjs/navigation/utils.d.ts +11 -1
  36. package/build/cjs/navigation/utils.js +19 -1
  37. package/build/esm/components/Media/Image/Image.js +3 -2
  38. package/build/esm/hooks/useHeightCalculator.js +1 -1
  39. package/build/esm/models/navigation.d.ts +3 -2
  40. package/build/{cjs/navigation/components/Header/Header.css → esm/navigation/components/DesktopNavigation/DesktopNavigation.css} +28 -36
  41. package/build/esm/navigation/components/DesktopNavigation/DesktopNavigation.d.ts +5 -0
  42. package/build/esm/navigation/components/DesktopNavigation/DesktopNavigation.js +19 -0
  43. package/build/esm/navigation/components/MobileMenuButton/MobileMenuButton.css +7 -0
  44. package/build/esm/navigation/components/MobileMenuButton/MobileMenuButton.d.ts +4 -0
  45. package/build/esm/navigation/components/MobileMenuButton/MobileMenuButton.js +11 -0
  46. package/build/esm/navigation/components/MobileNavigation/MobileNavigation.css +10 -5
  47. package/build/esm/navigation/components/MobileNavigation/MobileNavigation.d.ts +1 -10
  48. package/build/esm/navigation/components/MobileNavigation/MobileNavigation.js +9 -31
  49. package/build/esm/navigation/components/Navigation/Navigation.css +8 -13
  50. package/build/esm/navigation/components/Navigation/Navigation.d.ts +4 -7
  51. package/build/esm/navigation/components/Navigation/Navigation.js +35 -15
  52. package/build/esm/navigation/components/NavigationItem/NavigationItem.css +28 -0
  53. package/build/esm/navigation/components/NavigationItem/NavigationItem.d.ts +4 -9
  54. package/build/esm/navigation/components/NavigationItem/NavigationItem.js +16 -6
  55. package/build/esm/navigation/components/NavigationItem/components/GithubButton/GithubButton.d.ts +1 -1
  56. package/build/esm/navigation/components/NavigationItem/components/NavigationButton/NavigationButton.d.ts +1 -1
  57. package/build/esm/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.d.ts +5 -4
  58. package/build/esm/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.js +12 -7
  59. package/build/esm/navigation/components/NavigationItem/components/NavigationLink/NavigationLink.d.ts +1 -1
  60. package/build/esm/navigation/components/NavigationList/NavigationList.d.ts +3 -0
  61. package/build/esm/navigation/components/NavigationList/NavigationList.js +7 -0
  62. package/build/esm/navigation/components/NavigationListItem/NavigationListItem.d.ts +4 -14
  63. package/build/esm/navigation/components/NavigationListItem/NavigationListItem.js +5 -10
  64. package/build/esm/navigation/components/NavigationPopup/NavigationPopup.css +5 -4
  65. package/build/esm/navigation/components/NavigationPopup/NavigationPopup.d.ts +1 -8
  66. package/build/esm/navigation/components/NavigationPopup/NavigationPopup.js +6 -6
  67. package/build/esm/navigation/containers/Layout/Layout.js +2 -2
  68. package/build/esm/navigation/models.d.ts +63 -0
  69. package/build/esm/navigation/{constants.js → models.js} +6 -0
  70. package/build/esm/navigation/utils.d.ts +11 -1
  71. package/build/esm/navigation/utils.js +17 -0
  72. package/package.json +20 -12
  73. package/server/models/navigation.d.ts +3 -2
  74. package/widget/index.js +1 -1
  75. package/CHANGELOG.md +0 -1484
  76. package/build/cjs/navigation/components/Header/Header.d.ts +0 -8
  77. package/build/cjs/navigation/components/Header/Header.js +0 -86
  78. package/build/cjs/navigation/components/NavigationDropdownItem/NavigationDropdownItem.d.ts +0 -11
  79. package/build/cjs/navigation/components/NavigationDropdownItem/NavigationDropdownItem.js +0 -15
  80. package/build/cjs/navigation/components/NavigationListItem/NavigationListItem.css +0 -27
  81. package/build/cjs/navigation/constants.d.ts +0 -6
  82. package/build/esm/navigation/components/Header/Header.d.ts +0 -9
  83. package/build/esm/navigation/components/Header/Header.js +0 -82
  84. package/build/esm/navigation/components/NavigationDropdownItem/NavigationDropdownItem.d.ts +0 -11
  85. package/build/esm/navigation/components/NavigationDropdownItem/NavigationDropdownItem.js +0 -13
  86. package/build/esm/navigation/components/NavigationListItem/NavigationListItem.css +0 -27
  87. package/build/esm/navigation/constants.d.ts +0 -6
package/CHANGELOG.md DELETED
@@ -1,1484 +0,0 @@
1
- # Changelog
2
-
3
-
4
- ## [3.11.0](https://github.com/gravity-ui/page-constructor/compare/v3.10.3...v3.11.0) (2023-07-20)
5
-
6
-
7
- ### Features
8
-
9
- * add editor mobile devices emulation ([#445](https://github.com/gravity-ui/page-constructor/issues/445)) ([ca97083](https://github.com/gravity-ui/page-constructor/commit/ca97083c7650f03f33853cdddebe07facf59cfa1))
10
-
11
- ## [3.10.4](https://github.com/gravity-ui/page-constructor/compare/v3.10.3...v3.10.4) (2023-07-20)
12
-
13
-
14
- ### Features
15
-
16
- * editor mobile devices emulation added ([#437](https://github.com/gravity-ui/page-constructor/commit/4f284ce61c6ae4e3f3ca6cf74bdbf6bb5082750f))
17
-
18
- ## [3.10.3](https://github.com/gravity-ui/page-constructor/compare/v3.10.2...v3.10.3) (2023-07-12)
19
-
20
-
21
- ### Bug Fixes
22
-
23
- * html semantic, block tag should be in block tag ([#442](https://github.com/gravity-ui/page-constructor/issues/442)) ([3b46ff4](https://github.com/gravity-ui/page-constructor/commit/3b46ff436605a81e45ced89323beba14c1e8340d))
24
-
25
- ## [3.10.2](https://github.com/gravity-ui/page-constructor/compare/v3.10.1...v3.10.2) (2023-07-07)
26
-
27
-
28
- ### Bug Fixes
29
-
30
- * removed check on block tag in YFMWrapper and second check buttons in HeaderBlock ([#440](https://github.com/gravity-ui/page-constructor/issues/440)) ([90452cf](https://github.com/gravity-ui/page-constructor/commit/90452cf2b8d5dda00b2650c28ab7184a87a4023b))
31
-
32
- ## [3.10.1](https://github.com/gravity-ui/page-constructor/compare/v3.10.0...v3.10.1) (2023-07-07)
33
-
34
-
35
- ### Bug Fixes
36
-
37
- * block styles specificity ([#438](https://github.com/gravity-ui/page-constructor/issues/438)) ([177996c](https://github.com/gravity-ui/page-constructor/commit/177996c30cd88ee030bc5e2d41ec9555e84d91a4))
38
-
39
- ## [3.10.0](https://github.com/gravity-ui/page-constructor/compare/v3.9.2...v3.10.0) (2023-07-04)
40
-
41
-
42
- ### Features
43
-
44
- * add not found block dummy and refactor ([#435](https://github.com/gravity-ui/page-constructor/issues/435)) ([610df6a](https://github.com/gravity-ui/page-constructor/commit/610df6a65a307d357a3e2f39d401972ed595974a))
45
-
46
-
47
- ### Bug Fixes
48
-
49
- * fix extention extraction for image isCompressible util ([#401](https://github.com/gravity-ui/page-constructor/issues/401)) ([5eea616](https://github.com/gravity-ui/page-constructor/commit/5eea6162854f507e7402dd943ebb8b111dcac53d))
50
-
51
- ## [3.9.2](https://github.com/gravity-ui/page-constructor/compare/v3.9.1...v3.9.2) (2023-06-28)
52
-
53
-
54
- ### Bug Fixes
55
-
56
- * regex to match child content on block tags ([#433](https://github.com/gravity-ui/page-constructor/issues/433)) ([a4d4129](https://github.com/gravity-ui/page-constructor/commit/a4d4129af7d1b82e149ee6ced215d5733ad1b2f7))
57
-
58
- ## [3.9.1](https://github.com/gravity-ui/page-constructor/compare/v3.9.0...v3.9.1) (2023-06-28)
59
-
60
-
61
- ### Bug Fixes
62
-
63
- * header description displaying with ssr ([#431](https://github.com/gravity-ui/page-constructor/issues/431)) ([9c094dc](https://github.com/gravity-ui/page-constructor/commit/9c094dc7550d483cedd6b5611e0902b0d7aa27e1))
64
-
65
- ## [3.9.0](https://github.com/gravity-ui/page-constructor/compare/v3.8.3...v3.9.0) (2023-06-27)
66
-
67
-
68
- ### Features
69
-
70
- * add content filtration utils ([6cf8038](https://github.com/gravity-ui/page-constructor/commit/6cf803818a222eed964f5e24960ad99a567adc1e))
71
- * add transform when variables handling ([#427](https://github.com/gravity-ui/page-constructor/issues/427)) ([6cf8038](https://github.com/gravity-ui/page-constructor/commit/6cf803818a222eed964f5e24960ad99a567adc1e))
72
-
73
- ## [3.8.3](https://github.com/gravity-ui/page-constructor/compare/v3.8.2...v3.8.3) (2023-06-27)
74
-
75
-
76
- ### Bug Fixes
77
-
78
- * editor form style indent ([#428](https://github.com/gravity-ui/page-constructor/issues/428)) ([3fc6da7](https://github.com/gravity-ui/page-constructor/commit/3fc6da73f7e724aaa4e8f22a45228f1a2cc4dc81))
79
-
80
- ## [3.8.2](https://github.com/gravity-ui/page-constructor/compare/v3.8.1...v3.8.2) (2023-06-23)
81
-
82
-
83
- ### Bug Fixes
84
-
85
- * quote validation ([#402](https://github.com/gravity-ui/page-constructor/issues/402)) ([3920561](https://github.com/gravity-ui/page-constructor/commit/3920561ebe0bac727826caf690d06d74d7affaef))
86
-
87
- ## [3.8.1](https://github.com/gravity-ui/page-constructor/compare/v3.8.0...v3.8.1) (2023-06-22)
88
-
89
-
90
- ### Bug Fixes
91
-
92
- * semantic markup ([#416](https://github.com/gravity-ui/page-constructor/issues/416)) ([1fd532c](https://github.com/gravity-ui/page-constructor/commit/1fd532ca0bcc2e6cd1f030b17be743c27fb2cf73))
93
-
94
- ## [3.8.0](https://github.com/gravity-ui/page-constructor/compare/v3.7.0...v3.8.0) (2023-06-22)
95
-
96
-
97
- ### Features
98
-
99
- * add yfm transoform for editor demo ([#420](https://github.com/gravity-ui/page-constructor/issues/420)) ([1c1a2aa](https://github.com/gravity-ui/page-constructor/commit/1c1a2aa134a3c4d18e01537c1ca874720f23649d))
100
- * update dynamic forms and fix form render performance ([#418](https://github.com/gravity-ui/page-constructor/issues/418)) ([eb9437d](https://github.com/gravity-ui/page-constructor/commit/eb9437df0d38a9a3433e85d111c45b3a49dbd9aa))
101
-
102
- ## [3.7.0](https://github.com/gravity-ui/page-constructor/compare/v3.6.2...v3.7.0) (2023-06-21)
103
-
104
-
105
- ### Features
106
-
107
- * **Tabs:** provide an to change tab text size ([#417](https://github.com/gravity-ui/page-constructor/issues/417)) ([005a686](https://github.com/gravity-ui/page-constructor/commit/005a68662ecc29ee07eff7d958a27842c38206f7))
108
-
109
- ## [3.6.2](https://github.com/gravity-ui/page-constructor/compare/v3.6.1...v3.6.2) (2023-06-19)
110
-
111
-
112
- ### Bug Fixes
113
-
114
- * block base inner types ([#413](https://github.com/gravity-ui/page-constructor/issues/413)) ([616d387](https://github.com/gravity-ui/page-constructor/commit/616d387833330ec7ef4cddc0f2f31d164d4a1477))
115
-
116
- ## [3.6.1](https://github.com/gravity-ui/page-constructor/compare/v3.6.0...v3.6.1) (2023-06-19)
117
-
118
-
119
- ### Bug Fixes
120
-
121
- * downgrade dynamic forms to working ver ([#411](https://github.com/gravity-ui/page-constructor/issues/411)) ([d6634f0](https://github.com/gravity-ui/page-constructor/commit/d6634f0f3d51cdd24eebf408604da7cdc92aa0b3))
122
-
123
- ## [3.6.0](https://github.com/gravity-ui/page-constructor/compare/v3.5.0...v3.6.0) (2023-06-19)
124
-
125
-
126
- ### Features
127
-
128
- * add exeptions for typograf rules ([#397](https://github.com/gravity-ui/page-constructor/issues/397)) ([16490a1](https://github.com/gravity-ui/page-constructor/commit/16490a1df289baf1d922d4821823638ccd43a0c1))
129
-
130
- ## [3.5.0](https://github.com/gravity-ui/page-constructor/compare/v3.4.0...v3.5.0) (2023-06-19)
131
-
132
-
133
- ### Features
134
-
135
- * add subpath exports and fix editor form deps ([#407](https://github.com/gravity-ui/page-constructor/issues/407)) ([90ed4b5](https://github.com/gravity-ui/page-constructor/commit/90ed4b51fc30f4a2c25d9bb49bb035f9479f6736))
136
-
137
-
138
- ### Bug Fixes
139
-
140
- * control panel icons and layout ([#406](https://github.com/gravity-ui/page-constructor/issues/406)) ([e1ecadd](https://github.com/gravity-ui/page-constructor/commit/e1ecadd4b9738e19f8eff3bf5e8e51fea4eca658))
141
-
142
- ## [3.4.0](https://github.com/gravity-ui/page-constructor/compare/v3.3.0...v3.4.0) (2023-06-16)
143
-
144
-
145
- ### Features
146
-
147
- * add editor mode switch ([#404](https://github.com/gravity-ui/page-constructor/issues/404)) ([118a369](https://github.com/gravity-ui/page-constructor/commit/118a3694459479c240ca9829c6194c1185cad4a4))
148
-
149
- ## [3.3.0](https://github.com/gravity-ui/page-constructor/compare/v3.2.0...v3.3.0) (2023-06-14)
150
-
151
-
152
- ### Features
153
-
154
- * add editor forms ([#393](https://github.com/gravity-ui/page-constructor/issues/393)) ([94fd2b2](https://github.com/gravity-ui/page-constructor/commit/94fd2b2f0f5a93d7e775be5c758a62aeecd56e8e))
155
-
156
-
157
- ### Bug Fixes
158
-
159
- * **Video:** fix schema validator ([#395](https://github.com/gravity-ui/page-constructor/issues/395)) ([0571d27](https://github.com/gravity-ui/page-constructor/commit/0571d277d902c59e546647d42c0620f8a4feb827))
160
-
161
- ## [3.2.0](https://github.com/gravity-ui/page-constructor/compare/v3.1.2...v3.2.0) (2023-06-13)
162
-
163
-
164
- ### Features
165
-
166
- * update header offset, remove unnecessary margins ([#369](https://github.com/gravity-ui/page-constructor/issues/369)) ([7757ec1](https://github.com/gravity-ui/page-constructor/commit/7757ec1b80b20b79c693b28cd3c47a7a44a2987f))
167
- * remove navigation's border by default if scroll top = 0. If you want this border by default, use prop `withBorder: true` im navigation config
168
-
169
- ## [3.1.2](https://github.com/gravity-ui/page-constructor/compare/v3.1.1...v3.1.2) (2023-06-07)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * icon size in navigation popup ([#382](https://github.com/gravity-ui/page-constructor/issues/382)) ([cb7c7b1](https://github.com/gravity-ui/page-constructor/commit/cb7c7b1031777c92f6d303c5a5f2c3de2ad1c2d8))
175
-
176
- ## [3.1.1](https://github.com/gravity-ui/page-constructor/compare/v3.1.0...v3.1.1) (2023-06-07)
177
-
178
-
179
- ### Bug Fixes
180
-
181
- * constructor items inner data structure ([#386](https://github.com/gravity-ui/page-constructor/issues/386)) ([f73ccde](https://github.com/gravity-ui/page-constructor/commit/f73ccde7369f38ec887ded7534f6907e4da8b4ac))
182
-
183
- ## [3.1.0](https://github.com/gravity-ui/page-constructor/compare/v3.0.0...v3.1.0) (2023-06-05)
184
-
185
-
186
- ### Features
187
-
188
- * add analytics to video block ([#376](https://github.com/gravity-ui/page-constructor/issues/376)) ([85510cc](https://github.com/gravity-ui/page-constructor/commit/85510cc45475c8cf12561eed0e7a5b04fc14af5f))
189
-
190
-
191
- ### Bug Fixes
192
-
193
- * rerende slider chidldren on their update ([#380](https://github.com/gravity-ui/page-constructor/issues/380)) ([65e3168](https://github.com/gravity-ui/page-constructor/commit/65e31689d1817a34de094bb383b667672878d9ff))
194
-
195
- ## [3.0.0](https://github.com/gravity-ui/page-constructor/compare/v2.22.2...v3.0.0) (2023-06-05)
196
-
197
-
198
- ### ⚠ BREAKING CHANGES
199
-
200
- * remove Preview block ([#235](https://github.com/gravity-ui/page-constructor/issues/235)), use Tabs block
201
- * remove Simple block ([#228](https://github.com/gravity-ui/page-constructor/issues/228)), use ContentLayout block
202
- * remove CardWithImage sub-block ([#236](https://github.com/gravity-ui/page-constructor/issues/236)), use LayoutItem sub-block
203
- * remove Security block ([#321](https://github.com/gravity-ui/page-constructor/issues/321)), use ContentLayout block
204
- * remove LinkTable block ([#325](https://github.com/gravity-ui/page-constructor/issues/325)), use ContentLayout block
205
- * remove TutorialCard sub-block ([#331](https://github.com/gravity-ui/page-constructor/issues/331)), use BasicCard sub-block
206
- * remove hook HeightCalculator ([#328](https://github.com/gravity-ui/page-constructor/issues/328))
207
- * remove Partner sub-block ([#335](https://github.com/gravity-ui/page-constructor/issues/335)), use BasicCard sub-block
208
- * remove NewsCard sub-block ([#342](https://github.com/gravity-ui/page-constructor/issues/342)), use BasicCard sub-block
209
- * remove component Footnotes ([#343](https://github.com/gravity-ui/page-constructor/issues/343)), use ContentLayout block
210
- * remove component BlockHeader ([#341](https://github.com/gravity-ui/page-constructor/issues/341)), use component Title
211
- * remove property `fullScreen` from components ([#366](https://github.com/gravity-ui/page-constructor/issues/366)), use property `fullscreen`
212
- * rename component FullScreenMedia to FullscreenMedia ([#366](https://github.com/gravity-ui/page-constructor/issues/366))
213
- * rename icon name FullScreen to Fullscreen ([#366](https://github.com/gravity-ui/page-constructor/issues/366))
214
- * remove property `showFullScreenIcon` from FullscreenMedia ([#366](https://github.com/gravity-ui/page-constructor/issues/366)), use property `showFullscreenIcon`
215
-
216
-
217
- ### refactor
218
-
219
- * refactor text-transform functions ([#225](https://github.com/gravity-ui/page-constructor/issues/225))
220
-
221
- ## [2.22.2](https://github.com/gravity-ui/page-constructor/compare/v2.22.1...v2.22.2) (2023-06-01)
222
-
223
-
224
- ### Bug Fixes
225
-
226
- * **MediaBlock:** add border property into schema ([#371](https://github.com/gravity-ui/page-constructor/issues/371)) ([5365791](https://github.com/gravity-ui/page-constructor/commit/5365791550bdb2ed8258d9582605e620ab0e1b11))
227
-
228
- ## [2.22.1](https://github.com/gravity-ui/page-constructor/compare/v2.22.0...v2.22.1) (2023-06-01)
229
-
230
-
231
- ### Bug Fixes
232
-
233
- * filter block nesting ([#364](https://github.com/gravity-ui/page-constructor/issues/364)) ([5b62522](https://github.com/gravity-ui/page-constructor/commit/5b62522e5e34eeacbb2fb9ec6de957bba69cd758))
234
-
235
- ## [2.22.0](https://github.com/gravity-ui/page-constructor/compare/v2.21.0...v2.22.0) (2023-05-31)
236
-
237
-
238
- ### Features
239
-
240
- * **Media:** add fullscreen video ([#345](https://github.com/gravity-ui/page-constructor/issues/345)) ([516a9a8](https://github.com/gravity-ui/page-constructor/commit/516a9a8423d710b6ecad33046121c489fa876e30))
241
-
242
- ## [2.21.0](https://github.com/gravity-ui/page-constructor/compare/v2.20.1...v2.21.0) (2023-05-29)
243
-
244
-
245
- ### Features
246
-
247
- * remove metrika goals from pixel events ([#355](https://github.com/gravity-ui/page-constructor/issues/355)) ([1a0ddae](https://github.com/gravity-ui/page-constructor/commit/1a0ddae92e4862665c64652c0da27cee9085d286))
248
-
249
- ## [2.20.1](https://github.com/gravity-ui/page-constructor/compare/v2.20.0...v2.20.1) (2023-05-29)
250
-
251
-
252
- ### Bug Fixes
253
-
254
- * editor scroll ([#352](https://github.com/gravity-ui/page-constructor/issues/352)) ([9fbbefe](https://github.com/gravity-ui/page-constructor/commit/9fbbefec311a0017eab7533b0b26bbddf97ff453))
255
-
256
- ## [2.20.0](https://github.com/gravity-ui/page-constructor/compare/v2.19.0...v2.20.0) (2023-05-25)
257
-
258
-
259
- ### Features
260
-
261
- * add page structure editor ([8d1dafe](https://github.com/gravity-ui/page-constructor/commit/8d1dafe964a9af3c7f5ad0e6039cccf2d24da64f))
262
- * Edit mode ([#347](https://github.com/gravity-ui/page-constructor/issues/347)) ([8d1dafe](https://github.com/gravity-ui/page-constructor/commit/8d1dafe964a9af3c7f5ad0e6039cccf2d24da64f))
263
-
264
-
265
- ### Bug Fixes
266
-
267
- * customization types import fix ([#350](https://github.com/gravity-ui/page-constructor/issues/350)) ([206306f](https://github.com/gravity-ui/page-constructor/commit/206306f95d87ae428538b27dca08f78cb4de9430))
268
-
269
- ## [2.19.0](https://github.com/gravity-ui/page-constructor/compare/v2.18.0...v2.19.0) (2023-05-23)
270
-
271
-
272
- ### Features
273
-
274
- * **Button:** add prop width ([#346](https://github.com/gravity-ui/page-constructor/issues/346)) ([f4b1ba8](https://github.com/gravity-ui/page-constructor/commit/f4b1ba85f56ef2de435bd91ae1fc35fbea0a177b))
275
-
276
- ## [2.18.0](https://github.com/gravity-ui/page-constructor/compare/v2.18.0...v2.18.0) (2023-05-15)
277
-
278
-
279
- ### Features
280
-
281
- * **HubspotForm:** add ref forwarding for HS form ([#332](https://github.com/gravity-ui/page-constructor/issues/332)) ([37b75d3](https://github.com/gravity-ui/page-constructor/commit/37b75d31c09e8dc061d718828bcccc72b037e106))
282
-
283
-
284
- ### Bug Fixes
285
-
286
- * config gulpfile for tests ([a5cb59d](https://github.com/gravity-ui/page-constructor/commit/a5cb59d0bc1e3a8c09babed0c5ace9a2253416c3))
287
-
288
- ## [2.17.0](https://github.com/gravity-ui/page-constructor/compare/v2.16.0...v2.17.0) (2023-05-12)
289
-
290
-
291
- ### Features
292
-
293
- * drop rules overriding ([#303](https://github.com/gravity-ui/page-constructor/issues/303)) ([0c13398](https://github.com/gravity-ui/page-constructor/commit/0c1339885ce3b930ab9428b585aa6dd020b0d298))
294
-
295
- ## [2.16.0](https://github.com/gravity-ui/page-constructor/compare/v2.15.0...v2.16.0) (2023-05-11)
296
-
297
-
298
- ### Features
299
-
300
- * **Navigation:** add iconSize for navigation icons, update margin between icon and text ([#329](https://github.com/gravity-ui/page-constructor/issues/329)) ([1427740](https://github.com/gravity-ui/page-constructor/commit/14277404cfe199847ae0d1834eb433ba1efd919a))
301
-
302
- ## [2.15.0](https://github.com/gravity-ui/page-constructor/compare/v2.14.0...v2.15.0) (2023-05-03)
303
-
304
-
305
- ### Features
306
-
307
- * **OverflowScroller:** customize arrow ([#326](https://github.com/gravity-ui/page-constructor/issues/326)) ([edd3dbe](https://github.com/gravity-ui/page-constructor/commit/edd3dbe2b9dfe93a83b21261f4ab8a836e05359a))
308
-
309
- ## [2.14.0](https://github.com/gravity-ui/page-constructor/compare/v2.13.1...v2.14.0) (2023-05-02)
310
-
311
-
312
- ### Features
313
-
314
- * add passive flage to every addEventListener ([#318](https://github.com/gravity-ui/page-constructor/issues/318)) ([b1b7447](https://github.com/gravity-ui/page-constructor/commit/b1b7447b16b64afaf5ecea1db3ddf7ee9eeec534))
315
-
316
- ## [2.13.1](https://github.com/gravity-ui/page-constructor/compare/v2.13.0...v2.13.1) (2023-05-02)
317
-
318
-
319
- ### Bug Fixes
320
-
321
- * add name property to questions in FAQpage ([#322](https://github.com/gravity-ui/page-constructor/issues/322)) ([e0813b3](https://github.com/gravity-ui/page-constructor/commit/e0813b32f61ae4d2526c461560a78fcfb460c271))
322
-
323
- ## [2.13.0](https://github.com/gravity-ui/page-constructor/compare/v2.12.0...v2.13.0) (2023-04-28)
324
-
325
-
326
- ### Features
327
-
328
- * add components schemas in export ([#319](https://github.com/gravity-ui/page-constructor/issues/319)) ([756c209](https://github.com/gravity-ui/page-constructor/commit/756c20932c8643ffffbbd132a4a3d9e51439fbf7))
329
-
330
- ## [2.12.0](https://github.com/gravity-ui/page-constructor/compare/v2.11.0...v2.12.0) (2023-04-25)
331
-
332
-
333
- ### Features
334
-
335
- * add alt to img ([#309](https://github.com/gravity-ui/page-constructor/issues/309)) ([a1e5587](https://github.com/gravity-ui/page-constructor/commit/a1e5587ada92b53097ac77f16c1cdad7a4899219))
336
-
337
- ## [2.11.0](https://github.com/gravity-ui/page-constructor/compare/v2.10.0...v2.11.0) (2023-04-25)
338
-
339
-
340
- ### Features
341
-
342
- * add image context to use NextImage instead of normal img tag ([#313](https://github.com/gravity-ui/page-constructor/issues/313)) ([10841dc](https://github.com/gravity-ui/page-constructor/commit/10841dcbcc9bb16255dff57f4d79de94533a06c3))
343
-
344
-
345
- ### Bug Fixes
346
-
347
- * **QuestionBlock:** fix itemprop parameter value for FaqPage microdata ([#316](https://github.com/gravity-ui/page-constructor/issues/316)) ([4395f8a](https://github.com/gravity-ui/page-constructor/commit/4395f8a78489ee254dfa25051d8f812a7ed0bf4b))
348
-
349
- ## [2.10.0](https://github.com/gravity-ui/page-constructor/compare/v2.9.0...v2.10.0) (2023-04-24)
350
-
351
-
352
- ### Features
353
-
354
- * add scroll to the active tab ([#311](https://github.com/gravity-ui/page-constructor/issues/311)) ([a5f8576](https://github.com/gravity-ui/page-constructor/commit/a5f857640c9aa5d81859321a933fcef4913b5b76))
355
-
356
- ## [2.9.0](https://github.com/gravity-ui/page-constructor/compare/v2.8.4...v2.9.0) (2023-04-19)
357
-
358
-
359
- ### Features
360
-
361
- * **QuestionBlock:** add schema.org FAQ microdata ([#308](https://github.com/gravity-ui/page-constructor/issues/308)) ([cfca14a](https://github.com/gravity-ui/page-constructor/commit/cfca14a76b458bfa21daa452cb46cb966fae9e88))
362
-
363
- ## [2.8.4](https://github.com/gravity-ui/page-constructor/compare/v2.8.3...v2.8.4) (2023-04-17)
364
-
365
-
366
- ### Bug Fixes
367
-
368
- * **Content:** remove links margin ([#306](https://github.com/gravity-ui/page-constructor/issues/306)) ([62972b4](https://github.com/gravity-ui/page-constructor/commit/62972b445e28016fe250c0361c91b84324456fe6))
369
-
370
- ## [2.8.3](https://github.com/gravity-ui/page-constructor/compare/v2.8.2...v2.8.3) (2023-04-14)
371
-
372
-
373
- ### Bug Fixes
374
-
375
- * **BasicCard:** schema validation ([#304](https://github.com/gravity-ui/page-constructor/issues/304)) ([a8627ca](https://github.com/gravity-ui/page-constructor/commit/a8627ca131547281674e5f24df85b830875539f7))
376
-
377
- ## [2.8.2](https://github.com/gravity-ui/page-constructor/compare/v2.8.1...v2.8.2) (2023-04-12)
378
-
379
-
380
- ### Bug Fixes
381
-
382
- * allow everyone to publish release and remove execess maintainers ([#301](https://github.com/gravity-ui/page-constructor/issues/301)) ([2bfe490](https://github.com/gravity-ui/page-constructor/commit/2bfe490f643707427383be104ffe699fd6db4e27))
383
-
384
- ## [2.8.1](https://github.com/gravity-ui/page-constructor/compare/v2.8.0...v2.8.1) (2023-04-11)
385
-
386
-
387
- ### Bug Fixes
388
-
389
- * incorrect slider style order ([#297](https://github.com/gravity-ui/page-constructor/issues/297)) ([ba3b36a](https://github.com/gravity-ui/page-constructor/commit/ba3b36af199325cdba22f26c5b34d943456ae3fc))
390
-
391
- ## [2.8.0](https://github.com/gravity-ui/page-constructor/compare/v2.7.0...v2.8.0) (2023-04-11)
392
-
393
-
394
- ### Features
395
-
396
- * **BackgroundMedia:** add fullWidthMedia for BackgroundMedia ([#281](https://github.com/gravity-ui/page-constructor/issues/281)) ([5cd19b8](https://github.com/gravity-ui/page-constructor/commit/5cd19b8d4fcbf56b854a49c88b794a056d4e3295))
397
-
398
- ## [2.7.0](https://github.com/gravity-ui/page-constructor/compare/v2.6.0...v2.7.0) (2023-04-06)
399
-
400
-
401
- ### Features
402
-
403
- * add default analytics context to header block ([#289](https://github.com/gravity-ui/page-constructor/issues/289)) ([c1b8e45](https://github.com/gravity-ui/page-constructor/commit/c1b8e45423e7d8e2bd7daa108a8b296aebb811ef))
404
-
405
- ## [2.6.0](https://github.com/gravity-ui/page-constructor/compare/v2.5.0...v2.6.0) (2023-04-05)
406
-
407
-
408
- ### Features
409
-
410
- * add options to useAnalytics ([#287](https://github.com/gravity-ui/page-constructor/issues/287)) ([17c2c75](https://github.com/gravity-ui/page-constructor/commit/17c2c750042718ca4f90d23245cf8d2caadde3b2))
411
-
412
- ## [2.5.0](https://github.com/gravity-ui/page-constructor/compare/v2.4.0...v2.5.0) (2023-04-05)
413
-
414
-
415
- ### Features
416
-
417
- * update linters ([#269](https://github.com/gravity-ui/page-constructor/issues/269)) ([35ba72d](https://github.com/gravity-ui/page-constructor/commit/35ba72d5029397ccedefa75e43f804775b93779d))
418
-
419
- ## [2.4.0](https://github.com/gravity-ui/page-constructor/compare/v2.3.2...v2.4.0) (2023-04-05)
420
-
421
-
422
- ### Features
423
-
424
- * analytics in header block breadcrumbs ([#284](https://github.com/gravity-ui/page-constructor/issues/284)) ([a2e6bbf](https://github.com/gravity-ui/page-constructor/commit/a2e6bbf0816a86d23bcca784956f4cace6d21d5a))
425
-
426
- ## [2.3.2](https://github.com/gravity-ui/page-constructor/compare/v2.3.1...v2.3.2) (2023-04-05)
427
-
428
-
429
- ### Bug Fixes
430
-
431
- * export an analytics contexts ([#283](https://github.com/gravity-ui/page-constructor/issues/283)) ([96e4840](https://github.com/gravity-ui/page-constructor/commit/96e48407c89f590c48d88a4b2e3d06acfe9e72bc))
432
- * set footnotes is deprecated ([#271](https://github.com/gravity-ui/page-constructor/issues/271)) ([7ea88f2](https://github.com/gravity-ui/page-constructor/commit/7ea88f2d9fbd31440857209b46d90735515ce805))
433
-
434
- ## [2.3.1](https://github.com/gravity-ui/page-constructor/compare/v2.3.0...v2.3.1) (2023-04-03)
435
-
436
-
437
- ### Bug Fixes
438
-
439
- * **validator:** add FilterBlock to schema validators ([#270](https://github.com/gravity-ui/page-constructor/issues/270)) ([2c344a8](https://github.com/gravity-ui/page-constructor/commit/2c344a853d8d91b897423f8f46c191a5e7bfc8c7))
440
-
441
- ## [2.3.0](https://github.com/gravity-ui/page-constructor/compare/v2.2.1...v2.3.0) (2023-04-03)
442
-
443
-
444
- ### Features
445
-
446
- * add whitelist of image extenstions which can be compressed ([#215](https://github.com/gravity-ui/page-constructor/issues/215)) ([136034b](https://github.com/gravity-ui/page-constructor/commit/136034b642f7c044c00402cf2e0527ae8a099aeb))
447
-
448
- ## [2.2.1](https://github.com/gravity-ui/page-constructor/compare/v2.2.0...v2.2.1) (2023-03-30)
449
-
450
-
451
- ### Bug Fixes
452
-
453
- * **ReactPlayer:** transform youtube url for single video src ([#262](https://github.com/gravity-ui/page-constructor/issues/262)) ([5bd86fd](https://github.com/gravity-ui/page-constructor/commit/5bd86fd0e5b62e309fcf656f251007cd8e4efd68))
454
-
455
- ## [2.2.0](https://github.com/gravity-ui/page-constructor/compare/v2.1.1...v2.2.0) (2023-03-29)
456
-
457
-
458
- ### Features
459
-
460
- * dropdown a ReactPlayer version ([#254](https://github.com/gravity-ui/page-constructor/issues/254)) ([fec1c3f](https://github.com/gravity-ui/page-constructor/commit/fec1c3fee50dcd86d08c0501f80d7aca0795e026))
461
-
462
- ## [2.1.1](https://github.com/gravity-ui/page-constructor/compare/v2.1.0...v2.1.1) (2023-03-28)
463
-
464
-
465
- ### Bug Fixes
466
-
467
- * quotes validator schema ([#247](https://github.com/gravity-ui/page-constructor/issues/247)) ([87b8587](https://github.com/gravity-ui/page-constructor/commit/87b8587bcd5fe2bb96b5d70aae9eb6ca9e189f33))
468
-
469
- ## [2.1.0](https://github.com/gravity-ui/page-constructor/compare/v2.0.3...v2.1.0) (2023-03-27)
470
-
471
-
472
- ### Features
473
-
474
- * **Title:** add size xs ([#207](https://github.com/gravity-ui/page-constructor/issues/207)) ([1fd8cf7](https://github.com/gravity-ui/page-constructor/commit/1fd8cf7aeaf4a6a993a3ffcce576a41d61c3b66b))
475
-
476
- ## [2.0.3](https://github.com/gravity-ui/page-constructor/compare/v2.0.2...v2.0.3) (2023-03-27)
477
-
478
-
479
- ### Bug Fixes
480
-
481
- * **Tabs:** wrap tabs on desktop ([#237](https://github.com/gravity-ui/page-constructor/issues/237)) ([68dd965](https://github.com/gravity-ui/page-constructor/commit/68dd965b8d5ad9439f8c59211232911695c30fd3))
482
-
483
- ## [2.0.2](https://github.com/gravity-ui/page-constructor/compare/v2.0.1...v2.0.2) (2023-03-24)
484
-
485
-
486
- ### Bug Fixes
487
-
488
- * add specificity for few buttons ([#230](https://github.com/gravity-ui/page-constructor/issues/230)) ([22b0891](https://github.com/gravity-ui/page-constructor/commit/22b089158ed184d03726c5d0e0cff27307f1dec1))
489
-
490
- ## [2.0.1](https://github.com/gravity-ui/page-constructor/compare/v2.0.0...v2.0.1) (2023-03-24)
491
-
492
-
493
- ### Bug Fixes
494
-
495
- * handle margins for centered links and buttons in Content ([#223](https://github.com/gravity-ui/page-constructor/issues/223)) ([50590f2](https://github.com/gravity-ui/page-constructor/commit/50590f288cba7d3dd88e4f91e1642d0a34061fb9))
496
- * **Navigation:** fix issue with remaining event handler in effect ([#220](https://github.com/gravity-ui/page-constructor/issues/220)) ([d494523](https://github.com/gravity-ui/page-constructor/commit/d4945238ee52f7cca92ea4b092f0701ab4d99693))
497
-
498
- ## [2.0.0](https://github.com/gravity-ui/page-constructor/compare/v1.25.2...v2.0.0) (2023-03-23)
499
-
500
-
501
- ### ⚠ BREAKING CHANGES
502
-
503
- * update uikit up to 4, update react up to 18([#134](https://github.com/gravity-ui/page-constructor/issues/134)) (#212)
504
-
505
- ### Features
506
-
507
- * map-block changing the logic of zoom and center ([#219](https://github.com/gravity-ui/page-constructor/issues/219)) ([d332844](https://github.com/gravity-ui/page-constructor/commit/d33284425878cdbfacdf7813826d909e9ab696cb))
508
- * update uikit up to 4, update react up to 18([#134](https://github.com/gravity-ui/page-constructor/issues/134)) ([#212](https://github.com/gravity-ui/page-constructor/issues/212)) ([377b1f5](https://github.com/gravity-ui/page-constructor/commit/377b1f59c25d08458082232075e2e7bcfe84fe5c))
509
-
510
- ## [1.25.2](https://github.com/gravity-ui/page-constructor/compare/v1.25.1...v1.25.2) (2023-03-21)
511
-
512
-
513
- ### Bug Fixes
514
-
515
- * **ExtendedFeatures:** label position fixed ([#175](https://github.com/gravity-ui/page-constructor/issues/175)) ([fb8d206](https://github.com/gravity-ui/page-constructor/commit/fb8d206ad2378564a1dc7a7295f02da13ae66df1))
516
-
517
- ## [1.25.1](https://github.com/gravity-ui/page-constructor/compare/v1.25.0...v1.25.1) (2023-03-20)
518
-
519
-
520
- ### Bug Fixes
521
-
522
- * cannot read stopPropagation of undefined in navigation utils ([#221](https://github.com/gravity-ui/page-constructor/issues/221)) ([e20904a](https://github.com/gravity-ui/page-constructor/commit/e20904abfcc14339be777747a4c26187dba8cd58))
523
-
524
- ## [1.25.0](https://github.com/gravity-ui/page-constructor/compare/v1.24.0...v1.25.0) (2023-03-14)
525
-
526
-
527
- ### Features
528
-
529
- * update react-player version ([#217](https://github.com/gravity-ui/page-constructor/issues/217)) ([806dea6](https://github.com/gravity-ui/page-constructor/commit/806dea69c911c789782b8100a364187675ebf3d3))
530
-
531
- ## [1.24.0](https://github.com/gravity-ui/page-constructor/compare/v1.23.0...v1.24.0) (2023-03-13)
532
-
533
-
534
- ### Features
535
-
536
- * add dropdown item in right column of navigation ([#213](https://github.com/gravity-ui/page-constructor/issues/213)) ([71f23a8](https://github.com/gravity-ui/page-constructor/commit/71f23a8ff00948fa62b3bd5b7833b171b59176d6))
537
-
538
- ## [1.23.0](https://github.com/gravity-ui/page-constructor/compare/v1.22.1...v1.23.0) (2023-03-09)
539
-
540
-
541
- ### Features
542
-
543
- * add release flow to README.md ([#183](https://github.com/gravity-ui/page-constructor/issues/183)) ([c7d7923](https://github.com/gravity-ui/page-constructor/commit/c7d7923c034b88a8e8167023448d8a071926cc26))
544
-
545
- ## [1.22.1](https://github.com/gravity-ui/page-constructor/compare/v1.22.0...v1.22.1) (2023-03-07)
546
-
547
-
548
- ### Bug Fixes
549
-
550
- * add map block to text transform blocks [CLOUDFRONT-15094] ([#206](https://github.com/gravity-ui/page-constructor/issues/206)) ([a9323a1](https://github.com/gravity-ui/page-constructor/commit/a9323a1f895258af598106786157164ecde4a7fc))
551
-
552
- ## [1.22.0](https://github.com/gravity-ui/page-constructor/compare/v1.21.0...v1.22.0) (2023-03-07)
553
-
554
-
555
- ### Features
556
-
557
- * add github button in navigation ([#194](https://github.com/gravity-ui/page-constructor/issues/194)) ([57adcb5](https://github.com/gravity-ui/page-constructor/commit/57adcb5ad838f9a86681602f51717be4768e0605))
558
-
559
- ## [1.21.0](https://github.com/gravity-ui/page-constructor/compare/v1.20.5...v1.21.0) (2023-03-06)
560
-
561
-
562
- ### Features
563
-
564
- * **FilterBlock:** add block that filters its subblocks ([#180](https://github.com/gravity-ui/page-constructor/issues/180)) ([4b6852c](https://github.com/gravity-ui/page-constructor/commit/4b6852c5d1c55e4d1e2cc027c4229b9cc7500e8f))
565
-
566
- ## [1.20.5](https://github.com/gravity-ui/page-constructor/compare/v1.20.4...v1.20.5) (2023-03-03)
567
-
568
-
569
- ### Bug Fixes
570
-
571
- * move BlockIdContext.Provider inside ConstructorItem and ConstructorLoadable ([#201](https://github.com/gravity-ui/page-constructor/issues/201)) ([f2036e3](https://github.com/gravity-ui/page-constructor/commit/f2036e333f10711ca51ad3a62c735ca285904cff))
572
-
573
- ## [1.20.4](https://github.com/gravity-ui/page-constructor/compare/v1.20.3...v1.20.4) (2023-03-03)
574
-
575
-
576
- ### Bug Fixes
577
-
578
- * add unique key to BlockIdContext ([#199](https://github.com/gravity-ui/page-constructor/issues/199)) ([05b0a88](https://github.com/gravity-ui/page-constructor/commit/05b0a88fe9b996d7728afa49ade3a0a5cae85713))
579
-
580
- ## [1.20.3](https://github.com/gravity-ui/page-constructor/compare/v1.20.2...v1.20.3) (2023-03-02)
581
-
582
-
583
- ### Bug Fixes
584
-
585
- * add uniqueness to children key prop ([#192](https://github.com/gravity-ui/page-constructor/issues/192)) ([8cbb720](https://github.com/gravity-ui/page-constructor/commit/8cbb720a4e60ccab8a3440141b3e4f5998c26a9b))
586
-
587
- ## [1.20.2](https://github.com/gravity-ui/page-constructor/compare/v1.20.1...v1.20.2) (2023-03-01)
588
-
589
-
590
- ### Bug Fixes
591
-
592
- * fix map block scheme ([#190](https://github.com/gravity-ui/page-constructor/issues/190)) ([c75ae30](https://github.com/gravity-ui/page-constructor/commit/c75ae30bc168fcd9e39c71f71501ec1b87446ef1))
593
-
594
- ## [1.20.1](https://github.com/gravity-ui/page-constructor/compare/v1.20.0...v1.20.1) (2023-03-01)
595
-
596
-
597
- ### Bug Fixes
598
-
599
- * uninstall react-github-btn because is hot support cjs ([#188](https://github.com/gravity-ui/page-constructor/issues/188)) ([e32a51a](https://github.com/gravity-ui/page-constructor/commit/e32a51ae17a31dea8037a89a30f4b080e2aacb2e))
600
-
601
- ## [1.20.0](https://github.com/gravity-ui/page-constructor/compare/v1.19.1...v1.20.0) (2023-03-01)
602
-
603
-
604
- ### Features
605
-
606
- * new analytics ([#121](https://github.com/gravity-ui/page-constructor/issues/121)) ([cc329bc](https://github.com/gravity-ui/page-constructor/commit/cc329bcca9b11cd8a5fb2b4ff30791134ee09535))
607
-
608
- ## [1.19.1](https://github.com/gravity-ui/page-constructor/compare/v1.19.0...v1.19.1) (2023-03-01)
609
-
610
-
611
- ### Bug Fixes
612
-
613
- * fix map block scheme ([8db1923](https://github.com/gravity-ui/page-constructor/commit/8db1923b315c793d349da868f9299feb983408be))
614
-
615
- ## [1.19.0](https://github.com/gravity-ui/page-constructor/compare/v1.18.1...v1.19.0) (2023-02-28)
616
-
617
-
618
- ### Features
619
-
620
- * add Map-block ([13874f7](https://github.com/gravity-ui/page-constructor/commit/13874f70edddc297c711a6e4eae7753ae04fd746))
621
-
622
- ## [1.18.1](https://github.com/gravity-ui/page-constructor/compare/v1.18.0...v1.18.1) (2023-02-28)
623
-
624
-
625
- ### Bug Fixes
626
-
627
- * add mixin for navigation item and refactor ([#179](https://github.com/gravity-ui/page-constructor/issues/179)) ([3709fcd](https://github.com/gravity-ui/page-constructor/commit/3709fcdcaa2149ed287fb9ef0250dfca1181c842))
628
-
629
- ## [1.18.0](https://github.com/gravity-ui/page-constructor/compare/v1.17.0...v1.18.0) (2023-02-28)
630
-
631
-
632
- ### Features
633
-
634
- * monochrome mixin moved from 'Button.css' to 'mixins.css' ([#173](https://github.com/gravity-ui/page-constructor/issues/173)) ([6bb35cf](https://github.com/gravity-ui/page-constructor/commit/6bb35cfea50f7c62682404da02f594dd4f90a011))
635
-
636
- ## [1.17.0](https://github.com/gravity-ui/page-constructor/compare/v1.16.4...v1.17.0) (2023-02-28)
637
-
638
-
639
- ### Features
640
-
641
- * **Navigation:** add github star button in navigation ([#159](https://github.com/gravity-ui/page-constructor/issues/159)) ([829d358](https://github.com/gravity-ui/page-constructor/commit/829d3582772378940993c4f676fe08676693266a))
642
-
643
-
644
- ### Bug Fixes
645
-
646
- * remove background from Overlowscroller ([#153](https://github.com/gravity-ui/page-constructor/issues/153)) ([652adfa](https://github.com/gravity-ui/page-constructor/commit/652adfaf92156e1f96a9292d034c5139aac7894c))
647
-
648
- ## [1.16.4](https://github.com/gravity-ui/page-constructor/compare/v1.16.3...v1.16.4) (2023-02-22)
649
-
650
-
651
- ### Bug Fixes
652
-
653
- * **BasicCard:** add target ([#162](https://github.com/gravity-ui/page-constructor/issues/162)) ([569038c](https://github.com/gravity-ui/page-constructor/commit/569038c8ef1c43b7c8b9d6462126997155605b4c))
654
- * do not set "rel: 'noopener noreferrer'" for local links ([#160](https://github.com/gravity-ui/page-constructor/issues/160)) ([81173a7](https://github.com/gravity-ui/page-constructor/commit/81173a7e237104463971a80e386f5bad37caa551))
655
-
656
- ## [1.16.3](https://github.com/gravity-ui/page-constructor/compare/v1.16.2...v1.16.3) (2023-02-17)
657
-
658
-
659
- ### Bug Fixes
660
-
661
- * add router link for banner button ([#158](https://github.com/gravity-ui/page-constructor/issues/158)) ([a194a40](https://github.com/gravity-ui/page-constructor/commit/a194a40bae0486277d0a862e3a9b415404d75d0b))
662
- * **Foldable:** fix issues with content height calculation on resize ([#156](https://github.com/gravity-ui/page-constructor/issues/156)) ([e20709e](https://github.com/gravity-ui/page-constructor/commit/e20709e4eb84e7eb620ff2e42dd3e5010d1066a2))
663
-
664
- ## [1.16.2](https://github.com/gravity-ui/page-constructor/compare/v1.16.1...v1.16.2) (2023-02-16)
665
-
666
-
667
- ### Bug Fixes
668
-
669
- * **HubspotForm:** required checkbox ([#154](https://github.com/gravity-ui/page-constructor/issues/154)) ([6c948d1](https://github.com/gravity-ui/page-constructor/commit/6c948d1a3511e16902e6808d83ac3f0ac14b6d9c))
670
-
671
- ## [1.16.1](https://github.com/gravity-ui/page-constructor/compare/v1.16.0...v1.16.1) (2023-02-14)
672
-
673
-
674
- ### Bug Fixes
675
-
676
- * youtube dimensions ratio for large screens ([#151](https://github.com/gravity-ui/page-constructor/issues/151)) ([5ee3c9c](https://github.com/gravity-ui/page-constructor/commit/5ee3c9cabe641bd437a02d137528424df7fd2c5a))
677
-
678
- ## [1.16.0](https://github.com/gravity-ui/page-constructor/compare/v1.15.4...v1.16.0) (2023-02-14)
679
-
680
-
681
- ### Features
682
-
683
- * **HubspotForm:** add render outside virtual dom ([#138](https://github.com/gravity-ui/page-constructor/issues/138)) ([1b8694c](https://github.com/gravity-ui/page-constructor/commit/1b8694c6893df63ffabab84779febad57362804c))
684
-
685
- ## [1.15.4](https://github.com/gravity-ui/page-constructor/compare/v1.15.3...v1.15.4) (2023-02-13)
686
-
687
-
688
- ### Bug Fixes
689
-
690
- * freeze-es-5-ext ([#146](https://github.com/gravity-ui/page-constructor/issues/146)) ([72ca5f9](https://github.com/gravity-ui/page-constructor/commit/72ca5f90dee5b3a45d895695416b3398a46973b4))
691
-
692
- ## [1.15.3](https://github.com/gravity-ui/page-constructor/compare/v1.15.2...v1.15.3) (2023-02-10)
693
-
694
-
695
- ### Bug Fixes
696
-
697
- * fullscreen icon hide ([#141](https://github.com/gravity-ui/page-constructor/issues/141)) ([dfec755](https://github.com/gravity-ui/page-constructor/commit/dfec75544102299d0f82b72dbb5f334759a63cb0))
698
-
699
- ## [1.15.2](https://github.com/gravity-ui/page-constructor/compare/v1.15.1...v1.15.2) (2023-02-10)
700
-
701
-
702
- ### Bug Fixes
703
-
704
- * add layout item to card stories ([#143](https://github.com/gravity-ui/page-constructor/issues/143)) ([078c7f2](https://github.com/gravity-ui/page-constructor/commit/078c7f24e1e6a620ad57b929f08dd703092463f5))
705
-
706
- ## [1.15.1](https://github.com/gravity-ui/page-constructor/compare/v1.15.0...v1.15.1) (2023-02-10)
707
-
708
-
709
- ### Bug Fixes
710
-
711
- * change meta info tag to h4 ([#140](https://github.com/gravity-ui/page-constructor/issues/140)) ([8cd84bd](https://github.com/gravity-ui/page-constructor/commit/8cd84bd5e313b41caf240b1ff155a9698ec9c17a))
712
-
713
- ## [1.15.0](https://github.com/gravity-ui/page-constructor/compare/v1.14.4...v1.15.0) (2023-02-10)
714
-
715
-
716
- ### Features
717
-
718
- * add handler for submit error in hubspot forms ([#135](https://github.com/gravity-ui/page-constructor/issues/135)) ([5f9b7a8](https://github.com/gravity-ui/page-constructor/commit/5f9b7a89996b0d2237d62ffccbea6d08f19a8d35))
719
-
720
- ## [1.14.4](https://github.com/gravity-ui/page-constructor/compare/v1.14.3...v1.14.4) (2023-02-10)
721
-
722
-
723
- ### Bug Fixes
724
-
725
- * changelog ([#136](https://github.com/gravity-ui/page-constructor/issues/136)) ([a07c738](https://github.com/gravity-ui/page-constructor/commit/a07c738e09898a952e63e1f0712cc9a31076cc1c))
726
-
727
- ## [1.14.3](https://github.com/gravity-ui/page-constructor/compare/v1.14.2...v1.14.3) (2023-02-10)
728
-
729
- ### Features
730
-
731
- * LayoutItem was added and CardWithImage was deprecated ([#132](https://github.com/gravity-ui/page-constructor/issues/132))([4abebb5](https://github.com/gravity-ui/page-constructor/commit/4abebb573e12d0976d61541e2f33c17f3d25453a))
732
-
733
- ### Bug Fixes
734
-
735
- * remove unused card types ([#130](https://github.com/gravity-ui/page-constructor/issues/130)) ([22da2fa](https://github.com/gravity-ui/page-constructor/commit/22da2fadd433e12e84cf8afd238c369cff5f2c24))
736
-
737
- ## [1.14.2](https://github.com/gravity-ui/page-constructor/compare/v1.14.1...v1.14.2) (2023-02-02)
738
-
739
-
740
- ### Bug Fixes
741
-
742
- * **HubspotForm:** border-radius ([#128](https://github.com/gravity-ui/page-constructor/issues/128)) ([437344b](https://github.com/gravity-ui/page-constructor/commit/437344b510cbde11bdf6e3a3ceb914fb0818a016))
743
-
744
- ## [1.14.1](https://github.com/gravity-ui/page-constructor/compare/v1.14.0...v1.14.1) (2023-02-01)
745
-
746
-
747
- ### Bug Fixes
748
-
749
- * enable addons menu by default ([7772a55](https://github.com/gravity-ui/page-constructor/commit/7772a554950643d7cdbb86a8dedade6f916ae176))
750
- * **Storybook:** fix links ([#123](https://github.com/gravity-ui/page-constructor/issues/123)) ([10cfe80](https://github.com/gravity-ui/page-constructor/commit/10cfe8054178bd577014dfff83033ff0c0dd9add))
751
-
752
- ## [1.14.0](https://github.com/gravity-ui/page-constructor/compare/v1.13.2...v1.14.0) (2023-01-25)
753
-
754
-
755
- ### Features
756
-
757
- * **Navigation:** add schema validation ([#120](https://github.com/gravity-ui/page-constructor/issues/120)) ([a6c8dec](https://github.com/gravity-ui/page-constructor/commit/a6c8decf04f402113a5a31d2635721ffcc1b233c))
758
-
759
- ## [1.13.2](https://github.com/gravity-ui/page-constructor/compare/v1.13.1...v1.13.2) (2023-01-20)
760
-
761
-
762
- ### Bug Fixes
763
-
764
- * **PromoFeaturesBlock:** transform items ([#118](https://github.com/gravity-ui/page-constructor/issues/118)) ([4c1cc7a](https://github.com/gravity-ui/page-constructor/commit/4c1cc7a38f2d789ce1c723b9695b7c1ed3e3cdf8))
765
-
766
- ## [1.13.1](https://github.com/gravity-ui/page-constructor/compare/v1.13.0...v1.13.1) (2023-01-19)
767
-
768
-
769
- ### Bug Fixes
770
-
771
- * **Navigation:** logo and button specifity styles ([#116](https://github.com/gravity-ui/page-constructor/issues/116)) ([dbe0c39](https://github.com/gravity-ui/page-constructor/commit/dbe0c39aa88aac8a3e84c079d7de400e9a9b3d2f))
772
-
773
- ## [1.13.0](https://github.com/gravity-ui/page-constructor/compare/v1.12.1...v1.13.0) (2023-01-18)
774
-
775
-
776
- ### Features
777
-
778
- * remove matchMedia artefact ([#114](https://github.com/gravity-ui/page-constructor/issues/114)) ([8ff3117](https://github.com/gravity-ui/page-constructor/commit/8ff3117261f9681f0dbb452c3c722ee80845da80))
779
-
780
-
781
- ### Bug Fixes
782
-
783
- * delete unused dependency ([#112](https://github.com/gravity-ui/page-constructor/issues/112)) ([300085c](https://github.com/gravity-ui/page-constructor/commit/300085c456877ef617f4225a603fcc3d52393848))
784
-
785
- ## [1.12.1](https://github.com/gravity-ui/page-constructor/compare/v1.12.0...v1.12.1) (2023-01-11)
786
-
787
-
788
- ### Bug Fixes
789
-
790
- * **BlockHeader:** add yfm to description, change styles ([#105](https://github.com/gravity-ui/page-constructor/issues/105)) ([f77fc5e](https://github.com/gravity-ui/page-constructor/commit/f77fc5e82f7aaf33dda8f56a9f17a87d61cc5cdd))
791
- * contentBase import ([#109](https://github.com/gravity-ui/page-constructor/issues/109)) ([2136f7b](https://github.com/gravity-ui/page-constructor/commit/2136f7bbe340c6035c655ff5139ae69ee1b50d3e))
792
-
793
- ## [1.12.0](https://github.com/gravity-ui/page-constructor/compare/v1.11.1...v1.12.0) (2023-01-10)
794
-
795
-
796
- ### Features
797
-
798
- * **schemas:** add content field to blocks' schemas ([#60](https://github.com/gravity-ui/page-constructor/issues/60)) ([f3952b3](https://github.com/gravity-ui/page-constructor/commit/f3952b367b8c5d53b33fb57cf063f713938a077d))
799
-
800
- ## [1.11.1](https://github.com/gravity-ui/page-constructor/compare/v1.11.0...v1.11.1) (2023-01-10)
801
-
802
-
803
- ### Bug Fixes
804
-
805
- * **Tabs:** add caption to media ([#106](https://github.com/gravity-ui/page-constructor/issues/106)) ([e825a4c](https://github.com/gravity-ui/page-constructor/commit/e825a4cff8fe9157f5444b03d32d4aff6e7dfba1))
806
-
807
- ## [1.11.0](https://github.com/gravity-ui/page-constructor/compare/v1.10.8...v1.11.0) (2023-01-09)
808
-
809
- ### Features
810
-
811
- * **Navigation:** add logo dark theme support ([#97](https://github.com/gravity-ui/page-constructor/pull/97)) ([7e4e7bd](https://github.com/gravity-ui/page-constructor/commit/7e4e7bd6fb92fded7a38538f1da0c9f0e14cccb1))
812
-
813
- ### Bug Fixes
814
-
815
- * link children align ([#103](https://github.com/gravity-ui/page-constructor/issues/103)) ([07eee68](https://github.com/gravity-ui/page-constructor/commit/07eee6828de60a66e8ae371030c67adc50c7ff8d))
816
-
817
-
818
- ## [1.10.8](https://github.com/gravity-ui/page-constructor/compare/v1.10.7...v1.10.8) (2023-01-09)
819
-
820
-
821
- ### Bug Fixes
822
-
823
- * add arrow link top for different sizes ([2fe8038](https://github.com/gravity-ui/page-constructor/commit/2fe8038372299e1c1b82ae93402f8c0df3ef7c03))
824
-
825
- ## [1.10.7](https://github.com/gravity-ui/page-constructor/compare/v1.10.6...v1.10.7) (2022-12-23)
826
-
827
-
828
- ### Bug Fixes
829
-
830
- * **Share:** schema ([#94](https://github.com/gravity-ui/page-constructor/issues/94)) ([465e039](https://github.com/gravity-ui/page-constructor/commit/465e0395413df74af8ac8be83dfe4167ae378835))
831
-
832
- ## [1.10.6](https://github.com/gravity-ui/page-constructor/compare/v1.10.5...v1.10.6) (2022-12-23)
833
-
834
-
835
- ### Bug Fixes
836
-
837
- * **Divider:** size s ([#93](https://github.com/gravity-ui/page-constructor/issues/93)) ([d8aba9a](https://github.com/gravity-ui/page-constructor/commit/d8aba9a9d6ec5b1bec560a4d22b16fc45180c1ed))
838
-
839
- ## [1.10.5](https://github.com/gravity-ui/page-constructor/compare/v1.10.4...v1.10.5) (2022-12-22)
840
-
841
-
842
- ### Bug Fixes
843
-
844
- * monochrome button theme ([#89](https://github.com/gravity-ui/page-constructor/issues/89)) ([e29fe65](https://github.com/gravity-ui/page-constructor/commit/e29fe65788b844cb753d24d00c56ab31b2143333))
845
-
846
- ## [1.10.4](https://github.com/gravity-ui/page-constructor/compare/v1.10.3...v1.10.4) (2022-12-22)
847
-
848
-
849
- ### Bug Fixes
850
-
851
- * **Image:** desktop webp ([#90](https://github.com/gravity-ui/page-constructor/issues/90)) ([2940078](https://github.com/gravity-ui/page-constructor/commit/2940078045246d7cf4af9eb4ad845deb9b3e4576))
852
-
853
- ## [1.10.3](https://github.com/gravity-ui/page-constructor/compare/v1.10.2...v1.10.3) (2022-12-15)
854
-
855
-
856
- ### Bug Fixes
857
-
858
- * share icons ([#87](https://github.com/gravity-ui/page-constructor/issues/87)) ([565f125](https://github.com/gravity-ui/page-constructor/commit/565f12538d9b686d654d58bf548b9ec87bc566b7))
859
-
860
- ## [1.10.2](https://github.com/gravity-ui/page-constructor/compare/v1.10.1...v1.10.2) (2022-12-13)
861
-
862
-
863
- ### Bug Fixes
864
-
865
- * shema validation ([#80](https://github.com/gravity-ui/page-constructor/issues/80)) ([c0d2f92](https://github.com/gravity-ui/page-constructor/commit/c0d2f92c1dabab86f9cb9264714821aa391e4c4c))
866
-
867
- ## [1.10.1](https://github.com/gravity-ui/page-constructor/compare/v1.10.0...v1.10.1) (2022-12-13)
868
-
869
-
870
- ### Bug Fixes
871
-
872
- * **HubspotForm:** change height ([#81](https://github.com/gravity-ui/page-constructor/issues/81)) ([3c596f7](https://github.com/gravity-ui/page-constructor/commit/3c596f786c9e6b6ff4007a10e85c663cb4d6c29c))
873
- * release 1.10.0 ([#84](https://github.com/gravity-ui/page-constructor/issues/84)) ([159b20a](https://github.com/gravity-ui/page-constructor/commit/159b20ad3ba74a0877bca0178dddc244f8ef37c2))
874
-
875
- ## [1.10.0](https://github.com/gravity-ui/page-constructor/compare/v1.9.3...v1.10.0) (2022-12-12)
876
-
877
-
878
- ### Features
879
-
880
- * **Share:** create block ([#79](https://github.com/gravity-ui/page-constructor/issues/79)) ([bf950c8](https://github.com/gravity-ui/page-constructor/commit/bf950c88a3a885138a1db3f1214b56011971cd8b))
881
-
882
- ## [1.9.3](https://github.com/gravity-ui/page-constructor/compare/v1.9.2...v1.9.3) (2022-12-07)
883
-
884
-
885
- ### Bug Fixes
886
-
887
- * **Tabs:** padding and image props ([#77](https://github.com/gravity-ui/page-constructor/issues/77)) ([5809e6b](https://github.com/gravity-ui/page-constructor/commit/5809e6b6364e0b3d01621d15371ef5d0aaa9518b))
888
-
889
- ## [1.9.2](https://github.com/gravity-ui/page-constructor/compare/v1.9.1...v1.9.2) (2022-12-07)
890
-
891
-
892
- ### Bug Fixes
893
-
894
- * navigation import and types ([#76](https://github.com/gravity-ui/page-constructor/issues/76)) ([53ea8d4](https://github.com/gravity-ui/page-constructor/commit/53ea8d4bb12290d3cd3f2cef6dca6a48c5c68d68))
895
- * release ([#74](https://github.com/gravity-ui/page-constructor/issues/74)) ([13193d4](https://github.com/gravity-ui/page-constructor/commit/13193d420ff2486a94638bd8119e28d69aa713d8))
896
-
897
- ## [1.9.1](https://github.com/gravity-ui/page-constructor/compare/v1.9.0...v1.9.1) (2022-12-05)
898
-
899
-
900
- ### Bug Fixes
901
-
902
- * **Tabs:** player video height ([a372ddb](https://github.com/gravity-ui/page-constructor/commit/a372ddbbde003ef82818ba167adbff0e8bf57905))
903
-
904
- ## [1.9.0](https://github.com/gravity-ui/page-constructor/compare/v1.8.2...v1.9.0) (2022-12-05)
905
-
906
-
907
- ### Features
908
-
909
- * **Tabs:** change tabs to buttons ([#63](https://github.com/gravity-ui/page-constructor/issues/63)) ([f6195f3](https://github.com/gravity-ui/page-constructor/commit/f6195f3115bb5136c17336edb8a0ff64dcc50de5))
910
-
911
- ## [1.8.2](https://github.com/gravity-ui/page-constructor/compare/v1.8.1...v1.8.2) (2022-12-02)
912
-
913
-
914
- ### Bug Fixes
915
-
916
- * remove old deploy files ([faa9998](https://github.com/gravity-ui/page-constructor/commit/faa99980b3797b7efaba46fe38e094bdfad57af4))
917
-
918
- ## [1.8.1](https://github.com/gravity-ui/page-constructor/compare/v1.8.0...v1.8.1) (2022-12-02)
919
-
920
-
921
- ### Bug Fixes
922
-
923
- * hs form field width limitations ([fe45a77](https://github.com/gravity-ui/page-constructor/commit/fe45a77f0dbeae555110602845307fd9c47f8495))
924
-
925
- ## [1.8.0](https://github.com/gravity-ui/page-constructor/compare/v1.7.1...v1.8.0) (2022-12-02)
926
-
927
-
928
- ### Features
929
-
930
- * add **navigation** ([99493a4](https://github.com/gravity-ui/page-constructor/commit/99493a4ab17af679bba250b3c7d00b4fe9256baa))
931
-
932
-
933
- ## [1.7.1](https://github.com/gravity-ui/page-constructor/compare/v1.7.0...v1.7.1) (2022-11-29)
934
-
935
-
936
- ### Bug Fixes
937
-
938
- * **ExtendedFeatures:** add props ([6254d62](https://github.com/gravity-ui/page-constructor/commit/6254d62b9ceded154d0fdcded9a554fd33772d13))
939
- * storybook content ([b98eccc](https://github.com/gravity-ui/page-constructor/commit/b98ecccc96cfba2376552e4c9314a559913455d9))
940
-
941
- ## [1.7.0](https://github.com/gravity-ui/page-constructor/compare/v1.6.1...v1.7.0) (2022-11-10)
942
-
943
-
944
- ### Features
945
-
946
- * **ExtendedFeatures:** add content ([#51](https://github.com/gravity-ui/page-constructor/issues/51)) ([0990563](https://github.com/gravity-ui/page-constructor/commit/0990563a62c3f8f4d4cfb206cedb7a1205cb1797))
947
-
948
- ## [1.6.1](https://github.com/gravity-ui/page-constructor/compare/v1.4.1...v1.6.1) (2022-11-10)
949
-
950
- ### Bug Fixes
951
-
952
- * fix storybook's content
953
-
954
-
955
- ## [1.6.0](https://github.com/gravity-ui/page-constructor/pulls?q=is%3Apr+is%3Aclosed) (2022-11-09)
956
-
957
- ### Features
958
-
959
- * update storybook
960
-
961
- ## [1.5.0](https://github.com/gravity-ui/page-constructor/issues/44) (2022-11-03)
962
-
963
- ### Features
964
-
965
- * remove card validator and types
966
-
967
- ## [1.4.2](https://github.com/gravity-ui/page-constructor/pull/46) (2022-11-07)
968
-
969
- ### Bug Fixes
970
-
971
- * change link text m arrow size
972
-
973
- ## [1.4.1](https://github.com/gravity-ui/page-constructor/pull/42) (2022-10-28)
974
-
975
- ### Bug Fixes
976
-
977
- * add specificity for Tabs item
978
-
979
- ## [1.4.0](https://github.com/gravity-ui/page-constructor/pull/40) (2022-10-26)
980
-
981
-
982
- ### Features
983
-
984
- * add devices support to component BackgroundMedia
985
-
986
- ## [1.3.0](https://github.com/gravity-ui/page-constructor/pull/35) (2022-10-25)
987
-
988
-
989
- ### Features
990
-
991
- * add devices support to component Image and block Header
992
-
993
- ## [1.2.5](https://github.com/gravity-ui/page-constructor/compare/v1.2.4...v1.2.5) (2022-10-19)
994
-
995
- ### Bug Fixes
996
-
997
- * content block link arrow l size changed to 20 ([8b05033](https://github.com/gravity-ui/page-constructor/commit/8b050332273453aedc2937303d9dec76b878482c))
998
-
999
-
1000
- ## [1.2.4](https://github.com/gravity-ui/page-constructor/compare/v1.2.3...v1.2.4) (2022-10-19)
1001
-
1002
- ### Bug Fixes
1003
-
1004
- * buttons specificities fixes ([96a4cf6](https://github.com/gravity-ui/page-constructor/commit/96a4cf6aee58d19b42e9e649ee3969c86d94be2a))
1005
-
1006
- ## [1.2.3](https://github.com/gravity-ui/page-constructor/compare/v1.2.2...v1.2.3) (2022-10-14)
1007
-
1008
-
1009
- ### Bug Fixes
1010
-
1011
- * content links margin ([6977b96](https://github.com/gravity-ui/page-constructor/commit/6977b9601e3936ba5293eadeeaeccd640814125f))
1012
-
1013
- ## [1.2.2](https://github.com/gravity-ui/page-constructor/compare/v1.2.1...v1.2.2) (2022-10-14)
1014
-
1015
-
1016
- ### Bug Fixes
1017
-
1018
- * change p margin for size s ([#29](https://github.com/gravity-ui/page-constructor/issues/29)) ([dcb1c2a](https://github.com/gravity-ui/page-constructor/commit/dcb1c2acba20659a8f536f4bd7401dc54b4d7b71))
1019
-
1020
- ## [1.2.1](https://github.com/gravity-ui/page-constructor/compare/v1.2.0...v1.2.1) (2022-10-14)
1021
-
1022
-
1023
- ### Bug Fixes
1024
-
1025
- * **Content:** ul li color in dark theme ([#30](https://github.com/gravity-ui/page-constructor/issues/30)) ([8e94579](https://github.com/gravity-ui/page-constructor/commit/8e945798cd15cbf58e55e8d81f6b516a85d8936c))
1026
-
1027
- ## [1.2.0](https://github.com/gravity-ui/page-constructor/compare/v1.1.0...v1.2.0) (2022-10-11)
1028
-
1029
-
1030
- ### Features
1031
-
1032
- * add Content to Info block ([0017341](https://github.com/gravity-ui/page-constructor/commit/00173411209bca6a61f1d64d8329ead4328152f5))
1033
-
1034
- ## [1.1.0](https://github.com/gravity-ui/page-constructor/compare/v1.0.5...v1.1.0) (2022-10-10)
1035
-
1036
-
1037
- ### Features
1038
-
1039
- * remove i18n from peers ([87f4c4d](https://github.com/gravity-ui/page-constructor/commit/87f4c4d4bb31179db04267a1ad37ba19bf4c222d))
1040
-
1041
- ## [1.0.5](https://github.com/gravity-ui/page-constructor/compare/v1.0.4...v1.0.5) (2022-10-07)
1042
-
1043
-
1044
- ### Bug Fixes
1045
-
1046
- * remove alpha tag ([5c0f70c](https://github.com/gravity-ui/page-constructor/commit/5c0f70c983583810c08363c63a5a80d84e95c621))
1047
-
1048
- ## [1.0.4](https://github.com/gravity-ui/page-constructor/compare/v1.0.3...v1.0.4) (2022-10-07)
1049
-
1050
-
1051
- ### Bug Fixes
1052
-
1053
- * repalce block stories content pt.1 ([fc1a3a5](https://github.com/gravity-ui/page-constructor/commit/fc1a3a537b4c962e472aee73663f2950ce7dc346))
1054
- * replace blocks content ([ab63138](https://github.com/gravity-ui/page-constructor/commit/ab63138aaebfb71366062285436edc21f86f5346))
1055
- * replace sub blocks and components story data ([fa7593d](https://github.com/gravity-ui/page-constructor/commit/fa7593d9082761d1726739204f36cf6024725755))
1056
-
1057
- ## [1.0.3](https://github.com/gravity-ui/page-constructor/compare/v1.0.2...v1.0.3) (2022-10-05)
1058
-
1059
-
1060
- ### Bug Fixes
1061
-
1062
- * add yfm js import ([d9a77df](https://github.com/gravity-ui/page-constructor/commit/d9a77df743d68db9353bf6edbada38fbd81ce59f))
1063
- * content centered styles priority ([3d2bad2](https://github.com/gravity-ui/page-constructor/commit/3d2bad24947d86fbd4cf3735beff49c0dfe74382))
1064
- * content layout centered styles ([d0dcc59](https://github.com/gravity-ui/page-constructor/commit/d0dcc5988d3b08e483fe288295c904f16f903a94))
1065
- * displaying video with fillWidthMedia param in HeaderBlock ([560b867](https://github.com/gravity-ui/page-constructor/commit/560b86776074a6249546d7c51324a201de9c04c4))
1066
- * header block dark theme html ([d0cb1ce](https://github.com/gravity-ui/page-constructor/commit/d0cb1cebecafcd8385be32b33182b30b6bdb198c))
1067
- * semantic colors for yfm ([40cd81f](https://github.com/gravity-ui/page-constructor/commit/40cd81ff9f0bf9407a84e181e10e23702aa67eb2))
1068
-
1069
- ## [1.0.2](https://github.com/gravity-ui/page-constructor/compare/v1.0.1...v1.0.2) (2022-10-04)
1070
-
1071
-
1072
- ### Bug Fixes
1073
-
1074
- * readme ([be265cd](https://github.com/gravity-ui/page-constructor/commit/be265cd6cdc3a9212ba5a7f6ad4b7b4073dcf7fb))
1075
-
1076
- ## [1.0.1](https://github.com/gravity-ui/page-constructor/compare/v1.0.0...v1.0.1) (2022-10-03)
1077
-
1078
-
1079
- ### Bug Fixes
1080
-
1081
- * add repository links to readme ([a6ed8b9](https://github.com/gravity-ui/page-constructor/commit/a6ed8b9af5f71e8b0eed3bb52f3309a715c5a48b))
1082
-
1083
- ## 1.0.0
1084
-
1085
- - V1 blocks support was discontinued.
1086
-
1087
- - `@yandex-data-ui/common`, `@yandex-data-ui/cloud-schemas`, and `@yandex-data-ui/cloud-components` was deleted from dependencies.
1088
-
1089
- - All the constructor elements was grouped into blocks, sub-blocks and components.
1090
-
1091
- - PageConstructor component was refactored.
1092
-
1093
- - Validators was Refactored.
1094
-
1095
- - Project build engine was moved from `@yandex-data-ui/ui-core` to `gulp`.
1096
-
1097
- - Storybook was updated.
1098
-
1099
- - Project was moved to @gravity-ui.
1100
-
1101
- - LICENSE.md and CONTRIBUTING.md was added
1102
-
1103
- - Translate all docs and stories to english
1104
-
1105
- ## 0.60.5
1106
-
1107
- - Added the Content component to the Questions block.
1108
-
1109
- ## 0.60.4
1110
-
1111
- - Fixed the bug when text was hidden behind the video in the `HeaderSlider` in Safari.
1112
-
1113
- ## 0.60.3
1114
-
1115
- - You can now change the `background` in a dark theme for the BackgroundCard component.
1116
-
1117
- ## 0.60.1
1118
-
1119
- - Slowed down slider scrolling.
1120
-
1121
- ## 0.60.0
1122
-
1123
- - Removed top and side margins for the `HeaderBlock` with a color background that takes up the entire width.
1124
- - Added the fullWidthMedia parameter to the background prop in the `HeaderBlock`.
1125
- - Increased the slider arrows in the `HeaderSlider`.
1126
-
1127
- ## 0.59.2
1128
-
1129
- - Fixed a bug in the `Share` component.
1130
-
1131
- ## 0.59.0
1132
-
1133
- - Increased the width of a color background in the `HeaderBlock`.
1134
- - Added a bottom margin in the `HeaderBlock`.
1135
- - Removed the common, cloud-components, and cloud-schemas dependencies.
1136
-
1137
- ## 0.58.0
1138
-
1139
- - Added a component named BasicCard.
1140
-
1141
- ## 0.57.3
1142
-
1143
- - Fixed the margins in the Header block for a mobile if `offset: large`
1144
-
1145
- ## 0.57.2
1146
-
1147
- - Fixed the bug in the Slider block with auto-scroll to the first slide.
1148
-
1149
- ## 0.57.1
1150
-
1151
- - Reduced the `InfoBlock` width. Added support for rounded corners.
1152
-
1153
- ## 0.57.0
1154
-
1155
- - Refactored the Header block. Added a new property named Status. Moved a cube outside a column, it now takes up the entire width.
1156
- - Refactored the HeaderSlider block.
1157
-
1158
- ## 0.56.0
1159
-
1160
- - Increased side margins for the mobile version to 24px.
1161
-
1162
- ## 0.55.0
1163
-
1164
- - Added YAML snippets to the storybook.
1165
-
1166
- ## 0.53.1
1167
-
1168
- - Changed the hover effect in cards.
1169
-
1170
- ## 0.53.2
1171
-
1172
- - Fixed the hover behavior in the `Share` component.
1173
- - Moved the ui-kit to dev-dependencies.
1174
-
1175
- ## 0.53.1
1176
-
1177
- - Added support for the gray color in the `Content` component lists.
1178
-
1179
- ## 0.53.1
1180
-
1181
- - Added a component named `HubspotForm`.
1182
-
1183
- ## 0.52.0
1184
-
1185
- - Upgraded i18n to 0.6.0. Now, before using the page-constructor, you need to call 'configure' (for details, see the readme file).
1186
-
1187
- ## 0.51.0
1188
-
1189
- - You can now use `*.webp` as `src` for `<Image />`.
1190
-
1191
- ## 0.50.0
1192
-
1193
- - Updated the tsconfig.
1194
-
1195
- ## 0.49.1
1196
-
1197
- - Removed CSS variables with --www-...
1198
-
1199
- ## 0.49.0
1200
-
1201
- - Added the customFormOrigin parameter to the YandexForm component.
1202
-
1203
- ## 0.48.0
1204
-
1205
- - Fixed the controls display in the storybook.
1206
-
1207
- ## 0.46.0
1208
-
1209
- - Updated the stories.
1210
-
1211
- ## 0.44.0
1212
-
1213
- - Updated the eslint, stylelint, and prettier configs.
1214
-
1215
- ## 0.43.1
1216
-
1217
- - Fixed the bug with an unnecessary offset of a slide in the slider.
1218
-
1219
- ## 0.43.0
1220
-
1221
- - Added the Content cube to the MediaBlock.
1222
-
1223
- ## 0.42.4
1224
-
1225
- - Fixed the VideoBlock and ReactPlayer component semantic colors.
1226
- - Fixed the label mixin font.
1227
-
1228
- ## 0.42.3
1229
-
1230
- - Removed --yc-text-caption-1 font overriding and replaced it with --yc-text-caption-2.
1231
-
1232
- ## 0.42.2
1233
-
1234
- - Fixed the component semantic colors.
1235
-
1236
- ## 0.42.0
1237
-
1238
- - Removed the TextTable block.
1239
-
1240
- ## 0.40.0
1241
-
1242
- - Set the `--yc-text-accent-font-weight` CSS variable to 500.
1243
- - Removed the top margin of the Button component.
1244
- - Added mixins for headers.
1245
- - Added the `--pc-text-header-color` variable set to `var(--yc-color-text-primary)`.
1246
- - Upgraded the @gravity-ui/uikit version to 2.3.0.
1247
-
1248
- ## 0.39.2
1249
-
1250
- - Fixed the video and image display in the BackgroundMedia component in the mobile version.
1251
-
1252
- ## 0.39.1
1253
-
1254
- - Fixed some slider bugs.
1255
-
1256
- ## 0.38.0
1257
-
1258
- - You can now send metrics and pixels from the YandexForm component context.
1259
-
1260
- ## 0.36.1
1261
-
1262
- - Fixed the footnotes in Safari.
1263
-
1264
- ## 0.36.0
1265
-
1266
- - Added handling of missing blocks.
1267
-
1268
- ## 0.35.0
1269
-
1270
- - Added YFM styles to support the dark theme and font-family via a variable.
1271
-
1272
- ## 0.34.0
1273
-
1274
- ### Breaking changes
1275
-
1276
- - Added the `@gravity-ui/uikit` package.
1277
- - Updated the `@yandex-data-ui/common` package.
1278
- - Replaced the peer dependencies package: `@yandex-data-ui/i18n` -> `@gravity-ui/i18n`.
1279
- - Removed the react-router-dom package from the dependencies.
1280
-
1281
- ## 0.33.0
1282
-
1283
- Removed the `HeaderWithImage` component.
1284
-
1285
- ## 0.32.0
1286
-
1287
- Added dark theme support in the `companies-block`.
1288
-
1289
- ## 0.30.1
1290
-
1291
- Fix content-layout text color in dark theme
1292
-
1293
- ## 0.30.0
1294
-
1295
- Added YFM handling in the `PreviewBlock`.
1296
-
1297
- ## 0.29.0
1298
-
1299
- Added descriptions of blocks and components, a CHANGELOG, and a project description to the storybook.
1300
-
1301
- ## 0.28.2
1302
-
1303
- Fixed a link in the `ExtendedFeatures` block.
1304
-
1305
- ## 0.28.0
1306
-
1307
- Added styles for links inserted using a markup.
1308
-
1309
- ## 0.24.0
1310
-
1311
- Added all blocks and components to the storybook.
1312
-
1313
- ## 0.23.0
1314
-
1315
- Added a component named `Quote`.
1316
-
1317
- ## 0.22.1
1318
-
1319
- Removed the `!important` statement in the `BlockBase` for the padding-bottom property
1320
- In the `Content`, if the `text` block has no `title`, the `margin-top` property is 0.
1321
-
1322
- ## 0.22.0
1323
-
1324
- ### Breaking changes
1325
-
1326
- - `PageConstructorProvider` is now a separate component. For the `PageConstructor` to run properly, wrap it in this provider.
1327
- For details, see the [readme](https://github.com/gravity-ui/page-constructor#getting-started) file.
1328
-
1329
- - Deleted the `system` theme (the `light` theme is used instead by default).
1330
-
1331
- - Changed the default values of the `muted` and `autoplay` parameters in the `ReactPlayer` component from `true` to `false`.
1332
-
1333
- ## 0.21.0
1334
-
1335
- - Added a content cube, card fill, and themes to the `background-card`.
1336
-
1337
- ## 0.20.1
1338
-
1339
- - Fixed YFM text formatting in the `content-layout-block`.
1340
-
1341
- ## 0.20.0
1342
-
1343
- - Added a content cube to the `card-with-image`.
1344
-
1345
- ## 0.19.3
1346
-
1347
- - Added a rerender fix in the `media-block`.
1348
-
1349
- ## 0.19.1
1350
-
1351
- - Added a slider fix in the `media-block`.
1352
-
1353
- ## 0.19.0
1354
-
1355
- - Added a DataLens iframe to the `media-block`.
1356
-
1357
- ## 0.18.4
1358
-
1359
- - Fixed the `BlockHeader` margins.
1360
-
1361
- ## 0.18.3
1362
-
1363
- - Added a fix for `footnotes`.
1364
-
1365
- ## 0.17.4
1366
-
1367
- - Added a fix for image rounding in the `FullScreenImage` component.
1368
-
1369
- ## 0.17.3
1370
-
1371
- - Added a fix for the `content-layout-block`, the default width is `m`.
1372
-
1373
- ## 0.17.2
1374
-
1375
- - Fixed the heading1 mixin.
1376
-
1377
- ## 0.17.1
1378
-
1379
- - Added a YFM fix for null values.
1380
-
1381
- ## 0.17.0
1382
-
1383
- - Added a block named `content-layout-block`.
1384
-
1385
- ## 0.11.1
1386
-
1387
- - Removed the `cards-with-image-block`. Instead, use the
1388
- `cards-layout-block` that is universal for all cards.
1389
-
1390
- ## 0.11.0
1391
-
1392
- - Added dark theme support in blocks.
1393
-
1394
- ## 0.10.1
1395
-
1396
- - Fixed imports in the HeaderBreadcrumbs component.
1397
-
1398
- ## 0.10.0
1399
-
1400
- - Added the breadcrumbs property to the Header component.
1401
-
1402
- ## 0.9.0
1403
-
1404
- - Added the CardLayout block, the BackgroundCard component.
1405
-
1406
- ## 0.7.1
1407
-
1408
- - Added the isoDate property to the NewsCard component.
1409
-
1410
- ## 0.7.0
1411
-
1412
- - Added the HeaderSlider block.
1413
- - Fixed the caption bug in the Tabs block.
1414
-
1415
- ## 0.6.4
1416
-
1417
- - Fixed the Icons block links.
1418
-
1419
- ## 0.6.3
1420
-
1421
- - Fixed the shadow color of Slider arrows and cards.
1422
-
1423
- ## 0.6.0
1424
-
1425
- - Added the Icons and Header blocks.
1426
- - Added the NewsCard component.
1427
- - Updated the CardsWithImage block with fullscreen support added.
1428
-
1429
- ## 0.5.1
1430
-
1431
- - Fixed Title size L fonts.
1432
- - Removed padding-bottom for the HeaderBlock content in the mobile version.
1433
-
1434
- ## 0.5.0
1435
-
1436
- - Added style redesign.
1437
-
1438
- ## 0.3.5
1439
-
1440
- - Added the Header block.
1441
-
1442
- ## 0.3.3
1443
-
1444
- - Fixed the Title component animation, added the right margin to correctly break the title.
1445
-
1446
- ## 0.1.4
1447
-
1448
- - Moved globally defined styles to components.
1449
-
1450
- ## 0.1.1
1451
-
1452
- - Fixed offsets from an image in the cards-with-image.
1453
-
1454
- ## 0.1.0
1455
-
1456
- - Added a block with photos: cards-with-image.
1457
-
1458
- ## 0.0.10
1459
-
1460
- - Added style fixes for the banner dark theme.
1461
-
1462
- ## 0.0.8
1463
-
1464
- - Added YFM style fixes and updates for components from cloud-www.
1465
-
1466
- ## 0.0.5
1467
-
1468
- - Added a mixin for setting style specificity. Fixed errors related to style activation order.
1469
-
1470
- ## 0.0.4
1471
-
1472
- - Fixed the margins of nested grids.
1473
-
1474
- ## 0.0.3
1475
-
1476
- - Added a grid column property that allows resetting the margins.
1477
-
1478
- ## 0.0.2
1479
-
1480
- - Added style variables for fonts. Fixed the `PageConstructor` component class.
1481
-
1482
- ## 0.0.1
1483
-
1484
- - Added page constructor version 1.