@snack-uikit/card 0.12.4-preview-c7516715.0 → 0.12.4

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.12.4 (2024-04-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **FF-00:** fix function badge z-index issue ([d036837](https://github.com/cloud-ru-tech/snack-uikit/commit/d0368379adee36b8c7ebd0c6959188c210e96947))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 0.12.3 (2024-04-16)
7
18
 
8
19
 
@@ -24,6 +24,7 @@
24
24
  border-radius:var(--radius-card-container, 20px);
25
25
  border-width:var(--border-width-card-container, 1px);
26
26
  position:relative;
27
+ z-index:0;
27
28
  overflow:hidden;
28
29
  box-sizing:border-box;
29
30
  margin:0;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Card",
7
- "version": "0.12.4-preview-c7516715.0",
7
+ "version": "0.12.4",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -37,11 +37,11 @@
37
37
  "@snack-uikit/icons": "0.20.1",
38
38
  "@snack-uikit/list": "0.10.0",
39
39
  "@snack-uikit/promo-tag": "0.4.1",
40
- "@snack-uikit/tag": "0.8.3-preview-c7516715.0",
40
+ "@snack-uikit/tag": "0.8.2",
41
41
  "@snack-uikit/truncate-string": "0.4.12",
42
42
  "@snack-uikit/typography": "0.6.1",
43
43
  "@snack-uikit/utils": "3.2.0",
44
44
  "classnames": "2.3.2"
45
45
  },
46
- "gitHead": "4b27e5e2b3cb5a72c247e92a19c9628a0e1ba2f9"
46
+ "gitHead": "67104d44e68a9921cb23211e989bafb43bf48a93"
47
47
  }
@@ -32,6 +32,7 @@ $sizes: 's', 'm', 'l';
32
32
  @include composite-var($card-container);
33
33
 
34
34
  position: relative;
35
+ z-index: 0;
35
36
 
36
37
  overflow: hidden;
37
38
 
@@ -156,7 +157,7 @@ $sizes: 's', 'm', 'l';
156
157
  outline-color: $sys-neutral-decor-default;
157
158
  outline-width: $border-width-card-container;
158
159
 
159
- .check {
160
+ .check { /* stylelint-disable-line no-descending-specificity */
160
161
  color: $sys-neutral-on-accent;
161
162
  background-color: $sys-neutral-text-disabled;
162
163
  }