@synerise/ds-form-field 1.1.21 → 1.2.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 +6 -0
- package/dist/FormField.types.d.ts +1 -2
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
# [1.2.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form-field@1.1.21...@synerise/ds-form-field@1.2.0) (2025-12-16)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **estimation:** new component ([e5cfacf](https://github.com/Synerise/synerise-design/commit/e5cfacf5362656114e9ce83fcf0631118ff88993))
|
|
11
|
+
|
|
6
12
|
## [1.1.21](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form-field@1.1.20...@synerise/ds-form-field@1.1.21) (2025-12-15)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @synerise/ds-form-field
|
|
@@ -4,7 +4,7 @@ import type { WithHTMLAttributes } from '@synerise/ds-utils';
|
|
|
4
4
|
export type ContentAboveProps = BaseLabelProps & {
|
|
5
5
|
rightSide?: ReactNode;
|
|
6
6
|
};
|
|
7
|
-
type BaseLabelProps = {
|
|
7
|
+
export type BaseLabelProps = {
|
|
8
8
|
label?: ReactNode;
|
|
9
9
|
tooltip?: ReactNode;
|
|
10
10
|
tooltipConfig?: TooltipProps;
|
|
@@ -21,4 +21,3 @@ export type ContentBelowProps = {
|
|
|
21
21
|
export type FormFieldLabelProps = WithHTMLAttributes<HTMLLabelElement, BaseLabelProps & {
|
|
22
22
|
children?: ReactNode;
|
|
23
23
|
}>;
|
|
24
|
-
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { default } from './FormField';
|
|
2
2
|
export * from './components';
|
|
3
|
-
export type { FormFieldProps, FormFieldCommonProps, FormFieldLabelProps, ContentAboveProps, ContentBelowProps, } from './FormField.types';
|
|
3
|
+
export type { FormFieldProps, FormFieldCommonProps, FormFieldLabelProps, ContentAboveProps, ContentBelowProps, BaseLabelProps, } from './FormField.types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-form-field",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "FormField UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"react": ">=16.9.0 <= 18.3.1",
|
|
46
46
|
"styled-components": "^5.3.3"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "c610279aef2d2139973075117de1bb281b9393b6"
|
|
49
49
|
}
|