@ace-grid/mcp 1.0.8 → 1.0.9
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.
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-
|
|
2
|
+
"generatedAt": "2026-06-13T20:16:12.193Z",
|
|
3
3
|
"rootInterface": "GridProps",
|
|
4
4
|
"propCoverage": {
|
|
5
|
-
"generatedCount":
|
|
6
|
-
"authoredSpecCount":
|
|
7
|
-
"exactSpecCount":
|
|
5
|
+
"generatedCount": 864,
|
|
6
|
+
"authoredSpecCount": 334,
|
|
7
|
+
"exactSpecCount": 219,
|
|
8
8
|
"prefixSpecCount": 115,
|
|
9
|
-
"exactCoveredCount":
|
|
9
|
+
"exactCoveredCount": 219,
|
|
10
10
|
"prefixCoveredCount": 637,
|
|
11
|
-
"coveredCount":
|
|
11
|
+
"coveredCount": 856,
|
|
12
12
|
"missingCount": 8,
|
|
13
13
|
"orphanCount": 0,
|
|
14
14
|
"coveragePercent": 99.1,
|
|
@@ -294,6 +294,17 @@
|
|
|
294
294
|
"coveragePercent": 100,
|
|
295
295
|
"missingPropPathsPreview": []
|
|
296
296
|
},
|
|
297
|
+
{
|
|
298
|
+
"key": "virtual",
|
|
299
|
+
"label": "Virtual",
|
|
300
|
+
"totalProps": 5,
|
|
301
|
+
"authoredProps": 5,
|
|
302
|
+
"exactCoveredProps": 5,
|
|
303
|
+
"prefixCoveredProps": 0,
|
|
304
|
+
"missingProps": 0,
|
|
305
|
+
"coveragePercent": 100,
|
|
306
|
+
"missingPropPathsPreview": []
|
|
307
|
+
},
|
|
297
308
|
{
|
|
298
309
|
"key": "clipboard",
|
|
299
310
|
"label": "Clipboard",
|
|
@@ -338,17 +349,6 @@
|
|
|
338
349
|
"coveragePercent": 100,
|
|
339
350
|
"missingPropPathsPreview": []
|
|
340
351
|
},
|
|
341
|
-
{
|
|
342
|
-
"key": "virtual",
|
|
343
|
-
"label": "Virtual",
|
|
344
|
-
"totalProps": 3,
|
|
345
|
-
"authoredProps": 3,
|
|
346
|
-
"exactCoveredProps": 3,
|
|
347
|
-
"prefixCoveredProps": 0,
|
|
348
|
-
"missingProps": 0,
|
|
349
|
-
"coveragePercent": 100,
|
|
350
|
-
"missingPropPathsPreview": []
|
|
351
|
-
},
|
|
352
352
|
{
|
|
353
353
|
"key": "accessibility",
|
|
354
354
|
"label": "Accessibility",
|
package/data/apiSpecQuality.json
CHANGED
package/data/docsIndex.json
CHANGED
|
@@ -4124,17 +4124,18 @@
|
|
|
4124
4124
|
},
|
|
4125
4125
|
{
|
|
4126
4126
|
"category": "Foundation",
|
|
4127
|
-
"content": "Virtual\nVirtual\nFoundation guide\nVirtualization controls how much of the grid stays mounted at once.
|
|
4127
|
+
"content": "Virtual\nVirtual\nFoundation guide\nVirtualization controls how much of the grid stays mounted at once. Keep it on in most cases, and tune row or column buffers only when measured scrolling behavior requires it.\nUse the live example to compare settings, then lift the matching `virtual` block into your own gridProps object.\nFoundation\nVirtual\nVirtualization strategy flags\nVirtualization controls how much of the grid stays mounted at once. It reduces browser work on long or wide grids.\nKeep row and horizontal virtualization on for most production grids. Cell-content virtualization is off by default and should be enabled only for measurably expensive cell renderers.\nStart with the default buffers. Increase them only when fast scrolling exposes blank work, or reduce them when mounted DOM cost is the bottleneck.\nTurn row virtualization off and compare the mounted row count against the default mode.\nTurn horizontal virtualization off and compare the mounted column count on the same wide grid.\nTurn cell-content virtualization on and compare how many heavy cells stay mounted.\nChange row and column buffers separately, then repeat the same wheel, trackpad, keyboard, and scrollbar-drag tests.\nTreat virtualization as a performance setting, not a visual feature.\nValidate custom cell renderers early. They are the most common reason teams try to change virtualization defaults.\nvirtual.enableVirtualization\nenableVirtualization\nboolean\nvirtual.enableHorizontalVirtualization\nenableHorizontalVirtualization\nboolean\nvirtual.enableCellContentVirtualization\nenableCellContentVirtualization\nboolean\nDefers heavy inner cell content until visible. Disabled by default.\nvirtual.rowBufferPx\nrowBufferPx\nnumber\nExtra vertical pixels rendered before and after the visible row window.\nvirtual.columnBufferPx\ncolumnBufferPx\nnumber\nExtra horizontal pixels rendered before and after the visible column window.",
|
|
4128
4128
|
"guide": {
|
|
4129
4129
|
"whatItMeans": "Virtualization controls how much of the grid stays mounted at once. It reduces browser work on long or wide grids.",
|
|
4130
4130
|
"whenToUse": [
|
|
4131
|
-
"Keep
|
|
4132
|
-
"
|
|
4131
|
+
"Keep row and horizontal virtualization on for most production grids. Cell-content virtualization is off by default and should be enabled only for measurably expensive cell renderers.",
|
|
4132
|
+
"Start with the default buffers. Increase them only when fast scrolling exposes blank work, or reduce them when mounted DOM cost is the bottleneck."
|
|
4133
4133
|
],
|
|
4134
4134
|
"howToTry": [
|
|
4135
4135
|
"Turn row virtualization off and compare the mounted row count against the default mode.",
|
|
4136
4136
|
"Turn horizontal virtualization off and compare the mounted column count on the same wide grid.",
|
|
4137
|
-
"Turn cell-content virtualization
|
|
4137
|
+
"Turn cell-content virtualization on and compare how many heavy cells stay mounted.",
|
|
4138
|
+
"Change row and column buffers separately, then repeat the same wheel, trackpad, keyboard, and scrollbar-drag tests."
|
|
4138
4139
|
],
|
|
4139
4140
|
"implementationNotes": [
|
|
4140
4141
|
"Treat virtualization as a performance setting, not a visual feature.",
|
|
@@ -4155,9 +4156,19 @@
|
|
|
4155
4156
|
"type": "boolean"
|
|
4156
4157
|
},
|
|
4157
4158
|
{
|
|
4158
|
-
"description": "",
|
|
4159
|
+
"description": "Defers heavy inner cell content until visible. Disabled by default.",
|
|
4159
4160
|
"path": "virtual.enableCellContentVirtualization",
|
|
4160
4161
|
"type": "boolean"
|
|
4162
|
+
},
|
|
4163
|
+
{
|
|
4164
|
+
"description": "Extra vertical pixels rendered before and after the visible row window.",
|
|
4165
|
+
"path": "virtual.rowBufferPx",
|
|
4166
|
+
"type": "number"
|
|
4167
|
+
},
|
|
4168
|
+
{
|
|
4169
|
+
"description": "Extra horizontal pixels rendered before and after the visible column window.",
|
|
4170
|
+
"path": "virtual.columnBufferPx",
|
|
4171
|
+
"type": "number"
|
|
4161
4172
|
}
|
|
4162
4173
|
],
|
|
4163
4174
|
"slug": "virtual",
|
|
@@ -4218,7 +4229,7 @@
|
|
|
4218
4229
|
"summary": "Web Components uses one runtime-neutral wrapper package. Register the custom element with `@ace-grid/core`, `@ace-grid/pro`, or `@ace-grid/enterprise` explicitly."
|
|
4219
4230
|
}
|
|
4220
4231
|
],
|
|
4221
|
-
"generatedAt": "2026-
|
|
4232
|
+
"generatedAt": "2026-06-13T20:04:06.168Z",
|
|
4222
4233
|
"pages": [
|
|
4223
4234
|
{
|
|
4224
4235
|
"category": "Foundation",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-
|
|
2
|
+
"generatedAt": "2026-06-13T20:16:11.265Z",
|
|
3
3
|
"rootInterface": "GridProps",
|
|
4
4
|
"featureGroupCount": 32,
|
|
5
|
-
"propCount":
|
|
5
|
+
"propCount": 864,
|
|
6
6
|
"featureGroups": [
|
|
7
7
|
{
|
|
8
8
|
"key": "license",
|
|
@@ -626,8 +626,8 @@
|
|
|
626
626
|
"description": "Virtualization strategy flags",
|
|
627
627
|
"typeName": "GridVirtualProps",
|
|
628
628
|
"optional": true,
|
|
629
|
-
"directPropCount":
|
|
630
|
-
"propCount":
|
|
629
|
+
"directPropCount": 5,
|
|
630
|
+
"propCount": 5,
|
|
631
631
|
"props": [
|
|
632
632
|
{
|
|
633
633
|
"name": "enableVirtualization",
|
|
@@ -649,7 +649,23 @@
|
|
|
649
649
|
"name": "enableCellContentVirtualization",
|
|
650
650
|
"path": "virtual.enableCellContentVirtualization",
|
|
651
651
|
"type": "boolean",
|
|
652
|
-
"description": "",
|
|
652
|
+
"description": "Defers heavy inner cell content until visible. Disabled by default.",
|
|
653
|
+
"optional": true,
|
|
654
|
+
"depth": 1
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"name": "rowBufferPx",
|
|
658
|
+
"path": "virtual.rowBufferPx",
|
|
659
|
+
"type": "number",
|
|
660
|
+
"description": "Extra vertical pixels rendered before and after the visible row window.",
|
|
661
|
+
"optional": true,
|
|
662
|
+
"depth": 1
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"name": "columnBufferPx",
|
|
666
|
+
"path": "virtual.columnBufferPx",
|
|
667
|
+
"type": "number",
|
|
668
|
+
"description": "Extra horizontal pixels rendered before and after the visible column window.",
|
|
653
669
|
"optional": true,
|
|
654
670
|
"depth": 1
|
|
655
671
|
}
|
|
@@ -8883,7 +8899,7 @@
|
|
|
8883
8899
|
"kind": "interface",
|
|
8884
8900
|
"description": "VIRTUALIZATION",
|
|
8885
8901
|
"file": "src/types.ts",
|
|
8886
|
-
"code": "export interface GridVirtualProps {\n enableVirtualization?: boolean;\n enableHorizontalVirtualization?: boolean;\n enableCellContentVirtualization?: boolean;\n}"
|
|
8902
|
+
"code": "export interface GridVirtualProps {\n enableVirtualization?: boolean;\n enableHorizontalVirtualization?: boolean;\n /** Defers heavy inner cell content until visible. Disabled by default. */\n enableCellContentVirtualization?: boolean;\n /** Extra vertical pixels rendered before and after the visible row window. */\n rowBufferPx?: number;\n /** Extra horizontal pixels rendered before and after the visible column window. */\n columnBufferPx?: number;\n}"
|
|
8887
8903
|
},
|
|
8888
8904
|
"GridRowsProps": {
|
|
8889
8905
|
"name": "GridRowsProps",
|
package/package.json
CHANGED