0.5.2 • Published 10 months ago

beeblebrix-ui v0.5.2

Weekly downloads
-
License
ISC
Repository
bitbucket
Last release
10 months ago

Ark-UI

Ark-UI is component library for React JS.

Configuration

Add Dependency file in your project. (ex:Dependencies.ts) Then import as below;

import { Ark } from "ark-ui";

Extract necessary elements;

const buildComponent = Ark.hocs.buildComponent;
const components = Ark.components;

You can choose which theme and components variant will be used. To do that use buildComponent hoc for choosing variant of components then export them.

export const Button = buildComponent(components.button.getDefaultProfile());

Using Components

After configuring and exporting components you can use them anywhere. But you must import them first then you can use like as below.

import { Button } from "./Dependencies";

const App = () => {
  return (
    <div>
      <Button
        variant="tertiary"
        onClick={() => {
          alert("test");
        }}
      >
        test
      </Button>
    </div>
  );
};

Using Theme

To using theme like light or dark you should define context like below. If you want to change the theme or another config, all you have to do is change the state on moment you want.

const [configs, setConfigs] = useState({
  theme: Beeblebrix.themes.dark.default,
});

 const setThemeAsDark = () => {
    setConfigs({...configs, theme: Ark.base.themes.dark.default});
  }

return (
  <AppContext.Provider value={{ configs }}>
    <Button variant="primary">Primary</Button>
    <Button variant="secondary">Secondary</Button>
    <Button variant="tertiary">Tertiary</Button>
    <Button variant="primary" onClick={setThemeAsDark}>Set Theme As Dark</Button>
  </AppContext.Provider>
);
0.3.2

10 months ago

0.3.1

10 months ago

0.3.3

10 months ago

0.2.74

11 months ago

0.2.73

11 months ago

0.2.72

11 months ago

0.2.71

11 months ago

0.2.70

11 months ago

0.2.79

11 months ago

0.2.78

11 months ago

0.2.77

11 months ago

0.2.76

11 months ago

0.2.75

11 months ago

0.4.5

10 months ago

0.4.4

10 months ago

0.4.7

10 months ago

0.4.6

10 months ago

0.4.1

10 months ago

0.4.3

10 months ago

0.4.2

10 months ago

0.2.69

11 months ago

0.2.68

11 months ago

0.2.67

11 months ago

0.2.66

11 months ago

0.5.2

10 months ago

0.2.63

11 months ago

0.2.62

11 months ago

0.2.61

11 months ago

0.1.10

11 months ago

0.2.60

11 months ago

0.1.11

11 months ago

0.1.12

11 months ago

0.1.13

11 months ago

0.1.14

11 months ago

0.1.15

11 months ago

0.2.27

11 months ago

0.2.26

11 months ago

0.2.25

11 months ago

0.2.24

11 months ago

0.2.23

11 months ago

0.2.22

11 months ago

0.2.65

11 months ago

0.2.21

11 months ago

0.2.64

11 months ago

0.2.20

11 months ago

0.2.19

11 months ago

0.2.18

11 months ago

0.2.17

11 months ago

0.2.52

11 months ago

0.2.51

11 months ago

0.2.50

11 months ago

0.2.16

11 months ago

0.2.59

11 months ago

0.2.15

11 months ago

0.2.58

11 months ago

0.2.14

11 months ago

0.2.57

11 months ago

0.2.13

11 months ago

0.2.56

11 months ago

0.2.12

11 months ago

0.2.55

11 months ago

0.2.11

11 months ago

0.2.54

11 months ago

0.2.10

11 months ago

0.2.53

11 months ago

0.1.2

11 months ago

0.1.8

11 months ago

0.1.7

11 months ago

0.1.9

11 months ago

0.1.4

11 months ago

0.1.3

11 months ago

0.1.6

11 months ago

0.1.5

11 months ago

0.2.41

11 months ago

0.2.40

11 months ago

0.2.49

11 months ago

0.2.48

11 months ago

0.2.47

11 months ago

0.2.46

11 months ago

0.2.45

11 months ago

0.2.44

11 months ago

0.2.43

11 months ago

0.2.42

11 months ago

0.2.39

11 months ago

0.2.30

11 months ago

0.1.20

11 months ago

0.1.21

11 months ago

0.1.22

11 months ago

0.1.23

11 months ago

0.1.24

11 months ago

0.2.38

11 months ago

0.2.37

11 months ago

0.2.36

11 months ago

0.2.35

11 months ago

0.2.34

11 months ago

0.2.33

11 months ago

0.2.32

11 months ago

0.2.31

11 months ago

0.2.29

11 months ago

0.2.28

11 months ago

0.2.7

11 months ago

0.1.16

11 months ago

0.2.6

11 months ago

0.1.17

11 months ago

0.2.9

11 months ago

0.1.18

11 months ago

0.2.8

11 months ago

0.1.19

11 months ago

0.2.3

11 months ago

0.2.5

11 months ago

0.2.4

11 months ago

0.1.1

1 year ago

0.1.0

1 year ago