Skip to content

Commit

Permalink
chore: updated packages keywords (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
trinhthinh388 authored Jan 29, 2024
1 parent de1cb0b commit e540ca4
Show file tree
Hide file tree
Showing 14 changed files with 105 additions and 15 deletions.
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf .next"
},
"dependencies": {
"@react-awesome/components": "1.0.4",
"@react-awesome/components": "1.0.5",
"lucide-react": "^0.315.0",
"next": "^14.0.4",
"nextra": "^2.13.2",
Expand Down
12 changes: 12 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @react-awesome/components

## 1.0.5

### Patch Changes

- Updated packages's keywords
- Updated dependencies
- @react-awesome/use-preserve-input-caret-position@0.0.2
- @react-awesome/use-selection-range@0.0.2
- @react-awesome/use-click-outside@0.0.2
- @react-awesome/use-previous@0.0.2
- @react-awesome/phone-input@1.0.4

## 1.0.4

### Patch Changes
Expand Down
20 changes: 14 additions & 6 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
{
"name": "@react-awesome/components",
"version": "1.0.4",
"version": "1.0.5",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "React Awesome Components is a collection of modern, reusable and well-tested React components that can be utilized across all of our different applications.",
"keywords": [
"react",
"hooks",
"components",
"phone input",
"awesome"
],
"sideEffects": false,
"license": "MIT",
"files": [
Expand Down Expand Up @@ -31,10 +39,10 @@
"access": "public"
},
"dependencies": {
"@react-awesome/phone-input": "1.0.3",
"@react-awesome/use-click-outside": "0.0.1",
"@react-awesome/use-preserve-input-caret-position": "0.0.1",
"@react-awesome/use-selection-range": "0.0.1",
"@react-awesome/use-previous": "0.0.1"
"@react-awesome/phone-input": "1.0.4",
"@react-awesome/use-click-outside": "0.0.2",
"@react-awesome/use-preserve-input-caret-position": "0.0.2",
"@react-awesome/use-selection-range": "0.0.2",
"@react-awesome/use-previous": "0.0.2"
}
}
9 changes: 9 additions & 0 deletions packages/phone-input/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @react-awesome/phone-input

## 1.0.4

### Patch Changes

- Updated packages's keywords
- Updated dependencies
- @react-awesome/use-preserve-input-caret-position@0.0.2
- @react-awesome/use-click-outside@0.0.2

## 1.0.3

### Patch Changes
Expand Down
13 changes: 10 additions & 3 deletions packages/phone-input/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
{
"name": "@react-awesome/phone-input",
"version": "1.0.3",
"version": "1.0.4",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"description": "PhoneInput is a customize input component that can parse and validate phone number.",
"keywords": [
"react",
"phone input",
"phone validation",
"phone formatting"
],
"license": "MIT",
"files": [
"dist/**"
Expand Down Expand Up @@ -39,7 +46,7 @@
"libphonenumber-js": "^1.10.53"
},
"peerDependencies": {
"@react-awesome/use-click-outside": "0.0.1",
"@react-awesome/use-preserve-input-caret-position": "0.0.1"
"@react-awesome/use-click-outside": "0.0.2",
"@react-awesome/use-preserve-input-caret-position": "0.0.2"
}
}
6 changes: 6 additions & 0 deletions packages/use-click-outside/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @react-awesome/use-click-outside

## 0.0.2

### Patch Changes

- Updated packages's keywords

## 0.0.1

### Patch Changes
Expand Down
9 changes: 8 additions & 1 deletion packages/use-click-outside/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "@react-awesome/use-click-outside",
"version": "0.0.1",
"version": "0.0.2",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"description": "useClickOutside triggers callback when user clicks on the outside area of an element.",
"keywords": [
"react",
"hooks",
"click outside",
"outside"
],
"repository": {
"url": "https://github.com/trinhthinh388/react-awesome-components"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/use-preserve-input-caret-position/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @react-awesome/use-preserve-input-caret-position

## 0.0.2

### Patch Changes

- Updated packages's keywords

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/use-preserve-input-caret-position/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img alt="version" src="https://img.shields.io/npm/v/%40react-awesome%2Fuse-preserve-input-caret-position" />
</p>

_usePreserveInputCaretPosition_ tracks the input caret position and place it at the correct position so user can have a natural typing experience.
**usePreserveInputCaretPosition** tracks the input caret position and place it at the correct position so user can have a natural typing experience.

Please refer to the [documentation](https://react-awesome-components.vercel.app/docs/use-preserve-input-caret-position) for more information.

Expand Down
11 changes: 10 additions & 1 deletion packages/use-preserve-input-caret-position/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"name": "@react-awesome/use-preserve-input-caret-position",
"version": "0.0.1",
"version": "0.0.2",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"description": "usePreserveInputCaretPosition tracks the input caret position and place it at the correct position so user can have a natural typing experience.",
"keywords": [
"react",
"hooks",
"preserve caret position",
"caret",
"caret position",
"delimiters"
],
"repository": {
"url": "https://github.com/trinhthinh388/react-awesome-components"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/use-previous/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @react-awesome/use-previous

## 0.0.2

### Patch Changes

- Updated packages's keywords

## 0.0.1

### Patch Changes
Expand Down
9 changes: 8 additions & 1 deletion packages/use-previous/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "@react-awesome/use-previous",
"version": "0.0.1",
"version": "0.0.2",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"description": "usePrevious tracks the previous value of a variable.",
"keywords": [
"react",
"hooks",
"previous value",
"previous state"
],
"repository": {
"url": "https://github.com/trinhthinh388/react-awesome-components"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/use-selection-range/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @react-awesome/use-selection-range

## 0.0.2

### Patch Changes

- Updated packages's keywords

## 0.0.1

### Patch Changes
Expand Down
9 changes: 8 additions & 1 deletion packages/use-selection-range/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "@react-awesome/use-selection-range",
"version": "0.0.1",
"version": "0.0.2",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"description": "useSelectionRange tracks the input selection range.",
"keywords": [
"react",
"hooks",
"input selection range",
"selection range"
],
"repository": {
"url": "https://github.com/trinhthinh388/react-awesome-components"
},
Expand Down

0 comments on commit e540ca4

Please sign in to comment.