@mk-kit/mcp 0.50.0 → 0.51.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/data/api.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@mk-kit/ui",
3
- "version": "0.50.0",
3
+ "version": "0.51.0",
4
4
  "site": "https://mk-kit.dev",
5
5
  "entries": [
6
6
  {
@@ -18295,22 +18295,6 @@
18295
18295
  "queries": [],
18296
18296
  "docs": "/components/popovers"
18297
18297
  },
18298
- {
18299
- "name": "MkPromptDialog",
18300
- "description": "Internal component backing `MkDialogService.prompt`. Renders a single text\nfield and resolves the overlay ref with the entered string on confirm, or\n`null` on cancel / Escape / backdrop. Submitting the form (Enter) confirms.",
18301
- "file": "projects/mk-kit/feedback/dialog/prompt-dialog.ts",
18302
- "kind": "component",
18303
- "selector": "mk-prompt-dialog",
18304
- "selectors": [
18305
- "mk-prompt-dialog"
18306
- ],
18307
- "inputs": [],
18308
- "outputs": [],
18309
- "methods": [],
18310
- "properties": [],
18311
- "queries": [],
18312
- "docs": "/components/dialogs"
18313
- },
18314
18298
  {
18315
18299
  "name": "MkResult",
18316
18300
  "description": "Result — a centred, full-page status state: a success confirmation, an error,\nan empty 404/403/500 page. Renders a large status icon (chosen from\n`status`), a title, a muted subtitle, projected body content, and a row of\naction buttons at the bottom.\n\nSlots: `[mkResultIcon]` (custom icon, overrides the built-in glyph),\n`[mkResultTitle]` (custom heading, used when `resultTitle` is unset), default\ncontent (extra body), `[mkResultActions]` (buttons).\n\n```html\n<mk-result status=\"success\" resultTitle=\"Payment complete\"\n subtitle=\"Your order is on its way.\">\n <button mkButton mkResultActions>Back home</button>\n</mk-result>\n```",
@@ -23195,7 +23179,7 @@
23195
23179
  {
23196
23180
  "name": "get",
23197
23181
  "signature": "<T extends MkHarness>(type: MkHarnessType<T>, filters?: MkHarnessFilters): Promise<T>",
23198
- "description": "First matching harness; throws when there is none."
23182
+ "description": "First matching harness; throws when there is none. Retries for a short\nwhile first: overlays such as `MkDialogService.prompt()` render after a\nlazy chunk resolves, so the host may appear a few ticks after the call.\n`has()` / `getOrNull()` stay immediate so absence can be asserted."
23199
23183
  },
23200
23184
  {
23201
23185
  "name": "getOrNull",
@@ -1,4 +1,4 @@
1
- # @mk-kit/ui 0.50.0 — full API reference
1
+ # @mk-kit/ui 0.51.0 — full API reference
2
2
 
3
3
  Generated from the library sources. Browsable version: https://mk-kit.dev/api · JSON: https://mk-kit.dev/api.json · Guides: https://mk-kit.dev/llms.txt
4
4
 
@@ -11667,7 +11667,7 @@ type MkTagVariant = 'solid' | 'soft' | 'outline';
11667
11667
 
11668
11668
  ## @mk-kit/ui/feedback
11669
11669
 
11670
- 56 exports. `import { … } from '@mk-kit/ui/feedback';`
11670
+ 55 exports. `import { … } from '@mk-kit/ui/feedback';`
11671
11671
 
11672
11672
  ### MkAlert (component)
11673
11673
 
@@ -12112,18 +12112,6 @@ Properties:
12112
12112
  | `panelId` | `string` | Stable id for `aria-controls` on the trigger. |
12113
12113
  | `opened` | `Signal<boolean>` | Whether the popover is open. |
12114
12114
 
12115
- ### MkPromptDialog (component)
12116
-
12117
- Selector: `mk-prompt-dialog`
12118
-
12119
- Docs: https://mk-kit.dev/components/dialogs
12120
-
12121
- Import: `import { MkPromptDialog } from '@mk-kit/ui/feedback';`
12122
-
12123
- Internal component backing `MkDialogService.prompt`. Renders a single text
12124
- field and resolves the overlay ref with the entered string on confirm, or
12125
- `null` on cancel / Escape / backdrop. Submitting the form (Enter) confirms.
12126
-
12127
12115
  ### MkResult (component)
12128
12116
 
12129
12117
  Selector: `mk-result`
@@ -15702,7 +15690,7 @@ Methods:
15702
15690
  | `rootElement(): MkTestElement` | Wrap the root element itself. |
15703
15691
  | `element(selector: string): MkTestElement` | |
15704
15692
  | `elements(selector: string): MkTestElement[]` | |
15705
- | `get<T extends MkHarness>(type: MkHarnessType<T>, filters?: MkHarnessFilters): Promise<T>` | First matching harness; throws when there is none. |
15693
+ | `get<T extends MkHarness>(type: MkHarnessType<T>, filters?: MkHarnessFilters): Promise<T>` | First matching harness; throws when there is none. Retries for a short while first: overlays such as `MkDialogService.prompt()` render after a lazy chunk resolves, so the host may appear a few ticks after the call. `has()` / `getOrNull()` stay immediate so absence can be asserted. |
15706
15694
  | `getOrNull<T extends MkHarness>(type: MkHarnessType<T>, filters?: MkHarnessFilters): Promise<T \| null>` | |
15707
15695
  | `has<T extends MkHarness>(type: MkHarnessType<T>, filters?: MkHarnessFilters): Promise<boolean>` | |
15708
15696
  | `getAll<T extends MkHarness>(type: MkHarnessType<T>, filters?: MkHarnessFilters): Promise<T[]>` | |
package/data/llms.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  # mk-kit
2
2
 
3
- > Themable, accessible Angular 22 component library for admin dashboards and UIs. Signals-based, WCAG 2.1 AA, controlled entirely through CSS variables with light/dark out of the box. — `@mk-kit/ui` 0.50.0. 170 components, 41 directives, 16 services and 144 helper functions across 29 tree-shakeable entry points. MIT licensed, zero runtime dependencies beyond Angular. Standalone components, signals, OnPush, zoneless-ready, SSR-safe, RTL and i18n via `provideMkI18n`.
3
+ > Themable, accessible Angular 22 component library for admin dashboards and UIs. Signals-based, WCAG 2.1 AA, controlled entirely through CSS variables with light/dark out of the box. — `@mk-kit/ui` 0.51.0. 169 components, 41 directives, 16 services and 144 helper functions across 29 tree-shakeable entry points. MIT licensed, zero runtime dependencies beyond Angular. Standalone components, signals, OnPush, zoneless-ready, SSR-safe, RTL and i18n via `provideMkI18n`.
4
4
 
5
5
  Install with `ng add @mk-kit/ui` (or `npm i @mk-kit/ui` + import `@mk-kit/ui/styles/mk-kit.css`). Import from the group entry points (`@mk-kit/ui/forms`, `@mk-kit/ui/table`, …) so each lazy chunk only carries what it uses; the root `@mk-kit/ui` entry re-exports everything. Every component is standalone: add the class to a component's `imports`. Theme with `--mk-*` CSS custom properties; `MkThemeService` switches light/dark/system and density.
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mk-kit/mcp",
3
- "version": "0.50.0",
3
+ "version": "0.51.0",
4
4
  "description": "MCP server for @mk-kit/ui — lets AI coding assistants look up every component, directive, service and helper of the mk-kit Angular library (inputs, outputs, methods, import paths, docs links).",
5
5
  "license": "MIT",
6
6
  "type": "module",