nowo-tech/ui-kit-bundle

Canonical Nowo admin UI kit for Symfony: Twig macros, semantic nowo-ui-* CSS, pagination/tabs/modals, multi-framework class helpers (REQ-UI-001).

Maintainers

Package info

github.com/nowo-tech/UiKitBundle

Homepage

Documentation

Language:Shell

Type:symfony-bundle

pkg:composer/nowo-tech/ui-kit-bundle

Transparency log

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.3.0 2026-08-03 13:01 UTC

This package is auto-updated.

Last update: 2026-08-04 04:52:58 UTC


README

CI Packagist Version Packagist Downloads License PHP Symfony GitHub stars Coverage

Found this useful? Install from Packagist · Give it a star on GitHub so more developers can find it.

Canonical admin UI kit for Nowo Symfony bundles and host apps: Twig macros, semantic nowo-ui-* CSS, pagination/tabs/modals, shell chrome (aside / burger / avatar / user menu / footer), and multi-framework class helpers (bootstrap5, tailwind, foundation, custom, …) per REQ-UI-001.

Compatible with Symfony 6.x, 7.4+, and 8.x (PHP 8.1+; Symfony 8 requires PHP 8.4+).

FrankenPHP Friendly Worker Mode

This bundle is FrankenPHP worker mode friendly.

Table of contents

What this is / is not

Is Is not
Buttons, toolbars, tables, lists, pagination, tabs, flashes, empty states, modal shell, icons, aside / burger / avatar / user menu / footer DashboardMenu / BreadcrumbKit navigation chrome
Shared nowo-ui-* look-and-feel Domain CRUD pages / manage routes
Multi-framework class macros Form widget themes (use FormKit)

Features

  • Twig macros (@NowoUiKitBundle/macros/ui.html.twig) with optional per-call framework override
  • Semantic stylesheet css/nowo-ui.css (asset package nowo_ui_kit)
  • Modal + shell TypeScript → built IIFEs (js/nowo-ui-modal.js, js/nowo-ui-shell.js)
  • Config: css_framework, icon_set; i18n domain NowoUiKitBundle (en, es, it, fr, pt, de, nl)
  • Twig namespace overrides under templates/bundles/NowoUiKitBundle/

Installation

composer require nowo-tech/ui-kit-bundle
php bin/console assets:install

With Flex, the recipe creates config/packages/nowo_ui_kit.yaml. See docs/INSTALLATION.md and docs/RECIPE.md.

Quick start

# config/packages/nowo_ui_kit.yaml
nowo_ui_kit:
    css_framework: bootstrap5   # or: tailwind | foundation | custom
    icon_set: bootstrap-icons
{% import '@NowoUiKitBundle/macros/ui.html.twig' as ui %}

<link rel="stylesheet" href="{{ asset('css/nowo-ui.css', 'nowo_ui_kit') }}">

<button type="button" class="{{ ui.btn('primary') }}">Save</button>

See docs/USAGE.md and docs/CONFIGURATION.md.

Demos

FrankenPHP demos (Caddy + PHP). Runtime mode: FRANKENPHP_MODE (worker default; classic for per-request PHP). See docs/DEMO-FRANKENPHP.md.

Demo Port Notes
demo/symfony8 8092 Bootstrap 5 kitchen sink
demo/symfony8-tailwind 8093 Tailwind kitchen sink
make -C demo up-symfony8
# open http://localhost:8092/

Documentation

Developer-facing docs are English only (Contributing — Language policy).

Tests and coverage

Suite Coverage
PHP (PHPUnit) 100% lines (fail under 99% in CI)
TypeScript (Vitest) ~96.7% lines (threshold ≥90%)
Python N/A
composer install
make test
make test-coverage
make test-ts
pnpm install && pnpm run build

See docs/COVERAGE.md.

License

MIT — see LICENSE.

Contributing

See docs/CONTRIBUTING.md. Install hooks with make setup-hooks (REQ-GIT-001).