@snack-uikit/fields 0.20.4-preview-fa3ea861.0 → 0.20.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 +16 -0
- package/dist/components/FieldSecure/FieldSecure.d.ts +1 -1
- package/dist/components/FieldSelect/utils/getArrowIcon.d.ts +2 -1
- package/dist/components/FieldSlider/FieldSlider.d.ts +1 -1
- package/dist/components/FieldText/FieldText.d.ts +1 -1
- package/dist/components/FieldTextArea/FieldTextArea.d.ts +1 -1
- package/package.json +10 -10
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.20.4 (2024-05-08)
|
|
7
|
+
|
|
8
|
+
### Only dependencies have been changed
|
|
9
|
+
* [@snack-uikit/calendar@0.7.9](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/calendar/CHANGELOG.md)
|
|
10
|
+
* [@snack-uikit/icons@0.21.0](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/icons/CHANGELOG.md)
|
|
11
|
+
* [@snack-uikit/input-private@3.1.3](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/input-private/CHANGELOG.md)
|
|
12
|
+
* [@snack-uikit/list@0.11.5](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/list/CHANGELOG.md)
|
|
13
|
+
* [@snack-uikit/slider@0.1.10](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/slider/CHANGELOG.md)
|
|
14
|
+
* [@snack-uikit/tag@0.9.2](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/tag/CHANGELOG.md)
|
|
15
|
+
* [@snack-uikit/tooltip@0.13.3](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/tooltip/CHANGELOG.md)
|
|
16
|
+
* [@snack-uikit/truncate-string@0.4.14](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/truncate-string/CHANGELOG.md)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 0.20.3 (2024-05-03)
|
|
7
23
|
|
|
8
24
|
|
|
@@ -21,5 +21,5 @@ type FieldSecureOwnProps = {
|
|
|
21
21
|
export type FieldSecureProps = WithSupportProps<FieldSecureOwnProps & InputProps & WrapperProps>;
|
|
22
22
|
export declare const FieldSecure: import("react").ForwardRefExoticComponent<{
|
|
23
23
|
'data-test-id'?: string | undefined;
|
|
24
|
-
} & import("react").AriaAttributes & FieldSecureOwnProps & Pick<Partial<InputPrivateProps>, "
|
|
24
|
+
} & import("react").AriaAttributes & FieldSecureOwnProps & Pick<Partial<InputPrivateProps>, "onChange" | "value"> & Pick<InputPrivateProps, "disabled" | "readonly" | "id" | "name" | "onFocus" | "onBlur" | "placeholder" | "maxLength"> & WrapperProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
25
25
|
export {};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { Size } from '@snack-uikit/input-private';
|
|
2
3
|
export declare function getArrowIcon({ size, open }: {
|
|
3
4
|
size: Size;
|
|
4
5
|
open: boolean;
|
|
5
6
|
}): {
|
|
6
|
-
ArrowIcon: (
|
|
7
|
+
ArrowIcon: import("react").ForwardRefExoticComponent<Omit<import("@snack-uikit/icons/dist/components/interface-icons/chevronUp").ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
7
8
|
arrowIconSize: 16 | 24;
|
|
8
9
|
};
|
|
@@ -17,5 +17,5 @@ type FieldSliderOwnProps = {
|
|
|
17
17
|
export type FieldSliderProps = WithSupportProps<FieldSliderOwnProps & SliderProps & WrapperProps>;
|
|
18
18
|
export declare const FieldSlider: import("react").ForwardRefExoticComponent<{
|
|
19
19
|
'data-test-id'?: string | undefined;
|
|
20
|
-
} & import("react").AriaAttributes & FieldSliderOwnProps & Pick<InputPrivateProps, "disabled" | "readonly" | "
|
|
20
|
+
} & import("react").AriaAttributes & FieldSliderOwnProps & Pick<InputPrivateProps, "disabled" | "readonly" | "id" | "name" | "onFocus" | "onBlur"> & Pick<SliderComponentProps, "onChange" | "value" | "range" | "tipFormatter"> & Required<Pick<SliderComponentProps, "max" | "min" | "step" | "marks">> & WrapperProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
21
21
|
export {};
|
|
@@ -20,5 +20,5 @@ type FieldTextOwnProps = {
|
|
|
20
20
|
export type FieldTextProps = WithSupportProps<FieldTextOwnProps & InputProps & WrapperProps>;
|
|
21
21
|
export declare const FieldText: import("react").ForwardRefExoticComponent<{
|
|
22
22
|
'data-test-id'?: string | undefined;
|
|
23
|
-
} & import("react").AriaAttributes & FieldTextOwnProps & Pick<Partial<InputPrivateProps>, "
|
|
23
|
+
} & import("react").AriaAttributes & FieldTextOwnProps & Pick<Partial<InputPrivateProps>, "onChange" | "value"> & Pick<InputPrivateProps, "disabled" | "readonly" | "id" | "name" | "onFocus" | "onBlur" | "placeholder" | "maxLength"> & WrapperProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
24
24
|
export {};
|
|
@@ -24,5 +24,5 @@ type FieldTextAreaOwnProps = {
|
|
|
24
24
|
export type FieldTextAreaProps = WithSupportProps<FieldTextAreaOwnProps & InputProps & WrapperProps>;
|
|
25
25
|
export declare const FieldTextArea: import("react").ForwardRefExoticComponent<{
|
|
26
26
|
'data-test-id'?: string | undefined;
|
|
27
|
-
} & import("react").AriaAttributes & FieldTextAreaOwnProps & Pick<Partial<TextAreaProps>, "value"> & Pick<TextAreaProps, "disabled" | "readonly" | "
|
|
27
|
+
} & import("react").AriaAttributes & FieldTextAreaOwnProps & Pick<Partial<TextAreaProps>, "value"> & Pick<TextAreaProps, "disabled" | "readonly" | "id" | "name" | "onFocus" | "onBlur" | "placeholder" | "maxLength"> & WrapperProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
28
28
|
export {};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Fields",
|
|
7
|
-
"version": "0.20.4
|
|
7
|
+
"version": "0.20.4",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"scripts": {},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@snack-uikit/button": "0.17.1",
|
|
36
|
-
"@snack-uikit/calendar": "0.7.
|
|
36
|
+
"@snack-uikit/calendar": "0.7.9",
|
|
37
37
|
"@snack-uikit/dropdown": "0.2.2",
|
|
38
|
-
"@snack-uikit/icons": "0.
|
|
39
|
-
"@snack-uikit/input-private": "3.1.
|
|
40
|
-
"@snack-uikit/list": "0.11.5
|
|
38
|
+
"@snack-uikit/icons": "0.21.0",
|
|
39
|
+
"@snack-uikit/input-private": "3.1.3",
|
|
40
|
+
"@snack-uikit/list": "0.11.5",
|
|
41
41
|
"@snack-uikit/scroll": "0.5.3",
|
|
42
42
|
"@snack-uikit/skeleton": "0.3.4",
|
|
43
|
-
"@snack-uikit/slider": "0.1.
|
|
44
|
-
"@snack-uikit/tag": "0.9.
|
|
45
|
-
"@snack-uikit/tooltip": "0.13.
|
|
46
|
-
"@snack-uikit/truncate-string": "0.4.
|
|
43
|
+
"@snack-uikit/slider": "0.1.10",
|
|
44
|
+
"@snack-uikit/tag": "0.9.2",
|
|
45
|
+
"@snack-uikit/tooltip": "0.13.3",
|
|
46
|
+
"@snack-uikit/truncate-string": "0.4.14",
|
|
47
47
|
"@snack-uikit/utils": "3.3.0",
|
|
48
48
|
"classnames": "2.3.2",
|
|
49
49
|
"copy-to-clipboard": "3.3.3",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@snack-uikit/locale": "*"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "59bd2ac46a341357d543ada864a34e09745b3e42"
|
|
63
63
|
}
|