Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@geowiki/ui

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@geowiki/ui

Comprehensive React UI component library for GeoWiki applications, built with Radix UI primitives and Tailwind CSS.

latest
npmnpm
Version
0.16.9-dev.28
Version published
Maintainers
1
Created
Source

@geowiki/ui

Comprehensive React UI component library for GeoWiki applications, built with Radix UI primitives and Tailwind CSS.

Installation

npm install @geowiki/ui
# or
pnpm add @geowiki/ui

Peer Dependencies

npm install react react-dom next next-auth react-hook-form leaflet react-leaflet @react-leaflet/core @tanstack/react-query classnames cookies-next @geowiki/api-proxy @geowiki/cms-proxy @geowiki/evoland-api-proxy

CSS Setup

Import the pre-built Tailwind CSS file in your app entry point:

import "@geowiki/ui/styles.css";

Note: This CSS includes Tailwind components and utilities layers. Your app should provide @tailwind base and define the required CSS custom properties (theme variables) for colors, fonts, and spacing. See the Tailwind Config section below.

Usage

import { Button, Input, Dialog, DataTable } from "@geowiki/ui";

function MyForm() {
  return (
    <div>
      <Input placeholder="Enter your name" />
      <Button>Submit</Button>
    </div>
  );
}

What's Included

  • Radix UI primitives -- 100+ accessible components: Accordion, AlertDialog, Button, Checkbox, Dialog, DropdownMenu, Form, Input, Popover, Select, Tabs, Toast, Tooltip, and more
  • Custom components -- MultiSelect, RichTextContent, Pagination, NewsCard, Gallery, FAQ, Carousel, Testimonials, Tags, Breadcrumb
  • Layouts -- AdminLayout, MapLayout, Navbar variants
  • Design tokens -- CSS variable-based theming for colors, typography, and spacing

Tailwind Config

This library uses CSS custom properties for theming. Your app's Tailwind config should extend the shared GeoWiki config, or define these CSS variables:

:root {
  --primary: #your-color;
  --secondary: #your-color;
  --background: #your-color;
  --foreground: #your-color;
  /* ... see tailwind-config package for full list */
}

License

MIT

FAQs

Package last updated on 12 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts