@transferwise/components 41.3.0 → 41.3.1
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
|
+
## [41.3.1](https://github.com/transferwise/neptune-web/compare/@transferwise/components@41.3.0...@transferwise/components@41.3.1) (2022-09-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **CheckboxButton:** props issue ([#1623](https://github.com/transferwise/neptune-web/issues/1623)) ([58b4875](https://github.com/transferwise/neptune-web/commit/58b48753a4b16df5271fff8338107fd8156f7ded))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [41.3.0](https://github.com/transferwise/neptune-web/compare/@transferwise/components@41.2.1...@transferwise/components@41.3.0) (2022-09-23)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare type CheckboxButtonProps =
|
|
3
|
-
declare const CheckboxButton: import("react").ForwardRefExoticComponent<
|
|
1
|
+
import { InputHTMLAttributes } from 'react';
|
|
2
|
+
export declare type CheckboxButtonProps = InputHTMLAttributes<HTMLInputElement>;
|
|
3
|
+
declare const CheckboxButton: import("react").ForwardRefExoticComponent<CheckboxButtonProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
4
4
|
export default CheckboxButton;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const _default: {
|
|
3
|
-
component: import("react").ForwardRefExoticComponent<
|
|
3
|
+
component: import("react").ForwardRefExoticComponent<import("./CheckboxButton").CheckboxButtonProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
4
4
|
title: string;
|
|
5
5
|
};
|
|
6
6
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/components",
|
|
3
|
-
"version": "41.3.
|
|
3
|
+
"version": "41.3.1",
|
|
4
4
|
"description": "Neptune React components",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/umd/polyfill/main.js",
|
|
@@ -121,5 +121,5 @@
|
|
|
121
121
|
"**/chokidar/glob-parent": "5.1.2",
|
|
122
122
|
"**/fast-glob/glob-parent": "5.1.2"
|
|
123
123
|
},
|
|
124
|
-
"gitHead": "
|
|
124
|
+
"gitHead": "f492af5a1d5077ef21fc89f4d135b8670576ec91"
|
|
125
125
|
}
|