3.0.0 • Published 8 months ago

@opensesameai/cell v3.0.0

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

OpenSesame Cell

A beautiful, ready-to-use chat interface component for React and Next.js applications.

Quick Start

npm install @opensesameai/cell

That's it! The package automatically configures itself during installation. Now you can use it in your app:

import { Cell } from '@opensesameai/cell';

function App() {
  return (
    <Cell 
      config={{
        primaryColor: "#6366f1",
        theme: "system"
      }}
    />
  );
}

Next.js App Router

For Next.js apps, use the CellWrapper component which includes the necessary client directive:

import { CellWrapper } from '@opensesameai/cell';

export default function Page() {
  return (
    <CellWrapper
      config={{
        primaryColor: "#6366f1",
        theme: "system"
      }}
    />
  );
}

Advanced Usage

Need more control? Use our React hook:

import { useCell } from '@opensesameai/cell';

function ChatComponent() {
  const { props, updateConfig } = useCell({
    initialConfig: {
      primaryColor: "#6366f1",
      theme: "system"
    }
  });

  return <Cell {...props} />;
}

Configuration

The component accepts these configuration options:

{
  primaryColor?: string;   // Any valid CSS color
  theme?: 'light' | 'dark' | 'system'; // Default: 'system'
}

Need Help?

Visit our documentation or GitHub repository for detailed guides and examples.

License

MIT

3.0.0

8 months ago

2.4.0

8 months ago

2.3.7

8 months ago

2.3.6

8 months ago

2.3.5

8 months ago

2.3.4

8 months ago

2.3.3

8 months ago

2.3.2

8 months ago

2.3.0

8 months ago

2.2.1

8 months ago

2.2.0

8 months ago

2.1.0

8 months ago

2.0.3

8 months ago

2.0.2

8 months ago

2.0.1

8 months ago

2.0.0

8 months ago

1.5.9

8 months ago

1.5.8

8 months ago

1.5.7

8 months ago

1.5.6

8 months ago

1.5.5

8 months ago

1.5.4

8 months ago

1.5.3

10 months ago

1.5.2

10 months ago

1.5.0

10 months ago

1.3.1

10 months ago

1.3.0

10 months ago

1.2.22

10 months ago

1.2.21

10 months ago

1.2.20

10 months ago

1.2.19

10 months ago

1.2.17

10 months ago

1.2.16

10 months ago

1.2.15

10 months ago

1.2.14

10 months ago

1.2.13

10 months ago

1.2.12

10 months ago

1.2.11

10 months ago

1.2.10

10 months ago

1.2.9

10 months ago

1.2.8

10 months ago

1.2.7

10 months ago

1.2.6

10 months ago

1.2.5

10 months ago

1.2.4

10 months ago

1.2.3

10 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.1.35

10 months ago

1.1.34

10 months ago

1.1.33

10 months ago

1.1.32

10 months ago

1.1.31

10 months ago

1.1.30

10 months ago

1.1.29

10 months ago

1.1.25

10 months ago

1.1.24

10 months ago

1.1.22

10 months ago

1.1.21

10 months ago

1.1.20

10 months ago

1.1.17

10 months ago

1.1.15

10 months ago

1.1.13

10 months ago

1.1.12

10 months ago

1.1.10

10 months ago

1.1.9

10 months ago

1.1.8

10 months ago

1.1.7

10 months ago

1.1.6

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago