power-props v0.15.0
─=≡Σ༼ つ ▀ _▀ ༽つ power-props
Some nice Styled Components props for making snazzy type-safe, themed building blocks using Typescript
Installation
yarn add power-props styled-components # or npm install power-props styled-components
yarn add -D @types/styled-components # or npm install --save-dev @types/styled-componentsBasic Usage
// in your Theme.ts file
import { PowerProps, ThemedProps } from 'power-props';
export const {
/*
* 👇 your theme ie. the first argument to the PowerProps function,
* which is passed to the styled-components ThemeProvider
*/
theme,
css, // 👈 a css function with your theme baked in
styled, // 👈 a styled function with your theme baked in
useTheme, // 👈 a useTheme hook with your theme baked in
// 👇 these are the basic building blocks
baseLayout,
baseRowLayout,
baseColumnLayout,
baseTypography,
spacer,
divider,
} = PowerProps(
// 👇 this is your main app theme, it is returned from the PowerProps function (see `theme` above 👆)
{
// be descriptive when describing your color names
colors: { brand: 'red' },
/*
* sizes can be described in any way, we've found it useful to use
* a hybrid of t-shirt sizing / numeric value to provid both context
* and detail
*/
sizes: {
's-10': 12,
'm-18': 18,
'l-24': 24,
},
fonts: {
mono: {
light: 'monospace 300',
regular: 'monospace 500',
bold: 'monospace 700',
},
'sans-serif': {
light: 'sans-serif 300',
regular: 'sans-serif 500',
bold: 'sans-serif 700',
},
},
grid: 8,
},
// 👇 these are your theme defaults, the values that are used as fallbacks if no value is entered
{
color: 'brand',
font: 'mono',
weight: 'regular',
sizes: {
font: 'm-18',
px: 'l-24',
py: 'm-18',
radius: 's-10',
},
}
);
/**
* export the types of your theme to be used when making
* your UI building blocks
*/
type Theme = typeof theme;
type TP = ThemedProps<Theme>;
export type LayoutProps = TP['LayoutProps'];
export type TypographyProps = TP['TypographyProps'];
export type SpacerProps = TP['SpacerProps'];
export type DividerProps = TP['DividerProps'];
export type Color = TP['Colors'];
export type Size = TP['Sizes'];
export type Font = TP['Fonts'];
export type Weight = TP['Weights'];
export type DebugProps = TP['DebugProps'];Dev
This package uses tsdx, so some of the instructions for development are left below.
Commands
TSDX scaffolds your new library inside /src.
To run TSDX, use:
yarn start # or npm startThis builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.
To do a one-off build, use npm run build or yarn build.
To run tests, use npm test or yarn test.
Configuration
Code quality is set up for you with prettier, husky, and lint-staged. Adjust the respective fields in package.json accordingly.
Jest
Jest tests are set up to run with npm test or yarn test.
Bundle Analysis
size-limit is set up to calculate the real cost of your library with npm run size and visualize the bundle with npm run analyze.
Rollup
TSDX uses Rollup as a bundler and generates multiple rollup configs for various module formats and build settings. See Optimizations for details.
TypeScript
tsconfig.json is set up to interpret dom and esnext types, as well as react for jsx. Adjust according to your needs.
Continuous Integration
GitHub Actions
Two actions are added by default:
mainwhich installs deps w/ cache, lints, tests, and builds on all pushes against a Node and OS matrixsizewhich comments cost comparison of your library on every pull request usingsize-limit
Optimizations
Please see the main tsdx optimizations docs. In particular, know that you can take advantage of development-only optimizations:
// ./types/index.d.ts
declare var __DEV__: boolean;
// inside your code...
if (__DEV__) {
console.log('foo');
}You can also choose to install and use invariant and warning functions.
Module Formats
CJS, ESModules, and UMD module formats are supported.
The appropriate paths are configured in package.json and dist/index.js accordingly. Please report if any issues are found.
Named Exports
Per Palmer Group guidelines, always use named exports. Code split inside your React app instead of your React library.
Publishing to NPM
We recommend using np.