Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
3 changes: 2 additions & 1 deletion website/build-app/components/VersionSelector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import { Select } from '@/components/Select'

import lib from '../../../../lib/package.json'

const VERSION = 'v8'
const VERSION = 'v9'

const versions = [
{ label: `v${lib.version}`, value: VERSION },
{ label: 'v8', value: 'v8' },
{ label: 'v7', value: 'v7' },
{ label: 'v6', value: 'v6' },
{ label: 'v5', value: 'v5' },
Expand Down
2 changes: 0 additions & 2 deletions website/build-app/pages/foundations/getting-started.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
## Installation

## Installation

1 - Install the `welcome-ui` package and **peer dependencies** listed below:

```bash
Expand Down
17 changes: 0 additions & 17 deletions website/build-app/pages/foundations/theming/basics.mdx
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
# Basics

We expose a [theme object](https://github.com/WTTJ/welcome-ui/tree/main/packages/Core/src/theme/core.ts) for our customizable design system. You can easily customize colors, typography, breakpoints, etc to match with your design.

## Colors

Customize the color on the `theme.colors` object. Colors can be used for `color`, `borderColor`, `backgroundColor`, etc. Example of a color: `neutral-90`. [See more on github](https://github.com/WTTJ/welcome-ui/tree/main/packages/Core/src/theme/colors.ts)

```jsx
export default {
colors: {
// ...
'primary-40': '#FF0000',
'neutral-30': '#333',
'neutral-90': '#000',
custom: '#F12345',
// ...
},
}
```

### Primary

#### Neutral
Expand Down
2 changes: 1 addition & 1 deletion website/build-app/pages/foundations/upgrades/v9.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Remove file `styled.d.ts`

### 1. Upgrade your dependencies and add style files

[See documentation](lib/README.md)
[See documentation](https://welcome-ui.com/foundations/getting-started)

### 2. Script to migrate

Expand Down