Skip to content

Commit

Permalink
chore: bump version to 10.17.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dkireev committed Oct 2, 2024
1 parent 3e9b5ab commit 772238f
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 36 deletions.
6 changes: 0 additions & 6 deletions .changeset/grumpy-pandas-dress.md

This file was deleted.

File renamed without changes.
2 changes: 0 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Contributing

Thanks for your interest in contributing to Moon Light Design System!

Please take a moment to review this document **before submitting a pull request**.
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
pnpm run build
```

3. Run storybook for development:
3. Run storybook for development at `localhost:3000`:

```sh
pnpm run doc dev
Expand All @@ -36,9 +36,6 @@

```sh
pnpm run doc build
```

```sh
pnpm run doc start
```

Expand Down
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# docs

## 10.17.4

### Patch Changes

- 3e9b5ab: fix: fix autoslide and selected index scroll [MDS-1320]
- Updated dependencies [3e9b5ab]
- @heathmont/moon-core-tw@10.17.4

## 10.17.3

### Patch Changes
Expand Down
19 changes: 12 additions & 7 deletions docs/components/MDX.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ const defaultComponents: ComponentProps<any> = {
/>
),
h2: (props: HTMLProps<HTMLHeadingElement>) => (
<h2 {...props} className="text-lg font-semibold ps-4">
<h2 {...props} className="text-moon-24 font-semibold">
{props.children}
</h2>
),
h3: (props: HTMLProps<HTMLHeadingElement>) => (
<h3 {...props} className="text-base font-semibold ps-8">
<h3 {...props} className="text-base font-semibold">
{props.children}
</h3>
),
Expand All @@ -36,7 +36,7 @@ const defaultComponents: ComponentProps<any> = {
</span>
),
ul: (props: HTMLProps<HTMLUListElement>) => (
<ul {...props} className="list-disc ps-12 mb-6">
<ul {...props} className="list-disc ps-4 mb-6">
{props.children}
</ul>
),
Expand All @@ -49,18 +49,23 @@ const defaultComponents: ComponentProps<any> = {
const { type, ...rest } = props;

return (
<ol {...rest} className="list-decimal ps-12 gap-2 flex flex-col">
<ol {...rest} className="list-decimal ps-4 gap-2 flex flex-col">
{props.children}
</ol>
);
},
code: (props: HTMLProps<HTMLPreElement>) => (
<code
<code {...props} className="p-1 bg-gohan rounded-md text-bulma font-mono">
{props.children}
</code>
),
pre: (props: HTMLProps<HTMLPreElement>) => (
<pre
{...props}
className="p-1 bg-gohan rounded-md text-moon-14 text-bulma font-mono"
className="theme-moon-dark bg-gohan rounded-md text-bulma overflow-y-auto p-4"
>
{props.children}
</code>
</pre>
),
};

Expand Down
4 changes: 1 addition & 3 deletions docs/generated/contribution.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
const Contribution = `# Contributing
Thanks for your interest in contributing to Moon Light Design System!
const Contribution = `Thanks for your interest in contributing to Moon Light Design System!
Please take a moment to review this document **before submitting a pull request**.
Expand Down
5 changes: 1 addition & 4 deletions docs/generated/installation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Installation = `# Moon Light Design System
pnpm run build
\`\`\`
3. Run storybook for development:
3. Run storybook for development at \`localhost:3000\`:
\`\`\`sh
pnpm run doc dev
Expand All @@ -36,9 +36,6 @@ const Installation = `# Moon Light Design System
\`\`\`sh
pnpm run doc build
\`\`\`
\`\`\`sh
pnpm run doc start
\`\`\`
Expand Down
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "10.17.3",
"version": "10.17.4",
"private": true,
"license": "MIT",
"scripts": {
Expand All @@ -25,10 +25,10 @@
"dependencies": {
"@heathmont/moon-base-tw": "workspace:^10.17.3",
"@heathmont/moon-cmdk-tw": "workspace:^10.17.3",
"@heathmont/moon-core-tw": "workspace:^10.17.3",
"@heathmont/moon-core-tw": "workspace:^10.17.4",
"@heathmont/moon-icons-tw": "^9.29.3",
"@heathmont/moon-table-v8-tw": "workspace:^10.17.3",
"@heathmont/moon-themes-tw": "^10.17.3",
"@heathmont/moon-themes-tw": "workspace:^10.17.3",
"@hookform/resolvers": "^3.3.2",
"commander": "^11.1.0",
"next": "14.0.3",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @heathmont/moon-core-tw

## 10.17.4

### Patch Changes

- 3e9b5ab: fix: fix autoslide and selected index scroll [MDS-1320]

## 10.17.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heathmont/moon-core-tw",
"sideEffects": false,
"version": "10.17.3",
"version": "10.17.4",
"files": [
"lib"
],
Expand Down
24 changes: 18 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 772238f

Please sign in to comment.