@swc-react/radio 1.10.0 → 1.11.0-snapshot-test.20260129145631
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/next.d.ts +2 -2
- package/package.json +7 -2
package/next.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare const Radio: import("react").ComponentType<Omit<import("react").HTMLAttributes<import("radio/src/Radio.js").Radio>, "
|
|
1
|
+
export declare const Radio: import("react").ComponentType<Omit<import("react").HTMLAttributes<import("radio/src/Radio.js").Radio>, "change" | "invalid" | "keydown" | "renderOptions" | "value" | "checked" | "disabled" | "emphasized" | "readonly" | "size" | "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "isLTR" | "hasVisibleFocusInTree"> & {
|
|
2
2
|
keydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
3
3
|
change?: ((e: Event) => void) | undefined;
|
|
4
4
|
} & Partial<Omit<import("radio/src/Radio.js").Radio, keyof HTMLElement>> & import("react").RefAttributes<import("radio/src/Radio.js").Radio>>;
|
|
5
|
-
export declare const RadioGroup: import("react").ComponentType<Omit<import("react").HTMLAttributes<import("radio/src/RadioGroup.js").RadioGroup>, "label" | "change" | "invalid" | "name" | "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "horizontal" | "vertical" | "
|
|
5
|
+
export declare const RadioGroup: import("react").ComponentType<Omit<import("react").HTMLAttributes<import("radio/src/RadioGroup.js").RadioGroup>, "label" | "change" | "invalid" | "renderOptions" | "name" | "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "horizontal" | "vertical" | "isLTR" | "hasVisibleFocusInTree" | "renderHelpText" | "helpTextId" | "defaultNodes" | "selected" | "buttons" | "rovingTabindexController"> & {
|
|
6
6
|
change?: ((e: Event) => void) | undefined;
|
|
7
7
|
} & Partial<Omit<import("radio/src/RadioGroup.js").RadioGroup, keyof HTMLElement>> & import("react").RefAttributes<import("radio/src/RadioGroup.js").RadioGroup>>;
|
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/radio",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0-snapshot-test.20260129145631",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"description": "React and Next.js wrapper of the @spectrum-web-components/radio component",
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"author": "Adobe",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/adobe/spectrum-web-components.git",
|
|
13
|
+
"directory": "1st-gen/react/radio"
|
|
14
|
+
},
|
|
10
15
|
"type": "module",
|
|
11
16
|
"exports": {
|
|
12
17
|
".": {
|
|
@@ -26,7 +31,7 @@
|
|
|
26
31
|
],
|
|
27
32
|
"dependencies": {
|
|
28
33
|
"@lit/react": "^1.0.2",
|
|
29
|
-
"@spectrum-web-components/radio": "^1.
|
|
34
|
+
"@spectrum-web-components/radio": "^1.11.0-snapshot-test.20260129145631"
|
|
30
35
|
},
|
|
31
36
|
"peerDependencies": {
|
|
32
37
|
"next": "~13.4 || ~14"
|