@ds-mo/ui 14.10.0 → 14.11.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/dist/.package-ready.json +1 -1
- package/dist/agent-patterns.json +1 -1
- package/dist/agent.json +7 -3
- package/dist/angular/ds-table.d.ts +1 -1
- package/dist/angular/ds-table.js +3 -3
- package/dist/components/ds-table.js +1 -1
- package/dist/components/ds-table.js.map +1 -1
- package/dist/docs/components.json +30 -1
- package/dist/mcp-data/registry/registry.json +6 -2
- package/dist/mcp-data/registry/table.json +20 -4
- package/dist/types/components/Table/Table.d.ts +1 -0
- package/dist/types/components/Table/table-data-mode-switcher.d.ts +2 -1
- package/dist/types/components.d.ts +9 -0
- package/package.json +1 -1
|
@@ -75,6 +75,7 @@ export declare class Table {
|
|
|
75
75
|
dataModeMenuLabel: string;
|
|
76
76
|
infiniteModeLabel: string;
|
|
77
77
|
paginationModeLabel: string;
|
|
78
|
+
virtualModeLabel: string;
|
|
78
79
|
/** Controlled top-level pagination state. Required when dataMode is pagination. */
|
|
79
80
|
pagination: TablePaginationState | null;
|
|
80
81
|
loadMoreMode: TableLoadMoreMode;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import type { MenuItemData } from '../Menu/menu-types';
|
|
2
2
|
import type { TableDataMode } from './table-types';
|
|
3
3
|
export declare function nextTableDataModeSwitcherElementId(): string;
|
|
4
|
-
/** Menu of supported data-mode choices.
|
|
4
|
+
/** Menu of supported data-mode choices. */
|
|
5
5
|
export declare function tableDataModeMenuItems(dataMode: TableDataMode, labels: {
|
|
6
6
|
infinite: string;
|
|
7
7
|
pagination: string;
|
|
8
|
+
virtual: string;
|
|
8
9
|
}): MenuItemData[];
|
|
9
10
|
export declare function tableDataModeFromMenuItem(item: MenuItemData): TableDataMode | null;
|
|
10
11
|
//# sourceMappingURL=table-data-mode-switcher.d.ts.map
|
|
@@ -3095,6 +3095,10 @@ export namespace Components {
|
|
|
3095
3095
|
* @default 0
|
|
3096
3096
|
*/
|
|
3097
3097
|
"viewportInsetBlockStart": string | number;
|
|
3098
|
+
/**
|
|
3099
|
+
* @default 'Virtual scroll'
|
|
3100
|
+
*/
|
|
3101
|
+
"virtualModeLabel": string;
|
|
3098
3102
|
}
|
|
3099
3103
|
interface DsTableSavedViews {
|
|
3100
3104
|
/**
|
|
@@ -8027,6 +8031,10 @@ declare namespace LocalJSX {
|
|
|
8027
8031
|
* @default 0
|
|
8028
8032
|
*/
|
|
8029
8033
|
"viewportInsetBlockStart"?: string | number;
|
|
8034
|
+
/**
|
|
8035
|
+
* @default 'Virtual scroll'
|
|
8036
|
+
*/
|
|
8037
|
+
"virtualModeLabel"?: string;
|
|
8030
8038
|
}
|
|
8031
8039
|
interface DsTableSavedViews {
|
|
8032
8040
|
/**
|
|
@@ -9033,6 +9041,7 @@ declare namespace LocalJSX {
|
|
|
9033
9041
|
"dataModeMenuLabel": string;
|
|
9034
9042
|
"infiniteModeLabel": string;
|
|
9035
9043
|
"paginationModeLabel": string;
|
|
9044
|
+
"virtualModeLabel": string;
|
|
9036
9045
|
"loadMoreMode": TableLoadMoreMode;
|
|
9037
9046
|
"hasMore": boolean;
|
|
9038
9047
|
"loadingMore": boolean;
|