@plasmicpkgs/react-aria 0.0.59 → 0.0.60
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/dist/.tsbuildinfo +1 -1
- package/dist/react-aria.esm.js +322 -406
- package/dist/react-aria.esm.js.map +1 -1
- package/dist/react-aria.js +321 -405
- package/dist/react-aria.js.map +1 -1
- package/package.json +2 -2
- package/dist/registerForm.d.ts +0 -9
- package/skinny/registerForm.d.ts +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/react-aria",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
4
|
"description": "Plasmic registration calls for react-aria based components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"publishConfig": {
|
|
75
75
|
"access": "public"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "4e0fb67ab30fe34e04874e7a60588de50fa8d5a1"
|
|
78
78
|
}
|
package/dist/registerForm.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import type { FormProps } from "react-aria-components";
|
|
3
|
-
import { CodeComponentMetaOverrides, Registerable } from "./utils";
|
|
4
|
-
interface BaseFormProps extends Omit<FormProps, "onSubmit"> {
|
|
5
|
-
onSubmit: (data: Record<string, FormDataEntryValue | FormDataEntryValue[] | null>) => void;
|
|
6
|
-
}
|
|
7
|
-
export declare function BaseForm(props: BaseFormProps): React.JSX.Element;
|
|
8
|
-
export declare function registerForm(loader?: Registerable, overrides?: CodeComponentMetaOverrides<typeof BaseForm>): void;
|
|
9
|
-
export {};
|
package/skinny/registerForm.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import type { FormProps } from "react-aria-components";
|
|
3
|
-
import { CodeComponentMetaOverrides, Registerable } from "./utils";
|
|
4
|
-
interface BaseFormProps extends Omit<FormProps, "onSubmit"> {
|
|
5
|
-
onSubmit: (data: Record<string, FormDataEntryValue | FormDataEntryValue[] | null>) => void;
|
|
6
|
-
}
|
|
7
|
-
export declare function BaseForm(props: BaseFormProps): React.JSX.Element;
|
|
8
|
-
export declare function registerForm(loader?: Registerable, overrides?: CodeComponentMetaOverrides<typeof BaseForm>): void;
|
|
9
|
-
export {};
|