@mk-kit/mcp 0.52.0 → 0.52.1

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.52.0",
3
+ "version": "0.52.1",
4
4
  "site": "https://mk-kit.dev",
5
5
  "entries": [
6
6
  {
@@ -23544,7 +23544,12 @@
23544
23544
  {
23545
23545
  "name": "isEmpty",
23546
23546
  "signature": "(): boolean",
23547
- "description": ""
23547
+ "description": "True when the table shows no data rows (an `emptyMessage` row does not count)."
23548
+ },
23549
+ {
23550
+ "name": "emptyMessage",
23551
+ "signature": "(): string | null",
23552
+ "description": "The rendered `emptyMessage`, or `null` while the table has rows."
23548
23553
  },
23549
23554
  {
23550
23555
  "name": "setFilter",
@@ -23571,7 +23576,7 @@
23571
23576
  },
23572
23577
  {
23573
23578
  "name": "MkTableRowHarness",
23574
- "description": "One data row of `mk-table`.",
23579
+ "description": "One data row of `mk-table` (the `emptyMessage` placeholder row is not one).",
23575
23580
  "file": "projects/mk-kit/testing/harnesses/table.harness.ts",
23576
23581
  "kind": "class",
23577
23582
  "methods": [
@@ -1,4 +1,4 @@
1
- # @mk-kit/ui 0.52.0 — full API reference
1
+ # @mk-kit/ui 0.52.1 — 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
 
@@ -15832,7 +15832,8 @@ Methods:
15832
15832
  | `sortDirection(which: number \| string \| RegExp): string \| null` | `'ascending' \| 'descending' \| 'none' \| null` (null = not sortable). |
15833
15833
  | `selectedRowCount(): Promise<number>` | |
15834
15834
  | `toggleAll(): Promise<void>` | Toggle the header "select all" checkbox. |
15835
- | `isEmpty(): boolean` | |
15835
+ | `isEmpty(): boolean` | True when the table shows no data rows (an `emptyMessage` row does not count). |
15836
+ | `emptyMessage(): string \| null` | The rendered `emptyMessage`, or `null` while the table has rows. |
15836
15837
  | `setFilter(key: string, value: string): Promise<void>` | Set a header-row filter (table is `filterable`). `value` is typed into a text / number / date box, or picked from a select by option label or value; `''` clears that filter. |
15837
15838
  | `filterValue(key: string): string` | The current value of a header-row filter control (`''` when unset). |
15838
15839
  | `clearFilters(): Promise<void>` | Clear every header-row filter. |
@@ -15842,7 +15843,7 @@ Methods:
15842
15843
 
15843
15844
  Import: `import { MkTableRowHarness } from '@mk-kit/ui/testing';`
15844
15845
 
15845
- One data row of `mk-table`.
15846
+ One data row of `mk-table` (the `emptyMessage` placeholder row is not one).
15846
15847
 
15847
15848
  Methods:
15848
15849
 
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.52.0. 169 components, 41 directives, 16 services and 144 helper functions across 30 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.52.1. 169 components, 41 directives, 16 services and 144 helper functions across 30 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.52.0",
3
+ "version": "0.52.1",
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",