0.7.2 • Published 11 months ago

@collabland/core-ui v0.7.2

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@collabland/core-ui

Abridged Collab.land core UI

Install

npm install @collabland/core-ui --save

or

yarn add @collabland/core-ui

Collabland core UI components usage

import { Button } from '@collabland/core-ui';

return (
  <Button
    disabled={false}
    id="btn-id"
    name="btn-name"
    onClick={() => {}}
    fullWidth={false}
    size="medium" // 'small' | 'medium' | 'large'
    theme="primary" // 'primary' | 'secondary'
  >
    I am Button
  </Button>
);
import { Footer } from '@collabland/core-ui';

return <Footer />;
import { Header } from '@collabland/core-ui';

return <Header />;
import { NewLoading } from '@collabland/core-ui';

return <NewLoading />;
import { Navbar } from '@collabland/core-ui';

return (
  <Navbar>
    <CustomerComponent />
  </Navbar>
);
import { PopupModal } from '@collabland/core-ui';

return (
  <PopupModal>
    <CustomerComponent />
  </PopupModal>
);
import { Toast } from '@collabland/core-ui';

return (
  <Toast
    isSucceed={true}
    toastMessage={'Successed'}
    handelClose= () => {}
  />
);
import { Axie } from '@collabland/core-ui';

return <Axie width="100px" height="100px" />;
import { Input } from '@collabland/core-ui';

return <Input />;

Development

npm install
npm run storybook

Build

npm run build

Publish

npm publish

Changelog

  • 0.7.2 Update loading component
  • 0.7.1 Update Header content
  • 0.7.0 Add MarketCardComponent
  • 0.6.8 Add new icon Update HeaderComponent Update FooterComponent Update Navbar
  • 0.6.7 Add delegate cash icons fixed SVG issue
  • 0.6.5 Add solana & near icons Update footer component
  • 0.6.4 Add new wallet icons
  • 0.6.3 update footer style
  • 0.6.1 update svg attr name
  • 0.6.0 Added text input component Added some wallet icons Update Header style
  • 0.4.0 Update style
  • 0.3.0 Export Icons component
  • 0.1.0 Fist time commit the collab core ui
0.7.2

11 months ago

0.7.1

12 months ago

0.6.8

1 year ago

0.7.0

1 year ago

0.6.7

1 year ago

0.6.6

1 year ago

0.6.5

1 year ago

0.6.4

1 year ago

0.6.3

1 year ago

0.6.2

1 year ago

0.6.1

1 year ago

0.6.0

1 year ago

0.5.0

1 year ago

0.4.0

1 year ago

0.3.0

1 year ago

0.2.0

1 year ago