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