Skip to content

Commit

Permalink
Merge pull request #2549 from coingaming/develop
Browse files Browse the repository at this point in the history
Deploy 10.13.1
  • Loading branch information
dkireev authored Feb 13, 2024
2 parents 2e1260e + 5512076 commit 20eb266
Show file tree
Hide file tree
Showing 20 changed files with 132 additions and 147 deletions.
11 changes: 11 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# docs

## 10.13.1

### Patch Changes

- Deploy 10.13.1
- Updated dependencies
- @heathmont/moon-core-tw@10.13.1
- @heathmont/moon-base-tw@10.13.1
- @heathmont/moon-cmdk-tw@10.13.1
- @heathmont/moon-themes-tw@10.13.1

## 10.13.0

### Minor Changes
Expand Down
10 changes: 5 additions & 5 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "10.13.0",
"version": "10.13.1",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -11,11 +11,11 @@
"lint": "next lint"
},
"dependencies": {
"@heathmont/moon-base-tw": "workspace:^10.13.0",
"@heathmont/moon-cmdk-tw": "workspace:^10.13.0",
"@heathmont/moon-core-tw": "workspace:^10.13.0",
"@heathmont/moon-base-tw": "workspace:^10.13.1",
"@heathmont/moon-cmdk-tw": "workspace:^10.13.1",
"@heathmont/moon-core-tw": "workspace:^10.13.1",
"@heathmont/moon-icons-tw": "9.28.6",
"@heathmont/moon-themes-tw": "workspace:^10.13.0",
"@heathmont/moon-themes-tw": "workspace:^10.13.1",
"@types/node": "20.4.9",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.7",
Expand Down
11 changes: 11 additions & 0 deletions next-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 10.13.1

### Patch Changes

- Deploy 10.13.1
- Updated dependencies
- @heathmont/moon-core-tw@10.13.1
- @heathmont/moon-cmdk-tw@10.13.1
- @heathmont/moon-table-tw@10.13.1
- @heathmont/moon-themes-tw@10.13.1

## 10.13.0

### Minor Changes
Expand Down
10 changes: 5 additions & 5 deletions next-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-docs",
"version": "10.13.0",
"version": "10.13.1",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -19,9 +19,9 @@
"@heathmont/moon-assets": "workspace:^10.7.1",
"@heathmont/moon-charts": "workspace:^10.7.1",
"@heathmont/moon-components": "workspace:^10.7.1",
"@heathmont/moon-cmdk-tw": "workspace:^10.13.0",
"@heathmont/moon-cmdk-tw": "workspace:^10.13.1",
"@heathmont/moon-core": "workspace:^10.7.1",
"@heathmont/moon-core-tw": "workspace:^10.13.0",
"@heathmont/moon-core-tw": "workspace:^10.13.1",
"@heathmont/moon-datepicker": "workspace:^10.7.1",
"@heathmont/moon-draggabletable": "workspace:^10.7.1",
"@heathmont/moon-icons": "workspace:^10.7.1",
Expand All @@ -30,9 +30,9 @@
"@heathmont/moon-select": "workspace:^10.7.1",
"@heathmont/moon-sidebar": "workspace:^10.7.1",
"@heathmont/moon-table": "workspace:^10.7.1",
"@heathmont/moon-table-tw": "workspace:^10.13.0",
"@heathmont/moon-table-tw": "workspace:^10.13.1",
"@heathmont/moon-themes": "workspace:^10.7.1",
"@heathmont/moon-themes-tw": "workspace:^10.13.0",
"@heathmont/moon-themes-tw": "workspace:^10.13.1",
"@heathmont/moon-utils": "workspace:^10.7.1",
"@heathmont/moon-icons-tw": "9.28.6",
"@hookform/resolvers": "3.2.0",
Expand Down
13 changes: 8 additions & 5 deletions next-docs/pages/components/tagsInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ const PageTagsInput = () => {
>
<p>{text}</p>
<p>
These selected text entries are being dispalyed as tags. Tags represent a set of interactive keywords that help organise and categorise objects.
These selected text entries are being displayed as tags. Tags
represent a set of interactive keywords that help organize and
categorize objects.
</p>
<p>
Tags can be added by pressing the Enter key or removed by the mouse click from the input element.
Tags can be added by pressing the Enter key or removed by Backspace
key or the mouse click from the input element.
</p>
</ComponentPageDescription>

Expand Down Expand Up @@ -120,15 +123,15 @@ const PageTagsInput = () => {
type: '(value: string) => void;',
required: false,
default: '-',
description: 'The function to select the text and append it to the tag set.',
description:
'The function to select the text and append it to the tag set.',
},
{
name: 'onClear',
type: '(index: number) => void',
required: false,
default: '-',
description:
'The function to remove the selected tag.',
description: 'The function to remove the selected tag.',
},
]}
/>
Expand Down
Loading

0 comments on commit 20eb266

Please sign in to comment.