@snack-uikit/card 0.14.0 → 0.14.1

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
+ ## 0.14.1 (2024-10-31)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **PDS-438:** stylelint update ([9d40d4e](https://github.com/cloud-ru-tech/snack-uikit/commit/9d40d4eb445eeaaca5a2dc1f6421d496f86aeac3))
12
+
13
+
14
+
15
+
16
+
6
17
  # 0.14.0 (2024-10-28)
7
18
 
8
19
 
@@ -2,7 +2,6 @@
2
2
  padding-top:var(--space-card-padding-function-badge, 8px);
3
3
  padding-right:var(--space-card-padding-function-badge, 8px);
4
4
  position:absolute;
5
- z-index:1;
6
5
  top:0;
7
6
  right:0;
8
7
  box-sizing:border-box;
@@ -2,7 +2,6 @@
2
2
  padding-top:var(--space-card-padding-function-badge, 8px);
3
3
  padding-right:var(--space-card-padding-function-badge, 8px);
4
4
  position:absolute;
5
- z-index:1;
6
5
  top:0;
7
6
  right:0;
8
7
  box-sizing:border-box;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Card",
7
- "version": "0.14.0",
7
+ "version": "0.14.1",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -36,16 +36,16 @@
36
36
  "license": "Apache-2.0",
37
37
  "scripts": {},
38
38
  "dependencies": {
39
- "@snack-uikit/button": "0.19.0",
39
+ "@snack-uikit/button": "0.19.1",
40
40
  "@snack-uikit/icon-predefined": "0.7.0",
41
41
  "@snack-uikit/icons": "0.24.0",
42
- "@snack-uikit/list": "0.20.0",
42
+ "@snack-uikit/list": "0.21.0",
43
43
  "@snack-uikit/promo-tag": "0.6.0",
44
- "@snack-uikit/tag": "0.11.0",
44
+ "@snack-uikit/tag": "0.11.1",
45
45
  "@snack-uikit/truncate-string": "0.6.0",
46
46
  "@snack-uikit/typography": "0.8.0",
47
47
  "@snack-uikit/utils": "3.5.0",
48
48
  "classnames": "2.3.2"
49
49
  },
50
- "gitHead": "8499829efa0c118b704de17411ae2328a024adb5"
50
+ "gitHead": "b7163c6f939105eb34cabec64c9e983ac7958c26"
51
51
  }
@@ -5,6 +5,7 @@ $sizes: 's', 'm', 'l';
5
5
 
6
6
  .functionBadgeWrapper {
7
7
  position: absolute;
8
+ /* stylelint-disable-next-line declaration-property-value-allowed-list */
8
9
  z-index: 1;
9
10
  top: 0;
10
11
  right: 0;
@@ -32,6 +33,7 @@ $sizes: 's', 'm', 'l';
32
33
  @include styles-tokens-card.composite-var(styles-tokens-card.$card-container);
33
34
 
34
35
  position: relative;
36
+ /* stylelint-disable-next-line declaration-property-value-allowed-list */
35
37
  z-index: 0;
36
38
 
37
39
  overflow: hidden;
@@ -180,6 +182,7 @@ $sizes: 's', 'm', 'l';
180
182
 
181
183
  .anchor {
182
184
  position: absolute;
185
+ /* stylelint-disable-next-line declaration-property-value-allowed-list */
183
186
  z-index: 1;
184
187
  top: 0;
185
188
  right: 0;
@@ -4,10 +4,8 @@
4
4
  @include styles-tokens-card.composite-var(styles-tokens-card.$card-function-badge);
5
5
 
6
6
  position: absolute;
7
- z-index: 1;
8
7
  top: 0;
9
8
  right: 0;
10
-
11
9
  box-sizing: border-box;
12
10
  }
13
11