@ds-mo/ui 14.11.0 → 14.11.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/dist/.package-ready.json +1 -1
- package/dist/agent-patterns.json +1 -1
- package/dist/agent.json +2 -2
- package/dist/components/ds-table.js +1 -1
- package/dist/components/ds-table.js.map +1 -1
- package/dist/docs/components.json +1 -1
- package/dist/mcp-data/registry/registry.json +1 -1
- package/dist/mcp-data/registry/table.json +3 -3
- package/dist/types/components/Table/table-model.d.ts +7 -0
- package/package.json +1 -1
|
@@ -52,5 +52,12 @@ export declare function tableGroupLabelColor(intent: (typeof TABLE_GROUP_INTENTS
|
|
|
52
52
|
export declare function formatTableResultSummary(displayed: number | null | undefined, total: number | null | undefined, label?: string, locale?: string): string | null;
|
|
53
53
|
/** Formats the virtual-mode total-only result footer. */
|
|
54
54
|
export declare function formatTableTotalSummary(total: number | null | undefined, label?: string, locale?: string): string | null;
|
|
55
|
+
/**
|
|
56
|
+
* True when a footer slot belongs to the table itself: a light-DOM child of the
|
|
57
|
+
* host, or a node Stencil already relocated into the table footer. Nested
|
|
58
|
+
* dialogs (saved-views modal actions) keep slot="footer" but are neither.
|
|
59
|
+
*/
|
|
60
|
+
export declare function isOwnedTableFooterSlot(node: Element, host: Element): boolean;
|
|
61
|
+
export declare function hasOwnedTableFooterSlot(host: Element, slotName: string): boolean;
|
|
55
62
|
export declare function tableModelIssues(columns: TableColumn[], rows: TableRow[], groups: TableGroup[], grouped: boolean): string[];
|
|
56
63
|
//# sourceMappingURL=table-model.d.ts.map
|