3.6.0 • Published 3 months ago

@workwave-tidal/core v3.6.0

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 months ago

Tidal

This is the main npm package for tidal. Installing this package a user can access most of tidal's modules:

  • @workwave-tidal/components
  • @workwave-tidal/form-fairy
  • @workwave-tidal/form-ui
  • @workwave-tidal/hooks
  • @workwave-tidal/login-ui
  • @workwave-tidal/styles
  • @workwave-tidal/tidal

The bundle exports components using the same pattern of the re-exported packages:

// access all exported components from a single import.
// this import will prevent the bundler from pruning unused components
import { Button } from '@workwave-tidal/tidal/components'

// access directly a specific component
// this import will allow the bundler to prune unused components
import { Button } from '@workwave-tidal/tidal/components/Button'

// Typescript type definitions can be accessed only through the specific import pattern
// Remember to user `import type` when importing type definitions
import type { ButtonProps } from '@workwave-tidal/tidal/components/Button'

How to install

$ pnpm add @babel/core @emotion/react @emotion/styled @mui/material @mui/system @mui/utils react
$ pnpm add @workwave-tidal/tidal