1.10.3 • Published 2 months ago

@wishket/design-system v1.10.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

Features

  • Steady Components. Frequently used Components based on the Atomic Design Pattern.
  • Storybook. You can explore the components in Storybook.

Getting Started

1. Install

Choose according to your environment.

yarn add @wishket/design-system
npm install @wishket/design-system
pnpm add @wishket/design-system

2. Default Setting in tailwind.config.ts

// tailwind.config.ts
import path from 'path';
import type { Config } from 'tailwindcss';

const config: Config = {
  content: [
    './src/app/**/*.{js,ts,jsx,tsx,mdx}',
    path.join(path.dirname(require.resolve('@wishket/design-system')), '**/*.{js,ts,jsx,tsx,mdx}'),
  ],
  presets: [require('@wishket/design-system/config')],
  plugins: [],
};

export default config;

Usage

//Home.tsx
import { Typography } from '@wishket/design-system';

export const Home  = () => {
  return (
      <Typography variant="title1" className='bg-w-cyan-500'>Hello, World!</Typography>
  );
}

export default Home;

Customize Theme in Config File

// tailwind.config.ts
import path from 'path';
import type { Config } from 'tailwindcss';
import colors from '@wishket/design-system/colors';

const config: Config = {
  // default config
  theme: {
    colors: {
      primary: colors.w_primary,
    },
  },
};

export default config;

Troubleshooting Color Imports

If you're having trouble importing colors from '@wishket/design-system/colors', please verify your TypeScript configuration:

  • Verify TypeScript version 5.0 or later
  • Check your tsconfig.json settings:
    {
      "compilerOptions": {
        "moduleResolution": "bundler",
        "module": "ESNext"
      }
    }
1.10.3

2 months ago

1.10.2

2 months ago

1.10.1

2 months ago

1.10.0

2 months ago

1.9.0

2 months ago

1.7.0

2 months ago

1.6.2

2 months ago

1.8.0

2 months ago

1.5.2

2 months ago

1.6.1

2 months ago

1.6.0

2 months ago

1.5.1

2 months ago

1.5.0

3 months ago

1.4.0

3 months ago

1.3.0

3 months ago

1.2.0

3 months ago

1.2.2

3 months ago

1.2.1

3 months ago

1.1.31

4 months ago

1.1.29

4 months ago

1.1.30

4 months ago

1.1.28

4 months ago

1.1.27

4 months ago

1.1.26

4 months ago

1.1.25

4 months ago

1.1.24

4 months ago

1.1.23

5 months ago

1.1.22

5 months ago

1.1.21

5 months ago

1.1.19

5 months ago

1.1.20

5 months ago

1.1.18

5 months ago

1.1.17

5 months ago

1.1.16

5 months ago

1.1.15

5 months ago

1.1.14

5 months ago

1.1.13

6 months ago

1.1.12

6 months ago

1.1.11

6 months ago

1.1.10

6 months ago

1.1.9

6 months ago

1.1.8

6 months ago

1.1.7

6 months ago

1.1.6

6 months ago

1.1.5

6 months ago

1.1.4

7 months ago

1.1.3

7 months ago

1.1.2

7 months ago

1.1.1

7 months ago

1.1.0

8 months ago

1.0.10

8 months ago

1.0.9

8 months ago

1.0.8

8 months ago

1.0.7

8 months ago

1.0.6

8 months ago

1.0.5

8 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago

0.15.0

9 months ago

0.14.1

9 months ago

0.14.0

9 months ago

0.13.0

9 months ago

0.8.4

10 months ago

0.10.1

10 months ago

0.10.0

10 months ago

0.8.1

11 months ago

0.8.0

11 months ago

0.8.3

10 months ago

0.8.2

10 months ago

0.11.0

10 months ago

0.9.0

10 months ago

0.7.6

11 months ago

0.7.4

11 months ago

0.7.3

11 months ago

0.7.5

11 months ago

0.7.2

11 months ago

0.7.1

11 months ago

0.7.0

11 months ago

0.6.0

11 months ago

0.5.4

12 months ago

0.5.3

12 months ago

0.5.0

12 months ago

0.5.2

12 months ago

0.5.1

12 months ago

0.3.0

1 year ago

0.4.0

1 year ago

0.1.0

1 year ago

0.2.0

1 year ago

0.0.1

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.4

1 year ago