@cloud-ru/uikit-product-fields-predefined 2.3.2 → 2.3.4-preview-fb05f6c6.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-fields-predefined",
3
3
  "title": "Fields Predefined",
4
- "version": "2.3.2",
4
+ "version": "2.3.4-preview-fb05f6c6.0",
5
5
  "sideEffects": [
6
6
  "*.css",
7
7
  "*.woff",
@@ -62,5 +62,5 @@
62
62
  "react-hook-form": ">=7.51.0",
63
63
  "yup": ">=0.32.0"
64
64
  },
65
- "gitHead": "d170ad27cd3973716a165722c6775d803d3346bf"
65
+ "gitHead": "15ff924a874e4d968ea5c3743e6758d4672ee891"
66
66
  }
@@ -36,7 +36,7 @@ export function CheckItem({ label, checked, layoutType, shouldHide = false, anim
36
36
 
37
37
  return (
38
38
  <div className={styles.checkItem} data-layout-type={layoutType} data-animated={animated}>
39
- <CheckSVG size={20} className={styles.icon} data-checked={checked} />
39
+ <CheckSVG size={16} className={styles.icon} data-checked={checked} />
40
40
  <Typography.SansBodyM className={styles.label} data-checked={checked}>
41
41
  {label}
42
42
  </Typography.SansBodyM>
@@ -46,6 +46,7 @@ $sizes: 's', 'm', 'l';
46
46
  .textarea {
47
47
  @include ste.composite-var(ste.$theme-variables, 'sans', 'body', $size);
48
48
 
49
+ font-size: max(16px, #{ste.simple-var(ste.$theme-variables, 'sans', 'body', $size, 'font-size')});
49
50
  padding-right: calc(42px + ste.simple-var(ste.$fields-scroll-bar-width, 'width'));
50
51
 
51
52
  &::placeholder {
@@ -23,6 +23,8 @@
23
23
  &[data-layout-type='tablet'] {
24
24
  gap: 8px;
25
25
  @include ste.composite-var(ste.$sans-body-s);
26
+ padding: 8px 16px;
27
+
26
28
 
27
29
  .validationList {
28
30
  gap: 2px;
@@ -4,4 +4,5 @@
4
4
  display: flex;
5
5
  flex-direction: column;
6
6
  gap: 8px;
7
+ background-color: ste.$sys-neutral-background1-level;
7
8
  }