@snack-uikit/fields 0.50.1-preview-636af466.0 → 0.51.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,22 @@
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.51.0 (2025-09-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * **FF-7117:** add inputMode prop to FieldTextArea ([b7e7310](https://github.com/cloud-ru-tech/snack-uikit/commit/b7e7310efd53a7fee15db29654f105bba8036bc6))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+
17
+ * **FF-7117:** make inputMode required for FieldText ([c864075](https://github.com/cloud-ru-tech/snack-uikit/commit/c86407524d77fbedd9912654d3658fddf71af10f))
18
+
19
+
20
+
21
+
6
22
  # 0.50.0 (2025-09-02)
7
23
 
8
24
 
package/README.md CHANGED
@@ -532,7 +532,7 @@ FieldStepper в основном предназначен для работы с
532
532
  | placeholder | `string` | - | Плейсхолдер |
533
533
  | autoFocus | `boolean` | - | Включен ли авто-фокус |
534
534
  | maxLength | `number` | - | Максимальное кол-во символов |
535
- | inputMode | enum InputMode: `"none"`, `"text"`, `"search"`, `"tel"`, `"email"`, `"decimal"`, `"numeric"`, `"url"` | - | |
535
+ | inputMode | enum InputMode: `"none"`, `"text"`, `"search"`, `"tel"`, `"email"`, `"decimal"`, `"numeric"`, `"url"` | - | Режим работы экранной клавиатуры |
536
536
  | spellCheck | `boolean` | true | Включение проверки орфографии |
537
537
  | onKeyDown | `KeyboardEventHandler<HTMLTextAreaElement>` | - | Колбек нажатия клавиши клавиатуры |
538
538
  | className | `string` | - | CSS-класс |
@@ -35,6 +35,7 @@ export type TextAreaProps = RefAttributes<HTMLTextAreaElement> & WithSupportProp
35
35
  minRows?: number;
36
36
  /** Включение проверки орфографии @default true*/
37
37
  spellCheck?: boolean;
38
+ /** Режим работы экранной клавиатуры */
38
39
  inputMode?: InputPrivateProps['inputMode'];
39
40
  }>;
40
41
  export declare const TextArea: import("react").ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & RefAttributes<HTMLTextAreaElement>>;
@@ -35,6 +35,7 @@ export type TextAreaProps = RefAttributes<HTMLTextAreaElement> & WithSupportProp
35
35
  minRows?: number;
36
36
  /** Включение проверки орфографии @default true*/
37
37
  spellCheck?: boolean;
38
+ /** Режим работы экранной клавиатуры */
38
39
  inputMode?: InputPrivateProps['inputMode'];
39
40
  }>;
40
41
  export declare const TextArea: import("react").ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & RefAttributes<HTMLTextAreaElement>>;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Fields",
7
- "version": "0.50.1-preview-636af466.0",
7
+ "version": "0.51.0",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -37,13 +37,13 @@
37
37
  "scripts": {},
38
38
  "dependencies": {
39
39
  "@snack-uikit/button": "0.19.16",
40
- "@snack-uikit/calendar": "0.13.2-preview-636af466.0",
40
+ "@snack-uikit/calendar": "0.13.2",
41
41
  "@snack-uikit/color-picker": "0.3.42",
42
42
  "@snack-uikit/divider": "3.2.10",
43
43
  "@snack-uikit/dropdown": "0.5.3",
44
44
  "@snack-uikit/icons": "0.27.2",
45
45
  "@snack-uikit/input-private": "4.8.1",
46
- "@snack-uikit/list": "0.32.3-preview-636af466.0",
46
+ "@snack-uikit/list": "0.32.3",
47
47
  "@snack-uikit/scroll": "0.10.5",
48
48
  "@snack-uikit/skeleton": "0.6.9",
49
49
  "@snack-uikit/slider": "0.3.26",
@@ -65,5 +65,5 @@
65
65
  "peerDependencies": {
66
66
  "@snack-uikit/locale": "*"
67
67
  },
68
- "gitHead": "e410f6e8c3cf21b77092091b4ee3ff6285e6abac"
68
+ "gitHead": "1fbe7f03aeb8419a0af7d906d0fcb1284f395f18"
69
69
  }
@@ -51,6 +51,7 @@ export type TextAreaProps = RefAttributes<HTMLTextAreaElement> &
51
51
  minRows?: number;
52
52
  /** Включение проверки орфографии @default true*/
53
53
  spellCheck?: boolean;
54
+ /** Режим работы экранной клавиатуры */
54
55
  inputMode?: InputPrivateProps['inputMode'];
55
56
  }>;
56
57