Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.

Commit 068264b

Browse files
committed
change package name from use-typed-controller to strictly-typed
1 parent 132238e commit 068264b

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<div align="center">
2-
<h2>👷🏻‍♂️ under construction</h2>
3-
</div>
4-
51
<div align="center">
62
<p align="center">
73
<a href="https://react-hook-form.com" title="React Hook Form - Simple React forms validation">
@@ -12,20 +8,28 @@
128

139
<p align="center">Performant, flexible and extensible forms with easy to use validation.</p>
1410

11+
<div align="center">
12+
13+
[![npm downloads](https://img.shields.io/npm/dm/@hookform/strictly-typed.svg?style=for-the-badge)](https://www.npmjs.com/package/@hookform/strictly-typed)
14+
[![npm](https://img.shields.io/npm/dt/@hookform/strictly-typed.svg?style=for-the-badge)](https://www.npmjs.com/package/@hookform/strictly-typed)
15+
[![npm](https://img.shields.io/bundlephobia/minzip/@hookform/strictly-typed?style=for-the-badge)](https://bundlephobia.com/result?p=@hookform/strictly-typed)
16+
17+
</div>
18+
1519
## Goal
1620

1721
React Hook Form strictly typed Controller.
1822

1923
## Install
2024

2125
```
22-
$ npm install @hookform/use-typed-controller
26+
$ npm install @hookform/strictly-typed
2327
```
2428

2529
## Quickstart
2630

2731
```tsx
28-
import { useTypedController } from '@hookform/use-typed-controller';
32+
import { useTypedController } from '@hookform/strictly-typed';
2933
import { useForm } from 'react-hook-form';
3034
import { TextField, Checkbox } from '@material-ui/core';
3135

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@hookform/use-typed-controller",
2+
"name": "@hookform/strictly-typed",
33
"version": "0.0.0-development",
44
"description": "React Hook Form strictly typed Controller.",
55
"main": "dist/index.js",
@@ -44,12 +44,12 @@
4444
],
4545
"repository": {
4646
"type": "git",
47-
"url": "git+https://github.com/react-hook-form/use-typed-controller.git"
47+
"url": "git+https://github.com/react-hook-form/strictly-typed.git"
4848
},
4949
"author": "Kotaro Sugawara <[email protected]>",
5050
"license": "MIT",
5151
"bugs": {
52-
"url": "https://github.com/react-hook-form/use-typed-controller/issues"
52+
"url": "https://github.com/react-hook-form/strictly-typed/issues"
5353
},
5454
"homepage": "https://react-hook-form.com",
5555
"devDependencies": {

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default [
1111
{
1212
input: 'src/index.tsx',
1313
output: {
14-
name: 'ReactHookFormUseTypedController',
14+
name: 'ReactHookFormStrictlyTyped',
1515
file: pkg.unpkg,
1616
format: 'umd',
1717
sourcemap: true,

0 commit comments

Comments
 (0)