diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b48fa7c..fc5967a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: cache: yarn - run: yarn install --immutable - run: yarn docs - - uses: tj-actions/verify-changed-files@v16 + - uses: tj-actions/verify-changed-files@v17 id: verify-changed-files with: files: | diff --git a/.nvmrc b/.nvmrc index 54d3ad7..986c3cc 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -21.3.0 +21.6.0 diff --git a/package.json b/package.json index 37a6f60..7ec005e 100644 --- a/package.json +++ b/package.json @@ -23,24 +23,24 @@ "turbo": "turbo" }, "devDependencies": { - "@types/node": "^20.10.3", - "@typescript-eslint/eslint-plugin": "^6.13.1", - "@typescript-eslint/parser": "^6.13.1", - "eslint": "^8.55.0", + "@types/node": "^20.11.5", + "@typescript-eslint/eslint-plugin": "^6.19.0", + "@typescript-eslint/parser": "^6.19.0", + "eslint": "^8.56.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-etc": "^2.0.3", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-jsdoc": "^46.9.0", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jsdoc": "^48.0.2", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-sonarjs": "^0.23.0", - "semantic-release": "^22.0.8", - "ts-node": "^10.9.1", + "semantic-release": "^23.0.0", + "ts-node": "^10.9.2", "tslib": "^2.6.2", - "turbo": "^1.10.16", - "typedoc": "^0.25.4", + "turbo": "^1.11.3", + "typedoc": "^0.25.7", "typedoc-plugin-markdown": "^3.17.1", "typedoc-plugin-merge-modules": "^5.1.0", - "typescript": "^5.3.2" + "typescript": "^5.3.3" } } diff --git a/packages/core/docs/README.md b/packages/core/docs/README.md index e1f31a9..e3f3e59 100644 --- a/packages/core/docs/README.md +++ b/packages/core/docs/README.md @@ -51,6 +51,9 @@ Ƭ **ArrayFieldOf**\<`T`\>: \(`props`: [`ArrayFieldProps`](interfaces/ArrayFieldProps.md)\<`T`, `K`\>) => `ReactNode` +Helper type to describe an [ArrayField](README.md#arrayfield) component of an specific +struct `T`. + #### Type parameters | Name | Type | Description | @@ -61,9 +64,6 @@ ▸ \<`K`\>(`props`): `ReactNode` -Helper type to describe an [ArrayField](README.md#arrayfield) component of an specific -struct `T`. - ##### Type parameters | Name | Type | @@ -109,6 +109,9 @@ ___ Ƭ **ChangeCallback**\<`T`, `K`, `A`\>: (...`args`: `A`) => [`Optional`](README.md#optional)\<[`ValueByPath`](README.md#valuebypath)\<`T`, `K`\>\> +Generic callback function. Infers the arguments types and the return type is +resolved from the path type. + #### Type parameters | Name | Type | Description | @@ -121,9 +124,6 @@ ___ ▸ (`...args`): [`Optional`](README.md#optional)\<[`ValueByPath`](README.md#valuebypath)\<`T`, `K`\>\> -Generic callback function. Infers the arguments types and the return type is -resolved from the path type. - ##### Parameters | Name | Type | @@ -163,6 +163,8 @@ ___ Ƭ **FieldOf**\<`T`\>: \(`props`: [`FieldProps`](interfaces/FieldProps.md)\<`T`, `K`, `D`\>) => `ReactNode` +Helper type to describe a [Field](README.md#field) component of an specific struct `T`. + #### Type parameters | Name | Type | Description | @@ -173,8 +175,6 @@ ___ ▸ \<`K`, `D`\>(`props`): `ReactNode` -Helper type to describe a [Field](README.md#field) component of an specific struct `T`. - ##### Type parameters | Name | Type | @@ -259,6 +259,8 @@ ___ Ƭ **SetValue**\<`V`\>: (`action`: `SetStateAction`\<[`Optional`](README.md#optional)\<`V`\>\>) => `void` +Function that receives an action to set a value of `V` and retunrs void. + #### Type parameters | Name | Description | @@ -269,8 +271,6 @@ ___ ▸ (`action`): `void` -Function that receives an action to set a value of `V` and retunrs void. - ##### Parameters | Name | Type | diff --git a/packages/core/docs/interfaces/Adapter.md b/packages/core/docs/interfaces/Adapter.md index 0c77a08..460c165 100644 --- a/packages/core/docs/interfaces/Adapter.md +++ b/packages/core/docs/interfaces/Adapter.md @@ -25,6 +25,14 @@ form validations and their hooks. • **required**: (`path`: [`Path`](../README.md#path)\<`T`\>) => `boolean` +Should return `true` if the field in the `path` is required in the +validation schema. I.e., whenever the field cannot be `null`, +`undefined`, non-empty, etc. + +**`Param`** + +the path to check if it's requried + #### Type declaration ▸ (`path`): `boolean` @@ -55,6 +63,17 @@ ___ • **validate**: (`values`: `Partial`\<`T`\>) => `Promise`\<[`Result`](../README.md#result)\<`T`, `Map`\<[`Path`](../README.md#path)\<`T`\>, `string`\>\>\> +Should return a promise containing the `Result` of the validation. +Where `S` represents the success and `E` the error. + +If the validation success, the promise should resolve to the form values. +Otherwise, if the validation fails, the promise should resolve to a +`Map, string>` of the path/message for the invalid fields. + +**`Param`** + +the form values to validate + #### Type declaration ▸ (`values`): `Promise`\<[`Result`](../README.md#result)\<`T`, `Map`\<[`Path`](../README.md#path)\<`T`\>, `string`\>\>\> @@ -88,6 +107,21 @@ ___ • **validateAt**: \(`path`: `K`, `value`: [`Optional`](../README.md#optional)\<[`ValueByPath`](../README.md#valuebypath)\<`T`, `K`\>\>) => `Promise`\<[`Result`](../README.md#result)\<``true``, `string`\>\> +Should return a promise containing the `Result` of the field +validation. Where `S` represents the success and `E` the error. + +If the validation success, the promise should resolve to a simple `true`. +Otherwise, if the validation fails, the promise should resolve to a +`Map, string>` of the path/message for the invalid fields. + +**`Param`** + +the path on the schema to validate + +**`Param`** + +the value to validate against + #### Type declaration ▸ \<`K`\>(`path`, `value`): `Promise`\<[`Result`](../README.md#result)\<``true``, `string`\>\> diff --git a/packages/core/docs/interfaces/ArrayFieldProps.md b/packages/core/docs/interfaces/ArrayFieldProps.md index 0242653..22ad41c 100644 --- a/packages/core/docs/interfaces/ArrayFieldProps.md +++ b/packages/core/docs/interfaces/ArrayFieldProps.md @@ -25,6 +25,13 @@ The props of the [ArrayField](../README.md#arrayfield) component. • **children**: (`props`: [`UseArrayField`](UseArrayField.md)\<[`ArrayValue`](../README.md#arrayvalue)\<`T`, `K`\>\>) => `ReactNode` +The children is a function which takes the result of [useArrayField](../README.md#usearrayfield) +hook in the first argument and returns a React.js node. + +**`Param`** + +render props same as the `useArrayField` hook result + #### Type declaration ▸ (`props`): `ReactNode` diff --git a/packages/core/docs/interfaces/FieldProps.md b/packages/core/docs/interfaces/FieldProps.md index 2c90735..159a682 100644 --- a/packages/core/docs/interfaces/FieldProps.md +++ b/packages/core/docs/interfaces/FieldProps.md @@ -27,6 +27,14 @@ The props of the [ArrayField](../README.md#arrayfield) component. • **children**: (`props`: [`FieldRenderProps`](FieldRenderProps.md)\<`T`, `K`, `D`\>) => `ReactNode` +The children is a function which takes the result of [useField](../README.md#usefield) and +[useFieldValidation](../README.md#usefieldvalidation) hooks in the first argument and returns a +React.js node. + +**`Param`** + +the render props same as `useField` result + #### Type declaration ▸ (`props`): `ReactNode` diff --git a/packages/core/docs/interfaces/FieldRenderProps.md b/packages/core/docs/interfaces/FieldRenderProps.md index b55d822..afdd250 100644 --- a/packages/core/docs/interfaces/FieldRenderProps.md +++ b/packages/core/docs/interfaces/FieldRenderProps.md @@ -53,6 +53,13 @@ ___ • **handleChange**: \(`mapper`: (...`args`: `A`) => [`ValueByPath`](../README.md#valuebypath)\<`T`, `K`\> \| `D`) => (...`args`: `A`) => `void` +Helper function that creates a handler function which runs the field +setter with the value obtaioed by the `mapper`. + +**`Param`** + +a function to map the callback arguments to the next value + #### Type declaration ▸ \<`A`\>(`mapper`): (...`args`: `A`) => `void` @@ -116,6 +123,8 @@ ___ • **setTouched**: () => `void` +Changes the touched state of the field to `true` + #### Type declaration ▸ (): `void` diff --git a/packages/core/docs/interfaces/FormCtxt.md b/packages/core/docs/interfaces/FormCtxt.md index 3f621ba..df5ebff 100644 --- a/packages/core/docs/interfaces/FormCtxt.md +++ b/packages/core/docs/interfaces/FormCtxt.md @@ -80,6 +80,8 @@ ___ • **submit**: () => `void` +Submits the form when called. + #### Type declaration ▸ (): `void` diff --git a/packages/core/docs/interfaces/FormProviderProps.md b/packages/core/docs/interfaces/FormProviderProps.md index 4277b22..3185524 100644 --- a/packages/core/docs/interfaces/FormProviderProps.md +++ b/packages/core/docs/interfaces/FormProviderProps.md @@ -39,6 +39,12 @@ ___ • **onSubmit**: (`values`: `T`) => `void` +The function to be called uppon form submision. + +**`Param`** + +the validated values `T` of the form + #### Type declaration ▸ (`values`): `void` diff --git a/packages/core/docs/interfaces/RenderProps.md b/packages/core/docs/interfaces/RenderProps.md index 2451008..b405946 100644 --- a/packages/core/docs/interfaces/RenderProps.md +++ b/packages/core/docs/interfaces/RenderProps.md @@ -25,6 +25,28 @@ The renders props when the children of [FormProvider](../README.md#formprovider) • **handleChange**: \(`path`: `K`, `valueOrCallback`: [`Optional`](../README.md#optional)\<[`ValueByPath`](../README.md#valuebypath)\<`T`, `K`\>\> \| [`ChangeCallback`](../README.md#changecallback)\<`T`, `K`, `A`\>) => (...`args`: `A`) => `void` +Helper function which creates a handler to use on callback props and +change form values. It infers the arguments of the callback so they can be +used dreing the change callback. + +**`Example`** + +``` + + name="foo" + onChange={handleChange("foo", event => event.target.value)} + value={values.foo} +/> +``` + +**`Param`** + +the path to change the value + +**`Param`** + +either a value or a callback to change it + #### Type declaration ▸ \<`K`, `A`\>(`path`, `valueOrCallback`): (...`args`: `A`) => `void` @@ -86,6 +108,25 @@ ___ • **setValue**: \(`path`: `K`) => [`SetValue`](../README.md#setvalue)\<[`ValueByPath`](../README.md#valuebypath)\<`T`, `K`\>\> +Helper function which creates a setter function for the specified path. + +**`Example`** + +``` + + name="foo" + onChange={event => { + const setFoo = setValue("foo"); + setFoo(event.target.value); + }} + value={values.foo} +/> +``` + +**`Param`** + +the path to change the value + #### Type declaration ▸ \<`K`\>(`path`): [`SetValue`](../README.md#setvalue)\<[`ValueByPath`](../README.md#valuebypath)\<`T`, `K`\>\> @@ -133,6 +174,8 @@ ___ • **submit**: () => `void` +Helper function that triggers the form submit on demand. + #### Type declaration ▸ (): `void` diff --git a/packages/core/docs/interfaces/UseArrayField.md b/packages/core/docs/interfaces/UseArrayField.md index 97cb750..8e4aaf5 100644 --- a/packages/core/docs/interfaces/UseArrayField.md +++ b/packages/core/docs/interfaces/UseArrayField.md @@ -30,6 +30,12 @@ The result of the [useArrayField](../README.md#usearrayfield) hook. • **append**: (`item`: `Partial`\<`V`\>) => `void` +Appends a new item to the end of the array. + +**`Param`** + +the item to append + #### Type declaration ▸ (`item`): `void` @@ -56,6 +62,8 @@ ___ • **clear**: () => `void` +Clears the array by setting it's value to `undefined`. + #### Type declaration ▸ (): `void` @@ -76,6 +84,23 @@ ___ • **handle**: \(`action`: `F`, ...`args`: `Parameters`\<`F`\>) => () => `void` +Helper function that creates a handler function which runs the given +action with the given parameters. + +**`Example`** + +``` + +``` + +**`Param`** + +the action to make the handle of + +**`Param`** + +the parameters of the action + #### Type declaration ▸ \<`F`\>(`action`, `...args`): () => `void` @@ -124,6 +149,21 @@ ___ • **insert**: (`item`: `Partial`\<`V`\>, `at`: `number`) => `void` +Insert a new item at an specific index of the array. To encourage type +safety, this function follows these rules upon index outbounds: +- If the index is greater than the array size, the item is added to the +end of the array. +- A negative index is treated as an offset, so -2 refers to the second to +last element of the array. + +**`Param`** + +the item to insert + +**`Param`** + +the index to insert the item at + #### Type declaration ▸ (`item`, `at`): `void` @@ -169,6 +209,22 @@ ___ • **keygen**: \(`index`: `number`, `key?`: `string` \| `S`) => `string` +Helper function to retrieve an auto-generated key string which is memoized +for each index. The second parameter serves as a prefferd unique key +override to use instead of the auto-generated one. + +You should pass the second parameter whenever it's possible because the +auto-generated key is index-based, so it may cause additional renders upon +reordering the array. + +**`Param`** + +the current index of the array + +**`Param`** + +the preferred key value to use + #### Type declaration ▸ \<`S`\>(`index`, `key?`): `string` @@ -210,6 +266,12 @@ ___ • **prepend**: (`item`: `Partial`\<`V`\>) => `void` +Prepends a new item to the start of the array. + +**`Param`** + +the item to prepend + #### Type declaration ▸ (`item`): `void` @@ -236,6 +298,12 @@ ___ • **remove**: (`at`: `number`) => `void` +Removes the item at the specified index. + +**`Param`** + +the index of the item + #### Type declaration ▸ (`at`): `void` @@ -262,6 +330,22 @@ ___ • **replace**: (`item`: `Partial`\<`V`\>, `at`: `number`) => `void` +Replaces an item at an specific index of the array with another. To +encourage type safety, this function follows these rules upon index +outbounds: +- If the index is greater than the array size, the item is added to the +end of the array. +- A negative index is treated as an offset, so -2 refers to the second to +last element of the array. + +**`Param`** + +the item to replace another + +**`Param`** + +the index that should be replaced + #### Type declaration ▸ (`item`, `at`): `void` diff --git a/packages/core/docs/interfaces/UseField.md b/packages/core/docs/interfaces/UseField.md index ceb9f3b..fa64409 100644 --- a/packages/core/docs/interfaces/UseField.md +++ b/packages/core/docs/interfaces/UseField.md @@ -31,6 +31,8 @@ The result of the [useField](../README.md#usefield) hook • **setTouched**: () => `void` +Changes the touched state of the field to `true` + #### Type declaration ▸ (): `void` diff --git a/packages/core/package.json b/packages/core/package.json index dcce212..73e321d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -39,27 +39,27 @@ }, "devDependencies": { "@assertive-ts/core": "^2.0.0", - "@testing-library/dom": "^9.3.3", + "@testing-library/dom": "^9.3.4", "@testing-library/react": "^14.1.2", - "@testing-library/user-event": "^14.5.1", + "@testing-library/user-event": "^14.5.2", "@types/mocha": "^10.0.6", - "@types/react": "^18.2.41", - "@types/react-dom": "^18.2.17", - "@types/sinon": "^17.0.2", + "@types/react": "^18.2.48", + "@types/react-dom": "^18.2.18", + "@types/sinon": "^17.0.3", "expect-type": "^0.17.3", - "jsdom": "^23.0.1", + "jsdom": "^24.0.0", "jsdom-global": "^3.0.2", "mocha": "^10.2.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "semantic-release": "^22.0.8", + "semantic-release": "^23.0.0", "semantic-release-yarn": "^3.0.2", "sinon": "^17.0.1", "tslib": "^2.6.2", - "typescript": "^5.3.2" + "typescript": "^5.3.3" }, "optionalDependencies": { - "yup": "^1.3.2", + "yup": "^1.3.3", "zod": "^3.22.4" }, "peerDependencies": { diff --git a/packages/native/docs/README.md b/packages/native/docs/README.md index d53a535..3ec6367 100644 --- a/packages/native/docs/README.md +++ b/packages/native/docs/README.md @@ -28,6 +28,9 @@ Ƭ **TextFieldOf**\<`T`\>: (`props`: [`TextFiedProps`](interfaces/TextFiedProps.md)\<`T`\>) => `ReactElement` +Helper type to describe a [TextField](README.md#textfield) component of an specific struct +`T`. + #### Type parameters | Name | Type | Description | @@ -38,9 +41,6 @@ ▸ (`props`): `ReactElement` -Helper type to describe a [TextField](README.md#textfield) component of an specific struct -`T`. - ##### Parameters | Name | Type | diff --git a/packages/native/docs/interfaces/TextFiedProps.md b/packages/native/docs/interfaces/TextFiedProps.md index f488344..cc7bd2d 100644 --- a/packages/native/docs/interfaces/TextFiedProps.md +++ b/packages/native/docs/interfaces/TextFiedProps.md @@ -142,6 +142,7 @@ TextInputProps. - [placeholder](TextFiedProps.md#placeholder) - [placeholderTextColor](TextFiedProps.md#placeholdertextcolor) - [pointerEvents](TextFiedProps.md#pointerevents) +- [readOnly](TextFiedProps.md#readonly) - [rejectResponderTermination](TextFiedProps.md#rejectrespondertermination) - [removeClippedSubviews](TextFiedProps.md#removeclippedsubviews) - [renderToHardwareTextureAndroid](TextFiedProps.md#rendertohardwaretextureandroid) @@ -157,6 +158,7 @@ TextInputProps. - [selectionState](TextFiedProps.md#selectionstate) - [shouldRasterizeIOS](TextFiedProps.md#shouldrasterizeios) - [showSoftInputOnFocus](TextFiedProps.md#showsoftinputonfocus) +- [smartInsertDelete](TextFiedProps.md#smartinsertdelete) - [spellCheck](TextFiedProps.md#spellcheck) - [style](TextFiedProps.md#style) - [supStyle](TextFiedProps.md#supstyle) @@ -428,7 +430,7 @@ Omit.allowFontScaling #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:471 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:498 ___ @@ -662,13 +664,13 @@ Omit.autoCapitalize #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:482 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:509 ___ ### autoComplete -• `Optional` **autoComplete**: ``"off"`` \| ``"name"`` \| ``"additional-name"`` \| ``"address-line1"`` \| ``"address-line2"`` \| ``"birthdate-day"`` \| ``"birthdate-full"`` \| ``"birthdate-month"`` \| ``"birthdate-year"`` \| ``"cc-csc"`` \| ``"cc-exp"`` \| ``"cc-exp-day"`` \| ``"cc-exp-month"`` \| ``"cc-exp-year"`` \| ``"cc-number"`` \| ``"country"`` \| ``"current-password"`` \| ``"email"`` \| ``"family-name"`` \| ``"gender"`` \| ``"given-name"`` \| ``"honorific-prefix"`` \| ``"honorific-suffix"`` \| ``"name-family"`` \| ``"name-given"`` \| ``"name-middle"`` \| ``"name-middle-initial"`` \| ``"name-prefix"`` \| ``"name-suffix"`` \| ``"new-password"`` \| ``"nickname"`` \| ``"one-time-code"`` \| ``"organization"`` \| ``"organization-title"`` \| ``"password"`` \| ``"password-new"`` \| ``"postal-address"`` \| ``"postal-address-country"`` \| ``"postal-address-extended"`` \| ``"postal-address-extended-postal-code"`` \| ``"postal-address-locality"`` \| ``"postal-address-region"`` \| ``"postal-code"`` \| ``"street-address"`` \| ``"sms-otp"`` \| ``"tel"`` \| ``"tel-country-code"`` \| ``"tel-national"`` \| ``"tel-device"`` \| ``"url"`` \| ``"username"`` \| ``"username-new"`` +• `Optional` **autoComplete**: ``"off"`` \| ``"name"`` \| ``"additional-name"`` \| ``"address-line1"`` \| ``"address-line2"`` \| ``"birthdate-day"`` \| ``"birthdate-full"`` \| ``"birthdate-month"`` \| ``"birthdate-year"`` \| ``"cc-csc"`` \| ``"cc-exp"`` \| ``"cc-exp-day"`` \| ``"cc-exp-month"`` \| ``"cc-exp-year"`` \| ``"cc-number"`` \| ``"cc-name"`` \| ``"cc-given-name"`` \| ``"cc-middle-name"`` \| ``"cc-family-name"`` \| ``"cc-type"`` \| ``"country"`` \| ``"current-password"`` \| ``"email"`` \| ``"family-name"`` \| ``"gender"`` \| ``"given-name"`` \| ``"honorific-prefix"`` \| ``"honorific-suffix"`` \| ``"name-family"`` \| ``"name-given"`` \| ``"name-middle"`` \| ``"name-middle-initial"`` \| ``"name-prefix"`` \| ``"name-suffix"`` \| ``"new-password"`` \| ``"nickname"`` \| ``"one-time-code"`` \| ``"organization"`` \| ``"organization-title"`` \| ``"password"`` \| ``"password-new"`` \| ``"postal-address"`` \| ``"postal-address-country"`` \| ``"postal-address-extended"`` \| ``"postal-address-extended-postal-code"`` \| ``"postal-address-locality"`` \| ``"postal-address-region"`` \| ``"postal-code"`` \| ``"street-address"`` \| ``"sms-otp"`` \| ``"tel"`` \| ``"tel-country-code"`` \| ``"tel-national"`` \| ``"tel-device"`` \| ``"url"`` \| ``"username"`` \| ``"username-new"`` Specifies autocomplete hints for the system, so it can provide autofill. On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content. @@ -741,7 +743,7 @@ Omit.autoComplete #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:550 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:577 ___ @@ -758,7 +760,7 @@ Omit.autoCorrect #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:609 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:641 ___ @@ -775,7 +777,7 @@ Omit.autoFocus #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:615 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:647 ___ @@ -792,7 +794,7 @@ Omit.blurOnSubmit #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:621 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:653 ___ @@ -808,7 +810,7 @@ Omit.caretHidden #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:626 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:658 ___ @@ -889,7 +891,7 @@ Omit.contextMenuHidden #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:631 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:663 ___ @@ -911,7 +913,7 @@ Omit.cursorColor #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:307 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:334 ___ @@ -958,7 +960,7 @@ Omit.defaultValue #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:638 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:670 ___ @@ -977,7 +979,7 @@ Omit.disableFullscreenUI #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:338 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:365 ___ @@ -993,7 +995,7 @@ Omit.editable #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:643 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:675 ___ @@ -1027,7 +1029,7 @@ Omit.enterKeyHint #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:795 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:832 ___ @@ -1158,7 +1160,7 @@ Omit.importantForAutofill #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:324 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:351 ___ @@ -1174,7 +1176,7 @@ Omit.inlineImageLeft #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:343 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:370 ___ @@ -1190,7 +1192,7 @@ Omit.inlineImagePadding #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:348 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:375 ___ @@ -1208,7 +1210,7 @@ Omit.inputAccessoryViewID #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:839 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:876 ___ @@ -1224,7 +1226,7 @@ Omit.inputMode #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:658 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:690 ___ @@ -1282,7 +1284,7 @@ Omit.keyboardType #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:653 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:685 ___ @@ -1324,7 +1326,7 @@ Omit.lineBreakStrategyIOS #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:288 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:307 ___ @@ -1343,7 +1345,7 @@ Omit.maxFontSizeMultiplier #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:856 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:893 ___ @@ -1360,7 +1362,7 @@ Omit.maxLength #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:664 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:696 ___ @@ -1376,7 +1378,7 @@ Omit.multiline #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:669 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:701 ___ @@ -1448,7 +1450,7 @@ Omit.numberOfLines #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:354 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:381 ___ @@ -1456,6 +1458,8 @@ ___ • `Optional` **onAccessibilityAction**: (`event`: `AccessibilityActionEvent`) => `void` +When `accessible` is true, the system will try to invoke this function when the user performs an accessibility custom action. + #### Type declaration ▸ (`event`): `void` @@ -1486,6 +1490,12 @@ ___ • `Optional` **onAccessibilityEscape**: () => `void` +When accessible is true, the system will invoke this function when the user performs the escape gesture (scrub with two fingers). + +**`Platform`** + +ios + #### Type declaration ▸ (): `void` @@ -1514,6 +1524,12 @@ ___ • `Optional` **onAccessibilityTap**: () => `void` +When `accessible` is true, the system will try to invoke this function when the user performs accessibility tap gesture. + +**`Platform`** + +ios + #### Type declaration ▸ (): `void` @@ -1542,6 +1558,8 @@ ___ • `Optional` **onBlur**: (`e`: `NativeSyntheticEvent`\<`TextInputFocusEventData`\>) => `void` +Callback that is called when the text input is blurred + #### Type declaration ▸ (`e`): `void` @@ -1564,7 +1582,7 @@ Omit.onBlur #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:674 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:706 ___ @@ -1572,6 +1590,8 @@ ___ • `Optional` **onChange**: (`e`: `NativeSyntheticEvent`\<`TextInputChangeEventData`\>) => `void` +Callback that is called when the text input's text changes. + #### Type declaration ▸ (`e`): `void` @@ -1594,7 +1614,7 @@ Omit.onChange #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:681 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:713 ___ @@ -1602,6 +1622,9 @@ ___ • `Optional` **onChangeText**: (`text`: `string`) => `void` +Callback that is called when the text input's text changes. +Changed text is passed as an argument to the callback handler. + #### Type declaration ▸ (`text`): `void` @@ -1625,7 +1648,7 @@ Omit.onChangeText #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:689 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:721 ___ @@ -1633,6 +1656,12 @@ ___ • `Optional` **onContentSizeChange**: (`e`: `NativeSyntheticEvent`\<`TextInputContentSizeChangeEventData`\>) => `void` +Callback that is called when the text input's content size changes. +This will be called with +`{ nativeEvent: { contentSize: { width, height } } }`. + +Only called for multiline text inputs. + #### Type declaration ▸ (`e`): `void` @@ -1659,7 +1688,7 @@ Omit.onContentSizeChange #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:698 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:730 ___ @@ -1667,6 +1696,8 @@ ___ • `Optional` **onEndEditing**: (`e`: `NativeSyntheticEvent`\<`TextInputEndEditingEventData`\>) => `void` +Callback that is called when text input ends. + #### Type declaration ▸ (`e`): `void` @@ -1689,7 +1720,7 @@ Omit.onEndEditing #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:705 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:737 ___ @@ -1697,6 +1728,8 @@ ___ • `Optional` **onFocus**: (`e`: `NativeSyntheticEvent`\<`TextInputFocusEventData`\>) => `void` +Callback that is called when the text input is focused + #### Type declaration ▸ (`e`): `void` @@ -1719,7 +1752,7 @@ Omit.onFocus #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:724 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:756 ___ @@ -1727,6 +1760,14 @@ ___ • `Optional` **onKeyPress**: (`e`: `NativeSyntheticEvent`\<`TextInputKeyPressEventData`\>) => `void` +Callback that is called when a key is pressed. +This will be called with + `{ nativeEvent: { key: keyValue } }` +where keyValue is 'Enter' or 'Backspace' for respective keys and the typed-in character otherwise including ' ' for space. + +Fires before onChange callbacks. +Note: on Android only the inputs from soft keyboard are handled, not the hardware keyboard inputs. + #### Type declaration ▸ (`e`): `void` @@ -1755,7 +1796,7 @@ Omit.onKeyPress #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:771 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:803 ___ @@ -1763,6 +1804,10 @@ ___ • `Optional` **onLayout**: (`event`: `LayoutChangeEvent`) => `void` +Invoked on mount and layout changes with + +{nativeEvent: { layout: {x, y, width, height}}}. + #### Type declaration ▸ (`event`): `void` @@ -1795,6 +1840,12 @@ ___ • `Optional` **onMagicTap**: () => `void` +When accessible is true, the system will invoke this function when the user performs the magic tap gesture. + +**`Platform`** + +ios + #### Type declaration ▸ (): `void` @@ -1823,6 +1874,8 @@ ___ • `Optional` **onMoveShouldSetResponder**: (`event`: `GestureResponderEvent`) => `boolean` +Called for every touch move on the View when it is not the responder: does this view want to "claim" touch responsiveness? + #### Type declaration ▸ (`event`): `boolean` @@ -1853,6 +1906,18 @@ ___ • `Optional` **onMoveShouldSetResponderCapture**: (`event`: `GestureResponderEvent`) => `boolean` +onStartShouldSetResponder and onMoveShouldSetResponder are called with a bubbling pattern, +where the deepest node is called first. +That means that the deepest component will become responder when multiple Views return true for *ShouldSetResponder handlers. +This is desirable in most cases, because it makes sure all controls and buttons are usable. + +However, sometimes a parent will want to make sure that it becomes responder. +This can be handled by using the capture phase. +Before the responder system bubbles up from the deepest component, +it will do a capture phase, firing on*ShouldSetResponderCapture. +So if a parent View wants to prevent the child from becoming responder on a touch start, +it should have a onStartShouldSetResponderCapture handler which returns true. + #### Type declaration ▸ (`event`): `boolean` @@ -1913,7 +1978,7 @@ Omit.onPointerCancel #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:257 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:260 ___ @@ -1941,7 +2006,7 @@ Omit.onPointerCancelCapture #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:258 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:261 ___ @@ -1969,7 +2034,7 @@ Omit.onPointerDown #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:259 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:262 ___ @@ -1997,7 +2062,7 @@ Omit.onPointerDownCapture #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:260 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:263 ___ @@ -2025,7 +2090,7 @@ Omit.onPointerEnter #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:251 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:254 ___ @@ -2053,7 +2118,7 @@ Omit.onPointerEnterCapture #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:252 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:255 ___ @@ -2081,7 +2146,7 @@ Omit.onPointerLeave #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:253 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:256 ___ @@ -2109,7 +2174,7 @@ Omit.onPointerLeaveCapture #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:254 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:257 ___ @@ -2137,7 +2202,7 @@ Omit.onPointerMove #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:255 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:258 ___ @@ -2165,7 +2230,7 @@ Omit.onPointerMoveCapture #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:256 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:259 ___ @@ -2193,7 +2258,7 @@ Omit.onPointerUp #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:261 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:264 ___ @@ -2221,7 +2286,7 @@ Omit.onPointerUpCapture #### Defined in -node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:262 +node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts:265 ___ @@ -2229,6 +2294,8 @@ ___ • `Optional` **onPressIn**: (`e`: `NativeSyntheticEvent`\<`NativeTouchEvent`\>) => `void` +Callback that is called when a touch is engaged. + #### Type declaration ▸ (`e`): `void` @@ -2251,7 +2318,7 @@ Omit.onPressIn #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:712 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:744 ___ @@ -2259,6 +2326,8 @@ ___ • `Optional` **onPressOut**: (`e`: `NativeSyntheticEvent`\<`NativeTouchEvent`\>) => `void` +Callback that is called when a touch is released. + #### Type declaration ▸ (`e`): `void` @@ -2281,7 +2350,7 @@ Omit.onPressOut #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:717 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:749 ___ @@ -2289,6 +2358,8 @@ ___ • `Optional` **onResponderEnd**: (`event`: `GestureResponderEvent`) => `void` +If the View returns true and attempts to become the responder, one of the following will happen: + #### Type declaration ▸ (`event`): `void` @@ -2319,6 +2390,9 @@ ___ • `Optional` **onResponderGrant**: (`event`: `GestureResponderEvent`) => `void` +The View is now responding for touch events. +This is the time to highlight and show the user what is happening + #### Type declaration ▸ (`event`): `void` @@ -2350,6 +2424,8 @@ ___ • `Optional` **onResponderMove**: (`event`: `GestureResponderEvent`) => `void` +The user is moving their finger + #### Type declaration ▸ (`event`): `void` @@ -2380,6 +2456,8 @@ ___ • `Optional` **onResponderReject**: (`event`: `GestureResponderEvent`) => `void` +Something else is the responder right now and will not release it + #### Type declaration ▸ (`event`): `void` @@ -2410,6 +2488,8 @@ ___ • `Optional` **onResponderRelease**: (`event`: `GestureResponderEvent`) => `void` +Fired at the end of the touch, ie "touchUp" + #### Type declaration ▸ (`event`): `void` @@ -2468,6 +2548,10 @@ ___ • `Optional` **onResponderTerminate**: (`event`: `GestureResponderEvent`) => `void` +The responder has been taken from the View. +Might be taken by other views after a call to onResponderTerminationRequest, +or might be taken by the OS without asking (happens with control center/ notification center on iOS) + #### Type declaration ▸ (`event`): `void` @@ -2500,6 +2584,9 @@ ___ • `Optional` **onResponderTerminationRequest**: (`event`: `GestureResponderEvent`) => `boolean` +Something else wants to become responder. + Should this view release the responder? Returning true allows release + #### Type declaration ▸ (`event`): `boolean` @@ -2531,6 +2618,11 @@ ___ • `Optional` **onScroll**: (`e`: `NativeSyntheticEvent`\<`TextInputScrollEventData`\>) => `void` +Invoked on content scroll with + `{ nativeEvent: { contentOffset: { x, y } } }`. + +May also contain other properties from ScrollEvent but on Android contentSize is not provided for performance reasons. + #### Type declaration ▸ (`e`): `void` @@ -2556,7 +2648,7 @@ Omit.onScroll #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:758 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:790 ___ @@ -2564,6 +2656,8 @@ ___ • `Optional` **onSelectionChange**: (`e`: `NativeSyntheticEvent`\<`TextInputSelectionChangeEventData`\>) => `void` +Callback that is called when the text input selection is changed. + #### Type declaration ▸ (`e`): `void` @@ -2586,7 +2680,7 @@ Omit.onSelectionChange #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:731 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:763 ___ @@ -2594,6 +2688,8 @@ ___ • `Optional` **onStartShouldSetResponder**: (`event`: `GestureResponderEvent`) => `boolean` +Does this view want to become responder on the start of a touch? + #### Type declaration ▸ (`event`): `boolean` @@ -2624,6 +2720,18 @@ ___ • `Optional` **onStartShouldSetResponderCapture**: (`event`: `GestureResponderEvent`) => `boolean` +onStartShouldSetResponder and onMoveShouldSetResponder are called with a bubbling pattern, +where the deepest node is called first. +That means that the deepest component will become responder when multiple Views return true for *ShouldSetResponder handlers. +This is desirable in most cases, because it makes sure all controls and buttons are usable. + +However, sometimes a parent will want to make sure that it becomes responder. +This can be handled by using the capture phase. +Before the responder system bubbles up from the deepest component, +it will do a capture phase, firing on*ShouldSetResponderCapture. +So if a parent View wants to prevent the child from becoming responder on a touch start, +it should have a onStartShouldSetResponderCapture handler which returns true. + #### Type declaration ▸ (`event`): `boolean` @@ -2664,6 +2772,8 @@ ___ • `Optional` **onSubmitEditing**: (`e`: `NativeSyntheticEvent`\<`TextInputSubmitEditingEventData`\>) => `void` +Callback that is called when the text input's submit button is pressed. + #### Type declaration ▸ (`e`): `void` @@ -2686,7 +2796,7 @@ Omit.onSubmitEditing #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:738 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:770 ___ @@ -2694,6 +2804,11 @@ ___ • `Optional` **onTextInput**: (`e`: `NativeSyntheticEvent`\<`TextInputTextInputEventData`\>) => `void` +Callback that is called on new text input with the argument + `{ nativeEvent: { text, previousText, range: { start, end } } }`. + +This prop requires multiline={true} to be set. + #### Type declaration ▸ (`e`): `void` @@ -2719,7 +2834,7 @@ Omit.onTextInput #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:748 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:780 ___ @@ -2893,7 +3008,7 @@ Omit.placeholder #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:778 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:810 ___ @@ -2909,7 +3024,7 @@ Omit.placeholderTextColor #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:783 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:815 ___ @@ -2948,6 +3063,22 @@ node_modules/react-native/Libraries/Components/View/ViewPropTypes.d.ts:224 ___ +### readOnly + +• `Optional` **readOnly**: `boolean` + +If `true`, text is not editable. The default value is `false`. + +#### Inherited from + +Omit.readOnly + +#### Defined in + +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:820 + +___ + ### rejectResponderTermination • `Optional` **rejectResponderTermination**: ``null`` \| `boolean` @@ -3039,7 +3170,7 @@ Omit.returnKeyLabel #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:360 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:387 ___ @@ -3056,7 +3187,7 @@ Omit.returnKeyType #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:789 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:826 ___ @@ -3088,7 +3219,7 @@ Omit.scrollEnabled #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:283 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:302 ___ @@ -3105,7 +3236,7 @@ Omit.secureTextEntry #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:801 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:838 ___ @@ -3121,7 +3252,7 @@ Omit.selectTextOnFocus #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:806 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:843 ___ @@ -3145,7 +3276,7 @@ Omit.selection #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:812 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:849 ___ @@ -3161,7 +3292,7 @@ Omit.selectionColor #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:817 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:854 ___ @@ -3216,7 +3347,26 @@ Omit.showSoftInputOnFocus #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:381 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:408 + +___ + +### smartInsertDelete + +• `Optional` **smartInsertDelete**: `boolean` + +If `false`, the iOS system will not insert an extra space after a paste operation +neither delete one or two spaces after a cut or delete operation. + +The default value is `true`. + +#### Inherited from + +Omit.smartInsertDelete + +#### Defined in + +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:320 ___ @@ -3276,7 +3426,7 @@ Omit.testID #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:832 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:869 ___ @@ -3292,13 +3442,13 @@ Omit.textAlign #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:827 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:864 ___ ### textAlignVertical -• `Optional` **textAlignVertical**: ``"center"`` \| ``"auto"`` \| ``"bottom"`` \| ``"top"`` +• `Optional` **textAlignVertical**: ``"center"`` \| ``"auto"`` \| ``"top"`` \| ``"bottom"`` Vertically align text when `multiline` is set to true @@ -3308,7 +3458,7 @@ Omit.textAlignVertical #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:376 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:403 ___ @@ -3325,24 +3475,17 @@ Omit.textBreakStrategy #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:366 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:393 ___ ### textContentType -• `Optional` **textContentType**: ``"none"`` \| ``"name"`` \| ``"nickname"`` \| ``"password"`` \| ``"username"`` \| ``"URL"`` \| ``"addressCity"`` \| ``"addressCityAndState"`` \| ``"addressState"`` \| ``"countryName"`` \| ``"creditCardNumber"`` \| ``"emailAddress"`` \| ``"familyName"`` \| ``"fullStreetAddress"`` \| ``"givenName"`` \| ``"jobTitle"`` \| ``"location"`` \| ``"middleName"`` \| ``"namePrefix"`` \| ``"nameSuffix"`` \| ``"organizationName"`` \| ``"postalCode"`` \| ``"streetAddressLine1"`` \| ``"streetAddressLine2"`` \| ``"sublocality"`` \| ``"telephoneNumber"`` \| ``"newPassword"`` \| ``"oneTimeCode"`` +• `Optional` **textContentType**: ``"none"`` \| ``"name"`` \| ``"nickname"`` \| ``"password"`` \| ``"username"`` \| ``"URL"`` \| ``"addressCity"`` \| ``"addressCityAndState"`` \| ``"addressState"`` \| ``"countryName"`` \| ``"creditCardNumber"`` \| ``"creditCardExpiration"`` \| ``"creditCardExpirationMonth"`` \| ``"creditCardExpirationYear"`` \| ``"creditCardSecurityCode"`` \| ``"creditCardType"`` \| ``"creditCardName"`` \| ``"creditCardGivenName"`` \| ``"creditCardMiddleName"`` \| ``"creditCardFamilyName"`` \| ``"emailAddress"`` \| ``"familyName"`` \| ``"fullStreetAddress"`` \| ``"givenName"`` \| ``"jobTitle"`` \| ``"location"`` \| ``"middleName"`` \| ``"namePrefix"`` \| ``"nameSuffix"`` \| ``"organizationName"`` \| ``"postalCode"`` \| ``"streetAddressLine1"`` \| ``"streetAddressLine2"`` \| ``"sublocality"`` \| ``"telephoneNumber"`` \| ``"newPassword"`` \| ``"oneTimeCode"`` \| ``"birthdate"`` \| ``"birthdateDay"`` \| ``"birthdateMonth"`` \| ``"birthdateYear"`` Give the keyboard and the system information about the expected semantic meaning for the content that users enter. -For iOS 11+ you can set `textContentType` to `username` or `password` to -enable autofill of login details from the device keychain. - -For iOS 12+ `newPassword` can be used to indicate a new password input the -user may want to save in the keychain, and `oneTimeCode` can be used to indicate -that a field can be autofilled by a code arriving in an SMS. - To disable autofill, set textContentType to `none`. Possible values for `textContentType` are: @@ -3354,6 +3497,15 @@ Possible values for `textContentType` are: - `'addressState'` - `'countryName'` - `'creditCardNumber'` + - `'creditCardExpiration'` (iOS 17+) + - `'creditCardExpirationMonth'` (iOS 17+) + - `'creditCardExpirationYear'` (iOS 17+) + - `'creditCardSecurityCode'` (iOS 17+) + - `'creditCardType'` (iOS 17+) + - `'creditCardName'` (iOS 17+) + - `'creditCardGivenName'` (iOS 17+) + - `'creditCardMiddleName'` (iOS 17+) + - `'creditCardFamilyName'` (iOS 17+) - `'emailAddress'` - `'familyName'` - `'fullStreetAddress'` @@ -3375,6 +3527,10 @@ Possible values for `textContentType` are: - `'password'` - `'newPassword'` - `'oneTimeCode'` + - `'birthdate'` (iOS 17+) + - `'birthdateDay'` (iOS 17+) + - `'birthdateMonth'` (iOS 17+) + - `'birthdateYear'` (iOS 17+) #### Inherited from @@ -3382,7 +3538,7 @@ Omit.textContentType #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:249 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:255 ___ @@ -3510,13 +3666,13 @@ Omit.underlineColorAndroid #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:371 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:398 ___ ### verticalAlign -• `Optional` **verticalAlign**: ``"auto"`` \| ``"bottom"`` \| ``"top"`` \| ``"middle"`` +• `Optional` **verticalAlign**: ``"auto"`` \| ``"top"`` \| ``"bottom"`` \| ``"middle"`` Vertically align text when `multiline` is set to true @@ -3526,4 +3682,4 @@ Omit.verticalAlign #### Defined in -node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:386 +node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts:413 diff --git a/packages/native/package.json b/packages/native/package.json index b777818..cc6169a 100644 --- a/packages/native/package.json +++ b/packages/native/package.json @@ -38,29 +38,29 @@ }, "devDependencies": { "@assertive-ts/core": "^2.0.0", - "@babel/core": "^7.23.5", - "@babel/preset-env": "^7.23.5", - "@babel/runtime": "^7.23.5", + "@babel/core": "^7.23.7", + "@babel/preset-env": "^7.23.8", + "@babel/runtime": "^7.23.8", "@lynxts/core": "workspace:^", - "@react-native/metro-config": "^0.73.2", - "@testing-library/react-native": "^12.4.1", - "@types/node": "^20.10.3", - "@types/react": "^18.2.41", + "@react-native/metro-config": "^0.73.3", + "@testing-library/react-native": "^12.4.3", + "@types/node": "^20.11.5", + "@types/react": "^18.2.48", "@types/react-test-renderer": "^18.0.7", - "@types/sinon": "^17.0.2", + "@types/sinon": "^17.0.3", "babel-jest": "^29.7.0", "jest": "^29.7.0", "metro-react-native-babel-preset": "^0.77.0", "react": "^18.2.0", - "react-native": "^0.72.7", + "react-native": "^0.73.2", "react-test-renderer": "^18.2.0", - "semantic-release": "^22.0.8", + "semantic-release": "^23.0.0", "semantic-release-yarn": "^3.0.2", "sinon": "^17.0.1", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "tslib": "^2.6.2", - "typescript": "^5.3.2", - "yup": "^1.3.2" + "typescript": "^5.3.3", + "yup": "^1.3.3" }, "peerDependencies": { "@lynxts/core": ">=1.0.0", diff --git a/packages/web/docs/README.md b/packages/web/docs/README.md index 357f7d1..2454d30 100644 --- a/packages/web/docs/README.md +++ b/packages/web/docs/README.md @@ -33,6 +33,8 @@ Ƭ **InputOf**\<`T`\>: (`props`: [`InputProps`](interfaces/InputProps.md)\<`T`\>) => `ReactElement` +Helper type to describe an [Input](README.md#input) component of an specific struct `T`. + #### Type parameters | Name | Type | Description | @@ -43,8 +45,6 @@ ▸ (`props`): `ReactElement` -Helper type to describe an [Input](README.md#input) component of an specific struct `T`. - ##### Parameters | Name | Type | @@ -65,6 +65,8 @@ ___ Ƭ **SelectOf**\<`T`\>: \(`props`: [`SelectProps`](interfaces/SelectProps.md)\<`T`, `K`\>) => `ReactElement` +Helper type to describe a [Select](README.md#select) component of an specific struct `T`. + #### Type parameters | Name | Type | Description | @@ -75,8 +77,6 @@ ___ ▸ \<`K`\>(`props`): `ReactElement` -Helper type to describe a [Select](README.md#select) component of an specific struct `T`. - ##### Type parameters | Name | Type | @@ -103,6 +103,9 @@ ___ Ƭ **TextareaOf**\<`T`\>: (`props`: [`TextareaProps`](interfaces/TextareaProps.md)\<`T`\>) => `ReactElement` +Helper type to describe a [Textarea](README.md#textarea) component of an specific struct +`T`. + #### Type parameters | Name | Type | Description | @@ -113,9 +116,6 @@ ___ ▸ (`props`): `ReactElement` -Helper type to describe a [Textarea](README.md#textarea) component of an specific struct -`T`. - ##### Parameters | Name | Type | diff --git a/packages/web/docs/interfaces/FormProps.md b/packages/web/docs/interfaces/FormProps.md index 96589b1..a7d5a65 100644 --- a/packages/web/docs/interfaces/FormProps.md +++ b/packages/web/docs/interfaces/FormProps.md @@ -275,7 +275,6 @@ From component props - [onWaitingCapture](FormProps.md#onwaitingcapture) - [onWheel](FormProps.md#onwheel) - [onWheelCapture](FormProps.md#onwheelcapture) -- [placeholder](FormProps.md#placeholder) - [prefix](FormProps.md#prefix) - [property](FormProps.md#property) - [radioGroup](FormProps.md#radiogroup) @@ -313,7 +312,7 @@ HTMLFormProps.about #### Defined in -node_modules/@types/react/index.d.ts:1990 +node_modules/@types/react/index.d.ts:1994 ___ @@ -327,7 +326,7 @@ HTMLFormProps.acceptCharset #### Defined in -node_modules/@types/react/index.d.ts:2270 +node_modules/@types/react/index.d.ts:2275 ___ @@ -341,7 +340,7 @@ HTMLFormProps.accessKey #### Defined in -node_modules/@types/react/index.d.ts:1964 +node_modules/@types/react/index.d.ts:1969 ___ @@ -355,7 +354,7 @@ HTMLFormProps.action #### Defined in -node_modules/@types/react/index.d.ts:2271 +node_modules/@types/react/index.d.ts:2276 ___ @@ -371,7 +370,7 @@ HTMLFormProps.aria-activedescendant #### Defined in -node_modules/@types/react/index.d.ts:1662 +node_modules/@types/react/index.d.ts:1667 ___ @@ -387,7 +386,7 @@ HTMLFormProps.aria-atomic #### Defined in -node_modules/@types/react/index.d.ts:1664 +node_modules/@types/react/index.d.ts:1669 ___ @@ -404,7 +403,7 @@ HTMLFormProps.aria-autocomplete #### Defined in -node_modules/@types/react/index.d.ts:1669 +node_modules/@types/react/index.d.ts:1674 ___ @@ -424,7 +423,7 @@ HTMLFormProps.aria-braillelabel #### Defined in -node_modules/@types/react/index.d.ts:1675 +node_modules/@types/react/index.d.ts:1680 ___ @@ -444,7 +443,7 @@ HTMLFormProps.aria-brailleroledescription #### Defined in -node_modules/@types/react/index.d.ts:1680 +node_modules/@types/react/index.d.ts:1685 ___ @@ -458,7 +457,7 @@ HTMLFormProps.aria-busy #### Defined in -node_modules/@types/react/index.d.ts:1681 +node_modules/@types/react/index.d.ts:1686 ___ @@ -479,7 +478,7 @@ HTMLFormProps.aria-checked #### Defined in -node_modules/@types/react/index.d.ts:1686 +node_modules/@types/react/index.d.ts:1691 ___ @@ -499,7 +498,7 @@ HTMLFormProps.aria-colcount #### Defined in -node_modules/@types/react/index.d.ts:1691 +node_modules/@types/react/index.d.ts:1696 ___ @@ -520,7 +519,7 @@ HTMLFormProps.aria-colindex #### Defined in -node_modules/@types/react/index.d.ts:1696 +node_modules/@types/react/index.d.ts:1701 ___ @@ -540,7 +539,7 @@ HTMLFormProps.aria-colindextext #### Defined in -node_modules/@types/react/index.d.ts:1701 +node_modules/@types/react/index.d.ts:1706 ___ @@ -561,7 +560,7 @@ HTMLFormProps.aria-colspan #### Defined in -node_modules/@types/react/index.d.ts:1706 +node_modules/@types/react/index.d.ts:1711 ___ @@ -581,7 +580,7 @@ HTMLFormProps.aria-controls #### Defined in -node_modules/@types/react/index.d.ts:1711 +node_modules/@types/react/index.d.ts:1716 ___ @@ -597,7 +596,7 @@ HTMLFormProps.aria-current #### Defined in -node_modules/@types/react/index.d.ts:1713 +node_modules/@types/react/index.d.ts:1718 ___ @@ -617,7 +616,7 @@ HTMLFormProps.aria-describedby #### Defined in -node_modules/@types/react/index.d.ts:1718 +node_modules/@types/react/index.d.ts:1723 ___ @@ -637,7 +636,7 @@ HTMLFormProps.aria-description #### Defined in -node_modules/@types/react/index.d.ts:1723 +node_modules/@types/react/index.d.ts:1728 ___ @@ -657,7 +656,7 @@ HTMLFormProps.aria-details #### Defined in -node_modules/@types/react/index.d.ts:1728 +node_modules/@types/react/index.d.ts:1733 ___ @@ -678,7 +677,7 @@ HTMLFormProps.aria-disabled #### Defined in -node_modules/@types/react/index.d.ts:1733 +node_modules/@types/react/index.d.ts:1738 ___ @@ -698,7 +697,7 @@ HTMLFormProps.aria-dropeffect #### Defined in -node_modules/@types/react/index.d.ts:1738 +node_modules/@types/react/index.d.ts:1743 ___ @@ -719,7 +718,7 @@ HTMLFormProps.aria-errormessage #### Defined in -node_modules/@types/react/index.d.ts:1743 +node_modules/@types/react/index.d.ts:1748 ___ @@ -735,7 +734,7 @@ HTMLFormProps.aria-expanded #### Defined in -node_modules/@types/react/index.d.ts:1745 +node_modules/@types/react/index.d.ts:1750 ___ @@ -752,7 +751,7 @@ HTMLFormProps.aria-flowto #### Defined in -node_modules/@types/react/index.d.ts:1750 +node_modules/@types/react/index.d.ts:1755 ___ @@ -772,7 +771,7 @@ HTMLFormProps.aria-grabbed #### Defined in -node_modules/@types/react/index.d.ts:1755 +node_modules/@types/react/index.d.ts:1760 ___ @@ -788,7 +787,7 @@ HTMLFormProps.aria-haspopup #### Defined in -node_modules/@types/react/index.d.ts:1757 +node_modules/@types/react/index.d.ts:1762 ___ @@ -808,7 +807,7 @@ HTMLFormProps.aria-hidden #### Defined in -node_modules/@types/react/index.d.ts:1762 +node_modules/@types/react/index.d.ts:1767 ___ @@ -828,7 +827,7 @@ HTMLFormProps.aria-invalid #### Defined in -node_modules/@types/react/index.d.ts:1767 +node_modules/@types/react/index.d.ts:1772 ___ @@ -844,7 +843,7 @@ HTMLFormProps.aria-keyshortcuts #### Defined in -node_modules/@types/react/index.d.ts:1769 +node_modules/@types/react/index.d.ts:1774 ___ @@ -864,7 +863,7 @@ HTMLFormProps.aria-label #### Defined in -node_modules/@types/react/index.d.ts:1774 +node_modules/@types/react/index.d.ts:1779 ___ @@ -884,7 +883,7 @@ HTMLFormProps.aria-labelledby #### Defined in -node_modules/@types/react/index.d.ts:1779 +node_modules/@types/react/index.d.ts:1784 ___ @@ -900,7 +899,7 @@ HTMLFormProps.aria-level #### Defined in -node_modules/@types/react/index.d.ts:1781 +node_modules/@types/react/index.d.ts:1786 ___ @@ -916,7 +915,7 @@ HTMLFormProps.aria-live #### Defined in -node_modules/@types/react/index.d.ts:1783 +node_modules/@types/react/index.d.ts:1788 ___ @@ -932,7 +931,7 @@ HTMLFormProps.aria-modal #### Defined in -node_modules/@types/react/index.d.ts:1785 +node_modules/@types/react/index.d.ts:1790 ___ @@ -948,7 +947,7 @@ HTMLFormProps.aria-multiline #### Defined in -node_modules/@types/react/index.d.ts:1787 +node_modules/@types/react/index.d.ts:1792 ___ @@ -964,7 +963,7 @@ HTMLFormProps.aria-multiselectable #### Defined in -node_modules/@types/react/index.d.ts:1789 +node_modules/@types/react/index.d.ts:1794 ___ @@ -980,7 +979,7 @@ HTMLFormProps.aria-orientation #### Defined in -node_modules/@types/react/index.d.ts:1791 +node_modules/@types/react/index.d.ts:1796 ___ @@ -1001,7 +1000,7 @@ HTMLFormProps.aria-owns #### Defined in -node_modules/@types/react/index.d.ts:1797 +node_modules/@types/react/index.d.ts:1802 ___ @@ -1018,7 +1017,7 @@ HTMLFormProps.aria-placeholder #### Defined in -node_modules/@types/react/index.d.ts:1802 +node_modules/@types/react/index.d.ts:1807 ___ @@ -1038,7 +1037,7 @@ HTMLFormProps.aria-posinset #### Defined in -node_modules/@types/react/index.d.ts:1807 +node_modules/@types/react/index.d.ts:1812 ___ @@ -1059,7 +1058,7 @@ HTMLFormProps.aria-pressed #### Defined in -node_modules/@types/react/index.d.ts:1812 +node_modules/@types/react/index.d.ts:1817 ___ @@ -1079,7 +1078,7 @@ HTMLFormProps.aria-readonly #### Defined in -node_modules/@types/react/index.d.ts:1817 +node_modules/@types/react/index.d.ts:1822 ___ @@ -1099,7 +1098,7 @@ HTMLFormProps.aria-relevant #### Defined in -node_modules/@types/react/index.d.ts:1822 +node_modules/@types/react/index.d.ts:1827 ___ @@ -1115,7 +1114,7 @@ HTMLFormProps.aria-required #### Defined in -node_modules/@types/react/index.d.ts:1835 +node_modules/@types/react/index.d.ts:1840 ___ @@ -1131,7 +1130,7 @@ HTMLFormProps.aria-roledescription #### Defined in -node_modules/@types/react/index.d.ts:1837 +node_modules/@types/react/index.d.ts:1842 ___ @@ -1151,7 +1150,7 @@ HTMLFormProps.aria-rowcount #### Defined in -node_modules/@types/react/index.d.ts:1842 +node_modules/@types/react/index.d.ts:1847 ___ @@ -1172,7 +1171,7 @@ HTMLFormProps.aria-rowindex #### Defined in -node_modules/@types/react/index.d.ts:1847 +node_modules/@types/react/index.d.ts:1852 ___ @@ -1192,7 +1191,7 @@ HTMLFormProps.aria-rowindextext #### Defined in -node_modules/@types/react/index.d.ts:1852 +node_modules/@types/react/index.d.ts:1857 ___ @@ -1213,7 +1212,7 @@ HTMLFormProps.aria-rowspan #### Defined in -node_modules/@types/react/index.d.ts:1857 +node_modules/@types/react/index.d.ts:1862 ___ @@ -1234,7 +1233,7 @@ HTMLFormProps.aria-selected #### Defined in -node_modules/@types/react/index.d.ts:1862 +node_modules/@types/react/index.d.ts:1867 ___ @@ -1254,7 +1253,7 @@ HTMLFormProps.aria-setsize #### Defined in -node_modules/@types/react/index.d.ts:1867 +node_modules/@types/react/index.d.ts:1872 ___ @@ -1270,7 +1269,7 @@ HTMLFormProps.aria-sort #### Defined in -node_modules/@types/react/index.d.ts:1869 +node_modules/@types/react/index.d.ts:1874 ___ @@ -1286,7 +1285,7 @@ HTMLFormProps.aria-valuemax #### Defined in -node_modules/@types/react/index.d.ts:1871 +node_modules/@types/react/index.d.ts:1876 ___ @@ -1302,7 +1301,7 @@ HTMLFormProps.aria-valuemin #### Defined in -node_modules/@types/react/index.d.ts:1873 +node_modules/@types/react/index.d.ts:1878 ___ @@ -1322,7 +1321,7 @@ HTMLFormProps.aria-valuenow #### Defined in -node_modules/@types/react/index.d.ts:1878 +node_modules/@types/react/index.d.ts:1883 ___ @@ -1338,7 +1337,7 @@ HTMLFormProps.aria-valuetext #### Defined in -node_modules/@types/react/index.d.ts:1880 +node_modules/@types/react/index.d.ts:1885 ___ @@ -1352,7 +1351,7 @@ HTMLFormProps.autoCapitalize #### Defined in -node_modules/@types/react/index.d.ts:2003 +node_modules/@types/react/index.d.ts:2007 ___ @@ -1366,7 +1365,7 @@ HTMLFormProps.autoComplete #### Defined in -node_modules/@types/react/index.d.ts:2277 +node_modules/@types/react/index.d.ts:2282 ___ @@ -1380,7 +1379,7 @@ HTMLFormProps.autoCorrect #### Defined in -node_modules/@types/react/index.d.ts:2004 +node_modules/@types/react/index.d.ts:2008 ___ @@ -1394,7 +1393,7 @@ HTMLFormProps.autoFocus #### Defined in -node_modules/@types/react/index.d.ts:1965 +node_modules/@types/react/index.d.ts:1970 ___ @@ -1408,7 +1407,7 @@ HTMLFormProps.autoSave #### Defined in -node_modules/@types/react/index.d.ts:2005 +node_modules/@types/react/index.d.ts:2009 ___ @@ -1440,7 +1439,7 @@ HTMLFormProps.className #### Defined in -node_modules/@types/react/index.d.ts:1966 +node_modules/@types/react/index.d.ts:1971 ___ @@ -1454,7 +1453,7 @@ HTMLFormProps.color #### Defined in -node_modules/@types/react/index.d.ts:2006 +node_modules/@types/react/index.d.ts:2010 ___ @@ -1468,7 +1467,7 @@ HTMLFormProps.content #### Defined in -node_modules/@types/react/index.d.ts:1991 +node_modules/@types/react/index.d.ts:1995 ___ @@ -1482,7 +1481,7 @@ HTMLFormProps.contentEditable #### Defined in -node_modules/@types/react/index.d.ts:1967 +node_modules/@types/react/index.d.ts:1972 ___ @@ -1496,7 +1495,7 @@ HTMLFormProps.contextMenu #### Defined in -node_modules/@types/react/index.d.ts:1968 +node_modules/@types/react/index.d.ts:1973 ___ @@ -1516,7 +1515,7 @@ HTMLFormProps.dangerouslySetInnerHTML #### Defined in -node_modules/@types/react/index.d.ts:1447 +node_modules/@types/react/index.d.ts:1452 ___ @@ -1530,7 +1529,7 @@ HTMLFormProps.datatype #### Defined in -node_modules/@types/react/index.d.ts:1992 +node_modules/@types/react/index.d.ts:1996 ___ @@ -1544,7 +1543,7 @@ HTMLFormProps.defaultChecked #### Defined in -node_modules/@types/react/index.d.ts:1958 +node_modules/@types/react/index.d.ts:1963 ___ @@ -1558,7 +1557,7 @@ HTMLFormProps.defaultValue #### Defined in -node_modules/@types/react/index.d.ts:1959 +node_modules/@types/react/index.d.ts:1964 ___ @@ -1572,7 +1571,7 @@ HTMLFormProps.dir #### Defined in -node_modules/@types/react/index.d.ts:1969 +node_modules/@types/react/index.d.ts:1974 ___ @@ -1586,7 +1585,7 @@ HTMLFormProps.draggable #### Defined in -node_modules/@types/react/index.d.ts:1970 +node_modules/@types/react/index.d.ts:1975 ___ @@ -1600,7 +1599,7 @@ HTMLFormProps.encType #### Defined in -node_modules/@types/react/index.d.ts:2278 +node_modules/@types/react/index.d.ts:2283 ___ @@ -1614,7 +1613,7 @@ HTMLFormProps.hidden #### Defined in -node_modules/@types/react/index.d.ts:1971 +node_modules/@types/react/index.d.ts:1976 ___ @@ -1628,7 +1627,7 @@ HTMLFormProps.id #### Defined in -node_modules/@types/react/index.d.ts:1972 +node_modules/@types/react/index.d.ts:1977 ___ @@ -1642,7 +1641,7 @@ HTMLFormProps.inlist #### Defined in -node_modules/@types/react/index.d.ts:1993 +node_modules/@types/react/index.d.ts:1997 ___ @@ -1662,7 +1661,7 @@ HTMLFormProps.inputMode #### Defined in -node_modules/@types/react/index.d.ts:2021 +node_modules/@types/react/index.d.ts:2025 ___ @@ -1682,7 +1681,7 @@ HTMLFormProps.is #### Defined in -node_modules/@types/react/index.d.ts:2026 +node_modules/@types/react/index.d.ts:2030 ___ @@ -1696,7 +1695,7 @@ HTMLFormProps.itemID #### Defined in -node_modules/@types/react/index.d.ts:2010 +node_modules/@types/react/index.d.ts:2014 ___ @@ -1710,7 +1709,7 @@ HTMLFormProps.itemProp #### Defined in -node_modules/@types/react/index.d.ts:2007 +node_modules/@types/react/index.d.ts:2011 ___ @@ -1724,7 +1723,7 @@ HTMLFormProps.itemRef #### Defined in -node_modules/@types/react/index.d.ts:2011 +node_modules/@types/react/index.d.ts:2015 ___ @@ -1738,7 +1737,7 @@ HTMLFormProps.itemScope #### Defined in -node_modules/@types/react/index.d.ts:2008 +node_modules/@types/react/index.d.ts:2012 ___ @@ -1752,7 +1751,7 @@ HTMLFormProps.itemType #### Defined in -node_modules/@types/react/index.d.ts:2009 +node_modules/@types/react/index.d.ts:2013 ___ @@ -1766,7 +1765,7 @@ HTMLFormProps.key #### Defined in -node_modules/@types/react/index.d.ts:111 +node_modules/@types/react/index.d.ts:109 ___ @@ -1780,7 +1779,7 @@ HTMLFormProps.lang #### Defined in -node_modules/@types/react/index.d.ts:1973 +node_modules/@types/react/index.d.ts:1978 ___ @@ -1794,7 +1793,7 @@ HTMLFormProps.method #### Defined in -node_modules/@types/react/index.d.ts:2279 +node_modules/@types/react/index.d.ts:2284 ___ @@ -1808,7 +1807,7 @@ HTMLFormProps.name #### Defined in -node_modules/@types/react/index.d.ts:2280 +node_modules/@types/react/index.d.ts:2285 ___ @@ -1822,7 +1821,7 @@ HTMLFormProps.noValidate #### Defined in -node_modules/@types/react/index.d.ts:2281 +node_modules/@types/react/index.d.ts:2286 ___ @@ -1836,7 +1835,7 @@ HTMLFormProps.nonce #### Defined in -node_modules/@types/react/index.d.ts:1974 +node_modules/@types/react/index.d.ts:1979 ___ @@ -1850,7 +1849,7 @@ HTMLFormProps.onAbort #### Defined in -node_modules/@types/react/index.d.ts:1506 +node_modules/@types/react/index.d.ts:1511 ___ @@ -1864,7 +1863,7 @@ HTMLFormProps.onAbortCapture #### Defined in -node_modules/@types/react/index.d.ts:1507 +node_modules/@types/react/index.d.ts:1512 ___ @@ -1878,7 +1877,7 @@ HTMLFormProps.onAnimationEnd #### Defined in -node_modules/@types/react/index.d.ts:1638 +node_modules/@types/react/index.d.ts:1643 ___ @@ -1892,7 +1891,7 @@ HTMLFormProps.onAnimationEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1639 +node_modules/@types/react/index.d.ts:1644 ___ @@ -1906,7 +1905,7 @@ HTMLFormProps.onAnimationIteration #### Defined in -node_modules/@types/react/index.d.ts:1640 +node_modules/@types/react/index.d.ts:1645 ___ @@ -1920,7 +1919,7 @@ HTMLFormProps.onAnimationIterationCapture #### Defined in -node_modules/@types/react/index.d.ts:1641 +node_modules/@types/react/index.d.ts:1646 ___ @@ -1934,7 +1933,7 @@ HTMLFormProps.onAnimationStart #### Defined in -node_modules/@types/react/index.d.ts:1636 +node_modules/@types/react/index.d.ts:1641 ___ @@ -1948,7 +1947,7 @@ HTMLFormProps.onAnimationStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1637 +node_modules/@types/react/index.d.ts:1642 ___ @@ -1962,7 +1961,7 @@ HTMLFormProps.onAuxClick #### Defined in -node_modules/@types/react/index.d.ts:1554 +node_modules/@types/react/index.d.ts:1559 ___ @@ -1976,7 +1975,7 @@ HTMLFormProps.onAuxClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1555 +node_modules/@types/react/index.d.ts:1560 ___ @@ -1990,7 +1989,7 @@ HTMLFormProps.onBeforeInput #### Defined in -node_modules/@types/react/index.d.ts:1478 +node_modules/@types/react/index.d.ts:1483 ___ @@ -2004,7 +2003,7 @@ HTMLFormProps.onBeforeInputCapture #### Defined in -node_modules/@types/react/index.d.ts:1479 +node_modules/@types/react/index.d.ts:1484 ___ @@ -2018,7 +2017,7 @@ HTMLFormProps.onBlur #### Defined in -node_modules/@types/react/index.d.ts:1472 +node_modules/@types/react/index.d.ts:1477 ___ @@ -2032,7 +2031,7 @@ HTMLFormProps.onBlurCapture #### Defined in -node_modules/@types/react/index.d.ts:1473 +node_modules/@types/react/index.d.ts:1478 ___ @@ -2046,7 +2045,7 @@ HTMLFormProps.onCanPlay #### Defined in -node_modules/@types/react/index.d.ts:1508 +node_modules/@types/react/index.d.ts:1513 ___ @@ -2060,7 +2059,7 @@ HTMLFormProps.onCanPlayCapture #### Defined in -node_modules/@types/react/index.d.ts:1509 +node_modules/@types/react/index.d.ts:1514 ___ @@ -2074,7 +2073,7 @@ HTMLFormProps.onCanPlayThrough #### Defined in -node_modules/@types/react/index.d.ts:1510 +node_modules/@types/react/index.d.ts:1515 ___ @@ -2088,7 +2087,7 @@ HTMLFormProps.onCanPlayThroughCapture #### Defined in -node_modules/@types/react/index.d.ts:1511 +node_modules/@types/react/index.d.ts:1516 ___ @@ -2102,7 +2101,7 @@ HTMLFormProps.onChange #### Defined in -node_modules/@types/react/index.d.ts:1476 +node_modules/@types/react/index.d.ts:1481 ___ @@ -2116,7 +2115,7 @@ HTMLFormProps.onChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1477 +node_modules/@types/react/index.d.ts:1482 ___ @@ -2130,7 +2129,7 @@ HTMLFormProps.onClick #### Defined in -node_modules/@types/react/index.d.ts:1556 +node_modules/@types/react/index.d.ts:1561 ___ @@ -2144,7 +2143,7 @@ HTMLFormProps.onClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1557 +node_modules/@types/react/index.d.ts:1562 ___ @@ -2158,7 +2157,7 @@ HTMLFormProps.onCompositionEnd #### Defined in -node_modules/@types/react/index.d.ts:1462 +node_modules/@types/react/index.d.ts:1467 ___ @@ -2172,7 +2171,7 @@ HTMLFormProps.onCompositionEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1463 +node_modules/@types/react/index.d.ts:1468 ___ @@ -2186,7 +2185,7 @@ HTMLFormProps.onCompositionStart #### Defined in -node_modules/@types/react/index.d.ts:1464 +node_modules/@types/react/index.d.ts:1469 ___ @@ -2200,7 +2199,7 @@ HTMLFormProps.onCompositionStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1465 +node_modules/@types/react/index.d.ts:1470 ___ @@ -2214,7 +2213,7 @@ HTMLFormProps.onCompositionUpdate #### Defined in -node_modules/@types/react/index.d.ts:1466 +node_modules/@types/react/index.d.ts:1471 ___ @@ -2228,7 +2227,7 @@ HTMLFormProps.onCompositionUpdateCapture #### Defined in -node_modules/@types/react/index.d.ts:1467 +node_modules/@types/react/index.d.ts:1472 ___ @@ -2242,7 +2241,7 @@ HTMLFormProps.onContextMenu #### Defined in -node_modules/@types/react/index.d.ts:1558 +node_modules/@types/react/index.d.ts:1563 ___ @@ -2256,7 +2255,7 @@ HTMLFormProps.onContextMenuCapture #### Defined in -node_modules/@types/react/index.d.ts:1559 +node_modules/@types/react/index.d.ts:1564 ___ @@ -2270,7 +2269,7 @@ HTMLFormProps.onCopy #### Defined in -node_modules/@types/react/index.d.ts:1454 +node_modules/@types/react/index.d.ts:1459 ___ @@ -2284,7 +2283,7 @@ HTMLFormProps.onCopyCapture #### Defined in -node_modules/@types/react/index.d.ts:1455 +node_modules/@types/react/index.d.ts:1460 ___ @@ -2298,7 +2297,7 @@ HTMLFormProps.onCut #### Defined in -node_modules/@types/react/index.d.ts:1456 +node_modules/@types/react/index.d.ts:1461 ___ @@ -2312,7 +2311,7 @@ HTMLFormProps.onCutCapture #### Defined in -node_modules/@types/react/index.d.ts:1457 +node_modules/@types/react/index.d.ts:1462 ___ @@ -2326,7 +2325,7 @@ HTMLFormProps.onDoubleClick #### Defined in -node_modules/@types/react/index.d.ts:1560 +node_modules/@types/react/index.d.ts:1565 ___ @@ -2340,7 +2339,7 @@ HTMLFormProps.onDoubleClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1561 +node_modules/@types/react/index.d.ts:1566 ___ @@ -2354,7 +2353,7 @@ HTMLFormProps.onDrag #### Defined in -node_modules/@types/react/index.d.ts:1562 +node_modules/@types/react/index.d.ts:1567 ___ @@ -2368,7 +2367,7 @@ HTMLFormProps.onDragCapture #### Defined in -node_modules/@types/react/index.d.ts:1563 +node_modules/@types/react/index.d.ts:1568 ___ @@ -2382,7 +2381,7 @@ HTMLFormProps.onDragEnd #### Defined in -node_modules/@types/react/index.d.ts:1564 +node_modules/@types/react/index.d.ts:1569 ___ @@ -2396,7 +2395,7 @@ HTMLFormProps.onDragEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1565 +node_modules/@types/react/index.d.ts:1570 ___ @@ -2410,7 +2409,7 @@ HTMLFormProps.onDragEnter #### Defined in -node_modules/@types/react/index.d.ts:1566 +node_modules/@types/react/index.d.ts:1571 ___ @@ -2424,7 +2423,7 @@ HTMLFormProps.onDragEnterCapture #### Defined in -node_modules/@types/react/index.d.ts:1567 +node_modules/@types/react/index.d.ts:1572 ___ @@ -2438,7 +2437,7 @@ HTMLFormProps.onDragExit #### Defined in -node_modules/@types/react/index.d.ts:1568 +node_modules/@types/react/index.d.ts:1573 ___ @@ -2452,7 +2451,7 @@ HTMLFormProps.onDragExitCapture #### Defined in -node_modules/@types/react/index.d.ts:1569 +node_modules/@types/react/index.d.ts:1574 ___ @@ -2466,7 +2465,7 @@ HTMLFormProps.onDragLeave #### Defined in -node_modules/@types/react/index.d.ts:1570 +node_modules/@types/react/index.d.ts:1575 ___ @@ -2480,7 +2479,7 @@ HTMLFormProps.onDragLeaveCapture #### Defined in -node_modules/@types/react/index.d.ts:1571 +node_modules/@types/react/index.d.ts:1576 ___ @@ -2494,7 +2493,7 @@ HTMLFormProps.onDragOver #### Defined in -node_modules/@types/react/index.d.ts:1572 +node_modules/@types/react/index.d.ts:1577 ___ @@ -2508,7 +2507,7 @@ HTMLFormProps.onDragOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1573 +node_modules/@types/react/index.d.ts:1578 ___ @@ -2522,7 +2521,7 @@ HTMLFormProps.onDragStart #### Defined in -node_modules/@types/react/index.d.ts:1574 +node_modules/@types/react/index.d.ts:1579 ___ @@ -2536,7 +2535,7 @@ HTMLFormProps.onDragStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1575 +node_modules/@types/react/index.d.ts:1580 ___ @@ -2550,7 +2549,7 @@ HTMLFormProps.onDrop #### Defined in -node_modules/@types/react/index.d.ts:1576 +node_modules/@types/react/index.d.ts:1581 ___ @@ -2564,7 +2563,7 @@ HTMLFormProps.onDropCapture #### Defined in -node_modules/@types/react/index.d.ts:1577 +node_modules/@types/react/index.d.ts:1582 ___ @@ -2578,7 +2577,7 @@ HTMLFormProps.onDurationChange #### Defined in -node_modules/@types/react/index.d.ts:1512 +node_modules/@types/react/index.d.ts:1517 ___ @@ -2592,7 +2591,7 @@ HTMLFormProps.onDurationChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1513 +node_modules/@types/react/index.d.ts:1518 ___ @@ -2606,7 +2605,7 @@ HTMLFormProps.onEmptied #### Defined in -node_modules/@types/react/index.d.ts:1514 +node_modules/@types/react/index.d.ts:1519 ___ @@ -2620,7 +2619,7 @@ HTMLFormProps.onEmptiedCapture #### Defined in -node_modules/@types/react/index.d.ts:1515 +node_modules/@types/react/index.d.ts:1520 ___ @@ -2634,7 +2633,7 @@ HTMLFormProps.onEncrypted #### Defined in -node_modules/@types/react/index.d.ts:1516 +node_modules/@types/react/index.d.ts:1521 ___ @@ -2648,7 +2647,7 @@ HTMLFormProps.onEncryptedCapture #### Defined in -node_modules/@types/react/index.d.ts:1517 +node_modules/@types/react/index.d.ts:1522 ___ @@ -2662,7 +2661,7 @@ HTMLFormProps.onEnded #### Defined in -node_modules/@types/react/index.d.ts:1518 +node_modules/@types/react/index.d.ts:1523 ___ @@ -2676,7 +2675,7 @@ HTMLFormProps.onEndedCapture #### Defined in -node_modules/@types/react/index.d.ts:1519 +node_modules/@types/react/index.d.ts:1524 ___ @@ -2690,7 +2689,7 @@ HTMLFormProps.onError #### Defined in -node_modules/@types/react/index.d.ts:1492 +node_modules/@types/react/index.d.ts:1497 ___ @@ -2704,7 +2703,7 @@ HTMLFormProps.onErrorCapture #### Defined in -node_modules/@types/react/index.d.ts:1493 +node_modules/@types/react/index.d.ts:1498 ___ @@ -2718,7 +2717,7 @@ HTMLFormProps.onFocus #### Defined in -node_modules/@types/react/index.d.ts:1470 +node_modules/@types/react/index.d.ts:1475 ___ @@ -2732,7 +2731,7 @@ HTMLFormProps.onFocusCapture #### Defined in -node_modules/@types/react/index.d.ts:1471 +node_modules/@types/react/index.d.ts:1476 ___ @@ -2746,7 +2745,7 @@ HTMLFormProps.onGotPointerCapture #### Defined in -node_modules/@types/react/index.d.ts:1622 +node_modules/@types/react/index.d.ts:1627 ___ @@ -2760,7 +2759,7 @@ HTMLFormProps.onGotPointerCaptureCapture #### Defined in -node_modules/@types/react/index.d.ts:1623 +node_modules/@types/react/index.d.ts:1628 ___ @@ -2774,7 +2773,7 @@ HTMLFormProps.onInput #### Defined in -node_modules/@types/react/index.d.ts:1480 +node_modules/@types/react/index.d.ts:1485 ___ @@ -2788,7 +2787,7 @@ HTMLFormProps.onInputCapture #### Defined in -node_modules/@types/react/index.d.ts:1481 +node_modules/@types/react/index.d.ts:1486 ___ @@ -2802,7 +2801,7 @@ HTMLFormProps.onInvalid #### Defined in -node_modules/@types/react/index.d.ts:1486 +node_modules/@types/react/index.d.ts:1491 ___ @@ -2816,7 +2815,7 @@ HTMLFormProps.onInvalidCapture #### Defined in -node_modules/@types/react/index.d.ts:1487 +node_modules/@types/react/index.d.ts:1492 ___ @@ -2830,7 +2829,7 @@ HTMLFormProps.onKeyDown #### Defined in -node_modules/@types/react/index.d.ts:1496 +node_modules/@types/react/index.d.ts:1501 ___ @@ -2844,7 +2843,7 @@ HTMLFormProps.onKeyDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1497 +node_modules/@types/react/index.d.ts:1502 ___ @@ -2860,7 +2859,7 @@ HTMLFormProps.onKeyPress #### Defined in -node_modules/@types/react/index.d.ts:1499 +node_modules/@types/react/index.d.ts:1504 ___ @@ -2876,7 +2875,7 @@ HTMLFormProps.onKeyPressCapture #### Defined in -node_modules/@types/react/index.d.ts:1501 +node_modules/@types/react/index.d.ts:1506 ___ @@ -2890,7 +2889,7 @@ HTMLFormProps.onKeyUp #### Defined in -node_modules/@types/react/index.d.ts:1502 +node_modules/@types/react/index.d.ts:1507 ___ @@ -2904,7 +2903,7 @@ HTMLFormProps.onKeyUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1503 +node_modules/@types/react/index.d.ts:1508 ___ @@ -2918,7 +2917,7 @@ HTMLFormProps.onLoad #### Defined in -node_modules/@types/react/index.d.ts:1490 +node_modules/@types/react/index.d.ts:1495 ___ @@ -2932,7 +2931,7 @@ HTMLFormProps.onLoadCapture #### Defined in -node_modules/@types/react/index.d.ts:1491 +node_modules/@types/react/index.d.ts:1496 ___ @@ -2946,7 +2945,7 @@ HTMLFormProps.onLoadStart #### Defined in -node_modules/@types/react/index.d.ts:1524 +node_modules/@types/react/index.d.ts:1529 ___ @@ -2960,7 +2959,7 @@ HTMLFormProps.onLoadStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1525 +node_modules/@types/react/index.d.ts:1530 ___ @@ -2974,7 +2973,7 @@ HTMLFormProps.onLoadedData #### Defined in -node_modules/@types/react/index.d.ts:1520 +node_modules/@types/react/index.d.ts:1525 ___ @@ -2988,7 +2987,7 @@ HTMLFormProps.onLoadedDataCapture #### Defined in -node_modules/@types/react/index.d.ts:1521 +node_modules/@types/react/index.d.ts:1526 ___ @@ -3002,7 +3001,7 @@ HTMLFormProps.onLoadedMetadata #### Defined in -node_modules/@types/react/index.d.ts:1522 +node_modules/@types/react/index.d.ts:1527 ___ @@ -3016,7 +3015,7 @@ HTMLFormProps.onLoadedMetadataCapture #### Defined in -node_modules/@types/react/index.d.ts:1523 +node_modules/@types/react/index.d.ts:1528 ___ @@ -3030,7 +3029,7 @@ HTMLFormProps.onLostPointerCapture #### Defined in -node_modules/@types/react/index.d.ts:1624 +node_modules/@types/react/index.d.ts:1629 ___ @@ -3044,7 +3043,7 @@ HTMLFormProps.onLostPointerCaptureCapture #### Defined in -node_modules/@types/react/index.d.ts:1625 +node_modules/@types/react/index.d.ts:1630 ___ @@ -3058,7 +3057,7 @@ HTMLFormProps.onMouseDown #### Defined in -node_modules/@types/react/index.d.ts:1578 +node_modules/@types/react/index.d.ts:1583 ___ @@ -3072,7 +3071,7 @@ HTMLFormProps.onMouseDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1579 +node_modules/@types/react/index.d.ts:1584 ___ @@ -3086,7 +3085,7 @@ HTMLFormProps.onMouseEnter #### Defined in -node_modules/@types/react/index.d.ts:1580 +node_modules/@types/react/index.d.ts:1585 ___ @@ -3100,7 +3099,7 @@ HTMLFormProps.onMouseLeave #### Defined in -node_modules/@types/react/index.d.ts:1581 +node_modules/@types/react/index.d.ts:1586 ___ @@ -3114,7 +3113,7 @@ HTMLFormProps.onMouseMove #### Defined in -node_modules/@types/react/index.d.ts:1582 +node_modules/@types/react/index.d.ts:1587 ___ @@ -3128,7 +3127,7 @@ HTMLFormProps.onMouseMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1583 +node_modules/@types/react/index.d.ts:1588 ___ @@ -3142,7 +3141,7 @@ HTMLFormProps.onMouseOut #### Defined in -node_modules/@types/react/index.d.ts:1584 +node_modules/@types/react/index.d.ts:1589 ___ @@ -3156,7 +3155,7 @@ HTMLFormProps.onMouseOutCapture #### Defined in -node_modules/@types/react/index.d.ts:1585 +node_modules/@types/react/index.d.ts:1590 ___ @@ -3170,7 +3169,7 @@ HTMLFormProps.onMouseOver #### Defined in -node_modules/@types/react/index.d.ts:1586 +node_modules/@types/react/index.d.ts:1591 ___ @@ -3184,7 +3183,7 @@ HTMLFormProps.onMouseOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1587 +node_modules/@types/react/index.d.ts:1592 ___ @@ -3198,7 +3197,7 @@ HTMLFormProps.onMouseUp #### Defined in -node_modules/@types/react/index.d.ts:1588 +node_modules/@types/react/index.d.ts:1593 ___ @@ -3212,7 +3211,7 @@ HTMLFormProps.onMouseUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1589 +node_modules/@types/react/index.d.ts:1594 ___ @@ -3226,7 +3225,7 @@ HTMLFormProps.onPaste #### Defined in -node_modules/@types/react/index.d.ts:1458 +node_modules/@types/react/index.d.ts:1463 ___ @@ -3240,7 +3239,7 @@ HTMLFormProps.onPasteCapture #### Defined in -node_modules/@types/react/index.d.ts:1459 +node_modules/@types/react/index.d.ts:1464 ___ @@ -3254,7 +3253,7 @@ HTMLFormProps.onPause #### Defined in -node_modules/@types/react/index.d.ts:1526 +node_modules/@types/react/index.d.ts:1531 ___ @@ -3268,7 +3267,7 @@ HTMLFormProps.onPauseCapture #### Defined in -node_modules/@types/react/index.d.ts:1527 +node_modules/@types/react/index.d.ts:1532 ___ @@ -3282,7 +3281,7 @@ HTMLFormProps.onPlay #### Defined in -node_modules/@types/react/index.d.ts:1528 +node_modules/@types/react/index.d.ts:1533 ___ @@ -3296,7 +3295,7 @@ HTMLFormProps.onPlayCapture #### Defined in -node_modules/@types/react/index.d.ts:1529 +node_modules/@types/react/index.d.ts:1534 ___ @@ -3310,7 +3309,7 @@ HTMLFormProps.onPlaying #### Defined in -node_modules/@types/react/index.d.ts:1530 +node_modules/@types/react/index.d.ts:1535 ___ @@ -3324,7 +3323,7 @@ HTMLFormProps.onPlayingCapture #### Defined in -node_modules/@types/react/index.d.ts:1531 +node_modules/@types/react/index.d.ts:1536 ___ @@ -3338,7 +3337,7 @@ HTMLFormProps.onPointerCancel #### Defined in -node_modules/@types/react/index.d.ts:1612 +node_modules/@types/react/index.d.ts:1617 ___ @@ -3352,7 +3351,7 @@ HTMLFormProps.onPointerCancelCapture #### Defined in -node_modules/@types/react/index.d.ts:1613 +node_modules/@types/react/index.d.ts:1618 ___ @@ -3366,7 +3365,7 @@ HTMLFormProps.onPointerDown #### Defined in -node_modules/@types/react/index.d.ts:1606 +node_modules/@types/react/index.d.ts:1611 ___ @@ -3380,7 +3379,7 @@ HTMLFormProps.onPointerDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1607 +node_modules/@types/react/index.d.ts:1612 ___ @@ -3394,7 +3393,7 @@ HTMLFormProps.onPointerEnter #### Defined in -node_modules/@types/react/index.d.ts:1614 +node_modules/@types/react/index.d.ts:1619 ___ @@ -3408,7 +3407,7 @@ HTMLFormProps.onPointerEnterCapture #### Defined in -node_modules/@types/react/index.d.ts:1615 +node_modules/@types/react/index.d.ts:1620 ___ @@ -3422,7 +3421,7 @@ HTMLFormProps.onPointerLeave #### Defined in -node_modules/@types/react/index.d.ts:1616 +node_modules/@types/react/index.d.ts:1621 ___ @@ -3436,7 +3435,7 @@ HTMLFormProps.onPointerLeaveCapture #### Defined in -node_modules/@types/react/index.d.ts:1617 +node_modules/@types/react/index.d.ts:1622 ___ @@ -3450,7 +3449,7 @@ HTMLFormProps.onPointerMove #### Defined in -node_modules/@types/react/index.d.ts:1608 +node_modules/@types/react/index.d.ts:1613 ___ @@ -3464,7 +3463,7 @@ HTMLFormProps.onPointerMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1609 +node_modules/@types/react/index.d.ts:1614 ___ @@ -3478,7 +3477,7 @@ HTMLFormProps.onPointerOut #### Defined in -node_modules/@types/react/index.d.ts:1620 +node_modules/@types/react/index.d.ts:1625 ___ @@ -3492,7 +3491,7 @@ HTMLFormProps.onPointerOutCapture #### Defined in -node_modules/@types/react/index.d.ts:1621 +node_modules/@types/react/index.d.ts:1626 ___ @@ -3506,7 +3505,7 @@ HTMLFormProps.onPointerOver #### Defined in -node_modules/@types/react/index.d.ts:1618 +node_modules/@types/react/index.d.ts:1623 ___ @@ -3520,7 +3519,7 @@ HTMLFormProps.onPointerOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1619 +node_modules/@types/react/index.d.ts:1624 ___ @@ -3534,7 +3533,7 @@ HTMLFormProps.onPointerUp #### Defined in -node_modules/@types/react/index.d.ts:1610 +node_modules/@types/react/index.d.ts:1615 ___ @@ -3548,7 +3547,7 @@ HTMLFormProps.onPointerUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1611 +node_modules/@types/react/index.d.ts:1616 ___ @@ -3562,7 +3561,7 @@ HTMLFormProps.onProgress #### Defined in -node_modules/@types/react/index.d.ts:1532 +node_modules/@types/react/index.d.ts:1537 ___ @@ -3576,7 +3575,7 @@ HTMLFormProps.onProgressCapture #### Defined in -node_modules/@types/react/index.d.ts:1533 +node_modules/@types/react/index.d.ts:1538 ___ @@ -3590,7 +3589,7 @@ HTMLFormProps.onRateChange #### Defined in -node_modules/@types/react/index.d.ts:1534 +node_modules/@types/react/index.d.ts:1539 ___ @@ -3604,7 +3603,7 @@ HTMLFormProps.onRateChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1535 +node_modules/@types/react/index.d.ts:1540 ___ @@ -3618,7 +3617,7 @@ HTMLFormProps.onReset #### Defined in -node_modules/@types/react/index.d.ts:1482 +node_modules/@types/react/index.d.ts:1487 ___ @@ -3632,7 +3631,7 @@ HTMLFormProps.onResetCapture #### Defined in -node_modules/@types/react/index.d.ts:1483 +node_modules/@types/react/index.d.ts:1488 ___ @@ -3646,7 +3645,7 @@ HTMLFormProps.onResize #### Defined in -node_modules/@types/react/index.d.ts:1536 +node_modules/@types/react/index.d.ts:1541 ___ @@ -3660,7 +3659,7 @@ HTMLFormProps.onResizeCapture #### Defined in -node_modules/@types/react/index.d.ts:1537 +node_modules/@types/react/index.d.ts:1542 ___ @@ -3674,7 +3673,7 @@ HTMLFormProps.onScroll #### Defined in -node_modules/@types/react/index.d.ts:1628 +node_modules/@types/react/index.d.ts:1633 ___ @@ -3688,7 +3687,7 @@ HTMLFormProps.onScrollCapture #### Defined in -node_modules/@types/react/index.d.ts:1629 +node_modules/@types/react/index.d.ts:1634 ___ @@ -3702,7 +3701,7 @@ HTMLFormProps.onSeeked #### Defined in -node_modules/@types/react/index.d.ts:1538 +node_modules/@types/react/index.d.ts:1543 ___ @@ -3716,7 +3715,7 @@ HTMLFormProps.onSeekedCapture #### Defined in -node_modules/@types/react/index.d.ts:1539 +node_modules/@types/react/index.d.ts:1544 ___ @@ -3730,7 +3729,7 @@ HTMLFormProps.onSeeking #### Defined in -node_modules/@types/react/index.d.ts:1540 +node_modules/@types/react/index.d.ts:1545 ___ @@ -3744,7 +3743,7 @@ HTMLFormProps.onSeekingCapture #### Defined in -node_modules/@types/react/index.d.ts:1541 +node_modules/@types/react/index.d.ts:1546 ___ @@ -3758,7 +3757,7 @@ HTMLFormProps.onSelect #### Defined in -node_modules/@types/react/index.d.ts:1592 +node_modules/@types/react/index.d.ts:1597 ___ @@ -3772,7 +3771,7 @@ HTMLFormProps.onSelectCapture #### Defined in -node_modules/@types/react/index.d.ts:1593 +node_modules/@types/react/index.d.ts:1598 ___ @@ -3786,7 +3785,7 @@ HTMLFormProps.onStalled #### Defined in -node_modules/@types/react/index.d.ts:1542 +node_modules/@types/react/index.d.ts:1547 ___ @@ -3800,7 +3799,7 @@ HTMLFormProps.onStalledCapture #### Defined in -node_modules/@types/react/index.d.ts:1543 +node_modules/@types/react/index.d.ts:1548 ___ @@ -3808,6 +3807,12 @@ ___ • **onSubmit**: (`values`: `T`) => `void` +The function to be called uppon form submision. + +**`Param`** + +the validated values `T` of the form + #### Type declaration ▸ (`values`): `void` @@ -3844,7 +3849,7 @@ HTMLFormProps.onSubmitCapture #### Defined in -node_modules/@types/react/index.d.ts:1485 +node_modules/@types/react/index.d.ts:1490 ___ @@ -3858,7 +3863,7 @@ HTMLFormProps.onSuspend #### Defined in -node_modules/@types/react/index.d.ts:1544 +node_modules/@types/react/index.d.ts:1549 ___ @@ -3872,7 +3877,7 @@ HTMLFormProps.onSuspendCapture #### Defined in -node_modules/@types/react/index.d.ts:1545 +node_modules/@types/react/index.d.ts:1550 ___ @@ -3886,7 +3891,7 @@ HTMLFormProps.onTimeUpdate #### Defined in -node_modules/@types/react/index.d.ts:1546 +node_modules/@types/react/index.d.ts:1551 ___ @@ -3900,7 +3905,7 @@ HTMLFormProps.onTimeUpdateCapture #### Defined in -node_modules/@types/react/index.d.ts:1547 +node_modules/@types/react/index.d.ts:1552 ___ @@ -3914,7 +3919,7 @@ HTMLFormProps.onTouchCancel #### Defined in -node_modules/@types/react/index.d.ts:1596 +node_modules/@types/react/index.d.ts:1601 ___ @@ -3928,7 +3933,7 @@ HTMLFormProps.onTouchCancelCapture #### Defined in -node_modules/@types/react/index.d.ts:1597 +node_modules/@types/react/index.d.ts:1602 ___ @@ -3942,7 +3947,7 @@ HTMLFormProps.onTouchEnd #### Defined in -node_modules/@types/react/index.d.ts:1598 +node_modules/@types/react/index.d.ts:1603 ___ @@ -3956,7 +3961,7 @@ HTMLFormProps.onTouchEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1599 +node_modules/@types/react/index.d.ts:1604 ___ @@ -3970,7 +3975,7 @@ HTMLFormProps.onTouchMove #### Defined in -node_modules/@types/react/index.d.ts:1600 +node_modules/@types/react/index.d.ts:1605 ___ @@ -3984,7 +3989,7 @@ HTMLFormProps.onTouchMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1601 +node_modules/@types/react/index.d.ts:1606 ___ @@ -3998,7 +4003,7 @@ HTMLFormProps.onTouchStart #### Defined in -node_modules/@types/react/index.d.ts:1602 +node_modules/@types/react/index.d.ts:1607 ___ @@ -4012,7 +4017,7 @@ HTMLFormProps.onTouchStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1603 +node_modules/@types/react/index.d.ts:1608 ___ @@ -4026,7 +4031,7 @@ HTMLFormProps.onTransitionEnd #### Defined in -node_modules/@types/react/index.d.ts:1644 +node_modules/@types/react/index.d.ts:1649 ___ @@ -4040,7 +4045,7 @@ HTMLFormProps.onTransitionEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1645 +node_modules/@types/react/index.d.ts:1650 ___ @@ -4054,7 +4059,7 @@ HTMLFormProps.onVolumeChange #### Defined in -node_modules/@types/react/index.d.ts:1548 +node_modules/@types/react/index.d.ts:1553 ___ @@ -4068,7 +4073,7 @@ HTMLFormProps.onVolumeChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1549 +node_modules/@types/react/index.d.ts:1554 ___ @@ -4082,7 +4087,7 @@ HTMLFormProps.onWaiting #### Defined in -node_modules/@types/react/index.d.ts:1550 +node_modules/@types/react/index.d.ts:1555 ___ @@ -4096,7 +4101,7 @@ HTMLFormProps.onWaitingCapture #### Defined in -node_modules/@types/react/index.d.ts:1551 +node_modules/@types/react/index.d.ts:1556 ___ @@ -4110,7 +4115,7 @@ HTMLFormProps.onWheel #### Defined in -node_modules/@types/react/index.d.ts:1632 +node_modules/@types/react/index.d.ts:1637 ___ @@ -4124,21 +4129,7 @@ HTMLFormProps.onWheelCapture #### Defined in -node_modules/@types/react/index.d.ts:1633 - -___ - -### placeholder - -• `Optional` **placeholder**: `string` - -#### Inherited from - -HTMLFormProps.placeholder - -#### Defined in - -node_modules/@types/react/index.d.ts:1975 +node_modules/@types/react/index.d.ts:1638 ___ @@ -4152,7 +4143,7 @@ HTMLFormProps.prefix #### Defined in -node_modules/@types/react/index.d.ts:1994 +node_modules/@types/react/index.d.ts:1998 ___ @@ -4166,7 +4157,7 @@ HTMLFormProps.property #### Defined in -node_modules/@types/react/index.d.ts:1995 +node_modules/@types/react/index.d.ts:1999 ___ @@ -4180,7 +4171,7 @@ HTMLFormProps.radioGroup #### Defined in -node_modules/@types/react/index.d.ts:1984 +node_modules/@types/react/index.d.ts:1988 ___ @@ -4201,7 +4192,7 @@ HTMLFormProps.ref #### Defined in -node_modules/@types/react/index.d.ts:127 +node_modules/@types/react/index.d.ts:125 ___ @@ -4215,7 +4206,7 @@ HTMLFormProps.rel #### Defined in -node_modules/@types/react/index.d.ts:1996 +node_modules/@types/react/index.d.ts:2000 ___ @@ -4229,7 +4220,7 @@ HTMLFormProps.resource #### Defined in -node_modules/@types/react/index.d.ts:1997 +node_modules/@types/react/index.d.ts:2001 ___ @@ -4243,7 +4234,7 @@ HTMLFormProps.results #### Defined in -node_modules/@types/react/index.d.ts:2012 +node_modules/@types/react/index.d.ts:2016 ___ @@ -4257,7 +4248,7 @@ HTMLFormProps.rev #### Defined in -node_modules/@types/react/index.d.ts:1998 +node_modules/@types/react/index.d.ts:2002 ___ @@ -4271,7 +4262,7 @@ HTMLFormProps.role #### Defined in -node_modules/@types/react/index.d.ts:1987 +node_modules/@types/react/index.d.ts:1991 ___ @@ -4285,7 +4276,7 @@ HTMLFormProps.security #### Defined in -node_modules/@types/react/index.d.ts:2013 +node_modules/@types/react/index.d.ts:2017 ___ @@ -4299,7 +4290,7 @@ HTMLFormProps.slot #### Defined in -node_modules/@types/react/index.d.ts:1976 +node_modules/@types/react/index.d.ts:1980 ___ @@ -4313,7 +4304,7 @@ HTMLFormProps.spellCheck #### Defined in -node_modules/@types/react/index.d.ts:1977 +node_modules/@types/react/index.d.ts:1981 ___ @@ -4327,7 +4318,7 @@ HTMLFormProps.style #### Defined in -node_modules/@types/react/index.d.ts:1978 +node_modules/@types/react/index.d.ts:1982 ___ @@ -4341,7 +4332,7 @@ HTMLFormProps.suppressContentEditableWarning #### Defined in -node_modules/@types/react/index.d.ts:1960 +node_modules/@types/react/index.d.ts:1965 ___ @@ -4355,7 +4346,7 @@ HTMLFormProps.suppressHydrationWarning #### Defined in -node_modules/@types/react/index.d.ts:1961 +node_modules/@types/react/index.d.ts:1966 ___ @@ -4369,7 +4360,7 @@ HTMLFormProps.tabIndex #### Defined in -node_modules/@types/react/index.d.ts:1979 +node_modules/@types/react/index.d.ts:1983 ___ @@ -4383,7 +4374,7 @@ HTMLFormProps.target #### Defined in -node_modules/@types/react/index.d.ts:2282 +node_modules/@types/react/index.d.ts:2287 ___ @@ -4397,7 +4388,7 @@ HTMLFormProps.title #### Defined in -node_modules/@types/react/index.d.ts:1980 +node_modules/@types/react/index.d.ts:1984 ___ @@ -4411,7 +4402,7 @@ HTMLFormProps.translate #### Defined in -node_modules/@types/react/index.d.ts:1981 +node_modules/@types/react/index.d.ts:1985 ___ @@ -4425,7 +4416,7 @@ HTMLFormProps.typeof #### Defined in -node_modules/@types/react/index.d.ts:1999 +node_modules/@types/react/index.d.ts:2003 ___ @@ -4439,7 +4430,7 @@ HTMLFormProps.unselectable #### Defined in -node_modules/@types/react/index.d.ts:2014 +node_modules/@types/react/index.d.ts:2018 ___ @@ -4491,4 +4482,4 @@ HTMLFormProps.vocab #### Defined in -node_modules/@types/react/index.d.ts:2000 +node_modules/@types/react/index.d.ts:2004 diff --git a/packages/web/docs/interfaces/InputProps.md b/packages/web/docs/interfaces/InputProps.md index ec2ff2d..52dd906 100644 --- a/packages/web/docs/interfaces/InputProps.md +++ b/packages/web/docs/interfaces/InputProps.md @@ -333,7 +333,7 @@ InputHTMLAttributes.about #### Defined in -node_modules/@types/react/index.d.ts:1990 +node_modules/@types/react/index.d.ts:1994 ___ @@ -347,7 +347,7 @@ InputHTMLAttributes.accept #### Defined in -node_modules/@types/react/index.d.ts:2357 +node_modules/@types/react/index.d.ts:2362 ___ @@ -361,7 +361,7 @@ InputHTMLAttributes.accessKey #### Defined in -node_modules/@types/react/index.d.ts:1964 +node_modules/@types/react/index.d.ts:1969 ___ @@ -375,7 +375,7 @@ InputHTMLAttributes.alt #### Defined in -node_modules/@types/react/index.d.ts:2358 +node_modules/@types/react/index.d.ts:2363 ___ @@ -391,7 +391,7 @@ InputHTMLAttributes.aria-activedescendant #### Defined in -node_modules/@types/react/index.d.ts:1662 +node_modules/@types/react/index.d.ts:1667 ___ @@ -407,7 +407,7 @@ InputHTMLAttributes.aria-atomic #### Defined in -node_modules/@types/react/index.d.ts:1664 +node_modules/@types/react/index.d.ts:1669 ___ @@ -424,7 +424,7 @@ InputHTMLAttributes.aria-autocomplete #### Defined in -node_modules/@types/react/index.d.ts:1669 +node_modules/@types/react/index.d.ts:1674 ___ @@ -444,7 +444,7 @@ InputHTMLAttributes.aria-braillelabel #### Defined in -node_modules/@types/react/index.d.ts:1675 +node_modules/@types/react/index.d.ts:1680 ___ @@ -464,7 +464,7 @@ InputHTMLAttributes.aria-brailleroledescription #### Defined in -node_modules/@types/react/index.d.ts:1680 +node_modules/@types/react/index.d.ts:1685 ___ @@ -478,7 +478,7 @@ InputHTMLAttributes.aria-busy #### Defined in -node_modules/@types/react/index.d.ts:1681 +node_modules/@types/react/index.d.ts:1686 ___ @@ -499,7 +499,7 @@ InputHTMLAttributes.aria-checked #### Defined in -node_modules/@types/react/index.d.ts:1686 +node_modules/@types/react/index.d.ts:1691 ___ @@ -519,7 +519,7 @@ InputHTMLAttributes.aria-colcount #### Defined in -node_modules/@types/react/index.d.ts:1691 +node_modules/@types/react/index.d.ts:1696 ___ @@ -540,7 +540,7 @@ InputHTMLAttributes.aria-colindex #### Defined in -node_modules/@types/react/index.d.ts:1696 +node_modules/@types/react/index.d.ts:1701 ___ @@ -560,7 +560,7 @@ InputHTMLAttributes.aria-colindextext #### Defined in -node_modules/@types/react/index.d.ts:1701 +node_modules/@types/react/index.d.ts:1706 ___ @@ -581,7 +581,7 @@ InputHTMLAttributes.aria-colspan #### Defined in -node_modules/@types/react/index.d.ts:1706 +node_modules/@types/react/index.d.ts:1711 ___ @@ -601,7 +601,7 @@ InputHTMLAttributes.aria-controls #### Defined in -node_modules/@types/react/index.d.ts:1711 +node_modules/@types/react/index.d.ts:1716 ___ @@ -617,7 +617,7 @@ InputHTMLAttributes.aria-current #### Defined in -node_modules/@types/react/index.d.ts:1713 +node_modules/@types/react/index.d.ts:1718 ___ @@ -637,7 +637,7 @@ InputHTMLAttributes.aria-describedby #### Defined in -node_modules/@types/react/index.d.ts:1718 +node_modules/@types/react/index.d.ts:1723 ___ @@ -657,7 +657,7 @@ InputHTMLAttributes.aria-description #### Defined in -node_modules/@types/react/index.d.ts:1723 +node_modules/@types/react/index.d.ts:1728 ___ @@ -677,7 +677,7 @@ InputHTMLAttributes.aria-details #### Defined in -node_modules/@types/react/index.d.ts:1728 +node_modules/@types/react/index.d.ts:1733 ___ @@ -698,7 +698,7 @@ InputHTMLAttributes.aria-disabled #### Defined in -node_modules/@types/react/index.d.ts:1733 +node_modules/@types/react/index.d.ts:1738 ___ @@ -718,7 +718,7 @@ InputHTMLAttributes.aria-dropeffect #### Defined in -node_modules/@types/react/index.d.ts:1738 +node_modules/@types/react/index.d.ts:1743 ___ @@ -739,7 +739,7 @@ InputHTMLAttributes.aria-errormessage #### Defined in -node_modules/@types/react/index.d.ts:1743 +node_modules/@types/react/index.d.ts:1748 ___ @@ -755,7 +755,7 @@ InputHTMLAttributes.aria-expanded #### Defined in -node_modules/@types/react/index.d.ts:1745 +node_modules/@types/react/index.d.ts:1750 ___ @@ -772,7 +772,7 @@ InputHTMLAttributes.aria-flowto #### Defined in -node_modules/@types/react/index.d.ts:1750 +node_modules/@types/react/index.d.ts:1755 ___ @@ -792,7 +792,7 @@ InputHTMLAttributes.aria-grabbed #### Defined in -node_modules/@types/react/index.d.ts:1755 +node_modules/@types/react/index.d.ts:1760 ___ @@ -808,7 +808,7 @@ InputHTMLAttributes.aria-haspopup #### Defined in -node_modules/@types/react/index.d.ts:1757 +node_modules/@types/react/index.d.ts:1762 ___ @@ -828,7 +828,7 @@ InputHTMLAttributes.aria-hidden #### Defined in -node_modules/@types/react/index.d.ts:1762 +node_modules/@types/react/index.d.ts:1767 ___ @@ -848,7 +848,7 @@ InputHTMLAttributes.aria-invalid #### Defined in -node_modules/@types/react/index.d.ts:1767 +node_modules/@types/react/index.d.ts:1772 ___ @@ -864,7 +864,7 @@ InputHTMLAttributes.aria-keyshortcuts #### Defined in -node_modules/@types/react/index.d.ts:1769 +node_modules/@types/react/index.d.ts:1774 ___ @@ -884,7 +884,7 @@ InputHTMLAttributes.aria-label #### Defined in -node_modules/@types/react/index.d.ts:1774 +node_modules/@types/react/index.d.ts:1779 ___ @@ -904,7 +904,7 @@ InputHTMLAttributes.aria-labelledby #### Defined in -node_modules/@types/react/index.d.ts:1779 +node_modules/@types/react/index.d.ts:1784 ___ @@ -920,7 +920,7 @@ InputHTMLAttributes.aria-level #### Defined in -node_modules/@types/react/index.d.ts:1781 +node_modules/@types/react/index.d.ts:1786 ___ @@ -936,7 +936,7 @@ InputHTMLAttributes.aria-live #### Defined in -node_modules/@types/react/index.d.ts:1783 +node_modules/@types/react/index.d.ts:1788 ___ @@ -952,7 +952,7 @@ InputHTMLAttributes.aria-modal #### Defined in -node_modules/@types/react/index.d.ts:1785 +node_modules/@types/react/index.d.ts:1790 ___ @@ -968,7 +968,7 @@ InputHTMLAttributes.aria-multiline #### Defined in -node_modules/@types/react/index.d.ts:1787 +node_modules/@types/react/index.d.ts:1792 ___ @@ -984,7 +984,7 @@ InputHTMLAttributes.aria-multiselectable #### Defined in -node_modules/@types/react/index.d.ts:1789 +node_modules/@types/react/index.d.ts:1794 ___ @@ -1000,7 +1000,7 @@ InputHTMLAttributes.aria-orientation #### Defined in -node_modules/@types/react/index.d.ts:1791 +node_modules/@types/react/index.d.ts:1796 ___ @@ -1021,7 +1021,7 @@ InputHTMLAttributes.aria-owns #### Defined in -node_modules/@types/react/index.d.ts:1797 +node_modules/@types/react/index.d.ts:1802 ___ @@ -1038,7 +1038,7 @@ InputHTMLAttributes.aria-placeholder #### Defined in -node_modules/@types/react/index.d.ts:1802 +node_modules/@types/react/index.d.ts:1807 ___ @@ -1058,7 +1058,7 @@ InputHTMLAttributes.aria-posinset #### Defined in -node_modules/@types/react/index.d.ts:1807 +node_modules/@types/react/index.d.ts:1812 ___ @@ -1079,7 +1079,7 @@ InputHTMLAttributes.aria-pressed #### Defined in -node_modules/@types/react/index.d.ts:1812 +node_modules/@types/react/index.d.ts:1817 ___ @@ -1099,7 +1099,7 @@ InputHTMLAttributes.aria-readonly #### Defined in -node_modules/@types/react/index.d.ts:1817 +node_modules/@types/react/index.d.ts:1822 ___ @@ -1119,7 +1119,7 @@ InputHTMLAttributes.aria-relevant #### Defined in -node_modules/@types/react/index.d.ts:1822 +node_modules/@types/react/index.d.ts:1827 ___ @@ -1135,7 +1135,7 @@ InputHTMLAttributes.aria-required #### Defined in -node_modules/@types/react/index.d.ts:1835 +node_modules/@types/react/index.d.ts:1840 ___ @@ -1151,7 +1151,7 @@ InputHTMLAttributes.aria-roledescription #### Defined in -node_modules/@types/react/index.d.ts:1837 +node_modules/@types/react/index.d.ts:1842 ___ @@ -1171,7 +1171,7 @@ InputHTMLAttributes.aria-rowcount #### Defined in -node_modules/@types/react/index.d.ts:1842 +node_modules/@types/react/index.d.ts:1847 ___ @@ -1192,7 +1192,7 @@ InputHTMLAttributes.aria-rowindex #### Defined in -node_modules/@types/react/index.d.ts:1847 +node_modules/@types/react/index.d.ts:1852 ___ @@ -1212,7 +1212,7 @@ InputHTMLAttributes.aria-rowindextext #### Defined in -node_modules/@types/react/index.d.ts:1852 +node_modules/@types/react/index.d.ts:1857 ___ @@ -1233,7 +1233,7 @@ InputHTMLAttributes.aria-rowspan #### Defined in -node_modules/@types/react/index.d.ts:1857 +node_modules/@types/react/index.d.ts:1862 ___ @@ -1254,7 +1254,7 @@ InputHTMLAttributes.aria-selected #### Defined in -node_modules/@types/react/index.d.ts:1862 +node_modules/@types/react/index.d.ts:1867 ___ @@ -1274,7 +1274,7 @@ InputHTMLAttributes.aria-setsize #### Defined in -node_modules/@types/react/index.d.ts:1867 +node_modules/@types/react/index.d.ts:1872 ___ @@ -1290,7 +1290,7 @@ InputHTMLAttributes.aria-sort #### Defined in -node_modules/@types/react/index.d.ts:1869 +node_modules/@types/react/index.d.ts:1874 ___ @@ -1306,7 +1306,7 @@ InputHTMLAttributes.aria-valuemax #### Defined in -node_modules/@types/react/index.d.ts:1871 +node_modules/@types/react/index.d.ts:1876 ___ @@ -1322,7 +1322,7 @@ InputHTMLAttributes.aria-valuemin #### Defined in -node_modules/@types/react/index.d.ts:1873 +node_modules/@types/react/index.d.ts:1878 ___ @@ -1342,7 +1342,7 @@ InputHTMLAttributes.aria-valuenow #### Defined in -node_modules/@types/react/index.d.ts:1878 +node_modules/@types/react/index.d.ts:1883 ___ @@ -1358,7 +1358,7 @@ InputHTMLAttributes.aria-valuetext #### Defined in -node_modules/@types/react/index.d.ts:1880 +node_modules/@types/react/index.d.ts:1885 ___ @@ -1372,7 +1372,7 @@ InputHTMLAttributes.autoCapitalize #### Defined in -node_modules/@types/react/index.d.ts:2003 +node_modules/@types/react/index.d.ts:2007 ___ @@ -1386,7 +1386,7 @@ InputHTMLAttributes.autoComplete #### Defined in -node_modules/@types/react/index.d.ts:2359 +node_modules/@types/react/index.d.ts:2364 ___ @@ -1400,7 +1400,7 @@ InputHTMLAttributes.autoCorrect #### Defined in -node_modules/@types/react/index.d.ts:2004 +node_modules/@types/react/index.d.ts:2008 ___ @@ -1414,7 +1414,7 @@ InputHTMLAttributes.autoFocus #### Defined in -node_modules/@types/react/index.d.ts:1965 +node_modules/@types/react/index.d.ts:1970 ___ @@ -1428,7 +1428,7 @@ InputHTMLAttributes.autoSave #### Defined in -node_modules/@types/react/index.d.ts:2005 +node_modules/@types/react/index.d.ts:2009 ___ @@ -1442,7 +1442,7 @@ InputHTMLAttributes.capture #### Defined in -node_modules/@types/react/index.d.ts:2360 +node_modules/@types/react/index.d.ts:2365 ___ @@ -1456,7 +1456,7 @@ InputHTMLAttributes.checked #### Defined in -node_modules/@types/react/index.d.ts:2361 +node_modules/@types/react/index.d.ts:2366 ___ @@ -1470,7 +1470,7 @@ InputHTMLAttributes.children #### Defined in -node_modules/@types/react/index.d.ts:1446 +node_modules/@types/react/index.d.ts:1451 ___ @@ -1484,7 +1484,7 @@ InputHTMLAttributes.className #### Defined in -node_modules/@types/react/index.d.ts:1966 +node_modules/@types/react/index.d.ts:1971 ___ @@ -1498,7 +1498,7 @@ InputHTMLAttributes.color #### Defined in -node_modules/@types/react/index.d.ts:2006 +node_modules/@types/react/index.d.ts:2010 ___ @@ -1512,7 +1512,7 @@ InputHTMLAttributes.content #### Defined in -node_modules/@types/react/index.d.ts:1991 +node_modules/@types/react/index.d.ts:1995 ___ @@ -1526,7 +1526,7 @@ InputHTMLAttributes.contentEditable #### Defined in -node_modules/@types/react/index.d.ts:1967 +node_modules/@types/react/index.d.ts:1972 ___ @@ -1540,7 +1540,7 @@ InputHTMLAttributes.contextMenu #### Defined in -node_modules/@types/react/index.d.ts:1968 +node_modules/@types/react/index.d.ts:1973 ___ @@ -1560,7 +1560,7 @@ InputHTMLAttributes.dangerouslySetInnerHTML #### Defined in -node_modules/@types/react/index.d.ts:1447 +node_modules/@types/react/index.d.ts:1452 ___ @@ -1574,7 +1574,7 @@ InputHTMLAttributes.datatype #### Defined in -node_modules/@types/react/index.d.ts:1992 +node_modules/@types/react/index.d.ts:1996 ___ @@ -1588,7 +1588,7 @@ InputHTMLAttributes.defaultChecked #### Defined in -node_modules/@types/react/index.d.ts:1958 +node_modules/@types/react/index.d.ts:1963 ___ @@ -1602,7 +1602,7 @@ InputHTMLAttributes.defaultValue #### Defined in -node_modules/@types/react/index.d.ts:1959 +node_modules/@types/react/index.d.ts:1964 ___ @@ -1616,7 +1616,7 @@ InputHTMLAttributes.dir #### Defined in -node_modules/@types/react/index.d.ts:1969 +node_modules/@types/react/index.d.ts:1974 ___ @@ -1630,7 +1630,7 @@ InputHTMLAttributes.disabled #### Defined in -node_modules/@types/react/index.d.ts:2362 +node_modules/@types/react/index.d.ts:2367 ___ @@ -1644,7 +1644,7 @@ InputHTMLAttributes.draggable #### Defined in -node_modules/@types/react/index.d.ts:1970 +node_modules/@types/react/index.d.ts:1975 ___ @@ -1658,7 +1658,7 @@ InputHTMLAttributes.enterKeyHint #### Defined in -node_modules/@types/react/index.d.ts:2363 +node_modules/@types/react/index.d.ts:2368 ___ @@ -1672,7 +1672,7 @@ InputHTMLAttributes.form #### Defined in -node_modules/@types/react/index.d.ts:2364 +node_modules/@types/react/index.d.ts:2369 ___ @@ -1686,7 +1686,7 @@ InputHTMLAttributes.formAction #### Defined in -node_modules/@types/react/index.d.ts:2365 +node_modules/@types/react/index.d.ts:2370 ___ @@ -1700,7 +1700,7 @@ InputHTMLAttributes.formEncType #### Defined in -node_modules/@types/react/index.d.ts:2371 +node_modules/@types/react/index.d.ts:2376 ___ @@ -1714,7 +1714,7 @@ InputHTMLAttributes.formMethod #### Defined in -node_modules/@types/react/index.d.ts:2372 +node_modules/@types/react/index.d.ts:2377 ___ @@ -1728,7 +1728,7 @@ InputHTMLAttributes.formNoValidate #### Defined in -node_modules/@types/react/index.d.ts:2373 +node_modules/@types/react/index.d.ts:2378 ___ @@ -1742,7 +1742,7 @@ InputHTMLAttributes.formTarget #### Defined in -node_modules/@types/react/index.d.ts:2374 +node_modules/@types/react/index.d.ts:2379 ___ @@ -1756,7 +1756,7 @@ InputHTMLAttributes.height #### Defined in -node_modules/@types/react/index.d.ts:2375 +node_modules/@types/react/index.d.ts:2380 ___ @@ -1770,7 +1770,7 @@ InputHTMLAttributes.hidden #### Defined in -node_modules/@types/react/index.d.ts:1971 +node_modules/@types/react/index.d.ts:1976 ___ @@ -1784,7 +1784,7 @@ InputHTMLAttributes.id #### Defined in -node_modules/@types/react/index.d.ts:1972 +node_modules/@types/react/index.d.ts:1977 ___ @@ -1816,7 +1816,7 @@ InputHTMLAttributes.inlist #### Defined in -node_modules/@types/react/index.d.ts:1993 +node_modules/@types/react/index.d.ts:1997 ___ @@ -1836,7 +1836,7 @@ InputHTMLAttributes.inputMode #### Defined in -node_modules/@types/react/index.d.ts:2021 +node_modules/@types/react/index.d.ts:2025 ___ @@ -1856,7 +1856,7 @@ InputHTMLAttributes.is #### Defined in -node_modules/@types/react/index.d.ts:2026 +node_modules/@types/react/index.d.ts:2030 ___ @@ -1870,7 +1870,7 @@ InputHTMLAttributes.itemID #### Defined in -node_modules/@types/react/index.d.ts:2010 +node_modules/@types/react/index.d.ts:2014 ___ @@ -1884,7 +1884,7 @@ InputHTMLAttributes.itemProp #### Defined in -node_modules/@types/react/index.d.ts:2007 +node_modules/@types/react/index.d.ts:2011 ___ @@ -1898,7 +1898,7 @@ InputHTMLAttributes.itemRef #### Defined in -node_modules/@types/react/index.d.ts:2011 +node_modules/@types/react/index.d.ts:2015 ___ @@ -1912,7 +1912,7 @@ InputHTMLAttributes.itemScope #### Defined in -node_modules/@types/react/index.d.ts:2008 +node_modules/@types/react/index.d.ts:2012 ___ @@ -1926,7 +1926,7 @@ InputHTMLAttributes.itemType #### Defined in -node_modules/@types/react/index.d.ts:2009 +node_modules/@types/react/index.d.ts:2013 ___ @@ -1953,7 +1953,7 @@ InputHTMLAttributes.lang #### Defined in -node_modules/@types/react/index.d.ts:1973 +node_modules/@types/react/index.d.ts:1978 ___ @@ -1967,7 +1967,7 @@ InputHTMLAttributes.list #### Defined in -node_modules/@types/react/index.d.ts:2376 +node_modules/@types/react/index.d.ts:2381 ___ @@ -1981,7 +1981,7 @@ InputHTMLAttributes.max #### Defined in -node_modules/@types/react/index.d.ts:2377 +node_modules/@types/react/index.d.ts:2382 ___ @@ -1995,7 +1995,7 @@ InputHTMLAttributes.maxLength #### Defined in -node_modules/@types/react/index.d.ts:2378 +node_modules/@types/react/index.d.ts:2383 ___ @@ -2009,7 +2009,7 @@ InputHTMLAttributes.min #### Defined in -node_modules/@types/react/index.d.ts:2379 +node_modules/@types/react/index.d.ts:2384 ___ @@ -2023,7 +2023,7 @@ InputHTMLAttributes.minLength #### Defined in -node_modules/@types/react/index.d.ts:2380 +node_modules/@types/react/index.d.ts:2385 ___ @@ -2037,7 +2037,7 @@ InputHTMLAttributes.multiple #### Defined in -node_modules/@types/react/index.d.ts:2381 +node_modules/@types/react/index.d.ts:2386 ___ @@ -2067,7 +2067,7 @@ InputHTMLAttributes.nonce #### Defined in -node_modules/@types/react/index.d.ts:1974 +node_modules/@types/react/index.d.ts:1979 ___ @@ -2081,7 +2081,7 @@ InputHTMLAttributes.onAbort #### Defined in -node_modules/@types/react/index.d.ts:1506 +node_modules/@types/react/index.d.ts:1511 ___ @@ -2095,7 +2095,7 @@ InputHTMLAttributes.onAbortCapture #### Defined in -node_modules/@types/react/index.d.ts:1507 +node_modules/@types/react/index.d.ts:1512 ___ @@ -2109,7 +2109,7 @@ InputHTMLAttributes.onAnimationEnd #### Defined in -node_modules/@types/react/index.d.ts:1638 +node_modules/@types/react/index.d.ts:1643 ___ @@ -2123,7 +2123,7 @@ InputHTMLAttributes.onAnimationEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1639 +node_modules/@types/react/index.d.ts:1644 ___ @@ -2137,7 +2137,7 @@ InputHTMLAttributes.onAnimationIteration #### Defined in -node_modules/@types/react/index.d.ts:1640 +node_modules/@types/react/index.d.ts:1645 ___ @@ -2151,7 +2151,7 @@ InputHTMLAttributes.onAnimationIterationCapture #### Defined in -node_modules/@types/react/index.d.ts:1641 +node_modules/@types/react/index.d.ts:1646 ___ @@ -2165,7 +2165,7 @@ InputHTMLAttributes.onAnimationStart #### Defined in -node_modules/@types/react/index.d.ts:1636 +node_modules/@types/react/index.d.ts:1641 ___ @@ -2179,7 +2179,7 @@ InputHTMLAttributes.onAnimationStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1637 +node_modules/@types/react/index.d.ts:1642 ___ @@ -2193,7 +2193,7 @@ InputHTMLAttributes.onAuxClick #### Defined in -node_modules/@types/react/index.d.ts:1554 +node_modules/@types/react/index.d.ts:1559 ___ @@ -2207,7 +2207,7 @@ InputHTMLAttributes.onAuxClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1555 +node_modules/@types/react/index.d.ts:1560 ___ @@ -2221,7 +2221,7 @@ InputHTMLAttributes.onBeforeInput #### Defined in -node_modules/@types/react/index.d.ts:1478 +node_modules/@types/react/index.d.ts:1483 ___ @@ -2235,7 +2235,7 @@ InputHTMLAttributes.onBeforeInputCapture #### Defined in -node_modules/@types/react/index.d.ts:1479 +node_modules/@types/react/index.d.ts:1484 ___ @@ -2249,7 +2249,7 @@ InputHTMLAttributes.onBlur #### Defined in -node_modules/@types/react/index.d.ts:1472 +node_modules/@types/react/index.d.ts:1477 ___ @@ -2263,7 +2263,7 @@ InputHTMLAttributes.onBlurCapture #### Defined in -node_modules/@types/react/index.d.ts:1473 +node_modules/@types/react/index.d.ts:1478 ___ @@ -2277,7 +2277,7 @@ InputHTMLAttributes.onCanPlay #### Defined in -node_modules/@types/react/index.d.ts:1508 +node_modules/@types/react/index.d.ts:1513 ___ @@ -2291,7 +2291,7 @@ InputHTMLAttributes.onCanPlayCapture #### Defined in -node_modules/@types/react/index.d.ts:1509 +node_modules/@types/react/index.d.ts:1514 ___ @@ -2305,7 +2305,7 @@ InputHTMLAttributes.onCanPlayThrough #### Defined in -node_modules/@types/react/index.d.ts:1510 +node_modules/@types/react/index.d.ts:1515 ___ @@ -2319,7 +2319,7 @@ InputHTMLAttributes.onCanPlayThroughCapture #### Defined in -node_modules/@types/react/index.d.ts:1511 +node_modules/@types/react/index.d.ts:1516 ___ @@ -2333,7 +2333,7 @@ InputHTMLAttributes.onChange #### Defined in -node_modules/@types/react/index.d.ts:2394 +node_modules/@types/react/index.d.ts:2399 ___ @@ -2347,7 +2347,7 @@ InputHTMLAttributes.onChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1477 +node_modules/@types/react/index.d.ts:1482 ___ @@ -2361,7 +2361,7 @@ InputHTMLAttributes.onClick #### Defined in -node_modules/@types/react/index.d.ts:1556 +node_modules/@types/react/index.d.ts:1561 ___ @@ -2375,7 +2375,7 @@ InputHTMLAttributes.onClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1557 +node_modules/@types/react/index.d.ts:1562 ___ @@ -2389,7 +2389,7 @@ InputHTMLAttributes.onCompositionEnd #### Defined in -node_modules/@types/react/index.d.ts:1462 +node_modules/@types/react/index.d.ts:1467 ___ @@ -2403,7 +2403,7 @@ InputHTMLAttributes.onCompositionEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1463 +node_modules/@types/react/index.d.ts:1468 ___ @@ -2417,7 +2417,7 @@ InputHTMLAttributes.onCompositionStart #### Defined in -node_modules/@types/react/index.d.ts:1464 +node_modules/@types/react/index.d.ts:1469 ___ @@ -2431,7 +2431,7 @@ InputHTMLAttributes.onCompositionStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1465 +node_modules/@types/react/index.d.ts:1470 ___ @@ -2445,7 +2445,7 @@ InputHTMLAttributes.onCompositionUpdate #### Defined in -node_modules/@types/react/index.d.ts:1466 +node_modules/@types/react/index.d.ts:1471 ___ @@ -2459,7 +2459,7 @@ InputHTMLAttributes.onCompositionUpdateCapture #### Defined in -node_modules/@types/react/index.d.ts:1467 +node_modules/@types/react/index.d.ts:1472 ___ @@ -2473,7 +2473,7 @@ InputHTMLAttributes.onContextMenu #### Defined in -node_modules/@types/react/index.d.ts:1558 +node_modules/@types/react/index.d.ts:1563 ___ @@ -2487,7 +2487,7 @@ InputHTMLAttributes.onContextMenuCapture #### Defined in -node_modules/@types/react/index.d.ts:1559 +node_modules/@types/react/index.d.ts:1564 ___ @@ -2501,7 +2501,7 @@ InputHTMLAttributes.onCopy #### Defined in -node_modules/@types/react/index.d.ts:1454 +node_modules/@types/react/index.d.ts:1459 ___ @@ -2515,7 +2515,7 @@ InputHTMLAttributes.onCopyCapture #### Defined in -node_modules/@types/react/index.d.ts:1455 +node_modules/@types/react/index.d.ts:1460 ___ @@ -2529,7 +2529,7 @@ InputHTMLAttributes.onCut #### Defined in -node_modules/@types/react/index.d.ts:1456 +node_modules/@types/react/index.d.ts:1461 ___ @@ -2543,7 +2543,7 @@ InputHTMLAttributes.onCutCapture #### Defined in -node_modules/@types/react/index.d.ts:1457 +node_modules/@types/react/index.d.ts:1462 ___ @@ -2557,7 +2557,7 @@ InputHTMLAttributes.onDoubleClick #### Defined in -node_modules/@types/react/index.d.ts:1560 +node_modules/@types/react/index.d.ts:1565 ___ @@ -2571,7 +2571,7 @@ InputHTMLAttributes.onDoubleClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1561 +node_modules/@types/react/index.d.ts:1566 ___ @@ -2585,7 +2585,7 @@ InputHTMLAttributes.onDrag #### Defined in -node_modules/@types/react/index.d.ts:1562 +node_modules/@types/react/index.d.ts:1567 ___ @@ -2599,7 +2599,7 @@ InputHTMLAttributes.onDragCapture #### Defined in -node_modules/@types/react/index.d.ts:1563 +node_modules/@types/react/index.d.ts:1568 ___ @@ -2613,7 +2613,7 @@ InputHTMLAttributes.onDragEnd #### Defined in -node_modules/@types/react/index.d.ts:1564 +node_modules/@types/react/index.d.ts:1569 ___ @@ -2627,7 +2627,7 @@ InputHTMLAttributes.onDragEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1565 +node_modules/@types/react/index.d.ts:1570 ___ @@ -2641,7 +2641,7 @@ InputHTMLAttributes.onDragEnter #### Defined in -node_modules/@types/react/index.d.ts:1566 +node_modules/@types/react/index.d.ts:1571 ___ @@ -2655,7 +2655,7 @@ InputHTMLAttributes.onDragEnterCapture #### Defined in -node_modules/@types/react/index.d.ts:1567 +node_modules/@types/react/index.d.ts:1572 ___ @@ -2669,7 +2669,7 @@ InputHTMLAttributes.onDragExit #### Defined in -node_modules/@types/react/index.d.ts:1568 +node_modules/@types/react/index.d.ts:1573 ___ @@ -2683,7 +2683,7 @@ InputHTMLAttributes.onDragExitCapture #### Defined in -node_modules/@types/react/index.d.ts:1569 +node_modules/@types/react/index.d.ts:1574 ___ @@ -2697,7 +2697,7 @@ InputHTMLAttributes.onDragLeave #### Defined in -node_modules/@types/react/index.d.ts:1570 +node_modules/@types/react/index.d.ts:1575 ___ @@ -2711,7 +2711,7 @@ InputHTMLAttributes.onDragLeaveCapture #### Defined in -node_modules/@types/react/index.d.ts:1571 +node_modules/@types/react/index.d.ts:1576 ___ @@ -2725,7 +2725,7 @@ InputHTMLAttributes.onDragOver #### Defined in -node_modules/@types/react/index.d.ts:1572 +node_modules/@types/react/index.d.ts:1577 ___ @@ -2739,7 +2739,7 @@ InputHTMLAttributes.onDragOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1573 +node_modules/@types/react/index.d.ts:1578 ___ @@ -2753,7 +2753,7 @@ InputHTMLAttributes.onDragStart #### Defined in -node_modules/@types/react/index.d.ts:1574 +node_modules/@types/react/index.d.ts:1579 ___ @@ -2767,7 +2767,7 @@ InputHTMLAttributes.onDragStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1575 +node_modules/@types/react/index.d.ts:1580 ___ @@ -2781,7 +2781,7 @@ InputHTMLAttributes.onDrop #### Defined in -node_modules/@types/react/index.d.ts:1576 +node_modules/@types/react/index.d.ts:1581 ___ @@ -2795,7 +2795,7 @@ InputHTMLAttributes.onDropCapture #### Defined in -node_modules/@types/react/index.d.ts:1577 +node_modules/@types/react/index.d.ts:1582 ___ @@ -2809,7 +2809,7 @@ InputHTMLAttributes.onDurationChange #### Defined in -node_modules/@types/react/index.d.ts:1512 +node_modules/@types/react/index.d.ts:1517 ___ @@ -2823,7 +2823,7 @@ InputHTMLAttributes.onDurationChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1513 +node_modules/@types/react/index.d.ts:1518 ___ @@ -2837,7 +2837,7 @@ InputHTMLAttributes.onEmptied #### Defined in -node_modules/@types/react/index.d.ts:1514 +node_modules/@types/react/index.d.ts:1519 ___ @@ -2851,7 +2851,7 @@ InputHTMLAttributes.onEmptiedCapture #### Defined in -node_modules/@types/react/index.d.ts:1515 +node_modules/@types/react/index.d.ts:1520 ___ @@ -2865,7 +2865,7 @@ InputHTMLAttributes.onEncrypted #### Defined in -node_modules/@types/react/index.d.ts:1516 +node_modules/@types/react/index.d.ts:1521 ___ @@ -2879,7 +2879,7 @@ InputHTMLAttributes.onEncryptedCapture #### Defined in -node_modules/@types/react/index.d.ts:1517 +node_modules/@types/react/index.d.ts:1522 ___ @@ -2893,7 +2893,7 @@ InputHTMLAttributes.onEnded #### Defined in -node_modules/@types/react/index.d.ts:1518 +node_modules/@types/react/index.d.ts:1523 ___ @@ -2907,7 +2907,7 @@ InputHTMLAttributes.onEndedCapture #### Defined in -node_modules/@types/react/index.d.ts:1519 +node_modules/@types/react/index.d.ts:1524 ___ @@ -2921,7 +2921,7 @@ InputHTMLAttributes.onError #### Defined in -node_modules/@types/react/index.d.ts:1492 +node_modules/@types/react/index.d.ts:1497 ___ @@ -2935,7 +2935,7 @@ InputHTMLAttributes.onErrorCapture #### Defined in -node_modules/@types/react/index.d.ts:1493 +node_modules/@types/react/index.d.ts:1498 ___ @@ -2949,7 +2949,7 @@ InputHTMLAttributes.onFocus #### Defined in -node_modules/@types/react/index.d.ts:1470 +node_modules/@types/react/index.d.ts:1475 ___ @@ -2963,7 +2963,7 @@ InputHTMLAttributes.onFocusCapture #### Defined in -node_modules/@types/react/index.d.ts:1471 +node_modules/@types/react/index.d.ts:1476 ___ @@ -2977,7 +2977,7 @@ InputHTMLAttributes.onGotPointerCapture #### Defined in -node_modules/@types/react/index.d.ts:1622 +node_modules/@types/react/index.d.ts:1627 ___ @@ -2991,7 +2991,7 @@ InputHTMLAttributes.onGotPointerCaptureCapture #### Defined in -node_modules/@types/react/index.d.ts:1623 +node_modules/@types/react/index.d.ts:1628 ___ @@ -3005,7 +3005,7 @@ InputHTMLAttributes.onInput #### Defined in -node_modules/@types/react/index.d.ts:1480 +node_modules/@types/react/index.d.ts:1485 ___ @@ -3019,7 +3019,7 @@ InputHTMLAttributes.onInputCapture #### Defined in -node_modules/@types/react/index.d.ts:1481 +node_modules/@types/react/index.d.ts:1486 ___ @@ -3033,7 +3033,7 @@ InputHTMLAttributes.onInvalid #### Defined in -node_modules/@types/react/index.d.ts:1486 +node_modules/@types/react/index.d.ts:1491 ___ @@ -3047,7 +3047,7 @@ InputHTMLAttributes.onInvalidCapture #### Defined in -node_modules/@types/react/index.d.ts:1487 +node_modules/@types/react/index.d.ts:1492 ___ @@ -3061,7 +3061,7 @@ InputHTMLAttributes.onKeyDown #### Defined in -node_modules/@types/react/index.d.ts:1496 +node_modules/@types/react/index.d.ts:1501 ___ @@ -3075,7 +3075,7 @@ InputHTMLAttributes.onKeyDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1497 +node_modules/@types/react/index.d.ts:1502 ___ @@ -3091,7 +3091,7 @@ InputHTMLAttributes.onKeyPress #### Defined in -node_modules/@types/react/index.d.ts:1499 +node_modules/@types/react/index.d.ts:1504 ___ @@ -3107,7 +3107,7 @@ InputHTMLAttributes.onKeyPressCapture #### Defined in -node_modules/@types/react/index.d.ts:1501 +node_modules/@types/react/index.d.ts:1506 ___ @@ -3121,7 +3121,7 @@ InputHTMLAttributes.onKeyUp #### Defined in -node_modules/@types/react/index.d.ts:1502 +node_modules/@types/react/index.d.ts:1507 ___ @@ -3135,7 +3135,7 @@ InputHTMLAttributes.onKeyUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1503 +node_modules/@types/react/index.d.ts:1508 ___ @@ -3149,7 +3149,7 @@ InputHTMLAttributes.onLoad #### Defined in -node_modules/@types/react/index.d.ts:1490 +node_modules/@types/react/index.d.ts:1495 ___ @@ -3163,7 +3163,7 @@ InputHTMLAttributes.onLoadCapture #### Defined in -node_modules/@types/react/index.d.ts:1491 +node_modules/@types/react/index.d.ts:1496 ___ @@ -3177,7 +3177,7 @@ InputHTMLAttributes.onLoadStart #### Defined in -node_modules/@types/react/index.d.ts:1524 +node_modules/@types/react/index.d.ts:1529 ___ @@ -3191,7 +3191,7 @@ InputHTMLAttributes.onLoadStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1525 +node_modules/@types/react/index.d.ts:1530 ___ @@ -3205,7 +3205,7 @@ InputHTMLAttributes.onLoadedData #### Defined in -node_modules/@types/react/index.d.ts:1520 +node_modules/@types/react/index.d.ts:1525 ___ @@ -3219,7 +3219,7 @@ InputHTMLAttributes.onLoadedDataCapture #### Defined in -node_modules/@types/react/index.d.ts:1521 +node_modules/@types/react/index.d.ts:1526 ___ @@ -3233,7 +3233,7 @@ InputHTMLAttributes.onLoadedMetadata #### Defined in -node_modules/@types/react/index.d.ts:1522 +node_modules/@types/react/index.d.ts:1527 ___ @@ -3247,7 +3247,7 @@ InputHTMLAttributes.onLoadedMetadataCapture #### Defined in -node_modules/@types/react/index.d.ts:1523 +node_modules/@types/react/index.d.ts:1528 ___ @@ -3261,7 +3261,7 @@ InputHTMLAttributes.onLostPointerCapture #### Defined in -node_modules/@types/react/index.d.ts:1624 +node_modules/@types/react/index.d.ts:1629 ___ @@ -3275,7 +3275,7 @@ InputHTMLAttributes.onLostPointerCaptureCapture #### Defined in -node_modules/@types/react/index.d.ts:1625 +node_modules/@types/react/index.d.ts:1630 ___ @@ -3289,7 +3289,7 @@ InputHTMLAttributes.onMouseDown #### Defined in -node_modules/@types/react/index.d.ts:1578 +node_modules/@types/react/index.d.ts:1583 ___ @@ -3303,7 +3303,7 @@ InputHTMLAttributes.onMouseDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1579 +node_modules/@types/react/index.d.ts:1584 ___ @@ -3317,7 +3317,7 @@ InputHTMLAttributes.onMouseEnter #### Defined in -node_modules/@types/react/index.d.ts:1580 +node_modules/@types/react/index.d.ts:1585 ___ @@ -3331,7 +3331,7 @@ InputHTMLAttributes.onMouseLeave #### Defined in -node_modules/@types/react/index.d.ts:1581 +node_modules/@types/react/index.d.ts:1586 ___ @@ -3345,7 +3345,7 @@ InputHTMLAttributes.onMouseMove #### Defined in -node_modules/@types/react/index.d.ts:1582 +node_modules/@types/react/index.d.ts:1587 ___ @@ -3359,7 +3359,7 @@ InputHTMLAttributes.onMouseMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1583 +node_modules/@types/react/index.d.ts:1588 ___ @@ -3373,7 +3373,7 @@ InputHTMLAttributes.onMouseOut #### Defined in -node_modules/@types/react/index.d.ts:1584 +node_modules/@types/react/index.d.ts:1589 ___ @@ -3387,7 +3387,7 @@ InputHTMLAttributes.onMouseOutCapture #### Defined in -node_modules/@types/react/index.d.ts:1585 +node_modules/@types/react/index.d.ts:1590 ___ @@ -3401,7 +3401,7 @@ InputHTMLAttributes.onMouseOver #### Defined in -node_modules/@types/react/index.d.ts:1586 +node_modules/@types/react/index.d.ts:1591 ___ @@ -3415,7 +3415,7 @@ InputHTMLAttributes.onMouseOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1587 +node_modules/@types/react/index.d.ts:1592 ___ @@ -3429,7 +3429,7 @@ InputHTMLAttributes.onMouseUp #### Defined in -node_modules/@types/react/index.d.ts:1588 +node_modules/@types/react/index.d.ts:1593 ___ @@ -3443,7 +3443,7 @@ InputHTMLAttributes.onMouseUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1589 +node_modules/@types/react/index.d.ts:1594 ___ @@ -3457,7 +3457,7 @@ InputHTMLAttributes.onPaste #### Defined in -node_modules/@types/react/index.d.ts:1458 +node_modules/@types/react/index.d.ts:1463 ___ @@ -3471,7 +3471,7 @@ InputHTMLAttributes.onPasteCapture #### Defined in -node_modules/@types/react/index.d.ts:1459 +node_modules/@types/react/index.d.ts:1464 ___ @@ -3485,7 +3485,7 @@ InputHTMLAttributes.onPause #### Defined in -node_modules/@types/react/index.d.ts:1526 +node_modules/@types/react/index.d.ts:1531 ___ @@ -3499,7 +3499,7 @@ InputHTMLAttributes.onPauseCapture #### Defined in -node_modules/@types/react/index.d.ts:1527 +node_modules/@types/react/index.d.ts:1532 ___ @@ -3513,7 +3513,7 @@ InputHTMLAttributes.onPlay #### Defined in -node_modules/@types/react/index.d.ts:1528 +node_modules/@types/react/index.d.ts:1533 ___ @@ -3527,7 +3527,7 @@ InputHTMLAttributes.onPlayCapture #### Defined in -node_modules/@types/react/index.d.ts:1529 +node_modules/@types/react/index.d.ts:1534 ___ @@ -3541,7 +3541,7 @@ InputHTMLAttributes.onPlaying #### Defined in -node_modules/@types/react/index.d.ts:1530 +node_modules/@types/react/index.d.ts:1535 ___ @@ -3555,7 +3555,7 @@ InputHTMLAttributes.onPlayingCapture #### Defined in -node_modules/@types/react/index.d.ts:1531 +node_modules/@types/react/index.d.ts:1536 ___ @@ -3569,7 +3569,7 @@ InputHTMLAttributes.onPointerCancel #### Defined in -node_modules/@types/react/index.d.ts:1612 +node_modules/@types/react/index.d.ts:1617 ___ @@ -3583,7 +3583,7 @@ InputHTMLAttributes.onPointerCancelCapture #### Defined in -node_modules/@types/react/index.d.ts:1613 +node_modules/@types/react/index.d.ts:1618 ___ @@ -3597,7 +3597,7 @@ InputHTMLAttributes.onPointerDown #### Defined in -node_modules/@types/react/index.d.ts:1606 +node_modules/@types/react/index.d.ts:1611 ___ @@ -3611,7 +3611,7 @@ InputHTMLAttributes.onPointerDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1607 +node_modules/@types/react/index.d.ts:1612 ___ @@ -3625,7 +3625,7 @@ InputHTMLAttributes.onPointerEnter #### Defined in -node_modules/@types/react/index.d.ts:1614 +node_modules/@types/react/index.d.ts:1619 ___ @@ -3639,7 +3639,7 @@ InputHTMLAttributes.onPointerEnterCapture #### Defined in -node_modules/@types/react/index.d.ts:1615 +node_modules/@types/react/index.d.ts:1620 ___ @@ -3653,7 +3653,7 @@ InputHTMLAttributes.onPointerLeave #### Defined in -node_modules/@types/react/index.d.ts:1616 +node_modules/@types/react/index.d.ts:1621 ___ @@ -3667,7 +3667,7 @@ InputHTMLAttributes.onPointerLeaveCapture #### Defined in -node_modules/@types/react/index.d.ts:1617 +node_modules/@types/react/index.d.ts:1622 ___ @@ -3681,7 +3681,7 @@ InputHTMLAttributes.onPointerMove #### Defined in -node_modules/@types/react/index.d.ts:1608 +node_modules/@types/react/index.d.ts:1613 ___ @@ -3695,7 +3695,7 @@ InputHTMLAttributes.onPointerMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1609 +node_modules/@types/react/index.d.ts:1614 ___ @@ -3709,7 +3709,7 @@ InputHTMLAttributes.onPointerOut #### Defined in -node_modules/@types/react/index.d.ts:1620 +node_modules/@types/react/index.d.ts:1625 ___ @@ -3723,7 +3723,7 @@ InputHTMLAttributes.onPointerOutCapture #### Defined in -node_modules/@types/react/index.d.ts:1621 +node_modules/@types/react/index.d.ts:1626 ___ @@ -3737,7 +3737,7 @@ InputHTMLAttributes.onPointerOver #### Defined in -node_modules/@types/react/index.d.ts:1618 +node_modules/@types/react/index.d.ts:1623 ___ @@ -3751,7 +3751,7 @@ InputHTMLAttributes.onPointerOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1619 +node_modules/@types/react/index.d.ts:1624 ___ @@ -3765,7 +3765,7 @@ InputHTMLAttributes.onPointerUp #### Defined in -node_modules/@types/react/index.d.ts:1610 +node_modules/@types/react/index.d.ts:1615 ___ @@ -3779,7 +3779,7 @@ InputHTMLAttributes.onPointerUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1611 +node_modules/@types/react/index.d.ts:1616 ___ @@ -3793,7 +3793,7 @@ InputHTMLAttributes.onProgress #### Defined in -node_modules/@types/react/index.d.ts:1532 +node_modules/@types/react/index.d.ts:1537 ___ @@ -3807,7 +3807,7 @@ InputHTMLAttributes.onProgressCapture #### Defined in -node_modules/@types/react/index.d.ts:1533 +node_modules/@types/react/index.d.ts:1538 ___ @@ -3821,7 +3821,7 @@ InputHTMLAttributes.onRateChange #### Defined in -node_modules/@types/react/index.d.ts:1534 +node_modules/@types/react/index.d.ts:1539 ___ @@ -3835,7 +3835,7 @@ InputHTMLAttributes.onRateChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1535 +node_modules/@types/react/index.d.ts:1540 ___ @@ -3849,7 +3849,7 @@ InputHTMLAttributes.onReset #### Defined in -node_modules/@types/react/index.d.ts:1482 +node_modules/@types/react/index.d.ts:1487 ___ @@ -3863,7 +3863,7 @@ InputHTMLAttributes.onResetCapture #### Defined in -node_modules/@types/react/index.d.ts:1483 +node_modules/@types/react/index.d.ts:1488 ___ @@ -3877,7 +3877,7 @@ InputHTMLAttributes.onResize #### Defined in -node_modules/@types/react/index.d.ts:1536 +node_modules/@types/react/index.d.ts:1541 ___ @@ -3891,7 +3891,7 @@ InputHTMLAttributes.onResizeCapture #### Defined in -node_modules/@types/react/index.d.ts:1537 +node_modules/@types/react/index.d.ts:1542 ___ @@ -3905,7 +3905,7 @@ InputHTMLAttributes.onScroll #### Defined in -node_modules/@types/react/index.d.ts:1628 +node_modules/@types/react/index.d.ts:1633 ___ @@ -3919,7 +3919,7 @@ InputHTMLAttributes.onScrollCapture #### Defined in -node_modules/@types/react/index.d.ts:1629 +node_modules/@types/react/index.d.ts:1634 ___ @@ -3933,7 +3933,7 @@ InputHTMLAttributes.onSeeked #### Defined in -node_modules/@types/react/index.d.ts:1538 +node_modules/@types/react/index.d.ts:1543 ___ @@ -3947,7 +3947,7 @@ InputHTMLAttributes.onSeekedCapture #### Defined in -node_modules/@types/react/index.d.ts:1539 +node_modules/@types/react/index.d.ts:1544 ___ @@ -3961,7 +3961,7 @@ InputHTMLAttributes.onSeeking #### Defined in -node_modules/@types/react/index.d.ts:1540 +node_modules/@types/react/index.d.ts:1545 ___ @@ -3975,7 +3975,7 @@ InputHTMLAttributes.onSeekingCapture #### Defined in -node_modules/@types/react/index.d.ts:1541 +node_modules/@types/react/index.d.ts:1546 ___ @@ -3989,7 +3989,7 @@ InputHTMLAttributes.onSelect #### Defined in -node_modules/@types/react/index.d.ts:1592 +node_modules/@types/react/index.d.ts:1597 ___ @@ -4003,7 +4003,7 @@ InputHTMLAttributes.onSelectCapture #### Defined in -node_modules/@types/react/index.d.ts:1593 +node_modules/@types/react/index.d.ts:1598 ___ @@ -4017,7 +4017,7 @@ InputHTMLAttributes.onStalled #### Defined in -node_modules/@types/react/index.d.ts:1542 +node_modules/@types/react/index.d.ts:1547 ___ @@ -4031,7 +4031,7 @@ InputHTMLAttributes.onStalledCapture #### Defined in -node_modules/@types/react/index.d.ts:1543 +node_modules/@types/react/index.d.ts:1548 ___ @@ -4045,7 +4045,7 @@ InputHTMLAttributes.onSubmit #### Defined in -node_modules/@types/react/index.d.ts:1484 +node_modules/@types/react/index.d.ts:1489 ___ @@ -4059,7 +4059,7 @@ InputHTMLAttributes.onSubmitCapture #### Defined in -node_modules/@types/react/index.d.ts:1485 +node_modules/@types/react/index.d.ts:1490 ___ @@ -4073,7 +4073,7 @@ InputHTMLAttributes.onSuspend #### Defined in -node_modules/@types/react/index.d.ts:1544 +node_modules/@types/react/index.d.ts:1549 ___ @@ -4087,7 +4087,7 @@ InputHTMLAttributes.onSuspendCapture #### Defined in -node_modules/@types/react/index.d.ts:1545 +node_modules/@types/react/index.d.ts:1550 ___ @@ -4101,7 +4101,7 @@ InputHTMLAttributes.onTimeUpdate #### Defined in -node_modules/@types/react/index.d.ts:1546 +node_modules/@types/react/index.d.ts:1551 ___ @@ -4115,7 +4115,7 @@ InputHTMLAttributes.onTimeUpdateCapture #### Defined in -node_modules/@types/react/index.d.ts:1547 +node_modules/@types/react/index.d.ts:1552 ___ @@ -4129,7 +4129,7 @@ InputHTMLAttributes.onTouchCancel #### Defined in -node_modules/@types/react/index.d.ts:1596 +node_modules/@types/react/index.d.ts:1601 ___ @@ -4143,7 +4143,7 @@ InputHTMLAttributes.onTouchCancelCapture #### Defined in -node_modules/@types/react/index.d.ts:1597 +node_modules/@types/react/index.d.ts:1602 ___ @@ -4157,7 +4157,7 @@ InputHTMLAttributes.onTouchEnd #### Defined in -node_modules/@types/react/index.d.ts:1598 +node_modules/@types/react/index.d.ts:1603 ___ @@ -4171,7 +4171,7 @@ InputHTMLAttributes.onTouchEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1599 +node_modules/@types/react/index.d.ts:1604 ___ @@ -4185,7 +4185,7 @@ InputHTMLAttributes.onTouchMove #### Defined in -node_modules/@types/react/index.d.ts:1600 +node_modules/@types/react/index.d.ts:1605 ___ @@ -4199,7 +4199,7 @@ InputHTMLAttributes.onTouchMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1601 +node_modules/@types/react/index.d.ts:1606 ___ @@ -4213,7 +4213,7 @@ InputHTMLAttributes.onTouchStart #### Defined in -node_modules/@types/react/index.d.ts:1602 +node_modules/@types/react/index.d.ts:1607 ___ @@ -4227,7 +4227,7 @@ InputHTMLAttributes.onTouchStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1603 +node_modules/@types/react/index.d.ts:1608 ___ @@ -4241,7 +4241,7 @@ InputHTMLAttributes.onTransitionEnd #### Defined in -node_modules/@types/react/index.d.ts:1644 +node_modules/@types/react/index.d.ts:1649 ___ @@ -4255,7 +4255,7 @@ InputHTMLAttributes.onTransitionEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1645 +node_modules/@types/react/index.d.ts:1650 ___ @@ -4269,7 +4269,7 @@ InputHTMLAttributes.onVolumeChange #### Defined in -node_modules/@types/react/index.d.ts:1548 +node_modules/@types/react/index.d.ts:1553 ___ @@ -4283,7 +4283,7 @@ InputHTMLAttributes.onVolumeChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1549 +node_modules/@types/react/index.d.ts:1554 ___ @@ -4297,7 +4297,7 @@ InputHTMLAttributes.onWaiting #### Defined in -node_modules/@types/react/index.d.ts:1550 +node_modules/@types/react/index.d.ts:1555 ___ @@ -4311,7 +4311,7 @@ InputHTMLAttributes.onWaitingCapture #### Defined in -node_modules/@types/react/index.d.ts:1551 +node_modules/@types/react/index.d.ts:1556 ___ @@ -4325,7 +4325,7 @@ InputHTMLAttributes.onWheel #### Defined in -node_modules/@types/react/index.d.ts:1632 +node_modules/@types/react/index.d.ts:1637 ___ @@ -4339,7 +4339,7 @@ InputHTMLAttributes.onWheelCapture #### Defined in -node_modules/@types/react/index.d.ts:1633 +node_modules/@types/react/index.d.ts:1638 ___ @@ -4353,7 +4353,7 @@ InputHTMLAttributes.pattern #### Defined in -node_modules/@types/react/index.d.ts:2383 +node_modules/@types/react/index.d.ts:2388 ___ @@ -4367,7 +4367,7 @@ InputHTMLAttributes.placeholder #### Defined in -node_modules/@types/react/index.d.ts:2384 +node_modules/@types/react/index.d.ts:2389 ___ @@ -4381,7 +4381,7 @@ InputHTMLAttributes.prefix #### Defined in -node_modules/@types/react/index.d.ts:1994 +node_modules/@types/react/index.d.ts:1998 ___ @@ -4395,7 +4395,7 @@ InputHTMLAttributes.property #### Defined in -node_modules/@types/react/index.d.ts:1995 +node_modules/@types/react/index.d.ts:1999 ___ @@ -4409,7 +4409,7 @@ InputHTMLAttributes.radioGroup #### Defined in -node_modules/@types/react/index.d.ts:1984 +node_modules/@types/react/index.d.ts:1988 ___ @@ -4423,7 +4423,7 @@ InputHTMLAttributes.readOnly #### Defined in -node_modules/@types/react/index.d.ts:2385 +node_modules/@types/react/index.d.ts:2390 ___ @@ -4437,7 +4437,7 @@ InputHTMLAttributes.rel #### Defined in -node_modules/@types/react/index.d.ts:1996 +node_modules/@types/react/index.d.ts:2000 ___ @@ -4451,7 +4451,7 @@ InputHTMLAttributes.required #### Defined in -node_modules/@types/react/index.d.ts:2386 +node_modules/@types/react/index.d.ts:2391 ___ @@ -4483,7 +4483,7 @@ InputHTMLAttributes.resource #### Defined in -node_modules/@types/react/index.d.ts:1997 +node_modules/@types/react/index.d.ts:2001 ___ @@ -4497,7 +4497,7 @@ InputHTMLAttributes.results #### Defined in -node_modules/@types/react/index.d.ts:2012 +node_modules/@types/react/index.d.ts:2016 ___ @@ -4511,7 +4511,7 @@ InputHTMLAttributes.rev #### Defined in -node_modules/@types/react/index.d.ts:1998 +node_modules/@types/react/index.d.ts:2002 ___ @@ -4525,7 +4525,7 @@ InputHTMLAttributes.role #### Defined in -node_modules/@types/react/index.d.ts:1987 +node_modules/@types/react/index.d.ts:1991 ___ @@ -4539,7 +4539,7 @@ InputHTMLAttributes.security #### Defined in -node_modules/@types/react/index.d.ts:2013 +node_modules/@types/react/index.d.ts:2017 ___ @@ -4553,7 +4553,7 @@ InputHTMLAttributes.size #### Defined in -node_modules/@types/react/index.d.ts:2387 +node_modules/@types/react/index.d.ts:2392 ___ @@ -4567,7 +4567,7 @@ InputHTMLAttributes.slot #### Defined in -node_modules/@types/react/index.d.ts:1976 +node_modules/@types/react/index.d.ts:1980 ___ @@ -4581,7 +4581,7 @@ InputHTMLAttributes.spellCheck #### Defined in -node_modules/@types/react/index.d.ts:1977 +node_modules/@types/react/index.d.ts:1981 ___ @@ -4595,7 +4595,7 @@ InputHTMLAttributes.src #### Defined in -node_modules/@types/react/index.d.ts:2388 +node_modules/@types/react/index.d.ts:2393 ___ @@ -4609,7 +4609,7 @@ InputHTMLAttributes.step #### Defined in -node_modules/@types/react/index.d.ts:2389 +node_modules/@types/react/index.d.ts:2394 ___ @@ -4623,7 +4623,7 @@ InputHTMLAttributes.style #### Defined in -node_modules/@types/react/index.d.ts:1978 +node_modules/@types/react/index.d.ts:1982 ___ @@ -4637,7 +4637,7 @@ InputHTMLAttributes.suppressContentEditableWarning #### Defined in -node_modules/@types/react/index.d.ts:1960 +node_modules/@types/react/index.d.ts:1965 ___ @@ -4651,7 +4651,7 @@ InputHTMLAttributes.suppressHydrationWarning #### Defined in -node_modules/@types/react/index.d.ts:1961 +node_modules/@types/react/index.d.ts:1966 ___ @@ -4665,7 +4665,7 @@ InputHTMLAttributes.tabIndex #### Defined in -node_modules/@types/react/index.d.ts:1979 +node_modules/@types/react/index.d.ts:1983 ___ @@ -4679,7 +4679,7 @@ InputHTMLAttributes.title #### Defined in -node_modules/@types/react/index.d.ts:1980 +node_modules/@types/react/index.d.ts:1984 ___ @@ -4693,7 +4693,7 @@ InputHTMLAttributes.translate #### Defined in -node_modules/@types/react/index.d.ts:1981 +node_modules/@types/react/index.d.ts:1985 ___ @@ -4707,7 +4707,7 @@ InputHTMLAttributes.type #### Defined in -node_modules/@types/react/index.d.ts:2390 +node_modules/@types/react/index.d.ts:2395 ___ @@ -4721,7 +4721,7 @@ InputHTMLAttributes.typeof #### Defined in -node_modules/@types/react/index.d.ts:1999 +node_modules/@types/react/index.d.ts:2003 ___ @@ -4735,7 +4735,7 @@ InputHTMLAttributes.unselectable #### Defined in -node_modules/@types/react/index.d.ts:2014 +node_modules/@types/react/index.d.ts:2018 ___ @@ -4749,7 +4749,7 @@ InputHTMLAttributes.value #### Defined in -node_modules/@types/react/index.d.ts:2391 +node_modules/@types/react/index.d.ts:2396 ___ @@ -4763,7 +4763,7 @@ InputHTMLAttributes.vocab #### Defined in -node_modules/@types/react/index.d.ts:2000 +node_modules/@types/react/index.d.ts:2004 ___ @@ -4777,4 +4777,4 @@ InputHTMLAttributes.width #### Defined in -node_modules/@types/react/index.d.ts:2392 +node_modules/@types/react/index.d.ts:2397 diff --git a/packages/web/docs/interfaces/SelectProps.md b/packages/web/docs/interfaces/SelectProps.md index 68bb8f7..d68e1df 100644 --- a/packages/web/docs/interfaces/SelectProps.md +++ b/packages/web/docs/interfaces/SelectProps.md @@ -272,7 +272,6 @@ HTMLSelectElement attributes. - [onWheel](SelectProps.md#onwheel) - [onWheelCapture](SelectProps.md#onwheelcapture) - [options](SelectProps.md#options) -- [placeholder](SelectProps.md#placeholder) - [prefix](SelectProps.md#prefix) - [property](SelectProps.md#property) - [radioGroup](SelectProps.md#radiogroup) @@ -309,7 +308,7 @@ HTMLAttributes.about #### Defined in -node_modules/@types/react/index.d.ts:1990 +node_modules/@types/react/index.d.ts:1994 ___ @@ -323,7 +322,7 @@ HTMLAttributes.accessKey #### Defined in -node_modules/@types/react/index.d.ts:1964 +node_modules/@types/react/index.d.ts:1969 ___ @@ -339,7 +338,7 @@ HTMLAttributes.aria-activedescendant #### Defined in -node_modules/@types/react/index.d.ts:1662 +node_modules/@types/react/index.d.ts:1667 ___ @@ -355,7 +354,7 @@ HTMLAttributes.aria-atomic #### Defined in -node_modules/@types/react/index.d.ts:1664 +node_modules/@types/react/index.d.ts:1669 ___ @@ -372,7 +371,7 @@ HTMLAttributes.aria-autocomplete #### Defined in -node_modules/@types/react/index.d.ts:1669 +node_modules/@types/react/index.d.ts:1674 ___ @@ -392,7 +391,7 @@ HTMLAttributes.aria-braillelabel #### Defined in -node_modules/@types/react/index.d.ts:1675 +node_modules/@types/react/index.d.ts:1680 ___ @@ -412,7 +411,7 @@ HTMLAttributes.aria-brailleroledescription #### Defined in -node_modules/@types/react/index.d.ts:1680 +node_modules/@types/react/index.d.ts:1685 ___ @@ -426,7 +425,7 @@ HTMLAttributes.aria-busy #### Defined in -node_modules/@types/react/index.d.ts:1681 +node_modules/@types/react/index.d.ts:1686 ___ @@ -447,7 +446,7 @@ HTMLAttributes.aria-checked #### Defined in -node_modules/@types/react/index.d.ts:1686 +node_modules/@types/react/index.d.ts:1691 ___ @@ -467,7 +466,7 @@ HTMLAttributes.aria-colcount #### Defined in -node_modules/@types/react/index.d.ts:1691 +node_modules/@types/react/index.d.ts:1696 ___ @@ -488,7 +487,7 @@ HTMLAttributes.aria-colindex #### Defined in -node_modules/@types/react/index.d.ts:1696 +node_modules/@types/react/index.d.ts:1701 ___ @@ -508,7 +507,7 @@ HTMLAttributes.aria-colindextext #### Defined in -node_modules/@types/react/index.d.ts:1701 +node_modules/@types/react/index.d.ts:1706 ___ @@ -529,7 +528,7 @@ HTMLAttributes.aria-colspan #### Defined in -node_modules/@types/react/index.d.ts:1706 +node_modules/@types/react/index.d.ts:1711 ___ @@ -549,7 +548,7 @@ HTMLAttributes.aria-controls #### Defined in -node_modules/@types/react/index.d.ts:1711 +node_modules/@types/react/index.d.ts:1716 ___ @@ -565,7 +564,7 @@ HTMLAttributes.aria-current #### Defined in -node_modules/@types/react/index.d.ts:1713 +node_modules/@types/react/index.d.ts:1718 ___ @@ -585,7 +584,7 @@ HTMLAttributes.aria-describedby #### Defined in -node_modules/@types/react/index.d.ts:1718 +node_modules/@types/react/index.d.ts:1723 ___ @@ -605,7 +604,7 @@ HTMLAttributes.aria-description #### Defined in -node_modules/@types/react/index.d.ts:1723 +node_modules/@types/react/index.d.ts:1728 ___ @@ -625,7 +624,7 @@ HTMLAttributes.aria-details #### Defined in -node_modules/@types/react/index.d.ts:1728 +node_modules/@types/react/index.d.ts:1733 ___ @@ -646,7 +645,7 @@ HTMLAttributes.aria-disabled #### Defined in -node_modules/@types/react/index.d.ts:1733 +node_modules/@types/react/index.d.ts:1738 ___ @@ -666,7 +665,7 @@ HTMLAttributes.aria-dropeffect #### Defined in -node_modules/@types/react/index.d.ts:1738 +node_modules/@types/react/index.d.ts:1743 ___ @@ -687,7 +686,7 @@ HTMLAttributes.aria-errormessage #### Defined in -node_modules/@types/react/index.d.ts:1743 +node_modules/@types/react/index.d.ts:1748 ___ @@ -703,7 +702,7 @@ HTMLAttributes.aria-expanded #### Defined in -node_modules/@types/react/index.d.ts:1745 +node_modules/@types/react/index.d.ts:1750 ___ @@ -720,7 +719,7 @@ HTMLAttributes.aria-flowto #### Defined in -node_modules/@types/react/index.d.ts:1750 +node_modules/@types/react/index.d.ts:1755 ___ @@ -740,7 +739,7 @@ HTMLAttributes.aria-grabbed #### Defined in -node_modules/@types/react/index.d.ts:1755 +node_modules/@types/react/index.d.ts:1760 ___ @@ -756,7 +755,7 @@ HTMLAttributes.aria-haspopup #### Defined in -node_modules/@types/react/index.d.ts:1757 +node_modules/@types/react/index.d.ts:1762 ___ @@ -776,7 +775,7 @@ HTMLAttributes.aria-hidden #### Defined in -node_modules/@types/react/index.d.ts:1762 +node_modules/@types/react/index.d.ts:1767 ___ @@ -796,7 +795,7 @@ HTMLAttributes.aria-invalid #### Defined in -node_modules/@types/react/index.d.ts:1767 +node_modules/@types/react/index.d.ts:1772 ___ @@ -812,7 +811,7 @@ HTMLAttributes.aria-keyshortcuts #### Defined in -node_modules/@types/react/index.d.ts:1769 +node_modules/@types/react/index.d.ts:1774 ___ @@ -832,7 +831,7 @@ HTMLAttributes.aria-label #### Defined in -node_modules/@types/react/index.d.ts:1774 +node_modules/@types/react/index.d.ts:1779 ___ @@ -852,7 +851,7 @@ HTMLAttributes.aria-labelledby #### Defined in -node_modules/@types/react/index.d.ts:1779 +node_modules/@types/react/index.d.ts:1784 ___ @@ -868,7 +867,7 @@ HTMLAttributes.aria-level #### Defined in -node_modules/@types/react/index.d.ts:1781 +node_modules/@types/react/index.d.ts:1786 ___ @@ -884,7 +883,7 @@ HTMLAttributes.aria-live #### Defined in -node_modules/@types/react/index.d.ts:1783 +node_modules/@types/react/index.d.ts:1788 ___ @@ -900,7 +899,7 @@ HTMLAttributes.aria-modal #### Defined in -node_modules/@types/react/index.d.ts:1785 +node_modules/@types/react/index.d.ts:1790 ___ @@ -916,7 +915,7 @@ HTMLAttributes.aria-multiline #### Defined in -node_modules/@types/react/index.d.ts:1787 +node_modules/@types/react/index.d.ts:1792 ___ @@ -932,7 +931,7 @@ HTMLAttributes.aria-multiselectable #### Defined in -node_modules/@types/react/index.d.ts:1789 +node_modules/@types/react/index.d.ts:1794 ___ @@ -948,7 +947,7 @@ HTMLAttributes.aria-orientation #### Defined in -node_modules/@types/react/index.d.ts:1791 +node_modules/@types/react/index.d.ts:1796 ___ @@ -969,7 +968,7 @@ HTMLAttributes.aria-owns #### Defined in -node_modules/@types/react/index.d.ts:1797 +node_modules/@types/react/index.d.ts:1802 ___ @@ -986,7 +985,7 @@ HTMLAttributes.aria-placeholder #### Defined in -node_modules/@types/react/index.d.ts:1802 +node_modules/@types/react/index.d.ts:1807 ___ @@ -1006,7 +1005,7 @@ HTMLAttributes.aria-posinset #### Defined in -node_modules/@types/react/index.d.ts:1807 +node_modules/@types/react/index.d.ts:1812 ___ @@ -1027,7 +1026,7 @@ HTMLAttributes.aria-pressed #### Defined in -node_modules/@types/react/index.d.ts:1812 +node_modules/@types/react/index.d.ts:1817 ___ @@ -1047,7 +1046,7 @@ HTMLAttributes.aria-readonly #### Defined in -node_modules/@types/react/index.d.ts:1817 +node_modules/@types/react/index.d.ts:1822 ___ @@ -1067,7 +1066,7 @@ HTMLAttributes.aria-relevant #### Defined in -node_modules/@types/react/index.d.ts:1822 +node_modules/@types/react/index.d.ts:1827 ___ @@ -1083,7 +1082,7 @@ HTMLAttributes.aria-required #### Defined in -node_modules/@types/react/index.d.ts:1835 +node_modules/@types/react/index.d.ts:1840 ___ @@ -1099,7 +1098,7 @@ HTMLAttributes.aria-roledescription #### Defined in -node_modules/@types/react/index.d.ts:1837 +node_modules/@types/react/index.d.ts:1842 ___ @@ -1119,7 +1118,7 @@ HTMLAttributes.aria-rowcount #### Defined in -node_modules/@types/react/index.d.ts:1842 +node_modules/@types/react/index.d.ts:1847 ___ @@ -1140,7 +1139,7 @@ HTMLAttributes.aria-rowindex #### Defined in -node_modules/@types/react/index.d.ts:1847 +node_modules/@types/react/index.d.ts:1852 ___ @@ -1160,7 +1159,7 @@ HTMLAttributes.aria-rowindextext #### Defined in -node_modules/@types/react/index.d.ts:1852 +node_modules/@types/react/index.d.ts:1857 ___ @@ -1181,7 +1180,7 @@ HTMLAttributes.aria-rowspan #### Defined in -node_modules/@types/react/index.d.ts:1857 +node_modules/@types/react/index.d.ts:1862 ___ @@ -1202,7 +1201,7 @@ HTMLAttributes.aria-selected #### Defined in -node_modules/@types/react/index.d.ts:1862 +node_modules/@types/react/index.d.ts:1867 ___ @@ -1222,7 +1221,7 @@ HTMLAttributes.aria-setsize #### Defined in -node_modules/@types/react/index.d.ts:1867 +node_modules/@types/react/index.d.ts:1872 ___ @@ -1238,7 +1237,7 @@ HTMLAttributes.aria-sort #### Defined in -node_modules/@types/react/index.d.ts:1869 +node_modules/@types/react/index.d.ts:1874 ___ @@ -1254,7 +1253,7 @@ HTMLAttributes.aria-valuemax #### Defined in -node_modules/@types/react/index.d.ts:1871 +node_modules/@types/react/index.d.ts:1876 ___ @@ -1270,7 +1269,7 @@ HTMLAttributes.aria-valuemin #### Defined in -node_modules/@types/react/index.d.ts:1873 +node_modules/@types/react/index.d.ts:1878 ___ @@ -1290,7 +1289,7 @@ HTMLAttributes.aria-valuenow #### Defined in -node_modules/@types/react/index.d.ts:1878 +node_modules/@types/react/index.d.ts:1883 ___ @@ -1306,7 +1305,7 @@ HTMLAttributes.aria-valuetext #### Defined in -node_modules/@types/react/index.d.ts:1880 +node_modules/@types/react/index.d.ts:1885 ___ @@ -1320,7 +1319,7 @@ HTMLAttributes.autoCapitalize #### Defined in -node_modules/@types/react/index.d.ts:2003 +node_modules/@types/react/index.d.ts:2007 ___ @@ -1334,7 +1333,7 @@ HTMLAttributes.autoCorrect #### Defined in -node_modules/@types/react/index.d.ts:2004 +node_modules/@types/react/index.d.ts:2008 ___ @@ -1348,7 +1347,7 @@ HTMLAttributes.autoFocus #### Defined in -node_modules/@types/react/index.d.ts:1965 +node_modules/@types/react/index.d.ts:1970 ___ @@ -1362,7 +1361,7 @@ HTMLAttributes.autoSave #### Defined in -node_modules/@types/react/index.d.ts:2005 +node_modules/@types/react/index.d.ts:2009 ___ @@ -1376,7 +1375,7 @@ HTMLAttributes.children #### Defined in -node_modules/@types/react/index.d.ts:1446 +node_modules/@types/react/index.d.ts:1451 ___ @@ -1390,7 +1389,7 @@ HTMLAttributes.className #### Defined in -node_modules/@types/react/index.d.ts:1966 +node_modules/@types/react/index.d.ts:1971 ___ @@ -1404,7 +1403,7 @@ HTMLAttributes.color #### Defined in -node_modules/@types/react/index.d.ts:2006 +node_modules/@types/react/index.d.ts:2010 ___ @@ -1418,7 +1417,7 @@ HTMLAttributes.content #### Defined in -node_modules/@types/react/index.d.ts:1991 +node_modules/@types/react/index.d.ts:1995 ___ @@ -1432,7 +1431,7 @@ HTMLAttributes.contentEditable #### Defined in -node_modules/@types/react/index.d.ts:1967 +node_modules/@types/react/index.d.ts:1972 ___ @@ -1446,7 +1445,7 @@ HTMLAttributes.contextMenu #### Defined in -node_modules/@types/react/index.d.ts:1968 +node_modules/@types/react/index.d.ts:1973 ___ @@ -1466,7 +1465,7 @@ HTMLAttributes.dangerouslySetInnerHTML #### Defined in -node_modules/@types/react/index.d.ts:1447 +node_modules/@types/react/index.d.ts:1452 ___ @@ -1480,7 +1479,7 @@ HTMLAttributes.datatype #### Defined in -node_modules/@types/react/index.d.ts:1992 +node_modules/@types/react/index.d.ts:1996 ___ @@ -1494,7 +1493,7 @@ HTMLAttributes.defaultChecked #### Defined in -node_modules/@types/react/index.d.ts:1958 +node_modules/@types/react/index.d.ts:1963 ___ @@ -1508,7 +1507,7 @@ HTMLAttributes.defaultValue #### Defined in -node_modules/@types/react/index.d.ts:1959 +node_modules/@types/react/index.d.ts:1964 ___ @@ -1522,7 +1521,7 @@ HTMLAttributes.dir #### Defined in -node_modules/@types/react/index.d.ts:1969 +node_modules/@types/react/index.d.ts:1974 ___ @@ -1536,7 +1535,7 @@ HTMLAttributes.draggable #### Defined in -node_modules/@types/react/index.d.ts:1970 +node_modules/@types/react/index.d.ts:1975 ___ @@ -1550,7 +1549,7 @@ HTMLAttributes.hidden #### Defined in -node_modules/@types/react/index.d.ts:1971 +node_modules/@types/react/index.d.ts:1976 ___ @@ -1564,7 +1563,7 @@ HTMLAttributes.id #### Defined in -node_modules/@types/react/index.d.ts:1972 +node_modules/@types/react/index.d.ts:1977 ___ @@ -1597,7 +1596,7 @@ HTMLAttributes.inlist #### Defined in -node_modules/@types/react/index.d.ts:1993 +node_modules/@types/react/index.d.ts:1997 ___ @@ -1617,7 +1616,7 @@ HTMLAttributes.inputMode #### Defined in -node_modules/@types/react/index.d.ts:2021 +node_modules/@types/react/index.d.ts:2025 ___ @@ -1637,7 +1636,7 @@ HTMLAttributes.is #### Defined in -node_modules/@types/react/index.d.ts:2026 +node_modules/@types/react/index.d.ts:2030 ___ @@ -1651,7 +1650,7 @@ HTMLAttributes.itemID #### Defined in -node_modules/@types/react/index.d.ts:2010 +node_modules/@types/react/index.d.ts:2014 ___ @@ -1665,7 +1664,7 @@ HTMLAttributes.itemProp #### Defined in -node_modules/@types/react/index.d.ts:2007 +node_modules/@types/react/index.d.ts:2011 ___ @@ -1679,7 +1678,7 @@ HTMLAttributes.itemRef #### Defined in -node_modules/@types/react/index.d.ts:2011 +node_modules/@types/react/index.d.ts:2015 ___ @@ -1693,7 +1692,7 @@ HTMLAttributes.itemScope #### Defined in -node_modules/@types/react/index.d.ts:2008 +node_modules/@types/react/index.d.ts:2012 ___ @@ -1707,7 +1706,7 @@ HTMLAttributes.itemType #### Defined in -node_modules/@types/react/index.d.ts:2009 +node_modules/@types/react/index.d.ts:2013 ___ @@ -1734,7 +1733,7 @@ HTMLAttributes.lang #### Defined in -node_modules/@types/react/index.d.ts:1973 +node_modules/@types/react/index.d.ts:1978 ___ @@ -1778,7 +1777,7 @@ HTMLAttributes.nonce #### Defined in -node_modules/@types/react/index.d.ts:1974 +node_modules/@types/react/index.d.ts:1979 ___ @@ -1792,7 +1791,7 @@ HTMLAttributes.onAbort #### Defined in -node_modules/@types/react/index.d.ts:1506 +node_modules/@types/react/index.d.ts:1511 ___ @@ -1806,7 +1805,7 @@ HTMLAttributes.onAbortCapture #### Defined in -node_modules/@types/react/index.d.ts:1507 +node_modules/@types/react/index.d.ts:1512 ___ @@ -1820,7 +1819,7 @@ HTMLAttributes.onAnimationEnd #### Defined in -node_modules/@types/react/index.d.ts:1638 +node_modules/@types/react/index.d.ts:1643 ___ @@ -1834,7 +1833,7 @@ HTMLAttributes.onAnimationEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1639 +node_modules/@types/react/index.d.ts:1644 ___ @@ -1848,7 +1847,7 @@ HTMLAttributes.onAnimationIteration #### Defined in -node_modules/@types/react/index.d.ts:1640 +node_modules/@types/react/index.d.ts:1645 ___ @@ -1862,7 +1861,7 @@ HTMLAttributes.onAnimationIterationCapture #### Defined in -node_modules/@types/react/index.d.ts:1641 +node_modules/@types/react/index.d.ts:1646 ___ @@ -1876,7 +1875,7 @@ HTMLAttributes.onAnimationStart #### Defined in -node_modules/@types/react/index.d.ts:1636 +node_modules/@types/react/index.d.ts:1641 ___ @@ -1890,7 +1889,7 @@ HTMLAttributes.onAnimationStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1637 +node_modules/@types/react/index.d.ts:1642 ___ @@ -1904,7 +1903,7 @@ HTMLAttributes.onAuxClick #### Defined in -node_modules/@types/react/index.d.ts:1554 +node_modules/@types/react/index.d.ts:1559 ___ @@ -1918,7 +1917,7 @@ HTMLAttributes.onAuxClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1555 +node_modules/@types/react/index.d.ts:1560 ___ @@ -1932,7 +1931,7 @@ HTMLAttributes.onBeforeInput #### Defined in -node_modules/@types/react/index.d.ts:1478 +node_modules/@types/react/index.d.ts:1483 ___ @@ -1946,7 +1945,7 @@ HTMLAttributes.onBeforeInputCapture #### Defined in -node_modules/@types/react/index.d.ts:1479 +node_modules/@types/react/index.d.ts:1484 ___ @@ -1960,7 +1959,7 @@ HTMLAttributes.onBlur #### Defined in -node_modules/@types/react/index.d.ts:1472 +node_modules/@types/react/index.d.ts:1477 ___ @@ -1974,7 +1973,7 @@ HTMLAttributes.onBlurCapture #### Defined in -node_modules/@types/react/index.d.ts:1473 +node_modules/@types/react/index.d.ts:1478 ___ @@ -1988,7 +1987,7 @@ HTMLAttributes.onCanPlay #### Defined in -node_modules/@types/react/index.d.ts:1508 +node_modules/@types/react/index.d.ts:1513 ___ @@ -2002,7 +2001,7 @@ HTMLAttributes.onCanPlayCapture #### Defined in -node_modules/@types/react/index.d.ts:1509 +node_modules/@types/react/index.d.ts:1514 ___ @@ -2016,7 +2015,7 @@ HTMLAttributes.onCanPlayThrough #### Defined in -node_modules/@types/react/index.d.ts:1510 +node_modules/@types/react/index.d.ts:1515 ___ @@ -2030,7 +2029,7 @@ HTMLAttributes.onCanPlayThroughCapture #### Defined in -node_modules/@types/react/index.d.ts:1511 +node_modules/@types/react/index.d.ts:1516 ___ @@ -2044,7 +2043,7 @@ HTMLAttributes.onChange #### Defined in -node_modules/@types/react/index.d.ts:1476 +node_modules/@types/react/index.d.ts:1481 ___ @@ -2058,7 +2057,7 @@ HTMLAttributes.onChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1477 +node_modules/@types/react/index.d.ts:1482 ___ @@ -2072,7 +2071,7 @@ HTMLAttributes.onClick #### Defined in -node_modules/@types/react/index.d.ts:1556 +node_modules/@types/react/index.d.ts:1561 ___ @@ -2086,7 +2085,7 @@ HTMLAttributes.onClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1557 +node_modules/@types/react/index.d.ts:1562 ___ @@ -2100,7 +2099,7 @@ HTMLAttributes.onCompositionEnd #### Defined in -node_modules/@types/react/index.d.ts:1462 +node_modules/@types/react/index.d.ts:1467 ___ @@ -2114,7 +2113,7 @@ HTMLAttributes.onCompositionEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1463 +node_modules/@types/react/index.d.ts:1468 ___ @@ -2128,7 +2127,7 @@ HTMLAttributes.onCompositionStart #### Defined in -node_modules/@types/react/index.d.ts:1464 +node_modules/@types/react/index.d.ts:1469 ___ @@ -2142,7 +2141,7 @@ HTMLAttributes.onCompositionStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1465 +node_modules/@types/react/index.d.ts:1470 ___ @@ -2156,7 +2155,7 @@ HTMLAttributes.onCompositionUpdate #### Defined in -node_modules/@types/react/index.d.ts:1466 +node_modules/@types/react/index.d.ts:1471 ___ @@ -2170,7 +2169,7 @@ HTMLAttributes.onCompositionUpdateCapture #### Defined in -node_modules/@types/react/index.d.ts:1467 +node_modules/@types/react/index.d.ts:1472 ___ @@ -2184,7 +2183,7 @@ HTMLAttributes.onContextMenu #### Defined in -node_modules/@types/react/index.d.ts:1558 +node_modules/@types/react/index.d.ts:1563 ___ @@ -2198,7 +2197,7 @@ HTMLAttributes.onContextMenuCapture #### Defined in -node_modules/@types/react/index.d.ts:1559 +node_modules/@types/react/index.d.ts:1564 ___ @@ -2212,7 +2211,7 @@ HTMLAttributes.onCopy #### Defined in -node_modules/@types/react/index.d.ts:1454 +node_modules/@types/react/index.d.ts:1459 ___ @@ -2226,7 +2225,7 @@ HTMLAttributes.onCopyCapture #### Defined in -node_modules/@types/react/index.d.ts:1455 +node_modules/@types/react/index.d.ts:1460 ___ @@ -2240,7 +2239,7 @@ HTMLAttributes.onCut #### Defined in -node_modules/@types/react/index.d.ts:1456 +node_modules/@types/react/index.d.ts:1461 ___ @@ -2254,7 +2253,7 @@ HTMLAttributes.onCutCapture #### Defined in -node_modules/@types/react/index.d.ts:1457 +node_modules/@types/react/index.d.ts:1462 ___ @@ -2268,7 +2267,7 @@ HTMLAttributes.onDoubleClick #### Defined in -node_modules/@types/react/index.d.ts:1560 +node_modules/@types/react/index.d.ts:1565 ___ @@ -2282,7 +2281,7 @@ HTMLAttributes.onDoubleClickCapture #### Defined in -node_modules/@types/react/index.d.ts:1561 +node_modules/@types/react/index.d.ts:1566 ___ @@ -2296,7 +2295,7 @@ HTMLAttributes.onDrag #### Defined in -node_modules/@types/react/index.d.ts:1562 +node_modules/@types/react/index.d.ts:1567 ___ @@ -2310,7 +2309,7 @@ HTMLAttributes.onDragCapture #### Defined in -node_modules/@types/react/index.d.ts:1563 +node_modules/@types/react/index.d.ts:1568 ___ @@ -2324,7 +2323,7 @@ HTMLAttributes.onDragEnd #### Defined in -node_modules/@types/react/index.d.ts:1564 +node_modules/@types/react/index.d.ts:1569 ___ @@ -2338,7 +2337,7 @@ HTMLAttributes.onDragEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1565 +node_modules/@types/react/index.d.ts:1570 ___ @@ -2352,7 +2351,7 @@ HTMLAttributes.onDragEnter #### Defined in -node_modules/@types/react/index.d.ts:1566 +node_modules/@types/react/index.d.ts:1571 ___ @@ -2366,7 +2365,7 @@ HTMLAttributes.onDragEnterCapture #### Defined in -node_modules/@types/react/index.d.ts:1567 +node_modules/@types/react/index.d.ts:1572 ___ @@ -2380,7 +2379,7 @@ HTMLAttributes.onDragExit #### Defined in -node_modules/@types/react/index.d.ts:1568 +node_modules/@types/react/index.d.ts:1573 ___ @@ -2394,7 +2393,7 @@ HTMLAttributes.onDragExitCapture #### Defined in -node_modules/@types/react/index.d.ts:1569 +node_modules/@types/react/index.d.ts:1574 ___ @@ -2408,7 +2407,7 @@ HTMLAttributes.onDragLeave #### Defined in -node_modules/@types/react/index.d.ts:1570 +node_modules/@types/react/index.d.ts:1575 ___ @@ -2422,7 +2421,7 @@ HTMLAttributes.onDragLeaveCapture #### Defined in -node_modules/@types/react/index.d.ts:1571 +node_modules/@types/react/index.d.ts:1576 ___ @@ -2436,7 +2435,7 @@ HTMLAttributes.onDragOver #### Defined in -node_modules/@types/react/index.d.ts:1572 +node_modules/@types/react/index.d.ts:1577 ___ @@ -2450,7 +2449,7 @@ HTMLAttributes.onDragOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1573 +node_modules/@types/react/index.d.ts:1578 ___ @@ -2464,7 +2463,7 @@ HTMLAttributes.onDragStart #### Defined in -node_modules/@types/react/index.d.ts:1574 +node_modules/@types/react/index.d.ts:1579 ___ @@ -2478,7 +2477,7 @@ HTMLAttributes.onDragStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1575 +node_modules/@types/react/index.d.ts:1580 ___ @@ -2492,7 +2491,7 @@ HTMLAttributes.onDrop #### Defined in -node_modules/@types/react/index.d.ts:1576 +node_modules/@types/react/index.d.ts:1581 ___ @@ -2506,7 +2505,7 @@ HTMLAttributes.onDropCapture #### Defined in -node_modules/@types/react/index.d.ts:1577 +node_modules/@types/react/index.d.ts:1582 ___ @@ -2520,7 +2519,7 @@ HTMLAttributes.onDurationChange #### Defined in -node_modules/@types/react/index.d.ts:1512 +node_modules/@types/react/index.d.ts:1517 ___ @@ -2534,7 +2533,7 @@ HTMLAttributes.onDurationChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1513 +node_modules/@types/react/index.d.ts:1518 ___ @@ -2548,7 +2547,7 @@ HTMLAttributes.onEmptied #### Defined in -node_modules/@types/react/index.d.ts:1514 +node_modules/@types/react/index.d.ts:1519 ___ @@ -2562,7 +2561,7 @@ HTMLAttributes.onEmptiedCapture #### Defined in -node_modules/@types/react/index.d.ts:1515 +node_modules/@types/react/index.d.ts:1520 ___ @@ -2576,7 +2575,7 @@ HTMLAttributes.onEncrypted #### Defined in -node_modules/@types/react/index.d.ts:1516 +node_modules/@types/react/index.d.ts:1521 ___ @@ -2590,7 +2589,7 @@ HTMLAttributes.onEncryptedCapture #### Defined in -node_modules/@types/react/index.d.ts:1517 +node_modules/@types/react/index.d.ts:1522 ___ @@ -2604,7 +2603,7 @@ HTMLAttributes.onEnded #### Defined in -node_modules/@types/react/index.d.ts:1518 +node_modules/@types/react/index.d.ts:1523 ___ @@ -2618,7 +2617,7 @@ HTMLAttributes.onEndedCapture #### Defined in -node_modules/@types/react/index.d.ts:1519 +node_modules/@types/react/index.d.ts:1524 ___ @@ -2632,7 +2631,7 @@ HTMLAttributes.onError #### Defined in -node_modules/@types/react/index.d.ts:1492 +node_modules/@types/react/index.d.ts:1497 ___ @@ -2646,7 +2645,7 @@ HTMLAttributes.onErrorCapture #### Defined in -node_modules/@types/react/index.d.ts:1493 +node_modules/@types/react/index.d.ts:1498 ___ @@ -2660,7 +2659,7 @@ HTMLAttributes.onFocus #### Defined in -node_modules/@types/react/index.d.ts:1470 +node_modules/@types/react/index.d.ts:1475 ___ @@ -2674,7 +2673,7 @@ HTMLAttributes.onFocusCapture #### Defined in -node_modules/@types/react/index.d.ts:1471 +node_modules/@types/react/index.d.ts:1476 ___ @@ -2688,7 +2687,7 @@ HTMLAttributes.onGotPointerCapture #### Defined in -node_modules/@types/react/index.d.ts:1622 +node_modules/@types/react/index.d.ts:1627 ___ @@ -2702,7 +2701,7 @@ HTMLAttributes.onGotPointerCaptureCapture #### Defined in -node_modules/@types/react/index.d.ts:1623 +node_modules/@types/react/index.d.ts:1628 ___ @@ -2716,7 +2715,7 @@ HTMLAttributes.onInput #### Defined in -node_modules/@types/react/index.d.ts:1480 +node_modules/@types/react/index.d.ts:1485 ___ @@ -2730,7 +2729,7 @@ HTMLAttributes.onInputCapture #### Defined in -node_modules/@types/react/index.d.ts:1481 +node_modules/@types/react/index.d.ts:1486 ___ @@ -2744,7 +2743,7 @@ HTMLAttributes.onInvalid #### Defined in -node_modules/@types/react/index.d.ts:1486 +node_modules/@types/react/index.d.ts:1491 ___ @@ -2758,7 +2757,7 @@ HTMLAttributes.onInvalidCapture #### Defined in -node_modules/@types/react/index.d.ts:1487 +node_modules/@types/react/index.d.ts:1492 ___ @@ -2772,7 +2771,7 @@ HTMLAttributes.onKeyDown #### Defined in -node_modules/@types/react/index.d.ts:1496 +node_modules/@types/react/index.d.ts:1501 ___ @@ -2786,7 +2785,7 @@ HTMLAttributes.onKeyDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1497 +node_modules/@types/react/index.d.ts:1502 ___ @@ -2802,7 +2801,7 @@ HTMLAttributes.onKeyPress #### Defined in -node_modules/@types/react/index.d.ts:1499 +node_modules/@types/react/index.d.ts:1504 ___ @@ -2818,7 +2817,7 @@ HTMLAttributes.onKeyPressCapture #### Defined in -node_modules/@types/react/index.d.ts:1501 +node_modules/@types/react/index.d.ts:1506 ___ @@ -2832,7 +2831,7 @@ HTMLAttributes.onKeyUp #### Defined in -node_modules/@types/react/index.d.ts:1502 +node_modules/@types/react/index.d.ts:1507 ___ @@ -2846,7 +2845,7 @@ HTMLAttributes.onKeyUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1503 +node_modules/@types/react/index.d.ts:1508 ___ @@ -2860,7 +2859,7 @@ HTMLAttributes.onLoad #### Defined in -node_modules/@types/react/index.d.ts:1490 +node_modules/@types/react/index.d.ts:1495 ___ @@ -2874,7 +2873,7 @@ HTMLAttributes.onLoadCapture #### Defined in -node_modules/@types/react/index.d.ts:1491 +node_modules/@types/react/index.d.ts:1496 ___ @@ -2888,7 +2887,7 @@ HTMLAttributes.onLoadStart #### Defined in -node_modules/@types/react/index.d.ts:1524 +node_modules/@types/react/index.d.ts:1529 ___ @@ -2902,7 +2901,7 @@ HTMLAttributes.onLoadStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1525 +node_modules/@types/react/index.d.ts:1530 ___ @@ -2916,7 +2915,7 @@ HTMLAttributes.onLoadedData #### Defined in -node_modules/@types/react/index.d.ts:1520 +node_modules/@types/react/index.d.ts:1525 ___ @@ -2930,7 +2929,7 @@ HTMLAttributes.onLoadedDataCapture #### Defined in -node_modules/@types/react/index.d.ts:1521 +node_modules/@types/react/index.d.ts:1526 ___ @@ -2944,7 +2943,7 @@ HTMLAttributes.onLoadedMetadata #### Defined in -node_modules/@types/react/index.d.ts:1522 +node_modules/@types/react/index.d.ts:1527 ___ @@ -2958,7 +2957,7 @@ HTMLAttributes.onLoadedMetadataCapture #### Defined in -node_modules/@types/react/index.d.ts:1523 +node_modules/@types/react/index.d.ts:1528 ___ @@ -2972,7 +2971,7 @@ HTMLAttributes.onLostPointerCapture #### Defined in -node_modules/@types/react/index.d.ts:1624 +node_modules/@types/react/index.d.ts:1629 ___ @@ -2986,7 +2985,7 @@ HTMLAttributes.onLostPointerCaptureCapture #### Defined in -node_modules/@types/react/index.d.ts:1625 +node_modules/@types/react/index.d.ts:1630 ___ @@ -3000,7 +2999,7 @@ HTMLAttributes.onMouseDown #### Defined in -node_modules/@types/react/index.d.ts:1578 +node_modules/@types/react/index.d.ts:1583 ___ @@ -3014,7 +3013,7 @@ HTMLAttributes.onMouseDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1579 +node_modules/@types/react/index.d.ts:1584 ___ @@ -3028,7 +3027,7 @@ HTMLAttributes.onMouseEnter #### Defined in -node_modules/@types/react/index.d.ts:1580 +node_modules/@types/react/index.d.ts:1585 ___ @@ -3042,7 +3041,7 @@ HTMLAttributes.onMouseLeave #### Defined in -node_modules/@types/react/index.d.ts:1581 +node_modules/@types/react/index.d.ts:1586 ___ @@ -3056,7 +3055,7 @@ HTMLAttributes.onMouseMove #### Defined in -node_modules/@types/react/index.d.ts:1582 +node_modules/@types/react/index.d.ts:1587 ___ @@ -3070,7 +3069,7 @@ HTMLAttributes.onMouseMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1583 +node_modules/@types/react/index.d.ts:1588 ___ @@ -3084,7 +3083,7 @@ HTMLAttributes.onMouseOut #### Defined in -node_modules/@types/react/index.d.ts:1584 +node_modules/@types/react/index.d.ts:1589 ___ @@ -3098,7 +3097,7 @@ HTMLAttributes.onMouseOutCapture #### Defined in -node_modules/@types/react/index.d.ts:1585 +node_modules/@types/react/index.d.ts:1590 ___ @@ -3112,7 +3111,7 @@ HTMLAttributes.onMouseOver #### Defined in -node_modules/@types/react/index.d.ts:1586 +node_modules/@types/react/index.d.ts:1591 ___ @@ -3126,7 +3125,7 @@ HTMLAttributes.onMouseOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1587 +node_modules/@types/react/index.d.ts:1592 ___ @@ -3140,7 +3139,7 @@ HTMLAttributes.onMouseUp #### Defined in -node_modules/@types/react/index.d.ts:1588 +node_modules/@types/react/index.d.ts:1593 ___ @@ -3154,7 +3153,7 @@ HTMLAttributes.onMouseUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1589 +node_modules/@types/react/index.d.ts:1594 ___ @@ -3168,7 +3167,7 @@ HTMLAttributes.onPaste #### Defined in -node_modules/@types/react/index.d.ts:1458 +node_modules/@types/react/index.d.ts:1463 ___ @@ -3182,7 +3181,7 @@ HTMLAttributes.onPasteCapture #### Defined in -node_modules/@types/react/index.d.ts:1459 +node_modules/@types/react/index.d.ts:1464 ___ @@ -3196,7 +3195,7 @@ HTMLAttributes.onPause #### Defined in -node_modules/@types/react/index.d.ts:1526 +node_modules/@types/react/index.d.ts:1531 ___ @@ -3210,7 +3209,7 @@ HTMLAttributes.onPauseCapture #### Defined in -node_modules/@types/react/index.d.ts:1527 +node_modules/@types/react/index.d.ts:1532 ___ @@ -3224,7 +3223,7 @@ HTMLAttributes.onPlay #### Defined in -node_modules/@types/react/index.d.ts:1528 +node_modules/@types/react/index.d.ts:1533 ___ @@ -3238,7 +3237,7 @@ HTMLAttributes.onPlayCapture #### Defined in -node_modules/@types/react/index.d.ts:1529 +node_modules/@types/react/index.d.ts:1534 ___ @@ -3252,7 +3251,7 @@ HTMLAttributes.onPlaying #### Defined in -node_modules/@types/react/index.d.ts:1530 +node_modules/@types/react/index.d.ts:1535 ___ @@ -3266,7 +3265,7 @@ HTMLAttributes.onPlayingCapture #### Defined in -node_modules/@types/react/index.d.ts:1531 +node_modules/@types/react/index.d.ts:1536 ___ @@ -3280,7 +3279,7 @@ HTMLAttributes.onPointerCancel #### Defined in -node_modules/@types/react/index.d.ts:1612 +node_modules/@types/react/index.d.ts:1617 ___ @@ -3294,7 +3293,7 @@ HTMLAttributes.onPointerCancelCapture #### Defined in -node_modules/@types/react/index.d.ts:1613 +node_modules/@types/react/index.d.ts:1618 ___ @@ -3308,7 +3307,7 @@ HTMLAttributes.onPointerDown #### Defined in -node_modules/@types/react/index.d.ts:1606 +node_modules/@types/react/index.d.ts:1611 ___ @@ -3322,7 +3321,7 @@ HTMLAttributes.onPointerDownCapture #### Defined in -node_modules/@types/react/index.d.ts:1607 +node_modules/@types/react/index.d.ts:1612 ___ @@ -3336,7 +3335,7 @@ HTMLAttributes.onPointerEnter #### Defined in -node_modules/@types/react/index.d.ts:1614 +node_modules/@types/react/index.d.ts:1619 ___ @@ -3350,7 +3349,7 @@ HTMLAttributes.onPointerEnterCapture #### Defined in -node_modules/@types/react/index.d.ts:1615 +node_modules/@types/react/index.d.ts:1620 ___ @@ -3364,7 +3363,7 @@ HTMLAttributes.onPointerLeave #### Defined in -node_modules/@types/react/index.d.ts:1616 +node_modules/@types/react/index.d.ts:1621 ___ @@ -3378,7 +3377,7 @@ HTMLAttributes.onPointerLeaveCapture #### Defined in -node_modules/@types/react/index.d.ts:1617 +node_modules/@types/react/index.d.ts:1622 ___ @@ -3392,7 +3391,7 @@ HTMLAttributes.onPointerMove #### Defined in -node_modules/@types/react/index.d.ts:1608 +node_modules/@types/react/index.d.ts:1613 ___ @@ -3406,7 +3405,7 @@ HTMLAttributes.onPointerMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1609 +node_modules/@types/react/index.d.ts:1614 ___ @@ -3420,7 +3419,7 @@ HTMLAttributes.onPointerOut #### Defined in -node_modules/@types/react/index.d.ts:1620 +node_modules/@types/react/index.d.ts:1625 ___ @@ -3434,7 +3433,7 @@ HTMLAttributes.onPointerOutCapture #### Defined in -node_modules/@types/react/index.d.ts:1621 +node_modules/@types/react/index.d.ts:1626 ___ @@ -3448,7 +3447,7 @@ HTMLAttributes.onPointerOver #### Defined in -node_modules/@types/react/index.d.ts:1618 +node_modules/@types/react/index.d.ts:1623 ___ @@ -3462,7 +3461,7 @@ HTMLAttributes.onPointerOverCapture #### Defined in -node_modules/@types/react/index.d.ts:1619 +node_modules/@types/react/index.d.ts:1624 ___ @@ -3476,7 +3475,7 @@ HTMLAttributes.onPointerUp #### Defined in -node_modules/@types/react/index.d.ts:1610 +node_modules/@types/react/index.d.ts:1615 ___ @@ -3490,7 +3489,7 @@ HTMLAttributes.onPointerUpCapture #### Defined in -node_modules/@types/react/index.d.ts:1611 +node_modules/@types/react/index.d.ts:1616 ___ @@ -3504,7 +3503,7 @@ HTMLAttributes.onProgress #### Defined in -node_modules/@types/react/index.d.ts:1532 +node_modules/@types/react/index.d.ts:1537 ___ @@ -3518,7 +3517,7 @@ HTMLAttributes.onProgressCapture #### Defined in -node_modules/@types/react/index.d.ts:1533 +node_modules/@types/react/index.d.ts:1538 ___ @@ -3532,7 +3531,7 @@ HTMLAttributes.onRateChange #### Defined in -node_modules/@types/react/index.d.ts:1534 +node_modules/@types/react/index.d.ts:1539 ___ @@ -3546,7 +3545,7 @@ HTMLAttributes.onRateChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1535 +node_modules/@types/react/index.d.ts:1540 ___ @@ -3560,7 +3559,7 @@ HTMLAttributes.onReset #### Defined in -node_modules/@types/react/index.d.ts:1482 +node_modules/@types/react/index.d.ts:1487 ___ @@ -3574,7 +3573,7 @@ HTMLAttributes.onResetCapture #### Defined in -node_modules/@types/react/index.d.ts:1483 +node_modules/@types/react/index.d.ts:1488 ___ @@ -3588,7 +3587,7 @@ HTMLAttributes.onResize #### Defined in -node_modules/@types/react/index.d.ts:1536 +node_modules/@types/react/index.d.ts:1541 ___ @@ -3602,7 +3601,7 @@ HTMLAttributes.onResizeCapture #### Defined in -node_modules/@types/react/index.d.ts:1537 +node_modules/@types/react/index.d.ts:1542 ___ @@ -3616,7 +3615,7 @@ HTMLAttributes.onScroll #### Defined in -node_modules/@types/react/index.d.ts:1628 +node_modules/@types/react/index.d.ts:1633 ___ @@ -3630,7 +3629,7 @@ HTMLAttributes.onScrollCapture #### Defined in -node_modules/@types/react/index.d.ts:1629 +node_modules/@types/react/index.d.ts:1634 ___ @@ -3644,7 +3643,7 @@ HTMLAttributes.onSeeked #### Defined in -node_modules/@types/react/index.d.ts:1538 +node_modules/@types/react/index.d.ts:1543 ___ @@ -3658,7 +3657,7 @@ HTMLAttributes.onSeekedCapture #### Defined in -node_modules/@types/react/index.d.ts:1539 +node_modules/@types/react/index.d.ts:1544 ___ @@ -3672,7 +3671,7 @@ HTMLAttributes.onSeeking #### Defined in -node_modules/@types/react/index.d.ts:1540 +node_modules/@types/react/index.d.ts:1545 ___ @@ -3686,7 +3685,7 @@ HTMLAttributes.onSeekingCapture #### Defined in -node_modules/@types/react/index.d.ts:1541 +node_modules/@types/react/index.d.ts:1546 ___ @@ -3700,7 +3699,7 @@ HTMLAttributes.onSelect #### Defined in -node_modules/@types/react/index.d.ts:1592 +node_modules/@types/react/index.d.ts:1597 ___ @@ -3714,7 +3713,7 @@ HTMLAttributes.onSelectCapture #### Defined in -node_modules/@types/react/index.d.ts:1593 +node_modules/@types/react/index.d.ts:1598 ___ @@ -3728,7 +3727,7 @@ HTMLAttributes.onStalled #### Defined in -node_modules/@types/react/index.d.ts:1542 +node_modules/@types/react/index.d.ts:1547 ___ @@ -3742,7 +3741,7 @@ HTMLAttributes.onStalledCapture #### Defined in -node_modules/@types/react/index.d.ts:1543 +node_modules/@types/react/index.d.ts:1548 ___ @@ -3756,7 +3755,7 @@ HTMLAttributes.onSubmit #### Defined in -node_modules/@types/react/index.d.ts:1484 +node_modules/@types/react/index.d.ts:1489 ___ @@ -3770,7 +3769,7 @@ HTMLAttributes.onSubmitCapture #### Defined in -node_modules/@types/react/index.d.ts:1485 +node_modules/@types/react/index.d.ts:1490 ___ @@ -3784,7 +3783,7 @@ HTMLAttributes.onSuspend #### Defined in -node_modules/@types/react/index.d.ts:1544 +node_modules/@types/react/index.d.ts:1549 ___ @@ -3798,7 +3797,7 @@ HTMLAttributes.onSuspendCapture #### Defined in -node_modules/@types/react/index.d.ts:1545 +node_modules/@types/react/index.d.ts:1550 ___ @@ -3812,7 +3811,7 @@ HTMLAttributes.onTimeUpdate #### Defined in -node_modules/@types/react/index.d.ts:1546 +node_modules/@types/react/index.d.ts:1551 ___ @@ -3826,7 +3825,7 @@ HTMLAttributes.onTimeUpdateCapture #### Defined in -node_modules/@types/react/index.d.ts:1547 +node_modules/@types/react/index.d.ts:1552 ___ @@ -3840,7 +3839,7 @@ HTMLAttributes.onTouchCancel #### Defined in -node_modules/@types/react/index.d.ts:1596 +node_modules/@types/react/index.d.ts:1601 ___ @@ -3854,7 +3853,7 @@ HTMLAttributes.onTouchCancelCapture #### Defined in -node_modules/@types/react/index.d.ts:1597 +node_modules/@types/react/index.d.ts:1602 ___ @@ -3868,7 +3867,7 @@ HTMLAttributes.onTouchEnd #### Defined in -node_modules/@types/react/index.d.ts:1598 +node_modules/@types/react/index.d.ts:1603 ___ @@ -3882,7 +3881,7 @@ HTMLAttributes.onTouchEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1599 +node_modules/@types/react/index.d.ts:1604 ___ @@ -3896,7 +3895,7 @@ HTMLAttributes.onTouchMove #### Defined in -node_modules/@types/react/index.d.ts:1600 +node_modules/@types/react/index.d.ts:1605 ___ @@ -3910,7 +3909,7 @@ HTMLAttributes.onTouchMoveCapture #### Defined in -node_modules/@types/react/index.d.ts:1601 +node_modules/@types/react/index.d.ts:1606 ___ @@ -3924,7 +3923,7 @@ HTMLAttributes.onTouchStart #### Defined in -node_modules/@types/react/index.d.ts:1602 +node_modules/@types/react/index.d.ts:1607 ___ @@ -3938,7 +3937,7 @@ HTMLAttributes.onTouchStartCapture #### Defined in -node_modules/@types/react/index.d.ts:1603 +node_modules/@types/react/index.d.ts:1608 ___ @@ -3952,7 +3951,7 @@ HTMLAttributes.onTransitionEnd #### Defined in -node_modules/@types/react/index.d.ts:1644 +node_modules/@types/react/index.d.ts:1649 ___ @@ -3966,7 +3965,7 @@ HTMLAttributes.onTransitionEndCapture #### Defined in -node_modules/@types/react/index.d.ts:1645 +node_modules/@types/react/index.d.ts:1650 ___ @@ -3980,7 +3979,7 @@ HTMLAttributes.onVolumeChange #### Defined in -node_modules/@types/react/index.d.ts:1548 +node_modules/@types/react/index.d.ts:1553 ___ @@ -3994,7 +3993,7 @@ HTMLAttributes.onVolumeChangeCapture #### Defined in -node_modules/@types/react/index.d.ts:1549 +node_modules/@types/react/index.d.ts:1554 ___ @@ -4008,7 +4007,7 @@ HTMLAttributes.onWaiting #### Defined in -node_modules/@types/react/index.d.ts:1550 +node_modules/@types/react/index.d.ts:1555 ___ @@ -4022,7 +4021,7 @@ HTMLAttributes.onWaitingCapture #### Defined in -node_modules/@types/react/index.d.ts:1551 +node_modules/@types/react/index.d.ts:1556 ___ @@ -4036,7 +4035,7 @@ HTMLAttributes.onWheel #### Defined in -node_modules/@types/react/index.d.ts:1632 +node_modules/@types/react/index.d.ts:1637 ___ @@ -4050,7 +4049,7 @@ HTMLAttributes.onWheelCapture #### Defined in -node_modules/@types/react/index.d.ts:1633 +node_modules/@types/react/index.d.ts:1638 ___ @@ -4066,20 +4065,6 @@ An array of values which will be used to create the `