@gravity-ui/page-constructor 1.4.0 → 1.4.2-alpha
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.2](https://github.com/gravity-ui/page-constructor/pull/46) (2022-11-07)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* change link text m arrow size
|
|
8
|
+
|
|
9
|
+
## [1.4.1](https://github.com/gravity-ui/page-constructor/pull/42) (2022-10-28)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add specificity for Tabs item
|
|
14
|
+
|
|
3
15
|
## [1.4.0](https://github.com/gravity-ui/page-constructor/pull/40) (2022-10-26)
|
|
4
16
|
|
|
5
17
|
|
|
@@ -7,11 +7,12 @@ unpredictable css rules order in build */
|
|
|
7
7
|
.pc-TabsBlock__block-title {
|
|
8
8
|
margin-bottom: 12px;
|
|
9
9
|
}
|
|
10
|
-
.pc-TabsBlock__tabs {
|
|
10
|
+
.pc-TabsBlock__tabs.pc-TabsBlock__tabs {
|
|
11
11
|
flex-wrap: nowrap;
|
|
12
12
|
overflow-x: auto;
|
|
13
13
|
margin-bottom: 32px;
|
|
14
14
|
}
|
|
15
|
+
|
|
15
16
|
.pc-TabsBlock__image {
|
|
16
17
|
width: 100%;
|
|
17
18
|
height: auto;
|
|
@@ -7,11 +7,12 @@ unpredictable css rules order in build */
|
|
|
7
7
|
.pc-TabsBlock__block-title {
|
|
8
8
|
margin-bottom: 12px;
|
|
9
9
|
}
|
|
10
|
-
.pc-TabsBlock__tabs {
|
|
10
|
+
.pc-TabsBlock__tabs.pc-TabsBlock__tabs {
|
|
11
11
|
flex-wrap: nowrap;
|
|
12
12
|
overflow-x: auto;
|
|
13
13
|
margin-bottom: 32px;
|
|
14
14
|
}
|
|
15
|
+
|
|
15
16
|
.pc-TabsBlock__image {
|
|
16
17
|
width: 100%;
|
|
17
18
|
height: auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-ui/page-constructor",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2-alpha",
|
|
4
4
|
"description": "Gravity UI Page Constructor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
],
|
|
121
121
|
"*.{json,yaml,yml,md}": [
|
|
122
122
|
"prettier --write"
|
|
123
|
-
]
|
|
123
|
+
],
|
|
124
|
+
"publishConfig": {
|
|
125
|
+
"tag": "alpha"
|
|
126
|
+
}
|
|
124
127
|
}
|
|
125
128
|
}
|