npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@murilo.matias/liquid-ai-components

v0.1.3

Published

## Introdução

Downloads

2

Readme

@liquidpass/liquid-ai-components

Introdução

O RisKnow Components é uma biblioteca de componentes React e ícones no padrão do Design System da RisKnow. É feita com base nos componentes do Material UI, que foram modificados para ficar com o estilo desejado. É importante ter um bom entendimento sobre como a modificação do tema padrão do Material UI é feita.

Data da última revisão do README: 20/04/2023. Revisado por: Gabriel Kauer

Utilização

Para utilizar os componentes dentro da aplicação, adicione a biblioteca como dependência:

"dependencies": {
  "@liquidpass/liquid-ai-components": "^x.x.x",
}

Obs: a versão do pacote deve estar de acordo.

E então importe os componentes que deseja usar dentro do seu código:

import { RknTypography } from "@liquidpass/liquid-ai-components";

function App() {
  return <RknTypography>Texto RisKnow</RknTypography>;
}

Todos os componentes possuem a mesma API das suas versões-base no Material UI, e podem ser customizados usando a prop sx:

import { RknTypography } from "@liquidpass/liquid-ai-components";

function App() {
  return (
    <RknTypography
      sx={{
        color: "rgba(33, 36, 42, 1)",
        fontSize: "14px",
        borderTop: "1px solid rgba(0, 0, 0, 1)",
        px: 1,
      }}
    >
      Texto RisKnow
    </RknTypography>
  );
}

Desenvolvimento

Você pode iniciar o storybook rodando o comando abaixo na pasta raíz do repositório:

yarn dev:risknow-components

Adicionando novos componentes

Comece criando uma pasta para o componente dentro de src/components. Dentro dela, crie um arquivo NomeDoComponent.tsx:

// NomeDoComponent/NomeDoComponent.tsx
import React from "react";

type NomeDoComponentProps = {
  // Declaração de props aqui
};

export default function NomeDoComponent(props: NomeDoComponentProps) {
  return <>Meu componente</>;
}

Obs: ao criar ícones, crie dentro da pasta src/icons.

Geralmente ele irá extender um component do Material UI:

// components/NomeDoComponent/NomeDoComponent.tsx
import React from "react";
import { Box, BoxProps } from "@mui/material";

interface NomeDoComponentProps extends BoxProps {
  myCustomProp: string;
}

export default function NomeDoComponent(props: NomeDoComponentProps) {
  return (
    <Box sx={{ backgroundColor: "rgba(255, 238, 221, 1)" }} myCustomProp="Foo">
      Meu component
    </Box>
  );
}

É necessário criar um arquivo index.js que faça o export do componente para fora da pasta:

// components/MyComponent/index.ts
export { default } from "./NomeDoComponent";

Em seguida, é necessário declarar o componente recém-criado dentro do index.js da biblioteca:

// components/index.ts
export { default as NomeDoComponent } from "./NomeDoComponent";

Com isso, o componente está pronto para ser usado. Basta realizar o build da biblioteca, rodando o comando abaixo na pasta raíz do repositório:

yarn build:risknow-components

É recomendado criar um story para o component para que ele seja mais facilmente testado e visualizado:

// components/NomeDoComponent/NomeDoComponent.stories.tsx
import React from "react";
import NomeDoComponent from "./NomeDoComponent";

export default {
  title: "NomeDoComponent",
  component: NomeDoComponent,
  argTypes: {
    myCustomProp: {
      control: "boolean",
    },
  },
};

const Template = (args: { [key: string]: any }) => (
  <>
    <RknComponent {...args} />
  </>
);

export const MyStory = Template.bind({});

MyStory.decorators = [(Story: any) => <Story />];

MyStory.args = {
  children: "Meu componente",
  myCustomProps: true,
};

Geralmente, um componente é feito tendo variações de tema. Neste caso, use o themeProvider:

// components/NomeDoComponent/NomeDoComponent.stories.tsx
import React from "react";
import NomeDoComponent from "./NomeDoComponent";
import { ThemeProvider } from "@mui/material";
import { themes } from "@liquidpass/liquid-ai-components";

export default {
  title: "NomeDoComponent",
  component: NomeDoComponent,
  argTypes: {
    myCustomProp: {
      control: "boolean",
    },
  },
};

const Template = (args: { [key: string]: any }) => (
  <>
    <RknComponent {...args} />
  </>
);

export const MyStory = Template.bind({});

MyStory.decorators = [
  (Story: any) => (
    <ThemeProvider theme={themes.Green}>
      <Story />
    </ThemeProvider>
  ),
];

MyStory.args = {
  children: "Meu component",
  myCustomProps: true,
};

Desta forma será possível adicionar estilos específicos para o componente em um determinado tema:

// components/NomeDoComponent/Themes/Green.ts
export const MuiBox = {
  styleOverrides: {
    root: {
      borderColor: "rgba(161, 168, 207, 1)",
    },
  },
};

Para mais detalhes sobre como criar estilos para dependentes de tema para os components, verifique a documentação do Material UI.