@cloud-ru/uikit-product-site-hero 1.7.2 → 1.8.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 1.8.0 (2026-06-11)
7
+
8
+
9
+ ### Features
10
+
11
+ * **SITE-11095:** edit gap ([108ae07](https://github.com/cloud-ru-tech/uikit-product/commit/108ae0727a63a390206424254afaae7b49d7e28a))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 1.7.2 (2026-06-05)
7
18
 
8
19
  ### Only dependencies have been changed
package/README.md CHANGED
@@ -16,6 +16,7 @@ Hero blocks for Site
16
16
  | subtitle* | `string` | - | Подзаголовок |
17
17
  | title* | `string` | - | Заголовок |
18
18
  | className | `string` | - | CSS - класснейм |
19
+ | description | `string` | - | Описание |
19
20
  | classNameImage | `string` | - | ClassName для фоновой картинки |
20
21
  | buttons | `HeroCentralButton[]` | - | Настройки кнопкок |
21
22
  | anchors | `AnchorTypeProps[]` | - | Якорное меню |
@@ -29,7 +29,7 @@
29
29
  .text{
30
30
  display:flex;
31
31
  flex-direction:column;
32
- gap:calc(var(--dimension-1m, 8px)var(--dimension-050m, 4px));
32
+ gap:var(--dimension-2m, 16px);
33
33
  max-width:800px;
34
34
  text-align:left;
35
35
  }
@@ -29,7 +29,7 @@
29
29
  .text{
30
30
  display:flex;
31
31
  flex-direction:column;
32
- gap:calc(var(--dimension-1m, 8px)var(--dimension-050m, 4px));
32
+ gap:var(--dimension-2m, 16px);
33
33
  max-width:800px;
34
34
  text-align:left;
35
35
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-site-hero",
3
3
  "title": "Site Hero",
4
- "version": "1.7.2",
4
+ "version": "1.8.0",
5
5
  "sideEffects": [
6
6
  "*.css",
7
7
  "*.woff",
@@ -57,5 +57,5 @@
57
57
  "peerDependencies": {
58
58
  "@cloud-ru/uikit-product-locale": "*"
59
59
  },
60
- "gitHead": "447f780b5e9b4f1f4c57fdc2eef2a96858754c75"
60
+ "gitHead": "9aa8532640abb854234e2913f2ffb45e7c358a5a"
61
61
  }
@@ -38,7 +38,7 @@
38
38
  .text {
39
39
  display: flex;
40
40
  flex-direction: column;
41
- gap: calc(#{var.$dimension-1m + var.$dimension-050m});
41
+ gap: var.$dimension-2m;
42
42
  max-width: 800px;
43
43
  text-align: left;
44
44