Skip to content

Commit cae8aca

Browse files
move to byteclaw
1 parent 0d9fe74 commit cae8aca

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

.all-contributorsrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"projectName": "@napred/forms",
3-
"projectOwner": "napred",
2+
"projectName": "@byteclaw/forms",
3+
"projectOwner": "byteclaw",
44
"repoType": "github",
55
"repoHost": "https://github.com",
66
"files": [

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 @napred
3+
Copyright (c) 2018 @Byteclaw
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# @napred/forms
1+
# @byteclaw/forms
22

3-
![CircleCI](https://img.shields.io/circleci/project/github/napred/forms/master.svg?style=flat-square)
3+
![CircleCI](https://img.shields.io/circleci/project/github/byteclaw/forms/master.svg?style=flat-square)
44
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors)
55
![Version](https://img.shields.io/npm/v/@napred/forms.svg?style=flat-square)
66
![License](https://img.shields.io/npm/l/@napred/forms.svg?style=flat-square)
@@ -10,11 +10,11 @@ Easily create complex forms in [React](https://github.com/facebook/react).
1010
## Installation
1111

1212
```console
13-
npm install @napred/forms yup
13+
npm install @byteclaw/forms yup
1414

1515
# or using yarn
1616

17-
yarn add @napred/forms yup
17+
yarn add @byteclaw/forms yup
1818
```
1919

2020
## Requirements
@@ -25,7 +25,7 @@ yarn add @napred/forms yup
2525

2626
```js
2727
import { Fragment } from 'react';
28-
import { ArrayField, Field, Form, FormProvider, ObjectField } from '@napred/forms';
28+
import { ArrayField, Field, Form, FormProvider, ObjectField } from '@byteclaw/forms';
2929
import * as yup from 'yup';
3030

3131
const validator = yup.object().shape({
@@ -100,9 +100,8 @@ const validator = yup.object().shape({
100100

101101
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
102102
<!-- prettier-ignore -->
103-
| [<img src="https://avatars1.githubusercontent.com/u/174716?v=4" width="100px;"/><br /><sub><b>Michal Kvasničák</b></sub>](https://github.com/michalkvasnicak)<br />[💬](#question-michalkvasnicak "Answering Questions") [💻](https://github.com/napred/@napred/forms/commits?author=michalkvasnicak "Code") [🎨](#design-michalkvasnicak "Design") [📖](https://github.com/napred/@napred/forms/commits?author=michalkvasnicak "Documentation") [💡](#example-michalkvasnicak "Examples") [🤔](#ideas-michalkvasnicak "Ideas, Planning, & Feedback") [👀](#review-michalkvasnicak "Reviewed Pull Requests") [⚠️](https://github.com/napred/@napred/forms/commits?author=michalkvasnicak "Tests") | [<img src="https://avatars1.githubusercontent.com/u/373788?v=4" width="100px;"/><br /><sub><b>Juraj Hríb</b></sub>](https://github.com/jurajhrib)<br />[💬](#question-jurajhrib "Answering Questions") [🐛](https://github.com/napred/@napred/forms/issues?q=author%3Ajurajhrib "Bug reports") [💻](https://github.com/napred/@napred/forms/commits?author=jurajhrib "Code") [📖](https://github.com/napred/@napred/forms/commits?author=jurajhrib "Documentation") [🤔](#ideas-jurajhrib "Ideas, Planning, & Feedback") [👀](#review-jurajhrib "Reviewed Pull Requests") |
103+
| [<img src="https://avatars1.githubusercontent.com/u/174716?v=4" width="100px;"/><br /><sub><b>Michal Kvasničák</b></sub>](https://github.com/michalkvasnicak)<br />[💬](#question-michalkvasnicak "Answering Questions") [💻](https://github.com/byteclaw/@byteclaw/forms/commits?author=michalkvasnicak "Code") [🎨](#design-michalkvasnicak "Design") [📖](https://github.com/byteclaw/@byteclaw/forms/commits?author=michalkvasnicak "Documentation") [💡](#example-michalkvasnicak "Examples") [🤔](#ideas-michalkvasnicak "Ideas, Planning, & Feedback") [👀](#review-michalkvasnicak "Reviewed Pull Requests") [⚠️](https://github.com/byteclaw/@byteclaw/forms/commits?author=michalkvasnicak "Tests") | [<img src="https://avatars1.githubusercontent.com/u/373788?v=4" width="100px;"/><br /><sub><b>Juraj Hríb</b></sub>](https://github.com/jurajhrib)<br />[💬](#question-jurajhrib "Answering Questions") [🐛](https://github.com/byteclaw/@byteclaw/forms/issues?q=author%3Ajurajhrib "Bug reports") [💻](https://github.com/byteclaw/@byteclaw/forms/commits?author=jurajhrib "Code") [📖](https://github.com/byteclaw/@byteclaw/forms/commits?author=jurajhrib "Documentation") [🤔](#ideas-jurajhrib "Ideas, Planning, & Feedback") [👀](#review-jurajhrib "Reviewed Pull Requests") |
104104
| :---: | :---: |
105-
106105
<!-- ALL-CONTRIBUTORS-LIST:END -->
107106

108107
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!

examples/SimpleForm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Simple login form with `email` and `password` fields and validator.
88
import '@babel/polyfill';
99
import React from 'react';
1010
import ReactDOM from 'react-dom';
11-
import { Field, FieldError, Form, FormProvider } from '@napred/forms';
11+
import { Field, FieldError, Form, FormProvider } from '@byteclaw/forms';
1212
import { object, string } from 'yup';
1313

1414
const validationSchema = object()

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@napred/forms",
2+
"name": "@byteclaw/forms",
33
"description": "Easily built forms in React using Hooks API",
44
"version": "0.6.0",
55
"license": "MIT",
@@ -12,11 +12,11 @@
1212
"hooks"
1313
],
1414
"bugs": {
15-
"url": "https://github.com/napred/forms/issues"
15+
"url": "https://github.com/byteclaw/forms/issues"
1616
},
1717
"repository": {
1818
"type": "git",
19-
"url": "git+https://github.com/napred/forms.git"
19+
"url": "git+https://github.com/byteclaw/forms.git"
2020
},
2121
"contributors": [
2222
{

rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function onwarn(message) {
1414

1515
const input = 'dist/index.js';
1616
const external = id => !id.startsWith('\0') && !id.startsWith('.') && !id.startsWith('/');
17-
const name = 'napred.forms';
17+
const name = 'byteclaw.forms';
1818

1919
const prodPlugins = [
2020
replace({

0 commit comments

Comments
 (0)