Skip to content

Commit

Permalink
Merge pull request #2496 from coingaming/develop
Browse files Browse the repository at this point in the history
Deploy 10.10.7
  • Loading branch information
dkireev authored Nov 16, 2023
2 parents c39cdf3 + fb9ce2e commit 4119a7c
Show file tree
Hide file tree
Showing 42 changed files with 21,773 additions and 16,236 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.10.7

### Patch Changes

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

## 10.10.6

### Patch 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.10.6",
"version": "10.10.7",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -11,11 +11,11 @@
"lint": "next lint"
},
"dependencies": {
"@heathmont/moon-base-tw": "workspace:^10.10.6",
"@heathmont/moon-cmdk-tw": "workspace:^10.10.6",
"@heathmont/moon-core-tw": "workspace:^10.10.6",
"@heathmont/moon-base-tw": "workspace:^10.10.7",
"@heathmont/moon-cmdk-tw": "workspace:^10.10.7",
"@heathmont/moon-core-tw": "workspace:^10.10.7",
"@heathmont/moon-icons-tw": "9.28.6",
"@heathmont/moon-themes-tw": "workspace:^10.10.6",
"@heathmont/moon-themes-tw": "workspace:^10.10.7",
"@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.10.7

### Patch Changes

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

## 10.10.6

### Patch 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.10.6",
"version": "10.10.7",
"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.10.6",
"@heathmont/moon-cmdk-tw": "workspace:^10.10.7",
"@heathmont/moon-core": "workspace:^10.7.1",
"@heathmont/moon-core-tw": "workspace:^10.10.6",
"@heathmont/moon-core-tw": "workspace:^10.10.7",
"@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.10.6",
"@heathmont/moon-table-tw": "workspace:^10.10.7",
"@heathmont/moon-themes": "workspace:^10.7.1",
"@heathmont/moon-themes-tw": "workspace:^10.10.6",
"@heathmont/moon-themes-tw": "workspace:^10.10.7",
"@heathmont/moon-utils": "workspace:^10.7.1",
"@heathmont/moon-icons-tw": "9.28.6",
"@hookform/resolvers": "3.2.0",
Expand Down
8 changes: 7 additions & 1 deletion next-docs/pages/components/progress.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
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 Customisation from '../../public/examples/progress/Customisation';
import Default from '../../public/examples/progress/Default';
import Sizes from '../../public/examples/progress/Sizes';
import Values from '../../public/examples/progress/Values';
import WithLabels from '../../public/examples/progress/WithLabels';
import WithPin from '../../public/examples/progress/WithPin';
import useComponent from '../../utils/useComponent';
import type { ComponentNames } from '../../components/getComponent';

const COMPONENT_NAME: ComponentNames = 'Progress';

Expand Down Expand Up @@ -50,6 +51,11 @@ const PageProgress = () => {
preview={<WithPin />}
code={examples ? examples.WithPin : 'Loading'}
/>
<Preview
title="Progress with Labels"
preview={<WithLabels />}
code={examples ? examples.WithLabels : 'Loading'}
/>
<PropsTable
title="Progress props"
data={[
Expand Down
6 changes: 6 additions & 0 deletions next-docs/pages/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import Editable from '../../public/examples/table/Editable';
import ExpandableCheckboxes from '../../public/examples/table/ExpandableCheckboxes';
import ExpandedRows from '../../public/examples/table/ExpandedRows';
import ExpandedWithKeepState from '../../public/examples/table/ExpandedWithKeepState';
import ExtraLongDataView from '../../public/examples/table/ExtraLongDataView';
import LongData from '../../public/examples/table/LongData';
import MiniMap from '../../public/examples/table/MiniMap';
import RowGaps from '../../public/examples/table/RowGaps';
Expand Down Expand Up @@ -159,6 +160,11 @@ const PageTable = () => {
preview={<CustomColumnWidths />}
code={examples ? examples.CustomColumnWidths : 'Loading'}
/>
<Preview
title="Extra long data viewing"
preview={<ExtraLongDataView />}
code={examples ? examples.ExtraLongDataView : 'Loading'}
/>
<PropsTable
title="Table props"
data={[
Expand Down
14 changes: 14 additions & 0 deletions next-docs/public/examples/progress/WithLabels.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Progress } from '@heathmont/moon-core-tw';

const Example = () => (
<div className="flex flex-col w-full gap-1 text-moon-10-caption font-medium uppercase">
<div className="flex gap-1 justify-between">
<span>0%</span>
<span>100%</span>
</div>
<Progress value={75} />
<span className="text-center">Progress Title</span>
</div>
);

export default Example;
Loading

0 comments on commit 4119a7c

Please sign in to comment.