evristica-ui
TypeScript icon, indicating that this package has built-in type declarations

0.0.17 • Public • Published

npm

npm i @emotion/styled @emotion/react @euristica/ui --save

yarn

yarn add @emotion/styled @emotion/react @euristica/ui

Demo

guide basics

  • the guide is made using @emotion and typescript

usage

themes

import React, { useState } from "react";
import styled from "@emotion/styled";
import { ThemeProvider } from "@emotion/react";
import { themes } from "@evristica/ui";

const Layout = () => {
    const { theme, setTheme } = useState("default");
    const CurrentTheme = themes[theme];

    return (
        <ThemeProvider theme={themes[theme]}>
            <App />
        </ThemeProvider>
    )
};

two themes are now available (default and dark), but you can create your own

components

    import { Container, Label, Input, Datepicker //and more } from "@evristica/ui";
    
    const MyComponent = () => {
        return (
            <Input
                label="Some input"
                value={someValue}
                onChange={e => handler(e.target.value)}
            />
        )
    }
}

ssr

    import { ServerStyleSheet, StyleSheetManager } from "styled-components";
    const sheet = new ServerStyleSheet();
    
    // tags need to be added to html markup
    const styleTags = sheet.getStyleElement();
    
    const HtmlContent = <StyleSheetManager sheet={sheet.instance}>
        <App />
    </StyleSheetManager>

documentation

more complete documentation will come later

Package Sidebar

Install

npm i evristica-ui

Weekly Downloads

1

Version

0.0.17

License

MIT

Unpacked Size

637 kB

Total Files

389

Last publish

Collaborators

  • sergey.mishin