Installation
Install Kikita UI from the public npm registry, wire the published stylesheet through Angular CLI, and register the provider in the consumer app.
Kikita UI is published under the @kikita-labs scope on the public npm registry. No registry configuration or auth token is required.
pnpm add @kikita-labs/uiUse the package schematic when possible. It preserves existing style entries and configures the selected Angular project.
ng add @kikita-labs/uiThis docs app keeps the stylesheet in angular.json because that path is verified in a fresh Angular consumer build.
"styles": [
"node_modules/@kikita-labs/ui/styles/kikita-ui.css",
"src/styles.scss"
]Use these options when a consumer app needs to control which parts of setup are written.
| Name | Type | Default | Description |
|---|---|---|---|
| --project | string | — | Targets a specific Angular project when the workspace contains multiple projects. |
| --skip-provider | boolean | — | Skips writing provideKikitaUi() when the app manages providers manually. |
| --skip-styles | boolean | — | Skips adding the package stylesheet to angular.json. |
| --theme | boolean | — | Writes the default theme seed configuration into provideKikitaUi(). |