@micromag/element-checkbox 0.4.100 → 0.4.110
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/es/index.d.ts +2 -2
- package/package.json +4 -4
package/es/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { TextElement } from '@micromag/core';
|
|
3
3
|
|
|
4
4
|
interface CheckboxProps {
|
|
@@ -9,6 +9,6 @@ interface CheckboxProps {
|
|
|
9
9
|
checkboxStyle?: Record<string, unknown> | null;
|
|
10
10
|
className?: string | null;
|
|
11
11
|
}
|
|
12
|
-
declare function Checkbox({ option, value, onChange, focusable, checkboxStyle, className, }: CheckboxProps):
|
|
12
|
+
declare function Checkbox({ option, value, onChange, focusable, checkboxStyle, className, }: CheckboxProps): React.JSX.Element;
|
|
13
13
|
|
|
14
14
|
export { Checkbox as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/element-checkbox",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.110",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@babel/runtime": "^7.28.6",
|
|
61
|
-
"@micromag/core": "^0.4.
|
|
61
|
+
"@micromag/core": "^0.4.110",
|
|
62
62
|
"classnames": "^2.2.6",
|
|
63
|
-
"lodash-es": "^4.
|
|
63
|
+
"lodash-es": "^4.18.1",
|
|
64
64
|
"react-intl": "^8.1.3 || ^10.0.0",
|
|
65
65
|
"uuid": "^9.0.0"
|
|
66
66
|
},
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"access": "public",
|
|
77
77
|
"registry": "https://registry.npmjs.org/"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "96bd434b39e45700f85f8863d6404fedd416f796"
|
|
80
80
|
}
|