Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy 10.7.2 #2369

Merged
merged 7 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# docs

## 0.5.2

### Patch Changes

- Deploy 10.7.2
- Updated dependencies
- @heathmont/moon-core-tw@10.7.2
- @heathmont/moon-base-tw@10.7.2

## 0.5.1

### Patch Changes
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": "0.5.1",
"version": "0.5.2",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,8 +9,8 @@
"lint": "next lint"
},
"dependencies": {
"@heathmont/moon-base-tw": "workspace:^10.7.1",
"@heathmont/moon-core-tw": "workspace:^10.7.1",
"@heathmont/moon-base-tw": "workspace:^10.7.2",
"@heathmont/moon-core-tw": "workspace:^10.7.2",
"@heathmont/moon-icons-tw": "9.28.4",
"@types/node": "20.4.9",
"@types/react": "18.2.19",
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.7.2

### Patch Changes

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

## 10.7.1

### Patch Changes
Expand Down
5 changes: 5 additions & 0 deletions next-docs/components/themes/useThemes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type Themes = {
tradeart: ColorModes;
tradeartMiniBetting: ColorModes;
travel: ColorModes;
pay: ColorModes;
};

export const themes: Themes = {
Expand Down Expand Up @@ -80,6 +81,10 @@ export const themes: Themes = {
dark: 'theme-travel-light',
light: 'theme-travel-light',
},
pay: {
dark: 'theme-pay-light',
light: 'theme-pay-light',
},
};

export type Brand = keyof Themes;
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.7.1",
"version": "10.7.2",
"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.7.1",
"@heathmont/moon-cmdk-tw": "workspace:^10.7.2",
"@heathmont/moon-core": "workspace:^10.7.1",
"@heathmont/moon-core-tw": "workspace:^10.7.1",
"@heathmont/moon-core-tw": "workspace:^10.7.2",
"@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.7.1",
"@heathmont/moon-table-tw": "workspace:^10.7.2",
"@heathmont/moon-themes": "workspace:^10.7.1",
"@heathmont/moon-themes-tw": "workspace:^10.7.1",
"@heathmont/moon-themes-tw": "workspace:^10.7.2",
"@heathmont/moon-utils": "workspace:^10.7.1",
"@heathmont/moon-icons-tw": "9.28.5",
"@hookform/resolvers": "3.2.0",
Expand Down
9 changes: 8 additions & 1 deletion next-docs/pages/components/button.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ReactNode } from 'react';
import Preview from '../../components/codePreview/Preview';
import ComponentPageDescription from '../../components/ComponentPageDescription';
import type { ComponentNames } from '../../components/getComponent';
import Layout from '../../components/Layout';
import PropsTable from '../../components/PropsTable';
import Animations from '../../public/examples/button/Animations';
Expand All @@ -9,10 +10,10 @@ import Default from '../../public/examples/button/Default';
import Disabled from '../../public/examples/button/Disabled';
import FullWidth from '../../public/examples/button/FullWidth';
import Icons from '../../public/examples/button/Icons';
import Multiline from '../../public/examples/button/Multiline';
import Sizes from '../../public/examples/button/Sizes';
import Variants from '../../public/examples/button/Variants';
import useComponent from '../../utils/useComponent';
import type { ComponentNames } from '../../components/getComponent';

const COMPONENT_NAME: ComponentNames = 'Button';

Expand Down Expand Up @@ -79,6 +80,12 @@ const PageButton = () => {
preview={<Animations />}
code={examples ? examples.Animations : 'Loading'}
/>
<Preview
title="Multiline"
description="Multiline button exists in XL size only. Please copy and paste the code below to see the result."
preview={<Multiline />}
code={examples ? examples.Multiline : 'Loading'}
/>
<PropsTable
title="Button props"
data={[
Expand Down
16 changes: 4 additions & 12 deletions next-docs/pages/components/circularProgress.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { ReactNode } from 'react';
import Preview from '../../components/codePreview/Preview';
import ComponentPageDescription from '../../components/ComponentPageDescription';
import type { ComponentNames } from '../../components/getComponent';
import Layout from '../../components/Layout';
import PropsTable from '../../components/PropsTable';
import Colors from '../../public/examples/circularProgress/Colors';
import Default from '../../public/examples/circularProgress/Default';
import Sizes from '../../public/examples/circularProgress/Sizes';
import Values from '../../public/examples/circularProgress/Values';
import useComponent from '../../utils/useComponent';
import type { ComponentNames } from '../../components/getComponent';

const COMPONENT_NAME: ComponentNames = 'CircularProgress';

Expand All @@ -19,7 +19,6 @@ const PageCircularProgress = () => {
<ComponentPageDescription
title={name}
image={image}
isInProgress
isRtlSupport
isAriaSupport
>
Expand Down Expand Up @@ -49,18 +48,11 @@ const PageCircularProgress = () => {
title="Progress props"
data={[
{
name: 'bgColor',
type: 'string',
required: false,
default: 'stroke-trunks/[.24]',
description: 'Background colour',
},
{
name: 'progressColor',
name: 'className',
type: 'string',
required: false,
default: 'stroke-piccolo',
description: 'Progress bar colour',
default: '-',
description: 'Tailwind classes for custom styles.',
},
{
name: 'size',
Expand Down
14 changes: 14 additions & 0 deletions next-docs/public/examples/button/Multiline.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Button } from '@heathmont/moon-core-tw';

const Example = () => (
<Button size="xl" className="py-3">
<span className="flex flex-col gap-1">
<span className="leading-none">Button text</span>
<span className="text-moon-9 font-normal leading-[12px]">
Placeholder text
</span>
</span>
</Button>
);

export default Example;
Loading