Skip to content
/ ui Public

πŸ“¦ A set of opiniated, unstyled and accessible components

License

Notifications You must be signed in to change notification settings

studiometa/ui

This branch is 1 commit ahead of develop.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f97f534 Β· Mar 8, 2025
Jan 15, 2025
Jan 20, 2025
Mar 8, 2025
Jan 15, 2025
Jan 16, 2025
Jan 20, 2025
Oct 21, 2021
Jan 20, 2025
Mar 7, 2024
Mar 7, 2024
Jul 10, 2024
Jan 21, 2025
Nov 14, 2024
Sep 27, 2021
Jul 31, 2024
Jan 30, 2025
Jan 30, 2025
Mar 8, 2025
Mar 3, 2025
Jan 27, 2022
Jan 17, 2025
Jan 20, 2025
Nov 14, 2024
Jul 16, 2024
Sep 20, 2024
Jul 16, 2024

Repository files navigation

@studiometa/ui

NPM Version NPM Next Version Downloads Size Dependency Status Codecov

πŸ“¦ A set of opiniated, unstyled and accessible components based on @studiometa/js-toolkit

Installation

Install the latest version via NPM:

npm install @studiometa/ui

If you need the Twig template as well, install the Twig extension via Composer and load it in your application:

composer require studiometa/ui

Usage

Import the components from the package as needed:

import { Base, createApp } from '@studiometa/js-toolkit';
import { Modal } from '@studiometa/ui';

class App extends Base {
  static config = {
    name: 'App',
    components: {
      Modal,
    }
  }
}

export default createApp(App, document.body);

Heads up to ui.studiometa.dev for more informations.

Contributing

Please read the contribution docs.

Open in Gitpod